/* =========================================================================
   Mapvitae Studio — Landing (versión Claude)
   Marca: Petróleo + Oro · Schibsted Grotesk · dark "otoño profundo"
   Tokens reales de context/brand-tokens/mapvitae.tokens.json (corporate/dark)
   ========================================================================= */

:root {
  --bg:            #0E1311;
  --bg-2:          #121715;
  --panel:         #1C2320;
  --surface-2:     #181E1C;
  --border:        #2B332F;
  --ink:           #F3ECDE;
  --muted:         #A4A595;
  --teal:          #2F8C82;
  --teal-deep:     #1F5A5E;
  --gold:          #C2A14D;
  --bronze:        #9C6B3F;
  --cta-ink:       #0E2522;

  --font: "Schibsted Grotesk", -apple-system, system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

::selection { background: var(--teal); color: var(--cta-ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
  display: inline-block;
}
h1, h2, h3 { font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }
.display {
  font-size: clamp(2.6rem, 9vw, 8.2rem);
  font-weight: 800; line-height: 0.94; letter-spacing: -0.035em;
}
.h2 { font-size: clamp(2rem, 5.2vw, 4.2rem); letter-spacing: -0.03em; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--muted); max-width: 46ch; }
.tnum { font-feature-settings: "tnum" 1; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(90px, 14vh, 200px); }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 38px; height: 38px; border: 1px solid var(--ink);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: var(--ink); }
.cursor.is-hover { width: 70px; height: 70px; background: rgba(243,236,222,0.12); border-color: transparent; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- Grain overlay ---------- */
#grain {
  position: fixed; inset: 0; z-index: 8500; pointer-events: none;
  opacity: 0.052; mix-blend-mode: screen;
  width: 100%; height: 100%;
  image-rendering: auto;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9000; background: var(--bg);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; }
.loader__ascii {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(11px, 1.6vw, 14px);
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: pre;
  min-height: 1.5em;
  line-height: 1.5;
}
.loader__label {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(164,165,149,0.4);
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
}
.loader.is-done { opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility .7s; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: difference;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.01em; }
.brand svg, .brand-mark { width: 26px; height: 26px; }
.nav { display: flex; gap: 30px; font-size: 14px; font-weight: 500; }
.nav a { position: relative; color: var(--ink); opacity: 0.8; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 820px) { .nav { display: none; } }

/* ---------- Hero ---------- */
.hero { height: 100svh; min-height: 640px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
/* #gl is now position:fixed via JS (persistent across all 5 acts).
   Fallback here for no-JS or reduced-motion: */
#gl { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.hero::after { /* vignette + grain feel */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 70% 30%, transparent 40%, rgba(14,19,17,0.55) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 8vh, 96px); }
.hero__title { margin: 18px 0 26px; }
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; will-change: transform; }
.hero__title .grad {
  background: linear-gradient(100deg, var(--ink) 30%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero__scroll { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); display: block; animation: drop 1.8s var(--ease-io) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Buttons ---------- */
.btn {
  --pad: 17px 30px;
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: var(--pad); border-radius: 100px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--border); background: var(--panel); color: var(--ink);
  overflow: hidden; isolation: isolate;
}
.btn--gold { background: var(--gold); color: var(--cta-ink); border-color: var(--gold); }
.btn--ghost { background: transparent; }
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0; background: var(--teal);
  transform: translateY(101%); transition: transform .5s var(--ease);
}
.btn--gold::before { background: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--cta-ink); border-color: transparent; }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--border); overflow: hidden; padding-block: 26px; background: var(--bg-2); }
.marquee__track { display: flex; gap: 60px; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span { font-size: clamp(1.4rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; color: var(--muted); display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after { content: "✦"; color: var(--gold); font-size: 0.7em; }

/* ---------- Generic reveal ---------- */
.reveal > * { will-change: transform, opacity; }
.split-line { display: block; overflow: hidden; }
.split-line > span { display: block; }

/* ---------- Manifesto ---------- */
.manifesto .big {
  font-size: clamp(1.7rem, 4.4vw, 3.6rem); font-weight: 600; line-height: 1.18; letter-spacing: -0.025em;
  max-width: 20ch;
}
.manifesto .big b { color: var(--teal); font-weight: 600; }
.manifesto .big em { color: var(--gold); font-style: normal; }

/* ---------- Pipeline — acordeón cinemático ---------- */
.pipeline { background: var(--bg-2); }
.accordion { display: flex; gap: 10px; height: 62vh; min-height: 460px; max-height: 680px; }
.accordion-panel {
  flex: 1; position: relative; border-radius: 18px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
  transition: flex 0.7s var(--ease);
}
.accordion-panel:hover, .accordion-panel.active { flex: 5; }
.panel-bg { position: absolute; inset: 0; transition: transform 0.7s var(--ease); background: linear-gradient(155deg, #143E41 0%, #0E1311 84%); }
.accordion-panel:hover .panel-bg, .accordion-panel.active .panel-bg { transform: scale(1.06); }
/* maduración petróleo → oro a través de las 5 fases (eco del color journey) */
.accordion-panel:nth-child(1) .panel-bg { background: linear-gradient(155deg, #143E41 0%, #0E1311 84%); }
.accordion-panel:nth-child(2) .panel-bg { background: linear-gradient(155deg, #1F5A5E 0%, #0E1311 84%); }
.accordion-panel:nth-child(3) .panel-bg { background: linear-gradient(155deg, #2F8C82 0%, #10201c 86%); }
.accordion-panel:nth-child(4) .panel-bg { background: linear-gradient(155deg, #7a6d34 0%, #100d08 86%); }
.accordion-panel:nth-child(5) .panel-bg { background: linear-gradient(155deg, #C2A14D 0%, #1a160c 88%); }
.panel-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(8,11,10,0.92) 0%, rgba(8,11,10,0.4) 46%, transparent 100%); }
.panel-title { position: absolute; bottom: 28px; left: 22px; z-index: 2; writing-mode: vertical-rl; text-orientation: mixed; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); transition: opacity .3s ease; white-space: nowrap; }
.accordion-panel:hover .panel-title, .accordion-panel.active .panel-title { opacity: 0; }
.panel-content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(26px, 2.4vw, 40px); z-index: 2; pointer-events: none; }
.panel-num { font-size: 12px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 10px; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all .45s var(--ease) .12s; }
.panel-h3 { font-size: clamp(1.5rem, 2.4vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; opacity: 0; transform: translateY(14px); transition: all .45s var(--ease) .17s; white-space: nowrap; }
.panel-desc { font-size: 1rem; color: rgba(243,236,222,0.72); line-height: 1.55; max-width: 46ch; opacity: 0; transform: translateY(14px); transition: all .45s var(--ease) .22s; }
.panel-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; opacity: 0; transform: translateY(14px); transition: all .45s var(--ease) .27s; }
.panel-tags i { font-style: normal; font-size: 12px; padding: 6px 12px; border: 1px solid rgba(243,236,222,0.25); border-radius: 100px; color: var(--ink); white-space: nowrap; }
.accordion-panel:hover .panel-num, .accordion-panel.active .panel-num,
.accordion-panel:hover .panel-h3, .accordion-panel.active .panel-h3,
.accordion-panel:hover .panel-desc, .accordion-panel.active .panel-desc,
.accordion-panel:hover .panel-tags, .accordion-panel.active .panel-tags { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .accordion { flex-direction: column; height: auto; min-height: 0; max-height: none; gap: 10px; }
  .accordion-panel { height: 76px; flex: none !important; transition: height 0.6s var(--ease); }
  .accordion-panel:hover, .accordion-panel.active { height: 300px; }
  .panel-title { writing-mode: horizontal-tb; bottom: auto; top: 24px; left: 24px; }
  .panel-h3 { white-space: normal; }
}
.pipeline__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; padding-bottom: 50px; }

/* ---------- Capability grid ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 60px; }
.cap {
  position: relative; border: 1px solid var(--border); border-radius: 18px; padding: 30px;
  background: var(--panel); overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.cap:hover { border-color: var(--teal); transform: translateY(-4px); }
.cap__glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(60px); opacity: 0; transition: opacity .5s; pointer-events: none; background: radial-gradient(circle, var(--teal), transparent 70%); }
.cap:hover .cap__glow { opacity: 0.4; }
.cap h3 { font-size: 1.5rem; }
.cap p { color: var(--muted); font-size: 0.98rem; margin-top: 8px; }
.cap__k { font-size: 12px; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }
.cap.col-6 { grid-column: span 6; }
.cap.col-4 { grid-column: span 4; }
.cap.col-8 { grid-column: span 8; }
.cap.tall { min-height: 320px; }
@media (max-width: 880px) { .cap.col-6, .cap.col-4, .cap.col-8 { grid-column: span 12; } }

/* ---------- Counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border-top: 1px solid var(--border); padding-top: 60px; margin-top: 80px; }
.stat .num { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.stat .num small { color: var(--gold); }
.stat .lbl { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Evidence ---------- */
.proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px; }
.proof__card {
  border: 1px solid var(--border); border-radius: 20px; padding: 36px; background: var(--panel);
  position: relative; overflow: hidden; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between;
}
.proof__card .k { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.proof__card h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 14px 0 10px; }
.proof__card p { color: var(--muted); }
.proof__card .live { position: absolute; top: 30px; right: 30px; font-size: 11px; color: var(--gold); display: flex; align-items: center; gap: 7px; }
.proof__card .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(194,161,77,.5); } 70% { box-shadow: 0 0 0 10px rgba(194,161,77,0); } 100% { box-shadow: 0 0 0 0 rgba(194,161,77,0); } }
@media (max-width: 720px) { .proof { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta .display { margin-bottom: 36px; }
.cta__sub { color: var(--muted); max-width: 40ch; margin: 0 auto 40px; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding-block: 50px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: 14px; }
.site-footer .dot { color: var(--teal); }


/* ---------- Progress Spine ---------- */
.progress-spine {
  position: fixed;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 700;
  pointer-events: none;
}
.spine__track {
  position: relative;
  width: 2px;
  height: clamp(120px, 20vh, 200px);
  background: var(--border);
  border-radius: 2px;
  overflow: visible;
}
.spine__bar {
  position: absolute;
  inset: 0;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform, background;
}
.spine__node {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  transform: translateX(-50%);
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}
.spine__node:nth-child(2) { top:  0%;  }
.spine__node:nth-child(3) { top: 25%;  }
.spine__node:nth-child(4) { top: 50%;  }
.spine__node:nth-child(5) { top: 75%;  }
.spine__node:nth-child(6) { top: 100%; }
.spine__node.is-lit {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  transform: translateX(-50%) scale(1.4);
}
.progress-spine.is-static .spine__bar {
  transform: scaleY(1);
  background: var(--teal);
}
@media (max-width: 600px) {
  /* Thinner spine on small screens, positioned top as bar */
  .progress-spine {
    right: auto;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
  }
  .spine__track {
    width: 100%;
    height: 2px;
    flex-direction: row;
  }
  .spine__bar {
    transform: scaleX(0);
    transform-origin: left center;
  }
  .spine__node {
    top: 50%;
    left: auto;
    transform: translateY(-50%);
  }
  .spine__node:nth-child(2) { left:  0%;  }
  .spine__node:nth-child(3) { left: 25%;  }
  .spine__node:nth-child(4) { left: 50%;  }
  .spine__node:nth-child(5) { left: 75%;  }
  .spine__node:nth-child(6) { left: 100%; }
}

/* ---------- Cap cards — Act 4 tilt 3D + glow ---------- */
.cap {
  transform-style: preserve-3d;
  will-change: transform;
}
/* Extended glow for act 4 — gold tint alongside teal */
.cap__glow {
  background: radial-gradient(circle, var(--teal) 0%, var(--gold) 60%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .cap:hover .cap__glow { opacity: 0.35; }
}
/* Disable hover lift — GSAP handles the tilt */
@media (hover: hover) and (min-width: 900px) {
  .cap:hover { transform: none; } /* Let GSAP manage transform entirely */
}

/* ---------- CTA — scrim oscuro para legibilidad sobre el organismo dorado ---------- */
#contacto { position: relative; }
#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(78% 64% at 50% 58%, rgba(8,11,10,0.88) 0%, rgba(8,11,10,0.58) 42%, transparent 84%);
}
#contacto .wrap { position: relative; z-index: 2; }

/* CTA liquid ripple */
#contacto .btn--gold {
  --ripple-x: 50%;
  --ripple-y: 50%;
  overflow: hidden;
}
#contacto .btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x) var(--ripple-y),
    rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
@media (hover: hover) {
  #contacto .btn--gold:hover::after { opacity: 1; }
}

/* ---------- Act 5 — Chromatic aberration (CSS layer) ---------- */
body.aberration-active {
  animation: aberrationGlitch 0.25s steps(2) forwards;
}
@keyframes aberrationGlitch {
  0%   { filter: none; }
  30%  { filter: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><filter id='f'><feColorMatrix type='matrix' values='1 0 0 0 0.03 0 1 0 0 0 0 0 1 0 -0.03 0 0 0 1 0'/></filter></svg>#f"); }
  60%  { filter: none; }
  100% { filter: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .hero__title .ln > span { transform: none !important; }
  .progress-spine { opacity: 0.4; }
}

/* ============================================================
   Floating dock + expanding menu (inspirado en fluid.glass)
   ============================================================ */
.dock {
  position: fixed; z-index: 850; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(160%); opacity: 0; pointer-events: none;
  display: flex; align-items: center; gap: 14px;
  padding: 9px 10px 9px 16px; border-radius: 100px;
  background: rgba(18,23,21,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border); box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  transition: transform .65s var(--ease), opacity .45s ease;
}
.dock.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.dock__brand { display: flex; }
.dock__brand img { width: 24px; height: 24px; display: block; }
.dock__label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); padding-inline: 4px; white-space: nowrap; }
.dock__toggle { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--panel); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.dock__toggle span { display: block; width: 18px; height: 1.6px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s ease; }
.dock.is-open .dock__toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.dock.is-open .dock__toggle span:nth-child(2) { opacity: 0; }
.dock.is-open .dock__toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
@media (max-width: 600px) { .dock__label { display: none; } }

.dock-backdrop {
  position: fixed; inset: 0; z-index: 840; pointer-events: none;
  background: rgba(8,11,10,0.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .5s var(--ease);
}
.dock-backdrop.is-open { opacity: 1; pointer-events: auto; }

.dock-menu {
  position: fixed; z-index: 845; left: 50%; bottom: 88px; width: min(90vw, 440px);
  max-height: min(72vh, 560px);
  transform: translateX(-50%) translateY(26px) scale(0.96); transform-origin: bottom center;
  opacity: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(28,35,32,0.97), rgba(14,19,17,0.98));
  border: 1px solid var(--border); border-radius: 22px; padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6); overflow: hidden;
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.dock-menu.is-open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }
.dock-menu__watermark {
  position: absolute; left: -4%; bottom: -10%; font-weight: 800; letter-spacing: -0.05em;
  font-size: clamp(7rem, 20vw, 15rem); line-height: 0.8; color: rgba(243,236,222,0.045);
  pointer-events: none; user-select: none;
}
.dock-menu__inner { position: relative; z-index: 1; }
.dock-menu__links { list-style: none; margin: 20px 0 0; }
.dock-menu__links li { overflow: hidden; }
.dock-menu__links a {
  display: inline-block; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.32; color: var(--ink);
  transform: translateY(115%); transition: transform .6s var(--ease), color .3s ease;
}
.dock-menu.is-open .dock-menu__links a { transform: translateY(0); }
.dock-menu__links li:nth-child(1) a { transition-delay: .10s; }
.dock-menu__links li:nth-child(2) a { transition-delay: .16s; }
.dock-menu__links li:nth-child(3) a { transition-delay: .22s; }
.dock-menu__links li:nth-child(4) a { transition-delay: .28s; }
.dock-menu__links a:hover { color: var(--gold); }
.dock-menu__meta { display: flex; flex-direction: column; gap: 4px; margin-top: 26px; color: var(--muted); font-size: 0.95rem; }
.dock-menu__meta a { color: var(--teal); }
.dock-menu__meta a:hover { color: var(--gold); }
.dock-menu__cta { margin-top: 24px; width: 100%; justify-content: center; }
