/* ============================================================
   BÖRSEN-LOGIK · Remake 2026
   Dark editorial finance · scroll-snap · motion
   ============================================================ */

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

:root {
  /* Palette — warmer, deeper than original; copper, not yellow-gold */
  --bg:        #0a121e;          /* deep navy-black */
  --bg-2:      #0f1a2a;          /* surface */
  --bg-3:      #15243a;          /* elevated */
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  --ink:       #f6f1e7;          /* warm cream */
  --ink-2:     rgba(246,241,231,0.72);
  --ink-3:     rgba(246,241,231,0.45);

  --copper:    #d49b73;          /* logo accent */
  --copper-2:  #e8b894;
  --copper-dk: #a4734f;

  --green:     oklch(0.78 0.13 150);
  --red:       oklch(0.72 0.18 25);

  /* Type */
  --f-serif:   "Instrument Serif", "Times New Roman", serif;
  --f-sans:    "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* Layout */
  --max-w:     1240px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --nav-h:     64px;
  --radius:    14px;
  --radius-sm: 8px;

  /* Motion */
  --ease:      cubic-bezier(.2,.7,.2,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --dur:       .55s;
}

html {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  /* Subtle radial glow */
  background-image:
    radial-gradient(1200px 800px at 80% -10%, rgba(212,155,115,0.10), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(212,155,115,0.06), transparent 55%);
  background-attachment: fixed;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul  { list-style: none; }

::selection { background: var(--copper); color: #0a121e; }

/* ════════════════════════════════════════════════════════════
   Scroll-Snap container
═══════════════════════════════════════════════════════════════ */
.shell {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.shell::-webkit-scrollbar { display: none; }

.snap {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* On taller content, ease snap so users can still scroll within */
.snap--flex {
  scroll-snap-stop: normal;
}

/* ════════════════════════════════════════════════════════════
   Reveal on enter
═══════════════════════════════════════════════════════════════ */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.r.in { opacity: 1; transform: none; }

.r-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.r-mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.in .r-mask > span,
.r-mask.in > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .r, .r-mask > span { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: backdrop-filter .3s, background .3s;
}
.nav::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,30,0.7), rgba(10,18,30,0));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.nav.is-scrolled::before { opacity: 1; }
.nav.is-scrolled { backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); }

.nav__inner {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand__mark {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand__mark img { width: 90%; height: 90%; object-fit: contain; }

.brand__sep {
  width: 1px; height: 16px; background: var(--line-2);
  margin: 0 .15rem;
}

.brand__tag {
  color: var(--copper);
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  position: relative;
  padding: .55rem .9rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__link::before {
  content: "";
  position: absolute;
  left: .9rem; right: .9rem;
  bottom: .35rem;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::before,
.nav__link.is-active::before { transform: scaleX(1); }
.nav__link.is-active { color: var(--copper); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .95rem .55rem 1.1rem;
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--copper);
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--copper-2); transform: translateY(-1px); }
.nav__cta svg { transition: transform .25s; }
.nav__cta:hover svg { transform: translateX(2px); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  align-items: center; justify-content: center;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 24px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   PROGRESS RAIL (right edge dots)
═══════════════════════════════════════════════════════════════ */
.rail {
  position: fixed;
  right: max(.6rem, calc((100vw - var(--max-w))/2 - 1.6rem));
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  pointer-events: auto;
}
.rail__dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  position: relative;
}
.rail__dot::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s, transform .3s var(--ease);
  pointer-events: none;
}
.rail__dot:hover::after,
.rail__dot.is-active::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.rail__dot:hover { background: var(--ink-2); }
.rail__dot.is-active {
  background: var(--copper);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: .45;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem .75rem .35rem .55rem;
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 0 rgba(212,155,115,0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,155,115,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(212,155,115,0); }
}

.hero__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.hero__title em {
  font-style: italic;
  color: var(--copper);
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0 .08em .15em;
  margin: 0 -.08em -.15em;
  line-height: 1;
}
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0s);
  padding-bottom: .02em;
}
.hero.in .hero__title .word > span { transform: none; }

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-2);
  max-width: 36ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero__chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2.2rem;
}
.chip {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: .35rem .7rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.chip__dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  margin-right: .5rem;
  vertical-align: middle;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: .8rem;
}

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--copper);
  color: #0a121e;
}
.btn--primary:hover { background: var(--copper-2); transform: translateY(-2px); }

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper); }

.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

/* Hero visual — animated chart card */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(212,155,115,0.07), rgba(255,255,255,0.01) 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__card::after {
  /* shimmer */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232,184,148,0.10) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 7s var(--ease) infinite;
  pointer-events: none;
}
@keyframes shimmer { 0%,55% { transform: translateX(-100%);} 100% { transform: translateX(100%);} }

.hero__card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.2rem 1.3rem .6rem;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 2;
}
.hero__card-label {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__card-ticker {
  font-family: var(--f-mono);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .08em;
}
.hero__card-headline {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  margin-top: .4rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.hero__card-chart {
  flex: 1;
  position: relative;
  padding: 1rem;
  overflow: hidden;
}
.hero__card-chart svg { width: 100%; height: 100%; display: block; }
.line-stroke {
  fill: none;
  stroke: var(--copper);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: draw 3.2s var(--ease-out) .6s forwards;
  filter: drop-shadow(0 0 12px rgba(212,155,115,0.45));
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.line-fill {
  fill: url(#g-fill);
  opacity: 0;
  animation: fade 1.2s ease-out 2.2s forwards;
}
@keyframes fade { to { opacity: 1; } }

.dot-end {
  fill: var(--copper);
  filter: drop-shadow(0 0 6px var(--copper));
  opacity: 0;
  animation: fade 0.4s ease-out 3.4s forwards;
}
.dot-end-pulse {
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  animation: dotpulse 2.2s var(--ease) 3.4s infinite;
}
@keyframes dotpulse {
  0% { opacity: .8; r: 4; }
  100% { opacity: 0; r: 18; }
}

.hero__card-foot {
  display: flex; justify-content: space-between;
  padding: .7rem 1.3rem 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  position: relative; z-index: 2;
}

/* Floating mini-card */
.hero__chip-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  display: flex; flex-direction: column; gap: .15rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  animation: float 6s var(--ease) infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.hero__chip-num {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--copper);
}
.hero__chip-label {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Ticker bar at hero bottom */
.ticker-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(10,18,30,0.5);
  backdrop-filter: blur(8px);
}
.ticker-bar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  padding: .85rem 0;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-bar__item { display: inline-flex; align-items: center; gap: .6rem; }
.ticker-bar__item .up { color: var(--green); }
.ticker-bar__item .down { color: var(--red); }
.ticker-bar__sep { color: var(--ink-3); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════════════════════ */
.section {
  padding: calc(var(--nav-h) + 2.2rem) var(--gutter) 3rem;
}
.section__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.section__num {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: .8rem;
}
.section__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title em { color: var(--copper); font-style: italic; }
.section__desc {
  color: var(--ink-2);
  max-width: 38ch;
  font-size: 1rem;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   PODCAST / VIDEO GRID
═══════════════════════════════════════════════════════════════ */
.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  flex: 1;
  align-content: start;
}
.feed-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .25s, background .25s;
}
.feed-card:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  background: var(--bg-3);
}
.feed-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-3);
}
.feed-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.feed-card:hover .feed-card__thumb img { transform: scale(1.05); }
.feed-card__play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(10,18,30,0) 50%, rgba(10,18,30,0.7));
  opacity: 0;
  transition: opacity .25s;
}
.feed-card:hover .feed-card__play { opacity: 1; }
.feed-card__play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--copper);
  color: #0a121e;
  display: grid; place-items: center;
  transform: scale(.8);
  transition: transform .35s var(--ease-out);
}
.feed-card:hover .feed-card__play-btn { transform: scale(1); }

.feed-card__body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex; flex-direction: column;
  gap: .7rem;
  flex: 1;
}
.feed-card__meta {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.feed-card__num {
  color: var(--copper);
  font-weight: 600;
}
.feed-card__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -.01em;
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-card__actions {
  display: flex; gap: .5rem;
  margin-top: auto;
  padding-top: .6rem;
}
.feed-card__action {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: all .25s;
}
.feed-card__action:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.feed-card.is-skel .feed-card__thumb {
  background: linear-gradient(90deg, var(--bg-2), var(--bg-3), var(--bg-2));
  background-size: 200% 100%;
  animation: skel 1.6s linear infinite;
}
.feed-card.is-skel .feed-card__title {
  background: var(--bg-3); height: 1em; border-radius: 4px; color: transparent;
}
@keyframes skel { to { background-position: -200% 0; } }

.feed-empty {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
}

/* ════════════════════════════════════════════════════════════
   VALUES
═══════════════════════════════════════════════════════════════ */
.values-section { justify-content: center; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.value {
  position: relative;
  padding: 2rem 1.6rem;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .25s;
}
.value:hover { transform: translateY(-4px); border-color: var(--copper); }

.value__num {
  font-family: var(--f-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--copper);
  opacity: .35;
  font-feature-settings: "tnum";
  margin-bottom: 1.4rem;
}
.value__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.value__title em { color: var(--copper); font-style: italic; }
.value__text {
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.65;
}
.value::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.value:hover::after { transform: scaleX(1); }

/* ════════════════════════════════════════════════════════════
   CTA / FOOTER (combined snap section)
═══════════════════════════════════════════════════════════════ */
.outro {
  justify-content: space-between;
  padding-top: calc(var(--nav-h) + 1.5rem);
  position: relative;
  overflow: hidden;
}

.outro__inner { position: relative; z-index: 1; }

.outro__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.outro__cta {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 3rem;
}
.outro__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.outro__title em { color: var(--copper); font-style: italic; }
.outro__sub {
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 2rem;
}

.platforms {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.platform {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.4rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all .25s;
}
.platform:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-2px);
}
.platform svg { width: 18px; height: 18px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 1.2rem;
}
.footer__row {
  display: flex; flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__brand {
  display: flex; align-items: center; gap: .6rem;
  color: var(--ink-2);
  font-weight: 600;
}
.footer__brand img { width: 22px; height: 22px; object-fit: contain; }
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
}
.footer__nav a { transition: color .2s; }
.footer__nav a:hover { color: var(--copper); }
.footer__copy { color: var(--ink-3); }

/* ════════════════════════════════════════════════════════════
   SCROLL HINT
═══════════════════════════════════════════════════════════════ */
.scroll-hint {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .55rem;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  pointer-events: none;
}
.scroll-hint__line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-hint__line::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--copper);
  animation: drip 1.8s var(--ease) infinite;
}
@keyframes drip {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* ════════════════════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .brand__sep, .brand__tag { display: none; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .feed { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .rail { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Full-screen mobile drawer */
  .nav.is-open::before { opacity: 1; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    padding: 1.5rem var(--gutter) 2rem;
    background: rgba(10,18,30,0.96);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-top: 1px solid var(--line);
    animation: drawerIn .35s var(--ease-out) both;
    overflow-y: auto;
  }
  @keyframes drawerIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
  }
  .nav.is-open .nav__link {
    padding: 1.1rem 1rem;
    text-align: left;
    font-size: 1rem;
    letter-spacing: .14em;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav.is-open .nav__link::before {
    left: 1rem; right: auto;
    bottom: auto; top: 50%;
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    width: 3px; height: 60%;
  }
  .nav.is-open .nav__link.is-active::before,
  .nav.is-open .nav__link:hover::before {
    transform: translateY(-50%) scaleY(1);
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    margin-top: 1.2rem;
    justify-content: center;
    padding: 1.05rem 1.4rem;
    font-size: .82rem;
    align-self: stretch;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 60px;
    --gutter: 1.25rem;
  }

  /* Disable hard scroll-snap on phones — momentum scrolling feels right */
  .shell {
    scroll-snap-type: none;
    height: auto;
    min-height: 100svh;
    overflow-y: visible;
  }
  html, body { overflow-x: hidden; }
  body { overflow-y: auto; }
  .snap { min-height: auto; }

  .hero {
    padding: calc(var(--nav-h) + 2rem) var(--gutter) 3.5rem;
    min-height: 100svh;
    justify-content: center;
  }
  .hero__title { margin-bottom: 1.1rem; }
  .hero__sub   { font-size: 1.02rem; margin-bottom: 1.4rem; max-width: 100%; }
  .hero__chips { margin-bottom: 1.6rem; gap: .4rem; }
  .chip { font-size: .62rem; padding: .35rem .65rem; }

  .hero__ctas { gap: .6rem; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; padding: 1.05rem 1.2rem; }

  .hero__visual { max-width: 100%; aspect-ratio: 16 / 11; margin-top: .5rem; }
  .hero__card-head { padding: 1rem 1.1rem .55rem; }
  .hero__card-headline { font-size: 1.4rem; }
  .hero__card-foot { padding: .65rem 1.1rem .85rem; font-size: .6rem; gap: .35rem; flex-wrap: wrap; }

  .ticker-bar { display: none; }
  .scroll-hint { display: none; }

  /* Sections */
  .section { padding: 4.5rem var(--gutter) 3rem; }
  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.1rem;
  }
  .section__desc { font-size: .95rem; }

  /* Feed cards */
  .feed { grid-template-columns: 1fr; gap: .9rem; }
  .feed-card__body { padding: .9rem 1rem 1rem; gap: .55rem; }
  .feed-card__title { font-size: 1rem; -webkit-line-clamp: 2; }
  .feed-card__action { padding: .55rem .8rem; }

  /* Values */
  .value { padding: 1.6rem 1.3rem; }
  .value__num { font-size: 3rem; margin-bottom: 1rem; }
  .value__title { font-size: 1.45rem; }
  .value__text { font-size: .92rem; }

  /* Outro */
  .outro { padding: 4rem var(--gutter) 1.5rem; }
  .outro__inner { padding: 0; }
  .outro__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .outro__sub { font-size: .98rem; padding: 0 .5rem; }
  .platforms { width: 100%; }
  .platform {
    flex: 1 1 100%;
    justify-content: center;
    padding: 1.05rem 1.4rem;
    font-size: .78rem;
  }

  /* Footer */
  .footer { margin-top: 1rem; }
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .footer__nav { gap: 1rem .9rem; }

  /* Nav refinements */
  .nav__toggle { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .feed-card__thumb { aspect-ratio: 16 / 10; }
  .hero__card-head { padding: .9rem 1rem .5rem; }
  .hero__card-headline { font-size: 1.25rem; }
  .hero__card-label { font-size: .6rem; }
  .hero__card-ticker { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}
