/* Launch site v1  -  shared tokens + chrome + Home density
   Palette lock: void #000 · lime #c8ff00 · pink #ff2d8a · Jost UI
   Wordmark = SVG art, not plain Jost text as the mark. */

:root {
  --void: #000000;
  --ink: #ffffff;
  --lime: #c8ff00;
  --pink: #ff2d8a;
  --ink-dim: rgba(255, 255, 255, 0.72);
  --ink-mute: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.18);
  --panel: #0a0a0a;
  --font: "Jost", system-ui, sans-serif;
  --track: 0.12em;
  --track-wide: 0.28em;
  --max: 1120px;
  --header-h: 64px;
}

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

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

body {
  min-height: 100%;
  background: var(--void);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  width: clamp(88px, 14vw, 128px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: clamp(10px, 1.05vw, 12px);
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  outline: none;
}

.site-nav a[aria-current="page"] {
  color: var(--lime);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 0.95em;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: clamp(10px, 1.05vw, 12px);
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--void);
  outline: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.4rem 0.65rem;
  font-size: 11px;
  letter-spacing: var(--track);
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a,
  .site-nav .btn-nav-cta {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav .btn-nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
    border-bottom: 1px solid var(--ink);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 44px;
  padding: 0.75em 1.4em;
  border: 1px solid var(--ink);
  background: var(--void);
  color: var(--ink);
  font-weight: 500;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--ink);
  color: var(--void);
  outline: none;
}

.btn-lime {
  border-color: var(--lime);
  color: var(--void);
  background: var(--lime);
}

.btn-lime:hover,
.btn-lime:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--void);
}

.btn-ghost-pink {
  border-color: var(--pink);
  color: var(--ink);
}

.btn-ghost-pink:hover,
.btn-ghost-pink:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--void);
}

/* ---------- Dense collage hero (site-v1 density map) ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 941px);
  overflow: hidden;
  background: var(--void);
  border-bottom: 1px solid var(--line);
}

.hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

.d-layer {
  position: absolute;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  max-width: none;
  height: auto;
}

/* z2 underlays */
.d-underlay-tl { top: -2%; left: -2%; width: 28%; opacity: 0.42; z-index: 2; }
.d-underlay-tr { top: -2%; left: 72%; width: 30%; opacity: 0.42; z-index: 2; }
.d-underlay-bl { top: 62%; left: -2%; width: 28%; opacity: 0.45; z-index: 2; }
.d-underlay-br { top: 60%; left: 72%; width: 30%; opacity: 0.45; z-index: 2; }

/* z3 holo + lime TL */
.d-holo-lime { top: -12%; left: -8%; width: 48%; opacity: 0.95; z-index: 3; }

/* z4 neon lime stroke TL */
.d-neon-lime {
  top: -6%; left: -4%; width: 36%; opacity: 0.88; z-index: 4;
  mix-blend-mode: screen;
}

/* z5 vertical shards TR */
.d-shard-vert {
  top: -18%; left: 68%; height: 78%; width: auto; opacity: 0.9; z-index: 5;
}

/* z6 pink marble */
.d-shard-pink-tr {
  top: -12%; left: 55%; width: 48%; opacity: 0.5; z-index: 6;
  transform: scaleX(-1);
}
.d-shard-pink-bl {
  top: 42%; left: -16%; width: 48%; opacity: 0.8; z-index: 6;
}

/* z7 lime marble BR */
.d-shard-lime { top: 48%; left: 48%; width: 55%; opacity: 0.75; z-index: 7; }

/* z8 lime chunk BR */
.d-lime-chunk { top: 38%; left: 62%; width: 42%; opacity: 0.95; z-index: 8; }

/* z9 globe BL */
.d-globe { top: 58%; left: 2%; width: 21%; opacity: 0.9; z-index: 9; }

/* z10 mid-edge fill (soft) */
.d-mid-left {
  top: 15%; left: -12%; height: 55%; width: auto; opacity: 0.3; z-index: 10;
  transform: rotate(15deg);
}
.d-mid-br {
  top: 55%; left: 70%; width: 32%; opacity: 0.35; z-index: 10;
}

/* z11 tech lines / crosshairs */
.hero-tech {
  position: absolute;
  inset: 0;
  z-index: 11;
  opacity: 0.35;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,0.16) 46.15%, transparent 46.4%),
    linear-gradient(65deg, transparent 0 58%, rgba(255,255,255,0.11) 58.12%, transparent 58.35%);
}
.hero-tech svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.xh {
  position: absolute;
  width: clamp(12px, 1.2vw, 20px);
  opacity: 0.35;
  z-index: 11;
}
.xh-a { top: 16%; left: 26%; }
.xh-b { top: 38%; right: 24%; }
.xh-c { bottom: 32%; left: 36%; }
.xh-d { top: 22%; right: 38%; }
.xh-e { bottom: 18%; right: 30%; }

/* Center clear zone vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 12;
  background:
    radial-gradient(ellipse 48% 64% at 50% 48%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 42%, transparent 72%);
  pointer-events: none;
}

/* z13 microcopy */
.hero-micro {
  position: absolute;
  z-index: 13;
  font-size: clamp(8px, 0.85vw, 11px);
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--ink);
  pointer-events: none;
}

.hero-micro-tl {
  top: 6%;
  left: clamp(0.75rem, 2vw, 1.5rem);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-micro-tr {
  top: 7%;
  right: clamp(0.75rem, 2vw, 1.5rem);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-micro-bl {
  left: calc(2% + 22%);
  top: 62%;
  letter-spacing: 0.2em;
  max-width: 11em;
}

.hero-micro-br {
  bottom: 8%;
  right: clamp(0.75rem, 2vw, 1.5rem);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-micro span { display: block; }
.hero-micro .rule {
  display: block;
  background: var(--ink);
  opacity: 0.8;
}
.hero-micro-tl .rule,
.hero-micro-tr .rule,
.hero-micro-br .rule {
  width: 1px;
  height: 1.5em;
  margin: 0.4em auto 0;
}
.hero-micro-bl .rule {
  width: 2.2em;
  height: 1px;
  margin-top: 0.5em;
}

/* Center HTML type stack */
.hero-center {
  position: relative;
  z-index: 14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: inherit;
  padding: clamp(5rem, 12vh, 7rem) clamp(1.25rem, 8%, 4rem) clamp(4rem, 10vh, 6rem);
  gap: clamp(0.4rem, 1.2vw, 0.9rem);
  pointer-events: none;
}

.hero-center a,
.hero-center .btn { pointer-events: auto; }

.hero-wordmark {
  width: min(100%, 640px);
  margin-bottom: 0.15rem;
}

.hero-kicker,
.hero-tag,
.hero-soon {
  font-size: clamp(10px, 1.15vw, 13px);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
}

.hero-kicker { letter-spacing: 0.3em; }
.hero-tag { opacity: 0.92; letter-spacing: 0.24em; max-width: 36em; }
.hero-soon {
  font-weight: 500;
  letter-spacing: 0.36em;
  margin-top: 0.35rem;
  color: var(--lime);
}

.hero-under {
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Legacy plate/neon hooks still used by featured + cards below */
.plate {
  position: absolute;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.neon {
  position: absolute;
  object-fit: contain;
  mix-blend-mode: screen;
  user-select: none;
  -webkit-user-drag: none;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-band {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
}

.eyebrow.pink { color: var(--pink); }

.section-title {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-lede {
  margin-top: 0.75rem;
  max-width: 38rem;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.55;
}

/* Featured drop */
.featured {
  background:
    linear-gradient(135deg, rgba(200, 255, 0, 0.06), transparent 42%),
    linear-gradient(225deg, rgba(255, 45, 138, 0.07), transparent 40%),
    var(--void);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.featured-visual {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 255, 0, 0.18), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(255, 45, 138, 0.2), transparent 50%),
    #050505;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.featured-visual .plate-mini {
  position: absolute;
  width: 70%;
  opacity: 0.85;
  mix-blend-mode: screen;
}
.featured-visual .plate-mini.tl { top: -8%; left: -10%; }
.featured-visual .plate-mini.br { bottom: -12%; right: -8%; width: 55%; }

.featured-visual .xh-feat {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

.featured-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.featured-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}

.featured-title {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.featured-copy {
  color: var(--ink-dim);
  max-width: 34rem;
}

/* Story cards */
.stories {
  background:
    linear-gradient(180deg, #000 0%, #050505 100%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 210px;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.03), transparent 55%),
    var(--panel);
  transition: border-color 0.15s ease, transform 0.15s ease;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  opacity: 0.85;
}

.story-card.lane::before { background: var(--pink); }

.story-card:hover,
.story-card:focus-within {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.story-card .tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
}

.story-card.lane .tag { color: var(--pink); }

.story-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 16em;
}

.story-card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  flex: 1;
}

.story-card .card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.story-card .card-link:hover { color: var(--lime); }
.story-card.lane .card-link:hover { color: var(--pink); }

.card-deco {
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: 42%;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Newsletter */
.newsletter {
  background:
    linear-gradient(120deg, rgba(200, 255, 0, 0.05), transparent 35%),
    linear-gradient(300deg, rgba(255, 45, 138, 0.08), transparent 40%),
    var(--void);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: var(--panel);
}

.newsletter-form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input {
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  background: #000;
  color: var(--ink);
  outline: none;
}

.field input:focus {
  border-color: var(--lime);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
  max-width: 18rem;
}

.footer-brand img {
  width: 120px;
}

.footer-brand p {
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  color: var(--ink-dim);
}

.footer-nav a:hover { color: var(--lime); }

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.footer-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Stub / interior pages ---------- */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200,255,0,0.05), transparent 40%),
    linear-gradient(225deg, rgba(255,45,138,0.06), transparent 42%),
    var(--void);
}

.page-hero .section-inner { max-width: var(--max); margin: 0 auto; }

.stub-panel {
  margin: clamp(2rem, 5vw, 3.5rem) auto;
  width: min(100%, var(--max));
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
}

.stub-box {
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--panel);
  display: grid;
  gap: 1rem;
}

.stub-box h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stub-box p { color: var(--ink-dim); max-width: 36rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-visual {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .card-grid { grid-template-columns: 1fr; }
  .newsletter-panel { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-micro-tl,
  .hero-micro-tr,
  .hero-micro-br { display: none; }
  .d-holo-lime { width: 58%; }
  .d-shard-vert { left: 62%; height: 70%; }
  .d-lime-chunk { width: 50%; left: 55%; }
  .d-mid-left, .d-mid-br { display: none; }
  .hero-kicker, .hero-tag { letter-spacing: 0.14em; white-space: normal; }
  .hero-wordmark { width: 88%; }
  .xh-d, .xh-e, .xh-c { display: none; }
}

@media (max-width: 520px) {
  .hero { min-height: 78vh; }
  .hero-micro-bl { font-size: 9px; left: 1rem; top: auto; bottom: 3.5rem; }
  .d-globe { width: 28%; top: 64%; }
  .d-underlay-tl, .d-underlay-tr, .d-underlay-bl, .d-underlay-br { opacity: 0.3; }
}


/* ---------- Careers index cards ---------- */
.careers-index {
  background: linear-gradient(180deg, #000 0%, #050505 100%);
  border-bottom: 1px solid var(--line);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.career-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.career-card:hover,
.career-card:focus-within {
  border-color: rgba(200, 255, 0, 0.55);
  transform: translateY(-2px);
}

.career-card__thumb {
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: center;
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.career-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.15rem 1.3rem;
  flex: 1;
}

.career-card__title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.career-card__blurb {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.career-card__eps {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.career-card__eps a {
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.career-card__eps a:hover {
  color: var(--lime);
  border-bottom-color: var(--pink);
}

.career-card__eps .coming {
  font-size: 0.9rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.career-card__related {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.career-card__related a:hover { color: var(--pink); }

/* ---------- Episode / article pages ---------- */
.episode-hero,
.page-hero {
  /* page-hero already defined; tighten episode hero */
}

.episode-hero {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2.5rem) 1.75rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200,255,0,0.05), transparent 40%),
    linear-gradient(225deg, rgba(255,45,138,0.06), transparent 42%),
    var(--void);
}

.episode-title {
  font-size: clamp(1.45rem, 3.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 22em;
}

.episode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.episode-tags li {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  padding: 0.35em 0.7em;
}

.episode-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: 1.75rem;
}

.audio-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(200,255,0,0.06), transparent 50%),
    var(--panel);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  display: grid;
  gap: 0.35rem;
}

.audio-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
}

.audio-status {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.audio-note {
  color: var(--ink-mute);
  font-size: 0.9rem;
}

.article-body {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.article-body h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.article-body p,
.article-body li {
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.65;
}

.article-body strong { color: var(--ink); font-weight: 500; }

.article-body a {
  color: var(--lime);
  border-bottom: 1px solid rgba(200, 255, 0, 0.35);
}

.article-body a:hover { border-bottom-color: var(--pink); color: var(--ink); }

.article-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
}

.related {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.65em 0.95em;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.related-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.prose-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.85rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.04em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--lime);
  font-weight: 500;
}

.faq-item[open] summary::after { content: "–"; color: var(--pink); }

.faq-answer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  color: var(--ink-dim);
  line-height: 1.6;
}

.faq-answer strong { color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .career-grid { grid-template-columns: 1fr; }
}

/* ---------- Podcasts hub ---------- */
.podcasts-hub { padding-top: 0.5rem; }
.podcast-lane { margin-bottom: 2.25rem; }
.podcast-lane__title {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime, #c8ff00);
  margin: 0 0 0.85rem;
  font-weight: 500;
}
.podcast-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.podcast-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.35rem 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line, rgba(255,255,255,.14));
  color: inherit;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.podcast-row:hover { border-color: var(--lime, #c8ff00); background: rgba(200,255,0,.04); }
.podcast-row__meta { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; grid-column: 1 / -1; }
.podcast-row__lane {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink, #ff2d8a);
}
.podcast-row__status { font-size: 0.75rem; color: var(--ink-dim, #9a9a9a); }
.podcast-row__title { font-size: 1.05rem; font-weight: 500; line-height: 1.35; }
.podcast-row__cta { align-self: end; font-size: 0.8rem; color: var(--lime, #c8ff00); white-space: nowrap; }
@media (max-width: 640px) {
  .podcast-row { grid-template-columns: 1fr; }
  .podcast-row__cta { justify-self: start; }
}

/* ---------- Contact ---------- */
.newsletter-form textarea {
  width: 100%;
  min-height: 7rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  background: #0a0a0a;
  color: #fff;
  font: inherit;
  border-radius: 0;
  resize: vertical;
}
.contact-panel { max-width: 40rem; }
.footer-brand img { height: auto; }
.hero-wordmark { height: auto; display: block; }
