:root {
    --bg: #001f16;
    --bg-deep: #000806;
    --surface: #052a1d;
    --surface-2: #083625;
    --line: rgba(255, 255, 255, 0.12);
    --text: #f6fbf8;
    --muted: #a9c1b6;
    --green: #58d783;
    --gold: #d8af4f;
    --cyan: #16d6df;
    --danger: #ff6565;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg-deep);
    line-height: 1.5;
}

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

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -10rem;
    z-index: 50;
    background: var(--text);
    color: var(--bg);
    padding: .75rem 1rem;
    border-radius: .5rem;
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(0, 18, 13, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    border-radius: .35rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: var(--muted);
    font-size: .96rem;
}

.nav-menu a:focus-visible,
.nav-menu a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: .45rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
}

.hero {
    min-height: calc(100vh - 72px);
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    padding: 56px 0 40px;
}

.hero-copy {
    align-self: center;
}

.eyebrow {
    margin: 0 0 .75rem;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: .08em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.8rem, 18vw, 6.8rem);
    line-height: .9;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 7vw, 3.6rem);
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.08rem;
    margin-bottom: .5rem;
}

.lead {
    color: #d7e7df;
    font-size: clamp(1.08rem, 2.6vw, 1.35rem);
    max-width: 680px;
}

.hero-text {
    color: var(--muted);
    max-width: 620px;
    font-size: 1.02rem;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
    margin-top: 1.7rem;
    max-width: 520px;
    scroll-margin-top: 96px;
}

.store-badge,
.primary-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .55rem;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.store-badge {
    min-height: 56px;
    padding: 0;
}

.store-badge img {
    width: 178px;
    height: 54px;
    object-fit: contain;
}

.store-badge:hover,
.primary-button:hover {
    transform: translateY(-2px);
}

.notice {
    color: var(--muted);
    margin: .9rem 0 0;
    font-size: .92rem;
}

.hero-media {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 12% 0 8%;
    background: linear-gradient(135deg, rgba(88, 215, 131, .18), rgba(22, 214, 223, .22), rgba(216, 175, 79, .10));
    filter: blur(42px);
}

.phone {
    position: relative;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-main {
    width: min(76vw, 330px);
    z-index: 2;
}

.phone-side {
    display: none;
}

.section,
.cta {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.split {
    display: grid;
    gap: 2rem;
}

.problem,
.audience,
.intelligence {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.problem p,
.intelligence p {
    color: var(--muted);
}

.statement-panel {
    background: linear-gradient(180deg, rgba(8, 54, 37, .88), rgba(5, 34, 24, .92));
    border: 1px solid var(--line);
    border-radius: .5rem;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.statement-panel p:last-child,
.intelligence p:last-child {
    margin-bottom: 0;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-card,
.price-card,
.report-panel {
    background: linear-gradient(180deg, rgba(8, 54, 37, .88), rgba(5, 34, 24, .92));
    border: 1px solid var(--line);
    border-radius: .5rem;
    padding: 1.2rem;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: .45rem;
    background: rgba(88, 215, 131, .12);
    color: var(--green);
    font-weight: 900;
}

.feature-card p,
.price-card p,
.lot-copy p,
.cta p,
.use-grid p {
    color: var(--muted);
}

.lot {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: .75rem;
}

.check-list li {
    position: relative;
    padding-left: 1.55rem;
    color: #d9ebe3;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.report-panel {
    box-shadow: var(--shadow);
}

.score-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1rem;
}

.score-row span,
.metric span,
.metric-grid span {
    color: var(--muted);
    display: block;
    font-size: .82rem;
}

.score-row strong {
    color: var(--gold);
    font-size: 4rem;
    line-height: .8;
}

.metric {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin: 1rem 0;
}

.metric-grid div {
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
    border-radius: .45rem;
    padding: .85rem;
}

.report-note {
    color: #ffd9d9;
    border-left: 3px solid var(--danger);
    padding-left: .8rem;
    margin-bottom: 0;
    font-size: .9rem;
}

.audience-grid,
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}

.audience-grid span,
.why-grid span {
    min-height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: .45rem;
    padding: .75rem .9rem;
    background: rgba(255, 255, 255, .045);
    color: #d9ebe3;
    font-weight: 700;
}

.audience-grid span::before,
.why-grid span::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    margin-right: .7rem;
    background: var(--green);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.use-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.use-grid article {
    background: linear-gradient(180deg, rgba(8, 54, 37, .88), rgba(5, 34, 24, .92));
    border: 1px solid var(--line);
    border-radius: .5rem;
    padding: 1.2rem;
}

.use-grid article p:last-child {
    margin-bottom: 0;
}

.screen-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 260px);
    gap: 1rem;
    overflow-x: auto;
    padding: .25rem .25rem 1rem;
    scrollbar-color: var(--green) transparent;
}

.screen-row img {
    border-radius: 0;
}

.price-card strong {
    display: block;
    color: var(--gold);
    font-size: 1.7rem;
    margin-bottom: .6rem;
}

.price-card.highlighted {
    border-color: rgba(216, 175, 79, .7);
    background: linear-gradient(180deg, rgba(25, 72, 46, .95), rgba(5, 34, 24, .95));
}

.cta {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 48px;
    padding: 32px;
    border-radius: .65rem;
    background: linear-gradient(135deg, rgba(88, 215, 131, .16), rgba(22, 214, 223, .12)), var(--surface);
    border: 1px solid var(--line);
}

.primary-button {
    background: var(--green);
    color: #00140d;
    font-weight: 900;
    padding: 0 1.3rem;
    width: 100%;
    border: 1px solid transparent;
}

.site-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 36px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 1rem;
}

.site-footer div {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

.static-menu {
    display: flex;
}

.legal-page {
    width: min(880px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.legal-page h1 {
    font-size: clamp(2.6rem, 9vw, 5rem);
}

.legal-page h2 {
    font-size: clamp(1.35rem, 4vw, 2rem);
    margin-top: 2.2rem;
}

.legal-page p,
.legal-page li {
    color: #d7e7df;
}

.legal-page a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: .2em;
}

.legal-page ul {
    padding-left: 1.2rem;
}

@media (max-width: 767px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 80px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: .75rem;
        border-radius: .55rem;
        background: #03150f;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        padding: .85rem;
        border-radius: .4rem;
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        background: rgba(255, 255, 255, .06);
    }
}

@media (min-width: 640px) {
    .hero-actions,
    .feature-grid,
    .pricing-grid,
    .audience-grid,
    .why-grid,
    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
        padding-top: 64px;
    }

    .hero-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-main {
        width: 338px;
        transform: translateX(-66px);
    }

    .phone-side {
        display: block;
        position: absolute;
        width: 255px;
        right: 0;
        bottom: 26px;
        opacity: .82;
    }

    .split,
    .problem,
    .audience,
    .intelligence,
    .lot,
    .cta {
        grid-template-columns: .82fr 1.18fr;
    }

    .split .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-footer {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .primary-button {
        width: auto;
        min-width: 170px;
    }
}
