/* ===== TOKENS ===== */
:root {
  --cream: #F7F3EA;
  --cream-dark: #EDE8DC;
  --ink: #1A1614;
  --ink-muted: #6B6258;
  --accent: #7C1D1D;
  --accent-light: #F0E4E4;
  --border: #C9BFB0;
  --border-light: #DDD7CC;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --serif: 'IBM Plex Serif', Georgia, serif;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --max-w: 960px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: underline; }
a:hover { opacity: 0.75; }
img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== UTILITIES ===== */
.mono { font-family: var(--mono); }
.muted { color: var(--ink-muted); }
.small { font-size: 0.8125rem; }
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.rule-section { padding: 0; }

/* ===== HEADER ===== */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== WORDMARK ===== */
.wordmark {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.15em;
  text-decoration: none;
  color: var(--ink);
}
.wordmark-sm { font-size: 0.875rem; }
.wordmark-record { color: var(--ink); }
.wordmark-signal { color: var(--accent); }
.wordmark-dot {
  font-size: 0.45em;
  color: var(--accent);
  margin-left: 0.2em;
  position: relative;
  top: -0.1em;
}

/* ===== STAMP BAR ===== */
/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  border: 2px solid var(--accent);
  transition: background 0.15s, color 0.15s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  opacity: 1;
}
.btn-ghost {
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  padding: 4.5rem 0 4rem;
  border-bottom: none;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 58ch;
  margin-bottom: 2.25rem;
}

/* ===== SECTIONS ===== */
section { padding: 3.5rem 0; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.section-sub {
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  max-width: 58ch;
}

/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.product-card {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.12);
}
.product-card:last-child { border-right: none; }
.product-card-live {
  background: var(--cream-dark);
}
.product-status {
  color: var(--accent);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.product-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.product-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.product-card li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.step-num {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ===== SAMPLE DATA ===== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
thead {
  background: var(--ink);
  color: var(--cream);
}
thead th {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  text-align: left;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid var(--border-light);
}
tbody tr:nth-child(even) {
  background: var(--cream-dark);
}
tbody tr:last-child { border-bottom: none; }
tbody td {
  padding: 0.65rem 1rem;
  vertical-align: top;
  white-space: nowrap;
}
tbody td:nth-child(3),
tbody td:nth-child(4) {
  white-space: normal;
}
.age-days {
  color: var(--ink-muted);
  font-size: 0.8rem;
}
.table-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ===== WHO IT'S FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.who-card {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
}
.who-card:last-child { border-right: none; }
.who-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.who-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.seat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.seat-card {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.12);
}
.seat-card:last-child { border-right: none; }
.seat-card h3 {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.35rem;
  line-height: 1.3;
}
.seat-card .price-line {
  margin: 0 0 0.9rem;
}
.seat-limit {
  color: var(--ink-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.seat-link {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  text-underline-offset: 0.2em;
}
.founder-strip {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0 2.25rem;
  padding: 1rem 1.25rem;
}
.founder-strip p {
  color: var(--ink-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.founder-strip strong {
  color: var(--ink);
  font-weight: 500;
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.price-line {
  margin: 1rem 0 1.5rem;
  display: flex;
  align-items: baseline;
}
.price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.price-period {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-list li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  padding-left: 1.25rem;
  position: relative;
}
.price-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
}
.trial-note {
  border-left: 1px solid var(--border);
  padding-left: 3rem;
}
.trial-note h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.trial-note p {
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
footer a { color: var(--ink-muted); }

/* ===== PROSE (privacy policy etc) ===== */
.prose-section { padding: 3.5rem 0; }
.prose {
  max-width: 680px;
}
.prose h1 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.prose .lead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.prose hr {
  margin: 2rem 0;
}
.prose h2 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 2rem 0 0.6rem;
}
.prose p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.prose ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.prose ul li { margin-bottom: 0.3rem; }
.prose strong { color: var(--ink); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .product-card:last-child { border-bottom: none; }
  .who-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .who-card:last-child { border-bottom: none; }
  .seat-grid {
    grid-template-columns: 1fr;
  }
  .seat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .seat-card:last-child { border-bottom: none; }
  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .trial-note {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  .hero h1 { font-size: 2.25rem; }
}

/* ===== REQUEST FORM ===== */
.request { padding: 4.5rem 0; }
.request-form { max-width: 640px; margin-top: 2rem; }
.request-form .hidden-field { display: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.request-form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.625rem 0.75rem;
  text-transform: none;
  letter-spacing: normal;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.form-full { margin-bottom: 1.5rem; }
.request-form button.btn-primary {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.form-alt { margin-top: 1rem; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
