/* Vanday.ai — landing page */
:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-soft: #f4f3ef;
  --surface-sunken: #efeee9;
  --border: oklch(0.92 0.005 80);
  --border-strong: oklch(0.86 0.006 80);
  --text: oklch(0.18 0.01 80);
  --text-muted: oklch(0.48 0.008 80);
  --text-faint: oklch(0.66 0.006 80);
  --accent: oklch(0.58 0.16 32);
  --accent-soft: oklch(0.94 0.04 38);
  --accent-hover: oklch(0.52 0.17 32);
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.04);
  --shadow-md: 0 4px 18px -6px oklch(0.2 0.01 80 / 0.10), 0 1px 2px oklch(0.2 0.01 80 / 0.04);
  --shadow-lg: 0 24px 60px -20px oklch(0.2 0.01 80 / 0.18), 0 2px 6px oklch(0.2 0.01 80 / 0.06);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body, #root {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
a { color: inherit; }

/* ============ Layout shell ============ */
.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ Nav ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 30;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.015em;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.brand-name { letter-spacing: -0.02em; }
.brand-name .tld { color: var(--text-muted); font-weight: 500; }
.nav-mid {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-mid a { text-decoration: none; transition: color 120ms; }
.nav-mid a:hover { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.coming-pill .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 120ms, border-color 120ms;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:hover { background: var(--surface-soft); }
.btn.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn.primary:hover { background: oklch(0.28 0.01 80); }
.btn.accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn.accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* ============ Mono section labels ============ */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 18px;
  line-height: 1.4;
}
.section-label .num {
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
  margin-right: 4px;
}

/* ============ Hero ============ */
.hero {
  padding: 88px 0 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-left h1 {
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 12px 0 22px;
  color: var(--text);
  text-wrap: balance;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-family: "Geist", serif;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 460px;
  text-wrap: pretty;
}
.waitlist {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 460px;
  box-shadow: var(--shadow-sm);
  transition: border-color 120ms, box-shadow 120ms;
}
.waitlist:focus-within {
  border-color: var(--text);
  box-shadow: 0 0 0 3px oklch(0.18 0.01 80 / 0.07);
}
.waitlist input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  padding: 8px 10px;
  font-size: 14.5px;
  color: var(--text);
  min-width: 0;
}
.waitlist input::placeholder { color: var(--text-faint); }
.waitlist .btn { padding: 9px 16px; font-size: 13.5px; }

.waitlist-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
}
.waitlist-foot .avatars {
  display: flex;
}
.waitlist-foot .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -6px;
  background-size: cover;
  background-position: center;
}
.waitlist-foot .av:first-child { margin-left: 0; }

.waitlist-success {
  padding: 14px 18px;
  background: var(--accent-soft);
  border: 1px solid oklch(0.86 0.06 38);
  border-radius: 12px;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--accent);
}
.waitlist-success .check-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Hero right (visual collage) */
.hero-right {
  position: relative;
  height: 540px;
}
.hero-collage {
  position: absolute;
  inset: 0;
}
.hc-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hc-card.thumb-card {
  width: 220px;
  aspect-ratio: 4 / 3;
}
.hc-card.thumb-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hc-card.large {
  top: 40px; right: 0;
  width: 320px;
  transform: rotate(2deg);
}
.hc-card.mid {
  top: 200px; left: 30px;
  width: 240px;
  transform: rotate(-3deg);
}
.hc-card.small {
  bottom: 30px; right: 80px;
  width: 180px;
  transform: rotate(4deg);
}

/* Tag overlay card */
.hc-tags {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  top: 0; left: 20px;
  z-index: 4;
}
.hc-tags-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.hc-tags-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 230px;
}
.kw {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  animation: kw-in 460ms forwards;
}
@keyframes kw-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero search hint */
.hc-search {
  position: absolute;
  bottom: 90px; left: -10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--shadow-md);
  z-index: 5;
}
.hc-search .caret {
  width: 1.5px;
  height: 14px;
  background: var(--accent);
  animation: blink 1.1s steps(2, end) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
.hc-search-q { color: var(--text-muted); font-family: var(--font-mono); font-size: 12.5px; }

/* ============ Section base ============ */
section.block {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.block-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.block-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.block-head h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.block-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  text-wrap: pretty;
}

/* ============ Sneak peek frames ============ */
.peek {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.peek.reverse {
  grid-template-columns: 1.4fr 1fr;
}
.peek.reverse .peek-copy {
  order: 2;
}
.peek-copy h3 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 12px 0 18px;
  text-wrap: balance;
}
.peek-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px;
  max-width: 420px;
}
.peek-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.peek-copy li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.peek-copy li .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Browser-like frame */
.frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.frame-bar {
  height: 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  background: var(--surface-soft);
}
.frame-bar .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--surface-sunken);
  border: 1px solid var(--border-strong);
}
.frame-bar .url {
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  background: var(--surface);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  min-width: 220px;
  text-align: center;
}
.frame-body {
  padding: 22px;
  background: var(--bg);
  min-height: 320px;
}

/* Peek 1 — AI tagging */
.peek-tag {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}
.peek-tag-thumb {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-sunken);
  position: relative;
  border: 1px solid var(--border);
}
.peek-tag-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.peek-tag-thumb .scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, oklch(0.94 0.04 38 / 0.5) 50%, transparent 100%);
  height: 60px;
  animation: scan 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0%, 100% { top: -60px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { top: calc(100% + 60px); opacity: 0.8; }
}
.peek-tag-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tag-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tag-row-h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 3px 8px;
  border-radius: 4px;
}
.tag-pill.neutral {
  background: var(--surface-sunken);
  color: var(--text);
}
.tag-pill .sparkle {
  display: inline-flex;
  align-items: center;
}
.color-swatches {
  display: flex;
  gap: 6px;
}
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.caption-line {
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* Peek 2 — Auto crops */
.peek-crops {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.peek-original {
  display: flex;
  gap: 14px;
  align-items: center;
}
.peek-original .orig-thumb {
  width: 140px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.peek-original .orig-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.peek-original .orig-meta {
  font-size: 12.5px;
  color: var(--text-muted);
}
.peek-original .orig-meta .name {
  font-family: var(--font-mono);
  color: var(--text);
  margin-bottom: 4px;
}
.crop-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.crop-arrow::before,
.crop-arrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.crops-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.crop-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.crop-tile-img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.crop-tile-img.r-1-1 { aspect-ratio: 1; }
.crop-tile-img.r-4-5 { aspect-ratio: 4 / 5; }
.crop-tile-img.r-9-16 { aspect-ratio: 9 / 16; }
.crop-tile-img.r-16-9 { aspect-ratio: 16 / 9; }
.crop-tile-img.r-191-1 { aspect-ratio: 1.91 / 1; }
.crop-tile-img.r-2-3 { aspect-ratio: 2 / 3; }
.crop-tile-meta {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.crop-tile-platform {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--text-muted);
}
.crop-tile-platform .site-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px; height: 13px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 7.5px;
  color: white;
  font-weight: 600;
}
.crop-tile-ratio {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-faint);
}

/* Peek 3 — Publish composer */
.peek-publish {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
}
.pub-sites-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pub-site-mini {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  border: 1px solid transparent;
  background: transparent;
}
.pub-site-mini.on {
  background: var(--surface);
  border-color: var(--border);
}
.pub-site-mini .name { flex: 1; }
.pub-site-mini .check {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pub-site-mini.on .check {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.pub-site-mini .site-mark {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: white;
  font-weight: 600;
}
.pub-compose-mini {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.pub-preview-mini {
  display: flex;
  gap: 10px;
  background: var(--surface-soft);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}
.pub-preview-mini-img {
  width: 56px; height: 56px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.pub-preview-mini-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  flex: 1;
}
.pub-preview-mini-meta .name {
  font-family: var(--font-mono);
  color: var(--text);
  margin-bottom: 4px;
  font-size: 11px;
}
.pub-tabs-mini {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}
.pub-tab-mini {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.pub-tab-mini.active {
  border-color: var(--border);
  background: var(--surface-soft);
  color: var(--text);
}
.pub-tab-mini .site-mark {
  width: 14px; height: 14px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 7.5px;
  color: white;
  display: grid; place-items: center;
}
.pub-caption-mini {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text);
  padding: 8px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-height: 70px;
}
.pub-caption-mini .typed-caret {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1.1s steps(2, end) infinite;
}
.pub-foot-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-faint);
}
.pub-foot-mini .right-meta {
  font-family: var(--font-mono);
  color: var(--accent);
}

/* ============ Why Vanday SMB grid ============ */
.smb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.smb-card {
  background: var(--bg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
}
.smb-card .smb-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.smb-card h4 {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}
.smb-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  text-wrap: pretty;
}
.smb-card .vs {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-strong);
  font-size: 12px;
  color: var(--text-faint);
}
.smb-card .vs .strike {
  text-decoration: line-through;
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: 11.5px;
}
.smb-card .vs .ours {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 11.5px;
}

/* Wrap compare table on narrow viewports */
.compare {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare th,
.compare td {
  padding: 14px 18px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  background: var(--surface-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  padding: 12px 18px;
}
.compare thead th.ours {
  color: var(--accent);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.compare th.row-h {
  font-weight: 500;
  color: var(--text);
  font-size: 13.5px;
  background: var(--surface);
}
.compare td.cell-yes { color: var(--text); }
.compare td.cell-no { color: var(--text-faint); }
.compare td.cell-ours {
  color: var(--accent);
  font-weight: 500;
}
.compare .y-mark,
.compare .n-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -3px;
}
.compare .y-mark { background: var(--accent-soft); color: var(--accent); }
.compare .n-mark { background: var(--surface-sunken); color: var(--text-faint); }

/* ============ Final CTA ============ */
.cta-final {
  margin: 60px 0 90px;
  padding: 64px 56px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.cta-final .section-label {
  color: oklch(0.65 0.01 80);
}
.cta-final .section-label .num {
  color: var(--accent-soft);
}
.cta-final h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 16px;
  max-width: 540px;
  text-wrap: balance;
}
.cta-final h2 em {
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 400;
}
.cta-final p {
  font-size: 15px;
  color: oklch(0.75 0.005 80);
  margin: 0 0 28px;
  max-width: 460px;
  line-height: 1.55;
}
.cta-final .waitlist {
  background: oklch(0.24 0.01 80);
  border-color: oklch(0.32 0.01 80);
  max-width: 480px;
}
.cta-final .waitlist input {
  color: var(--bg);
}
.cta-final .waitlist input::placeholder {
  color: oklch(0.65 0.01 80);
}
.cta-final .waitlist .btn.accent { /* unchanged */ }
.cta-final-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 36px,
      oklch(1 0 0 / 0.025) 36px,
      oklch(1 0 0 / 0.025) 37px
    );
  pointer-events: none;
}
.cta-final-mark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-family: var(--font-mono);
  font-size: 360px;
  font-weight: 600;
  color: oklch(1 0 0 / 0.025);
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* ============ Footer ============ */
footer.foot {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-faint);
}
footer.foot a { text-decoration: none; margin-left: 18px; }
footer.foot a:hover { color: var(--text); }

/* ============ Color theme overrides (Tweaks) ============ */
body[data-accent="terracotta"] { /* default — set in :root */ }
body[data-accent="forest"] {
  --accent: oklch(0.5 0.13 155);
  --accent-soft: oklch(0.94 0.04 155);
  --accent-hover: oklch(0.44 0.14 155);
}
body[data-accent="indigo"] {
  --accent: oklch(0.48 0.16 265);
  --accent-soft: oklch(0.94 0.04 265);
  --accent-hover: oklch(0.42 0.17 265);
}
body[data-accent="plum"] {
  --accent: oklch(0.45 0.16 330);
  --accent-soft: oklch(0.94 0.04 330);
  --accent-hover: oklch(0.39 0.17 330);
}

body[data-bg="warm"] { /* default */ }
body[data-bg="cool"] {
  --bg: oklch(0.985 0.003 240);
  --surface: #ffffff;
  --surface-soft: oklch(0.96 0.004 240);
  --surface-sunken: oklch(0.93 0.005 240);
  --border: oklch(0.92 0.005 240);
  --border-strong: oklch(0.86 0.006 240);
}
body[data-bg="paper"] {
  --bg: oklch(0.97 0.012 80);
  --surface: oklch(0.99 0.008 80);
  --surface-soft: oklch(0.95 0.014 80);
  --surface-sunken: oklch(0.92 0.014 80);
}

/* ============ Responsive ============ */
/* Tablet — collapse hero to single column, drop crops to 3 cols */
@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 0 40px;
    gap: 44px;
  }
  .hero-right { height: 420px; max-width: 520px; }
  .block-head { grid-template-columns: 1fr; gap: 18px; }
  .peek, .peek.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .peek.reverse .peek-copy { order: 0; }
  .crops-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-mid { display: none; }
}

@media (max-width: 720px) {
  .page { padding: 0 22px; }
  .nav { padding: 18px 0 14px; }
  .hero { padding: 40px 0 32px; gap: 36px; }
  .hero-left h1 { font-size: clamp(40px, 9vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-right { height: 360px; }
  .hc-card.thumb-card.large { width: 220px; top: 30px; }
  .hc-card.thumb-card.mid   { width: 170px; top: 160px; left: 0; }
  .hc-card.thumb-card.small { width: 130px; bottom: 20px; right: 30px; }
  .hc-tags { padding: 10px 12px; top: 0; left: 0; }
  .hc-tags-row { max-width: 200px; }
  .hc-search { bottom: 70px; left: 0; padding: 8px 12px 8px 10px; font-size: 12px; }

  section.block { padding: 56px 0; }
  .block-head h2 { font-size: clamp(28px, 7vw, 38px); }
  .peek-copy h3 { font-size: 24px; }

  .peek-tag { grid-template-columns: 1fr; gap: 16px; }
  .peek-tag-thumb { aspect-ratio: 4 / 3; max-width: 280px; }

  .peek-publish { grid-template-columns: 1fr; gap: 14px; }
  .pub-sites-mini { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .pub-sites-mini > .tag-row-h { width: 100%; padding-left: 0; }
  .pub-site-mini { padding: 6px 10px; }

  .smb-grid { grid-template-columns: 1fr; }
  .smb-card { padding: 24px 22px; min-height: 0; }
  .smb-card h4 { font-size: 19px; }
  .smb-card .vs { flex-direction: column; align-items: flex-start; gap: 4px; }
  .smb-card .vs > span:nth-child(2) { display: none; }

  .crops-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .frame-body { padding: 16px; min-height: 0; }
  .frame-bar .url { min-width: 0; max-width: 60%; font-size: 10px; }

  .cta-final { padding: 36px 24px; margin: 40px 0 56px; }
  .cta-final h2 { font-size: clamp(26px, 6.5vw, 36px); }
  .cta-final-mark { font-size: 240px; right: -20px; bottom: -30px; }

  footer.foot { padding: 28px 0 40px; flex-direction: column; align-items: flex-start; gap: 12px; }
  footer.foot a { margin-left: 0; margin-right: 16px; }

  .peek-original { flex-direction: column; align-items: flex-start; }
  .peek-original .orig-thumb { width: 100%; max-width: 220px; }
}

@media (max-width: 460px) {
  .nav { gap: 8px; }
  .nav .coming-pill { font-size: 10px; padding: 3px 8px; }
  .nav .btn { font-size: 12px; padding: 6px 10px; }
  .brand-name { font-size: 14px; }
  .hero-left h1 { font-size: 36px; line-height: 1; }
  .hero-right { height: 300px; }
  .hc-card.thumb-card.large { width: 180px; }
  .hc-card.thumb-card.mid   { width: 140px; }
  .hc-card.thumb-card.small { width: 110px; }
  .waitlist { padding: 5px; }
  .waitlist input { font-size: 13.5px; padding: 7px 8px; }
  .waitlist .btn { padding: 8px 12px; font-size: 12.5px; }
}
