/* ── GREASE & INK — MAIN STYLESHEET ────────────────────────── */

:root {
  --charcoal:       #111111;
  --charcoal-mid:   #191919;
  --charcoal-light: #232323;
  --charcoal-card:  #1a1a1a;
  --cream:          #f2ead8;
  --cream-dim:      #a89e88;
  --cream-faint:    rgba(242,234,216,0.06);
  --red:            #bf3326;
  --red-hover:      #d93f30;
  --gold:           #b8966e;
  --gold-light:     #d4aa84;
  --blue-jdm:       #5a9ab5;
  --rule:           rgba(242,234,216,0.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Courier Prime', monospace;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.22;
  mix-blend-mode: overlay;
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ── FADE-UP ANIMATION ────────────────────────────────────── */
.fu { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.42s; }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 1.2rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
  background: linear-gradient(to bottom, rgba(17,17,17,0.96), transparent);
}
nav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.15em;
}
.nav-logo .amp { color: var(--red); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1em; line-height: 1; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--red);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-hover); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem 6.5rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--red);
  display: block;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 11vw, 10rem);
  line-height: 0.87;
  letter-spacing: 0.015em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.hero-title .amp {
  color: var(--red);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.72em;
  vertical-align: middle;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2.8rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.hero-body {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--cream-dim);
  max-width: 42ch;
  margin-bottom: 3.2rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--red);
}
.hero-actions { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--cream);
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,158,136,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream-dim); }
.hero-fine {
  font-size: 0.65rem;
  color: rgba(168,158,136,0.5);
  letter-spacing: 0.1em;
  margin-top: 1.2rem;
}

/* Hero right panel */
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #181818 0%, #0a0a0a 100%);
  border-left: 1px solid var(--rule);
}
.hero-panel-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3.5rem;
}
.mock-envelope {
  width: 100%;
  max-width: 340px;
  position: relative;
}
.mock-bg-card {
  position: absolute;
  border-radius: 1px;
}
.mock-bg-1 {
  width: 58%; height: 40%;
  bottom: -2%; left: 0%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,150,110,0.15);
  transform: rotate(-5deg);
}
.mock-bg-2 {
  width: 52%; height: 36%;
  bottom: 0%; right: -2%;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(192,57,43,0.2);
  transform: rotate(4deg);
}
.mock-main {
  position: relative;
  background: #161616;
  border: 1px solid rgba(242,234,216,0.1);
  padding: 2.2rem 2rem;
  margin-bottom: 4rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.mock-inner {
  border: 1px solid rgba(192,57,43,0.35);
  padding: 1.8rem 1.5rem;
}
.mock-issue { font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.mock-car { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.06em; color: var(--cream); line-height: 1; margin-bottom: 0.3rem; }
.mock-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.6rem; color: var(--gold); margin-bottom: 1.3rem; letter-spacing: 0.04em; }
.mock-line { height: 1px; background: linear-gradient(to right, var(--red), transparent); margin-bottom: 1.1rem; }
.mock-row { display: flex; justify-content: space-between; font-size: 0.5rem; letter-spacing: 0.1em; color: var(--cream-dim); margin-bottom: 0.45rem; }
.mock-val { color: var(--cream); font-weight: 700; }
.mock-ft { font-size: 0.44rem; letter-spacing: 0.22em; text-align: center; color: rgba(184,150,110,0.35); margin-top: 1.3rem; text-transform: uppercase; }
.hero-vtext {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.56rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(184,150,110,0.18);
  white-space: nowrap;
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-strip {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 24s linear infinite;
}
.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  color: rgba(17,17,17,0.75);
  padding: 0 2.5rem;
}
.marquee-inner span.sep { color: rgba(17,17,17,0.3); padding: 0 0.4rem; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── INSIDE ───────────────────────────────────────────────── */
.inside {
  padding: 9rem 6.5rem;
  background: var(--charcoal-mid);
}
.inside-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 5rem;
}
.inside-intro { font-size: 0.9rem; line-height: 1.95; color: var(--cream-dim); }
.items-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--rule);
}
.item-col {
  padding: 2.8rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.item-col:last-child { border-right: none; }
.item-col:hover { background: rgba(255,255,255,0.025); }
.item-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  color: rgba(192,57,43,0.12);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.35s;
}
.item-col:hover .item-num { color: rgba(192,57,43,0.22); }
.item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.item-text { font-size: 0.74rem; line-height: 1.75; color: var(--cream-dim); }
.item-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.item-col:hover .item-bar { transform: scaleX(1); }

/* ── CARS / HINTS ─────────────────────────────────────────── */
.lineup {
  padding: 9rem 6.5rem;
  background: var(--charcoal);
}
.lineup-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.lineup-intro { font-size: 0.875rem; line-height: 1.9; color: var(--cream-dim); max-width: 44ch; }
.hints-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}
.hint-card {
  background: var(--charcoal);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.hint-card:hover { background: #181818; }
.hint-issue {
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}
.hint-category {
  display: inline-block;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border: 1px solid;
  margin-bottom: 1.1rem;
}
.cat-m { color: var(--red); border-color: rgba(191,51,38,0.35); }
.cat-j { color: var(--blue-jdm); border-color: rgba(90,154,181,0.32); }
.cat-o { color: var(--gold); border-color: rgba(184,150,110,0.32); }
.cat-e { color: #a8b8a0; border-color: rgba(168,184,160,0.32); }
.hint-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--cream-dim);
  transition: color 0.3s;
}
.hint-card:hover .hint-text { color: var(--cream); }
.hint-coming {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(168,158,136,0.3);
  margin-top: 1.2rem;
}
.hint-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.hint-bar.m { background: var(--red); }
.hint-bar.j { background: var(--blue-jdm); }
.hint-bar.o { background: var(--gold); }
.hint-bar.e { background: #a8b8a0; }
.hint-card:hover .hint-bar { transform: scaleY(1); }

/* ── MANIFESTO ────────────────────────────────────────────── */
.manifesto {
  padding: 7rem 6.5rem;
  background: var(--red);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.manifesto::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  color: rgba(17,17,17,0.88);
  max-width: 30ch;
  margin: 0 auto 1.8rem;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.manifesto-attr {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
  position: relative;
  z-index: 1;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how {
  padding: 9rem 6.5rem;
  background: var(--charcoal-mid);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 9rem;
  align-items: start;
}
.how-left { position: sticky; top: 8rem; }
.how-label { margin-bottom: 1.5rem; }
.how-intro { font-size: 0.875rem; line-height: 1.9; color: var(--cream-dim); max-width: 36ch; margin-top: 1.5rem; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  gap: 1.8rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.step:first-child { padding-top: 0; }
.step-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(192,57,43,0.18);
  line-height: 1;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.78rem; line-height: 1.75; color: var(--cream-dim); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing {
  padding: 9rem 6.5rem;
  background: var(--charcoal);
  text-align: center;
}
.pricing-inner { max-width: 640px; margin: 0 auto; }
.price-card {
  border: 1px solid var(--rule);
  padding: 4.5rem 4rem;
  margin: 3.5rem 0;
  position: relative;
  background: var(--charcoal-mid);
}
.price-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: var(--red);
}
.price-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.price-cadence {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 3rem;
}
.price-list { list-style: none; margin-bottom: 3.2rem; }
.price-list li {
  font-size: 0.8rem;
  color: var(--cream-dim);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  letter-spacing: 0.04em;
}
.price-list li::before { content: '—'; color: var(--red); font-size: 0.65rem; }
.btn-sub {
  display: block;
  width: 100%;
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--cream);
  padding: 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-sub:hover { background: var(--gold-light); }
.price-fine {
  font-size: 0.66rem;
  color: rgba(168,158,136,0.38);
  letter-spacing: 0.08em;
  margin-top: 1.8rem;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #0a0a0a;
  padding: 5rem 6.5rem 2.5rem;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--rule);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.1em;
}
.footer-logo .amp { color: var(--red); font-family: 'Playfair Display', serif; font-style: italic; }
.footer-blurb { font-size: 0.78rem; line-height: 1.8; color: var(--cream-dim); max-width: 34ch; }
.footer-col-label { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--red); margin-bottom: 1.3rem; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a { font-size: 0.78rem; color: var(--cream-dim); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.65rem; color: rgba(168,158,136,0.28); letter-spacing: 0.1em; }
.footer-url { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(184,150,110,0.28); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 3rem 5rem; }
  .inside { padding: 5rem 2.5rem; }
  .inside-head { grid-template-columns: 1fr; gap: 2rem; }
  .items-row { grid-template-columns: 1fr 1fr; }
  .lineup { padding: 5rem 2.5rem; }
  .lineup-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .hints-grid { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 5rem 2.5rem; }
  .how { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 4rem; }
  .how-left { position: static; }
  .pricing { padding: 5rem 2rem; }
  .price-card { padding: 3rem 2rem; }
  footer { padding: 3.5rem 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hamburger { display: flex; }
  .waitlist { padding: 5rem 2.5rem; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .items-row  { grid-template-columns: 1fr; }
  .hints-grid { grid-template-columns: 1fr; }
  .hero-left  { padding: 7rem 1.5rem 4rem; }
  .waitlist-input-row { flex-direction: column; }
  .btn-waitlist { width: 100%; }
}

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 900;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ──────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 850;
  background: rgba(10,10,10,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }

/* ── WAITLIST ─────────────────────────────────────────────── */
.waitlist {
  padding: 9rem 6.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.waitlist-desc {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--cream-dim);
  margin-top: 1.5rem;
  max-width: 40ch;
}
.waitlist-form {
  position: relative;
}
.waitlist-input-row {
  display: flex;
  gap: 0;
}
.waitlist-input-row input[type="email"] {
  flex: 1;
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 1.2rem 1.5rem;
  background: var(--charcoal-mid);
  border: 1px solid var(--rule);
  border-right: none;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input-row input[type="email"]:focus {
  border-color: var(--red);
}
.waitlist-input-row input[type="email"]::placeholder {
  color: var(--cream-dim);
  opacity: 0.5;
}
.btn-waitlist {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--red);
  border: 1px solid var(--red);
  padding: 1.2rem 2.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-waitlist:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-waitlist:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.waitlist-fine {
  font-size: 0.62rem;
  color: rgba(168,158,136,0.38);
  letter-spacing: 0.08em;
  margin-top: 0.9rem;
}
.waitlist-success {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(191,51,38,0.08);
  border: 1px solid rgba(191,51,38,0.25);
}
.waitlist-check {
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
}
.waitlist-success-msg {
  font-size: 0.82rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9000;
  background: var(--charcoal-mid);
  border: 1px solid var(--rule);
  padding: 1rem 2.2rem;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast-msg {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

/* ── SHOWCASE ISSUE PAGE ──────────────────────────────────── */

.showcase-hero {
  padding: 12rem 5rem 6rem;
  text-align: center;
}
.showcase-title {
  margin-bottom: 0.8rem;
}
.showcase-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* Dark Spec Card */
.spec-card-section {
  padding: 4rem 2rem 8rem;
  display: flex;
  justify-content: center;
}
.spec-card {
  background: var(--charcoal-card);
  padding: 1.5rem;
  max-width: 800px;
  width: 100%;
  border: 1px solid var(--charcoal-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.spec-card-inner {
  border: 1px solid var(--red);
  padding: 4rem 3.5rem;
}
.spec-header {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--cream-dim);
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.spec-titles {
  text-align: center;
  margin-bottom: 4rem;
}
.spec-titles h2 {
  font-family: 'Courier Prime', monospace;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.spec-titles h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4rem;
}
.spec-table td {
  padding: 1rem 0;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.spec-table td:first-child {
  color: var(--cream-dim);
  width: 30%;
}
.spec-table td.dots {
  width: 35%;
  border-bottom: 2px dotted var(--charcoal-light);
  position: relative;
  top: -8px;
  opacity: 0.5;
}
.spec-table td:last-child {
  text-align: right;
  font-weight: 700;
}

.spec-did-you-know, .spec-cultural {
  border-top: 1px solid var(--red);
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.spec-did-you-know h4, .spec-cultural h4 {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.spec-did-you-know p, .spec-cultural p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream-dim);
}

.spec-footer {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--cream-dim);
  margin-top: 4rem;
  opacity: 0.6;
}

/* Light Story Letter */
.story-letter-section {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  background: var(--charcoal-mid);
}
.story-letter-paper {
  background: var(--cream);
  color: var(--charcoal);
  padding: 6rem 5rem;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.story-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.story-header .brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
.story-header .issue-text {
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  align-self: flex-end;
}
.story-subhead {
  display: flex;
  justify-content: space-between;
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  margin-bottom: 4rem;
}

.story-content p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: var(--charcoal-light);
}
.story-content p:last-child {
  margin-bottom: 0;
}
.story-divider {
  border: none;
  border-top: 1px solid rgba(17,17,17,0.1);
  margin: 3rem 0;
  width: 40%;
}
.story-signoff-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal-light);
}
.story-signature {
  margin-top: 2rem;
  font-size: 0.85rem;
}

.story-footer {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--cream-dim);
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 2px solid var(--red);
  background: var(--charcoal);
  color: var(--cream-dim);
  padding: 2rem;
  margin: 6rem -5rem -6rem; /* pull full width of card */
}

/* CTA */
.showcase-cta-section {
  padding: 8rem 2rem;
  text-align: center;
}
.showcase-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.showcase-cta-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .spec-card-inner { padding: 2rem 1.5rem; }
  .spec-titles h2 { font-size: 1.5rem; }
  .spec-table td.dots { display: none; }
  .spec-table td { display: block; width: 100%!important; text-align: left!important; padding: 0.4rem 0; }
  .spec-table tr { margin-bottom: 1.5rem; display: block; border-bottom: 1px dashed var(--charcoal-light); }
  
  .story-letter-paper { padding: 3rem 1.5rem; }
  .story-header { flex-direction: column; gap: 0.5rem; }
  .story-subhead { flex-direction: column; gap: 0.5rem; }
  .story-footer { margin: 4rem -1.5rem -3rem; }
}
