/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --paper:  #FAFAF7;
  --paper2: #F3F2ED;
  --sand:   #F0EADF;
  --ink:    #0B0B0C;
  --ink2:   #2A2A2E;
  --mute:   #6B6B74;
  --faint:  #9C9CA3;
  --line:   #E4E2DC;
  --line2:  #D8D6CF;
  --brand:  #1652F0;
  --brand2: #0E3DD4;
  --ok:     #0E7C3A;
  --warn:   #B0741A;

  --sans:  "Inter Tight", Inter, system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --serif: "Instrument Serif", "Times New Roman", serif;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

/* ── Layout ────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.section.no-border { border-top: 0; }
.section.tight { padding: 80px 0; }
.section.dark {
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
}
.section.sand { background: var(--sand); }
.section.paper2 { background: var(--paper2); }

/* ── Eyebrow / labels ──────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}
.section.dark .eyebrow { color: rgba(255,255,255,0.55); }

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: inherit; }
h1 { font-size: clamp(48px, 7vw, 88px); letter-spacing: -0.035em; line-height: 0.98; }
h2 { font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -0.025em; line-height: 1.02; }
h3 { font-size: 19px; letter-spacing: -0.01em; line-height: 1.25; }

.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--mute);
  max-width: 640px;
  letter-spacing: -0.005em;
}
.section.dark .lede { color: rgba(255,255,255,0.65); }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  background: transparent;
  color: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--ink2); border-color: var(--ink2); }
.btn-primary:active { transform: translateY(1px); }
.section.dark .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.section.dark .btn-primary:hover { background: #fff; }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper2); }
.section.dark .btn-ghost {
  color: var(--paper);
  border-color: rgba(255,255,255,0.18);
}
.section.dark .btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(255,255,255,0.04);
}

.btn-lg { padding: 16px 22px; font-size: 15px; }
.btn-arrow::after {
  content: "→";
  font-family: var(--mono);
  font-weight: 400;
  transition: transform 0.15s ease;
}
.btn-arrow:hover::after { transform: translateX(2px); }

/* ── Nav ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.logo-mark-img {
  width: 32px; height: 32px;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-signin {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 8px 12px;
}
.nav-signin:hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-primary {
    padding: 8px 12px;
    font-size: 12px;
  }
  .nav-signin { padding: 6px 8px; }
}
@media (max-width: 420px) {
  .nav-actions .nav-signin { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 880px;
}
.hero-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1 { max-width: 16ch; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 28px; }
.hero .lede { margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-fineprint {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ── Product screenshots (browser-framed) ──────────────────────────── */
.product-shot {
  margin: 64px 0 80px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.product-shot-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 30px 60px -28px rgba(11,11,12,0.22);
}
.product-shot-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--mute);
}
.product-shot-chrome .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line2);
  display: inline-block;
}
.product-shot-chrome .dot:nth-child(1) { background: #E76C5A; }
.product-shot-chrome .dot:nth-child(2) { background: #E0B23B; }
.product-shot-chrome .dot:nth-child(3) { background: #5BB47C; }
.product-shot-url {
  margin-left: 8px;
  text-transform: lowercase;
}
.product-shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.product-shot figcaption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mute);
  text-align: center;
}

.hero-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -24px rgba(11,11,12,0.22);
  background: var(--paper2);
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-photo { max-width: 560px; margin: 0 auto; }
}

.hero-meta {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-meta > div {
  min-width: 0;
}
.hero-meta .stat-num {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--ink);
  display: block;
}
.hero-meta .stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
  display: block;
}
@media (max-width: 640px) {
  .hero-meta { gap: 18px; }
  .hero-meta .stat-num { font-size: 28px; }
  .hero-meta .stat-label { font-size: 9.5px; letter-spacing: 0.1em; }
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.hv-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 30px 60px -30px rgba(11,11,12,0.18);
}
.hv-card .hv-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.hv-card-1 {
  inset: 0 32% 38% 0;
  background: var(--sand);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-3deg);
}
.hv-card-1 .hv-name {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 6px;
}
.hv-card-1 .hv-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.hv-card-2 {
  inset: 16% 0 18% 32%;
  background: var(--paper);
  transform: rotate(2deg);
  display: flex; flex-direction: column; gap: 10px;
}
.hv-card-2 .hv-bar { height: 8px; border-radius: 2px; background: var(--paper2); }
.hv-card-2 .hv-bar.short { width: 55%; }
.hv-card-2 .hv-bar.brand { background: var(--brand); width: 40%; height: 10px; }
.hv-card-2 .hv-headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hv-card-2 .hv-headline em { color: var(--brand); }
.hv-card-3 {
  inset: 52% 38% 0 0;
  transform: rotate(-1.5deg);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
}
.hv-qr {
  width: 80px; height: 80px;
  background:
    repeating-conic-gradient(var(--ink) 0% 25%, var(--paper) 0% 50%) center / 12px 12px;
  border: 6px solid var(--paper);
  border-radius: 6px;
}
.hv-card-3 .hv-label { color: rgba(255,255,255,0.6); margin: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ── Marquee ───────────────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 18px 0;
}
.marquee {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: scroll 42s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 800px) {
  .marquee { animation-duration: 18s; font-size: 10.5px; }
  .marquee-track { gap: 24px; padding-right: 24px; }
}

/* ── Compact vs-rotator (mobile alternative to the marquee) ────────── */
.vs-stack { display: none; }
@media (max-width: 720px) {
  .marquee-wrap { display: none; }
  .vs-stack {
    display: block;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 24px;
    background: var(--paper);
    text-align: center;
  }
  .vs-keep {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .vs-row {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .vs-not {
    color: var(--brand);
    font-weight: 500;
  }
  .vs-rotator {
    position: relative;
    display: inline-block;
    height: 1.3em;
    min-width: 11ch;
    overflow: hidden;
    text-align: left;
    vertical-align: bottom;
  }
  .vs-rotator > span {
    position: absolute;
    inset: 0;
    text-decoration: line-through;
    text-decoration-color: rgba(11,11,12,0.45);
    opacity: 0;
    transform: translateY(8px);
    animation: vs-cycle 12s infinite;
    white-space: nowrap;
  }
  .vs-rotator > span:nth-child(1) { animation-delay: 0s; }
  .vs-rotator > span:nth-child(2) { animation-delay: 2s; }
  .vs-rotator > span:nth-child(3) { animation-delay: 4s; }
  .vs-rotator > span:nth-child(4) { animation-delay: 6s; }
  .vs-rotator > span:nth-child(5) { animation-delay: 8s; }
  .vs-rotator > span:nth-child(6) { animation-delay: 10s; }
}
@keyframes vs-cycle {
  0%   { opacity: 0; transform: translateY(8px); }
  4%   { opacity: 1; transform: translateY(0); }
  16%  { opacity: 1; transform: translateY(0); }
  20%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .vs-rotator > span { animation: none; }
  .vs-rotator > span:nth-child(1) { opacity: 1; transform: none; }
}
.marquee-track { display: inline-flex; gap: 48px; padding-right: 48px; }
.marquee-track .strike { text-decoration: line-through; opacity: 0.55; }
.marquee-track .keep { color: var(--ink); }
.marquee-track .sep { color: var(--brand); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section header ────────────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .lede { max-width: none; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Modes (two delivery channels: direct mail + events) ───────────── */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mode-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.mode-card:hover { border-color: var(--ink); }
.mode-card .mode-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.mode-card h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mode-card p { color: var(--mute); font-size: 15.5px; line-height: 1.55; }
.mode-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.mode-bullets li {
  display: flex; gap: 12px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.5;
}
.mode-bullets li::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--ink);
  margin-top: 11px;
  flex-shrink: 0;
}
@media (max-width: 800px) { .modes { grid-template-columns: 1fr; } }

/* ── Big split (two-column deep section) ───────────────────────────── */
.big-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}
.big-split-side {
  padding: 48px 44px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.big-split-side:last-child { border-right: 0; }
.big-split-side .eyebrow { margin-bottom: 4px; }
.big-h {
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.big-split-side > p {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
/* Spec list: label on top, description below. Avoids the ragged
   "long-label-wraps, short-label-doesn't" rhythm the inline format had. */
.spec-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.spec-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.spec-list li:last-child { padding-bottom: 0; }
.spec-list .spec-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.spec-list .spec-v {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink2);
}
@media (max-width: 900px) {
  .big-split { grid-template-columns: 1fr; }
  .big-split-side { border-right: 0; border-bottom: 1px solid var(--line); padding: 40px 32px; }
  .big-split-side:last-child { border-bottom: 0; }
}

/* ── Pillars (3-up explainer) ──────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: 0; }
.pillar .num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 24px;
  display: block;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 14.5px; color: var(--mute); line-height: 1.55; }
@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
}

/* ── Showcase grid ─────────────────────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.show-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.show-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.show-card .img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--paper2);
  overflow: hidden;
}
.show-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.show-card:hover img { transform: scale(1.03); }
.show-card .info { padding: 18px 20px 22px; }
.show-card h3 { font-size: 16px; margin-bottom: 6px; letter-spacing: -0.01em; }
.show-card p { font-size: 13.5px; color: var(--mute); line-height: 1.5; }
.show-note {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
}
@media (max-width: 900px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── How it works ──────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}
.step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.step:last-child { border-right: 0; }
.step-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.step-meta .step-arrow { color: var(--brand); }
.step h3 { font-size: 17px; }
.step p { font-size: 13.5px; color: var(--mute); line-height: 1.55; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(2n) { border-right: 0; }
  .step { border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* ── Features grid (the platform pieces) ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.feat {
  background: var(--paper);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.feat .feat-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.feat h3 { font-size: 17px; letter-spacing: -0.01em; }
.feat p { font-size: 13.5px; color: var(--mute); line-height: 1.55; }
@media (max-width: 800px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Comparison (responsive: rows on desktop, cards on mobile) ─────── */
.compare-list {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 24px;
  padding: 22px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.compare-row:last-child { border-bottom: 0; }
.compare-channel {
  font-weight: 600;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 2px;
}
.compare-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 400;
}
.compare-cell {
  display: flex; flex-direction: column; gap: 4px;
  color: var(--ink2);
  min-width: 0;
}
.compare-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  display: none;
}
.compare-v { font-size: 14px; }
.compare-row-hero {
  background: color-mix(in srgb, var(--brand) 5%, var(--paper));
}
.compare-row-hero .compare-channel { color: var(--brand); font-size: 16px; }
.compare-row-hero .compare-v { color: var(--ink); font-weight: 500; }

@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    padding: 20px 20px;
  }
  .compare-channel {
    grid-column: 1 / -1;
    font-size: 16px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--line);
  }
  .compare-cell:nth-child(4) { grid-column: 1 / -1; }
  .compare-k { display: block; }
  .compare-row-hero .compare-channel { font-size: 18px; }
}

/* ── Pull-quote ────────────────────────────────────────────────────── */
.pull {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pull blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.pull blockquote .accent { color: #7fa4f9; }
.pull cite {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 32px;
}

/* ── Signup ────────────────────────────────────────────────────────── */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.signup-text h2 { margin: 16px 0 24px; }
.signup-text .lede { margin-bottom: 32px; }
.signup-perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.signup-perks li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink2);
}
.signup-perks li::before {
  content: "→";
  font-family: var(--mono);
  color: var(--brand);
  margin-top: 1px;
}
.signup-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--faint); }
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--ink); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B6B74' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.btn-full { width: 100%; justify-content: center; padding: 14px 18px; }
.form-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
}
.form-message { font-size: 13.5px; min-height: 18px; text-align: center; }
.form-success { color: var(--ok); }
.form-error   { color: #b91c1c; }
@media (max-width: 800px) { .signup-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 64px;
  background: var(--paper);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
}
.footer-brand p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 12px;
}
.footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; gap: 24px; align-items: center;
}
.footer-meta a:hover { color: var(--ink); }

/* ── Animations ────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
