:root {
    color-scheme: dark;
    --paper: #f6f5f1;
    --ink: #090909;
    --muted: rgba(255, 255, 255, 0.76);
    --accent: #ff8000;
    --accent-deep: #c95100;
    --accent-border: #ff830e;
    --accent-shadow: rgba(41, 16, 6, 0.675);
    --content-width: 1440px;
    --page-gutter: 4.45vw;
    --section-gap: 90px;
    --section-padding-y: 64px;
    --eyebrow-title-gap: 20px;
    --title-copy-gap: 24px;
    --header-content-gap: 40px;
    --section-title-size: 58px;
    --section-copy-size: 18px;
    --reveal-o: 1;
    --reveal-y: 0px;
}

html.js {
    --reveal-o: 0;
    --reveal-y: 36px;
}

@media (prefers-reduced-motion: reduce) {
    html.js {
        --reveal-o: 1;
        --reveal-y: 0px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    min-width: 320px;
    background: #050505;
    color: white;
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Arial,
        sans-serif;
}

body::after {
    content: '';
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image: url('assets/noise-overlay.avif');
    background-repeat: repeat;
    background-size: 260px auto;
    mix-blend-mode: screen;
    filter: contrast(155%) brightness(118%);
}

a {
    color: inherit;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: #050505 url('assets/nuvora-runner-hero-monochrome.png') center center / cover
        no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.38) 78%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.16));
}

.nav-wrap {
    position: fixed;
    z-index: 2147483646;
    top: 22px;
    left: 50%;
    width: min(calc(100% - 40px), 720px);
    min-width: 0;
    margin: 0;
    transform: translateX(-50%);
    transition:
        top 0.28s ease,
        width 0.28s ease;
}

.nav {
    height: 60px;
    padding: 6px 8px 6px 28px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 32px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(11, 13, 14, 0.5);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        backdrop-filter 0.28s ease;
}

.nav-wrap.is-scrolled {
    top: 12px;
    width: min(calc(100% - 32px), 860px);
}
.nav-wrap.is-scrolled .nav {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(8, 10, 10, 0.76);
    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.brand {
    margin-right: 0;
    text-decoration: none;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1.4px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    opacity: 0.7;
}

.waitlist {
    height: 46px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff 0%, #e7e7e7 100%);
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.22),
        0 5px 12px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.waitlist:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow:
        0 2px 3px rgba(0, 0, 0, 0.24),
        0 8px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 #fff;
}
.waitlist:active {
    transform: translateY(1px);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 90vw);
    margin: 0 auto;
    padding: 190px 0 68px;
    text-align: center;
}

h1 {
    margin: 0 auto;
    max-width: 900px;
    font-size: clamp(84px, 6.85vw, 105px);
    line-height: 0.92;
    letter-spacing: -0.055em;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-line {
    display: block;
    white-space: nowrap;
}

.lead {
    max-width: 670px;
    margin: 28px auto 32px;
    font-size: 20px;
    line-height: 1.49;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.87);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.actions {
    width: max-content;
    margin-inline: auto;
}

.primary-cta,
.plan-button,
.cta-button {
    padding: 14px 26px;
    border: 2px solid var(--accent-border);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow:
        var(--accent-shadow) 0 0.602187px 1.08394px -1.16667px,
        rgba(41, 16, 6, 0.608) 0 2.28853px 4.11936px -2.33333px,
        rgba(41, 16, 6, 0.3) 0 10px 18px -3.5px,
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 -2px 0 rgba(92, 31, 0, 0.28);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.primary-cta:hover,
.plan-button:hover,
.cta-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.08) brightness(1.04);
    box-shadow:
        rgba(41, 16, 6, 0.55) 0 2px 3px -1px,
        rgba(41, 16, 6, 0.52) 0 6px 12px -3px,
        rgba(41, 16, 6, 0.38) 0 16px 24px -6px,
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(92, 31, 0, 0.28);
}

.primary-cta:active,
.plan-button:active,
.cta-button:active {
    transform: translateY(1px);
    box-shadow:
        rgba(41, 16, 6, 0.5) 0 1px 2px,
        inset 0 2px 4px rgba(76, 24, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.primary-cta {
    width: max-content;
    min-width: 292px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.arrow {
    font-size: 27px;
    line-height: 0;
    font-weight: 400;
    transform: translateY(-1px);
}

.insight-card {
    display: none;
    position: absolute;
    z-index: 3;
    right: 4.15vw;
    bottom: 5.2vh;
    width: 313px;
    min-height: 385px;
    padding: 38px 35px 28px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 32px;
    background: linear-gradient(
        152deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.09) 34%,
        rgba(255, 255, 255, 0.14) 58%,
        rgba(8, 10, 12, 0.5) 100%
    );
    color: #fff;
    box-shadow:
        0 34px 84px rgba(0, 0, 0, 0.46),
        0 9px 26px rgba(0, 0, 0, 0.27),
        inset 2px 2px 1px rgba(255, 255, 255, 0.54),
        inset -2px -2px 1px rgba(0, 0, 0, 0.2),
        inset 0 0 32px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(36px) saturate(195%) brightness(0.94) contrast(1.06);
    -webkit-backdrop-filter: blur(36px) saturate(195%) brightness(0.94) contrast(1.06);
}

.insight-card::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 9% 0%, rgba(255, 255, 255, 0.68), transparent 31%),
        radial-gradient(ellipse at 96% 100%, rgba(255, 128, 0, 0.15), transparent 36%),
        linear-gradient(
            118deg,
            rgba(255, 255, 255, 0.12),
            transparent 38%,
            rgba(255, 255, 255, 0.05) 68%,
            transparent
        );
}

.insight-card::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -65px;
    left: -15%;
    width: 130%;
    height: 125px;
    pointer-events: none;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.52),
        rgba(255, 255, 255, 0.12) 46%,
        transparent 75%
    );
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
    transform: rotate(-4deg);
}

.insight-card > * {
    position: relative;
    z-index: 2;
}

.card-label {
    margin: 0 0 11px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.11em;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.52);
}

.stat {
    margin: 0 0 9px;
    font-size: 95px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.07em;
    color: #fff;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(255, 128, 0, 0.13);
}

.card-copy {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.91);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.52);
}

.card-note {
    margin: 27px 0 0;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15.5px;
    line-height: 1.42;
    color: rgba(255, 255, 255, 0.66);
}

.page-section {
    position: relative;
    min-height: auto;
    padding-inline: var(--page-gutter);
    overflow: hidden;
    background: #060707;
}

main > .hero + .page-section,
main > .page-section + .page-section,
main > .page-section + .final-cta {
    margin-top: var(--section-gap);
}

.page-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image: radial-gradient(rgba(255, 255, 255, 0.09) 0.65px, transparent 0.65px);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
}

.section-inner {
    position: relative;
    z-index: 1;
    max-width: var(--content-width);
    margin: 0 auto;
}
.kicker {
    margin: 0 0 var(--eyebrow-title-gap);
    color: #d7d7d7;
    font:
        500 14px/1.2 ui-monospace,
        SFMono-Regular,
        Menlo,
        Consolas,
        monospace;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.kicker.lime {
    color: var(--accent);
}
.section-title {
    margin: 0;
    font-size: var(--section-title-size);
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.section-copy {
    color: #c6c6c6;
    font-size: var(--section-copy-size);
    line-height: 1.55;
}
.lime-text {
    color: var(--accent);
}
.brand-text {
    color: var(--accent);
}
.outline-panel {
    border: 1px solid rgba(255, 255, 255, 0.23);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

/* Why Nuvora exists */
.why-grid {
    display: grid;
    grid-template-columns: 41% 1fr;
    gap: 7%;
    align-items: start;
}
.why-copy .section-title {
    max-width: 590px;
    font-size: clamp(54px, 4.9vw, 76px);
    text-transform: uppercase;
}
.why-copy .section-copy {
    max-width: 520px;
    margin: var(--title-copy-gap) 0 32px;
}
.why-image {
    height: 710px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 34px;
    overflow: hidden;
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
}
.risk-stack {
    max-width: 510px;
    display: grid;
    gap: 12px;
}
.risk-card {
    min-height: 140px;
    padding: 25px 32px;
    border-radius: 29px;
    display: grid;
    grid-template-columns: 172px 1fr;
    align-items: center;
}
.risk-card.light {
    background: #f4f3ef;
    color: #090909;
}
.risk-card.dark {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035));
    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.28),
        inset 1px 1px 0 rgba(255, 255, 255, 0.22),
        inset -1px -1px 0 rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.risk-number {
    font-size: 76px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.07em;
    border-right: 1px solid rgba(127, 127, 127, 0.45);
}
.risk-number span {
    font-size: 0.65em;
}
.risk-card p {
    margin: 0;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.4;
}
/* Optimization */
.optimization {
    background: radial-gradient(circle at 68% 22%, #171714 0, #070808 42%, #050606 72%);
}
.optimization-top {
    display: grid;
    grid-template-columns: 45% 1fr;
    min-height: 530px;
    gap: 3%;
}
.optimization-copy {
    padding: 0 0 24px 0.5%;
}
.optimization-copy .section-title {
    max-width: 650px;
    font-size: clamp(59px, 5.25vw, 81px);
}
.optimization-copy .section-copy {
    max-width: 540px;
    margin: var(--title-copy-gap) 0 16px;
}
.optimization-copy b {
    font-size: 18px;
    line-height: 1.45;
}
.optimization-photo {
    position: relative;
    overflow: visible;
}
.optimization-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
    -webkit-mask-image:
        linear-gradient(90deg, transparent 0%, #000 16%, #000 72%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 8%, #000 70%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(90deg, transparent 0%, #000 16%, #000 72%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 8%, #000 70%, transparent 100%);
    mask-composite: intersect;
}
.quote-card {
    position: absolute;
    z-index: 2;
    top: 46px;
    right: 10px;
    width: 222px;
    padding: 26px 29px 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.65);
    backdrop-filter: blur(9px);
}
.quote-mark {
    margin: 0;
    color: #858585;
    font-size: 62px;
    line-height: 0.6;
    font-weight: 800;
}
.quote-card blockquote {
    margin: 22px 0;
    font-size: 25px;
    line-height: 1.35;
}
.quote-card small {
    color: #ccc;
}
.metric-grid {
    padding-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.metric-card {
    position: relative;
    min-height: 290px;
    padding: 16px 25px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.028));
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.25),
        inset 1px 1px 0 rgba(255, 255, 255, 0.18),
        inset -1px -1px 0 rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 16% 0, rgba(255, 255, 255, 0.11), transparent 42%);
}
.metric-card > * {
    position: relative;
    z-index: 1;
}
.metric-icon {
    color: var(--accent);
    font-size: 32px;
}
.metric-value {
    margin: 5px 0 0;
    color: var(--accent);
    font-size: clamp(60px, 5vw, 78px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
}
.metric-card p {
    margin: 2px 0;
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.45;
}
.metric-card small {
    display: block;
    margin-top: 20px;
    color: #a4a4a4;
    font:
        500 12px/1.2 ui-monospace,
        monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
/* How it works */
.journey-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    align-items: end;
    justify-content: space-between;
    gap: clamp(48px, 8vw, 130px);
    margin-bottom: var(--header-content-gap);
}
.journey-head .section-title {
    font-size: clamp(62px, 5.2vw, 82px);
}
.journey-head .section-copy {
    margin: 0 0 13px;
    width: 100%;
    max-width: 480px;
    justify-self: end;
}
.journey-title-line {
    display: block;
    white-space: nowrap;
}
.journey-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}
.journey-card {
    grid-column: span 5;
    height: 353px;
    display: grid;
    grid-template-columns: 48% 52%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018));
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.28),
        inset 1px 1px 0 rgba(255, 255, 255, 0.17),
        inset -1px -1px 0 rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
}
.journey-card.reverse {
    grid-template-columns: 40% 60%;
}
.journey-card:nth-child(3) {
    grid-column: span 4;
    height: 300px;
    grid-template-columns: 48% 52%;
}
.journey-card:nth-child(4) {
    grid-column: span 6;
    height: 300px;
    grid-template-columns: 46% 54%;
}
.journey-info {
    position: relative;
    z-index: 1;
    padding: 30px;
}
.journey-card:not(.light) .journey-info {
    background: linear-gradient(145deg, rgba(16, 17, 17, 0.86), rgba(16, 17, 17, 0.56));
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.12),
        inset -1px -1px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
}
.journey-card.light .journey-info {
    background: linear-gradient(145deg, #fbfaf7 0%, #e9e8e3 100%);
    color: #080808;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.95);
}
.step-no {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
}
.step-label {
    font:
        500 13px/1.2 ui-monospace,
        monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.journey-info h3 {
    margin: 18px 0 12px;
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: -0.04em;
}
.journey-info p {
    margin: 0;
    max-width: 260px;
    color: #c7c7c7;
    font-size: 15px;
    line-height: 1.48;
}
.journey-card.light .journey-info p {
    color: #292929;
}
.journey-photo {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100%;
}
.journey-photo.lab {
    background-image: url('assets/journey-lab-v2.png');
    background-position: 52% center;
}
.journey-photo.dashboard {
    background-image: url('assets/journey-dashboard-v2.png');
    background-position: center;
}
.journey-photo.doctor {
    background-image: url('assets/journey-clinician-v2.png');
    background-position: 58% center;
}
.journey-photo.plan {
    background-image: url('assets/journey-protocol-v2.png');
    background-position: center;
}
/* Membership */
.membership {
    padding-block: var(--section-padding-y);
    background: #060707 url('assets/membership-backdrop.png') left bottom / cover no-repeat;
}
.membership::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 7, 7, 0.2), rgba(6, 7, 7, 0.88) 30%, #060707 60%);
}
.membership .section-inner {
    z-index: 2;
}
.membership-head {
    display: block;
    text-align: center;
    margin-bottom: var(--header-content-gap);
}
.membership-head .section-title {
    max-width: 920px;
    margin-inline: auto;
    font-size: clamp(58px, 5vw, 77px);
    font-weight: 800;
}
.membership-layout {
    display: block;
    width: 100%;
    margin-top: 42px;
}
.pricing-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.price-card {
    position: relative;
    min-width: 0;
    min-height: 555px;
    padding: 36px 33px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.26),
        inset 1px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1px 0 rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(24px) saturate(155%);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
}
.price-card.popular {
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.16),
        rgba(255, 128, 0, 0.065) 50%,
        rgba(255, 255, 255, 0.035)
    );
    box-shadow:
        0 26px 68px rgba(0, 0, 0, 0.32),
        0 0 44px rgba(255, 128, 0, 0.07),
        inset 1px 1px 0 rgba(255, 255, 255, 0.24),
        inset -1px -1px 0 rgba(0, 0, 0, 0.18);
}
.popular-label {
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    height: 30px;
    border-radius: 18px 18px 0 0;
    background: var(--accent);
    color: #fff;
    text-align: center;
    font:
        700 12px/30px ui-monospace,
        monospace;
}
.tier {
    font:
        500 14px/1 ui-monospace,
        monospace;
    letter-spacing: 0.05em;
}
.price-card h3 {
    margin: 37px 0 25px;
    min-height: 60px;
    font-size: 23px;
    line-height: 1.15;
}
.price {
    font-size: 49px;
    font-weight: 800;
    letter-spacing: -0.05em;
}
.price small {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0;
}
.feature-list {
    margin: 27px 0 80px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    list-style: none;
}
.feature-list li {
    margin: 12px 0;
    color: #d0d0d0;
    font-size: 13px;
}
.feature-list li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 13px;
}
.plan-button {
    position: absolute;
    left: 33px;
    right: 33px;
    bottom: 26px;
    min-height: 52px;
    display: grid;
    place-items: center;
    border-color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(180deg, #fff 0%, #e7e7e7 100%);
    color: var(--ink);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.22),
        0 5px 12px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
.popular .plan-button {
    border-color: var(--accent-border);
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow:
        var(--accent-shadow) 0 0.602187px 1.08394px -1.16667px,
        rgba(41, 16, 6, 0.608) 0 2.28853px 4.11936px -2.33333px,
        rgba(41, 16, 6, 0.3) 0 10px 18px -3.5px,
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 -2px 0 rgba(92, 31, 0, 0.28);
}
.plan-button:hover {
    box-shadow:
        0 2px 3px rgba(0, 0, 0, 0.2),
        0 9px 18px rgba(0, 0, 0, 0.27),
        inset 0 1px 0 #fff,
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
.plan-button:active {
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.12);
}
.popular .plan-button:hover {
    box-shadow:
        rgba(41, 16, 6, 0.55) 0 2px 3px -1px,
        rgba(41, 16, 6, 0.52) 0 6px 12px -3px,
        rgba(41, 16, 6, 0.38) 0 16px 24px -6px,
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(92, 31, 0, 0.28);
}
.popular .plan-button:active {
    box-shadow:
        rgba(41, 16, 6, 0.5) 0 1px 2px,
        inset 0 2px 4px rgba(76, 24, 0, 0.32);
}
/* Results */
.results-layout {
    display: block;
}
.results-intro {
    padding: 0 0 var(--header-content-gap);
    text-align: center;
}
.results-intro .section-title {
    margin-top: 0;
    font-size: clamp(52px, 4.5vw, 70px);
}
.result-mosaic {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 382px 325px;
    gap: 10px;
}
.result-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    overflow: hidden;
}
.result-card:nth-child(1),
.result-card:nth-child(2) {
    grid-column: span 6;
}
.result-card:nth-child(n + 3) {
    grid-column: span 4;
}
.result-photo {
    min-width: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.result-photo.p1 {
    background-image: url('assets/results-energy-v2.png');
    background-position: 50% center;
}
.result-photo.p2 {
    background-image: url('assets/results-recovery-v2.png');
    background-position: 50% center;
}
.result-photo.p3 {
    background-image: url('assets/results-sleep-human-v3.png');
    background-position: center;
}
.result-photo.p4 {
    background-image: url('assets/results-clarity-v2.png');
    background-position: 46% center;
}
.result-photo.p5 {
    background-image: url('assets/results-longevity-human-v3.png');
    background-position: center;
}
.result-info {
    min-width: 0;
    padding: 28px 26px;
    background: linear-gradient(145deg, #171818, #0c0d0d);
}
.result-info .metric-icon {
    font-size: 26px;
}
.result-info .metric-value {
    font-size: 45px;
    margin: 10px 0 8px;
}
.result-info h3 {
    margin: 0;
    font:
        500 11px/1.25 ui-monospace,
        monospace;
    text-transform: uppercase;
}
.result-info blockquote {
    margin: 25px 0 0;
    color: #c5c5c5;
    font-size: 13px;
    line-height: 1.48;
}
.result-info small {
    display: block;
    margin-top: 18px;
    color: #bbb;
    font-size: 12px;
}
/* FAQ */
.faq {
    background: radial-gradient(circle at 45% 50%, #151616 0, #080909 48%, #050606 75%);
}
.faq-layout {
    display: block;
}
.faq-intro {
    text-align: center;
    margin-bottom: var(--header-content-gap);
}
.faq-intro .section-title {
    max-width: 760px;
    margin: 0 auto;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-list details {
    margin: 10px 0;
    padding: 0 24px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.22),
        inset 1px 1px 0 rgba(255, 255, 255, 0.18),
        inset -1px -1px 0 rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    transition:
        margin 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-radius 0.25s ease;
}
.faq-list details[open] {
    margin: 10px 0;
    padding-bottom: 28px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.055));
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.3),
        inset 1px 1px 0 rgba(255, 255, 255, 0.24),
        inset -1px -1px 0 rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.faq-list summary {
    min-height: 92px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    font-size: 23px;
}
.faq-list summary::-webkit-details-marker {
    display: none;
}
.faq-toggle {
    justify-self: end;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    color: #fff;
    font-size: 27px;
    font-weight: 300;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}
details[open] .faq-toggle {
    color: var(--accent);
    transform: rotate(90deg);
}
.faq-num {
    justify-self: start;
    color: var(--accent);
    font:
        600 14px/1 ui-monospace,
        monospace;
    letter-spacing: 0.08em;
}
.faq-answer {
    max-width: 760px;
    margin: -4px 66px 0 68px;
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.65;
}

/* CTA + footer */
.final-cta {
    display: grid;
    place-items: center;
    padding-inline: 3%;
    background: #030404;
}
.cta-panel {
    position: relative;
    width: 100%;
    padding: 60px 5%;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 26px;
    overflow: hidden;
    background: #050606 url('assets/cta-athlete-monochrome.png') center / cover no-repeat;
}
.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0, transparent 62%);
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 670px;
}
.cta-content h2 {
    margin: 0;
    font-size: clamp(68px, 6vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}
.cta-content p {
    max-width: 430px;
    color: #ddd;
    font-size: 21px;
    line-height: 1.55;
}
.cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
}
.cta-button {
    width: max-content;
    min-width: 292px;
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.page-section h2,
.final-cta h2 {
    font-size: var(--section-title-size) !important;
    line-height: 0.98;
    text-transform: uppercase;
}
.site-footer {
    margin-top: 60px;
    padding: 0 4.45vw 24px;
    background: transparent;
}
.footer-shell {
    width: 100%;
    max-width: 1440px;
    min-height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) repeat(4, max-content);
    gap: 56px;
    align-items: start;
}
.footer-brand-wrap {
    position: relative;
}
.footer-brand {
    display: inline-block;
    font-size: 76px;
    line-height: 0.9;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -4px;
}
.footer-description {
    max-width: 350px;
    margin: 37px 0 0;
    color: #aaa;
    font-size: 21px;
    line-height: 1.7;
}
.footer-col h3 {
    margin: 22px 0 0;
    color: #efefef;
    font:
        500 18px/1 ui-monospace,
        SFMono-Regular,
        Menlo,
        Consolas,
        monospace;
    letter-spacing: 0.12em;
}
.footer-col {
    justify-self: end;
}
.footer-col a {
    display: block;
    margin: 14px 0;
    color: #aaa;
    text-decoration: none;
}
.footer-col a:hover,
.footer-col a:focus-visible {
    color: var(--accent);
}
.footer-bottom {
    margin-top: 78px;
    padding-top: 0;
    border-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #a9a9a9;
    font-size: 17px;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 61px;
}
.social-links a {
    width: 32px;
    height: 32px;
    color: #eee;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}
.social-links svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-x {
    display: grid;
    place-items: center;
    font:
        300 43px/0.7 Arial,
        sans-serif;
}

/* Scroll reveal (animated in by script.js via Motion; visible by default without JS) */
.hero-line,
.lead,
.actions,
.kicker,
.section-title,
.section-copy,
.risk-card,
.why-image,
.metric-card,
.optimization-copy b,
.optimization-photo,
.quote-card,
.journey-card,
.price-card,
.result-card,
.faq-list details,
.cta-content h2,
.cta-content p,
.cta-row {
    opacity: var(--reveal-o);
    transform: translateY(var(--reveal-y));
}

/* Footer links */
.footer-col h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-col h3 a:hover,
.footer-col h3 a:focus-visible {
    color: var(--accent);
}
.credit-link {
    color: #d7d7d7;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
}
.credit-link:hover,
.credit-link:focus-visible {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

@media (max-width: 1250px) {
    .page-section {
        min-height: auto;
    }
    .membership {
        padding-block: 70px;
    }
    .hero-content {
        width: 62vw;
    }
    .lead {
        font-size: 20px;
    }
    .why-grid {
        grid-template-columns: 46% 1fr;
        gap: 4%;
    }
    .why-image {
        height: 650px;
    }
    .optimization-top {
        grid-template-columns: 50% 1fr;
    }
    .quote-card {
        width: 200px;
    }
    .price-card {
        padding-inline: 25px;
    }
    .plan-button {
        left: 25px;
        right: 25px;
    }
    .result-info {
        padding: 28px 20px;
    }
}

@media (max-width: 980px) {
    .nav-wrap {
        width: calc(100% - 32px);
        min-width: 0;
    }
    .nav {
        gap: 22px;
    }
    .nav-links {
        display: none;
    }
    .hero {
        min-height: 980px;
        background-position: center;
    }
    .hero::before {
        background:
            radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48) 78%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.18));
    }
    .hero-content {
        width: 90vw;
        padding-left: 0;
    }
    h1 {
        font-size: clamp(56px, 7vw, 68px);
    }
    .insight-card {
        width: 280px;
        right: 4vw;
    }
    .why-grid,
    .optimization-top,
    .journey-head,
    .membership-head,
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .why-image {
        order: -1;
        height: 580px;
        margin-bottom: 35px;
    }
    .optimization-photo {
        min-height: 520px;
        margin-top: 30px;
    }
    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }
    .journey-head .section-copy {
        margin-top: 26px;
    }
    .journey-head {
        gap: 0;
    }
    .journey-grid {
        grid-template-columns: 1fr;
    }
    .journey-card,
    .journey-card:nth-child(3),
    .journey-card:nth-child(4) {
        grid-column: 1 / -1;
        height: auto;
        min-height: 360px;
    }
    .membership-layout {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        min-height: 500px;
    }
    .result-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
    .result-card,
    .result-card:nth-child(1),
    .result-card:nth-child(2),
    .result-card:nth-child(n + 3) {
        grid-column: auto;
        min-height: 360px;
    }
    .result-card:last-child {
        grid-column: span 2;
    }
    .faq-list {
        margin-top: 45px;
    }
    .cta-panel {
        min-height: 720px;
        background-position: 62% center;
    }
    .footer-shell {
        min-height: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col {
        justify-self: start;
    }
    .footer-brand-wrap {
        grid-column: span 2;
        margin-bottom: 20px;
    }
    .footer-col h3 {
        margin-top: 20px;
    }
    .footer-bottom {
        margin-top: 64px;
        padding-top: 0;
    }
}

@media (max-width: 680px) {
    .page-section {
        padding-inline: 22px;
    }
    .membership {
        padding-block: 58px 44px;
    }
    .nav-wrap {
        margin-top: 18px;
    }
    .nav {
        height: 60px;
        padding-left: 22px;
    }
    .brand {
        font-size: 27px;
    }
    .waitlist {
        height: 42px;
        padding-inline: 18px;
        font-size: 14px;
    }
    .hero {
        min-height: 1120px;
        background-position: center;
    }
    .hero-content {
        width: calc(100% - 44px);
        padding: 130px 0 30px;
    }
    h1 {
        font-size: clamp(31px, 10.4vw, 52px);
        line-height: 0.92;
    }
    .lead {
        margin-top: 28px;
        font-size: 18px;
    }
    .lead br {
        display: none;
    }
    .actions {
        width: max-content;
        max-width: 100%;
    }
    .primary-cta {
        width: max-content;
        max-width: 100%;
        min-width: 0;
        min-height: 52px;
        height: auto;
        padding: 14px 26px;
        font-size: 18px;
    }
    .insight-card {
        left: 22px;
        right: 22px;
        bottom: 26px;
        width: auto;
        min-height: auto;
        padding: 28px;
    }
    .stat {
        font-size: 75px;
    }
    .section-title,
    .why-copy .section-title,
    .optimization-copy .section-title,
    .journey-head .section-title,
    .membership-head .section-title,
    .results-intro .section-title {
        font-size: clamp(45px, 13.5vw, 64px);
    }
    .section-copy {
        font-size: 17px;
    }
    .why-image {
        height: 430px;
        border-radius: 22px;
    }
    .risk-card {
        grid-template-columns: 135px 1fr;
        padding: 24px 20px;
    }
    .risk-number {
        font-size: 62px;
    }
    .risk-card p {
        padding-left: 20px;
        font-size: 14px;
    }
    .optimization-photo {
        min-height: 430px;
    }
    .quote-card {
        top: 18px;
        right: 12px;
        width: 184px;
    }
    .quote-card blockquote {
        font-size: 20px;
    }
    .metric-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .metric-card {
        min-height: 250px;
    }
    .journey-card,
    .journey-card.reverse,
    .journey-card:nth-child(3),
    .journey-card:nth-child(4) {
        grid-template-columns: 1fr;
    }
    .journey-info {
        min-height: 330px;
    }
    .journey-photo {
        min-height: 300px;
    }
    .price-card {
        min-height: 540px;
    }
    .result-mosaic {
        grid-template-columns: 1fr;
    }
    .result-card,
    .result-card:last-child {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
    .result-photo {
        min-height: 300px;
    }
    .faq-list summary {
        grid-template-columns: 42px 1fr 30px;
        gap: 12px;
        font-size: 18px;
    }
    .faq-toggle {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
    .faq-answer {
        margin-left: 54px;
        font-size: 15px;
    }
    .final-cta {
        padding-inline: 18px;
    }
    .cta-panel {
        min-height: 800px;
        padding: 85px 28px;
        background-position: 68% center;
    }
    .cta-panel::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.75));
    }
    .cta-content h2 {
        font-size: clamp(52px, 15vw, 72px);
    }
    .page-section h2,
    .final-cta h2 {
        font-size: clamp(42px, 12vw, 52px) !important;
    }
    .cta-content p {
        margin-bottom: 38px;
    }
    .cta-row {
        align-items: stretch;
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
    }
    .site-footer {
        padding: 0 22px 24px;
    }
    .footer-shell {
        border-radius: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .journey-title-line {
        white-space: normal;
    }
    .footer-brand-wrap {
        grid-column: auto;
    }
    .footer-brand {
        font-size: 59px;
    }
    .footer-description {
        font-size: 18px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }
    .social-links {
        width: 100%;
        justify-content: space-between;
        gap: 18px;
    }
}
