:root {
    --bg: #F3EEE3;
    --bg-dark: #1B2B24;
    --ink: #1B2B24;
    --ink-2: #4A5E55;
    --ink-3: #8A9E95;
    --gold: #C48A4E;
    --rose: #C4756A;
    --sage: #D1D7D3;
    --sage-h: #B0BEB8;
    --f-serif: 'Instrument Serif', Georgia, serif;
    --f-sans: 'Geist', system-ui, sans-serif;
    --f-mono: 'Geist Mono', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.22, 1.2, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-sans);
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: auto;
    animation: bg-breathe 14s ease-in-out infinite;
}

@keyframes bg-breathe {

    0%,
    100% {
        background-color: #F3EEE3;
    }

    40% {
        background-color: #F0EBE0;
    }

    70% {
        background-color: #F6F2E8;
    }
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

svg {
    display: block;
}

/* film grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.028;
}

/* ═══════════════════════
   FLOATING NAV
═══════════════════════ */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 48px);
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 52px;
    background: rgba(243, 238, 227, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(27, 43, 36, 0.1);
    border-radius: 14px;
    box-shadow: 0 2px 20px rgba(27, 43, 36, 0.06), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    animation: nav-in .7s var(--ease-out) both;
    transition: transform .38s var(--ease-out), opacity .3s;
}

.nav.hidden {
    transform: translateX(-50%) translateY(-80px);
    opacity: 0;
}

@keyframes nav-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%);
    }
}

.nav-logo {
    font-family: var(--f-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-logo .brand-cursive {
    font-size: 22px;
    vertical-align: middle;
}

.nav-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-stone {
    width: 18px;
    height: 12px;
    background: var(--ink);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: stone-morph 9s ease-in-out infinite;
}

@keyframes stone-morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
    }

    75% {
        border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
    }
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-blog-link {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.nav-blog-link:hover {
    color: var(--ink-2);
    background: rgba(27, 43, 36, 0.06);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-login {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 6px 12px;
    transition: color .2s;
    border-radius: 6px;
}

.nav-login:hover {
    color: var(--ink-2);
}

.nav-signup {
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--bg);
    background: var(--ink);
    padding: 8px 18px;
    border-radius: 8px;
    transition: background .2s, transform .2s var(--spring);
    letter-spacing: -0.01em;
}

.nav-signup:hover {
    background: #0f1a14;
    transform: translateY(-1px);
}

.nav-signup:active {
    transform: translateY(0);
}

/* ═══════════════════════
   HERO
═══════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 7vw 0;
    overflow: hidden;
}

.hero-eyebrow {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fade-up .6s .2s var(--ease-out) both;
}

.eyebrow-tick {
    width: 24px;
    height: 1px;
    background: currentColor;
}

.hero-h1 {
    font-family: var(--f-serif);
    font-size: clamp(62px, 8vw, 128px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 32px;
    max-width: 700px;
}

.hero-h1-line {
    display: block;
    overflow: hidden;
    padding-left: 0.12em;
    margin-left: -0.12em;
    padding-right: 0.04em;
    margin-right: -0.04em;
    padding-bottom: 0.6em;
    margin-bottom: -0.6em;
}

/* Let Dancing Script descenders breathe inside the hero — override the global line-height:1 */
.hero-h1 .brand-cursive {
    line-height: 1.4 !important;
}

.hero-h1-line>span {
    display: block;
    animation: line-up 1.05s var(--ease-out) both;
}

.hero-h1-line:nth-child(1)>span {
    animation-delay: .22s;
}

.hero-h1-line:nth-child(2)>span {
    animation-delay: .36s;
    color: var(--gold);
    font-style: italic;
}

@keyframes line-up {
    from {
        transform: translateY(112%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-sub {
    font-size: 15px;
    line-height: 1.82;
    color: var(--ink-2);
    max-width: 380px;
    animation: fade-up .7s .55s var(--ease-out) both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    animation: fade-up .7s .68s var(--ease-out) both;
}

/* PRIMARY BUTTON */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    background: var(--ink);
    color: var(--bg);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: letter-spacing .4s var(--ease-out), transform .25s var(--spring), background .2s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-out);
}

.btn-primary:hover {
    letter-spacing: .03em;
    transform: translateY(-1px);
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary .arr {
    transition: transform .3s var(--spring);
}

.btn-primary:hover .arr {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* MIC BUTTON */
.btn-mic {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    color: var(--ink-2);
    font-size: 13px;
    border: 1px solid var(--sage-h);
    border-radius: 8px;
    transition: color .2s, border-color .2s, letter-spacing .35s var(--ease-out);
}

.btn-mic:hover {
    color: var(--ink);
    border-color: var(--ink-3);
    letter-spacing: .02em;
}

.btn-mic.live {
    border-color: var(--rose);
    color: var(--rose);
}

/* voice status */
.voice-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    animation: fade-up .5s .85s var(--ease-out) both;
}

.vs-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    background: var(--ink-3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: background .5s;
    animation: stone-morph 5s ease-in-out infinite;
}

.vs-dot.live {
    background: var(--rose);
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

/* SILK THREAD WAVE CANVAS — full hero background */
#wave-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    mix-blend-mode: normal;
    pointer-events: none;
    z-index: 0;
}

/* Hero content must sit above the canvas */
.hero-eyebrow,
.hero-h1,
.hero-bottom,
.scroll-hint {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════
   CURVES
═══════════════════════ */
.curve-into-dark,
.curve-out-of-dark {
    line-height: 0;
    position: relative;
    z-index: 10;
}

.curve-into-dark svg,
.curve-out-of-dark svg {
    width: 100%;
    display: block;
}

/* ═══════════════════════
   DARK FEATURES SECTION
═══════════════════════ */
.section-dark {
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
    padding: 100px 7vw 120px;
}

.features-intro {
    max-width: 520px;
    margin-bottom: 80px;
}

.section-dark .section-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(232, 237, 233, .32);
    display: block;
    margin-bottom: 18px;
}

.section-dark .section-h2 {
    font-family: var(--f-serif);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1.06;
    color: #E8EDE9;
    margin-bottom: 16px;
}

.section-dark .section-h2 em {
    font-style: normal;
    color: var(--gold);
}

.section-dark .section-sub {
    font-size: 14px;
    color: rgba(232, 237, 233, .55);
    line-height: 1.8;
}

/* FEATURE ROWS */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6vw;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid rgba(232, 237, 233, .1);
}

.feature-row:last-child {
    border-bottom: 1px solid rgba(232, 237, 233, .1);
}

.feature-row:nth-child(even) .f-left {
    order: 2;
}

.feature-row:nth-child(even) .f-right {
    order: 1;
}

.f-num {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(232, 237, 233, .25);
    display: block;
    margin-bottom: 14px;
    transition: color .3s;
}

.feature-row:hover .f-num {
    color: var(--gold);
}

.f-title {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #E8EDE9;
    line-height: 1.1;
    margin-bottom: 12px;
}

.f-desc {
    font-size: 14px;
    color: rgba(232, 237, 233, .58);
    line-height: 1.8;
    max-width: 300px;
}

.f-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 20px;
}

/* ── VISUAL 01: Live waveform bars */
.vis-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 80px;
    width: 100%;
}

.vis-wave span {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: var(--gold);
    opacity: .65;
    animation: wb .8s ease-in-out infinite;
    transform-origin: bottom;
}

@keyframes wb {

    0%,
    100% {
        transform: scaleY(.05)
    }

    50% {
        transform: scaleY(1)
    }
}

/* ── VISUAL 02: Analytics rings + sparkline */
.vis-analytics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.vis-stats {
    display: flex;
    gap: 20px;
}

.vis-stat {
    text-align: center;
}

.vis-stat-val {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: -.01em;
}

.vis-stat-lbl {
    font-family: var(--f-mono);
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232, 237, 233, .3);
    margin-top: 2px;
}

/* ── VISUAL 03: Script comparison */
.vis-script {
    width: 100%;
    background: rgba(232, 237, 233, .04);
    border-radius: 10px;
    padding: 20px 22px;
    border: 1px solid rgba(232, 237, 233, .08);
}

.vis-script-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    line-height: 2.2;
}

.vis-script-word {
    padding: 0 3px;
    border-radius: 3px;
}

.vs-ok {
    color: var(--gold);
}

.vs-miss {
    background: rgba(196, 117, 106, .18);
    color: rgba(196, 117, 106, .9);
    text-decoration: line-through;
}

.vs-skip {
    color: rgba(232, 237, 233, .3);
}

.vs-norm {
    color: rgba(232, 237, 233, .7);
}

.vis-score {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(232, 237, 233, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vis-score-label {
    font-family: var(--f-mono);
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(232, 237, 233, .3);
}

.vis-score-val {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--gold);
}

/* ── VISUAL 04: Calendar heatmap */
.vis-calendar {
    width: 100%;
}

.vis-cal-header {
    font-family: var(--f-mono);
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(232, 237, 233, .28);
    margin-bottom: 10px;
}

.vis-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 200px;
}

.vis-cal-cell {
    aspect-ratio: 1;
    border-radius: 3px;
    background: rgba(196, 138, 78, .18);
    animation: cell-pulse 3s ease-in-out infinite;
}

.vis-cal-cell.active {
    background: var(--gold);
}

.vis-cal-cell.dim {
    background: rgba(232, 237, 233, .07);
    animation: none;
}

@keyframes cell-pulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.vis-streak {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.vis-streak-num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.vis-streak-label {
    font-family: var(--f-mono);
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(232, 237, 233, .3);
}

/* ═══════════════════════
   HOW IT WORKS
═══════════════════════ */
.section-how {
    padding: 112px 7vw 128px;
    background:
        radial-gradient(1200px 520px at 42% 54%, rgba(196, 138, 78, .08), transparent 62%),
        var(--bg);
}

.how-shell {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(120px, 1fr) minmax(380px, 460px);
    gap: clamp(36px, 4vw, 92px);
    align-items: start;
}

.how-shell>div:nth-child(2) {
    position: relative;
    min-height: 100%;
}

.how-shell>div:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(27, 43, 36, .16), transparent);
}

.how-shell>div:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 38%;
    left: 50%;
    width: clamp(120px, 14vw, 190px);
    height: clamp(120px, 14vw, 190px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(196, 138, 78, .16), transparent 72%);
    filter: blur(1px);
}

.how-intro {
    position: sticky;
    top: 100px;
}

.how-intro .section-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: block;
    margin-bottom: 18px;
}

.how-intro .section-h2 {
    font-family: var(--f-serif);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1.06;
    color: var(--ink);
    margin-bottom: 16px;
}

.how-intro .section-h2 em {
    font-style: normal;
    color: var(--gold);
}

.how-intro .section-sub {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.8;
}

.how-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Staircase with proper spacing — no overlaps */
.step-card {
    position: relative;
    padding: 28px 30px 26px;
    margin-left: var(--indent, 0px);
    border: 1px solid rgba(27, 43, 36, .10);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, .74), rgba(243, 238, 227, .64));
    box-shadow: 0 14px 30px rgba(27, 43, 36, .08), inset 0 1px 0 rgba(255, 255, 255, .65);
    transition: border-color .25s, transform .25s var(--spring), box-shadow .25s;
}

.step-card:last-child {
    border-bottom: 1px solid rgba(27, 43, 36, .10);
}

.step-card:hover {
    border-color: rgba(196, 138, 78, .45);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(27, 43, 36, .10), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.step-card::before {
    /* accent bar on left edge */
    content: '';
    position: absolute;
    left: 13px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(196, 138, 78, .2), rgba(196, 138, 78, .85), rgba(196, 138, 78, .18));
    opacity: 0;
    transform: scaleY(.84);
    transition: opacity .3s, transform .3s;
}

.step-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.step-num-bg {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 68px;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--ink);
    opacity: .06;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.step-label {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: block;
    margin-bottom: 10px;
    transition: color .25s;
}

.step-card:hover .step-label {
    color: var(--gold);
}

.step-title {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.8;
}

/* ═══════════════════════
   PRIVACY
═══════════════════════ */
.section-privacy {
    border-top: 1px solid rgba(27, 43, 36, .12);
    padding: 96px 7vw 108px;
    background:
        radial-gradient(900px 380px at 74% 16%, rgba(196, 138, 78, .08), transparent 70%),
        var(--bg);
}

.privacy-layout {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(420px, 760px);
    gap: clamp(34px, 5vw, 96px);
    align-items: start;
}

.privacy-layout .stagger {
    border: 1px solid rgba(27, 43, 36, .10);
    border-radius: 24px;
    padding: 8px 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .68), rgba(243, 238, 227, .6));
    box-shadow: 0 16px 36px rgba(27, 43, 36, .08), inset 0 1px 0 rgba(255, 255, 255, .68);
}

.priv-head .section-label {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: block;
    margin-bottom: 18px;
}

.priv-head .section-h2 {
    font-family: var(--f-serif);
    font-size: clamp(34px, 3.2vw, 50px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1.06;
    color: var(--ink);
    margin-bottom: 16px;
}

.priv-head .section-sub {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.8;
}

.ppoint {
    padding: 22px 4px;
    border-bottom: 1px solid rgba(27, 43, 36, .12);
    transition: border-color .2s, background .2s, padding .2s, margin .2s;
}

.ppoint:first-child {
    border-top: 1px solid rgba(27, 43, 36, .12);
}

.ppoint:hover {
    border-bottom-color: rgba(196, 138, 78, .45);
    background: rgba(196, 138, 78, .06);
    border-radius: 14px;
    padding-left: 14px;
    padding-right: 14px;
    margin-left: -10px;
    margin-right: -10px;
}

.ppoint-title {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.3;
}

.ppoint-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: var(--gold);
    animation: stone-morph 5s ease-in-out infinite;
}

.ppoint-desc {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.8;
}

/* ═══════════════════════
   CTA
═══════════════════════ */
.section-cta {
    margin: 12px auto 96px;
    max-width: 920px;
    padding: 86px clamp(28px, 4vw, 72px) 92px;
    text-align: center;
    border: 1px solid rgba(27, 43, 36, .12);
    border-radius: 34px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, .72), rgba(243, 238, 227, .64));
    box-shadow: 0 22px 48px rgba(27, 43, 36, .09), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.section-cta>* {
    position: relative;
    z-index: 1;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 62% 52% at 50% 110%, rgba(196, 138, 78, .18) 0%, transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0));
}

.section-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, .5);
    mix-blend-mode: soft-light;
}

.cta-h {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(32px, 3.5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1.04;
    margin-bottom: 14px;
}

.cta-h em {
    font-style: normal;
    color: var(--gold);
}

.cta-sub {
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 36px;
    line-height: 1.75;
}

.cta-note {
    margin-top: 18px;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-3);
}

/* ═══════════════════════
   FOOTER
═══════════════════════ */
footer {
    border-top: 1px solid var(--sage);
    padding: 26px 7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.footer-copy {
    font-family: var(--f-mono);
    font-size: 9.5px;
    color: var(--ink-3);
    letter-spacing: .1em;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-link {
    font-size: 11.5px;
    color: var(--ink-3);
    transition: color .2s;
}

.footer-link:hover {
    color: var(--ink-2);
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 7vw;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    animation: fade-up .6s 1.3s var(--ease-out) both;
    transition: opacity .4s;
}

.scroll-hint span {
    font-family: var(--f-mono);
    font-size: 8px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.scroll-hint-line {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: sh-drop 2.2s ease-in-out infinite;
}

@keyframes sh-drop {

    0%,
    100% {
        opacity: .35
    }

    50% {
        opacity: 1;
        transform: translateY(4px)
    }
}

/* ═══════════════════════
   SCROLL REVEAL
═══════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
}

.reveal.in {
    opacity: 1;
    transform: none;
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}

.reveal[data-reveal-immediate],
.reveal[data-reveal-immediate].in {
    opacity: 1;
    transform: none;
}

.stagger>* {
    opacity: 0;
    transform: translateY(20px);
}

.stagger[data-reveal-immediate]>* {
    opacity: 1;
    transform: none;
}

.stagger.in>* {
    opacity: 1;
    transform: none;
    transition: opacity .85s var(--spring), transform .85s var(--spring);
}

.stagger.in>*:nth-child(1) {
    transition-delay: .00s
}

.stagger.in>*:nth-child(2) {
    transition-delay: .12s
}

.stagger.in>*:nth-child(3) {
    transition-delay: .24s
}

.stagger.in>*:nth-child(4) {
    transition-delay: .36s
}

.step-card {
    opacity: 0;
    transform: translateX(20px);
}

.step-card.in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .85s var(--spring), transform .85s var(--spring);
}

.step-card:nth-child(1).in {
    transition-delay: .00s
}

.step-card:nth-child(2).in {
    transition-delay: .14s
}

.step-card:nth-child(3).in {
    transition-delay: .28s
}

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media(max-width:960px) {
    .hero {
        min-height: min(100svh, 820px);
        justify-content: flex-start;
        padding: 118px 6vw 52px;
    }

    .hero-h1 {
        font-size: clamp(56px, 16vw, 88px);
        margin-bottom: 18px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-sub {
        max-width: 34ch;
        font-size: 16px;
        line-height: 1.7;
        color: rgba(27, 43, 36, 0.88);
        text-shadow: 0 1px 0 rgba(243, 238, 227, 0.35);
    }

    .hero-ctas {
        width: 100%;
    }

    .hero-ctas .btn-primary {
        width: 100%;
        justify-content: center;
    }

    #wave-canvas {
        opacity: 0.56;
    }

    .scroll-hint {
        display: none;
    }

    .how-shell {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-shell>div:nth-child(2) {
        display: none;
    }

    .how-intro {
        position: static;
    }

    .how-cards {
        width: 100%;
    }

    .step-card {
        --indent: 0px !important;
        margin-left: 0;
        padding: 24px 22px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-layout .stagger {
        padding: 6px 16px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row:nth-child(even) .f-left,
    .feature-row:nth-child(even) .f-right {
        order: unset;
    }

    .section-dark,
    .section-how,
    .section-privacy {
        padding: 80px 6vw;
    }

    .section-cta {
        margin: 4px 6vw 72px;
        max-width: none;
        padding: 64px 24px 70px;
        border-radius: 26px;
    }

    .hero {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .nav {
        width: calc(100% - 24px);
    }
}

@media(max-width:640px) {
    .hero {
        min-height: auto;
        padding-top: 104px;
        padding-bottom: 40px;
    }

    .hero-eyebrow {
        margin-bottom: 20px;
    }

    .hero-h1 {
        font-size: clamp(48px, 15vw, 74px);
        line-height: 0.92;
    }

    .hero-sub {
        font-size: 15px;
        max-width: none;
    }

    #wave-canvas {
        opacity: 0.44;
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
