/* =============================================================
   Beezus — design tokens & site styles
   Brand colors are declared as CSS variables only.
   No inline hex for brand colors anywhere.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

@font-face {
  font-family: "Geist";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2") format("woff2");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Bold.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Medium.woff2") format("woff2");
  font-weight: 500; font-display: swap;
}

:root {
  /* Brand (locked) */
  --brand-gold: #B8942A;
  --brand-cream: #F8F5EE;
  --brand-dark: #1a1200;

  /* Derived */
  --gold: var(--brand-gold);
  --gold-soft: oklch(0.86 0.06 85);
  --gold-deep: oklch(0.46 0.09 70);
  --cream: var(--brand-cream);
  --cream-2: oklch(0.95 0.012 80);
  --paper: #FFFFFF;
  --ink: var(--brand-dark);
  --ink-soft: oklch(0.34 0.025 70);
  --muted: oklch(0.54 0.022 75);
  --rule: oklch(0.88 0.015 80);
  --rule-strong: oklch(0.78 0.025 80);

  /* Status accents, restricted */
  --ok: oklch(0.55 0.08 145);
  --warn: oklch(0.62 0.10 50);

  /* Geometry */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Layout */
  --wrap: 1240px;
  --gutter: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: "Geist Mono", ui-monospace, monospace; }
.italic { font-style: italic; }

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

::selection { background: var(--gold); color: var(--brand-dark); }

/* ========== Layout ========== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ========== Nav ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--cream) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--wrap); margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark {
  width: 26px; height: 26px;
  display: inline-block;
  background: var(--ink);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.logo-mark::before { top: 8px; }
.logo-mark::after  { bottom: 8px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 14.5px; font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600; font-size: 14.5px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--cream);
}
.btn-primary:hover { background: oklch(0.22 0.025 60); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold); color: var(--brand-dark);
  box-shadow: 0 1px 0 oklch(0.95 0.04 85) inset, 0 1px 2px oklch(0.30 0.08 65 / 0.25);
}
.btn-gold:hover { transform: translateY(-1px); background: oklch(0.66 0.13 75); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); }

.btn-link {
  background: transparent; color: var(--ink);
  padding: 6px 0; gap: 6px;
}
.btn-link:hover { color: var(--gold-deep); }

.btn-lg { padding: 14px 22px; font-size: 15.5px; }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.tagline-strip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.02em;
}
.tagline-strip .badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
}

h1.hero-h {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 22px 0 18px;
  font-weight: 400;
  text-wrap: pretty;
}
h1.hero-h em { font-style: italic; color: var(--gold-deep); }

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-foot {
  margin-top: 22px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.02em;
}
.hero-foot .check {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-foot .check svg { color: var(--gold-deep); }

.locked-tagline {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0 0 4px;
  max-width: 480px;
}
.locked-tagline .accent {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
  font-family: "Geist", sans-serif;
  font-size: 17px;
}

/* ========== Beez Chat (hero + dedicated) ========== */
.beez-chat {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 1px 0 #fff inset,
    0 30px 50px -32px oklch(0.30 0.04 70 / 0.32),
    0 8px 18px -10px oklch(0.30 0.04 70 / 0.16);
  min-height: 540px;
  max-height: 620px;
}
.beez-chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream-2);
}
.beez-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
}
.beez-avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: var(--ok);
  border: 2px solid var(--paper);
  border-radius: 50%;
}
.beez-chat-head .who-name {
  font-weight: 600; font-size: 14.5px; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.beez-chat-head .who-role {
  font-size: 12px; color: var(--muted);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.04em;
}
.beez-chat-head .live {
  margin-left: auto;
  font-size: 11px;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.1em;
  color: var(--ok);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.beez-chat-head .live::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 0 0 oklch(0.55 0.10 145 / 0.5);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 oklch(0.55 0.10 145 / 0.5); }
  70% { box-shadow: 0 0 0 6px oklch(0.55 0.10 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.55 0.10 145 / 0); }
}

.beez-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 18px 14px;
  display: flex; flex-direction: column; gap: 14px;
  scroll-behavior: smooth;
}
.beez-chat-body::-webkit-scrollbar { width: 8px; }
.beez-chat-body::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 8px; }

.bubble-row {
  display: flex; gap: 10px;
  animation: fadeUp .3s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.bubble-row.beez { align-self: flex-start; max-width: 86%; }
.bubble-row.user { align-self: flex-end; max-width: 86%; flex-direction: row-reverse; }

.bubble-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bubble-row.user .bubble-avatar {
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid var(--rule-strong);
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 11px;
}

.bubble {
  background: var(--cream-2);
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 14px;
  border-top-left-radius: 4px;
  font-size: 14.5px;
  line-height: 1.5;
  border: 1px solid var(--rule);
}
.bubble strong { font-weight: 600; }
.bubble em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
.bubble small { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; font-family: "Geist Mono", monospace; }
.bubble-row.user .bubble {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  border-top-left-radius: 14px;
  border-top-right-radius: 4px;
}

.chip-tray {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 6px 0 4px 38px;
  animation: fadeUp .35s ease .1s both;
}
.chip-tray.center { padding-left: 0; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition: all .12s ease;
  font-family: inherit;
}
.chip:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  transform: translateY(-1px);
}
.chip .chip-glyph {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  margin-right: 2px;
}
.chip:hover .chip-glyph { color: var(--gold); }

.typing {
  display: inline-flex; gap: 4px; align-items: center;
  padding: 12px 14px;
}
.typing span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* Recommendation card inside chat */
.rec-card {
  background: var(--ink); color: var(--cream);
  border-radius: 14px;
  padding: 18px 18px 16px;
  margin-top: 2px;
}
.rec-card .rec-kicker {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.rec-card .rec-tier {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.rec-card .rec-price {
  font-size: 13.5px;
  color: oklch(0.85 0.02 80);
  margin-bottom: 10px;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.02em;
}
.rec-card .rec-why {
  font-size: 13.5px;
  line-height: 1.5;
  color: oklch(0.88 0.02 80);
  margin-bottom: 14px;
}
.rec-card .rec-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.rec-card .rec-actions .btn-gold { box-shadow: none; }
.rec-card .rec-actions .btn-ghost {
  color: var(--cream);
  border-color: oklch(0.40 0.02 70);
}
.rec-card .rec-actions .btn-ghost:hover {
  background: oklch(0.22 0.025 60);
  border-color: var(--cream);
}

.beez-chat-foot {
  border-top: 1px solid var(--rule);
  padding: 10px 14px;
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: flex; justify-content: space-between; align-items: center;
}
.beez-chat-foot .restart {
  background: none; border: none;
  font-family: inherit; font-size: inherit;
  color: var(--gold-deep);
  cursor: pointer; padding: 0;
}
.beez-chat-foot .restart:hover { color: var(--ink); }

/* ========== Sections ========== */
section.block { padding: 88px 0; }
section.block.tight { padding: 64px 0; }
section.block.dark { background: var(--ink); color: var(--cream); }
section.block.cream { background: var(--cream-2); }

.block-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.block-head.left { text-align: left; margin-left: 0; }

.kicker {
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: inline-block;
}
section.block.dark .kicker { color: var(--gold); }

h2.block-h {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 400;
  text-wrap: balance;
}
h2.block-h em { font-style: italic; color: var(--gold-deep); }
section.block.dark h2.block-h em { color: var(--gold); }

.block-sub {
  font-size: 17.5px; color: var(--ink-soft);
  max-width: 620px; margin: 0 auto;
  text-wrap: pretty;
}
section.block.dark .block-sub { color: oklch(0.85 0.02 80); }

/* ========== Team grid ========== */
.team-lead {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
}
.team-lead .lead-portrait {
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    radial-gradient(circle at 30% 30%, oklch(0.30 0.06 70) 0%, transparent 60%),
    var(--ink);
  position: relative;
}
.team-lead .lead-monogram {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 140px;
  line-height: 0.85;
  color: var(--gold);
  font-style: italic;
  letter-spacing: -0.04em;
}
.team-lead .lead-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.team-lead .lead-body {
  padding: 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.team-lead .lead-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.team-lead .lead-role {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.team-lead .lead-blurb {
  font-size: 16px;
  line-height: 1.55;
  color: oklch(0.88 0.02 80);
  max-width: 540px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-lead { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

.teammate {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 20px 20px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.teammate:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -22px oklch(0.46 0.09 70 / 0.5);
}
.teammate .mono-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.teammate .monogram {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink); color: var(--gold);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.teammate .id-code {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.teammate .t-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.teammate .t-role {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.teammate .t-blurb {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* ========== Tasks (was BeezKeyz) ========== */
.tasks-explainer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 44px 48px;
}
@media (max-width: 900px) {
  .tasks-explainer { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}
.tasks-headline {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
  font-weight: 400;
}
.tasks-headline em { font-style: italic; color: var(--gold-deep); }
.tasks-body {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.tasks-counter {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: "Instrument Serif", Georgia, serif;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 20px;
  color: var(--ink);
}
.tasks-counter .num {
  font-size: 36px;
  line-height: 1;
  color: var(--gold-deep);
}

.task-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.task-example {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.task-example .tx-num {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 3px 7px;
  flex-shrink: 0;
}
.task-example strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.task-example span { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ========== How it works ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
}
.step:last-child { border-right: none; }
@media (max-width: 900px) {
  .step { border-right: none; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: none; }
}
.step .step-n {
  font-family: "Geist Mono", monospace;
  font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.step .step-n::before {
  content: ""; display: inline-block;
  width: 20px; height: 1px; background: var(--gold-deep);
}
.step h4 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.step p { color: var(--ink-soft); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ========== Pricing ========== */
.pricing-hero {
  text-align: center;
  padding: 72px 0 24px;
}
.toggle-billing {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  padding: 4px;
  border-radius: 999px;
  margin: 28px 0 8px;
}
.toggle-billing button {
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.toggle-billing button.active {
  background: var(--ink); color: var(--cream);
}
.save-tag {
  display: inline-block;
  margin-left: 6px;
  background: var(--gold);
  color: var(--brand-dark);
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.04em;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 1000px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.tier.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.tier.featured .tier-name,
.tier.featured .tier-price { color: var(--cream); }
.tier.featured .tier-sub,
.tier.featured .tier-per { color: oklch(0.78 0.02 80); }
.tier.featured .tier-feat { color: oklch(0.88 0.02 80); }
.tier.featured .tier-feat strong { color: var(--cream); }
.tier.featured .tier-feat svg { color: var(--gold); }
.tier-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--gold); color: var(--brand-dark);
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.tier-sub {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 22px;
  line-height: 1.45;
}
.tier-price {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.tier-price .currency { font-size: 24px; vertical-align: top; margin-right: 2px; opacity: 0.7; }
.tier-per { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; font-family: "Geist Mono", monospace; letter-spacing: 0.03em; }
.tier-cta { margin-bottom: 24px; }
.tier-cta .btn { width: 100%; justify-content: center; }
.tier-meta {
  border-top: 1px dashed var(--rule);
  padding-top: 18px;
  margin-bottom: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.tier.featured .tier-meta { border-color: oklch(0.34 0.025 70); }
.tier-meta-cell {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.tier-meta-cell b {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 2px;
  line-height: 1.1;
}
.tier.featured .tier-meta-cell b { color: var(--cream); }
.tier-feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 9px;
  font-size: 14px;
  flex: 1;
}
.tier-feat {
  display: flex; gap: 9px; align-items: flex-start;
  color: var(--ink-soft);
  line-height: 1.45;
}
.tier-feat svg {
  flex-shrink: 0; margin-top: 4px;
  color: var(--gold-deep);
}
.tier-feat strong { color: var(--ink); font-weight: 600; }

/* Add-on banner under tiers */
.addon-banner {
  margin-top: 24px;
  display: flex; align-items: center; gap: 18px;
  background: var(--paper);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--r-md);
  padding: 16px 22px;
}
.addon-banner .addon-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.addon-banner p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.addon-banner p strong { color: var(--ink); }

/* ========== Compare table ========== */
.compare-table {
  margin-top: 64px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  vertical-align: top;
}
.compare-table th {
  background: var(--cream-2);
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
  width: 18%;
}
.compare-table .cat-row td {
  background: var(--cream);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .feat-name { color: var(--ink); font-weight: 500; }
.compare-table .feat-desc { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.compare-table .yes {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  vertical-align: middle;
}
.compare-table .yes::after {
  content: "";
  position: absolute;
  left: 4px; top: 7px;
  width: 4px; height: 7px;
  border: solid var(--brand-dark);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}
.compare-table .no {
  color: oklch(0.78 0.02 80);
  font-size: 16px;
}
.compare-table .featured-col { background: oklch(0.96 0.025 85); }

/* ========== Compare without/with ========== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .compare { grid-template-columns: 1fr; } }
.compare-col { padding: 36px 32px; }
.compare-col.without { background: var(--cream-2); color: var(--ink-soft); }
.compare-col.with { background: var(--ink); color: var(--cream); }
.compare-col h5 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}
.compare-col.with h5 em { color: var(--gold); font-style: italic; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.compare-col .glyph {
  width: 20px; height: 20px;
  border-radius: 4px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.compare-col.without .glyph {
  background: oklch(0.90 0.02 70);
  color: oklch(0.45 0.06 30);
}
.compare-col.with .glyph {
  background: var(--gold);
  color: var(--brand-dark);
}

/* ========== Calculator ========== */
.calc {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .calc { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
}
.calc-left h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}
.calc-left h3 em { color: var(--gold-deep); font-style: italic; }
.calc-left p.calc-intro {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.55;
  max-width: 460px;
}
.calc-slider {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.calc-slider-label {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.calc-slider-label .who {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.calc-slider-label .what {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.calc-slider-label b {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.calc-slider-label b .unit {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 4px;
  text-transform: uppercase;
}
.calc-slider input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  height: 4px;
  background: var(--rule);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.calc-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .12s;
}
.calc-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.calc-slider input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
}

.calc-result {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}
.calc-result-kicker {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.calc-result-big {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.calc-result-big .unit {
  font-size: 32px;
  vertical-align: top;
  margin-left: 4px;
  color: oklch(0.85 0.02 80);
  font-style: italic;
}
.calc-result-sub {
  font-family: "Geist Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: oklch(0.78 0.02 80);
  text-transform: uppercase;
  margin-top: 14px;
}
.calc-result-divider {
  width: 40px; height: 1px;
  background: oklch(0.40 0.02 70);
  margin: 22px auto;
}
.calc-result-line {
  font-size: 14px;
  line-height: 1.55;
  color: oklch(0.86 0.02 80);
  text-wrap: pretty;
}
.calc-result-line b {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.calc-result-tier {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed oklch(0.40 0.02 70);
}
.calc-result-tier .pill {
  display: inline-block;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 8px;
}
.calc-result-tier .why {
  font-size: 13px;
  color: oklch(0.85 0.02 80);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ========== Testimonials ========== */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .quote-row { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 28px;
}
.quote-card blockquote {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px; line-height: 1.3;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
}
.quote-card .who {
  display: flex; gap: 10px; align-items: center;
}
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 14px;
}
.quote-card .name { font-weight: 600; font-size: 13.5px; }
.quote-card .biz { color: var(--muted); font-size: 12.5px; font-family: "Geist Mono", monospace; letter-spacing: 0.02em; }

/* ========== FAQ ========== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  cursor: pointer;
  list-style: none;
  font-weight: 400;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: "Geist Mono", monospace;
  font-size: 20px;
  color: var(--gold-deep);
  transition: transform .2s;
}
details[open] .faq-q::after { content: "−"; }
.faq-a {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 680px;
}

/* ========== Final CTA ========== */
.cta-banner {
  margin: 80px 0 60px;
  padding: 64px 48px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
  font-size: 17px;
  color: oklch(0.85 0.02 80);
  max-width: 560px;
  margin: 0 0 26px;
}
.cta-banner .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-banner .btn-ghost {
  color: var(--cream);
  border-color: oklch(0.40 0.02 70);
}
.cta-banner .btn-ghost:hover {
  background: oklch(0.22 0.025 60);
  border-color: var(--cream);
}

/* ========== Footer ========== */
footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--rule);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
footer h6 {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { text-decoration: none; color: var(--ink-soft); font-size: 14px; }
footer a:hover { color: var(--ink); }
.foot-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--muted);
  display: flex; justify-content: space-between; align-items: center;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.02em;
}

/* ========== Small utilities ========== */
.divider {
  height: 1px; background: var(--rule); margin: 28px 0;
}
.text-mono-tiny {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hide top-nav menu under 700 */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero { padding: 36px 0 24px; }
  section.block { padding: 56px 0; }
  .cta-banner { padding: 40px 24px; }
  .tasks-explainer { padding: 24px; }
  .team-lead .lead-portrait, .team-lead .lead-body { padding: 24px; }
  .team-lead .lead-monogram { font-size: 100px; }
  .team-lead .lead-name { font-size: 36px; }
}
