/* Vercel-Ink: editorial monochrome, paper-on-pitch */
:root {
  --bg: #000;
  --bg-2: #0a0a0a;
  --bg-3: #111;
  --ink: #fafafa;
  --ink-2: #ededed;
  --ink-3: #a1a1a1;
  --ink-4: #707070;
  --ink-5: #404040;
  --line: #262626;
  --line-2: #1a1a1a;
  --accent: #fff;
  --warn: #ff5f56;
  --money: #f5d76e;
  --paper: #f5f1e8;
  --paper-ink: #1a1a1a;
  --paper-line: #c8c0ad;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.mono { font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, Menlo, monospace; }

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

/* Layout */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.triangle {
  width: 22px; height: 19px;
  background: linear-gradient(135deg, #fff 50%, #888 50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.topbar nav { display: flex; gap: 24px; }
.topbar nav a {
  font-size: 13px; color: var(--ink-3); text-decoration: none;
  font-feature-settings: 'tnum';
  transition: color .15s;
}
.topbar nav a:hover { color: var(--ink); }
.topbar-right {
  display: flex; gap: 12px; align-items: center;
  font-size: 12px; color: var(--ink-4);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.topbar-right a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.topbar-right a:hover { color: var(--ink); }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #50e3c2;
  box-shadow: 0 0 8px #50e3c2;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-family: 'Geist Mono', ui-monospace, monospace;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--ink-4);
}
.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero h1 .strike {
  position: relative;
  color: var(--ink-3);
}
.hero h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%;
  top: 52%; height: 4px; background: var(--ink); transform: rotate(-2deg);
}
.hero h1 em {
  font-style: italic;
  font-family: 'Geist', serif;
  font-weight: 400;
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero .byline {
  font-size: 12px;
  color: var(--ink-4);
  font-family: 'Geist Mono', ui-monospace, monospace;
  display: flex; gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.hero .byline strong { color: var(--ink-2); font-weight: 500; }

/* Receipt */
.receipt {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 36px 32px 60px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 60px 120px rgba(0,0,0,0.4);
  transform: rotate(-1.2deg);
  max-width: 380px;
  margin: 0 auto;
  /* zigzag bottom edge */
  --notch: 12px;
  -webkit-mask: 
    linear-gradient(#000 0 0) padding-box, 
    radial-gradient(circle at 50% 100%, transparent 6px, #000 6.5px);
}
.receipt::before, .receipt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 16px;
  background: 
    radial-gradient(circle at 8px 0, transparent 6px, var(--paper) 6.5px) 0 0/16px 16px;
}
.receipt::before { top: -8px; transform: rotate(180deg); }
.receipt::after { bottom: -8px; }
.r-head {
  text-align: center;
  border-bottom: 1px dashed var(--paper-line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.r-head .logo {
  font-size: 16px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.r-head .meta { font-size: 10px; color: #666; }
.r-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 11px;
  border-bottom: 1px dotted #d4cdb8;
}
.r-row.warn { color: #b8423a; font-weight: 600; }
.r-row.title {
  font-weight: 700; color: #444;
  border-bottom: 1px solid var(--paper-line);
  padding-top: 10px;
  margin-top: 6px;
}
.r-total {
  margin-top: 16px; padding-top: 12px;
  border-top: 2px solid var(--paper-ink);
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 700;
}
.r-total .amt {
  font-size: 24px;
  color: #b8423a;
  font-variant-numeric: tabular-nums;
}
.r-foot {
  text-align: center; font-size: 9px; color: #888;
  margin-top: 18px; letter-spacing: 0.1em;
}
.r-stamp {
  position: absolute;
  bottom: 80px; right: -10px;
  border: 2px solid #b8423a;
  color: #b8423a;
  padding: 4px 12px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.15em;
  transform: rotate(12deg);
  opacity: 0.85;
}

/* Section */
section.block {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.block-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}
.block-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.block-num .pill {
  display: inline-block; padding: 2px 8px;
  border: 1px solid var(--line);
  margin-right: 8px;
  border-radius: 2px;
}
.block-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 800px;
}
.block-head h2 em {
  font-style: italic; font-weight: 400; color: var(--ink-3);
}

/* Plan Table */
.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-feature-settings: 'tnum';
}
.plan-table th, .plan-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}
.plan-table thead th {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-4);
  border-bottom: 1px solid var(--ink-5);
  padding-bottom: 12px;
}
.plan-table thead th.col-plan {
  font-size: 22px; text-transform: none; letter-spacing: -0.02em; color: var(--ink);
  font-weight: 600;
}
.plan-table thead th.col-plan .price {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
  margin-top: 4px;
  text-transform: none; letter-spacing: 0;
}
.plan-table th.sortable { cursor: pointer; user-select: none; }
.plan-table th.sortable:hover { color: var(--ink); }
.plan-table th .arrow { opacity: 0.3; margin-left: 4px; }
.plan-table th.sorted .arrow { opacity: 1; }
.plan-table td.metric {
  color: var(--ink-3);
  font-size: 13px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  width: 30%;
}
.plan-table td.metric strong { color: var(--ink); display: block; font-weight: 500; font-size: 14px; margin-bottom: 2px; }
.plan-table td.val { color: var(--ink); font-family: 'Geist Mono', ui-monospace, monospace; }
.plan-table td.val small { color: var(--ink-4); display: block; margin-top: 2px; font-size: 11px; }
.plan-table tbody tr:hover { background: var(--bg-2); }
.plan-table td.val.warn { color: var(--warn); }
.plan-table td.val.good { color: #50e3c2; }

/* Bandwidth Meter */
.meter-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
}
.meter {
  position: relative;
  height: 80px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: visible;
}
.meter-track {
  position: absolute; inset: 0;
  display: flex;
}
.meter-fill {
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 8px,
    var(--ink-2) 8px 16px
  );
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.meter-overflow {
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--warn) 0 8px,
    #c2453d 8px 16px
  );
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.meter-cap {
  position: absolute;
  top: -8px; bottom: -8px;
  width: 2px;
  background: var(--ink);
  z-index: 2;
}
.meter-cap::after {
  content: attr(data-label);
  position: absolute;
  top: -22px;
  left: 50%; transform: translateX(-50%);
  font-size: 10px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--ink-3);
}
.meter-ticks {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.meter-tick {
  width: 1px; background: var(--line);
}
.meter-labels {
  display: flex; justify-content: space-between;
  margin-top: 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-4);
}
.meter-readout {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 24px;
}
.meter-readout .row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted var(--line);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
}
.meter-readout .row:last-child { border-bottom: 0; }
.meter-readout .row .v { color: var(--ink); }
.meter-readout .row .v.warn { color: var(--warn); }
.meter-readout .label { color: var(--ink-3); }
.scenario-tabs {
  display: flex; gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.scenario-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-3);
  padding: 10px 16px;
  font-size: 13px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  transition: all .15s;
}
.scenario-tab:hover { border-color: var(--ink-3); color: var(--ink); }
.scenario-tab.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Calculator */
.calc {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.calc-controls {
  padding: 36px;
  border-right: 1px solid var(--line);
}
.calc-out {
  padding: 36px;
  display: flex; flex-direction: column;
  background: 
    repeating-linear-gradient(
      to bottom,
      transparent 0 30px,
      var(--line-2) 30px 31px
    );
}
.slider-group { margin-bottom: 28px; }
.slider-group label {
  display: flex; justify-content: space-between;
  font-size: 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.slider-group label .val {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 24px;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 2px; background: var(--ink-5);
}
input[type=range]::-moz-range-track {
  height: 2px; background: var(--ink-5);
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--ink); border-radius: 0;
  margin-top: -7px;
  border: 2px solid var(--bg);
}
input[type=range]::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--ink); border-radius: 0;
  border: 2px solid var(--bg);
}
.calc-line {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  border-bottom: 1px dashed var(--line);
}
.calc-line .lbl { color: var(--ink-3); }
.calc-line .v { color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-line.over .v { color: var(--warn); }
.calc-total {
  margin-top: 24px; padding-top: 24px;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between;
  align-items: baseline;
}
.calc-total .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.calc-total .amount {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  font-family: 'Geist', system-ui, sans-serif;
}
.calc-total .amount .currency { color: var(--ink-3); font-size: 32px; vertical-align: top; line-height: 1; margin-right: 4px; }
.calc-multiplier {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-4);
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.calc-multiplier strong { color: var(--money); }

/* Chart */
.chart-wrap {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 36px;
}
.chart-head {
  display: flex; justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 16px;
}
.chart-legend { display: flex; gap: 24px; flex-wrap: wrap; }
.legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  color: var(--ink-3);
}
.legend-swatch {
  width: 14px; height: 14px;
  border: 1px solid var(--ink-5);
}
.chart-svg { width: 100%; display: block; }
.chart-svg .axis text { fill: var(--ink-4); font-size: 11px; font-family: 'Geist Mono', monospace; }
.chart-svg .axis line, .chart-svg .axis path { stroke: var(--line); }
.chart-svg .grid line { stroke: var(--line-2); stroke-dasharray: 2 4; }
.chart-tooltip {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--ink-3);
  padding: 12px 16px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  z-index: 10;
  white-space: nowrap;
}
.chart-tooltip.show { opacity: 1; }
.chart-tooltip .total { color: var(--money); margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--line); }

/* Wheel */
.wheel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wheel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.wheel-svg {
  width: 100%; height: 100%;
  transition: transform 4.5s cubic-bezier(.16,1,.18,1);
}
.wheel-pin {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid var(--warn);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
  z-index: 5;
}
.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  cursor: pointer;
  z-index: 4;
  transition: transform .15s;
}
.wheel-center:hover { transform: translate(-50%, -50%) scale(1.05); }
.wheel-center:disabled { cursor: not-allowed; opacity: 0.5; }
.wheel-result {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 32px;
  min-height: 280px;
}
.wheel-result .label-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-family: 'Geist Mono', monospace;
  margin-bottom: 16px;
}
.wheel-result h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.wheel-result .price-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  color: var(--money);
  margin-bottom: 16px;
}
.wheel-result p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}
.wheel-result .placeholder {
  color: var(--ink-4);
  font-style: italic;
}
.wheel-counter {
  margin-top: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.addon-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  position: relative;
  cursor: help;
  transition: background .2s;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.addon-card:hover {
  background: var(--bg-2);
}
.addon-card .price {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.addon-card .price small {
  font-size: 13px; color: var(--ink-4); font-weight: 400;
}
.addon-card .name {
  font-size: 16px; font-weight: 500;
  margin-bottom: 8px;
}
.addon-card .desc {
  font-size: 12px; color: var(--ink-4);
  font-family: 'Geist Mono', monospace;
  line-height: 1.5;
}
.addon-card .stamp {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  border: 1px solid var(--line);
  padding: 2px 6px;
  font-family: 'Geist Mono', monospace;
}
.addon-card .stamp.required { color: var(--warn); border-color: var(--warn); }
.addon-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 16px;
  font-size: 12px;
  font-family: 'Geist Mono', monospace;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  z-index: 10;
}
.addon-card:hover .addon-tooltip {
  opacity: 1; transform: translateY(0);
}

/* Anecdotes */
.anecdotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.anec {
  background: var(--bg);
  padding: 36px;
  position: relative;
}
.anec .quote-mark {
  font-size: 64px;
  line-height: 0.6;
  color: var(--ink-5);
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.anec blockquote {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.anec .figures {
  display: flex; gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  flex-wrap: wrap;
}
.anec .fig {
  font-family: 'Geist Mono', monospace;
}
.anec .fig .lbl {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
  margin-bottom: 4px;
}
.anec .fig .v {
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.anec .fig .v.bad { color: var(--warn); }
.anec .src {
  position: absolute;
  top: 36px; right: 36px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-family: 'Geist Mono', monospace;
}

/* Disclaimer card (above footer) */
.disclaimer {
  border: 1px solid var(--ink-5);
  border-radius: 6px;
  padding: 32px 36px;
  background: var(--bg-2);
  max-width: 820px;
  margin: 0 auto;
}
.disclaimer-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.disclaimer-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--ink-4);
}
.disclaimer p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 0 14px;
}
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer strong { color: var(--ink-2); font-weight: 500; }
.disclaimer a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s;
}
.disclaimer a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .disclaimer { padding: 24px 22px; }
}

/* Footer */
.footer {
  padding: 30px 0 80px;
  text-align: center;
}
.footer .marks {
  display: flex; justify-content: center; gap: 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-family: 'Geist Mono', monospace;
  margin-bottom: 24px;
}
.footer .small {
  font-size: 12px;
  color: var(--ink-4);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.footer .small a { color: var(--ink-3); text-decoration: underline; text-underline-offset: 4px; }

/* Pull quote */
.pull-quote {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.pull-quote q {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-style: italic;
  font-family: 'Geist', system-ui;
  color: var(--ink-2);
  display: block;
  max-width: 900px;
  margin: 0 auto 20px;
}
.pull-quote q::before { content: "\201C"; }
.pull-quote q::after { content: "\201D"; }
.pull-quote .attr {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .meter-wrap, .wheel-wrap, .calc { grid-template-columns: 1fr; }
  .calc-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .anecdotes { grid-template-columns: 1fr; }
  .block-head { grid-template-columns: 1fr; gap: 16px; }
  .topbar nav { display: none; }
  .receipt { transform: rotate(0); }
}
