:root {
    --cv-bg: #070b10;
    --cv-panel: #0d1621;
    --cv-card: rgba(255, 255, 255, 0.045);
    --cv-border: rgba(255, 255, 255, 0.1);
    --cv-green: #20A66B;
    --cv-green-soft: var(--cv-green);
    --cv-green-rgb: 32, 166, 107;
    --cv-cream: #f3f4ee;
    --cv-ink: #091018;
    --cv-muted: #c1cad5;
    --font-display: "Avenir Next Condensed", "AvenirNextCondensed-Heavy", "Avenir Next", "Arial Narrow", "Roboto Condensed", sans-serif;
    --font-body: "Avenir Next", Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--cv-bg);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
}

a { color: inherit; }

.page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 82% 7%, rgba(var(--cv-green-rgb), 0.15), transparent 32rem),
        radial-gradient(circle at 4% 32%, rgba(47, 128, 237, 0.08), transparent 28rem),
        linear-gradient(180deg, #070b10 0%, #08131d 45%, #070b10 100%);
}

.container-wide {
    width: min(100% - 3rem, 1160px);
    margin: 0 auto;
}

.top-banner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.9);
}

.top-banner-inner {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
    color: #e1e8e4;
    font-size: 0.92rem;
    font-weight: 700;
}

.top-banner a { color: var(--cv-green); font-weight: 900; white-space: nowrap; }

.nav {
    padding: 1.45rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.wordmark { display: inline-flex; align-items: center; flex-shrink: 0; }

.brand-logo {
    display: block;
    width: 3.25rem;
    height: 3.25rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: #b4beca;
    font-size: 0.86rem;
    font-weight: 600;
}

.nav-links a,
.footer-links a {
    text-decoration: none;
    transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover { color: #fff; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: 1.5rem 0 5.5rem;
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(var(--cv-green-rgb), 0.34);
    border-radius: 999px;
    background: rgba(var(--cv-green-rgb), 0.1);
    color: var(--cv-green-soft);
    padding: 0.48rem 0.85rem;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 0;
}

h1 {
    margin-top: 1rem;
    max-width: 50rem;
    font-size: clamp(3.1rem, 7vw, 5.6rem);
    line-height: 0.94;
}

h2 {
    max-width: 46rem;
    font-size: clamp(2.45rem, 4vw, 3.55rem);
    line-height: 1;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.12;
}

.text-green { color: var(--cv-green); }

.hero-copy,
.section-copy p,
.answer-card p,
.card p,
.faq-card p,
.guide-note,
.source-list,
.trademark-note {
    color: var(--cv-muted);
    line-height: 1.62;
    font-weight: 650;
}

.hero-copy {
    margin: 1.25rem 0 0;
    max-width: 45rem;
    font-size: 1.2rem;
}

.hero-actions {
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    border-radius: 999px;
    padding: 0.85rem 1.15rem;
    font-weight: 900;
    text-decoration: none;
}

.primary-button {
    border: 1px solid rgba(var(--cv-green-rgb), 0.72);
    background: rgba(var(--cv-green-rgb), 0.1);
    color: var(--cv-green);
    box-shadow: inset 0 0 0 1px rgba(var(--cv-green-rgb), 0.12);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

.hero-panel {
    border: 1px solid var(--cv-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    padding: 1.25rem;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.hero-panel strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.25;
}

.hero-panel ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--cv-muted);
    line-height: 1.5;
    font-weight: 650;
}

.section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-cream {
    background: var(--cv-cream);
    color: var(--cv-ink);
    border-top: 0;
}

.section-cream .kicker {
    border-color: rgba(var(--cv-green-rgb), 0.25);
    background: rgba(var(--cv-green-rgb), 0.12);
    color: var(--cv-green);
}

.section-copy p {
    margin: 1rem 0 0;
    max-width: 48rem;
    font-size: 1.08rem;
}

.section-cream .section-copy p,
.section-cream .answer-card p,
.section-cream .card p,
.section-cream .faq-card p,
.section-cream .guide-note,
.section-cream .source-list {
    color: #4f5a58;
}

.answer-card,
.guide-card,
.card,
.faq-card {
    border: 1px solid var(--cv-border);
    border-radius: 8px;
    background: var(--cv-card);
    padding: 1.25rem;
}

.section-cream .answer-card,
.section-cream .guide-card,
.section-cream .card,
.section-cream .faq-card {
    border-color: rgba(9, 16, 24, 0.1);
    background: rgba(255, 255, 255, 0.74);
}

.answer-card {
    margin-top: 1.7rem;
    max-width: 58rem;
}

.answer-card h2 {
    font-size: 2.2rem;
}

.answer-card p { margin: 0.8rem 0 0; }

.comparison-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
    border: 1px solid var(--cv-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

th {
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

td {
    color: var(--cv-muted);
    line-height: 1.5;
    font-weight: 650;
}

tr:last-child td { border-bottom: 0; }
td strong { color: #fff; }

.section-cream .comparison-table-wrap {
    border-color: rgba(9, 16, 24, 0.1);
    background: rgba(255, 255, 255, 0.78);
}

.section-cream th {
    color: var(--cv-ink);
    border-bottom: 1px solid rgba(9, 16, 24, 0.11);
}

.section-cream td {
    color: #4f5a58;
    border-bottom: 1px solid rgba(9, 16, 24, 0.08);
}

.section-cream td strong { color: var(--cv-ink); }

.card-grid,
.guide-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.guide-grid.two,
.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card a {
    display: inline-flex;
    margin-top: 0.9rem;
    color: var(--cv-green);
    font-weight: 900;
    text-decoration: none;
}

.card p,
.faq-card p {
    margin: 0.65rem 0 0;
    font-size: 0.98rem;
}

.source-list {
    margin-top: 1.4rem;
    padding-left: 1.1rem;
}

.source-list li { margin-top: 0.55rem; }

.source-list a { color: var(--cv-green); font-weight: 900; }

.trademark-note {
    margin-top: 1.5rem;
    max-width: 64rem;
    color: #8f9aa6;
    font-size: 0.88rem;
}

.section-cream .trademark-note { color: #6b747f; }

.download-section {
    padding: 5rem 0;
    background: #070b10;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.download-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--cv-border);
    border-radius: 8px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.045);
}

.download-box p {
    margin: 0.8rem 0 0;
    color: var(--cv-muted);
    line-height: 1.55;
    font-weight: 650;
}

.store-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-store-badge,
.play-store-badge {
    display: block;
    width: 11.8rem;
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca7b3;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.15rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 1100px) {
    .nav-links { display: none; }
    .hero,
    .download-box { grid-template-columns: 1fr; }
    .hero-panel { max-width: 42rem; }
}

@media (max-width: 760px) {
    .container-wide { width: min(100% - 2rem, 1160px); }
    .top-banner-inner {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.7rem 0;
        font-size: 0.78rem;
        line-height: 1.25;
    }
    .top-banner-inner span {
        display: block;
        width: 100%;
    }
    .nav { padding: 1.15rem 0 0.6rem; }
    .brand-logo { width: 3rem; height: 3rem; }
    .hero { gap: 1.6rem; padding: 0.8rem 0 3.6rem; }
    h1 { max-width: 23rem; font-size: 3rem; line-height: 0.96; }
    h2 { font-size: 2.35rem; line-height: 1; }
    .hero-copy,
    .section-copy p { font-size: 1rem; line-height: 1.56; }
    .section { padding: 3.8rem 0; }
    .card-grid,
    .guide-grid,
    .guide-grid.two,
    .card-grid.two,
    .faq-grid { grid-template-columns: 1fr; }
    .download-box { padding: 1rem; }
    .store-badges { flex-direction: column; align-items: flex-start; }
    .app-store-badge,
    .play-store-badge { width: 11.25rem; }
    .comparison-table-wrap {
        overflow-x: visible;
        border: 0;
        background: transparent;
    }
    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
    }
    table { min-width: 0; }
    thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
    tr {
        margin-top: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.045);
        padding: 0.85rem;
    }
    td {
        display: grid;
        grid-template-columns: minmax(6.8rem, 0.38fr) minmax(0, 1fr);
        gap: 0.8rem;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    td::before {
        content: attr(data-label);
        color: #8e98a5;
        font-size: 0.72rem;
        line-height: 1.25;
        font-weight: 900;
        text-transform: uppercase;
    }
    td:last-child { border-bottom: 0; }
    .section-cream tr {
        border-color: rgba(9, 16, 24, 0.1);
        background: rgba(255, 255, 255, 0.82);
    }
    .section-cream td {
        border-bottom-color: rgba(9, 16, 24, 0.08);
    }
    .section-cream td::before {
        color: #728076;
    }
    .footer-inner { flex-direction: column; text-align: center; }
}
