/* THE AI NATIVES — Site v2 homepage
   Tokens from BRAND.md (July 2026). This page uses the v2 token set below;
   the legacy design-system tokens still govern the older pages. */

:root {
  --forest-black: #070F0A;
  --deep-green: #0D1A12;
  --forest: #142618;
  --pine: #1E3A24;
  --moss: #2A5233;
  --parchment: #F5F1E4;
  --warm-white: #FAFAF7;
  --lime: #C8F53A;
  --lime-hover: #D7FA62;
  --off-black: #080808;
  --mid-grey: #717171;

  --parchment-rgb: 245, 241, 228;
  --lime-rgb: 200, 245, 58;
  --forest-rgb: 20, 38, 24;
  --forest-black-rgb: 7, 15, 10;
  --moss-rgb: 42, 82, 51;
  --deep-green-rgb: 13, 26, 18;

  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--forest);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
input::placeholder { color: inherit; opacity: .4; }
input:focus { outline: 2px solid rgba(var(--lime-rgb), .65); outline-offset: 2px; }
::selection { background: var(--lime); color: var(--forest); }

.page { position: relative; background: var(--forest); min-height: 100vh; min-height: 100svh; overflow-x: clip; }

/* Grid background (image + parallax position set by JS) */
.grid-bg { position: absolute; inset: 0; pointer-events: none; }
.hero .grid-bg {
  inset: -140px 0 0 0;
  -webkit-mask-image: radial-gradient(820px 620px at 72% 36%, rgba(0,0,0,.95), transparent 74%);
  mask-image: radial-gradient(820px 620px at 72% 36%, rgba(0,0,0,.95), transparent 74%);
}

/* ---------- Nav: floating pill ---------- */
.nav { position: sticky; top: 14px; z-index: 40; padding: 0 20px; }
.nav-pill {
  max-width: 1160px; margin: 0 auto; height: 72px; padding: 0 12px 0 20px;
  display: flex; align-items: center;
  border-radius: 999px;
  background: rgba(var(--deep-green-rgb), .6);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(var(--moss-rgb), .8);
  box-shadow: 0 14px 44px rgba(var(--forest-black-rgb), .4);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.nav-scrolled .nav-pill {
  height: 62px;
  background: rgba(var(--deep-green-rgb), .85);
  box-shadow: 0 10px 30px rgba(var(--forest-black-rgb), .5);
}
.brand-pill { display: inline-flex; align-items: center; gap: 12px; }
.brand-pill:hover { text-decoration: none; }
.brand-mark { width: 38px; height: auto; display: block; }
.brand-name { font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; color: var(--parchment); }
.wordmark { font-weight: 700; font-size: 16.5px; letter-spacing: -0.01em; color: var(--parchment); }

/* ---------- Brand lockup (inline SVG: three masked bars + wordmark) ----------
   Clear space: one bar-width (~20px at 190px) — nav height and paddings
   are sized to preserve it. Knockout letters are mask holes; never filled. */
.brand-lockup { width: 190px; height: auto; display: block; }
.brand-lockup-wrap { display: inline-block; }
.brand-mark.brand-lockup { width: 38px; }

/* Entrance: bars grow from the baseline, staggered, then the wordmark fades in.
   The .lg-anim class is added once per session by home-v2.js. */
.lg-anim .lg-bar {
  transform-box: fill-box; transform-origin: center bottom;
  animation: lgBarRise .5s ease-out backwards;
}
.lg-anim .lg-bar-1 { animation-delay: 0s; }
.lg-anim .lg-bar-2 { animation-delay: .12s; }
.lg-anim .lg-bar-3 { animation-delay: .24s; }
.lg-anim .lg-text { opacity: 0; animation: lgTextIn .3s ease-out .74s forwards; }
@keyframes lgBarRise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes lgTextIn {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lg-anim .lg-bar, .lg-anim .lg-text { animation: none; opacity: 1; transform: none; }
}
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link { font-size: 14px; font-weight: 500; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.nav-link:hover { text-decoration: none; transform: translateY(-1px); }
.nav-link-active { color: var(--parchment); }
.nav-link-dim { color: rgba(var(--parchment-rgb), .62); }
.nav-link-dim:hover { color: var(--parchment); }
.nav-link-muted { color: rgba(var(--parchment-rgb), .42); cursor: default; }
.nav-meetups { display: flex; align-items: center; gap: 7px; }
.chip-soon {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: rgba(var(--parchment-rgb), .52);
  border: 1px solid rgba(var(--parchment-rgb), .24);
  border-radius: 4px; padding: 2px 6px;
}

/* ---------- Buttons ---------- */
/* Charge state: shadow tightens on approach, never blooms */
.btn-lime {
  border: none; border-radius: 9px;
  background: var(--lime); color: var(--forest);
  font-weight: 600; font-family: var(--sans); cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(var(--forest-rgb), 0), 0 3px 16px rgba(var(--forest-black-rgb), .38);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn-lime:hover {
  background: var(--lime-hover);
  box-shadow: inset 0 0 0 1px rgba(var(--forest-rgb), .4), 0 1px 7px rgba(var(--forest-black-rgb), .5);
}
.btn-nav { margin-left: 32px; height: 40px; padding: 0 18px; border-radius: 8px; font-size: 13.5px; }
.btn-hero { height: 52px; padding: 0 26px; font-size: 15px; }
.btn-footer { height: 48px; padding: 0 18px; font-size: 14px; white-space: nowrap; }
.btn-outline {
  height: 48px; padding: 0 24px; border-radius: 9px;
  border: 1px solid rgba(var(--parchment-rgb), .32);
  background: transparent; color: var(--parchment);
  font-weight: 600; font-size: 15px; font-family: var(--sans); cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}
.btn-outline:hover { border-color: rgba(var(--parchment-rgb), .62); transform: translateY(-1px); }

/* ---------- Forms ---------- */
.subscribe-form { display: flex; gap: 10px; }
.email-input {
  width: 300px; height: 52px; border-radius: 9px;
  border: 1px solid rgba(var(--parchment-rgb), .2);
  background: rgba(var(--parchment-rgb), .06);
  color: var(--parchment); padding: 0 16px; font-size: 15px; font-family: var(--sans);
  transition: border-color .3s ease;
}
.subscribe-form-footer { gap: 10px; }
.email-input-footer { flex: 1; min-width: 0; width: auto; height: 48px; padding: 0 14px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-ghosts { position: absolute; inset: 0; pointer-events: none; }
.ghost-word {
  position: absolute; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  white-space: nowrap; will-change: transform;
}
.ghost-newsletter {
  top: 30px; right: -60px;
  font-size: clamp(140px, 15vw, 220px);
  color: transparent; -webkit-text-stroke: 1.5px rgba(var(--parchment-rgb), .09);
}
.ghost-podcast {
  bottom: 210px; left: -30px;
  font-size: clamp(120px, 13vw, 190px);
  color: rgba(var(--parchment-rgb), .045);
}
.hero-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 104px 64px 96px; }
.eyebrow {
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  color: var(--lime);
  margin-bottom: 36px;
}
.hero-h1 {
  margin: 0; font-size: clamp(72px, 9.2vw, 120px); line-height: 1.02;
  font-weight: 800; letter-spacing: -0.03em; color: var(--parchment);
}
.h1-line { display: block; }
.h1-word { display: inline-block; }
.h1-word-lime { color: var(--lime); }

/* Clip-wipe headline: words visible by default; .hero-play orchestrates */
.hero-play .hw-wipe {
  animation: hwWipe .64s cubic-bezier(.2, .7, .2, 1) calc(var(--i) * 90ms) both;
}
.hero-play .h1-word-lime {
  background: linear-gradient(105deg, var(--lime) 42%, #ECFFA6 50%, var(--lime) 58%);
  background-size: 260% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hwWipe .64s cubic-bezier(.2, .7, .2, 1) calc(var(--i) * 90ms) both,
             hwSheen .9s ease 1.1s both;
}
@keyframes hwWipe {
  from { clip-path: inset(-0.15em 100% -0.15em 0); }
  to { clip-path: inset(-0.15em -0.05em -0.15em 0); }
}
@keyframes hwSheen {
  to { background-position: 0% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-play .hw-wipe, .hero-play .h1-word-lime { animation: none; clip-path: none; }
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 72px; align-items: start; }
.hero-copy { padding-top: 116px; max-width: 560px; }
.hero-sub {
  margin: 0 0 36px; font-size: 19px; line-height: 1.55; color: rgba(var(--parchment-rgb), .72);
  border-left: 1px solid rgba(var(--moss-rgb), .9); padding-left: 22px;
}
.micro { margin-top: 14px; font-size: 13px; color: rgba(var(--parchment-rgb), .5); }
.micro-dim { font-size: 12.5px; color: rgba(var(--parchment-rgb), .5); }
.hero-panel-col { margin-top: max(-126px, -9.2vw); }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  margin-top: 84px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: rgba(var(--parchment-rgb), .45);
  transition: opacity .4s ease;
}
.scroll-cue-arrow { width: 15px; height: 15px; animation: cueNudge 1.8s ease-in-out infinite; }
.scroll-cue-hidden { opacity: 0; }
@keyframes cueNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-arrow { animation: none; }
}

/* ---------- Statement band: words light up as you scroll ---------- */
.statement { padding: 180px 0 210px; }
.statement-kicker {
  max-width: 1240px; margin: 0 auto 26px; padding: 0 64px;
  font-size: 13.5px; font-weight: 600; color: rgba(var(--parchment-rgb), .5);
}
.statement-text {
  max-width: 1240px; margin: 0 auto; padding: 0 64px;
  font-size: clamp(44px, 5.6vw, 84px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance;
}
.st-word { color: rgba(var(--parchment-rgb), .16); transition: color .35s ease; }
.st-word.lit { color: var(--parchment); }
.st-word-lime.lit { color: var(--lime); }
@media (prefers-reduced-motion: reduce) {
  .st-word { color: var(--parchment); }
  .st-word-lime { color: var(--lime); }
}

/* ---------- Tool orbit: the stack we cover, in slow rotation ---------- */
.tool-orbit { position: relative; width: 460px; height: 460px; margin-left: auto; }
.tool-orbit::before, .tool-orbit::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(var(--moss-rgb), .5); pointer-events: none;
}
.tool-orbit::before { inset: calc(50% - 116px); }
.tool-orbit::after { inset: calc(50% - 200px); }
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(var(--parchment-rgb), .045);
  border: 1px solid rgba(var(--moss-rgb), .9);
  display: flex; align-items: center; justify-content: center;
}
/* Rings must not intercept the pointer: the outer ring's full-size box sits
   over the inner ring and steals its hover. Faces re-enable pointer events. */
.orbit-ring { position: absolute; inset: 0; animation: orbitSpin var(--speed) linear infinite; pointer-events: none; }
.orbit-ring-inner .orbit-item { --r: 116px; }
.orbit-ring-outer .orbit-item { --r: 200px; }
.orbit-item { position: absolute; top: 50%; left: 50%; transform: rotate(var(--a)); }
.orbit-chip { position: absolute; transform: translate(-50%, -50%) translateY(calc(var(--r) * -1)); display: block; }
.orbit-icon {
  display: block;
  transform: rotate(calc(var(--a) * -1));
  animation: orbitCounter var(--speed) linear infinite;
}
.orbit-face {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(var(--parchment-rgb), .07);
  border: 1px solid rgba(var(--moss-rgb), 1);
  box-shadow: 0 6px 22px rgba(var(--forest-black-rgb), .45);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer; pointer-events: auto;
  transition: transform .18s ease, border-color .18s ease, opacity .18s ease, background .18s ease;
}
.orbit-face svg { width: 28px; height: 28px; fill: rgba(var(--parchment-rgb), .95); transition: fill .18s ease; }
.orbit-mono { font-family: var(--mono); font-size: 15px; color: rgba(var(--parchment-rgb), .85); transition: color .18s ease; }
.orbit-tag {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  padding: 4px 10px; border-radius: 6px; white-space: nowrap;
  background: var(--forest); border: 1px solid rgba(var(--moss-rgb), .9);
  font-size: 12px; font-weight: 500; color: var(--parchment);
  opacity: 0; pointer-events: none; transition: opacity .18s ease;
}
/* Hover: pause the sky, pull the tool forward, dim the rest */
.tool-orbit:hover .orbit-ring, .tool-orbit:hover .orbit-icon { animation-play-state: paused; }
.tool-orbit:hover .orbit-face { opacity: .35; }
.tool-orbit:hover .orbit-face:hover {
  opacity: 1; transform: scale(1.32);
  border-color: var(--lime); background: rgba(var(--parchment-rgb), .12); z-index: 5;
}
.tool-orbit .orbit-face:hover svg { fill: var(--lime); }
.tool-orbit .orbit-face:hover .orbit-mono { color: var(--lime); }
.tool-orbit .orbit-face:hover .orbit-tag { opacity: 1; }
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbitCounter {
  from { transform: rotate(calc(var(--a) * -1)); }
  to { transform: rotate(calc(var(--a) * -1 - 360deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-icon { animation: none; }
}

.panel-caption {
  margin-top: 16px; margin-bottom: 10px; font-family: var(--sans); font-size: 12.5px;
  color: rgba(var(--parchment-rgb), .45); text-align: right;
}

/* ---------- Newsletter issues ---------- */
.issues { padding: 40px 0 120px; }
.issues-inner { max-width: 1240px; margin: 0 auto; padding: 0 64px; }
.issues-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 38px; }
.issues-note { font-size: 14px; color: rgba(var(--parchment-rgb), .55); }
.issue-cards-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }
.issue-card {
  display: block; border-radius: 18px; overflow: hidden;
  background: rgba(var(--parchment-rgb), .045);
  border: 1px solid rgba(var(--moss-rgb), .9);
  color: inherit; text-decoration: none;
}
.issue-card:hover { text-decoration: none; border-color: rgba(var(--moss-rgb), 1); }
.issue-thumb {
  aspect-ratio: 16 / 9;
  /* --thumb is set per card; the brand gradient shows until cover art exists */
  background:
    var(--thumb, linear-gradient(transparent, transparent)) center / cover no-repeat,
    radial-gradient(120% 140% at 82% 18%, rgba(var(--lime-rgb), .22), transparent 52%),
    linear-gradient(150deg, var(--pine), var(--forest) 62%, var(--deep-green));
  border-bottom: 1px solid rgba(var(--moss-rgb), .7);
}
.issue-card-body { padding: 22px 24px 24px; }
.issue-card-meta { font-size: 12.5px; font-weight: 600; color: rgba(var(--parchment-rgb), .5); margin-bottom: 8px; }
.issue-card-title { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: var(--parchment); margin-bottom: 10px; }
.issue-card-teaser { margin: 0 0 16px; font-size: 14.5px; line-height: 1.6; color: rgba(var(--parchment-rgb), .65); }
.issue-card-read { font-size: 14px; font-weight: 600; color: var(--lime); }

/* ---------- Episodes (Parchment band) ---------- */
.episodes { background: var(--parchment); padding: 110px 0 96px; }
.episodes-inner { max-width: 1240px; margin: 0 auto; padding: 0 64px; }
.episodes-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 42px; }
.h2 { margin: 0; font-size: 42px; font-weight: 700; letter-spacing: -0.02em; color: var(--parchment); }
.h2-forest { color: var(--forest); }
.all-episodes {
  font-size: 14.5px; font-weight: 500; color: rgba(var(--forest-rgb), .72); cursor: pointer;
  display: inline-block; transition: color .25s ease, transform .25s ease;
}
.all-episodes:hover { color: var(--forest); transform: translateX(3px); }
.ep-row {
  display: grid; grid-template-columns: 150px minmax(0, 1fr) 150px; gap: 40px; align-items: center;
  padding: 38px 14px; border-top: 1px solid rgba(var(--forest-rgb), .16);
  border-radius: 12px;
  cursor: pointer; transition: background .3s ease;
}
.ep-row:hover { background: rgba(var(--forest-rgb), .04); }
.ep-row-last { border-bottom: 1px solid rgba(var(--forest-rgb), .16); }
.ep-num { font-family: var(--mono); font-size: 44px; font-weight: 400; color: var(--forest); letter-spacing: .02em; }
.ep-title { font-size: 25px; font-weight: 700; letter-spacing: -0.01em; color: var(--forest); margin-bottom: 8px; }
.ep-desc { font-size: 15.5px; line-height: 1.55; color: var(--off-black); }
.ep-meta { font-family: var(--sans); font-size: 13.5px; color: var(--mid-grey); text-align: right; }
.platforms { margin-top: 30px; font-family: var(--sans); font-size: 13.5px; color: var(--mid-grey); }

/* ---------- What you get (Premium, Moss borders) ---------- */
.premium-section { position: relative; overflow: hidden; padding-top: 150px; }
.premium-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 64px; }
.premium-inner .h2 { margin-bottom: 48px; }
.premium-panel {
  background: rgba(var(--parchment-rgb), .045);
  border: 1px solid rgba(var(--moss-rgb), .9);
  border-radius: 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(var(--forest-black-rgb), .38);
  padding: 54px;
  display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 64px; align-items: center;
}
.eyebrow-panel { font-size: 12.5px; margin-bottom: 18px; }
.h3 { margin: 0 0 14px; font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: var(--parchment); }
.premium-sub { margin: 0 0 40px; font-size: 16.5px; line-height: 1.6; color: rgba(var(--parchment-rgb), .65); max-width: 440px; }
.premium-cta { display: flex; align-items: center; gap: 16px; min-height: 48px; }
.waitlist-form .email-input-footer { max-width: 280px; }
.waitlist-done { font-size: 15px; color: rgba(var(--parchment-rgb), .85); }
.btn-lime:disabled { opacity: .75; cursor: default; }
.premium-item {
  padding: 18px 0; border-top: 1px solid rgba(var(--moss-rgb), .75);
  font-size: 16px; color: rgba(var(--parchment-rgb), .9);
  transition: transform .25s ease;
}
.premium-item:hover { transform: translateX(4px); }
.premium-item-last { border-bottom: 1px solid rgba(var(--moss-rgb), .75); }
.free-line { margin: 26px 0 0; font-size: 15px; color: rgba(var(--parchment-rgb), .62); }

/* ---------- Founders strip ---------- */
.founders { position: relative; z-index: 1; margin-top: 150px; border-top: 1px solid rgba(var(--parchment-rgb), .1); }
.founders-inner {
  max-width: 1240px; margin: 0 auto; padding: 40px 64px;
  display: flex; align-items: center; gap: 28px;
}
.founders-photos { display: flex; gap: 12px; flex: none; }
.founders-photo { width: 72px; height: 88px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(var(--moss-rgb), .9); }
.founders-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founders-names { font-size: 15.5px; font-weight: 600; color: var(--parchment); margin-bottom: 4px; }
.founders-line { font-size: 14px; line-height: 1.5; color: rgba(var(--parchment-rgb), .6); }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid rgba(var(--parchment-rgb), .1); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 92px 64px 44px; }
.footer-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.wordmark-footer { font-size: 17px; margin-bottom: 10px; }
.footer-tag { font-size: 14.5px; color: rgba(var(--parchment-rgb), .6); margin-bottom: 30px; }
.footer-social { display: flex; gap: 22px; flex-wrap: wrap; }
.social-link {
  font-size: 13.5px; font-weight: 500; color: rgba(var(--parchment-rgb), .6); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s ease, transform .25s ease;
}
.social-link:hover { color: var(--parchment); transform: translateY(-2px); text-decoration: none; }
.social-icon { width: 16px; height: 16px; fill: currentColor; flex: none; }
.social-link-pending { color: rgba(var(--parchment-rgb), .35); cursor: default; }
.social-link-pending:hover { color: rgba(var(--parchment-rgb), .35); transform: none; }
.footer-form-title { font-size: 14px; font-weight: 600; color: var(--parchment); margin-bottom: 14px; }
.footer-bar {
  margin-top: 64px; padding-top: 22px; border-top: 1px solid rgba(var(--parchment-rgb), .08);
  display: flex; justify-content: space-between; align-items: baseline;
}
.footer-copyright { font-size: 12.5px; color: rgba(var(--parchment-rgb), .45); }
.footer-motto { font-family: var(--sans); font-size: 12.5px; color: rgba(var(--parchment-rgb), .38); }

/* ---------- Gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 60; background: var(--forest); overflow: auto;
  transition: opacity .55s ease, transform .55s ease;
}
html.gate-off .gate { display: none; }
html:not(.gate-off) body { overflow: hidden; }
.gate-inner {
  position: relative; z-index: 1; min-height: 100%; max-width: 1240px; margin: 0 auto;
  padding: 44px 64px 60px; display: flex; flex-direction: column;
}
.gate-grid {
  flex: 1; display: grid; grid-template-columns: minmax(0, 1fr) 470px; gap: 80px;
  align-items: center; padding: 48px 0;
}
.gate-h1 {
  margin: 0 0 28px; font-size: clamp(56px, 5.9vw, 76px); line-height: 1.04;
  font-weight: 800; letter-spacing: -0.03em; color: var(--parchment);
}
.gate-sub { margin: 0 0 40px; font-size: 17.5px; line-height: 1.6; color: rgba(var(--parchment-rgb), .68); max-width: 520px; }
.gate-skip { margin-top: 32px; }
.gate .brand-lockup-wrap { margin-bottom: 8px; }
.gate-skip-link {
  font-size: 14.5px; color: rgba(var(--parchment-rgb), .55);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  transition: color .25s ease;
}
.gate-skip-link:hover { color: rgba(var(--parchment-rgb), .88); }
.gate-photos { display: flex; gap: 22px; align-items: flex-start; justify-content: flex-end; }
.gate-photo {
  width: 210px; height: 260px; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(var(--parchment-rgb), .16);
  box-shadow: 0 24px 50px rgba(var(--forest-black-rgb), .4);
}
.gate-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gate-photo-2 { margin-top: 44px; }
.gate-photo-caption {
  margin-top: 20px; font-family: var(--sans); font-size: 12.5px;
  color: rgba(var(--parchment-rgb), .5); text-align: right;
}

/* ---------- Post-subscribe profile overlay ---------- */
.profile-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(var(--forest-black-rgb), .78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.profile-overlay[hidden] { display: none; }
.profile-panel {
  width: 100%; max-width: 520px;
  background: var(--forest);
  border: 1px solid rgba(var(--moss-rgb), .9);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(var(--forest-black-rgb), .5);
  padding: 36px;
}
.profile-progress { margin-bottom: 22px; }
.profile-sub { margin: 0 0 24px; font-size: 15px; line-height: 1.55; color: rgba(var(--parchment-rgb), .65); }
.profile-input { width: 100%; margin-bottom: 20px; }
.profile-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profile-name-row .profile-input { margin-bottom: 20px; }
.kicker-dim { font-family: var(--sans); font-size: 12px; font-weight: 500; color: rgba(var(--parchment-rgb), .5); }
.profile-tile.selected { border-color: var(--lime); background: rgba(var(--lime-rgb), .12); }
.profile-tiles-multi { margin-bottom: 20px; }
.profile-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.profile-tile {
  padding: 18px 14px; border-radius: 12px;
  border: 1px solid rgba(var(--moss-rgb), .9);
  background: rgba(var(--parchment-rgb), .045);
  color: var(--parchment); font-size: 14.5px; font-weight: 500; font-family: var(--sans);
  cursor: pointer; text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.profile-tile:hover { border-color: var(--lime); background: rgba(var(--parchment-rgb), .08); transform: translateY(-2px); }
.profile-actions { display: flex; align-items: center; gap: 18px; }
.profile-skip {
  font-size: 14px; color: rgba(var(--parchment-rgb), .55);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  transition: color .25s ease;
}
.profile-skip:hover { color: rgba(var(--parchment-rgb), .88); }
@media (max-width: 767px) {
  .profile-panel { padding: 26px 20px; }
  .profile-tiles { grid-template-columns: 1fr; }
}

/* ---------- Tilt cards ---------- */
.tilt-card {
  position: relative;
  transition: transform .22s cubic-bezier(.2, .7, .2, 1),
              box-shadow .22s cubic-bezier(.2, .7, .2, 1),
              filter .22s cubic-bezier(.2, .7, .2, 1);
}
.tilt-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(var(--parchment-rgb), .22), transparent 62%);
  mix-blend-mode: screen; opacity: 0; pointer-events: none;
  transition: opacity .22s cubic-bezier(.2, .7, .2, 1);
}
.tilt-card.is-tilting { z-index: 5; }
.tilt-card.is-tilting::after { opacity: 1; }

/* ---------- Reveal transitions (states applied by JS) ---------- */
[data-hw], [data-gw] { transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1); }
[data-last] { transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1), text-shadow .7s ease; }
[data-reveal] { transition: opacity .7s ease, transform .7s ease; }
[data-panel] { transition: opacity .8s ease, transform .8s ease; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-inner, .hero-inner, .issues-inner, .episodes-inner, .premium-inner, .founders-inner, .footer-inner, .gate-inner { padding-left: 36px; padding-right: 36px; }
  .hero-inner { padding-bottom: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel-col { margin-top: 0; max-width: 480px; }
  .premium-panel { grid-template-columns: 1fr; gap: 36px; padding: 40px; }
  .gate-grid { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .gate-photos { justify-content: flex-start; }
  .gate-photo { width: 160px; height: 200px; }
  .gate-photo-caption { text-align: left; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav { top: 10px; padding: 0 12px; }
  .nav-pill { height: 62px; }
}

@media (max-width: 767px) {
  .nav-inner, .hero-inner, .issues-inner, .episodes-inner, .premium-inner, .founders-inner, .footer-inner, .gate-inner { padding-left: 20px; padding-right: 20px; }
  .hero-inner { padding-top: 64px; padding-bottom: 64px; }
  .issues { padding: 8px 0 72px; }
  .tool-orbit { width: 320px; height: 320px; margin: 0 auto; }
  .tool-orbit::before { inset: calc(50% - 80px); }
  .tool-orbit::after { inset: calc(50% - 138px); }
  .orbit-ring-inner .orbit-item { --r: 80px; }
  .orbit-ring-outer .orbit-item { --r: 138px; }
  .orbit-face { width: 50px; height: 50px; }
  .orbit-face svg { width: 20px; height: 20px; }
  .orbit-center { width: 72px; height: 72px; }
  .orbit-center img { width: 44px; height: 44px; }
  .hero-copy { padding-top: 24px; }
  .hero-sub { padding-left: 16px; }
  .ghost-newsletter { font-size: 88px; top: 10px; right: -40px; }
  .ghost-podcast { font-size: 74px; bottom: 320px; left: -20px; }
  .scroll-cue { margin-top: 40px; }
  .statement { padding: 110px 0; }
  .statement-text { font-size: clamp(34px, 9.4vw, 48px); }
  .hero-h1 { font-size: clamp(44px, 13.5vw, 72px); }
  .gate-h1 { font-size: clamp(40px, 11.5vw, 56px); }
  .hero-sub { font-size: 17px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form .email-input { width: 100%; }
  .subscribe-form .btn-hero, .subscribe-form .btn-footer { width: 100%; }
  .subscribe-form-footer { flex-direction: column; }
  /* flex: 1 governs height once the form stacks vertically, collapsing the input */
  .subscribe-form .email-input-footer { flex: none; height: 48px; }
  .episodes { padding: 72px 0 64px; }
  .h2 { font-size: 32px; }
  .episodes-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 28px; }
  .ep-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 6px; }
  .ep-num { font-size: 30px; }
  .ep-title { font-size: 20px; }
  .ep-meta { text-align: left; }
  .premium-section { padding-top: 88px; }
  .premium-panel { padding: 28px 22px; }
  .h3 { font-size: 26px; }
  .founders { margin-top: 88px; }
  .founders-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding-top: 32px; padding-bottom: 32px; }
  .footer-inner { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bar { flex-direction: column; gap: 10px; margin-top: 44px; }
  .gate-inner { padding-top: 28px; }
  .gate-grid { padding: 32px 0; }
  .gate-sub { font-size: 16px; }
  .gate-photo { width: 128px; height: 160px; }
  .gate-photo-2 { margin-top: 24px; }
}
