:root {
    --bg: #f7f6f2;
    --surface: #ffffff;
    --surface-2: #f1efe9;
    --text: #0f1430;
    --text-muted: #5a607a;
    --border: rgba(15, 20, 48, 0.08);
    --primary: #2d3bf2;
    --primary-2: #5a66ff;
    --gold: #e2a93a;
    --gold-2: #f4c969;
    --shadow: 0 20px 60px -20px rgba(15, 20, 48, 0.18);
    --radius: 16px;
}

html.dark {
    --bg: #0a0d22;
    --surface: #11163a;
    --surface-2: #161c47;
    --text: #f3f1ea;
    --text-muted: #a4a9c4;
    --border: rgba(255, 255, 255, 0.08);
    --primary: #7c8bff;
    --primary-2: #5a66ff;
    --gold: #f4c969;
    --gold-2: #ffd98a;
    --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background .3s ease, color .3s ease;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em
}

.logo-mark {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--text)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s;
}

.icon-btn:hover {
    background: var(--surface-2);
    transform: translateY(-1px)
}

.icon-btn svg {
    width: 18px;
    height: 18px
}

.btn-primary {
    padding: 10px 20px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    background: var(--text);
    color: var(--bg);
    transition: transform .2s, opacity .2s;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: .9
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1100;
}

@media(max-width:780px) {
    .nav-links {
        display: none
    }
}

/* TRANSLATE POPOVER */
.translate-pop {
    position: absolute;
    top: 52px;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    width: 280px;
    display: none;
    overflow: hidden;
}

.translate-pop.open {
    display: block
}

.translate-pop .tp-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.translate-pop .tp-head h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em
}

.translate-pop .tp-head .tp-current {
    font-size: 12px;
    color: var(--text-muted)
}

.tp-search {
    width: 100%;
    padding: 10px 14px;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.tp-search::placeholder {
    color: var(--text-muted)
}

.tp-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 6px
}

.tp-list::-webkit-scrollbar {
    width: 8px
}

.tp-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 8px
}

.tp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background .15s;
}

.tp-item:hover {
    background: var(--surface-2)
}

.tp-item.active {
    background: color-mix(in srgb, var(--primary) 14%, transparent);
    color: var(--primary);
    font-weight: 600
}

.tp-flag {
    font-size: 18px;
    line-height: 1
}

.tp-name {
    flex: 1
}

.tp-check {
    width: 14px;
    height: 14px;
    opacity: 0
}

.tp-item.active .tp-check {
    opacity: 1
}

/* Hide Google Translate UI completely */
.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
    visibility: hidden !important
}

body {
    top: 0 !important;
    position: static !important
}

#google_translate_element {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    height: 0 !important;
    overflow: hidden !important
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important
}

font[style] {
    background: transparent !important
}

/* HERO */
.hero {
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: -100px -100px auto auto;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 30%, transparent), transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto auto -200px -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--gold) 22%, transparent), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

@media(max-width:880px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold)
}

h1 {
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 800;
    margin-bottom: 24px;
}

h1 .accent {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap
}

.stat-num {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted)
}

.phone-mock {
    background: linear-gradient(160deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
}

.phone-screen {
    border-radius: 18px;
    background: linear-gradient(180deg, #0a0d22, #1a1f4d);
    color: #fff;
    padding: 22px;
    min-height: 420px;
    font-family: inherit;
}

.ph-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 12px;
    opacity: .7
}

.balance-card {
    background: linear-gradient(135deg, #7c8bff, #e2a93a);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}

.balance-card .lbl {
    font-size: 11px;
    opacity: .85;
    letter-spacing: .06em;
    text-transform: uppercase
}

.balance-card .val {
    font-size: 28px;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: -.02em
}

.ph-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ph-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.ph-item .pos {
    color: #7cf3a0
}

.ph-item .neg {
    color: #ff8a8a
}

/* SECTION */
section {
    padding: 90px 0
}

.section-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    letter-spacing: -.025em;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15
}

.section-head p {
    color: var(--text-muted);
    font-size: 17px
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media(max-width:880px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .features-grid {
        grid-template-columns: 1fr
    }
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-icon svg {
    width: 20px;
    height: 20px
}

.feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -.01em
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55
}

.tag {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: .04em;
}

.tag-free {
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary)
}

.tag-prem {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1100
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 880px;
    margin: 0 auto
}

@media(max-width:760px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
}

.price-card.featured {
    background: linear-gradient(160deg, var(--text), color-mix(in srgb, var(--text) 80%, var(--primary)));
    color: var(--bg);
    border-color: transparent;
    position: relative;
}

.price-card.featured .price-meta,
.price-card.featured ul li {
    color: color-mix(in srgb, var(--bg) 80%, transparent)
}

.price-tier {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px
}

.price-card.featured .price-tier {
    color: var(--gold-2)
}

.price-amt {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 6px
}

.price-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px
}

.price-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.price-card ul li {
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--gold)
}

.price-card.featured .check {
    color: var(--gold-2)
}

.price-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    background: var(--surface-2);
    color: var(--text);
    transition: opacity .2s;
}

.price-btn:hover {
    opacity: .85
}

.price-card.featured .price-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1a1100
}

/* FAQ */
.faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 22px;
    cursor: pointer;
    transition: background .2s;
}

details[open] {
    background: var(--surface-2)
}

summary {
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center
}

summary::-webkit-details-marker {
    display: none
}

summary::after {
    content: "+";
    font-size: 22px;
    color: var(--text-muted);
    transition: transform .2s
}

details[open] summary::after {
    content: "−"
}

details p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 28px;
    padding: 64px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: #fff
}

.cta-section p {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 28px
}

.cta-section .btn-primary {
    background: #fff;
    color: #0f1430
}

/* FOOTER */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px
}

.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.foot-links {
    display: flex;
    gap: 22px
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}