/* ==========================================================================
   HEALTH QUARTERBACK — Bandit editorial reskin
   Ink/paper system per /start and /for/matt-schaar chassis.
   Same markup, same JS hooks. CSS only.
   ========================================================================== */

/* Hide video on mobile — saves 4MB on slow connections */
@media (max-width: 768px) {
    .hero-bg video { display: none !important; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bandit tokens */
    --ink: #0A0A0A;
    --ink-2: #1A1A1A;
    --ink-3: #2A2A2A;
    --paper: #FAFAFA;
    --paper-2: #F2F2F0;
    --rule-dark: #262626;
    --rule-light: #E5E5E5;
    --muted-dark: #8A8A8A;
    --muted: #6B6B6B;
    --muted-2: #9A9A9A;
    --flame: #2060ff;
    --flame-press: #1a50dd;
    --font-display: "Helvetica Neue", "Inter", "Helvetica", "Arial", sans-serif;
    --font-body: "Helvetica Neue", "Inter", "Helvetica", "Arial", sans-serif;
    --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

    /* Legacy variable names referenced by inline style="" attributes in the
       markup — remapped to the Bandit palette so those attributes resolve
       to the new system without markup edits. */
    --accent: var(--flame);
    --accent-readable: var(--flame);
    --text-secondary: var(--muted);
    --text-tertiary: var(--muted-2);
    --white: #ffffff;
    --black: var(--ink);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

[hidden] { display: none !important; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.5rem; text-wrap: balance; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin-bottom: 1rem; color: var(--muted); }

.text-white { color: #ffffff; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 112px 0;
    border-bottom: none;
}

section[id] { scroll-margin-top: 76px; }

/* ==========================================================================
   Header — restyled to Bandit ink bar (existing markup, no duplicate bar)
   ========================================================================== */
.hero-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 8px 24px;
    background: var(--ink);
    border: none;
    border-bottom: 1px solid var(--rule-dark);
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.hero-topbar.scrolled {
    border-bottom-color: #3a3a3a;
}

/* Base64 white logo SVG has generous internal padding (1080x1080 canvas);
   oversize + negative margins crop it to a ~28px wordmark. */
.hero-topbar img {
    height: 150px;
    width: auto;
    margin: -56px 0;
    display: block;
}

.topbar-nav {
    display: flex;
    gap: 26px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-nav a {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.topbar-nav a:hover {
    color: var(--flame);
}

.topbar-cta {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 18px;
    background: var(--flame);
    color: #fff;
    border: none;
    border-radius: 0;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.topbar-cta:hover {
    background: var(--flame-press);
}

/* Hamburger — hidden on desktop, shown in mobile media block below */
.hamburger { display: none; }

/* ==========================================================================
   Hero (ink)
   ========================================================================== */
.hero {
    background: var(--ink);
    color: #fff;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 110px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.16;
    filter: grayscale(1) contrast(1.1);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
    pointer-events: none;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The hero video file has 404'd since May (video assets excluded from deploys).
   Per John 2026-07-15: use the biomarker still from the build instead. */
.hero-bg video { display: none !important; }
.hero-bg {
    background-image: url('/rha-hero-biomarker.webp');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.hero h1 {
    margin-bottom: 28px;
    color: #fff;
    line-height: 0.98;
    text-wrap: balance;
}

.hero h1 span {
    color: var(--flame);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    color: var(--muted-dark);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ==========================================================================
   Buttons — flame primary, square corners
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 34px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
    border: none;
    border-radius: 0;
}

.btn-primary {
    background: var(--flame);
    color: #fff;
}

.btn-primary:hover {
    background: var(--flame-press);
    color: #fff;
}

/* Secondary CTA inside tier cards (the non-Stripe button) reads as ink */
.tier-cta .btn-primary:not(.tier-join) {
    background: var(--ink);
    color: #fff;
}

.tier-cta .btn-primary:not(.tier-join):hover {
    background: var(--flame);
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Trust Bar (paper-2 strip)
   ========================================================================== */
.trust-bar {
    padding: 34px 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule-light);
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin: 0;
}

/* ==========================================================================
   Problem (ink)
   ========================================================================== */
.problem {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.problem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.10;
    filter: grayscale(1);
    pointer-events: none;
}

.problem .container {
    position: relative;
    z-index: 1;
}

.problem-header {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 36px;
}

.problem-content {
    max-width: 760px;
}

.problem-content p {
    font-size: clamp(1.1rem, 1.9vw, 1.3rem);
    color: #c8c8c8;
    line-height: 1.7;
}

.problem-content p.text-white {
    color: #fff;
    font-weight: 600;
}

.problem-punchline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--rule-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ==========================================================================
   Social Proof Band (ink, ruled stats)
   ========================================================================== */
.proof-band {
    padding: 0;
    background: var(--ink);
    color: #fff;
    border-top: 1px solid var(--rule-dark);
}

.proof-band .container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: left;
    min-width: 140px;
    flex: 1;
    padding: 44px 32px 44px 0;
    border-right: 1px solid var(--rule-dark);
}

.proof-stat:last-child {
    border-right: none;
    padding-right: 0;
}

.proof-stat + .proof-stat {
    padding-left: 32px;
}

.proof-number {
    font-family: var(--font-mono);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.03em;
    font-feature-settings: "tnum";
    line-height: 1;
    margin-bottom: 12px;
}

.proof-number .proof-accent {
    color: var(--flame);
}

.proof-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-dark);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   Phases (paper)
   ========================================================================== */
#phases h2 {
    color: var(--ink);
}

.phases-strip {
    display: flex;
    align-items: stretch;
    margin-top: 72px;
    position: relative;
}

.phases-strip::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--rule-light);
    z-index: 0;
}

.phase-item {
    flex: 1;
    padding: 0 36px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.phase-item:first-child { padding-left: 0; }

.phase-item:not(:last-child) {
    border-right: 1px solid var(--rule-light);
}

/* Marker on the connecting line */
.phase-item::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: var(--paper);
    border: 1px solid var(--ink);
    margin: 0 0 36px;
    transition: all 0.3s ease;
}

.phase-item.active::before {
    background: var(--flame);
    border-color: var(--flame);
}

.phase-number-big {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1;
    color: #D9D9D6;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.phase-item.active .phase-number-big {
    color: var(--flame);
}

.phase-item h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    color: var(--muted);
    transition: color 0.3s ease;
}

.phase-item.active h3 {
    color: var(--ink);
}

.phase-item p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--muted-2);
    max-width: 320px;
    margin: 0;
    transition: color 0.3s ease;
}

.phase-item.active p {
    color: var(--muted);
}

.phase-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 7px 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: var(--flame);
    color: #fff;
    border-radius: 0;
}

/* ==========================================================================
   Team (paper, full-bleed image header)
   ========================================================================== */
.team-section {
    background: var(--paper);
    overflow: hidden;
    padding-top: 0;
}

.team-header {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 480px;
    margin-bottom: 72px;
    overflow: hidden;
    background: var(--ink);
}

.team-header-image {
    position: absolute;
    inset: 0;
}

.team-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.55;
}

.team-header-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0.55) 100%);
}

.team-header-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.team-header-text h2 {
    color: #fff;
}

.team-header-text p {
    color: #e7e7e7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--rule-light);
    border: 1px solid var(--rule-light);
}

.team-card {
    padding: 32px 24px;
    background: #fff;
    border: none;
    border-radius: 0;
    text-align: left;
    transition: background 0.15s ease;
}

.team-card:hover {
    background: var(--paper-2);
}

.team-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 0;
    overflow: hidden;
    margin: 0 0 20px;
    border: 1px solid var(--rule-light);
}

.team-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(1);
}

.team-role {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
}

.team-cred {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--flame);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.6;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.team-highlight {
    margin-top: 56px;
    padding: 44px 40px;
    background: var(--ink);
    border: none;
    border-radius: 0;
    text-align: center;
}

.team-highlight p {
    font-size: 1.15rem;
    color: #c8c8c8;
    margin: 0;
    line-height: 1.7;
}

.team-highlight p strong {
    color: #fff;
}

/* ==========================================================================
   Athletes (ink)
   ========================================================================== */
.athletes-section {
    background: var(--ink);
    color: #fff;
}

.athletes-section h2 {
    color: #fff;
}

.athletes-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--flame);
    margin-bottom: 24px;
    font-weight: 700;
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 56px;
    background: var(--rule-dark);
    border: 1px solid var(--rule-dark);
}

.athlete-card {
    padding: 36px 28px;
    background: var(--ink);
    border: none;
    border-radius: 0;
    text-align: left;
    transition: background 0.15s ease;
}

.athlete-card:hover {
    background: #111111;
}

.athlete-photo {
    width: 100%;
    max-width: 100%;
    height: 240px;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
    margin: 0 0 24px;
    display: block;
    border: 1px solid var(--rule-dark);
    box-shadow: none;
}

.athlete-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.015em;
    color: #fff;
    margin-bottom: 6px;
}

.athlete-sport {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--flame);
    font-weight: 700;
    margin-bottom: 14px;
}

.athlete-detail {
    font-size: 0.92rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Pull Quotes (paper, ruled)
   ========================================================================== */
.pull-quote {
    padding: 56px 24px;
    text-align: left;
    max-width: 820px;
    margin: 0 auto;
}

.pull-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    line-height: 1.35;
    margin: 0 0 20px;
    padding: 28px 0 0;
    position: relative;
    border-top: 1px solid var(--ink);
}

.pull-quote blockquote::before {
    content: '\201C';
    font-size: inherit;
    color: var(--flame);
    position: static;
    line-height: inherit;
    font-style: normal;
}

.pull-quote cite {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-style: normal;
    font-weight: 500;
    display: block;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule-light);
}

.pull-quote cite strong {
    color: var(--ink);
    font-weight: 700;
}

/* ==========================================================================
   On-Demand Access (paper) + chat mockup
   ========================================================================== */
.on-demand {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.on-demand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.on-demand-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--flame);
    margin-bottom: 22px;
}

.on-demand-eyebrow svg {
    width: 16px;
    height: 16px;
    fill: var(--flame);
}

.on-demand h2 {
    color: var(--ink);
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    line-height: 1.05;
    margin-bottom: 22px;
}

.on-demand-body {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 32px;
}

/* Chat mockup — paper card, editorial bubbles */
.chat-mockup {
    background: #fff;
    border: 1px solid var(--rule-light);
    border-radius: 0;
    box-shadow: none;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    max-width: 85%;
    padding: 13px 15px;
    border-radius: 0;
    font-size: 0.93rem;
    line-height: 1.55;
}

.chat-bubble.patient {
    align-self: flex-end;
    background: var(--ink);
    border: none;
    color: #fff;
}

.chat-bubble.doctor {
    align-self: flex-start;
    background: var(--paper);
    border: 1px solid var(--rule-light);
    border-left: 2px solid var(--flame);
    color: var(--ink);
}

.chat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.chat-avatar {
    width: 26px;
    height: 26px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
}

.chat-avatar.patient-av {
    background: var(--ink);
    color: #fff;
}

.chat-avatar.doctor-av {
    background: var(--flame);
    color: #fff;
}

.chat-name {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.chat-time {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.06em;
    color: inherit;
    opacity: 0.5;
    margin-top: 8px;
}

.chat-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 10px 4px;
}

.chat-typing span {
    width: 5px;
    height: 5px;
    border-radius: 0;
    background: var(--flame);
    opacity: 0.4;
    animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-3px); }
}

/* ==========================================================================
   Section divider — hairline rule
   ========================================================================== */
.section-divider {
    width: 100%;
    height: 1px;
    padding: 0;
    border: none;
    background: var(--rule-light);
    position: relative;
}

.section-divider::before {
    content: none;
}

/* ==========================================================================
   Longevity Protocol (ink)
   ========================================================================== */
.program-journey {
    background: var(--ink);
    color: #fff;
    padding: 112px 0 100px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.program-journey-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    opacity: 0.18;
    filter: grayscale(1);
    pointer-events: none;
    z-index: 0;
}

.program-journey-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0) 0%,
        rgba(10,10,10,0) 40%,
        rgba(10,10,10,0.6) 70%,
        rgba(10,10,10,1) 95%
    );
}

.program-journey > .container {
    position: relative;
    z-index: 1;
}

.program-journey h2 {
    color: #fff;
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    margin-bottom: 22px;
}

.program-subtitle {
    color: var(--muted-dark);
    font-size: 1.08rem;
    max-width: 640px;
    margin: 0 0 72px;
    line-height: 1.65;
}

/* Protocol grid */
.protocol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-bottom: 80px;
    position: relative;
    text-align: left;
    background: var(--rule-dark);
    border: 1px solid var(--rule-dark);
}

.protocol-grid::before {
    content: none;
}

.protocol-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 28px;
    border-radius: 0;
    border: none;
    background: var(--ink);
    transition: background 0.15s ease;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    animation: protocolFadeIn 0.5s ease forwards;
}

.protocol-card:nth-child(1)  { animation-delay: 0.05s; }
.protocol-card:nth-child(2)  { animation-delay: 0.10s; }
.protocol-card:nth-child(3)  { animation-delay: 0.15s; }
.protocol-card:nth-child(4)  { animation-delay: 0.20s; }
.protocol-card:nth-child(5)  { animation-delay: 0.25s; }
.protocol-card:nth-child(6)  { animation-delay: 0.30s; }
.protocol-card:nth-child(7)  { animation-delay: 0.35s; }
.protocol-card:nth-child(8)  { animation-delay: 0.40s; }
.protocol-card:nth-child(9)  { animation-delay: 0.45s; }
.protocol-card:nth-child(10) { animation-delay: 0.50s; }

@keyframes protocolFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.protocol-card:hover {
    background: #111111;
}

.protocol-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--rule-dark);
    box-shadow: none;
    background: var(--ink-2);
}

.protocol-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(1);
}

.protocol-right {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 2px;
}

.protocol-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--flame);
    margin: 0;
    font-weight: 700;
}

.protocol-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.protocol-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* Feature cards */
.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 64px;
    text-align: left;
    background: var(--rule-dark);
    border: 1px solid var(--rule-dark);
}

.feature-card {
    border: none;
    border-radius: 0;
    background: var(--ink);
    padding: 36px 32px;
    transition: background 0.15s ease;
    opacity: 0;
    transform: translateY(28px);
}

.feature-card.animate-in {
    animation: cardSlideIn 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.30s; }

@keyframes cardSlideIn {
    to { opacity: 1; transform: translateY(0); }
}

.feature-card:hover {
    background: #111111;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--rule-dark);
    box-shadow: none;
    background: var(--ink-2);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(1);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.65;
}

/* Journey CTA */
.journey-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--flame);
    color: #fff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.15s ease;
    border: none;
    cursor: pointer;
    box-shadow: none;
    text-shadow: none;
}

.journey-cta:hover {
    background: var(--flame-press);
}

.journey-cta .cta-arrow {
    transition: transform 0.2s ease;
    font-size: 1rem;
}

.journey-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   How it Works — timeline (paper)
   ========================================================================== */
#how-it-works {
    background: var(--paper);
}

#how-it-works h2 {
    color: var(--ink);
}

.timeline {
    position: relative;
    margin-top: 72px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--rule-light);
}

.timeline-step {
    position: relative;
    padding: 0 0 56px 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -80px;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--ink);
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--rule-light);
}

.timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.timeline-text h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.timeline-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
}

/* ==========================================================================
   What's Included (paper)
   ========================================================================== */
#included {
    background: var(--paper);
}

.inc-header {
    text-align: center;
    padding: 0 24px 48px;
    position: relative;
}

.inc-header .inc-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 22px;
}

.inc-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.02;
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: initial;
    max-width: 720px;
    margin: 0 auto;
}

.inc-header .inc-counter {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.inc-header .inc-counter strong {
    color: var(--flame);
    font-size: 1em;
    font-weight: 700;
}

/* Scrolling UNLIMITED ticker */
.marquee-wrap {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    margin-bottom: 80px;
}

.marquee {
    display: flex;
    gap: 60px;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted-2);
    white-space: nowrap;
}

.marquee span.accent {
    color: var(--flame);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Feature rows — editorial list with hairlines */
.inc-features {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 64px;
    border-top: 1px solid var(--ink);
}

.inc-feature {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 30px 0;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: padding-left 0.15s ease, background 0.15s ease, opacity 0.5s ease, transform 0.5s ease;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule-light);
    opacity: 0;
    transform: translateY(24px);
}

.inc-feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.inc-feature:hover {
    padding-left: 8px;
    background: transparent;
    border-bottom: 1px solid var(--rule-light);
    box-shadow: none;
}

.inc-feature::after {
    content: none;
}

.inc-number {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--flame);
    min-width: 40px;
    text-align: left;
    transition: color 0.15s ease;
}

.inc-feature:hover .inc-number {
    color: var(--flame);
}

.inc-content {
    flex: 1;
}

.inc-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.inc-desc {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 400;
    max-width: 620px;
}

.inc-feature:hover .inc-desc {
    color: var(--muted);
}

.inc-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Priced separately */
.inc-priced {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.inc-priced-inner {
    padding: 32px 36px;
    border-radius: 0;
    background: var(--paper-2);
    border: 1px solid var(--rule-light);
}

.inc-priced h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.inc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.inc-pill {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 0;
    background: #fff;
    border: 1px solid var(--rule-light);
    color: var(--ink);
    line-height: 1.5;
}

.inc-note {
    font-size: 0.9rem;
    color: var(--muted-2);
    font-style: italic;
    line-height: 1.55;
}

/* ==========================================================================
   Testimonials (ink)
   ========================================================================== */
.testimonials {
    background: var(--ink);
    color: #fff;
}

.testimonials h2 {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 56px;
    background: var(--rule-dark);
    border: 1px solid var(--rule-dark);
}

.testimonial {
    padding: 30px 26px;
    border: none;
    border-radius: 0;
    background: var(--ink);
    transition: background 0.15s ease;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

.testimonial.animate-in {
    animation: cardSlideIn 0.5s ease forwards;
}

.testimonial:nth-child(1) { animation-delay: 0s; }
.testimonial:nth-child(2) { animation-delay: 0.08s; }
.testimonial:nth-child(3) { animation-delay: 0.16s; }
.testimonial:nth-child(4) { animation-delay: 0.24s; }
.testimonial:nth-child(5) { animation-delay: 0.32s; }
.testimonial:nth-child(6) { animation-delay: 0.40s; }
.testimonial:nth-child(7) { animation-delay: 0.48s; }
.testimonial:nth-child(8) { animation-delay: 0.56s; }

.testimonial:hover {
    background: #111111;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 2.6rem;
    line-height: 1;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--flame);
    background: none;
    -webkit-text-fill-color: initial;
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #c8c8c8;
    font-style: normal;
    margin-bottom: 24px;
    line-height: 1.65;
}

.testimonial-author {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 6px;
}

.testimonial-title {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--flame);
    margin: 0;
}

/* ==========================================================================
   Pricing (paper)
   ========================================================================== */
#pricing {
    background: var(--paper);
}

#pricing h2 {
    color: var(--ink);
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-weight: 700;
}

.cost-now-banner {
    margin-top: 56px;
    padding: 32px 36px 26px;
    border-radius: 0;
    background: var(--paper-2);
    border: 1px solid var(--rule-light);
    box-shadow: none;
}

.cost-now-banner h3 {
    font-family: var(--font-mono);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cost-now-lines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    column-gap: 48px;
}

.cost-line {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--rule-light);
    font-size: 0.95rem;
}

.cost-line span:first-child {
    color: var(--muted);
}

.cost-line span:last-child {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-feature-settings: "tnum";
    color: var(--ink);
    font-weight: 500;
}

.cost-now-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--ink);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
}

.cost-now-total span:last-child {
    font-family: var(--font-mono);
    font-feature-settings: "tnum";
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

/* Billing toggle */
.bill-toggle {
    display: flex;
    width: max-content;
    margin: 40px auto 0;
    gap: 0;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: #fff;
}

.bill-toggle button {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.bill-toggle button.active {
    background: var(--ink);
    color: #fff;
}

.bill-toggle .bt-hint {
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--flame);
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

.bill-toggle button.active .bt-hint {
    color: #fff;
    opacity: 0.8;
}

.tier-save {
    color: var(--flame);
    font-weight: 700;
}

/* Tier cards */
.tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
    align-items: stretch;
}

.tier-card {
    padding: 44px 36px;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.tier-health {
    order: 1;
    background: #fff;
    border: 1px solid var(--rule-light);
}

.tier-peak {
    order: 2;
    background: #fff;
    border: 1px solid var(--ink);
    box-shadow: inset 0 3px 0 0 var(--flame);
}

.tier-kicker {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
    font-weight: 700;
}

.tier-peak .tier-kicker {
    color: var(--flame);
}

.tier-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0;
}

.tier-price {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    font-feature-settings: "tnum";
    color: var(--ink);
    line-height: 1;
    margin: 18px 0 8px;
}

.tier-price .per {
    font-family: var(--font-mono);
    font-size: 0.35em;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.tier-period {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted-2);
    margin-bottom: 26px;
    line-height: 1.7;
}

.tier-card .cost-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    border-top: 1px solid var(--rule-light);
}

.tier-card .cost-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule-light);
    color: var(--ink-3);
    font-size: 0.95rem;
    line-height: 1.5;
}

.tier-card .cost-includes li .check {
    color: var(--flame);
    margin-right: 10px;
}

.tier-cta {
    margin-top: auto;
}

.cost-savings {
    text-align: center;
    margin-top: 48px;
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

.cost-savings strong {
    color: var(--ink);
}

/* ==========================================================================
   FAQ (paper)
   ========================================================================== */
#faq {
    background: var(--paper);
}

#faq h2 {
    color: var(--ink);
}

.faq-list {
    max-width: 760px;
    margin: 48px auto 0;
    border-top: 1px solid var(--ink);
}

.faq-item {
    border-bottom: 1px solid var(--rule-light);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 0;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    line-height: 1.45;
    transition: color 0.15s ease;
}

.faq-question:hover {
    color: var(--flame);
}

.faq-question:focus-visible {
    outline: 2px solid var(--flame);
    outline-offset: 4px;
    border-radius: 0;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--muted-2);
    transition: color 0.15s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    content: '-';
    color: var(--flame);
}

.faq-answer {
    color: var(--muted);
    font-size: 1rem;
    padding: 0 0 26px;
    line-height: 1.65;
    display: none;
    margin: 0;
    max-width: 640px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ==========================================================================
   Booking / Final CTA (ink)
   ========================================================================== */
.booking-section {
    text-align: center;
    padding: 100px 0;
    background: var(--ink);
    color: #fff;
    border-bottom: none;
}

.booking-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.booking-section > .container > p {
    color: var(--muted-dark);
    margin-bottom: 40px;
}

.booking-widget-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 960px;
    background: var(--paper);
    border: 1px solid var(--rule-dark);
}

.booking-widget-wrapper iframe {
    height: 900px !important;
    min-height: 900px !important;
    display: block;
}

/* ==========================================================================
   Footer (ink)
   ========================================================================== */
footer {
    padding: 48px 0 56px;
    text-align: center;
    background: var(--ink);
    color: var(--muted-dark);
    border-top: 1px solid var(--rule-dark);
}

footer p {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-dark);
    line-height: 1.8;
    margin-bottom: 4px;
}

footer a {
    color: var(--muted-dark);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo svg {
    color: #5a5a5a;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--ink);
    border-top: 1px solid var(--rule-dark);
}

.mobile-sticky-cta.visible {
    display: block;
}

.mobile-sticky-cta a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    background: var(--flame);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    text-shadow: none;
}

/* ==========================================================================
   Decorative legacy elements — retired in the editorial system
   ========================================================================== */
.orb,
.orb-blue,
.orb-cyan {
    display: none;
}

/* ==========================================================================
   Fade-in on scroll (JS adds .visible)
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .protocol-card {
        padding: 26px 22px;
    }
}

@media (max-width: 900px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }
    .cost-now-banner {
        padding: 26px 22px 22px;
    }
    .tier-card {
        padding: 36px 24px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Header — mobile */
    .hero-topbar {
        padding: 6px 16px;
    }

    .hero-topbar img {
        height: 120px;
        margin: -45px 0;
    }

    .topbar-nav {
        display: none;
    }

    .topbar-cta {
        display: none;
    }

    /* Hamburger button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 10px;
        background: none;
        border: 1px solid var(--rule-dark);
        border-radius: 0;
        cursor: pointer;
        flex-shrink: 0;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile menu dropdown */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--ink);
        border: none;
        border-bottom: 1px solid var(--rule-dark);
        border-radius: 0;
        padding: 12px 20px 24px;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-family: var(--font-mono);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #cfcfcf;
        text-decoration: none;
        padding: 16px 0;
        border-bottom: 1px solid var(--rule-dark);
        transition: color 0.15s ease;
    }

    .mobile-menu a:last-of-type {
        border-bottom: none;
    }

    .mobile-menu a:hover {
        color: #fff;
    }

    .mobile-menu .mobile-menu-cta {
        display: block;
        text-align: center;
        margin-top: 16px;
        padding: 15px 24px;
        background: var(--flame);
        color: #fff;
        font-family: var(--font-mono);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border-radius: 0;
        border: none;
        box-shadow: none;
        text-shadow: none;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 118px 0 64px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 9vw, 2.9rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        font-size: 12px;
        padding: 16px 26px;
    }

    /* Trust bar — 2-col grid on mobile */
    .trust-bar {
        padding: 28px 0;
    }

    .trust-bar .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        justify-items: center;
    }

    .trust-item:last-child {
        grid-column: 1 / -1;
    }

    .trust-number {
        font-size: 1.05rem;
    }

    /* Proof band — stacked stats with hairlines */
    .proof-band .container {
        flex-direction: column;
        gap: 0;
    }

    .proof-stat {
        min-width: unset;
        width: 100%;
        padding: 24px 0;
        border-right: none;
        border-bottom: 1px solid var(--rule-dark);
        display: flex;
        align-items: baseline;
        gap: 20px;
    }

    .proof-stat + .proof-stat {
        padding-left: 0;
    }

    .proof-stat:last-child {
        border-bottom: none;
    }

    .proof-number {
        font-size: 1.7rem;
        margin-bottom: 0;
        min-width: 130px;
    }

    .proof-label {
        text-align: left;
    }

    /* Phases — vertical strip */
    .phases-strip {
        flex-direction: column;
        gap: 44px;
        margin-top: 56px;
    }

    .phases-strip::before {
        top: 0;
        bottom: 0;
        left: 4px;
        right: auto;
        width: 1px;
        height: auto;
        background: var(--rule-light);
    }

    .phase-item {
        padding: 0 0 0 40px;
        text-align: left;
    }

    .phase-item:first-child {
        padding-left: 40px;
    }

    .phase-item:not(:last-child) {
        border-right: none;
    }

    .phase-item::before {
        position: absolute;
        left: 0;
        top: 6px;
        margin: 0;
    }

    .phase-number-big {
        font-size: 2.4rem;
    }

    .phase-item p {
        max-width: none;
    }

    /* Problem */
    .problem-punchline {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
    }

    /* Team */
    .team-header {
        height: 360px;
        margin-bottom: 48px;
    }

    .team-header-text {
        padding: 0 24px;
    }

    .team-card {
        padding: 24px 20px;
    }

    .team-card-icon {
        width: 56px;
        height: 56px;
    }

    .team-highlight {
        padding: 28px 22px;
        margin-top: 40px;
    }

    /* Athletes */
    .athletes-grid {
        grid-template-columns: 1fr;
    }

    .athlete-photo {
        height: 260px;
    }

    /* On-demand */
    .on-demand-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chat-bubble {
        max-width: 90%;
        font-size: 0.88rem;
    }

    /* Protocol cards */
    .protocol-grid {
        grid-template-columns: 1fr;
    }

    .protocol-card {
        padding: 22px 18px;
        gap: 16px;
    }

    .protocol-icon {
        width: 56px;
        height: 56px;
    }

    .protocol-desc {
        font-size: 0.87rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .program-journey {
        padding: 64px 0;
    }

    /* Timeline */
    .timeline {
        padding-left: 60px;
        margin-top: 56px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        left: -60px;
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .timeline-step {
        padding-bottom: 44px;
    }

    .timeline-icon {
        width: 44px;
        height: 44px;
    }

    .timeline-text h3 {
        font-size: 1.15rem;
    }

    .timeline-text p {
        font-size: 0.95rem;
    }

    /* Included */
    .inc-feature {
        padding: 24px 0;
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--rule-light);
        box-shadow: none;
        margin-bottom: 0;
    }

    .inc-feature:hover {
        padding-left: 0;
    }

    .inc-number {
        min-width: 0;
        margin-bottom: 10px;
    }

    .inc-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .inc-desc {
        font-size: 0.93rem;
        line-height: 1.6;
    }

    .inc-content {
        min-width: 0;
        width: 100%;
    }

    .inc-tag {
        margin-left: 0;
        margin-top: 14px;
    }

    .inc-priced-inner {
        padding: 24px 20px;
    }

    .inc-pills {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Booking */
    .booking-section {
        padding: 64px 0 100px;
    }

    .booking-widget-wrapper {
        display: block;
        margin: 0 8px;
    }

    /* Footer — pad bottom for sticky CTA */
    footer {
        padding-bottom: 96px;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 20px 0;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero-topbar img {
        height: 110px;
        margin: -41px 0;
    }

    .protocol-grid {
        grid-template-columns: 1fr !important;
    }

    .trust-bar .container {
        grid-template-columns: 1fr;
    }

    .trust-item:last-child {
        grid-column: auto;
    }

    .proof-number {
        min-width: 105px;
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta { display: none !important; }
    .hamburger { display: none !important; }
    .mobile-menu { display: none !important; }
}
