    /* —— RESET & VARIABLES —— */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --paper: #f5f0e8;
        --ink: #0f0e0d;
        --ink2: #1a1916;
        --cream: #ede8dc;
        --cream2: #e4ddd0;
        --acid: #d4e840;
        --acid2: #c2d800;
        --rust: #c4421a;
        --sage: #3a5c4a;
        --border: #0f0e0d;
        --muted: #6b6355;
        --muted2: #9a9080;
        --card: #faf6ee;

        /* Spacing scale */
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2rem;
        --space-xl: 2.5rem;
        --space-2xl: 3rem;
        --space-3xl: 3.5rem;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Space Mono', monospace;
        background: var(--paper);
        color: var(--ink);
        min-height: 100vh;
        overflow-x: hidden;
        cursor: crosshair;
        line-height: 1.5;
    }

    /* Grain texture */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 999;
        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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
        opacity: 0.6;
        mix-blend-mode: multiply;
    }

    /* Skip to content - accessibility */
    .skip-to-content {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--acid);
        color: var(--ink);
        padding: 8px;
        text-decoration: none;
        z-index: 10000;
    }

    .skip-to-content:focus {
        top: 0;
    }

    /* —— LOADER —— */
    #initial-loader {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: var(--space-sm);
        transition: opacity 0.6s ease, visibility 0.6s;
    }

    #initial-loader.hidden-loader {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .l-bar-wrap {
        width: min(200px, 80vw);
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
    }

    .l-bar {
        height: 100%;
        background: var(--acid);
        width: 0;
        animation: lLoad 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes lLoad {
        to {
            width: 100%;
        }
    }

    .l-text {
        font-family: 'Space Mono', monospace;
        font-size: clamp(0.55rem, 2vw, 0.65rem);
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin-top: var(--space-xs);
    }

    /* —— MARQUEE —— */
    .marquee-wrap {
        background: var(--ink);
        overflow: hidden;
        border-bottom: 3px solid var(--ink);
        padding: 0.55rem 0;
        position: relative;
        z-index: 10;
    }

    .marquee-track {
        display: flex;
        gap: 0;
        animation: marquee 24s linear infinite;
        white-space: nowrap;
    }

    .marquee-item {
        font-family: 'Space Mono', monospace;
        font-size: clamp(0.55rem, 2vw, 0.65rem);
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--paper);
        opacity: 0.55;
        padding: 0 var(--space-xl);
        flex-shrink: 0;
    }

    .marquee-item.hl {
        color: var(--acid);
        opacity: 1;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* —— HEADER / NAV —— */
    .page-header {
        position: sticky;
        top: 0;
        z-index: 500;
        background: var(--paper);
        border-bottom: 3px solid var(--ink);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0 var(--space-lg);
        height: clamp(50px, 8vw, 60px);
    }

    .nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .brand-sq {
        width: clamp(28px, 5vw, 32px);
        height: clamp(28px, 5vw, 32px);
        background: var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: clamp(0.9rem, 3vw, 1rem);
        color: var(--acid);
        transition: transform 0.2s;
    }

    .nav-brand:hover .brand-sq {
        transform: rotate(-6deg);
    }

    .brand-wordmark {
        font-family: 'Playfair Display', serif;
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        letter-spacing: -0.01em;
        color: var(--ink);
    }

    .brand-wordmark em {
        font-style: italic;
    }

    .nav-center {
        font-size: clamp(0.45rem, 1.5vw, 0.55rem);
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
        text-align: center;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: clamp(4px, 1.5vw, 0.6rem);
        justify-content: flex-end;
    }

    .n-btn {
        border: 2px solid var(--ink);
        background: none;
        font-family: 'Space Mono', monospace;
        font-size: clamp(0.5rem, 1.8vw, 0.6rem);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.38rem clamp(0.5rem, 2vw, 0.9rem);
        cursor: crosshair;
        color: var(--ink);
        transition: all 0.15s;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .n-btn:hover {
        background: var(--ink);
        color: var(--paper);
    }

    .n-btn-fill {
        background: var(--ink);
        color: var(--paper);
    }

    .n-btn-fill:hover {
        background: var(--acid);
        color: var(--ink);
        border-color: var(--acid);
    }

    /* —— HERO SECTION —— */
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - 60px - 33px);
        border-bottom: 3px solid var(--ink);
    }

    .hero-l {
        border-right: 3px solid var(--ink);
        padding: var(--space-2xl) var(--space-xl);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .hero-l::before {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: min(220px, 40vw);
        height: min(220px, 40vw);
        background: var(--acid);
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        opacity: 0.18;
        animation: spinDiamond 20s linear infinite;
    }

    @keyframes spinDiamond {
        to {
            transform: rotate(360deg);
        }
    }

    .hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: clamp(0.5rem, 1.8vw, 0.6rem);
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: var(--space-lg);
    }

    .eyebrow-dot {
        width: 8px;
        height: 8px;
        background: var(--acid);
        animation: blinkDot 2s ease-in-out infinite;
    }

    @keyframes blinkDot {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    .hero-h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 6rem);
        line-height: 0.97;
        letter-spacing: -0.03em;
        color: var(--ink);
        margin-bottom: var(--space-xl);
    }

    .hero-h1 .line2 {
        font-style: italic;
        color: var(--rust);
        display: block;
    }

    .hero-h1 .line3 {
        display: block;
        -webkit-text-stroke: 2px var(--ink);
        color: transparent;
    }

    .hero-meta {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: var(--space-md);
        margin-top: auto;
    }

    .hero-desc {
        font-size: clamp(0.7rem, 2vw, 0.78rem);
        line-height: 1.8;
        color: var(--muted);
        max-width: 320px;
    }

    .hero-cta-stack {
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
        flex-shrink: 0;
    }

    .h-btn {
        border: 2px solid var(--ink);
        background: var(--ink);
        color: var(--paper);
        font-family: 'Space Mono', monospace;
        font-size: clamp(0.55rem, 1.8vw, 0.65rem);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.8rem clamp(1rem, 3vw, 1.6rem);
        cursor: crosshair;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.18s;
        white-space: nowrap;
    }

    .h-btn:hover {
        background: var(--acid);
        border-color: var(--acid);
        color: var(--ink);
    }

    .h-btn i {
        transition: transform 0.2s;
    }

    .h-btn:hover i {
        transform: translateX(4px);
    }

    .h-btn-ghost {
        background: none;
        color: var(--ink);
    }

    .h-btn-ghost:hover {
        background: var(--cream);
        border-color: var(--ink);
        color: var(--ink);
    }

    .hero-r {
        display: grid;
        grid-template-rows: auto 1fr;
    }

    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-bottom: 3px solid var(--ink);
    }

    .hstat {
        padding: clamp(0.8rem, 3vw, 1.25rem) clamp(0.5rem, 2vw, 1rem);
        border-right: 2px solid var(--ink);
        position: relative;
        overflow: hidden;
    }

    .hstat:last-child {
        border-right: none;
    }

    .hstat-val {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        font-weight: 900;
        color: var(--ink);
        line-height: 1;
        margin-bottom: 4px;
    }

    .hstat-lbl {
        font-size: clamp(0.45rem, 1.5vw, 0.55rem);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .hstat-accent {
        position: absolute;
        bottom: -8px;
        right: -8px;
        width: clamp(30px, 8vw, 40px);
        height: clamp(30px, 8vw, 40px);
        background: var(--acid);
        opacity: 0.5;
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        transition: opacity 0.2s;
    }

    .hstat:hover .hstat-accent {
        opacity: 1;
    }

    .hero-widget {
        padding: var(--space-lg);
        background: var(--card);
        position: relative;
    }

    .hw-label {
        font-size: clamp(0.45rem, 1.5vw, 0.55rem);
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hw-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--cream2);
    }

    .hw-month {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: var(--space-sm);
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .hw-month-name {
        font-family: 'Playfair Display', serif;
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        color: var(--ink);
    }

    .hw-navs {
        display: flex;
        gap: 4px;
    }

    .hw-nav {
        width: clamp(22px, 5vw, 26px);
        height: clamp(22px, 5vw, 26px);
        border: 2px solid var(--ink);
        background: none;
        cursor: crosshair;
        font-size: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s;
        color: var(--ink);
    }

    .hw-nav:hover {
        background: var(--ink);
        color: var(--paper);
    }

    /* Calendar picker */
    .calendar-picker-wrap {
        position: relative;
        display: inline-block;
        margin-left: 6px;
    }

    .cal-icon-btn {
        background: none;
        border: 2px solid var(--ink);
        width: clamp(24px, 5vw, 28px);
        height: clamp(24px, 5vw, 28px);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: crosshair;
        color: var(--ink);
        transition: all 0.15s;
    }

    .cal-icon-btn:hover {
        background: var(--ink);
        color: var(--paper);
    }

    .calendar-dropdown {
        position: absolute;
        top: 40px;
        right: 0;
        background: var(--card);
        border: 3px solid var(--ink);
        padding: 0.8rem;
        z-index: 100;
        box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.03);
        min-width: min(210px, 80vw);
        display: none;
    }

    .calendar-dropdown.show {
        display: block;
    }

    .cal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .cal-year {
        font-family: 'Playfair Display', serif;
        font-weight: 900;
    }

    .cal-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .cal-month-btn {
        background: none;
        border: 1.5px solid var(--ink);
        padding: 6px 2px;
        font-family: 'Space Mono', monospace;
        font-size: clamp(0.5rem, 2vw, 0.6rem);
        text-transform: uppercase;
        cursor: crosshair;
        transition: all 0.1s;
        color: var(--ink);
    }

    .cal-month-btn:hover {
        background: var(--ink);
        color: var(--paper);
    }

    .cal-month-btn.active {
        background: var(--acid);
        border-color: var(--acid);
        color: var(--ink);
        font-weight: 700;
    }

    .hw-habit {
        margin-bottom: var(--space-sm);
    }

    .hw-hhead {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
    }

    .hw-hicon {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }

    .hw-hname {
        font-size: clamp(0.65rem, 2.2vw, 0.75rem);
        flex: 1;
        color: var(--ink);
    }

    .hw-hst {
        font-size: clamp(0.5rem, 1.8vw, 0.58rem);
        padding: 1px 7px;
        border: 1.5px solid var(--ink);
        background: var(--acid);
        color: var(--ink);
        font-weight: 700;
    }

    .hw-dots {
        display: grid;
        gap: 2px;
    }

    .hwd {
        aspect-ratio: 1;
        border: 1px solid var(--cream2);
        background: var(--paper);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.45rem;
        color: transparent;
        transition: all 0.12s;
        cursor: default;
    }

    .hwd.on {
        background: var(--ink);
        border-color: var(--ink);
        color: var(--acid);
    }

    .hwd.half {
        background: var(--cream2);
        border-color: var(--cream2);
    }

    /* —— SECTION RULE —— */
    .section-rule {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: var(--space-md);
        padding: 1.25rem var(--space-lg);
        border-bottom: 2px solid var(--ink);
    }

    .section-rule-label {
        font-size: clamp(0.48rem, 1.6vw, 0.58rem);
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--muted);
        white-space: nowrap;
    }

    .section-rule-line {
        height: 1px;
        background: var(--ink);
        opacity: 0.15;
    }

    .section-rule-num {
        font-family: 'Playfair Display', serif;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        font-weight: 700;
        color: var(--muted2);
        font-style: italic;
    }

    /* —— FEATURES —— */
    .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-bottom: 3px solid var(--ink);
    }

    .feat {
        padding: var(--space-xl) var(--space-lg);
        border-right: 2px solid var(--ink);
        position: relative;
        overflow: hidden;
        transition: background 0.2s;
    }

    .feat:last-child {
        border-right: none;
    }

    .feat:hover {
        background: var(--cream);
    }

    .feat::after {
        content: attr(data-n);
        position: absolute;
        bottom: 0.2rem;
        right: 0.4rem;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: clamp(4rem, 15vw, 6.5rem);
        font-weight: 900;
        color: var(--ink);
        opacity: 0.05;
        line-height: 1;
        pointer-events: none;
    }

    .feat:hover::after {
        opacity: 0.09;
    }

    .feat-tag {
        display: inline-block;
        background: var(--ink);
        color: var(--paper);
        font-size: clamp(0.45rem, 1.5vw, 0.55rem);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 2px 8px;
        margin-bottom: var(--space-md);
    }

    .feat-icon-wrap {
        width: clamp(36px, 8vw, 44px);
        height: clamp(36px, 8vw, 44px);
        border: 2px solid var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 1.25rem;
    }

    .feat:hover .feat-icon-wrap {
        background: var(--acid);
        border-color: var(--acid);
    }

    .feat h3 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.1rem, 3.5vw, 1.35rem);
        letter-spacing: -0.01em;
        margin-bottom: 0.75rem;
    }

    .feat p {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        line-height: 1.8;
        color: var(--muted);
    }

    /* —— HOW IT WORKS —— */
    .how {
        display: grid;
        grid-template-columns: 1fr 2fr;
        border-bottom: 3px solid var(--ink);
        min-height: 340px;
    }

    .how-left {
        border-right: 3px solid var(--ink);
        padding: var(--space-2xl) var(--space-xl);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .how-left h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 5vw, 3rem);
        line-height: 1.1;
    }

    .how-left h2 em {
        font-style: italic;
        color: var(--rust);
    }

    .how-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .step {
        padding: var(--space-xl) 1.75rem;
        border-right: 2px solid var(--ink);
        position: relative;
    }

    .step:last-child {
        border-right: none;
    }

    .step-num {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        font-weight: 900;
        font-style: italic;
        opacity: 0.08;
        line-height: 1;
        margin-bottom: var(--space-sm);
    }

    .step h4 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 0.6rem;
    }

    .step p {
        font-size: clamp(0.63rem, 2vw, 0.73rem);
        line-height: 1.75;
        color: var(--muted);
    }

    .step-arrow {
        position: absolute;
        top: var(--space-xl);
        right: -1px;
        width: 20px;
        height: 20px;
        background: var(--acid);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        display: none;
    }

    .step:not(:last-child) .step-arrow {
        display: block;
    }

    /* —— TICKER —— */
    .ticker-section {
        border-bottom: 3px solid var(--ink);
        background: var(--acid);
        overflow: hidden;
    }

    .ticker-inner {
        display: flex;
        animation: tickerScroll 18s linear infinite;
        white-space: nowrap;
    }

    .ticker-item {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        padding: 0.85rem var(--space-lg);
        flex-shrink: 0;
    }

    .ticker-sep {
        font-style: normal;
        opacity: 0.3;
    }

    @keyframes tickerScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* —— CTA —— */
    .big-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 3px solid var(--ink);
        min-height: 360px;
    }

    .cta-l {
        border-right: 3px solid var(--ink);
        padding: var(--space-3xl) var(--space-xl);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: var(--ink);
        position: relative;
        overflow: hidden;
    }

    .cta-l::before {
        content: '';
        position: absolute;
        top: -60px;
        left: -60px;
        width: min(300px, 60vw);
        height: min(300px, 60vw);
        border: 40px solid var(--acid);
        border-radius: 50%;
        opacity: 0.06;
    }

    .cta-l h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 5.5vw, 3.2rem);
        line-height: 1.05;
        color: var(--paper);
        position: relative;
        z-index: 1;
    }

    .cta-l h2 em {
        font-style: italic;
        color: var(--acid);
    }

    .cta-l-sub {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        line-height: 1.75;
        color: rgba(245, 240, 232, 0.5);
        z-index: 1;
    }

    .cta-r {
        padding: var(--space-3xl) var(--space-xl);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        background: var(--cream);
    }

    .cta-btns {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }

    .big-btn {
        border: 2.5px solid var(--ink);
        background: var(--ink);
        color: var(--paper);
        font-family: 'Space Mono', monospace;
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 1.1rem var(--space-md);
        cursor: crosshair;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.18s;
    }

    .big-btn:hover {
        background: var(--acid);
        border-color: var(--acid);
        color: var(--ink);
    }

    .big-btn-ghost {
        background: none;
        color: var(--ink);
    }

    .big-btn-ghost:hover {
        background: var(--acid);
        border-color: var(--acid);
        color: var(--ink);
    }

    /* —— TESTIMONIALS —— */
    .testimonials {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-bottom: 3px solid var(--ink);
    }

    .testi {
        padding: var(--space-xl) var(--space-lg);
        border-right: 2px solid var(--ink);
    }

    .testi:last-child {
        border-right: none;
    }

    .testi-q {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: clamp(2rem, 8vw, 3rem);
        font-weight: 900;
        color: var(--acid);
        display: block;
        margin-bottom: var(--space-sm);
    }

    .testi-text {
        font-size: clamp(0.68rem, 2.2vw, 0.78rem);
        line-height: 1.8;
        color: var(--muted);
        margin-bottom: var(--space-md);
        font-style: italic;
    }

    .testi-divider {
        height: 1px;
        background: var(--ink);
        opacity: 0.1;
        margin-bottom: var(--space-sm);
    }

    .testi-who {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .testi-init {
        width: clamp(28px, 6vw, 32px);
        height: clamp(28px, 6vw, 32px);
        background: var(--ink);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        color: var(--paper);
    }

    .testi-name {
        font-size: clamp(0.62rem, 2vw, 0.72rem);
        font-weight: 700;
    }

    .testi-role {
        font-size: clamp(0.5rem, 1.8vw, 0.6rem);
        color: var(--muted);
    }

    /* —— FOOTER —— */
    .page-footer {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        border-top: 3px solid var(--ink);
    }

    .footer-brand-cell {
        padding: var(--space-xl) var(--space-lg);
        border-right: 2px solid var(--ink);
    }

    .footer-brand-name {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        margin-bottom: var(--space-xs);
    }

    .footer-tagline {
        font-size: clamp(0.55rem, 1.8vw, 0.65rem);
        color: var(--muted);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .footer-links-cell {
        padding: var(--space-xl) var(--space-lg);
        border-right: 2px solid var(--ink);
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-link {
        font-size: clamp(0.6rem, 2vw, 0.7rem);
        color: var(--muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .footer-link:hover {
        color: var(--ink);
    }

    .footer-link::before {
        content: '→';
        opacity: 0;
        transition: opacity 0.15s;
    }

    .footer-link:hover::before {
        opacity: 1;
    }

    .footer-copy-cell {
        padding: var(--space-xl) var(--space-lg);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer-copy {
        font-size: clamp(0.52rem, 1.8vw, 0.62rem);
        color: var(--muted);
    }

    .footer-dev {
        font-size: clamp(0.6rem, 2vw, 0.7rem);
        font-weight: 700;
    }

    .footer-dev span {
        color: var(--rust);
    }

    /* —— SCROLL REVEAL —— */
    .sr {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sr.vis {
        opacity: 1;
        transform: none;
    }

    .sr-d1 {
        transition-delay: 0.07s;
    }

    .sr-d2 {
        transition-delay: 0.14s;
    }

    .sr-d3 {
        transition-delay: 0.21s;
    }

    /* —— RESPONSIVE BREAKPOINTS —— */
    @media (max-width: 1024px) {
        .hero {
            grid-template-columns: 1fr;
        }

        .hero-l {
            border-right: none;
            border-bottom: 3px solid var(--ink);
        }

        .features {
            grid-template-columns: repeat(2, 1fr);
        }

        .feat:nth-child(2) {
            border-right: none;
        }

        .feat:nth-child(3) {
            border-right: 2px solid var(--ink);
            border-top: 2px solid var(--ink);
        }

        .feat:last-child {
            border-top: 2px solid var(--ink);
        }

        .how {
            grid-template-columns: 1fr;
        }

        .how-left {
            border-right: none;
            border-bottom: 3px solid var(--ink);
        }

        .testimonials {
            grid-template-columns: 1fr;
        }

        .testi {
            border-right: none;
            border-bottom: 2px solid var(--ink);
        }

        .testi:last-child {
            border-bottom: none;
        }

        .big-cta {
            grid-template-columns: 1fr;
        }

        .cta-l {
            border-right: none;
            border-bottom: 3px solid var(--ink);
        }

        .page-footer {
            grid-template-columns: 1fr 1fr;
        }

        .footer-copy-cell {
            grid-column: 1/-1;
            border-top: 2px solid var(--ink);
        }

        .footer-links-cell {
            border-right: none;
        }
    }

    @media (max-width: 768px) {
        :root {
            --space-2xl: 2rem;
            --space-3xl: 2.5rem;
        }

        .page-header {
            grid-template-columns: 1fr auto;
            padding: 0 var(--space-md);
        }

        .nav-center {
            display: none;
        }

        .hero-stats-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .hstat:nth-child(2) {
            border-right: none;
        }

        .hstat:nth-child(3),
        .hstat:last-child {
            border-top: 2px solid var(--ink);
        }

        .hstat:last-child {
            border-right: none;
        }

        .hero-l {
            padding: var(--space-lg) var(--space-md);
        }

        .hero-meta {
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-cta-stack {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .features {
            grid-template-columns: 1fr;
        }

        .feat {
            border-right: none;
            border-bottom: 2px solid var(--ink);
        }

        .feat:nth-child(3) {
            border-right: none;
        }

        .feat:last-child {
            border-bottom: none;
        }

        .how-right {
            grid-template-columns: 1fr;
        }

        .step {
            border-right: none;
            border-bottom: 2px solid var(--ink);
        }

        .step:last-child {
            border-bottom: none;
        }

        .step-arrow {
            display: none;
        }

        .page-footer {
            grid-template-columns: 1fr;
        }

        .footer-brand-cell,
        .footer-links-cell {
            border-right: none;
            border-bottom: 2px solid var(--ink);
        }

        .footer-copy-cell {
            border-top: none;
        }

        .calendar-dropdown {
            left: 0;
            right: auto;
        }
    }

    @media (max-width: 480px) {

        .nav-right .n-btn span,
        .nav-right .n-btn i:first-child {
            display: none;
        }

        .nav-right .n-btn i:last-child {
            margin: 0;
        }

        .n-btn {
            padding: 0.38rem 0.6rem;
        }

        .hw-month {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    /* Utility */
    .cta-guarantee i {
        margin-right: 6px;
    }

    button,
    a {
        cursor: crosshair;
    }