/* Captain's Numbers landing — design tokens aligned with components/marketing/marketing.css */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter+Tight:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #05070b;
  --abyss: #070a12;
  --midnight: #0a1020;
  --navy: #0f1830;
  --tide: #162548;
  --rim: rgba(255, 255, 255, 0.06);
  --rim-2: rgba(255, 255, 255, 0.1);
  --rim-3: rgba(255, 255, 255, 0.18);
  --gold-deep: #9a7a2c;
  --gold: #c9a05a;
  --gold-bright: #e8c98a;
  --gold-pale: #f4e4be;
  --copper: #b8693f;
  --emerald: #3a8b6f;
  --pearl: #d8c9a6;
  --t1: rgba(247, 243, 232, 0.96);
  --t2: rgba(232, 224, 206, 0.62);
  --t3: rgba(232, 224, 206, 0.36);
  --t4: rgba(232, 224, 206, 0.18);
  --sky: #87c4e8;
  --sea: #2d6f88;
  --sea-deep: #1a5268;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 400;
  background: var(--ink);
  color: var(--t1);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Atmosphere */
.atmos-noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

.atmos-vignette {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

/* Type */
.serif { font-family: Fraunces, serif; font-feature-settings: "ss01"; }
.mono { font-family: "JetBrains Mono", monospace; }

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1.display,
h2.display {
  font-family: Fraunces, serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 0.96;
  color: var(--t1);
}

h1.display { font-size: clamp(3rem, 6.5vw, 5.5rem); margin-bottom: 2rem; }
h1.display .line { display: block; }

h1.display em,
h2.display em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2.display { font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 1.4rem; }

.lede {
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--t2);
  font-weight: 400;
  max-width: 42ch;
  letter-spacing: -0.005em;
}

.lede strong { color: var(--t1); font-weight: 500; }

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

html.reveal-ready .reveal:not(.in) {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.in { opacity: 1; transform: none; }
.r-d1 { transition-delay: 0.12s; }
.r-d2 { transition-delay: 0.24s; }
.r-d3 { transition-delay: 0.36s; }

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.6rem);
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-color 0.6s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--rim);
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.captains-words-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.captains-words-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  background: transparent;
}

.nav-product {
  font-family: Fraunces, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--t2);
  letter-spacing: 0.01em;
  padding-left: 1.25rem;
  border-left: 1px solid var(--rim-2);
}

.nav-product strong {
  color: var(--t1);
  font-weight: 500;
}

.nav-product em {
  font-style: italic;
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover { color: var(--t1); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-play {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 100%);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.nav-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 28px -8px rgba(201, 160, 90, 0.45);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 1rem 1.7rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 12px 30px -8px rgba(201, 160, 90, 0.4);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 50%);
  opacity: 0.6;
}

.btn-primary span,
.btn-primary svg { position: relative; z-index: 1; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 18px 40px -8px rgba(201, 160, 90, 0.55);
}

.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

.btn-ghost {
  color: var(--t1);
  background: transparent;
  border: 1px solid var(--rim-3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem clamp(1.25rem, 4vw, 2.6rem) 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-atmos .layer { position: absolute; inset: 0; }

.atmos-base {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(22, 37, 72, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 80%, rgba(154, 122, 44, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(15, 24, 48, 0.9) 0%, transparent 70%),
    var(--ink);
}

.atmos-contours {
  background-image:
    radial-gradient(ellipse 90% 60% at 75% 75%, transparent 0, transparent 28%, rgba(201, 160, 90, 0.04) 28%, rgba(201, 160, 90, 0.04) 28.4%, transparent 28.4%),
    radial-gradient(ellipse 90% 60% at 75% 75%, transparent 0, transparent 35%, rgba(201, 160, 90, 0.05) 35%, rgba(201, 160, 90, 0.05) 35.4%, transparent 35.4%),
    radial-gradient(ellipse 90% 60% at 75% 75%, transparent 0, transparent 44%, rgba(201, 160, 90, 0.06) 44%, rgba(201, 160, 90, 0.06) 44.4%, transparent 44.4%);
  opacity: 0.7;
}

.atmos-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
}

.particles { position: absolute; inset: 0; overflow: hidden; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: drift var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: var(--op); }
  50% { transform: translate(var(--tx), var(--ty)); opacity: calc(var(--op) * 0.25); }
}

.compass-ghost {
  position: absolute;
  right: -20vw;
  bottom: -30vh;
  width: 90vw;
  height: 90vw;
  max-width: 1400px;
  max-height: 1400px;
  opacity: 0.06;
  animation: spin 240s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 160, 90, 0.4) 30%, rgba(201, 160, 90, 0.5) 50%, rgba(201, 160, 90, 0.4) 70%, transparent 100%);
}

.horizon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(201, 160, 90, 0.04));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.8rem 0.45rem 0.55rem;
  background: rgba(201, 160, 90, 0.06);
  border: 1px solid rgba(201, 160, 90, 0.18);
  border-radius: 999px;
  margin-bottom: 2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-kicker .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-sub {
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--t2);
  max-width: 48ch;
  margin-bottom: 2.6rem;
}

.hero-sub strong { color: var(--t1); font-weight: 500; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--rim);
}

.trust {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.trust + .trust {
  padding-left: 1.4rem;
  border-left: 1px solid var(--rim);
}

.trust-glyph {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-top: 0.1rem;
}

.trust-glyph svg { width: 18px; height: 18px; }

.trust-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--t2);
}

.trust-text strong {
  color: var(--t1);
  font-weight: 500;
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

/* Product frame */
.hero-frame { position: relative; }

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(22, 37, 72, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 160, 90, 0.18) 0%, transparent 65%);
  filter: blur(40px);
}

.product-frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0d1426 0%, #070a14 100%);
  border: 1px solid var(--rim-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 60px 120px -30px rgba(22, 37, 72, 0.5);
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(7, 10, 18, 0.6);
  border-bottom: 1px solid var(--rim);
}

.frame-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.frame-url {
  margin-left: 0.7rem;
  flex: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.frame-url .lock { color: var(--emerald); flex-shrink: 0; }

.plank-float { animation: plank-bob 3s ease-in-out infinite; }
.plank-float.d2 { animation-duration: 3.5s; animation-delay: 0.4s; }
.plank-float.d3 { animation-duration: 4s; animation-delay: 0.8s; }

@keyframes plank-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.game-scene {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, #5a9fc4 0%, var(--sky) 35%, #b8dff0 55%, var(--sea) 72%, var(--sea-deep) 100%);
}

.game-scene-sea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, var(--sea) 0%, var(--sea-deep) 100%);
}

.game-scene-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath fill='%232d6f88' d='M0 10 Q150 0 300 10 T600 10 T900 10 T1200 10 V20 H0Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 500px 14px;
  animation: wave-drift 10s linear infinite;
}

@keyframes wave-drift {
  to { background-position-x: 500px; }
}

.scene-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(5, 7, 11, 0.65);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 160, 90, 0.25);
}

.bridge-wrap {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 420px;
  z-index: 2;
}

.frame-caption {
  padding: 0.85rem 1rem;
  font-size: 0.72rem;
  color: var(--t3);
  border-top: 1px solid var(--rim);
  background: rgba(7, 10, 18, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.frame-caption strong { color: var(--t2); font-weight: 500; }

/* Sections */
.section {
  padding: 8rem clamp(1.25rem, 4vw, 2.6rem);
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.how-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 24, 48, 0.5) 0%, rgba(7, 10, 18, 0.5) 100%);
  border: 1px solid var(--rim);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s;
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: var(--rim-2);
}

.how-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.how-card:hover::before { opacity: 1; }

.how-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.how-card h3 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--t1);
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.how-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--t2);
}

.quote-panel {
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  border: 1px solid var(--rim-2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 24, 48, 0.55) 0%, rgba(7, 10, 18, 0.75) 100%);
  box-shadow: 0 30px 90px -50px rgba(0, 0, 0, 0.9);
}

.quote-panel blockquote {
  font-family: Fraunces, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--gold-pale);
  letter-spacing: -0.02em;
}

.quote-panel cite {
  display: block;
  margin-top: 1.25rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  font-style: normal;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.5rem;
  list-style: none;
}

.pill-row li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--t2);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--rim);
  background: rgba(255, 255, 255, 0.03);
}

/* Feature */
.how-feature {
  margin-top: 3rem;
  background: linear-gradient(180deg, #0a1020 0%, #050810 100%);
  border: 1px solid var(--rim-2);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.how-feature-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(22, 37, 72, 0.7) 0%, transparent 70%),
    linear-gradient(180deg, #0a1226 0%, #050810 100%);
}

.how-feature-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 2.8rem clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hf-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hf-title {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--t1);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hf-title em {
  color: var(--gold-bright);
  font-style: italic;
}

.hf-sub {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--t2);
  max-width: 34ch;
}

.activity-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.activity-step {
  text-align: center;
  padding: 1rem 0.5rem;
  border: 1px solid var(--rim);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s, transform 0.35s;
}

.activity-step:hover {
  border-color: rgba(201, 160, 90, 0.35);
  transform: translateY(-2px);
}

.activity-step .step-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.activity-step .step-name {
  font-family: Fraunces, serif;
  font-size: 1rem;
  color: var(--t1);
}

/* Family tiers */
.tier-list { margin-top: 2rem; }

.tier {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rim);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tier:first-child { border-top: 1px solid var(--rim); }

a.tier:hover { padding-left: 0.6rem; }

.tier.locked {
  opacity: 0.45;
  pointer-events: none;
}

.tier-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--rim-2);
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 160, 90, 0.04);
  font-family: Fraunces, serif;
  font-size: 1.1rem;
}

.tier h3 {
  font-family: Fraunces, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.tier p {
  font-size: 0.84rem;
  color: var(--t2);
  line-height: 1.45;
}

.tier-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-badge.live {
  color: #7ec4a8;
  background: rgba(58, 139, 111, 0.18);
  border: 1px solid rgba(58, 139, 111, 0.35);
}

.tier-badge.soon {
  color: var(--gold-bright);
  background: rgba(201, 160, 90, 0.1);
  border: 1px solid rgba(201, 160, 90, 0.28);
}

.tier-badge.future {
  color: var(--t3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rim);
}

/* Footer */
footer {
  background: #030508;
  border-top: 1px solid var(--rim);
  padding: 4rem clamp(1.25rem, 4vw, 2.6rem) 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .captains-words-logo { height: 2rem; }

.footer-brand p {
  max-width: 28ch;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--t2);
}

.footer-brand a,
.footer-links a {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--t3);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-brand a:hover,
.footer-links a:hover { color: var(--gold-bright); }

.footer-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-section h2 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--rim);
  padding-top: 1.4rem;
  font-size: 0.72rem;
  color: var(--t3);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-frame { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .section-header { grid-template-columns: 1fr; }
  .how-feature-content { grid-template-columns: 1fr; }
  .activity-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-product { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust + .trust { padding-left: 0; border-left: none; padding-top: 1rem; border-top: 1px solid var(--rim); }
  .how-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-sections { grid-template-columns: 1fr 1fr; }
  .tier { grid-template-columns: auto 1fr; }
  .tier-badge { grid-column: 2; justify-self: start; margin-top: 0.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  .particle,
  .compass-ghost,
  .game-scene-wave,
  .hero-kicker .pip,
  .plank-float { animation: none; }
  html.reveal-ready .reveal:not(.in) { opacity: 1; transform: none; }
}

.btn:focus-visible,
.nav-link:focus-visible,
.nav-play:focus-visible,
a.tier:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
