/* =====================================================================
   HAC Landing – Editorial + Curated
   Floating nav · Dashed grid bg · Liquid cursor · Three Laws
   ===================================================================== */

/* --------------- Tokens --------------- */
:root {
    --cream:        #F5F5F0;
    --cream-dark:   #EAEAE4;
    --ink:          #1A1A1A;
    --ink-light:    #3D3D3D;
    --muted:        #6B6B6B;
    --accent:       #E54B2A;
    --accent-light: #F4A08D;
    --accent-deep:  #B22A10;
    --accent-hover: #CC3D1F;
    --white:        #FFFFFF;
    --border:       #D4D4D0;
    --grid-line:    #e7e5e4;

    --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:  'JetBrains Mono', 'Consolas', monospace;

    --text-hero:    clamp(42px, 6vw, 72px);
    --text-h2:      clamp(28px, 3.5vw, 44px);
    --text-h3:      22px;
    --text-lead:    clamp(20px, 2.2vw, 24px);
    --text-body:    18px;
    --text-small:   15px;
    --text-xs:      13px;
    --text-nav:     14px;

    --sp-xs:   8px;
    --sp-sm:   16px;
    --sp-md:   24px;
    --sp-lg:   48px;
    --sp-xl:   80px;
    --sp-2xl:  120px;

    --container-max:    1100px;
    --container-narrow: 680px;

    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:  cubic-bezier(0, 0, 0.2, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration:  0.35s;
    --duration-fast: 0.2s;
}

/* --------------- Reset --------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-size: var(--text-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink-light);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Only hide cursor when JS successfully inits the custom cursor */
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button { cursor: none; }

/* Restore cursor on touch */
body.no-custom-cursor,
body.no-custom-cursor * { cursor: auto !important; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.02em;
}
h1 em, h2 em, h3 em { font-style: italic; }
img { max-width: 100%; display: block; }
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease);
}
ul, ol { list-style: none; }

::selection {
    background: var(--accent);
    color: var(--white);
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: absolute; left: -9999px; top: var(--sp-xs); background: var(--ink); color: var(--white); padding: var(--sp-xs) var(--sp-sm); font-size: var(--text-small); z-index: 10000; }
.skip-link:focus { left: var(--sp-sm); }

/* =====================================================================
   CUSTOM CURSOR  –  Liquid gradient fill · WebGL canvas · No invert
   ===================================================================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: var(--accent);          /* fallback when WebGL unavailable */
    border: none;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition:
        width   0.4s var(--ease-expo),
        height  0.4s var(--ease-expo),
        background 0.3s var(--ease),
        border  0.3s var(--ease),
        opacity 0.25s var(--ease);
    mix-blend-mode: normal;
    filter: none;
    opacity: 0;
    will-change: transform;
    overflow: hidden;
}

/* When gradient canvas is active, remove solid fallback */
.cursor.has-gradient {
    background: transparent;
}

/* Gradient canvas (child of .cursor, rendered by WebGL) */
.cursor-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.25s var(--ease);
}

.cursor.is-visible {
    opacity: 1;
}

/* Interactive hover: gradient fills the larger circle + subtle ring */
.cursor.is-hover {
    width: 120px;
    height: 120px;
    background: transparent;
    border: 2px solid rgba(229, 75, 42, 0.2);
}

/* Text hover: small muted dot, hide gradient */
.cursor.is-text {
    width: 14px;
    height: 14px;
    background: var(--muted);
}
.cursor.is-text .cursor-gradient { opacity: 0; }

/* Magnetic: gradient + ring */
.cursor.is-magnetic {
    width: 140px;
    height: 140px;
    background: transparent;
    border: 2px solid rgba(229, 75, 42, 0.2);
}

@media (max-width: 768px), (hover: none) {
    .cursor { display: none !important; }
    body { cursor: auto; }
    a { cursor: pointer; }
}

/* =====================================================================
   DASHED GRID BACKGROUND
   ===================================================================== */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image:
        repeating-linear-gradient(to right, black 0px, black 2px, transparent 2px, transparent 8px),
        repeating-linear-gradient(to bottom, black 0px, black 2px, transparent 2px, transparent 8px),
        radial-gradient(ellipse 100% 80% at 50% 100%, #000 40%, transparent 80%);
    -webkit-mask-image:
        repeating-linear-gradient(to right, black 0px, black 2px, transparent 2px, transparent 8px),
        repeating-linear-gradient(to bottom, black 0px, black 2px, transparent 2px, transparent 8px),
        radial-gradient(ellipse 100% 80% at 50% 100%, #000 40%, transparent 80%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    opacity: 0.35;
}

/* =====================================================================
   FILM GRAIN  –  Subtle texture overlay for depth
   ===================================================================== */
.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    z-index: 99998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: multiply;
}

/* =====================================================================
   SCROLL REVEAL  –  Base state (JS animates these in)
   ===================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    will-change: opacity, transform;
}

/* =====================================================================
   FLOATING NAVIGATION
   ===================================================================== */
.nav {
    position: fixed;
    top: var(--sp-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(212, 212, 208, 0.5);
    border-radius: 100px;
    padding: 10px 12px 10px 20px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.nav-pill:hover {
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo__svg { height: 20px; width: auto; display: block; }

.nav-links { display: flex; gap: var(--sp-md); align-items: center; }
.nav-links a {
    font-family: var(--font-sans);
    font-size: var(--text-nav);
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    position: relative;
    transition: color var(--duration) var(--ease);
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration) var(--ease-expo);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: background var(--duration) var(--ease), transform var(--duration) var(--ease-expo), box-shadow var(--duration) var(--ease) !important;
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 75, 42, 0.25);
}

.nav-cta--access {
    background: var(--ink) !important;
    color: var(--white) !important;
}
.nav-cta--access:hover {
    background: var(--ink-light) !important;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

/* HAC-Access hero button – equal weight, distinct identity */
.btn-access {
    background: var(--ink);
    color: var(--white);
}
.btn-access:hover {
    background: var(--ink-light);
    color: var(--white);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: none;
    padding: var(--sp-xs);
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block; width: 20px; height: 2px; background: var(--ink);
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav { top: var(--sp-sm); left: var(--sp-sm); right: var(--sp-sm); transform: none; }
    .nav-pill { justify-content: space-between; gap: 0; }
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--sp-md);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease);
        z-index: 999;
    }
    .nav-links.is-open { opacity: 1; pointer-events: auto; }
    .nav-links a { font-size: 22px; }
    .nav-toggle { display: flex; z-index: 1001; }
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: var(--text-small);
    font-weight: 600;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: all var(--duration) var(--ease-expo);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 75, 42, 0.3);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 75, 42, 0.2);
}

.btn-large { padding: 16px 36px; font-size: var(--text-body); }

.btn-text {
    background: none;
    color: var(--muted);
    padding: 14px 0;
    position: relative;
}
.btn-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration) var(--ease-expo);
}
.btn-text:hover { color: var(--ink); }
.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3); padding: 14px 28px; border-radius: 4px;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-outline:active {
    transform: translateY(0);
}

/* Magnetic target zone (JS adds this class) */
.btn-magnetic {
    will-change: transform;
    transition: transform 0.4s var(--ease-expo), background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

/* =====================================================================
   LAYOUT
   ===================================================================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--sp-md); position: relative; z-index: 1; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--sp-2xl) var(--sp-md); position: relative; z-index: 1; }
.section--cream { background: var(--cream); }
.section-title { font-size: var(--text-h2); margin-bottom: var(--sp-lg); letter-spacing: -0.025em; }
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--sp-sm);
    display: inline-block;
}

/* =====================================================================
   HERO  (only applies after splash → is--landed via hac-hero.css)
   ===================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Prevent landing-css padding from conflicting with hac-hero splash layout.
   Once landed, hac-hero.css's higher-specificity padding-top wins,
   so we only provide the horizontal + bottom padding here. */
.hero.is--landed {
    padding: 0 var(--sp-md) var(--sp-xl);
}

.hero-content { max-width: 860px; margin: 0 auto; }

.hero-lockup {
    width: min(90vw, 560px);
    height: auto;
    margin: 0 auto var(--sp-lg);
    display: block;
    opacity: 0.95;
}

.hero-title {
    font-size: var(--text-hero);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-lg);
}
.hero-title em { color: var(--accent); font-style: italic; }

.hero-ctas { display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; align-items: center; }

/* =====================================================================
   QUOTE SECTION
   ===================================================================== */
.section--quote {
    padding: var(--sp-xl) var(--sp-md);
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.hero-quote {
    border: none;
    padding: 0;
    margin: 0 0 var(--sp-lg);
}

.hero-quote p {
    font-family: var(--font-serif);
    font-size: var(--text-lead);
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
}

.hero-desc {
    font-size: var(--text-body);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================================================
   THREE LAWS
   ===================================================================== */
.section--laws {
    background: var(--ink);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.section--laws .section-eyebrow { color: var(--accent); }
.section--laws .section-title { color: var(--white); }

.laws-intro {
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--sp-xl);
    font-size: var(--text-body);
}

.laws {
    counter-reset: none;
}

.law {
    display: flex;
    gap: var(--sp-md);
    padding: var(--sp-lg) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: flex-start;
    transition: border-color var(--duration) var(--ease);
}
.law:last-child { border-bottom: none; }
.law:hover { border-color: rgba(229, 75, 42, 0.3); }

.law-number {
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--accent);
    line-height: 1;
    min-width: 50px;
    font-style: italic;
    transition: transform var(--duration) var(--ease-expo);
}
.law:hover .law-number { transform: translateX(4px); }

.law-body h3 {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--sp-xs);
    font-weight: 400;
}

.law-body p {
    font-family: var(--font-serif);
    font-size: var(--text-lead);
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* =====================================================================
   BUILD SECTION
   ===================================================================== */
.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

@media (max-width: 900px) {
    .build-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
}

.build-item {
    background: var(--white);
    padding: var(--sp-lg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition:
        border-color var(--duration) var(--ease),
        transform var(--duration) var(--ease-expo),
        box-shadow var(--duration) var(--ease);
    position: relative;
}
.build-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    border-radius: 8px 0 0 8px;
    transition: height var(--duration) var(--ease-expo);
}
.build-item:hover {
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.build-item:hover::before {
    height: 100%;
}

.build-number { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--accent); display: block; margin-bottom: var(--sp-sm); letter-spacing: 0.05em; }
.build-item h3 { font-size: var(--text-h3); margin-bottom: var(--sp-xs); }
.build-item p { color: var(--muted); line-height: 1.7; font-size: var(--text-small); }
.build-footer { text-align: center; font-family: var(--font-serif); font-size: var(--text-lead); color: var(--ink); font-style: italic; }

/* =====================================================================
   STEPS
   ===================================================================== */
.steps { counter-reset: none; }

.step {
    display: flex;
    gap: var(--sp-md);
    padding: var(--sp-lg) 0;
    border-bottom: 1px solid var(--border);
    transition: border-color var(--duration) var(--ease);
}
.step:last-child { border-bottom: none; }
.step:hover { border-color: var(--accent-light); }

.step-marker {
    flex-shrink: 0; width: 40px; height: 40px; background: var(--cream);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: var(--text-xs); color: var(--accent);
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
    border: 1px solid transparent;
}
.step:hover .step-marker {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.step-body h3 { font-size: var(--text-h3); margin-bottom: 4px; }
.step-body p { color: var(--muted); line-height: 1.7; font-size: var(--text-small); }

/* =====================================================================
   WHO
   ===================================================================== */
.who-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
@media (max-width: 768px) { .who-content { grid-template-columns: 1fr; gap: var(--sp-lg); } }

.who-label { font-family: var(--font-serif); font-size: var(--text-body); font-style: italic; margin-bottom: var(--sp-sm); display: block; }
.who-label--yes { color: var(--ink); }
.who-label--no { color: var(--muted); }

.who-list li { padding: var(--sp-xs) 0; padding-left: var(--sp-md); position: relative; color: var(--ink-light); line-height: 1.6; font-size: var(--text-small); }
.who-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.who-list--muted li { color: var(--muted); }
.who-list--muted li::before { color: var(--muted); }

/* =====================================================================
   COMBINED JOIN + FOOTER
   ===================================================================== */
.site-footer {
    position: relative;
    z-index: 1;
}

/* Join Band */
.footer-join {
    background: var(--ink);
    color: var(--white);
    padding: var(--sp-2xl) var(--sp-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle accent glow behind the join section */
.footer-join::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 75, 42, 0.10) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.footer-join__title {
    font-family: var(--font-serif);
    font-size: var(--text-h2);
    color: var(--white);
    margin-bottom: var(--sp-sm);
}

.footer-join__lead {
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--sp-lg);
    font-size: var(--text-body);
}

.footer-join__ctas {
    display: flex;
    gap: var(--sp-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Nav Grid */
.footer-nav {
    background: var(--cream);
    padding: var(--sp-xl) var(--sp-md);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-lg);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-lg) var(--sp-md);
    }
    .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo__svg { height: 22px; width: auto; display: block; margin-bottom: var(--sp-sm); }
.footer-tagline { font-size: var(--text-small); color: var(--muted); line-height: 1.5; }

.footer-col__title {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    margin-bottom: var(--sp-sm);
    font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-xs); font-size: var(--text-small); color: var(--muted); }
.footer-col a { color: var(--muted); transition: color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease); display: inline-block; }
.footer-col a:hover { color: var(--accent); transform: translateX(2px); }
.footer-col strong { color: var(--ink); font-weight: 600; }

/* Legal Bar */
.footer-legal {
    background: var(--cream-dark);
    padding: var(--sp-sm) var(--sp-md);
    border-top: 1px solid var(--border);
}

.footer-legal__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-xs);
}

.footer-legal p, .footer-legal span {
    font-size: var(--text-xs);
    color: var(--muted);
}

@media (max-width: 600px) {
    .footer-legal__inner { flex-direction: column; text-align: center; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 600px) {
    :root { --sp-xl: 60px; --sp-2xl: 80px; }

    .hero { min-height: auto; padding: calc(80px + var(--sp-xl)) var(--sp-md) var(--sp-xl); }
    .hero.is--landed { padding: 0 var(--sp-md) var(--sp-lg); }
    .hero-lockup { width: min(80vw, 320px); }
    .hero-ctas { flex-direction: column; align-items: center; gap: var(--sp-xs); }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; }
    .footer-join__ctas { flex-direction: column; align-items: center; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    .cursor { display: none !important; }
}

/* =====================================================================
   PRINT
   ===================================================================== */
@media print {
    .nav, .hero-ctas, .footer-join__ctas, .grid-bg, .cursor { display: none; }
    body { font-size: 12pt; cursor: auto; }
    .section { padding: 2em 0; }
}
