/* ════════════════════════════════════════════════════════════════
   OjaVend — Mobile-first stylesheet (v2 — friend's version)
   ────────────────────────────────────────────────────────────────
   Order:
   1.  Tokens
   2.  Reset & base
   3.  Container
   4.  Nav
   5.  Hero
   6.  Phone mockup
   7.  Sections (shared)
   8.  Pain → Relief
   9.  Value stack
   10. FOMO
   11. Risk removal
   12. FAQ
   13. Final CTA
   14. Contact
   15. Footer
   16. Reveal & a11y
   17. Desktop breakpoints
   18. Mobile overrides (≤ 720px)
   ════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────
   1. TOKENS
   ────────────────────────────────────────────────────────────── */
:root {
    --ink: #0b0c10;
    --card-dark: #111319;
    --slate: #1b202a;
    --border-dark: #2a3142;
    --text-dark: #e9eef6;
    --muted-dark: #a8b0bd;

    --teal: #00c6ae;
    --teal-600: #00a896;
    --teal-700: #007f70;
    --teal-ink: #003b33;
    --iris: #6b7cff;

    --cream: #f6f1e8;
    --cream-deep: #ede6d8;
    --paper: #fffdf7;
    --text: #141310;
    --muted: #5f5a52;
    --border: #e3dcc9;
    --border-strong: #cfc6ae;

    /* Pain-relief palette */
    --warm-tired: #e8dfd0;
    --warm-tired-border: #cfc1a8;
    --warm-tired-text: #5f4d35;
    --warm-tired-mark: #a08163;
    --warm-tired-label: #85633a;

    --cool-relief: #e1f5ee;
    --cool-relief-border: #9fe1cb;
    --cool-relief-text: #085041;
    --cool-relief-mark: #0f6e56;

    /* FOMO palette (dark with copper accents) */
    --fomo-bg: #1d1815;
    --fomo-text: #f6f1e8;
    --fomo-muted: #c8c2b3;
    --fomo-accent: #e8b07a;
    --fomo-accent-soft: rgba(196, 126, 58, 0.18);
    --fomo-accent-border: rgba(196, 126, 58, 0.45);

    /* WhatsApp palette */
    --wa-bg: #efeae2;
    --wa-out: #d9fdd3;
    --wa-in: #ffffff;
    --wa-text: #111b21;
    --wa-meta: #667781;
    --wa-tick: #53bdeb;

    --fs-h2: clamp(2rem, 4.5vw, 3.5rem);
    --fs-h3: clamp(1.3rem, 2.2vw, 1.75rem);
    --fs-lead: clamp(1.05rem, 1.5vw, 1.25rem);
    --fs-body: clamp(1rem, 1.15vw, 1.0625rem);

    --section-y: clamp(4rem, 9vw, 7.5rem);
    --container: min(1200px, 92vw);

    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ──────────────────────────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family:
        "Geist",
        ui-sans-serif,
        system-ui,
        -apple-system,
        "Helvetica Neue",
        sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
    font-weight: 500;
    font-variation-settings:
        "SOFT" 50,
        "opsz" 96;
    letter-spacing: -0.022em;
    line-height: 1.02;
    margin: 0;
}

p {
    margin: 0;
}

::selection {
    background: var(--teal);
    color: var(--ink);
}

/* ──────────────────────────────────────────────────────────────
   3. CONTAINER
   ────────────────────────────────────────────────────────────── */
.wrap {
    width: var(--container);
    margin-inline: auto;
}

/* ──────────────────────────────────────────────────────────────
   4. NAV
   ────────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 3vw, 2rem);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    background: rgba(11, 12, 16, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-dark);
    transition: background 0.3s var(--ease);
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: "Geist", sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

.nav__brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    background: #00c6ae;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 8px 24px -8px rgba(0, 198, 174, 0.4);
}

.nav__brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__brand-product {
    font-weight: 700;
    letter-spacing: -0.015em;
}

.nav__brand-parent {
    font-size: 0.68rem;
    color: var(--muted-dark);
    font-weight: 400;
    margin-top: 3px;
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__links a {
    padding: 0.55rem 0.95rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition:
        background 0.2s var(--ease),
        color 0.2s var(--ease);
}

.nav__links a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
    padding: 0.55rem 1.05rem !important;
    background: var(--teal);
    color: var(--ink) !important;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition:
        transform 0.2s var(--ease),
        box-shadow 0.2s var(--ease),
        background 0.2s var(--ease) !important;
}

.nav__cta:hover {
    background: #00d9bf !important;
    transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────
   5. HERO
   ────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--ink);
    color: var(--text-dark);
    padding-top: clamp(7rem, 14vw, 10rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(
            65% 50% at 85% 20%,
            rgba(0, 198, 174, 0.16),
            transparent 60%
        ),
        radial-gradient(
            50% 60% at 10% 90%,
            rgba(107, 124, 255, 0.1),
            transparent 55%
        );
    z-index: -1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
}

.hero__grid {
    display: grid;
    gap: clamp(2.5rem, 6vw, 5rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 198, 174, 0.12);
    border: 1px solid rgba(0, 198, 174, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #7ff0dd;
    margin-bottom: 1.5rem;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 198, 174, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(0, 198, 174, 0.2);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(0, 198, 174, 0);
    }
}

.hero h1 {
    font-size: clamp(1.9rem, 4.8vw, 3.6rem);
    font-weight: 500;
    font-variation-settings:
        "SOFT" 30,
        "opsz" 144,
        "wght" 500;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    max-width: 22ch;
}

.hero h1 .accent {
    color: var(--teal);
    font-variation-settings:
        "SOFT" 30,
        "opsz" 144,
        "wght" 600;
}

.hero__lead-main {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--text-dark);
    font-weight: 500;
    max-width: 44ch;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.hero__lead-sub {
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    color: var(--muted-dark);
    max-width: 44ch;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__audience {
    margin-top: 1.25rem;
    max-width: 44ch;
    color: var(--muted-dark);
    font-size: 0.92rem;
    line-height: 1.5;
    font-style: italic;
    font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    font-family: "Geist", sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: -0.005em;
    transition:
        transform 0.2s var(--ease),
        background 0.2s var(--ease),
        box-shadow 0.2s var(--ease),
        color 0.2s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal);
    color: var(--ink);
    box-shadow: 0 10px 30px -10px rgba(0, 198, 174, 0.55);
}

.btn--primary:hover {
    background: #00d9bf;
    transform: translateY(-1px);
    box-shadow: 0 14px 40px -10px rgba(0, 198, 174, 0.7);
}

.btn--ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.32);
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s var(--ease);
}

.btn:hover svg {
    transform: translateX(2px);
}

.hero__trust {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem 2.25rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted-dark);
    font-size: 0.85rem;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero__trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────
   6. PHONE MOCKUP (hero right column)
   ────────────────────────────────────────────────────────────── */
.phone {
    position: relative;
    margin-inline: auto;
    width: min(350px, 100%);
    aspect-ratio: 9/17;
    background: #1a1d24;
    border-radius: 42px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #2a2f38,
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 100px -20px rgba(0, 198, 174, 0.25);
    transform: rotate(-1.5deg);
    transition: transform 0.6s var(--ease);
}

.phone:hover {
    transform: rotate(0deg) translateY(-4px);
}

.phone__notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 14px;
    z-index: 3;
}

.phone__screen {
    width: 100%;
    height: 100%;
    background: var(--wa-bg);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone__screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 75% 65%,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1px
        );
    background-size:
        30px 30px,
        40px 40px;
    pointer-events: none;
    z-index: 0;
}

.chat__header {
    background: #008069;
    color: #fff;
    padding: 2.2rem 0.9rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    z-index: 2;
}

.chat__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--iris));
    display: grid;
    place-items: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.chat__name {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
}

.chat__status {
    font-size: 0.68rem;
    opacity: 0.85;
}

.chat__body {
    flex: 1;
    overflow: hidden;
    padding: 0.85rem 0.65rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
    font-family:
        "Geist",
        -apple-system,
        sans-serif;
}

.bubble {
    max-width: 82%;
    padding: 0.45rem 0.6rem 0.3rem;
    border-radius: 7px;
    position: relative;
    font-size: 0.76rem;
    color: var(--wa-text);
    line-height: 1.35;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    animation: bubble-in 0.5s var(--ease) both;
    word-spacing: 0.05em;
}

.bubble--out {
    align-self: flex-end;
    background: var(--wa-out);
    border-top-right-radius: 0;
}

.bubble--in {
    align-self: flex-start;
    background: var(--wa-in);
    border-top-left-radius: 0;
    max-width: 88%;
}

.bubble__meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3px;
    font-size: 0.58rem;
    color: var(--wa-meta);
    margin-top: 2px;
}

.bubble__tick {
    color: var(--wa-tick);
}

.bubble__product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    padding: 1px 0;
}

.bubble__product span:first-child {
    color: var(--wa-text);
    flex: 1;
}

.bubble__product span:last-child {
    color: #008069;
    font-variant-numeric: tabular-nums;
    text-align: right;
    flex-shrink: 0;
}

.bubble__product .strike {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 4px;
    font-size: 0.7rem;
}

.bubble hr {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0.3rem -0.2rem;
}

.bubble strong {
    font-weight: 600;
}

@keyframes bubble-in {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.bubble:nth-child(1) {
    animation-delay: 0.1s;
}
.bubble:nth-child(2) {
    animation-delay: 0.5s;
}
.bubble:nth-child(3) {
    animation-delay: 1.4s;
}
.bubble:nth-child(4) {
    animation-delay: 1.9s;
}
.bubble:nth-child(5) {
    animation-delay: 2.6s;
}
.bubble:nth-child(6) {
    animation-delay: 3.1s;
}

/* ──────────────────────────────────────────────────────────────
   7. SECTIONS — SHARED
   ────────────────────────────────────────────────────────────── */
.section {
    padding: var(--section-y) 0;
}

.section--cream {
    background: var(--cream);
}

.section--cream-deep {
    background: var(--cream-deep);
}

.section--paper {
    background: var(--paper);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal-ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
}

.h2 {
    font-size: var(--fs-h2);
    font-weight: 500;
    font-variation-settings:
        "SOFT" 50,
        "opsz" 144;
    max-width: 22ch;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.h2 em {
    font-style: italic;
    color: var(--teal-ink);
    font-variation-settings:
        "SOFT" 80,
        "opsz" 144,
        "wght" 400;
}

/* ──────────────────────────────────────────────────────────────
   8. PAIN → RELIEF
   ────────────────────────────────────────────────────────────── */
.pain-relief .pr-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.pr-col {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    line-height: 1.5;
}

.pr-col--before {
    background: var(--warm-tired);
    border: 1px solid var(--warm-tired-border);
    color: var(--warm-tired-text);
}

.pr-col--after {
    background: var(--cool-relief);
    border: 1px solid var(--cool-relief-border);
    color: var(--cool-relief-text);
}

.pr-label {
    display: block;
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.pr-col--before .pr-label {
    color: var(--warm-tired-label);
}

.pr-col--after .pr-label {
    color: var(--cool-relief-mark);
}

.pr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pr-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pr-mark {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.pr-col--before .pr-mark {
    color: var(--warm-tired-mark);
}

.pr-col--after .pr-mark {
    color: var(--cool-relief-mark);
}

/* ──────────────────────────────────────────────────────────────
   9. VALUE STACK
   ────────────────────────────────────────────────────────────── */
.value-stack .vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.vs-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 1rem;
    color: var(--text);
    line-height: 1.45;
}

.vs-row:last-child {
    border-bottom: none;
}

.vs-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 198, 174, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 1px;
}

/* ──────────────────────────────────────────────────────────────
   10. FOMO
   ────────────────────────────────────────────────────────────── */
.fomo {
    background: var(--fomo-bg);
    color: var(--fomo-text);
    padding: clamp(3rem, 7vw, 5rem) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.fomo::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(
        circle,
        rgba(196, 126, 58, 0.18),
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

.fomo__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--fomo-accent-soft);
    border: 1px solid var(--fomo-accent-border);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--fomo-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.fomo__eyebrow svg {
    width: 11px;
    height: 14px;
    flex-shrink: 0;
}

.fomo__h2 {
    font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    font-weight: 500;
    font-variation-settings:
        "SOFT" 50,
        "opsz" 144;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    max-width: 24ch;
    color: var(--fomo-text);
}

.fomo__h2 em {
    color: var(--fomo-accent);
    font-style: italic;
    font-weight: 400;
}

.fomo__body {
    font-size: clamp(0.98rem, 1.15vw, 1.075rem);
    line-height: 1.55;
    color: var(--fomo-muted);
    max-width: 50ch;
    margin: 0 0 1.75rem;
}

.fomo__cta {
    /* uses .btn .btn--primary base styles */
}

/* ──────────────────────────────────────────────────────────────
   11. RISK REMOVAL
   ────────────────────────────────────────────────────────────── */
.risk__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.risk__row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.95rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 1rem;
    color: var(--text);
    line-height: 1.45;
}

.risk__row:last-child {
    border-bottom: none;
}

.risk__row strong {
    font-weight: 600;
}

.risk__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1px;
}

/* ──────────────────────────────────────────────────────────────
   12. FAQ
   ────────────────────────────────────────────────────────────── */
.faq__title {
    color: var(--text);
}

.faq__list {
    max-width: 780px;
    border-top: 1px solid var(--border-strong);
}

.faq__item {
    border-bottom: 1px solid var(--border-strong);
}

/* Defensive: explicitly enforce dark text on FAQ questions
   regardless of any inherited or cascade-conflicting rules. */
.faq__q,
.faq .faq__q,
section.faq .faq__q {
    width: 100%;
    text-align: left;
    padding: 1.35rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
    font-weight: 500;
    font-variation-settings:
        "SOFT" 40,
        "opsz" 48;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text) !important;
    transition: color 0.2s var(--ease);
}

.faq__q:hover {
    color: var(--teal-ink) !important;
}

.faq__q::after {
    content: "+";
    font-family: "Geist", sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--muted);
    transition:
        transform 0.3s var(--ease),
        color 0.3s var(--ease);
    flex-shrink: 0;
}

.faq__item[open] .faq__q::after {
    transform: rotate(45deg);
    color: var(--teal-ink);
}

.faq__a {
    padding-bottom: 1.5rem;
    color: var(--muted);
    max-width: 64ch;
    line-height: 1.6;
    font-size: 1rem;
}

.faq__a p {
    color: var(--muted);
}

.faq__a p + p {
    margin-top: 0.85rem;
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

/* ──────────────────────────────────────────────────────────────
   13. FINAL CTA
   ────────────────────────────────────────────────────────────── */
.final-cta {
    background: var(--ink);
    color: var(--text-dark);
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}

.final-cta > .wrap {
    position: relative;
    z-index: 1;
}

.final-cta__main {
    font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    line-height: 1.3;
    font-weight: 500;
    font-variation-settings:
        "SOFT" 50,
        "opsz" 144;
    margin: 0 0 0.85rem;
    letter-spacing: -0.015em;
    max-width: 24ch;
    margin-inline: auto;
    color: var(--cream);
}

.final-cta__main em {
    color: var(--teal);
    font-style: italic;
    font-weight: 400;
}

.final-cta__sub {
    font-size: 0.95rem;
    color: var(--muted-dark);
    line-height: 1.55;
    margin: 0 auto 1.75rem;
    max-width: 44ch;
    font-style: italic;
}

.final-cta__sub strong {
    color: var(--text-dark);
    font-weight: 500;
    font-style: normal;
}

/* ──────────────────────────────────────────────────────────────
   14. CONTACT
   ────────────────────────────────────────────────────────────── */
.contact {
    background: var(--ink);
    color: var(--text-dark);
    padding: clamp(4rem, 9vw, 7.5rem) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            60% 70% at 20% 0%,
            rgba(0, 198, 174, 0.15),
            transparent 60%
        ),
        radial-gradient(
            50% 60% at 90% 100%,
            rgba(107, 124, 255, 0.1),
            transparent 60%
        );
    z-index: -1;
}

.contact__grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-columns: 1fr;
    align-items: start;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.contact h2 em {
    color: var(--teal);
}

.contact__eyebrow {
    color: var(--teal) !important;
}

.contact__lead {
    color: var(--muted-dark);
    font-size: var(--fs-lead);
    max-width: 40ch;
    margin-bottom: 2rem;
}

.contact__aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.contact__aside a {
    color: var(--teal);
    border-bottom: 1px solid rgba(0, 198, 174, 0.3);
    padding-bottom: 1px;
}

.contact__aside a:hover {
    border-bottom-color: var(--teal);
}

.contact__meta {
    display: flex;
    gap: 0.75rem;
    color: var(--muted-dark);
    align-items: flex-start;
}

.contact__meta svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    backdrop-filter: blur(10px);
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted-dark);
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: "Geist", sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition:
        border-color 0.2s var(--ease),
        background 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(0, 198, 174, 0.04);
}

.field--invalid input,
.field--invalid textarea,
.field--invalid select {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.05);
}

.err {
    display: block;
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 0.35rem;
    text-transform: none;
    letter-spacing: 0;
}

.err:empty {
    display: none;
    margin: 0;
}

.text-teal {
    color: var(--teal);
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 0.5rem;
}

.form__submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form__submit.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.form__actions .btn {
    width: auto;
    min-width: 160px;
    margin-top: 0;
}

.form__status {
    font-size: 0.88rem;
    color: var(--muted-dark);
}

.form__status.is-success {
    color: var(--teal);
}

.form__status.is-error {
    color: #f87171;
}

/* ──────────────────────────────────────────────────────────────
   15. FOOTER
   ────────────────────────────────────────────────────────────── */
.footer {
    background: #050608;
    color: var(--muted-dark);
    padding: 3rem 0 2rem;
    font-size: 0.85rem;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__links a {
    transition: color 0.2s var(--ease);
}

.footer__links a:hover {
    color: var(--text-dark);
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #5a6270;
}

/* ──────────────────────────────────────────────────────────────
   16. REVEAL & A11Y
   ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 0.8s var(--ease),
            transform 0.8s var(--ease);
    }
    .reveal.is-in {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   17. DESKTOP BREAKPOINTS
   ════════════════════════════════════════════════════════════════ */

@media (min-width: 760px) {
    .pain-relief .pr-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 900px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1100px;
        margin-inline: auto;
        align-items: start;
    }
}

@media (min-width: 960px) {
    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

/* ════════════════════════════════════════════════════════════════
   18. MOBILE OVERRIDES (≤ 720px)
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 720px) {
    /* ── NAV ────────────────────────────────────────────────── */
    .nav__links a:not(.nav__cta) {
        display: none;
    }

    .nav__brand-parent {
        display: none;
    }

    .nav__cta {
        background: transparent !important;
        color: var(--text-dark) !important;
        border: 1px solid rgba(0, 198, 174, 0.45);
        padding: 0.5rem 0.9rem !important;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .nav__cta:hover {
        background: rgba(0, 198, 174, 0.08) !important;
        border-color: var(--teal);
        transform: none;
    }

    /* ── HERO ───────────────────────────────────────────────── */
    .hero {
        padding-top: clamp(5.5rem, 18vw, 7rem);
        padding-bottom: clamp(3rem, 8vw, 4.5rem);
    }

    .hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
        max-width: 16ch;
    }

    .hero__lead-main {
        font-size: 1rem;
        max-width: 38ch;
        margin-bottom: 0.4rem;
    }

    .hero__lead-sub {
        font-size: 0.9rem;
        max-width: 38ch;
        margin-bottom: 1.5rem;
    }

    .hero__ctas .btn--primary {
        width: 100%;
    }

    .hero__trust {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        gap: 0.85rem 1rem;
        justify-content: center;
        font-size: 0.78rem;
        flex-wrap: wrap;
    }

    .hero__trust-item {
        gap: 0.35rem;
    }

    .hero__trust-item svg {
        width: 13px;
        height: 13px;
    }

    .hero__audience {
        margin-top: 1rem;
        font-size: 0.88rem;
        max-width: 38ch;
        text-align: left;
    }

    /* ── PHONE MOCKUP — chat-only on mobile ─────────────────── */
    .phone {
        width: 100%;
        max-width: 360px;
        aspect-ratio: auto;
        background: transparent;
        border-radius: 14px;
        padding: 0;
        box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.55);
        transform: none;
        overflow: hidden;
    }

    .phone:hover {
        transform: none;
    }

    .phone__notch {
        display: none;
    }

    .phone__screen {
        border-radius: 14px;
        min-height: 440px;
    }

    .chat__header {
        padding: 1rem 0.9rem 0.85rem;
    }

    .chat__body {
        padding: 0.75rem 0.65rem 1rem;
        min-height: 360px;
        justify-content: flex-end;
    }

    .bubble {
        font-size: 0.82rem;
    }

    .bubble--in {
        max-width: 90%;
    }

    .bubble__product {
        font-size: 0.76rem;
    }

    /* ── SECTIONS ───────────────────────────────────────────── */
    .section {
        padding: 2.75rem 0;
    }

    .h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    /* ── PAIN → RELIEF ──────────────────────────────────────── */
    .pr-col {
        padding: 1.25rem 1.1rem;
    }

    .pr-list li {
        font-size: 0.92rem;
    }

    /* ── VALUE STACK ────────────────────────────────────────── */
    .vs-row {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    /* ── FOMO ───────────────────────────────────────────────── */
    .fomo {
        padding: 2.5rem 0;
    }

    .fomo__h2 {
        font-size: 1.65rem;
    }

    .fomo__body {
        font-size: 0.95rem;
    }

    .fomo__cta {
        width: 100%;
    }

    /* ── RISK ───────────────────────────────────────────────── */
    .risk__row {
        font-size: 0.95rem;
        padding: 0.85rem 0;
    }

    /* ── FAQ ────────────────────────────────────────────────── */
    .faq__q {
        padding: 1.1rem 0;
        font-size: 1rem;
    }

    /* ── FINAL CTA ──────────────────────────────────────────── */
    .final-cta {
        padding: 3rem 0;
    }

    .final-cta__main {
        font-size: 1.4rem;
    }

    .final-cta__sub {
        font-size: 0.9rem;
    }

    .final-cta__btn {
        width: 100%;
    }

    /* ── CONTACT ────────────────────────────────────────────── */
    .contact {
        padding: 3.25rem 0;
    }

    .contact__lead {
        font-size: 0.98rem;
    }

    .form {
        padding: 1.5rem 1.25rem;
    }

    .form__actions .btn {
        width: 100%;
        min-width: 0;
    }

    /* ── FOOTER ─────────────────────────────────────────────── */
    .footer {
        padding: 2.5rem 0 1.5rem;
        text-align: center;
    }

    .footer__grid {
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }

    .footer__links {
        justify-content: center;
        gap: 1rem;
        font-size: 0.8rem;
    }

    .footer__legal {
        justify-content: center;
        text-align: center;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
}
