:root {
  --paper:  #f1ebdc;
  --ink:    #1a1410;
  --mute:   #6a5e4c;
  --accent: #b8421f;

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 64px 24px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 1080px;
  width: 100%;
  text-align: center;
}

/* name only — small, not the star */
.meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 112px;
}

/* the entire pitch — two lines, one contrast */
.contrast {
  margin: 0 0 80px;
}
.contrast__old,
.contrast__new {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 0.35em;
}
.contrast__old .lhs,
.contrast__new .lhs { text-align: right; }
.contrast__old .rhs,
.contrast__new .rhs { text-align: left; }
.contrast__old .arrow,
.contrast__new .arrow { font-style: normal; }
.contrast__old {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--mute);
  font-weight: 320;
  opacity: 0.42;
  margin-bottom: 28px;
}
.contrast__new {
  font-size: clamp(56px, 9.5vw, 108px);
  color: var(--ink);
  font-weight: 420;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.contrast__new em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 360;
  color: var(--accent);
}

.lede {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "SOFT" 60, "WONK" 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.78;
  margin: 0 auto 64px;
  max-width: 44ch;
}

.cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 16px 28px;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
}
.cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .meta { margin-bottom: 72px; }
  .lede { font-size: 16px; }

  /* On mobile: drop the grid + arrows, stack each pair vertically.
     The visual progression "old way / new way" still reads
     top-to-bottom without the arrow squeezing into a narrow column. */
  .contrast__old,
  .contrast__new {
    display: block;
    text-align: center;
  }
  .contrast__old .lhs,
  .contrast__old .rhs,
  .contrast__new .lhs,
  .contrast__new .rhs {
    display: block;
    text-align: center;
  }
  .contrast__old .arrow,
  .contrast__new .arrow {
    display: none;
  }
  .contrast__old { line-height: 0.96; margin-bottom: 36px; }
  .contrast__new { line-height: 0.92; }
}
