/* ============================================================
   shuckerVC — Interactive Website
   Tokens sourced from the shuckerVC Design System.
   ============================================================ */
:root {
  /* Gold */
  --gold-100: #fff6da;
  --gold-300: #ffda6f;
  --gold-400: #ffcd3c;   /* primary accent */
  --gold-500: #ffc009;   /* deep amber */
  --gold-600: #d99e00;
  --gold-deep: #b97e00;
  --gold-text: #8a6400;

  /* Ink / warm neutrals */
  --ink-900: #111111;
  --ink-700: #2a2a2a;
  --ink-600: #3d3b37;
  --ink-4a:  #4a463f;
  --gray-500: #6f6a61;
  --gray-400: #938d82;
  --gray-300: #c4bdb1;
  --border:  #e6e2d9;
  --hairline: #ddd6c8;
  --gray-100: #f4f1ea;
  --gray-50:  #faf8f2;
  --white:   #ffffff;

  /* Accent (teal) — matches design-system palette */
  --teal-600: #00b49b;   /* preferred teal accent */
  --teal-400: #00eed1;
  --teal-300: #4ff4e0;
  --teal-100: #e3f1ee;   /* site-only pale wash (no DS counterpart) */

  /* Type */
  --font-display: 'Alice', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;

  /* Shadows — warm-tinted, matches design-system scale */
  --shadow-sm: 0 2px 8px rgba(17,17,17,0.06);
  --shadow-md: 0 8px 24px rgba(17,17,17,0.08);
  --shadow-lg: 0 18px 48px rgba(17,17,17,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gray-50);
  font-family: var(--font-sans);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
::selection { background: var(--gold-300); color: var(--ink-900); }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Eyebrows ---------- */
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--hero { font-size: 13px; color: var(--gold-400); }
.eyebrow--gold { font-size: 12px; letter-spacing: .12em; color: var(--gold-deep); }
.eyebrow--mark {
  display: inline-flex; align-items: center; gap: 11px;
  letter-spacing: .18em;
}
.eyebrow-dash { width: 28px; height: 3px; border-radius: 3px; background: var(--gold-500); }

/* ---------- Headings / leads ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  color: var(--ink-900);
  margin: 18px 0 0;
  text-wrap: balance;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 26px 0 0;
}
.mw-16 { max-width: 16ch; }
.mw-18 { max-width: 18ch; }
.mw-20 { max-width: 20ch; }
.mw-60 { max-width: 60ch; }
.mw-64 { max-width: 64ch; }

/* ---------- Section rhythm ---------- */
.sv-sec { padding: 110px 0; scroll-margin-top: 80px; }
.sec--cream { background: var(--gray-50); }
.sec--white { background: var(--white); }
.sec--warm  { background: var(--gray-100); }
.sec--gold  { background: var(--gold-400); position: relative; overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; text-decoration: none;
  font-family: var(--font-sans);
  transition: transform .25s var(--ease-out), background .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.btn--lg { height: 54px; padding: 0 30px; font-size: 16px; }
.btn--gold { background: var(--gold-400); color: var(--ink-900); box-shadow: 0 10px 34px rgba(255,192,9,0.4); }
.btn--ghost { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.28); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--ink { height: 56px; padding: 0 34px; background: var(--ink-900); color: #fff; box-shadow: 0 12px 30px rgba(17,17,17,0.28); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: 72px; z-index: 100;
  display: flex; align-items: center; padding: 0 32px;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.is-scrolled {
  background: rgba(250,248,242,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(17,17,17,0.06);
}
.nav-logo { position: relative; display: inline-flex; align-items: center; height: 40px; width: 230px; }
.nav-logo img { position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 36px; transition: opacity .35s ease; }
.nav-logo [data-logo="color"] { opacity: 0; }
.nav.is-scrolled .nav-logo [data-logo="white"] { opacity: 0; }
.nav.is-scrolled .nav-logo [data-logo="color"] { opacity: 1; }

.nav-links { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav-links a[data-navlink] {
  font-size: 14px; font-weight: 700; letter-spacing: .01em; text-decoration: none;
  color: rgba(255,255,255,0.86); transition: color .35s ease, opacity .2s ease;
}
.nav-links a[data-navlink]:hover { opacity: .7; }
.nav.is-scrolled .nav-links a[data-navlink] { color: var(--ink-700); }
.nav-cta {
  display: inline-flex; align-items: center; height: 42px; padding: 0 22px;
  border-radius: 999px; background: var(--gold-400); color: var(--ink-900);
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,192,9,0.35);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
  will-change: transform;
}
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span[data-navicon] { display: block; width: 24px; height: 2px; border-radius: 2px; background: #fff; transition: background .35s ease; }
.nav.is-scrolled .nav-toggle span[data-navicon] { background: var(--ink-700); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: radial-gradient(120% 90% at 70% 40%, #1b1a17 0%, #111111 55%, #0c0c0b 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,10,9,0.82) 0%, rgba(10,10,9,0.45) 38%, rgba(10,10,9,0) 64%);
}
.hero-wrap {
  position: relative; padding: 150px 32px 64px; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem); line-height: 1.06; letter-spacing: -0.01em;
  color: #fff; max-width: 16ch; margin: 22px 0 0; text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.6;
  color: rgba(255,255,255,0.72); max-width: 56ch; margin: 26px 0 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; margin-top: 64px; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1; color: #fff; }
.stat-num--gold { color: var(--gold-400); }
.stat-label { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4);
}
.hero-scroll span:first-child { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0)); }

/* cursor spotlight */
.sv-spot {
  position: fixed; top: 0; left: 0; width: 620px; height: 620px; margin: -310px 0 0 -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,205,60,0.22), rgba(255,205,60,0) 62%);
  mix-blend-mode: screen; pointer-events: none; z-index: 90; opacity: 0; will-change: transform;
}

/* ============================================================
   STRATEGY
   ============================================================ */
.strat-look { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--border); }
.strat-look-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.strat-look-words { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.75rem); line-height: 1.5; color: #1a1a1a; }
.strat-look-words .slash { color: var(--gold-500); margin: 0 14px; }

/* ============================================================
   FOUNDER FOCUS
   ============================================================ */
.focus-intro { max-width: 760px; margin-top: 24px; }
.focus-intro .h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.12; }
.focus-intro .lead { font-size: 1.08rem; line-height: 1.65; margin-top: 22px; }

.focus-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px); align-items: start; margin-top: 64px;
}
.focus-timeline { position: relative; padding-left: 46px; }
.focus-rail {
  position: absolute; left: 11px; top: 8px; bottom: 8px; width: 3px;
  background: #e6e0d3; border-radius: 3px; overflow: hidden;
}
.focus-rail span { display: block; width: 100%; height: 0%; background: var(--gold-400); transition: height .15s linear; }
.focus-step { min-height: 300px; position: relative; opacity: .5; transition: opacity .4s ease; }
.focus-dot {
  position: absolute; left: -46px; top: 4px; width: 25px; height: 25px; border-radius: 50%;
  background: #fff; border: 3px solid #e6e0d3; transition: background .3s ease, border-color .3s ease;
}
.focus-num { font-family: var(--font-display); font-size: 24px; color: var(--gray-300); transition: color .3s ease; }
.focus-step-title { font-size: clamp(1.3rem, 2vw, 1.55rem); font-weight: 700; margin: 8px 0 12px; color: var(--ink-900); }
.focus-step-body { font-size: 15px; line-height: 1.66; color: var(--gray-500); margin: 0; max-width: 420px; }
.focus-tag-wrap { margin-top: 16px; }
.focus-tag {
  display: inline-flex; align-items: center; gap: 7px; height: 28px; padding: 0 13px;
  border-radius: 999px; background: var(--gold-100); color: var(--gold-text); font-size: 12px; font-weight: 700;
}
.focus-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

.focus-aside { position: sticky; top: 100px; align-self: start; }
.video-frame {
  position: relative; width: 100%; max-width: 348px; margin: 0 auto;
  aspect-ratio: 1384 / 2460; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(17,17,17,0.2); background: #000;
}
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-cap { margin: 20px auto 0; max-width: 348px; display: flex; align-items: center; gap: 12px; }
.video-cap-title { font-size: 15px; font-weight: 700; color: var(--ink-900); }

.focus-hiw { margin-top: 80px; padding-top: 48px; border-top: 1px solid #ece8df; }
.focus-hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.focus-hiw-body { font-size: 15px; line-height: 1.65; color: var(--ink-4a); margin: 12px 0 0; }
.focus-quote {
  margin: 44px 0 0; padding: 28px 36px; background: var(--gray-50); border-radius: 16px;
  font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.5rem); line-height: 1.4; color: var(--ink-900); text-wrap: balance;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portFund { margin-top: 34px; }
.port-fund-tile {
  width: min(100%, 580px);
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 28px; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
}
.port-fund-tile:hover {
  border-color: var(--gold-500);
  box-shadow: 0 12px 30px rgba(17,17,17,0.09);
}
.port-fund-tile:hover .port-fund-name {
  color: var(--gold-deep);
}
.port-fund-tile:hover .port-fund-plus,
.port-fund-tile.is-open .port-fund-plus {
  opacity: 1;
}
.port-fund-tile.is-open {
  border-color: var(--gold-500);
  box-shadow: 0 18px 44px rgba(17,17,17,0.12);
}
.port-fund-tile.is-open .port-fund-plus {
  transform: rotate(45deg);
}
/* active = ink fill + gold text: the selected-chip treatment at tile scale */
.port-fund-tile.is-active,
.port-fund-tile.is-active:hover {
  background: var(--ink-900); border-color: var(--ink-900);
  box-shadow: 0 12px 30px rgba(17,17,17,0.16);
}
.port-fund-tile.is-active .port-fund-name,
.port-fund-tile.is-active:hover .port-fund-name { color: var(--gold-400); }
.port-fund-tile.is-active .port-fund-meta { color: rgba(255,255,255,0.72); }
.port-fund-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.port-fund-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; flex: 1; }
.port-fund-name { font-family: var(--font-display); font-size: 28px; line-height: 1; color: var(--ink-900); transition: color var(--dur-base) ease; }
.port-fund-meta { font-size: 15px; color: var(--gray-500); }
.port-fund-plus {
  font-size: 24px; font-weight: 300; color: var(--gray-400); line-height: 1;
  opacity: 0; transition: opacity var(--dur-base) ease, transform .3s var(--ease-out);
  background: none; border: none; cursor: pointer; padding: 0; font-family: inherit;
}
.port-fund-filtering {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400);
}
.port-fund-filtering-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); }
/* details: collapsed by default; open on tile hover or when pinned open via
   the plus; always open on touch/small screens (see media queries below) */
.port-fund-details {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .3s ease;
}
.port-fund-tile:hover .port-fund-details,
.port-fund-tile.is-open .port-fund-details {
  max-height: 480px; opacity: 1;
}
.port-fund-thesis {
  font-size: 14px; line-height: 1.65; color: var(--gray-500); margin: 16px 0 0;
}
.port-fund-tile.is-active .port-fund-thesis { color: rgba(255,255,255,0.8); }
.port-fund-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid #efece5;
}
.port-fund-tile.is-active .port-fund-stats-grid { border-top-color: rgba(255,255,255,0.14); }
.port-fund-stat-col { display: flex; flex-direction: column; gap: 4px; }
.port-fund-stat {
  font-family: var(--font-display); font-size: 30px; line-height: 1;
  color: var(--ink-900); display: block;
}
.port-fund-stat--gold { color: var(--gold-deep); }
.port-fund-tile.is-active .port-fund-stat { color: #ffffff; }
.port-fund-tile.is-active .port-fund-stat--gold { color: var(--gold-400); }
.port-fund-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400); margin-top: 4px; display: block;
}
.port-fund-tile.is-active .port-fund-label { color: rgba(255,255,255,0.6); }
.port-fund-hint {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: 12px; font-weight: 700; color: var(--gold-deep);
}
.port-fund-tile.is-active .port-fund-hint { color: var(--gold-400); }
/* touch / small screens: details always open, no plus (tap = filter) */
@media (hover: none), (max-width: 720px) {
  .port-fund-details { max-height: none; opacity: 1; }
  .port-fund-plus { display: none; }
}
.port-count { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 13px; }
.port-count-label { font-weight: 700; color: var(--ink-700); }
.port-count-sep { color: var(--gray-400); }
.port-count-clear {
  font-weight: 700; color: var(--gold-deep); background: none; border: none;
  cursor: pointer; font-family: inherit; font-size: 13px; padding: 0;
}
.port-fund-toggle {
  font-size: 24px; font-weight: 300; color: var(--gray-400); line-height: 1;
  background: none; border: none; cursor: pointer; transition: opacity .3s ease, transform .3s ease;
  padding: 0;
}
.port-fund-expanded {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.port-fund-thesis { margin-bottom: 16px; }
.port-fund-thesis-text {
  display: block; font-size: 14px; line-height: 1.6; color: var(--gray-500);
}
.port-fund-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.port-fund-stat-num { display: block; font-size: 18px; font-weight: 700; color: var(--ink-900); }
.port-fund-stat-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-top: 4px; }

.port-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 34px 0 6px; }
@media (max-width: 720px) {
  /* mobile: single scrolling filter row, per design 1e */
  .port-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .port-chips::-webkit-scrollbar { display: none; }
  .port-chips .chip { flex: none; }
}
.chip {
  display: inline-flex; align-items: center; height: 40px; padding: 0 20px; border-radius: 999px;
  cursor: pointer; font-size: 14px; font-weight: 700; font-family: var(--font-sans);
  border: 1px solid var(--border); background: #fff; color: var(--ink-700); transition: all .22s ease;
}
.chip.is-active { border-color: var(--ink-900); background: var(--ink-900); color: var(--gold-400); }

.port-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px; margin-top: 24px; align-items: start;
}
.port-card {
  background: #fff; border-radius: 18px; padding: 26px; cursor: pointer; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.port-card:hover { box-shadow: var(--shadow-md); }
.port-name-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.port-name { font-family: var(--font-sans); font-weight: 900; font-size: 26px; letter-spacing: -0.02em; color: var(--ink-900); line-height: 1; transition: color .3s ease; }
/* plus affordance: hidden at rest, revealed on hover (desktop); always
   visible where hover doesn't exist (touch), per design 1e */
.port-chev { font-size: 24px; font-weight: 300; color: var(--gray-400); line-height: 1; opacity: 0; transition: transform .3s var(--ease-out), opacity .22s ease; }
.port-card:hover .port-chev, .port-card.is-hover .port-chev { opacity: 1; }
@media (hover: none) {
  .port-chev { opacity: 1; }
}
.port-cat { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400); margin-top: 14px; }
.port-milestone {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; height: 28px; padding: 0 13px;
  border-radius: 999px; background: var(--gold-100); border: 1px solid #ffe08a; color: var(--gold-text);
  font-size: 12px; font-weight: 700;
}
.port-milestone-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 3px rgba(255,192,9,0.25); }
.port-desc { font-size: 14px; line-height: 1.6; color: var(--gray-500); margin: 10px 0 0; }
.port-founder { font-size: 13px; line-height: 1.55; color: var(--gray-400); margin: 8px 0 0; }
.port-info { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: none; }
.port-card.is-hover .port-info { display: block; }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.port-tag { display: inline-flex; align-items: center; height: 28px; padding: 0 12px; border-radius: 999px; background: var(--gray-100); font-size: 12px; font-weight: 700; color: var(--ink-700); }
.port-coinv { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.port-coinv-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); }
.port-coinv-pill { display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border-radius: 999px; background: var(--ink-900); color: #fff; font-size: 12px; font-weight: 700; }
.port-hint { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 12px; font-weight: 700; }

/* showcase panel */
.port-showcase { margin-top: 34px; }
.showcase {
  background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(17,17,17,0.14);
}
.showcase-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; border-bottom: 1px solid #efece5; }
.showcase-back {
  display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff; cursor: pointer; font-family: var(--font-sans);
  font-size: 13px; font-weight: 700; color: var(--ink-700);
}
.showcase-catpill { display: inline-flex; align-items: center; height: 28px; padding: 0 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
/* Full-width hero banner on top, details below — shows the whole website hero
   without side-cropping, and renders consistently for every company. */
.showcase-body { display: block; }
.showcase-shot { position: relative; aspect-ratio: 5 / 2; overflow: hidden; background: #f1eee7; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.showcase-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease-out); }
/* companies whose screenshot content is vertical: show it in full, uncropped */
.showcase-shot--contain { background: #0c0c0b; }
.showcase-shot--contain img { object-fit: contain; object-position: center; }
a.showcase-shot:hover img { transform: scale(1.03); }
.showcase-shot-ph { color: var(--gray-400); font-size: 13px; font-weight: 700; text-align: center; padding: 24px; }
.showcase-shot-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 5px; z-index: 1; }
.showcase-visit { display: inline-flex; align-items: center; height: 40px; padding: 0 18px; margin-top: 20px; border-radius: 999px; border: 1.5px solid; background: #fff; font-size: 13px; font-weight: 700; text-decoration: none; transition: all .2s ease; }
.showcase-visit:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.showcase-main { padding: 44px; }
.showcase-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.08; color: var(--ink-900); margin: 14px 0 0; letter-spacing: -0.01em; }
.showcase-desc { font-size: 16px; line-height: 1.7; color: var(--gray-500); margin: 18px 0 0; }
.showcase-founders { margin-top: 18px; padding-top: 16px; border-top: 1px solid #efece5; }
.showcase-founders-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); }
.showcase-founders-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; font-size: 14px; line-height: 1.4; }
.showcase-founders-list a { font-weight: 700; text-decoration: none; border-bottom: 1px solid; white-space: nowrap; }
.showcase-founders-list .fname { font-weight: 700; color: var(--ink-700); white-space: nowrap; }
.showcase-founders-list .fnote { color: var(--gray-400); }
.showcase-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.showcase-coinv { display: flex; align-items: center; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid #efece5; }
.showcase-pills { display: flex; gap: 10px; flex-wrap: wrap; padding: 18px 24px; border-top: 1px solid #efece5; background: var(--gray-50); }
.showcase-pill {
  display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: 999px;
  cursor: pointer; font-size: 13px; font-weight: 700; font-family: var(--font-sans);
  border: 1px solid var(--border); background: #fff; color: var(--ink-700); transition: all .2s ease;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 48px; align-items: start; }
.team-card {
  text-align: center; padding: 24px 20px; cursor: pointer; border-radius: 18px;
  transition: background .3s ease, box-shadow .3s ease;
}
.team-card[aria-expanded="true"] {
  background: var(--gray-50); box-shadow: 0 12px 30px rgba(17,17,17,0.08); border-radius: 18px;
}
.team-photo-wrap {
  width: 138px; height: 138px; margin: 0 auto; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 3px var(--gold-400), 0 0 0 6px var(--gray-50);
}
.team-photo { width: 100%; height: 100%; object-fit: cover; }
.team-member-name { font-size: 17px; font-weight: 700; margin: 18px 0 6px; color: var(--ink-900); }
.team-member-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-600); margin: 0; }
.team-teaser {
  transition: opacity .42s cubic-bezier(.22,1,.36,1), transform .42s cubic-bezier(.22,1,.36,1);
}
.team-bar { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--gold-400); margin: 14px auto 0; }
.team-expanded {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .3s var(--ease-out), opacity .3s ease;
}
.team-card[aria-expanded="true"] .team-expanded { max-height: 340px; opacity: 1; }
.team-member-tagline { font-size: 13px; font-weight: 400; color: var(--gray-500); margin: 14px 0 0; line-height: 1.4; }
.team-bio { font-size: 14px; line-height: 1.65; color: var(--ink-4a); margin: 12px 0 0; text-align: left; }
.team-linkedin { display: inline-flex; align-items: center; gap: 7px; margin: 12px 0 4px; font-size: 13px; font-weight: 700; color: var(--gold-deep); text-decoration: none; }
.team-linkedin:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  .team-teaser { transition: none; }
  .team-expanded { transition-duration: 50ms; }
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.ins-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ins-all { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink-900); text-decoration: none; border-bottom: 2px solid var(--gold-400); padding-bottom: 3px; }
.ins-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.ins-chip {
  display: inline-flex; align-items: center; height: 38px; padding: 0 18px; border-radius: 999px;
  cursor: pointer; font-size: 13px; font-weight: 700; font-family: var(--font-sans);
  border: 1px solid var(--border); background: #fff; color: var(--ink-700); transition: all .2s ease;
}
.ins-chip.is-active { border-color: var(--ink-900); background: var(--ink-900); color: var(--gold-400); }

.ins-grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: clamp(40px, 5vw, 56px); margin-top: 40px; align-items: start; }

.ins-feat { display: block; text-decoration: none; color: inherit; border-radius: 16px; transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.ins-feat:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(17,17,17,0.16); }
.ins-feat-cover {
  position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.ins-feat-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.ins-feat-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,0.55)); pointer-events: none; }
.ins-feat-badge-wrap { position: absolute; left: 22px; top: 22px; z-index: 1; }
.ins-feat-read { position: absolute; left: 24px; bottom: 20px; z-index: 1; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92); }
.ins-feat-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 2.4vw, 1.95rem); line-height: 1.18; color: var(--ink-900); margin: 24px 0 0 10px; text-wrap: balance; }
.ins-feat-excerpt { font-size: 1.02rem; line-height: 1.65; color: var(--gray-500); margin: 14px 0 0 10px; max-width: 56ch; }
.ins-feat-author { display: flex; align-items: center; gap: 11px; margin: 20px 0 56px 10px; }
.ins-initials { width: 34px; height: 34px; border-radius: 50%; background: var(--gold-100); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; color: var(--gold-deep); }
.ins-feat-meta { font-size: 13px; color: var(--gray-500); }
.ins-feat-meta b { font-weight: 700; color: var(--ink-700); }

.ins-list { display: flex; flex-direction: column; padding-right: 28px; }
.ins-row { display: flex; align-items: center; gap: 20px; text-decoration: none; color: inherit; padding: 26px 0; border-top: 1px solid var(--hairline); }
.ins-row:first-child { padding-top: 0; border-top: none; }
.ins-row-body { flex: 1; min-width: 0; }
.ins-row-title { font-size: 1.18rem; font-weight: 700; line-height: 1.3; color: var(--ink-900); margin: 12px 0 6px; transition: color .25s ease; }
.ins-row-excerpt { font-size: 14px; line-height: 1.55; color: var(--gray-500); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ins-arrow { flex: none; color: var(--gold-deep); font-size: 18px; font-weight: 700; transition: transform .25s ease; }
.ins-row:hover .ins-row-title { color: var(--gold-deep); }
.ins-row:hover .ins-arrow { transform: translateX(6px); }

.ins-badge { display: inline-flex; align-items: center; gap: 7px; height: 26px; padding: 0 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.ins-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.ins-solid { display: inline-flex; align-items: center; height: 30px; padding: 0 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* ============================================================
   CTA
   ============================================================ */
.cta-inner { text-align: center; padding-top: 0; padding-bottom: 0; }
.cta-title { color: var(--ink-900); margin: 0 0 12px; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; }
.cta-sub { font-size: 1.15rem; color: var(--ink-700); margin: 0 0 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 34px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 700; text-decoration: none; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
.footer-legal { font-size: 13px; margin-left: auto; }

/* ============================================================
   WRITING PAGE (writing.html)
   ============================================================ */
.wr-nav { position: absolute; top: 0; left: 0; right: 0; height: 72px; z-index: 100; display: flex; align-items: center; padding: 0 32px; }
.wr-nav .nav-logo { width: auto; }
.wr-navlinks { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.wr-navlinks a { font-size: 14px; font-weight: 700; text-decoration: none; color: rgba(255,255,255,0.86); }
.wr-navlinks a:hover { opacity: .8; }
.wr-navlinks a.is-active { color: var(--gold-400); border-bottom: 2px solid var(--gold-400); padding-bottom: 3px; }

.wr-header { position: relative; background: radial-gradient(120% 120% at 75% 20%, #1b1a17 0%, #111111 55%, #0c0c0b 100%); overflow: hidden; }
.wr-head-wrap { position: relative; max-width: var(--container-max); margin: 0 auto; padding: 150px 32px 72px; }
.wr-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 26px; }
.wr-back:hover { color: rgba(255,255,255,0.9); }
.wr-head-eyebrow { display: flex; align-items: center; gap: 11px; }
.wr-head-eyebrow span:first-child { width: 28px; height: 3px; border-radius: 3px; background: var(--gold-500); }
.wr-head-eyebrow span:last-child { font-size: 14px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-400); }
.wr-h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 5.2vw, 4.2rem); line-height: 1.06; letter-spacing: -0.01em; color: #fff; max-width: 18ch; margin: 22px 0 0; text-wrap: balance; }
.wr-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.65; color: rgba(255,255,255,0.72); max-width: 60ch; margin: 24px 0 0; }

.wr-archive { background: var(--gray-50); padding: 64px 0 110px; }
.wr-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.wr-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.wr-tools { display: flex; align-items: center; gap: 16px; }
.wr-count { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--gray-400); }
.wr-sort { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 700; font-family: var(--font-sans); border: 1px solid var(--border); background: #fff; color: var(--ink-700); transition: all .22s ease; }
.wr-sort:hover { box-shadow: var(--shadow-sm); }
.wr-sort .wr-sort-arrow { color: var(--gold-deep); font-size: 15px; }
.wr-rss { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 15px; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .02em; border: 1px solid var(--border); background: #fff; color: var(--gold-deep); transition: all .22s ease; }
.wr-rss:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-400); }
.wr-rss svg { color: var(--gold-500); }
.wr-press-toggle { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 15px; border-radius: 999px; cursor: pointer; font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .02em; border: 1px solid var(--border); background: #fff; color: var(--ink-700); transition: all .22s ease; }
.wr-press-toggle svg { color: var(--gold-deep); }
.wr-press-toggle:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-400); }
.wr-press-toggle.is-active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.wr-press-toggle.is-active svg { color: var(--gold-400); }

/* "In the news" list view — press mentions grouped by company */
.wr-press { padding-top: 6px; }
.wr-press-group { margin-top: 30px; }
.wr-press-group:first-child { margin-top: 8px; }
.wr-press-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.wr-press-co { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--ink-900); margin: 0; }
.wr-press-n { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-400); }
.wr-press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px; }
.wr-press-grid .wr-news-card { flex: initial; width: 100%; }
@media (max-width: 480px) { .wr-press-grid { grid-template-columns: 1fr; } }

/* featured */
.wr-feat { display: block; margin-top: 36px; border-radius: 20px; background: #fff; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 8px 30px rgba(17,17,17,0.06); cursor: pointer; transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.wr-feat:hover { transform: translateY(-3px); box-shadow: 0 30px 70px rgba(17,17,17,0.2); }
.wr-feat:hover .wr-feattitle { color: var(--gold-deep); }
.wr-feat-inner { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }
.wr-feat-media { position: relative; min-height: 360px; overflow: hidden; }
.wr-feat-body { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.wr-feat-kicker { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.wr-feattitle { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 2.8vw, 2.4rem); line-height: 1.16; color: var(--ink-900); margin: 16px 0 0; text-wrap: balance; transition: color .25s ease; }
.wr-feat-excerpt { font-size: 1.05rem; line-height: 1.68; color: var(--gray-500); margin: 18px 0 0; max-width: 52ch; }
.wr-feat-author { display: flex; align-items: center; gap: 11px; margin-top: 26px; }
.wr-feat-author .ins-initials { width: 36px; height: 36px; font-size: 15px; }
.wr-feat-read { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 14px; font-weight: 700; color: var(--ink-900); }
.wr-feat-read span { color: var(--gold-deep); }

/* grid */
.wr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.wr-card { display: flex; flex-direction: column; border-radius: 18px; background: #fff; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px rgba(17,17,17,0.04); cursor: pointer; transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.wr-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(17,17,17,0.16); }
.wr-card:hover .wr-cardtitle { color: var(--gold-deep); }
.wr-card:hover .wr-arrow { transform: translate(4px,-4px); }
.wr-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.wr-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.wr-card-top { display: flex; align-items: flex-start; gap: 12px; }
.wr-cardtitle { font-size: 1.18rem; font-weight: 700; line-height: 1.3; color: var(--ink-900); margin: 0; flex: 1; transition: color .25s ease; }
.wr-arrow { flex: none; color: var(--gold-deep); font-size: 17px; font-weight: 700; transition: transform .25s ease; }
.wr-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--gray-500); margin: 12px 0 0; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wr-card-meta { display: flex; align-items: center; gap: 9px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #ece8df; font-size: 12px; color: var(--gray-500); }
.wr-card-meta b { color: var(--ink-700); }
.wr-card-meta .wr-card-read { margin-left: auto; font-weight: 700; color: var(--gray-400); }

/* cover image + no-cover gradient fallback (shared by feat/card/reader/mini) */
.wr-cover { position: absolute; inset: 0; background: #f1eee7; }
/* Anchor left: generated covers carry a left-aligned title, so a centre crop
   clips the first characters. Left-anchoring preserves the title (their right
   side is empty), and reads fine for photo covers too. */
.wr-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
/* Branded text covers: show the whole cover (no crop) letterboxed on a tone
   that matches the cover's dark field, so the title/watermark never clip at
   any container ratio and the letterbox reads as part of the artwork. */
.wr-cover--contain { background: #141110; }
.wr-cover--contain img { object-fit: contain; object-position: center; }
.wr-cover--empty { background: radial-gradient(120% 120% at 75% 15%, #2a2a2a 0%, #141414 60%, #0c0c0b 100%); }
.wr-cover--empty::after { content: attr(data-mark); position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: 40px; color: rgba(255,205,60,0.18); letter-spacing: .02em; }
.wr-badge-pos { position: absolute; left: 22px; top: 22px; z-index: 1; }
.wr-card .wr-badge-pos { left: 18px; top: 18px; }
.wr-mini .wr-badge-pos { left: 14px; top: 14px; }

.wr-empty { margin-top: 48px; padding: 60px; text-align: center; border: 1px dashed #d8d2c5; border-radius: 18px; color: var(--gray-400); font-size: 15px; font-weight: 700; }

/* reader */
.wr-reader { background: var(--gray-50); padding: 40px 0 0; }
.wr-bar { position: sticky; top: 0; z-index: 80; background: rgba(250,248,242,0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.wr-bar-inner { max-width: 820px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 14px; }
.wr-bar-btn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: var(--ink-700); }
.wr-bar-read { margin-left: auto; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--gray-400); }
.wr-bar-x { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 20px; line-height: 1; color: var(--ink-700); }
.wr-article { max-width: 820px; margin: 0 auto; padding: 40px 32px 8px; }
.wr-article-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; letter-spacing: -0.01em; color: var(--ink-900); margin: 20px 0 0; text-wrap: balance; }
.wr-article-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.wr-article-author .ins-initials { width: 42px; height: 42px; font-size: 16px; }
.wr-article-author span.meta { font-size: 14px; color: var(--gray-500); }
.wr-article-author .meta b { color: var(--ink-700); }
.wr-article-cover { position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; margin: 32px 0 8px; box-shadow: 0 18px 44px rgba(17,17,17,0.1); }
.wr-lead { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.55; color: #3a352e; margin: 32px 0 0; text-wrap: pretty; }
.wr-article h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.45rem, 2.4vw, 1.85rem); line-height: 1.2; color: var(--ink-900); margin: 44px 0 0; }
.wr-article p.body { font-size: 1.14rem; line-height: 1.8; color: var(--ink-700); margin: 20px 0 0; max-width: 66ch; text-wrap: pretty; }
.wr-article blockquote { margin: 36px 0 0; padding: 4px 0 4px 26px; border-left: 4px solid var(--gold-400); font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.4; color: var(--ink-900); text-wrap: balance; }
.wr-article-foot { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.wr-article-foot .ins-initials { width: 42px; height: 42px; font-size: 16px; }
.wr-article-foot span.meta { font-size: 14px; color: var(--gray-500); }
.wr-article-foot .meta b { color: var(--ink-700); }

/* carousel */
/* "In the news" — press-mention preview carousel on the reader view */
.wr-news { max-width: var(--container-max); margin: 0 auto; padding: 48px 32px 0; }
.wr-news .wr-more-head { margin-bottom: 20px; }
.wr-news-rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scroll-behavior: smooth; }
.wr-news-rail::-webkit-scrollbar { height: 8px; }
.wr-news-rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.wr-news-card { flex: 0 0 420px; height: 152px; scroll-snap-align: start; display: flex; border-radius: 14px; background: #fff; border: 1px solid var(--border); overflow: hidden; text-decoration: none; box-shadow: 0 2px 12px rgba(17,17,17,0.04); transition: transform .25s var(--ease-out), box-shadow .25s ease, border-color .25s ease; }
.wr-news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.wr-news-thumb { flex: 0 0 138px; background-size: cover; background-position: center; position: relative; }
.wr-news-thumb--ph { display: flex; flex-direction: column; justify-content: center; padding: 14px; background: radial-gradient(130% 150% at 0% 0%, #201e1b 0%, #111 62%); border-right: 3px solid var(--gold-400); }
.wr-news-badge { position: absolute; bottom: 10px; left: 10px; display: inline-flex; align-items: center; height: 21px; max-width: calc(100% - 20px); padding: 0 9px; border-radius: 5px; font-size: 10px; font-weight: 700; letter-spacing: .02em; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; box-shadow: 0 2px 6px rgba(0,0,0,.28); }
.wr-news-credit { position: absolute; top: 8px; right: 8px; padding: 2px 6px; border-radius: 4px; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.92); font-size: 9px; font-weight: 600; letter-spacing: .02em; }
.wr-news-thumb-eyebrow { position: absolute; top: 12px; left: 14px; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,205,60,.7); }
.wr-news-thumb-outlet { font-family: var(--font-display); font-size: 17px; line-height: 1.12; color: #fff; }
.wr-news-thumb-foot { position: absolute; bottom: 11px; left: 14px; font-size: 9px; font-weight: 700; color: var(--gold-400); }
.wr-news-info { flex: 1; min-width: 0; padding: 15px 18px; display: flex; flex-direction: column; }
.wr-news-outlet { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-400); }
.wr-news-title { font-family: var(--font-sans); font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--ink-900); margin: 5px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wr-news-desc { font-size: 12.5px; line-height: 1.45; color: var(--gray-500); margin: 7px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wr-news-url { font-size: 12px; color: var(--gray-400); margin-top: auto; padding-top: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 620px) { .wr-news-card { flex-basis: 300px; } }

.wr-more { max-width: var(--container-max); margin: 0 auto; padding: 56px 32px 100px; }
.wr-more-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.wr-more-head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--ink-900); margin: 0; }
.wr-railbtns { display: flex; gap: 10px; }
.wr-railbtn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 18px; color: var(--ink-700); }
.wr-railbtn:hover { box-shadow: var(--shadow-sm); }
.wr-rail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scroll-behavior: smooth; }
.wr-rail::-webkit-scrollbar { height: 8px; }
.wr-rail::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 999px; }
.wr-rail::-webkit-scrollbar-track { background: transparent; }
.wr-mini { flex: 0 0 300px; scroll-snap-align: start; display: flex; flex-direction: column; border-radius: 16px; background: #fff; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 2px 12px rgba(17,17,17,0.04); cursor: pointer; transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.wr-mini:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(17,17,17,0.14); }
.wr-mini:hover .wr-minititle { color: var(--gold-deep); }
.wr-mini-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.wr-mini-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.wr-minititle { font-size: 1.05rem; font-weight: 700; line-height: 1.32; color: var(--ink-900); margin: 0; transition: color .25s ease; }
.wr-mini-meta { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 16px; font-size: 12px; color: var(--gray-500); }
.wr-mini-meta b { color: var(--ink-700); }
.wr-mini-meta .wr-mini-read { margin-left: auto; font-weight: 700; color: var(--gray-400); }

.wr-cta { background: var(--gold-400); padding: 84px 0; }
.wr-cta-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; text-align: center; }
.wr-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.1; color: var(--ink-900); margin: 0 0 12px; }
.wr-cta p { font-size: 1.12rem; color: var(--ink-700); margin: 0 0 28px; }

@media (max-width: 760px) {
  .wr-navlinks { display: none; }
  .wr-head-wrap { padding: 128px 20px 56px; }
  .wr-archive .container, .wr-more, .wr-cta-inner { padding-left: 20px; padding-right: 20px; }
  .wr-grid { grid-template-columns: 1fr; }
  .wr-feat-inner { grid-template-columns: 1fr; }
  /* min-height floor: iOS Safari can collapse aspect-ratio on a grid child to 0,
     which dropped the featured cover. The floor keeps it visible regardless. */
  .wr-feat-media { min-height: 210px; aspect-ratio: 16 / 10; }
  .wr-railbtn { display: none; }
}

/* ============================================================
   RESPONSIVE — single breakpoint at 760px
   ============================================================ */
@media (max-width: 760px) {
  .sv-spot { display: none !important; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 12px; right: 12px;
    margin-left: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px;
    border-radius: 16px; background: var(--gray-50); border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(17,17,17,0.18);
  }
  .nav-links[data-open="false"] { display: none; }
  .nav-links a[data-navlink] { color: var(--ink-700) !important; padding: 12px 14px; border-radius: 10px; }
  .nav-cta { justify-content: center; margin-top: 6px; }

  .sv-sec { padding: 64px 0; }
  .container { padding-left: 20px; padding-right: 20px; }
  .hero-wrap { padding: 116px 20px 64px; min-height: 0; }
  /* decorative scroll hint collides with the stats on short mobile heroes */
  .hero-scroll { display: none; }

  .focus-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 40px; }
  .focus-aside { position: static; top: auto; margin-top: 4px; }
  .focus-hiw-grid { grid-template-columns: 1fr; gap: 28px; }
  .ins-grid { grid-template-columns: 1fr; gap: 34px; }
  .ins-list { padding-right: 0; }

  /* Banners: on mobile, wide screenshots/covers become landscape banners
     instead of tall over-cropped boxes. */
  .showcase-body { grid-template-columns: 1fr; }
  .showcase-shot { min-height: 0; aspect-ratio: 16 / 10; }
  .showcase-main { padding: 28px; }
  .ins-feat-cover { aspect-ratio: 16 / 10; }
}
