/* ============================================================
   MORAL RESISTANCE — Design System
   Editorial broadcast: a high-contrast serif masthead, news-grid
   structure, one red accent, dark gravitas + generous air.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&family=Libre+Franklin:wght@400;500;600;700;800&display=swap');

:root {
  /* Palette */
  --bg:        #ffffff;
  --bg-soft:   #f5f5f7;   /* Apple's signature light grey */
  --bg-ink:    #000000;   /* full-black cinematic sections */
  --ink:       #1d1d1f;   /* primary text */
  --ink-soft:  #6e6e73;   /* secondary text */
  --ink-faint: #86868b;   /* tertiary / captions */
  --line:      #d2d2d7;   /* hairlines */
  --line-dark: rgba(255,255,255,.16);
  --accent:    #c8102e;   /* editorial red — used sparingly */
  --accent-hi: #e11d36;

  /* Type */
  --font: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Inter",
          "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Libre Caslon Display", "Times New Roman", Georgia, serif;

  /* Rhythm */
  --nav-h: 52px;
  --maxw: 1200px;
  --pad: clamp(22px, 5vw, 64px);
  --radius: 18px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.47;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Type scale ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow--muted { color: var(--ink-faint); }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; }
.display {
  font-family: var(--font-display);
  font-size: clamp(46px, 8.8vw, 116px);
  font-weight: 400; letter-spacing: -0.015em; line-height: .96;
}
.headline { font-family: var(--font-display); font-size: clamp(33px, 5vw, 66px); font-weight: 400; letter-spacing: -0.005em; line-height: 1.02; }
.subhead  { font-size: clamp(19px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.02em; }
.lede     { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-soft); font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 12vh, 140px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1em; }

/* ---------- Buttons ---------- */
.btn {
  --c: #fff; --b: var(--ink);
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--b); color: var(--c);
  padding: 13px 24px; border-radius: 980px;
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: #000; transform: translateY(-1px); }
.btn--accent { --b: var(--accent); }
.btn--accent:hover { background: var(--accent-hi); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--onink { --b: #fff; --c: #000; }
.btn--onink:hover { background: #f0f0f0; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-weight: 500; font-size: 17px;
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVIGATION — translucent, blurred, Apple-style
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; height: 100%;
  padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 400; font-size: 19px; letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 11px;
}
.brand__mark {
  width: 22px; height: 22px; flex: none;
}
.nav__links { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.nav__links a {
  font-size: 14px; font-weight: 400; color: var(--ink); opacity: .82;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.cart-btn { position: relative; display: inline-flex; }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -7px; right: -9px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--accent); color: #fff;
  font-size: 10.5px; font-weight: 700; line-height: 17px;
  text-align: center; border-radius: 999px;
  transform: scale(0); transition: transform .3s var(--ease);
}
.cart-count.is-visible { transform: scale(1); }
.nav__burger { display: none; width: 24px; height: 24px; }
.nav__burger span { display:block; height:1.5px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); }

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 14px var(--pad) 26px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .3s var(--ease);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 20px; padding: 12px 0; width: 100%; opacity: 1; }
  .nav__burger { display: block; }
  .nav.is-menu .nav__burger span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav.is-menu .nav__burger span:nth-child(2){ opacity: 0; }
  .nav.is-menu .nav__burger span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  color: #fff; background: var(--bg-ink);
  padding: calc(var(--nav-h) + 40px) var(--pad) 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, #2a2a2e 0%, #0a0a0b 55%, #000 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(100% 70% at 50% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(100% 70% at 50% 30%, #000 0%, transparent 75%);
}
.hero__glow {
  position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -12%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,16,46,.35), transparent 60%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; }
.hero .display { color: #fff; }
.hero__sub { margin-top: 22px; color: rgba(255,255,255,.74); font-size: clamp(17px,2vw,22px); font-weight: 400; }
.hero__cta { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: 13px; font-weight: 500; letter-spacing: .02em; color: #fff;
  margin-bottom: 26px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-hi);
  box-shadow: 0 0 0 0 rgba(225,29,54,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(225,29,54,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(225,29,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,29,54,0); }
}
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span { width: 1px; height: 30px; background: linear-gradient(rgba(255,255,255,.5), transparent); animation: drop 2.2s infinite var(--ease); }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   FEATURED EPISODE
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,5vw,72px);
  align-items: center;
}
@media (max-width: 860px){ .feature { grid-template-columns: 1fr; } }
.media {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  background: #111; box-shadow: 0 30px 80px -30px rgba(0,0,0,.4);
}
.media iframe, .media img { width: 100%; height: 100%; border: 0; object-fit: cover; }
.media__poster { position:absolute; inset:0; display:grid; place-items:center; cursor:pointer; }
.media__poster::after {
  content:""; position:absolute; inset:0; z-index:0;
  background: linear-gradient(135deg, #1a1a1e, #000);
}
/* Real thumbnail sits ABOVE the placeholder gradient (which only shows when there's no image). */
.media__poster img { position:absolute; inset:0; z-index:1; width:100%; height:100%; object-fit:cover; }
.media__play {
  position: relative; z-index:2; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; transition: transform .3s var(--ease), background .3s;
}
.media__poster:hover .media__play { transform: scale(1.08); background: var(--accent); }
.media__play svg { width: 26px; height: 26px; margin-left: 3px; fill: #fff; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
@media (max-width: 860px){ .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-soft); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -28px rgba(0,0,0,.28); }
.card__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card__media img, .card__media .ph { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.card__media .ph { display: block; }
.card__media .ph svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.card:hover .card__media img, .card:hover .card__media .ph { transform: scale(1.05); }
.card__body { padding: 22px 24px 26px; }
.card__tag { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.card__title { font-family: var(--font-display); font-size: 23px; font-weight: 400; margin: 9px 0 7px; letter-spacing: -0.005em; line-height: 1.12; }
.card__meta { font-size: 14px; color: var(--ink-faint); }

/* ---------- Broadcast episode cards ---------- */
.ep__media { position: relative; }
.ep__tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase; padding: 5px 9px; border-radius: 4px;
}
.ep__dur {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  background: rgba(0,0,0,.82); color: #fff; font-size: 12px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px; letter-spacing: .02em;
}
.ep__veil { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 48%); transition: background .4s var(--ease); }
.card:hover .ep__veil { background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.22)); }
.ep__play {
  position: absolute; z-index: 3; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.9);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.55); display: grid; place-items: center;
  opacity: .94; transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.card:hover .ep__play { transform: translate(-50%,-50%) scale(1); background: var(--accent); border-color: var(--accent); }
.ep__play svg { width: 22px; height: 22px; fill: #fff; margin-left: 2px; }

/* Lower-third bar on the featured player (broadcast) */
.lower-third {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px 18px; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}
.lower-third .ep__tag { position: static; }
.lower-third span.lt-title { color: #fff; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }

/* Section heads */
.shead { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.shead h2 { max-width: 18ch; }
.shead--rule { border-top: 2px solid var(--ink); padding-top: 22px; }

/* ============================================================
   DARK PANEL (manifesto / newsletter)
   ============================================================ */
.panel-ink { background: var(--bg-ink); color: #fff; }
.panel-ink .lede { color: rgba(255,255,255,.66); }
.panel-ink .eyebrow--muted { color: rgba(255,255,255,.5); }

/* Newsletter */
.signup { display: flex; gap: 10px; max-width: 460px; margin-top: 28px; flex-wrap: wrap; }
.signup input {
  flex: 1 1 220px; min-width: 0; padding: 14px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06);
  color: #fff; font-size: 16px; outline: none; transition: border-color .25s;
}
.signup input::placeholder { color: rgba(255,255,255,.5); }
.signup input:focus { border-color: rgba(255,255,255,.6); }
.signup-note { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ============================================================
   STORE
   ============================================================ */
.product {
  background: var(--bg-soft); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product:hover { transform: translateY(-4px); box-shadow: 0 28px 64px -30px rgba(0,0,0,.3); }
.product__media {
  aspect-ratio: 1; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.product__media svg { width: 100%; height: 100%; }
.product__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.product__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.product__desc { font-size: 14px; color: var(--ink-soft); margin-top: 5px; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.product__price { font-size: 19px; font-weight: 600; }
.add-btn {
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: 9px 18px; font-size: 14px; font-weight: 500;
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.add-btn:hover { background: var(--accent); }
.add-btn:active { transform: scale(.95); }
.add-btn.is-added { background: #2e7d32; }

.store-hero { padding: calc(var(--nav-h) + 80px) var(--pad) 0; text-align: center; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.scrim {
  position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,.4);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: min(420px, 92vw); background: var(--bg);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.3);
}
.drawer.is-open { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-size: 20px; }
.drawer__close { font-size: 26px; line-height: 1; color: var(--ink-soft); }
.drawer__close:hover { color: var(--ink); }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__empty { text-align: center; color: var(--ink-faint); padding: 80px 0; }
.line {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.line__thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; background: var(--bg-soft); }
.line__thumb svg { width: 100%; height: 100%; }
.line__name { font-size: 15px; font-weight: 600; }
.line__price { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty button { width: 22px; height: 22px; border-radius: 6px; background: var(--bg-soft); font-size: 16px; line-height: 1; color: var(--ink); }
.qty button:hover { background: var(--line); }
.qty span { font-size: 14px; min-width: 16px; text-align: center; }
.line__remove { font-size: 12px; color: var(--ink-faint); text-decoration: underline; align-self: start; }
.line__remove:hover { color: var(--accent); }
.drawer__foot { padding: 22px 24px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.drawer__foot .btn { width: 100%; justify-content: center; }
.drawer__note { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-ink); color: #fff; border-top: 1px solid var(--line-dark); padding-block: 64px; }
.footer .brand { color: #fff; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__cols { display: flex; gap: clamp(36px, 6vw, 88px); flex-wrap: wrap; }
.footer__col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,.7); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: .25s var(--ease); }
.socials a:hover { background: var(--accent); border-color: var(--accent); }
.socials a svg { fill: rgba(255,255,255,.85); }
.socials a:hover svg { fill: #fff; }
.socials svg { width: 17px; height: 17px; }
.footer__legal { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.45); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 30px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; z-index: 1300; opacity: 0; pointer-events: none;
  transition: .4s var(--ease); box-shadow: 0 16px 40px -16px rgba(0,0,0,.5);
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   JOIN POPUP (email capture on load)
   ============================================================ */
.join-scrim {
  position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center; padding: 22px;
  background: rgba(0,0,0,.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.join-scrim.is-open { opacity: 1; pointer-events: auto; }
.join {
  position: relative; width: 100%; max-width: 460px; background: var(--bg);
  border-radius: 22px; overflow: hidden; box-shadow: 0 40px 110px -30px rgba(0,0,0,.7);
  transform: translateY(18px) scale(.98); transition: transform .45s var(--ease);
}
.join-scrim.is-open .join { transform: none; }
.join__close {
  position: absolute; top: 12px; right: 14px; z-index: 4; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.4); color: #fff; font-size: 20px; line-height: 1; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: background .2s;
}
.join__close:hover { background: rgba(0,0,0,.7); }
.join__banner { background: var(--bg-ink); display: grid; place-items: center; padding: 30px 24px; min-height: 120px; }
.join__banner img { width: 100%; max-height: 170px; object-fit: contain; }
.join__lockup { display: flex; align-items: center; gap: 13px; color: #fff; }
.join__lockup .brand__mark { width: 34px; height: 34px; }
.join__lockup span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .09em; font-size: 19px; }
.join__body { padding: 26px 28px 30px; }
.join__body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(25px, 5vw, 30px); line-height: 1.08; letter-spacing: -0.01em; margin-top: 10px; }
.join__body > p { color: var(--ink-soft); font-size: 15px; margin-top: 11px; }
.join__form { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.join__form input[type=email] {
  flex: 1 1 200px; min-width: 0; padding: 13px 17px; border: 1px solid var(--line); border-radius: 999px;
  font: inherit; font-size: 15px; outline: none; transition: border-color .2s; background: var(--bg-soft);
}
.join__form input[type=email]:focus { border-color: var(--ink); background: #fff; }
.join__form .btn { flex: 0 0 auto; }
.join__note { font-size: 12px; color: var(--ink-faint); margin-top: 13px; text-align: center; }
.join__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.join__success { padding: 54px 30px; text-align: center; }
.join__success h2 { font-family: var(--font-display); font-weight: 400; font-size: 30px; }
.join__success p { color: var(--ink-soft); margin-top: 10px; }
