/* ─── Tokens (locked Schematic brand system) ─────────── */
:root {
  --bg:      #FFFFFF;
  --surface: #F4F4F5;
  --text:    #18181B;
  --muted:   #71717A;
  --border:  #D4D4D8;
  --accent:  #000000;

  --font-ui:      'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;

  --dur-fast: 150ms;
  --dur-base: 200ms;
  --ease:     cubic-bezier(0.2, 0.7, 0.2, 1);

  --max-w: 1200px;
  --pad:   clamp(20px, 4vw, 40px);
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Layout primitives ──────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.stack > * + * { margin-top: var(--space, 24px); }

/* ─── Top nav ────────────────────────────────────────── */
.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
/* Once the user has scrolled past the hero, the sticky nav lifts off the
   page with a subtle shadow + slightly darker hairline. Restores depth
   without any color or motion. */
.nav--scrolled {
  border-bottom-color: #C4C4C7;
  box-shadow: 0 2px 12px -8px rgba(0, 0, 0, 0.18);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand:hover { color: var(--accent); }
.brand__mark {
  width: 22px; height: 22px;
  display: inline-block;
  flex-shrink: 0;
}
/* ─── Mobile-first nav links + hamburger ─────────── */
/* On mobile (<768px): nav__links is a drop-down panel beneath the
   sticky header, toggled by .nav__toggle. On desktop (≥768px): the
   panel becomes a horizontal inline nav and the hamburger disappears. */
.nav__inner { position: relative; }

.nav__links {
  /* hidden until the user opens it */
  display: none;
  font-size: 16px;
  color: var(--text);
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 8px var(--pad) 16px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.18);
}
.nav__links.is-open { display: flex; }
.nav__links a {
  position: relative;
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:last-child { border-bottom: none; }
.nav__links a:hover { color: var(--accent); }
.nav__links a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}
.nav__links a[aria-current="page"]::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 16px;
  background: var(--text);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger button — three bars, becomes an X when open via CSS. */
.nav__toggle {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.nav__toggle:hover { border-color: var(--text); }
.nav__toggle-bar {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
  transform-origin: center;
}
/* Open state morphs the three bars into an X */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Compact "Start your site" CTA on mobile so the hamburger fits. */
@media (max-width: 480px) {
  .nav__cta { padding: 7px 11px; font-size: 13px; }
}

/* Desktop: restore the original inline horizontal nav, hide hamburger. */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
    position: static;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    gap: 32px;
    font-size: 14px;
    color: var(--muted);
  }
  .nav__links a {
    padding: 4px 0;
    font-weight: 400;
    border-bottom: none;
    color: var(--muted);
  }
  .nav__links a:hover { color: var(--text); }
  .nav__links a[aria-current="page"] {
    color: var(--text);
    font-weight: 500;
  }
  .nav__links a[aria-current="page"]::before { display: none; }
  .nav__links a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--text);
  }
  .nav__toggle { display: none; }
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-ui);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease),
              border-color   var(--dur-fast) var(--ease),
              color          var(--dur-fast) var(--ease);
  letter-spacing: 0;
}
.btn-filled {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-filled:hover {
  background: #2A2A2D;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.35);
}
.btn-outline {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn-filled, .btn-outline {
  transition: background-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 12px 20px; font-size: 15px; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  padding: clamp(56px, 10vw, 128px) 0 clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}
/* Full-viewport hero variant (home page). Uses dvh so iOS toolbar
   changes don't cause layout jitter. Content vertically centred so
   the hero feels deliberate, not "padded to size." */
.hero--full {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(96px, 12vw, 160px) 0;
}
.hero__inner { max-width: 800px; width: 100%; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--text);
}
.hero p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--muted);
  /* No max-width, let the hero subhead use the full hero__inner width
     (800px). Was previously capped at 56ch which read as awkward early
     wrapping. */
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─── Stats row ──────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 64px;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ─── Section primitives ─────────────────────────────── */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}
.section__head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section__head {
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2fr);
    gap: 64px;
    align-items: start;
  }
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  line-height: 1.15;
}
.section__lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

/* ─── Steps row ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .step { border-bottom: none; border-right: 1px solid var(--border); }
  .step:last-child { border-right: none; }
}
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ─── Tier grid ──────────────────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1024px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  background: var(--bg);
  display: flex; flex-direction: column;
}
.tier--hl {
  border-color: var(--text);
  box-shadow: 0 0 0 1px var(--text);
}
.tier__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 4px;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 4px;
}
.tier__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 24px;
}
/* ─ Tier price addendum (e.g. "+ $20/mo hosted", "no monthly fee") ─ */
.tier__price-addendum {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
  letter-spacing: -0.01em;
  min-height: 18px; /* reserve space so toggle doesn't shift layout */
}
.tier__price-addendum.is-hidden { visibility: hidden; }

/* ─ Hosted / Self-host segmented toggle ─ */
/* Single global toggle above the tier grid. Updates all paid tier cards
   at once (Free is exempt — it's always on the subdomain). */
.hosting-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
  margin: 0 auto 32px;
}
.hosting-toggle__btn {
  border: 0;
  background: transparent;
  padding: 10px 22px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.hosting-toggle__btn:hover { background: rgba(0, 0, 0, 0.04); }
.hosting-toggle__btn[aria-pressed="true"] {
  background: var(--text);
  color: #FFFFFF;
  font-weight: 600;
}
.hosting-toggle__btn[aria-pressed="true"]:hover { background: var(--text); }
.hosting-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.hosting-toggle-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.hosting-toggle-note {
  font-size: 13px;
  color: var(--text);
  margin: 14px 0 0;
  text-align: center;
  max-width: 60ch;
  line-height: 1.55;
}
.hosting-toggle-note strong { font-weight: 600; }

/* ─ Tier card "What's included" accordion ─ */
/* Replaces the always-visible features list with an expandable details
   panel. Keeps the card scannable; full spec is one click away. */
.tier__details {
  border-top: 1px solid var(--border);
  margin: 4px 0 20px;
}
.tier__details summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--dur-fast) var(--ease);
}
.tier__details summary:hover { color: var(--text); }
.tier__details summary::-webkit-details-marker { display: none; }
.tier__details summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--muted);
  line-height: 1;
}
.tier__details[open] summary::after { content: '−'; color: var(--text); }
.tier__details ul {
  list-style: none;
  padding: 0 0 16px;
  margin: 0;
  font-size: 13px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.tier__details li {
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.tier__details li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--text);
  border-radius: 50%;
}
.tier__details li.is-hosted-only { display: none; }
.tier__details.is-hosted .tier__details li.is-hosted-only,
.tier__details[data-hosting="hosted"] li.is-hosted-only { display: block; }
.tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.tier__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.tier__features li:last-child { border-bottom: none; }
.tier__features code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--surface);
  padding: 1px 5px;
  border-radius: 3px;
}
.tier .btn { margin-top: auto; justify-content: center; width: 100%; }

/* ─── Add-ons table ──────────────────────────────────── */
.addons {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.addon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.addon-row:last-child { border-bottom: none; }
.addon-row__name { font-weight: 500; font-size: 14px; }
.addon-row__desc { font-size: 13px; color: var(--muted); display: block; margin-top: 2px; }
.addon-row__price { font-family: var(--font-mono); font-size: 13px; color: var(--text); white-space: nowrap; }
.addon-row__price--free { color: var(--muted); }

/* ─── Universally-included accordion ─────────────────── */
/* Each row is a <details> element so visitors can expand for a plain-
   English explanation of any technical term (WCAG, JSON-LD, etc.).
   Marker stays a filled square with a white check, reads as "done /
   included" rather than an unchecked todo box. */
.included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .included { grid-template-columns: repeat(2, 1fr); } }
.included details {
  border-bottom: 1px solid var(--border);
}
.included details:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .included details:nth-last-child(-n+2) { border-bottom: none; }
}
.included summary {
  list-style: none;
  cursor: pointer;
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 0;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.included summary::-webkit-details-marker { display: none; }
.included summary::before {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  border-radius: 3px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.2L6 9.7L10.5 4.6' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center center / 11px 11px no-repeat,
    var(--text);
  margin-top: 3px;
}
.included summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--muted);
  line-height: 1;
  padding-left: 12px;
  transition: transform var(--dur-fast) var(--ease);
}
.included details[open] summary::after { content: '−'; color: var(--text); }
.included details > p {
  margin: 0 0 14px 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--muted);
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease);
}
.faq details[open] summary::after { content: '−'; }
/* Width unconstrained, the previous max-width: 64ch left awkward white
   space inside a section already constrained by .container. */
.faq p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Final CTA ──────────────────────────────────────── */
.final {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.final__inner {
  display: grid;
  gap: 24px;
  align-items: end;
}
@media (min-width: 768px) {
  .final__inner {
    grid-template-columns: 1fr auto;
  }
}
.final h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 24ch;
  line-height: 1.1;
}
.final__ctas { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  padding: 32px 0 64px;
  font-size: 13px;
  color: var(--muted);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer__inner a:hover { color: var(--text); }

/* ─── Footer (full / multi-column variant) ─────────── */
.footer--full {
  padding: clamp(48px, 6vw, 80px) 0 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text);
}
.footer--full .footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .footer--full .footer__inner {
    grid-template-columns: minmax(220px, 1.2fr) minmax(0, 2fr);
    gap: 64px;
  }
}
.footer__brand-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
  max-width: 26ch;
}
.footer__tagline-sub {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}
.footer__col {
  display: flex; flex-direction: column;
  gap: 10px;
}
.footer__col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
  font-weight: 500;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.footer__legal-meta { font-style: italic; }

/* ─── Showcase grid (example sites) ──────────────────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .showcase { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
/* 3-card homepage variant: avoids the orphaned last card from a 2-col grid */
@media (min-width: 960px) { .showcase--3col { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.showcase__item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
/* Hover lifts the card 2px, darkens its border, and inks a subtle shadow.
   Signals that the whole card is interactive. */
.showcase__item:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.25);
}
.showcase__item:hover .showcase__view,
.showcase__item:hover .showcase__cta { color: var(--text); }
.showcase__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.showcase__chrome {
  position: absolute; top: 0; left: 0; right: 0; height: 26px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 5px;
  padding: 0 10px;
  z-index: 2;
}
.showcase__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.showcase__url {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-left: 10px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.showcase__preview {
  position: absolute; top: 26px; left: 0; right: 0; bottom: 0;
  padding: 16px;
  display: flex; flex-direction: column;
  gap: 12px;
  background: var(--bg);
}
.showcase__mobile {
  position: absolute; bottom: 14px; right: 14px;
  width: 22%; aspect-ratio: 9/16;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.22);
  padding: 6px 5px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 3;
}
.showcase__meta {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px;
}
/* Dual-CTA variant: pair of small text links stacked vertically on the
   right side of the meta footer. Lets the visitor pick "see it" vs
   "use it as a starting point" without leaving the page first. */
.showcase__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.showcase__ctas a {
  font-size: 13px;
  white-space: nowrap;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
  padding-right: 12px;
}
.showcase__ctas a.is-secondary { color: var(--muted); font-weight: 400; }
.showcase__ctas a.is-primary   { color: var(--text);  font-weight: 500; }
.showcase__ctas a:hover { color: var(--accent); }
.showcase__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.showcase__name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
/* Real-screenshot variant: the tile's frame holds a single <img> that
   crops to the top of the page. Keeps the same outer card shell, just
   swaps the inner abstracted blocks for a real image. */
.showcase__img {
  position: absolute; inset: 26px 0 0 0;
  width: 100%; height: calc(100% - 26px);
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Block-level frame link. Wraps just the image so the tile frame is the
   "View the build" click target. Meta footer below carries its own CTAs. */
.showcase__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.showcase__view {
  font-size: 13px; color: var(--muted);
  white-space: nowrap;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.showcase__view:hover { color: var(--text); }
.showcase__view::after,
.showcase__cta::after {
  content: '';
  position: absolute;
  left: 0; right: 18px; bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.showcase__view:hover::after,
.showcase__cta:hover::after,
.showcase__item:hover .showcase__cta::after,
.showcase__item:hover .showcase__view::after { transform: scaleX(1); }
/* Template-tile CTA (Work page), slightly more prominent than View */
.showcase__cta {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.showcase__cta:hover { color: var(--accent); }

/* Suggestive layout blocks inside preview frames */
.blk { background: var(--surface); border-radius: 2px; flex-shrink: 0; }
.blk--ink   { background: var(--text); }
.blk--brand { background: var(--showcase-brand, var(--text)); }
.blk--soft  { background: #E4E4E7; }

/* ─── Prompt-to-site demo ────────────────────────────── */
.demo {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 900px) { .demo { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); } }
.demo__col { padding: 28px; min-width: 0; }
.demo__col + .demo__col { border-top: 1px solid var(--border); }
@media (min-width: 900px) {
  .demo__col + .demo__col { border-top: none; border-left: 1px solid var(--border); }
}
.demo__col--input { background: var(--surface); }
.demo__col--output { background: var(--bg); }
.demo__head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.demo__brief {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  white-space: pre-wrap;
}
.demo__brief .k { color: var(--muted); }
.demo__brief .s { color: var(--text); }
.demo__output {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg);
}
.demo__output-chrome {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.demo__output-body {
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
}
.demo__caption {
  font-size: 12px; color: var(--muted);
  margin-top: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ─── Deliverables grid ──────────────────────────────── */
.deliv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .deliv { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .deliv { grid-template-columns: repeat(3, 1fr); } }
.deliv__item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  background: var(--bg);
}
.deliv__icon {
  width: 22px; height: 22px;
  margin-bottom: 14px;
  color: var(--text);
}
.deliv__name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.deliv__desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ─── Social proof: testimonial carousel ─────────────── */
/* One quote on screen at a time. Slides horizontally with snap so
   touch / trackpad feels natural; dots + prev/next buttons for click. */
.proof-carousel {
  position: relative;
}
.proof-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  /* hide native scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.proof-track::-webkit-scrollbar { display: none; }
.proof {
  display: flex;
  gap: 0;
  flex: 0 0 100%;
}
.proof__item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px clamp(28px, 5vw, 56px);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 280px;
}
.proof__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  max-width: 56ch;
}
.proof-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 24px;
}
.proof-dots {
  display: flex;
  gap: 8px;
}
.proof-dot {
  width: 28px;
  height: 3px;
  border: 0;
  background: var(--border);
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.proof-dot[aria-current="true"] { background: var(--text); }
.proof-dot:hover { background: var(--muted); }
.proof-dot[aria-current="true"]:hover { background: var(--text); }
.proof-nav {
  display: flex;
  gap: 8px;
}
.proof-nav__btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  color: var(--muted);
}
.proof-nav__btn:hover { border-color: var(--text); color: var(--text); }
.proof-nav__btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.proof__quote {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
}
.proof__attr {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.proof__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  flex-shrink: 0;
}
.proof__who { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.proof__name { font-size: 13px; font-weight: 500; color: var(--text); }
.proof__role { font-size: 12px; color: var(--muted); }
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-top: 32px;
  overflow: hidden;
  background: var(--bg);
}
.proof-metric {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.proof-metric:last-child { border-right: none; }
.proof-metric__num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.proof-metric__label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ─── Industries strip (hero footnote) ──────────────── */
.industries {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.industries__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.industries__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}
.industries__list span {
  display: inline-flex;
  align-items: center;
}
.industries__list span + span::before {
  content: '·';
  margin-right: 18px;
  color: var(--muted);
}

/* ─── Inverted dark section (for visual rhythm) ──── */
/* Pure b&w, just inverts ink/paper so the page has a heavy moment
   without breaking the editorial palette. */
.section--invert {
  background: var(--text);
  color: #FAFAFA;
  border-bottom: 1px solid var(--text);
}
.section--invert .section__title {
  color: #FAFAFA;
}
.section--invert .eyebrow,
.section--invert .section__lede {
  color: #A1A1AA;
}

/* ─── Comparison block (3-column "vs") ───────────── */
.compare {
  border: 1px solid #3F3F46;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #18181B;
}
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: minmax(120px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 0;
}
.compare__head {
  background: #0A0A0A;
  border-bottom: 1px solid #3F3F46;
}
.compare__head > div {
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A1A1AA;
  border-right: 1px solid #3F3F46;
}
.compare__head > div:last-child { border-right: none; }
.compare__head > div.us {
  color: #FAFAFA;
  background: #27272A;
}
.compare__row {
  border-bottom: 1px solid #3F3F46;
}
.compare__row:last-child { border-bottom: none; }
.compare__row > div {
  padding: 18px;
  font-size: 14px;
  color: #D4D4D8;
  border-right: 1px solid #3F3F46;
  line-height: 1.5;
}
.compare__row > div:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  color: #FAFAFA;
  letter-spacing: -0.01em;
}
.compare__row > div:last-child { border-right: none; }
.compare__row > div.us {
  color: #FFFFFF;
  background: #27272A;
  font-weight: 500;
}

/* ─── Display statement (oversized typographic moment) ─ */
/* One per page, framed by its own section. Reads as a quote-mark
   beat between dense content blocks. */
.display-section {
  padding: clamp(64px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.display-statement {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  max-width: 22ch;
}
.display-statement em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}
.display-statement__attribution {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── About page ─────────────────────────────────────── */
.about__lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  /* Widened from 36ch, the previous narrow cap wrapped the lede after
     four or five words and read as a layout bug, not editorial drama. */
  max-width: 60ch;
  margin: 0 0 48px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
.about__item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.about__item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ─── Domain help page ───────────────────────────────── */
.help-step {
  border-left: 2px solid var(--border);
  padding: 4px 0 4px 24px;
  margin-bottom: 24px;
}
.help-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.help-step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.help-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.6;
}
.dns-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  margin: 12px 0;
}
.dns-table th,
.dns-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.dns-table th {
  font-weight: 500;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface);
}
.dns-table td:last-child { color: var(--text); }

/* ─── A11y ───────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
