/* BBOTTL — Alpine Chrome Honeycomb Stylesheet */

:root {
    --alpine-evergreen: #0B3D2E;
    --forest-canopy: #1A6B4A;
    --fern-glow: #3DA87A;
    --y2k-silver: #C8D0D8;
    --leather-sienna: #8B5E3C;
    --obsidian: #0D0F0E;
    --frost-white: #F0F2EF;
    --chromatic-lime: #A8E06C;

    --base-unit: 48px;
    --hex-gutter: 4px;

    --chrome-gradient: linear-gradient(135deg, #C8D0D8 0%, #F0F2EF 50%, #C8D0D8 100%);
    --forest-gradient: linear-gradient(160deg, #0B3D2E 0%, #1A6B4A 55%, #3DA87A 100%);
    --leather-gradient: linear-gradient(145deg, #8B5E3C 0%, #5a3d26 50%, #3d2a1a 100%);

    --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);

    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-silk: cubic-bezier(0.25, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--obsidian);
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: var(--frost-white);
    background: var(--obsidian);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== CRYSTALLINE PARTICLES ===== */
.crystalline-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    clip-path: var(--hex-clip);
    background: var(--y2k-silver);
    opacity: 0.35;
    animation: drift linear infinite;
}

.particle.lime { background: var(--chromatic-lime); opacity: 0.25; }
.particle.fern { background: var(--fern-glow); opacity: 0.3; }

@keyframes drift {
    0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
    8%   { opacity: 0.4; }
    92%  { opacity: 0.4; }
    100% { transform: translate3d(var(--drift-x, 40px), 110vh, 0) rotate(360deg); opacity: 0; }
}

/* ===== TOP CHROME ===== */
.top-chrome {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 20px 48px;
    transform: translateY(-110%);
    transition: transform 0.7s var(--ease-silk), backdrop-filter 0.4s ease;
    backdrop-filter: blur(14px) saturate(1.2);
    background: linear-gradient(180deg, rgba(11, 61, 46, 0.72) 0%, rgba(11, 61, 46, 0) 100%);
    border-bottom: 1px solid rgba(200, 208, 216, 0.12);
}

.top-chrome.revealed {
    transform: translateY(0);
}

.chrome-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-hex {
    width: 30px;
    height: 34px;
    color: var(--y2k-silver);
}

.brand-word {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 0.28em;
    background: var(--chrome-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-item {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--frost-white);
    text-decoration: none;
    position: relative;
    padding: 8px 2px;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--chromatic-lime);
    transition: width 0.4s var(--ease-silk), left 0.4s var(--ease-silk);
}

.nav-item:hover {
    color: var(--chromatic-lime);
}

.nav-item:hover::after {
    width: 100%;
    left: 0;
}

.chrome-meta .edition-code {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--y2k-silver);
    opacity: 0.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--alpine-evergreen);
}

.hero-landscape {
    position: absolute;
    inset: 0;
}

.mountain-range-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ridge {
    transition: transform 0.1s linear;
}

.hero-hex-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, 80vw);
    aspect-ratio: 600 / 680;
    z-index: 3;
    display: grid;
    place-items: center;
}

.hex-mask-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(61, 168, 122, 0.35));
    animation: heroHexPulse 8s ease-in-out infinite;
}

@keyframes heroHexPulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(61, 168, 122, 0.35)); }
    50%      { filter: drop-shadow(0 0 60px rgba(168, 224, 108, 0.5)); }
}

.hero-hex-frame::before {
    content: "";
    position: absolute;
    inset: 6%;
    clip-path: var(--hex-clip);
    background: radial-gradient(ellipse at center, rgba(11, 61, 46, 0.15) 0%, rgba(11, 61, 46, 0.65) 100%);
    backdrop-filter: blur(10px) saturate(1.4);
    z-index: 1;
}

.hero-wordmark-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.hero-kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--y2k-silver);
    opacity: 0.85;
    margin-bottom: 28px;
}

.hero-wordmark {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(80px, 14vw, 200px);
    letter-spacing: 0.12em;
    line-height: 0.92;
    margin-bottom: 20px;
}

.chrome-text {
    background: var(--chrome-gradient);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-position: var(--chrome-angle, 0%) 50%;
    transition: background-position 0.3s ease;
    text-shadow: 0 0 40px rgba(200, 208, 216, 0.15);
}

.hero-tagline {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--frost-white);
    opacity: 0.92;
    margin-bottom: 32px;
}

.hero-spec-row {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    border: 1px solid rgba(200, 208, 216, 0.3);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
    background: rgba(11, 61, 46, 0.4);
}

.spec-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--y2k-silver);
}

.spec-dot {
    width: 4px;
    height: 4px;
    background: var(--chromatic-lime);
    clip-path: var(--hex-clip);
}

.scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    animation: cueFloat 3s ease-in-out infinite;
}

@keyframes cueFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}

.cue-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--y2k-silver);
}

.cue-arrow {
    width: 20px;
    height: 40px;
}

/* ===== SECTION META ===== */
.section-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.meta-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 48px;
    letter-spacing: 0.08em;
    color: var(--fern-glow);
    line-height: 1;
}

.meta-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--y2k-silver);
    padding-top: 12px;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(44px, 6vw, 88px);
    letter-spacing: 0.1em;
    line-height: 1.02;
    margin-bottom: 24px;
}

.section-lede {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: var(--frost-white);
    opacity: 0.82;
    max-width: 680px;
    margin-bottom: 80px;
}

/* ===== HONEYCOMB SECTION ===== */
.honeycomb-section {
    padding: 160px 48px 120px;
    background: var(--forest-gradient);
    position: relative;
}

.honeycomb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(168, 224, 108, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(61, 168, 122, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Honeycomb Grid */
.honeycomb {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--hex-gutter);
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.hex-cell {
    aspect-ratio: 1 / 1.1547;
    position: relative;
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    transition: opacity 0.9s var(--ease-silk), transform 0.9s var(--spring);
}

.hex-cell.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Offset alternate rows via grid placement */
.cell-a { grid-column: 1 / span 2; grid-row: 1; }
.cell-b { grid-column: 3 / span 2; grid-row: 1 / span 2; margin-top: 50%; }
.cell-c { grid-column: 5 / span 2; grid-row: 1; }
.cell-d { grid-column: 2 / span 2; grid-row: 2; margin-top: 50%; }
.cell-e { grid-column: 4 / span 2; grid-row: 3; }
.cell-f { grid-column: 6 / span 1; grid-row: 2; margin-top: 50%; }
.cell-g { grid-column: 1 / span 2; grid-row: 3; margin-top: 50%; }
.cell-h { grid-column: 3 / span 1; grid-row: 3; }
.cell-i { grid-column: 5 / span 2; grid-row: 4; }
.cell-j { grid-column: 2 / span 2; grid-row: 4; margin-top: 50%; }

.hex-clip {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    overflow: hidden;
    border: 1px solid rgba(200, 208, 216, 0.25);
    background: var(--alpine-evergreen);
}

.hex-cell::before {
    content: "";
    position: absolute;
    inset: -1px;
    clip-path: var(--hex-clip);
    background: linear-gradient(135deg, rgba(200, 208, 216, 0.4), transparent 45%, rgba(61, 168, 122, 0.3));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hex-cell:hover::before { opacity: 1; }

.cell-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.7s var(--ease-silk);
}

.hex-cell:hover .cell-bg { transform: scale(1.08); }

.cell-gradient-a {
    background: linear-gradient(145deg, #0B3D2E 0%, #1A6B4A 70%, #3DA87A 100%);
}

.cell-gradient-b {
    background: linear-gradient(225deg, #0B3D2E 0%, #3DA87A 100%);
}

.cell-image-bottle {
    background:
        radial-gradient(ellipse at 50% 60%, rgba(200, 208, 216, 0.8) 0%, rgba(200, 208, 216, 0.2) 30%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(240, 242, 239, 0.4) 0%, transparent 40%),
        linear-gradient(145deg, #0B3D2E, #082017);
    position: relative;
}

.cell-image-bottle::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    width: 28%;
    height: 62%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(200, 208, 216, 0.25) 0%, rgba(200, 208, 216, 0.1) 20%, rgba(240, 242, 239, 0.55) 50%, rgba(200, 208, 216, 0.2) 80%, rgba(11, 61, 46, 0.3) 100%);
    border-radius: 35% 35% 15% 15% / 20% 20% 10% 10%;
    box-shadow: inset 3px 0 6px rgba(240, 242, 239, 0.3), inset -3px 0 6px rgba(11, 20, 15, 0.4);
}

.cell-leather {
    background:
        repeating-linear-gradient(45deg, rgba(139, 94, 60, 0.18) 0 2px, transparent 2px 4px),
        repeating-linear-gradient(-45deg, rgba(139, 94, 60, 0.12) 0 3px, transparent 3px 6px),
        radial-gradient(circle at 30% 40%, rgba(139, 94, 60, 0.4), transparent 60%),
        linear-gradient(145deg, #5a3d26 0%, #8B5E3C 50%, #3d2a1a 100%);
    filter: contrast(1.1) saturate(0.85);
}

.cell-leather-dark {
    background:
        repeating-linear-gradient(30deg, rgba(13, 15, 14, 0.25) 0 2px, transparent 2px 5px),
        radial-gradient(circle at 60% 50%, rgba(139, 94, 60, 0.55), transparent 70%),
        linear-gradient(160deg, #2a1f14 0%, #5a3d26 60%, #1a1208 100%);
    mix-blend-mode: normal;
    filter: contrast(1.1) saturate(0.85);
}

.cell-chrome {
    background:
        linear-gradient(135deg, #C8D0D8 0%, #F0F2EF 30%, #8a9098 50%, #F0F2EF 70%, #C8D0D8 100%);
    background-size: 200% 200%;
    animation: chromeShift 12s ease-in-out infinite;
}

@keyframes chromeShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.cell-narrative {
    background:
        linear-gradient(145deg, rgba(11, 61, 46, 0.95), rgba(13, 15, 14, 0.92)),
        repeating-linear-gradient(90deg, rgba(200, 208, 216, 0.05) 0 1px, transparent 1px 20px);
}

.cell-macro-a {
    background:
        radial-gradient(circle at 50% 50%, rgba(200, 208, 216, 0.6) 0%, rgba(61, 168, 122, 0.3) 30%, rgba(11, 61, 46, 0.8) 70%),
        linear-gradient(45deg, #0B3D2E, #1A6B4A);
    position: relative;
}

.cell-macro-a::after {
    content: "";
    position: absolute;
    inset: 15%;
    background: radial-gradient(circle, rgba(240, 242, 239, 0.9) 0%, transparent 30%);
    border-radius: 50%;
    filter: blur(8px);
}

.cell-macro-b {
    background:
        repeating-conic-gradient(from 45deg at 50% 50%, rgba(200, 208, 216, 0.1) 0deg 10deg, transparent 10deg 20deg),
        linear-gradient(120deg, #082017 0%, #1A6B4A 100%);
}

.cell-mountain-duotone {
    background:
        linear-gradient(to bottom,
            #0B3D2E 0%,
            #0B3D2E 40%,
            #082017 40%,
            #082017 60%,
            #050F0B 60%,
            #050F0B 100%
        );
    position: relative;
    overflow: hidden;
}

.cell-mountain-duotone::before {
    content: "";
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 70%;
    background:
        linear-gradient(to bottom right, transparent 49%, #082017 50%) 0 0 / 50% 60% no-repeat,
        linear-gradient(to bottom left, transparent 49%, #082017 50%) 100% 0 / 50% 60% no-repeat,
        linear-gradient(to bottom right, transparent 49%, #050F0B 50%) 20% 20% / 40% 70% no-repeat;
}

.cell-mountain-duotone::after {
    content: "";
    position: absolute;
    top: 25%;
    left: 50%;
    width: 24%;
    height: 24%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(240, 242, 239, 0.15), transparent 60%);
    border-radius: 50%;
}

.cell-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(240, 242, 239, 0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 1.1s var(--ease-silk);
    pointer-events: none;
}

.hex-cell:hover .cell-shimmer { transform: translateX(100%); }

.cell-content {
    position: absolute;
    inset: 18% 14%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: var(--frost-white);
}

.cell-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--chromatic-lime);
    margin-bottom: 10px;
}

.cell-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(20px, 2vw, 32px);
    letter-spacing: 0.1em;
    color: var(--frost-white);
    margin-bottom: 10px;
    line-height: 1.05;
}

.cell-body {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--frost-white);
    opacity: 0.8;
}

.cell-quote {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    color: var(--frost-white);
    margin-bottom: 10px;
}

.cell-attrib {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--y2k-silver);
    opacity: 0.7;
}

.cell-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    z-index: 2;
    animation: emblemBreath 6s ease-in-out infinite;
}

@keyframes emblemBreath {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.05); }
}

/* ===== DIVIDER RUN ===== */
.divider-run {
    margin-top: 120px;
    position: relative;
    height: 100px;
}

.ridgeline-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.ridgeline-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2.5s var(--ease-silk);
    filter: drop-shadow(0 0 4px rgba(61, 168, 122, 0.3));
}

.ridgeline-path.drawn { stroke-dashoffset: 0; }

.stitchline-svg {
    width: 100%;
    height: 8px;
    display: block;
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

.stitchline-svg.visible { opacity: 0.7; }

/* ===== CORRIDOR SECTION ===== */
.corridor-section {
    padding: 160px 48px 140px;
    background:
        linear-gradient(180deg, rgba(13, 15, 14, 0.3) 0%, var(--obsidian) 60%),
        var(--obsidian);
    position: relative;
    overflow: hidden;
}

.corridor-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(200, 208, 216, 0.03) 0 1px, transparent 1px 60px),
        repeating-linear-gradient(90deg, rgba(200, 208, 216, 0.03) 0 1px, transparent 1px 60px);
    pointer-events: none;
}

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

.corridor-meta, .corridor-title { margin-left: 0; }

.corridor-viewport {
    margin-top: 40px;
    position: relative;
    width: 100%;
    height: 520px;
    border-top: 1px solid rgba(200, 208, 216, 0.12);
    border-bottom: 1px solid rgba(200, 208, 216, 0.12);
    overflow: hidden;
    background:
        repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), rgba(139, 94, 60, 0.15) calc(25% - 1px) 25%);
}

.corridor-track {
    display: flex;
    height: 100%;
    width: 400%;
    transition: transform 0.8s var(--ease-silk);
}

.frame {
    flex: 1 0 25%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    border-right: 1px dashed rgba(139, 94, 60, 0.3);
}

.frame-bg {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    z-index: 0;
}

.frame-bg-origin {
    background:
        linear-gradient(180deg, rgba(11, 61, 46, 0.5) 0%, rgba(11, 61, 46, 0.92) 100%),
        linear-gradient(to bottom, #0B3D2E 0%, #0B3D2E 55%, #082017 55%, #082017 75%, #050F0B 75%, #050F0B 100%);
    position: relative;
}

.frame-bg-origin::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        linear-gradient(45deg, transparent 49%, #050F0B 50%) 0 100% / 40% 80% no-repeat,
        linear-gradient(-45deg, transparent 49%, #082017 50%) 100% 100% / 40% 80% no-repeat,
        linear-gradient(-45deg, transparent 49%, #050F0B 50%) 40% 100% / 30% 60% no-repeat;
}

.frame-bg-source {
    background:
        radial-gradient(circle at 30% 50%, rgba(200, 208, 216, 0.15), transparent 40%),
        linear-gradient(145deg, #5a3d26 0%, #0B3D2E 70%);
}

.frame-bg-craft {
    background:
        repeating-linear-gradient(0deg, rgba(200, 208, 216, 0.06) 0 2px, transparent 2px 10px),
        linear-gradient(135deg, #0D0F0E 0%, #1A6B4A 100%);
}

.frame-bg-reveal {
    background:
        radial-gradient(ellipse at 60% 50%, rgba(200, 208, 216, 0.3), transparent 50%),
        linear-gradient(135deg, #C8D0D8 0%, #8a9098 40%, #0B3D2E 100%);
}

.frame-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    padding: 40px;
    background: rgba(13, 15, 14, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 208, 216, 0.2);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.frame-step {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--chromatic-lime);
    display: block;
    margin-bottom: 16px;
}

.frame-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    letter-spacing: 0.1em;
    background: var(--chrome-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.frame-body {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--frost-white);
    opacity: 0.88;
    margin-bottom: 20px;
}

.frame-coord {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--y2k-silver);
    opacity: 0.75;
}

.corridor-progress {
    position: absolute;
    bottom: 24px;
    left: 80px;
    right: 80px;
    height: 1px;
    background: rgba(200, 208, 216, 0.15);
    z-index: 4;
}

.corridor-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--chromatic-lime), var(--fern-glow));
    transition: width 0.4s ease;
}

.corridor-steps {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    gap: 16px;
    z-index: 4;
}

.corridor-dot {
    width: 10px;
    height: 11px;
    clip-path: var(--hex-clip);
    background: rgba(200, 208, 216, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s var(--spring);
}

.corridor-dot.active {
    background: var(--chromatic-lime);
    transform: scale(1.4);
}

/* ===== CRAFT SECTION ===== */
.craft-section {
    padding: 160px 48px 140px;
    background: var(--forest-gradient);
    position: relative;
}

.craft-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(60deg, rgba(139, 94, 60, 0.04) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(-60deg, rgba(139, 94, 60, 0.04) 0 1px, transparent 1px 40px);
    pointer-events: none;
}

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

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.craft-card {
    position: relative;
    padding: 48px 36px 40px;
    background:
        linear-gradient(160deg, rgba(13, 15, 14, 0.6), rgba(11, 61, 46, 0.6)),
        repeating-linear-gradient(45deg, rgba(139, 94, 60, 0.08) 0 2px, transparent 2px 8px);
    border: 1px solid rgba(200, 208, 216, 0.18);
    clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--spring), border-color 0.4s ease;
}

.craft-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.craft-card:hover {
    border-color: rgba(168, 224, 108, 0.5);
}

.craft-ornament {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--y2k-silver);
}

.craft-ornament svg {
    width: 100%;
    height: 100%;
}

.craft-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    letter-spacing: 0.08em;
    color: var(--chromatic-lime);
    display: block;
    margin-bottom: 8px;
}

.craft-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--frost-white);
    margin-bottom: 16px;
}

.craft-body {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--frost-white);
    opacity: 0.82;
    margin-bottom: 24px;
}

.craft-meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.craft-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--y2k-silver);
    padding: 4px 10px;
    border: 1px solid rgba(200, 208, 216, 0.25);
    clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 6px 100%, 0 50%);
    background: rgba(11, 61, 46, 0.5);
}

/* ===== RESERVE SECTION ===== */
.reserve-section {
    padding: 160px 48px;
    background:
        linear-gradient(180deg, var(--obsidian) 0%, rgba(11, 61, 46, 0.85) 100%);
    position: relative;
}

.reserve-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
}

.reserve-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--chromatic-lime);
    margin-bottom: 24px;
    display: block;
}

.reserve-body {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    color: var(--frost-white);
    opacity: 0.88;
    margin-bottom: 40px;
    max-width: 580px;
}

.reserve-action {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hex-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 64px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s var(--spring);
}

.hex-button:hover { transform: translateY(-2px); }

.hex-button-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
}

.hex-button:hover .hex-button-shape {
    filter: drop-shadow(0 0 12px rgba(168, 224, 108, 0.6));
}

.hex-button-label {
    position: relative;
    z-index: 1;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--frost-white);
}

.text-link {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--y2k-silver);
    text-decoration: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.text-link:hover {
    color: var(--chromatic-lime);
    letter-spacing: 0.24em;
}

.reserve-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 208, 216, 0.15);
}

.reserve-stat-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 48px;
    letter-spacing: 0.08em;
    color: var(--frost-white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.reserve-stat-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--y2k-silver);
    opacity: 0.75;
}

.reserve-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reserve-hex-stack {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(61, 168, 122, 0.25));
}

.stack-hex {
    animation: stackRotate 28s linear infinite;
    transform-origin: 180px 180px;
}

.stack-hex-inner {
    animation: stackRotate 20s linear infinite reverse;
    transform-origin: 180px 180px;
}

.stack-hex-core {
    animation: stackPulse 4s ease-in-out infinite;
    transform-origin: 180px 180px;
}

@keyframes stackRotate {
    to { transform: rotate(360deg); }
}

@keyframes stackPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

/* ===== FOOTER ===== */
.footer-constellation {
    padding: 100px 48px 60px;
    background:
        linear-gradient(180deg, rgba(11, 61, 46, 0.85) 0%, var(--obsidian) 100%);
    position: relative;
}

.footer-ridgeline {
    margin-bottom: 60px;
    opacity: 0.6;
}

.footer-ridgeline svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-honeycomb {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 6px;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 20px 0;
}

.footer-hex {
    aspect-ratio: 1 / 1.1547;
    position: relative;
    clip-path: var(--hex-clip);
    background: rgba(26, 107, 74, 0.35);
    border: 1px solid rgba(200, 208, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.4s ease, transform 0.4s var(--spring);
}

.footer-hex:hover {
    background: rgba(168, 224, 108, 0.25);
    transform: scale(1.08);
}

.footer-hex span {
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--y2k-silver);
    text-align: center;
}

.footer-hex-center {
    background: linear-gradient(145deg, #0B3D2E, #1A6B4A);
    border-color: var(--chromatic-lime);
}

.footer-hex-center span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    background: var(--chrome-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Mountain-silhouette arrangement: shift alternate rows */
.footer-honeycomb .footer-hex:nth-child(n+4):nth-child(-n+6) {
    transform: translateY(25%);
}

.footer-honeycomb .footer-hex:nth-child(n+4):nth-child(-n+6):hover {
    transform: translateY(25%) scale(1.08);
}

.footer-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 208, 216, 0.12);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand, .footer-code, .footer-edition {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--y2k-silver);
    opacity: 0.7;
}

.footer-code { color: var(--fern-glow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .honeycomb {
        grid-template-columns: repeat(4, 1fr);
    }
    .cell-a, .cell-b, .cell-c, .cell-d, .cell-e, .cell-f, .cell-g, .cell-h, .cell-i, .cell-j {
        grid-column: span 2;
        grid-row: auto;
        margin-top: 0;
    }
    .reserve-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-honeycomb { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 768px) {
    .top-chrome { padding: 16px 24px; }
    .chrome-inner { grid-template-columns: auto auto; gap: 20px; }
    .nav-links { display: none; }
    .chrome-meta { display: none; }
    .honeycomb-section, .corridor-section, .craft-section, .reserve-section { padding: 100px 24px 80px; }
    .honeycomb { grid-template-columns: repeat(2, 1fr); }
    .honeycomb .hex-cell { grid-column: span 1; }
    .frame { padding: 40px 28px; }
    .frame-content { padding: 24px; }
    .reserve-action { flex-direction: column; align-items: flex-start; }
    .reserve-meta { grid-template-columns: 1fr; gap: 20px; }
    .footer-honeycomb { grid-template-columns: repeat(3, 1fr); }
    .footer-meta-row { flex-direction: column; align-items: flex-start; }
    .section-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
    .meta-num { font-size: 36px; }
    .meta-label { padding-top: 0; }
    .corridor-progress { left: 24px; right: 24px; }
    .corridor-steps { left: 24px; }
}

@media (max-width: 480px) {
    .honeycomb { grid-template-columns: 1fr; }
    .hero-wordmark { font-size: 72px; }
    .hero-tagline { font-size: 11px; }
    .hero-spec-row { flex-wrap: wrap; }
}
