/* ============================================================
   LARBINS — Design System
   Direction : Estampe Maritime · Gravure sur Bois · XVIIIe
   Palette : Parchemin · Encre · Sépia · Rouge sang · Or vieilli
   Fonts : Playfair Display (display) · EB Garamond (corps) · Cinzel (labels)
   ============================================================ */

:root {
    /* Parchemin & Encre */
    --parchment:      #F5E9CC;
    --parchment-dark: #ECD9A8;
    --parchment-aged: #D9C285;
    --ink:            #18100A;
    --ink-warm:       #2C1A0C;

    /* Accents */
    --sepia:          #5C3819;
    --sepia-mid:      #3F260F;
    --rust:           #7A2205;
    --rust-dark:      #581500;
    --gold:           #9B7A10;
    --gold-light:     #C4A227;
    --gold-pale:      #E0C96A;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'EB Garamond', Georgia, serif;
    --font-label:   'Cinzel', Georgia, serif;

    --nav-h: 70px;
    --transition: 0.24s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--parchment);
    overflow-x: hidden;
}

/* ---- Aged paper texture overlay ---- */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    mix-blend-mode: multiply;
}

/* ---- Utility ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section { padding: 7rem 0; }

.c-red    { color: var(--rust); }
.c-blue   { color: var(--sepia); }
.c-yellow { color: var(--gold); }
.c-cream  { color: var(--parchment); }
.c-ink    { color: var(--ink); }

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

/* Ornamental label — ✦ LE CONCEPT ✦ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.eyebrow::before,
.eyebrow::after {
    content: '✦';
    font-size: 0.55em;
    opacity: 0.8;
}

/* On dark backgrounds */
.eyebrow--light { color: var(--gold-light); }

.lead {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--ink-warm);
}

/* Ornamental horizontal rule */
.ornament-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    color: var(--gold);
    font-size: 0.85rem;
}
.ornament-rule::before,
.ornament-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--rust);
    color: var(--parchment);
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--rust-dark);
    box-shadow: 2px 2px 0 var(--rust-dark), inset 0 1px 0 rgba(240, 220, 180, 0.15);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: var(--rust-dark);
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--rust-dark);
}
.btn-primary:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--rust-dark);
}

.btn-ghost {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    color: var(--parchment);
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid rgba(240, 220, 180, 0.35);
    transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
    border-color: rgba(240, 220, 180, 0.7);
    background: rgba(240, 220, 180, 0.06);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(22, 13, 6, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold);
    transition: box-shadow 0.3s;
}
.nav::after {
    content: '';
    position: absolute;
    left: 2rem; right: 2rem;
    bottom: -5px;
    height: 3px;
    border-bottom: 1px solid rgba(156, 122, 16, 0.25);
}
.nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--parchment);
    letter-spacing: 0.04em;
    font-style: italic;
}
.nav-anchor {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(240, 220, 180, 0.65);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--parchment); }

.btn-nav {
    padding: 0.4rem 1.1rem !important;
    background: var(--rust) !important;
    color: var(--parchment) !important;
    border: 1px solid var(--rust-dark) !important;
    transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--rust-dark) !important; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--parchment);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--nav-h);
    background: var(--ink);
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 2rem;
}

/* Engraving cross-hatch background */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            rgba(156, 122, 16, 0.04) 0px,
            rgba(156, 122, 16, 0.04) 1px,
            transparent 1px,
            transparent 12px
        ),
        repeating-linear-gradient(
            45deg,
            rgba(156, 122, 16, 0.03) 0px,
            rgba(156, 122, 16, 0.03) 1px,
            transparent 1px,
            transparent 12px
        );
    pointer-events: none;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem 4rem 6%;
    z-index: 2;
    min-width: 0;
}

.hero-eyebrow {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold-light);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.92;
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-weight: 900;
    font-size: clamp(5rem, 13vw, 11rem);
    color: var(--parchment);
    letter-spacing: -0.02em;
    /* Impression en relief — effet bois gravé */
    text-shadow:
        1px  1px 0 rgba(196, 162, 39, 0.4),
        2px  2px 1px rgba(10, 5, 2, 0.7),
        0    0   8px rgba(196, 162, 39, 0.08);
}

.title-sub {
    display: block;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-top: 0.3em;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-style: italic;
    line-height: 1.75;
    color: rgba(240, 220, 180, 0.65);
    margin-bottom: 2.5rem;
    max-width: 460px;
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4% 3rem 0;
    z-index: 2;
    min-height: 400px;
}

.ship-svg {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6)) sepia(0.15);
    animation: ship-sway 8s ease-in-out infinite;
    transform-origin: center 85%;
}

@keyframes ship-sway {
    0%, 100% { transform: rotate(-1.2deg) translateY(0px); }
    50%       { transform: rotate(1.2deg)  translateY(-8px); }
}

.hero-badge {
    position: absolute;
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--parchment-aged);
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--gold);
    white-space: nowrap;
    animation: badge-float 5s ease-in-out infinite;
    box-shadow: 2px 2px 0 rgba(18, 10, 5, 0.4);
}
.hero-badge-1 { top: 18%; left: 5%;  animation-delay: 0s;   }
.hero-badge-2 { top: 22%; right: 5%; animation-delay: 1.5s; background: var(--rust); color: var(--parchment); border-color: var(--rust-dark); }
.hero-badge-3 { bottom: 28%; left: 8%; animation-delay: 0.8s; }

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(200, 162, 39, 0.35);
    z-index: 2;
    transition: color var(--transition);
}
.scroll-hint:hover { color: rgba(200, 162, 39, 0.7); }
.scroll-hint-text {
    font-family: var(--font-label);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.scroll-hint svg {
    width: 18px;
    height: 18px;
    animation: hint-bounce 2.5s ease-in-out infinite;
}
@keyframes hint-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ============================================================
   PITCH
   ============================================================ */
.pitch {
    background: var(--parchment);
    scroll-margin-top: var(--nav-h);
    position: relative;
}
/* Subtle warm vignette */
.pitch::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(180, 130, 30, 0.06), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 90, 20, 0.05), transparent 50%);
    pointer-events: none;
}

.pitch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pitch-text p {
    font-size: 1.05rem;
    color: rgba(44, 26, 12, 0.75);
    margin-bottom: 1rem;
    line-height: 1.75;
}
.pitch-text p strong { color: var(--ink); }
.pitch-text .lead { color: var(--ink-warm); }

/* Ornamental double-border duality card */
.duality-card {
    background: var(--parchment-dark);
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-around;
    border: 1px solid var(--sepia);
    position: relative;
}
.duality-card::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(92, 56, 25, 0.3);
    pointer-events: none;
}
/* Corner ornament */
.duality-card::after {
    content: '⚓';
    position: absolute;
    top: -0.65em;
    left: 50%;
    transform: translateX(-50%);
    background: var(--parchment-dark);
    padding: 0 0.6rem;
    color: var(--gold);
    font-size: 0.7rem;
    line-height: 1;
}

.duality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.duality-icon {
    width: 44px;
    height: 44px;
    color: var(--sepia);
}
.duality-item strong {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
}
.duality-item span {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(44, 26, 12, 0.55);
    max-width: 100px;
    line-height: 1.3;
}
.duality-vs {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 2.8rem;
    color: var(--rust);
    flex-shrink: 0;
    line-height: 1;
    text-shadow: 1px 1px 0 var(--rust-dark);
}

/* ============================================================
   PHASES
   ============================================================ */
.phases {
    background: var(--ink-warm);
    scroll-margin-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}
/* Diagonal hatch on dark sections */
.phases::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(156, 122, 16, 0.03) 0px,
        rgba(156, 122, 16, 0.03) 1px,
        transparent 1px,
        transparent 14px
    );
    pointer-events: none;
}

.phases .section-title {
    position: relative;
    z-index: 1;
    color: var(--parchment);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.phases-grid {
    display: grid;
    grid-template-columns: 1fr 160px 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.phase-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(196, 162, 39, 0.2);
    position: relative;
    background: rgba(44, 26, 12, 0.5);
}
/* Inner border */
.phase-card::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(196, 162, 39, 0.1);
    pointer-events: none;
}
.phase-life   { border-left: 3px solid var(--gold); }
.phase-action { border-left: 3px solid var(--rust); }

.phase-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 5rem;
    line-height: 1;
    color: rgba(200, 160, 40, 0.06);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    letter-spacing: -0.04em;
    user-select: none;
}

.phase-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.phase-life h3   { color: var(--gold-light); }
.phase-action h3 { color: rgba(210, 120, 80, 0.95); }

.phase-card p {
    font-size: 0.95rem;
    color: rgba(240, 220, 180, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.phase-list { margin-bottom: 1.5rem; }
.phase-list li {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.75rem;
    color: rgba(240, 220, 180, 0.75);
    padding: 0.42rem 0;
    border-bottom: 1px solid rgba(240, 220, 180, 0.07);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.phase-list li::before {
    content: '—';
    opacity: 0.3;
    font-style: normal;
    flex-shrink: 0;
}

.phase-vibe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-label);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240, 220, 180, 0.35);
}
.phase-vibe svg { width: 7px; height: 7px; }
.phase-life   .phase-vibe svg { color: var(--gold); }
.phase-action .phase-vibe svg { color: var(--rust); }

.phase-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0.5rem;
    gap: 0.8rem;
}
.phase-boom {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 3.2rem;
    color: var(--rust);
    text-transform: none;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow:
        1px 1px 0 rgba(196, 162, 39, 0.4),
        2px 2px 1px rgba(0, 0, 0, 0.5);
}
.phase-separator p {
    font-family: var(--font-label);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240, 220, 180, 0.28);
}
.phase-cannon { width: 52px; height: 52px; opacity: 0.5; }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    background: var(--parchment-dark);
    scroll-margin-top: var(--nav-h);
    position: relative;
}
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 96, 53, 0.08), transparent 60%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--sepia);
    position: relative;
    z-index: 1;
}
/* Inner border */
.features-grid::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(92, 56, 25, 0.2);
    pointer-events: none;
    z-index: 0;
}

.feature-card {
    padding: 2.2rem 1.5rem;
    border-right: 1px solid rgba(92, 56, 25, 0.3);
    transition: background var(--transition);
    position: relative;
    z-index: 1;
}
.feature-card:last-child { border-right: none; }
.feature-card--wide {
    grid-column: span 4;
    border-right: none;
    border-top: 1px solid rgba(92, 56, 25, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.feature-card:hover:not(.feature-card--wide) {
    background: rgba(92, 56, 25, 0.08);
}
.feature-card:hover:not(.feature-card--wide) .feature-icon { color: var(--rust) !important; }

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    color: var(--sepia);
    opacity: 0.8;
    transition: color var(--transition), opacity var(--transition);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card--wide .feature-icon { margin-bottom: 0; margin-top: 0.2rem; }

.feature-card h4 {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    color: var(--ink);
    line-height: 1.3;
}
.feature-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(44, 26, 12, 0.65);
    font-style: italic;
}

/* ============================================================
   CAPTAIN
   ============================================================ */
.captain {
    position: relative;
    background: var(--sepia-mid);
    overflow: hidden;
    scroll-margin-top: var(--nav-h);
}

.captain-dots {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            rgba(196, 162, 39, 0.04) 0px,
            rgba(196, 162, 39, 0.04) 1px,
            transparent 1px,
            transparent 10px
        );
    pointer-events: none;
}

.captain-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.captain-figure {
    max-width: 210px;
    margin: 0 auto;
}
.captain-svg {
    width: 100%;
    animation: drunk-sway 3.4s ease-in-out infinite;
    transform-origin: 50% 90%;
    filter: sepia(0.1);
}
@keyframes drunk-sway {
    0%   { transform: rotate(-4deg) translateX(-5px); }
    33%  { transform: rotate(5deg)  translateX(8px);  }
    66%  { transform: rotate(-2deg) translateX(-3px); }
    100% { transform: rotate(-4deg) translateX(-5px); }
}

.star-1 { animation: star-spin 1.8s ease-in-out infinite; transform-origin: 148px 72px; }
.star-2 { animation: star-spin 1.3s ease-in-out infinite reverse; transform-origin: 160px 50px; }
.star-3 { animation: star-spin 2.1s ease-in-out infinite; transform-origin: 30px 79px; }
.star-4 { animation: star-spin 1.6s ease-in-out infinite reverse; transform-origin: 18px 54px; }
@keyframes star-spin {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.5); }
}

.ivresse-meter {
    margin-top: 1.5rem;
    background: rgba(10, 5, 2, 0.3);
    border: 1px solid rgba(196, 162, 39, 0.3);
    padding: 1rem 1.2rem;
    position: relative;
}
.ivresse-meter::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(196, 162, 39, 0.12);
    pointer-events: none;
}
.meter-label {
    font-family: var(--font-label);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(200, 160, 40, 0.5);
    margin-bottom: 0.6rem;
}
.meter-track {
    height: 8px;
    background: rgba(200, 160, 40, 0.1);
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.meter-fill {
    height: 100%;
    background: var(--rust);
    width: 78%;
    transition: width 0.5s ease;
}
.meter-status {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
}

/* Captain text */
.captain-text .eyebrow { color: var(--gold-light); }
.captain-text .eyebrow::before,
.captain-text .eyebrow::after { color: var(--gold-light); }
.captain-text .section-title {
    color: var(--parchment);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.captain-lead {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--parchment);
    margin-bottom: 2rem;
}

.captain-options { display: flex; flex-direction: column; gap: 0.7rem; }

.captain-opt {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-left: 2px solid transparent;
    background: rgba(10, 5, 2, 0.2);
}
.captain-opt--blue { border-left-color: var(--gold); }
.captain-opt--red  { border-left-color: var(--rust); background: rgba(120, 34, 5, 0.15); }

.captain-opt strong {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    min-width: 72px;
    color: var(--gold-pale);
    flex-shrink: 0;
}
.captain-opt span {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--parchment);
    line-height: 1.45;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
    background: var(--parchment);
    scroll-margin-top: var(--nav-h);
    position: relative;
}
.team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(180, 130, 30, 0.05), transparent 55%);
    pointer-events: none;
}

.team-intro {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(44, 26, 12, 0.58);
    max-width: 520px;
    margin-top: -1.5rem;
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.team-card {
    background: var(--parchment-dark);
    border: 1px solid var(--sepia);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(92, 56, 25, 0.2);
    pointer-events: none;
    transition: border-color var(--transition);
}
.team-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 var(--sepia);
}

.team-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--parchment);
    margin-bottom: 0.8rem;
    border: 1px solid rgba(240, 220, 180, 0.3);
    flex-shrink: 0;
}

.team-info h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.1;
}
.team-role {
    font-family: var(--font-label);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.8rem;
}
.team-info p {
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.65;
    color: rgba(44, 26, 12, 0.62);
}

.team-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-label);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(92, 56, 25, 0.25);
    padding: 0.2rem 0.5rem;
    color: rgba(44, 26, 12, 0.35);
}

/* ============================================================
   FOLLOW
   ============================================================ */
.follow {
    position: relative;
    background: var(--ink);
    text-align: center;
    overflow: hidden;
    scroll-margin-top: var(--nav-h);
}

.follow-dots {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            rgba(196, 162, 39, 0.035) 0px,
            rgba(196, 162, 39, 0.035) 1px,
            transparent 1px,
            transparent 12px
        ),
        repeating-linear-gradient(
            45deg,
            rgba(196, 162, 39, 0.025) 0px,
            rgba(196, 162, 39, 0.025) 1px,
            transparent 1px,
            transparent 12px
        );
    pointer-events: none;
}

.follow-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    /* Framing */
    border: 1px solid rgba(196, 162, 39, 0.2);
    padding: 5rem 4rem;
}
.follow-inner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(196, 162, 39, 0.1);
    pointer-events: none;
}

.follow-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--parchment);
    margin-bottom: 1.5rem;
    text-shadow:
        1px 1px 0 rgba(196, 162, 39, 0.3),
        2px 2px 1px rgba(0, 0, 0, 0.5);
}

.follow-sub {
    font-size: 1rem;
    font-style: italic;
    color: rgba(240, 220, 180, 0.55);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.follow-form {
    display: flex;
    border: 1px solid rgba(240, 220, 180, 0.25);
    max-width: 440px;
    margin: 0 auto 1rem;
    overflow: hidden;
    transition: border-color var(--transition);
}
.follow-form:focus-within {
    border-color: rgba(196, 162, 39, 0.5);
}

.follow-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--parchment);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    outline: none;
    min-width: 0;
}
.follow-input::placeholder { color: rgba(240, 220, 180, 0.28); }

.follow-btn {
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: none;
}
.follow-btn:hover { transform: none; box-shadow: none; background: var(--rust-dark); }

.follow-privacy {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(240, 220, 180, 0.25);
    margin-bottom: 2.5rem;
}

.follow-socials {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 220, 180, 0.35);
    transition: color var(--transition);
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    padding: 2.5rem 0;
    border-top: 1px solid var(--gold);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-left { flex: 1; min-width: 160px; }
.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--parchment);
    letter-spacing: 0.02em;
    margin-bottom: 0.2rem;
}
.footer-left p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(240, 220, 180, 0.3);
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-nav a {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 220, 180, 0.35);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(240, 220, 180, 0.18);
    text-align: right;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card:nth-child(2)  { border-right: none; }
    .feature-card:nth-child(3),
    .feature-card:nth-child(4)  { border-top: 1px solid rgba(92, 56, 25, 0.3); }
    .feature-card--wide         { grid-column: span 2; }
    .captain-grid               { grid-template-columns: 300px 1fr; gap: 3rem; }
    .follow-inner               { padding: 4rem 2.5rem; }
}

@media (max-width: 860px) {
    :root { --nav-h: 60px; }

    .nav { padding: 0 1.5rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(18, 10, 4, 0.99);
        padding: 0.5rem 0 1rem;
        border-bottom: 1px solid var(--gold);
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 0.85rem 1.5rem; border-bottom: 1px solid rgba(240, 220, 180, 0.05); }
    .btn-nav { margin: 0.5rem 1.5rem; width: calc(100% - 3rem); text-align: center; }
    .nav-burger { display: flex; }

    .hero { flex-direction: column; text-align: center; padding-bottom: 4rem; }
    .hero-content { padding: 3rem 1.5rem 1rem; }
    .hero-eyebrow { justify-content: center; }
    .hero-tagline { margin: 0 auto 2rem; border-left: none; padding-left: 0; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); padding: 0.8rem 0; }
    .hero-cta { justify-content: center; }
    .hero-visual { padding: 0 2rem 2rem; min-height: auto; }
    .hero-badge-3 { display: none; }

    .pitch-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .duality-card::after { display: none; }

    .phases-grid { grid-template-columns: 1fr; }
    .phase-separator { flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 0; border-left: 3px solid var(--rust); padding-left: 1.5rem; margin: 0.5rem 0; }
    .phase-cannon { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px solid rgba(92, 56, 25, 0.3); }
    .feature-card:last-child { border-bottom: none; }
    .feature-card--wide { grid-column: span 1; }

    .captain-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .captain-opt { text-align: left; }

    .team-grid { grid-template-columns: 1fr; }

    .follow-inner { padding: 3rem 1.5rem; margin: 0 1rem; }

    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
    .section { padding: 5rem 0; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta a { width: 100%; text-align: center; }
    .follow-form { flex-direction: column; }
    .duality-card { flex-direction: column; }
    .duality-vs { font-size: 2.2rem; }
    .feature-card--wide { flex-direction: column; gap: 1rem; }
}

/* Scroll anchors */
#game, #gameplay, #captain, #team, #follow {
    scroll-margin-top: var(--nav-h);
}
