/* ========================================
   WEARLY
   Aesthetic ref: Maison Margiela
   — raw white, stark black, deliberate void
   — typography as the only ornament
   — green reduced to a whisper
   Font: Archivo (wide, flat, industrial)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

/* === VARIABLES === */
:root {
    --white:       #fafaf8;
    --paper:       #f5f4f0;
    --black:       #111110;
    --ink:         #1c1c1a;
    --rule:        #d6d4cf;
    --muted:       #8a8880;
    --faint:       #c8c6c0;

    /* green reduced to almost nothing */
    --green:       #2a5c32;
    --green-ghost: rgba(42, 92, 50, 0.06);

    --font: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* Spacing — generous void is the aesthetic */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  8rem;
    --space-xxl: 13rem;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

    /* legacy var aliases */
    --color-primary: var(--black);
    --color-secondary: var(--rule);
    --color-accent: var(--green);
    --color-accent-light: var(--green);
    --color-white: var(--white);
    --color-cream: var(--paper);
    --color-text: var(--ink);
    --color-text-light: var(--muted);
    --font-display: var(--font);
    --font-body: var(--font);
    --font-accent: var(--font);
    --border-radius: 0;
    --border-width: 1px;
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* === TYPOGRAPHY ===
   Margiela uses extreme weight contrast:
   ultra-thin labels vs. heavy display text */

h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}
h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
p { line-height: 1.78; margin-bottom: 1rem; }

/* === CONTAINER === */
.container { max-width: 1320px; margin: 0 auto; padding: 0 3rem; }
@media (max-width: 768px) { .container { padding: 0 1.5rem; } }

/* ================================
   NAVIGATION — catalogue-style
================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    transition: none;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo: heavy caps, no decoration */
.logo {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}
.logo-wear { color: var(--black); }
.logo-ly   { color: var(--black); } /* green removed from logo */

/* Tiny dot accent only */
.logo::after {
    content: '·';
    color: var(--green);
    margin-left: 0.1em;
    font-size: 1.2em;
    line-height: 0;
    vertical-align: -0.05em;
}

.nav-links { display: flex; gap: 3rem; align-items: center; }

.nav-link {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.15s;
    position: relative;
}
.nav-link:hover { color: var(--black); }
.nav-link::after { display: none; }

/* CTA — stark inverted pill */
.nav-cta {
    font-size: 0.66rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--white) !important;
    background: var(--black) !important;
    padding: 0.55rem 1.4rem !important;
    transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--ink) !important; color: var(--white) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--black); }

@media (max-width: 768px) {
    .nav-container { padding: 1rem 1.5rem; }
    .nav-links {
        position: fixed;
        top: 55px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.75rem;
        transform: translateX(100%);
        transition: transform 0.3s var(--ease);
        border-top: 1px solid var(--rule);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-toggle { display: flex; }
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s var(--ease);
    border-radius: 0;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-primary:hover {
    background: var(--ink);
    transform: translateY(-1px);
}
.btn-primary::before,
.btn-primary::after { display: none !important; }

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--rule);
}
.btn-secondary:hover { border-color: var(--black); transform: translateY(-1px); }

.btn-large { padding: 1.15rem 3rem; font-size: 0.72rem; }

/* ================================
   HERO — full bleed editorial
================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-xl);
    padding-top: var(--space-xxl);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* No decorative bars, no gradients — pure void */
.hero::before { display: none; }
.hero::after  { display: none; }

/* Catalogue index number — Margiela signature detail */
.hero-index {
    position: absolute;
    top: calc(var(--space-xxl) + 1rem);
    right: 3rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    user-select: none;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Label row */
.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2.5rem;
}
.hero-tag::before {
    content: '001';
    font-size: 0.58rem;
    color: var(--faint);
    letter-spacing: 0.1em;
}
.hero-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
    max-width: 60px;
}

.hero-title {
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.05s forwards;
    color: var(--black);
}

/* The italic line — very Margiela to break the grid with it */
.hero-title em {
    font-style: italic;
    font-weight: 200;
    color: var(--ink);
    display: block;
    font-size: 0.82em;
    letter-spacing: 0;
    text-transform: none;
    margin: 0.1em 0;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 380px;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.88;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

/* Stat row — minimal, data-driven */
.hero-stat-row {
    display: flex;
    gap: 0;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
    border-top: 1px solid var(--rule);
}
.hero-stat-item {
    padding: 1.5rem 2rem 0 0;
    margin-right: 2rem;
    border-right: 1px solid var(--rule);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--black);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
    margin-top: 0.4rem;
}

/* Hero visual — raw stacked cards, no rounded corners, no shadows */
.hero-visual {
    position: relative;
    height: 600px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.2s forwards;
    align-self: flex-start;
    padding-top: 2rem;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--paper);
    transition: transform 0.5s var(--ease);
    box-shadow: none;
}
.hero-card:hover { transform: translateY(-8px) !important; }

.hero-card-1 { width: 230px; top: 0;    left: 0;    z-index: 3; animation: float 8s ease-in-out infinite; }
.hero-card-2 { width: 210px; top: 130px; right: 10px; z-index: 2; animation: float 8s ease-in-out 2s infinite; }
.hero-card-3 { width: 220px; bottom: 20px; left: 90px; z-index: 1; animation: float 8s ease-in-out 4s infinite; }

.card-image { width: 100%; height: 310px; }
.card-label {
    padding: 1rem 1.1rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--white);
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-label::after { content: '→'; color: var(--black); font-size: 0.8rem; }

@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { height: 360px; max-width: 320px; align-self: center; }
    .hero-card { width: 175px; }
    .hero-card-2 { right: 0; }
    .hero-card-3 { left: 55px; bottom: 0; }
    .hero-index { display: none; }
}
@media (max-width: 768px) {
    .hero { padding-bottom: 5rem; }
    .hero-buttons { flex-direction: column; }
    .btn { text-align: center; }
}

/* ================================
   SECTION BASE
================================ */
section { padding: var(--space-xl) 0; }

/* Section index labels — Margiela catalogue numbering */
.section-tag {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 1.5rem;
}

.section-header { margin-bottom: 5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-tag { display: block; }

.section-title { color: var(--black); }
.section-title::before,
.section-title::after { display: none !important; content: none !important; }

.section-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 1.5rem;
    max-width: 500px;
    line-height: 1.9;
    font-weight: 400;
}
.section-header.centered .section-sub { margin: 1.5rem auto 0; }

/* ================================
   HOW IT WORKS — grid catalogue
================================ */
.how-it-works { background: var(--paper); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
}

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

.step {
    padding: 3rem;
    border-right: 1px solid var(--rule);
    transition: background 0.2s;
    position: relative;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--white); }

@media (max-width: 768px) {
    .step { border-right: none; border-bottom: 1px solid var(--rule); }
    .step:last-child { border-bottom: none; }
}

.step-number {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 3rem;
    display: block;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}
.step-number::after { display: none !important; }

.step-icon { color: var(--black); margin-bottom: 1.5rem; }
.step-icon::after { display: none !important; }

.step-title { font-size: 1rem; margin-bottom: 1rem; font-weight: 700; letter-spacing: 0.02em; }
.step-description { font-size: 0.85rem; color: var(--muted); line-height: 1.88; font-weight: 400; }

/* ================================
   MRS W
================================ */
.lumi-section { background: var(--white); }

.lumi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
}

.lumi-description {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.92;
    font-weight: 400;
}

.lumi-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; }

.lumi-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--rule);
}
.lumi-feature:first-child { border-top: 1px solid var(--rule); }
.lumi-feature svg { flex-shrink: 0; color: var(--black); margin-top: 2px; }
.lumi-feature span { font-size: 0.82rem; color: var(--muted); line-height: 1.78; font-weight: 400; }

/* Chat — stripped to bare bones */
.chat-window {
    background: var(--white);
    border: 1px solid var(--rule);
    overflow: hidden;
}
.chat-header {
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: none;
}
.chat-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--white); flex-shrink: 0; }
.chat-header span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.chat-messages {
    padding: 1.5rem;
    min-height: 280px;
    max-height: 360px;
    overflow-y: auto;
}
.chat-message {
    margin-bottom: 0.9rem;
    padding: 0.85rem 1.1rem;
    max-width: 82%;
    font-size: 0.84rem;
    line-height: 1.68;
    animation: fadeIn 0.25s var(--ease-out);
}
.lumi-message { background: var(--paper); color: var(--ink); border-radius: 0; margin-right: auto; }
.user-message  { background: var(--black); color: var(--white); border-radius: 0; margin-left: auto; }

.chat-input {
    border-top: 1px solid var(--rule);
    padding: 0.85rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    background: var(--paper);
}
.chat-input input {
    flex: 1;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--rule);
    background: var(--white);
    font-family: var(--font);
    font-size: 0.82rem;
    color: var(--black);
    border-radius: 0;
}
.chat-input input::placeholder { color: var(--faint); }
.chat-input input:focus { outline: none; border-color: var(--black); }

.chat-send-btn {
    padding: 0.6rem 1.2rem;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.15s;
}
.chat-send-btn:hover { background: var(--ink); }

@media (max-width: 968px) { .lumi-content { grid-template-columns: 1fr; gap: 3rem; } }

/* ================================
   TESTIMONIALS
================================ */
.testimonials { background: var(--paper); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
    padding: 3rem;
    border-right: 1px solid var(--rule);
    background: var(--paper);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before { display: none !important; }
.testimonial-card::after  { display: none !important; }
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--white); }

@media (max-width: 768px) {
    .testimonial-card { border-right: none; border-bottom: 1px solid var(--rule); }
    .testimonial-card:last-child { border-bottom: none; }
}

.testimonial-quote { font-size: 1.8rem; font-weight: 900; color: var(--black); margin-bottom: 1.2rem; text-shadow: none; line-height: 1; }
.testimonial-text { font-size: 0.85rem; color: var(--muted); line-height: 1.88; margin-bottom: 2rem; font-weight: 400; }
.testimonial-author { display: flex; gap: 0.9rem; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.author-avatar { width: 34px; height: 34px; border-radius: 0; border: 1px solid var(--rule); background: var(--rule); }
.author-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); }
.author-location { font-size: 0.68rem; color: var(--faint); margin-top: 2px; letter-spacing: 0.06em; }

/* ================================
   IMPACT — black section
================================ */
.impact-section { background: var(--black); }
.impact-section .section-tag  { color: rgba(255,255,255,0.25); }
.impact-section .section-title { color: var(--white); }
.impact-section .section-sub   { color: rgba(255,255,255,0.38); }

/* Stats as a raw grid with dividing lines — no cards, no backgrounds */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-lg);
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    transition: background 0.2s;
    position: relative;
}
.stat-card::before { display: none !important; }
.stat-card:hover { background: rgba(255,255,255,0.03); }

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}
.stat-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.impact-text { max-width: 900px; margin: 0 auto; }
.impact-text p { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.95; margin-bottom: 2rem; font-weight: 400; }

.impact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .impact-features { grid-template-columns: 1fr; } }

.impact-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.75rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.impact-feature svg { flex-shrink: 0; color: rgba(255,255,255,0.4); margin-top: 2px; }
.impact-feature span { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.78; font-weight: 400; }

/* ================================
   CTA — stripped, almost austere
================================ */
.cta-section {
    background: var(--white);
    padding: var(--space-xl) 0;
    text-align: left;
    border-top: 1px solid var(--rule);
}
.cta-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
}
@media (max-width: 768px) {
    .cta-content { flex-direction: column; align-items: flex-start; padding: 0 1.5rem; gap: 2.5rem; }
}

.cta-title { color: var(--black); max-width: 700px; }
.cta-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.88;
}

.cta-section .btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.cta-section .btn-primary:hover { background: var(--ink); }

/* Right side of CTA — stacked vertically */
.cta-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.footer::before { display: none !important; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 968px) { .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px)  { .footer-content { grid-template-columns: 1fr; } }

.footer-logo {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-logo::after { content: '·'; color: var(--green); margin-left: 0.1em; }

.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.85; margin-bottom: 1.75rem; font-weight: 400; }

.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.38);
    transition: border-color 0.15s, color 0.15s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.footer-title {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.42); transition: color 0.15s; font-weight: 400; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.22); letter-spacing: 0.06em; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.68rem; color: rgba(255,255,255,0.22); transition: color 0.15s; letter-spacing: 0.06em; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* ================================
   WAITLIST PAGE
================================ */
.waitlist-hero {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background: var(--black);
    padding: var(--space-xxl) 3rem var(--space-lg);
    position: relative;
    overflow: hidden;
}
.waitlist-hero::before { display: none; }
.waitlist-hero h1 { color: var(--white); }
.waitlist-hero .hero-subtitle { color: rgba(255,255,255,0.4); max-width: 480px; margin-top: 1.5rem; }

.waitlist-container { max-width: 680px; margin: 0 auto; padding: var(--space-xl) 3rem; }
@media (max-width: 768px) { .waitlist-container { padding: 4rem 1.5rem; } }

.form-group { margin-bottom: 2rem; }
.form-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
}
.form-label.required::after { content: ' *'; color: var(--black); }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1px solid var(--rule);
    color: var(--black);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 400;
    transition: border-color 0.15s;
    border-radius: 0;
    appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--faint); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--black); }
.form-textarea { resize: vertical; min-height: 110px; }

.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 0; }
.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--rule);
    border-top: none;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--muted);
    transition: background 0.15s, color 0.15s;
}
.radio-option:first-child, .checkbox-option:first-child { border-top: 1px solid var(--rule); }
.radio-option:hover, .checkbox-option:hover { background: var(--paper); color: var(--black); }
.radio-option input, .checkbox-option input { accent-color: var(--black); }

.form-submit { width: 100%; margin-top: 2.5rem; }

.success-message {
    display: none;
    background: var(--paper);
    border: 1px solid var(--rule);
    color: var(--black);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.success-message.active { display: block; animation: fadeUp 0.4s var(--ease-out); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 5rem;
    border: 1px solid var(--rule);
}
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--rule);
    background: var(--paper);
    transition: background 0.2s;
}
.benefit-card:last-child { border-right: none; }
.benefit-card:hover { background: var(--white); }
.benefit-icon { font-size: 1.2rem; margin-bottom: 1rem; }
.benefit-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 0.5rem; }
.benefit-description { font-size: 0.8rem; color: var(--muted); line-height: 1.75; font-weight: 400; }

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes float   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.fade-in { animation: fadeUp 0.65s var(--ease-out); }

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--rule); }
::-webkit-scrollbar-thumb:hover { background: var(--black); }

/* ================================
   UTILITY
================================ */
.text-center { text-align: center; }
a, button, .btn { cursor: pointer; }

@media (max-width: 768px) {
    :root { --space-xl: 5rem; --space-xxl: 8rem; }
    section { padding: 5rem 0; }
}
