/* ============================================================
   Vendoko — vendoko.com
   Design direction: "Two Sides" — teal buyer / clay seller,
   warm paper base, Bricolage Grotesque + Inter.
   ============================================================ */

:root {
  --paper:       #FAF9F7;
  --paper-2:     #F3F1ED;
  --ink:         #1C1A17;
  --ink-soft:    #57534E;
  --ink-faint:   #8A837B;
  --line:        rgba(28,26,23,.10);
  --line-soft:   rgba(28,26,23,.06);
  --teal:        #0D9488;
  --teal-hover:  #0F766E;
  --teal-deep:   #0B4F49;
  --teal-subtle: #E6F6F4;
  --teal-tint:   #A7E0DA;
  --teal-bright: #2DD4BF;
  --clay:        #C2553D;
  --clay-hover:  #A8442F;
  --clay-deep:   #7A2E1C;
  --clay-subtle: #FBEDE8;
  --clay-tint:   #F0CDC1;
  --clay-bright: #E0795A;
  --r:           18px;
  --r-lg:        28px;
  --display:     "Bricolage Grotesque", system-ui, sans-serif;
  --body:        "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: 880px; margin-inline: auto; padding-inline: 24px; }
a { color: inherit; }
svg { display: block; }
::selection { background: var(--teal-tint); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,247,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 30px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .vmark { width: 32px; height: 32px; }
.brand span { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-cta { margin-inline-start: auto; display: flex; gap: 10px; align-items: center; }
.menu-btn { display: none; }
.mobile-menu { display: none; border-top: 1px solid var(--line-soft); background: var(--paper); padding: 10px 24px 18px; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; font-weight: 600; font-size: 16px;
  text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  padding: 12px 24px; border-radius: 999px; text-decoration: none; border: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal-tint); outline-offset: 2px;
}
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; box-shadow: 0 10px 24px -10px rgba(28,26,23,.5); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px rgba(28,26,23,.14); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px rgba(28,26,23,.35); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(0,0,0,.35); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 22px -8px rgba(13,148,136,.55); }
.btn-teal:hover { background: var(--teal-hover); }
.btn-clay { background: var(--clay); color: #fff; box-shadow: 0 8px 22px -8px rgba(194,85,61,.55); }
.btn-clay:hover { background: var(--clay-hover); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- Type ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.kicker .k-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.chip {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.chip.teal { background: var(--teal-subtle); color: var(--teal-deep); }
.chip.clay { background: var(--clay-subtle); color: var(--clay-deep); }
.chip.ink  { background: var(--paper-2); color: var(--ink-soft); }

.display-xl {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 800; line-height: .98; letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.025em;
}
.display-sm {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.015em;
}
.w-teal { color: var(--teal); }
.w-clay { color: var(--clay); }
.lede { font-size: 18px; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

section { padding: 100px 0; }
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head .chip { margin-bottom: 18px; }
.sec-title { font-family: var(--display); font-size: clamp(32px, 4.4vw, 56px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; max-width: 20ch; margin-inline: auto; }
.sec-sub { margin: 18px auto 0; max-width: 54ch; font-size: 17px; color: var(--ink-soft); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 84px 0 30px; text-align: center; }
.page-hero .chip { margin-bottom: 20px; }
.page-hero h1 { max-width: 16ch; margin-inline: auto; }
.page-hero .lede { max-width: 56ch; margin: 22px auto 0; }
.page-hero .hero-ctas { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Split panels ---------- */
.split { display: flex; gap: 16px; position: relative; }
.panel {
  flex: 1;
  border-radius: var(--r-lg);
  padding: 44px 40px 40px;
  color: #fff;
  text-align: start;
  position: relative;
  overflow: hidden;
  transition: flex .45s cubic-bezier(.4,0,.2,1);
  min-height: 400px;
  display: flex; flex-direction: column;
}
@media (hover:hover) { .split:hover .panel:hover { flex: 1.35; } }
.panel.buy  { background: linear-gradient(155deg, #10A396 0%, var(--teal) 45%, var(--teal-deep) 130%); }
.panel.sell { background: linear-gradient(205deg, #CE6B52 0%, var(--clay) 45%, var(--clay-deep) 130%); }
.panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.panel .p-role {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  opacity: .85; margin-bottom: 14px;
}
.panel h2, .panel .p-title {
  font-family: var(--display); font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 18px;
}
.panel ul { list-style: none; display: grid; gap: 11px; margin-bottom: 30px; }
.panel li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; opacity: .95; }
.panel li svg { flex: none; margin-top: 5px; }
.panel .p-cta { margin-top: auto; }
.v-slot { flex: none; width: 0; position: relative; z-index: 5; }
/* hero split only: clear the badge's orbit, same inset on both sides of both panels */
.split:has(.v-slot) .panel { padding-inline: 56px; }
.v-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 8px 32px -8px rgba(28,26,23,.35), 0 0 0 8px rgba(250,249,247,.35);
  display: grid; place-items: center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.split:hover .v-badge { transform: translate(-50%, -50%) scale(1.07); }
.v-badge svg { width: 42px; height: 42px; }

/* trust strip */
.strip { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; padding: 30px 0 0; color: var(--ink-faint); font-size: 13.5px; }
.strip span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card.hoverable:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(28,26,23,.2); }
.card h4 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--ink-soft); }
.icon-badge { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; flex: none; }
.icon-badge.t { background: var(--teal); color: #fff; }
.icon-badge.c { background: var(--clay); color: #fff; }
.icon-badge.soft-t { background: var(--teal-subtle); color: var(--teal-deep); }
.icon-badge.soft-c { background: var(--clay-subtle); color: var(--clay-deep); }
.icon-badge.ink { background: var(--ink); color: var(--paper); }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.b-span3 { grid-column: span 3; }
.b-span2 { grid-column: span 2; }
.grad-t { background: linear-gradient(150deg, var(--teal-subtle), #fff 75%); }
.grad-c { background: linear-gradient(150deg, var(--clay-subtle), #fff 75%); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---------- Flow (3 steps) ---------- */
.flow { display: flex; align-items: stretch; gap: 0; max-width: 980px; margin-inline: auto; }
.flow-step { flex: 1; text-align: center; padding: 0 18px; position: relative; }
.flow-ic {
  width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 24px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 10px 26px -12px rgba(28,26,23,.18);
}
.flow-step h4 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.flow-step p { font-size: 14.5px; color: var(--ink-soft); max-width: 26ch; margin-inline: auto; }
.flow-link { flex: none; width: 90px; display: flex; align-items: center; margin-top: 37px; }
.flow-link .fl {
  height: 4px; width: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--clay));
  position: relative;
}
.flow-link .fl::after {
  content: ""; position: absolute; inset-inline-end: -1px; top: 50%; transform: translateY(-50%);
  border-inline-start: 8px solid var(--clay);
  border-block: 5px solid transparent;
}

/* ---------- Dark band + timeline ---------- */
.dark-band { background: var(--ink); border-radius: 40px; color: var(--paper); padding: 90px 0; margin-inline: 16px; }
.dark-band .sec-title { color: var(--paper); }
.dark-band .sec-sub { color: rgba(250,249,247,.65); }
.dark-band .chip { background: rgba(250,249,247,.1); color: rgba(250,249,247,.8); }
.tl-labels { display: grid; grid-template-columns: 1fr 60px 1fr; max-width: 860px; margin: 0 auto 26px; }
.tl-labels span { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.tl-labels .lb { color: var(--teal-bright); text-align: end; }
.tl-labels .ls { color: var(--clay-bright); grid-column: 3; }
.tl { max-width: 860px; margin-inline: auto; position: relative; }
.tl-row { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; margin-bottom: 26px; }
.tl-row:last-child { margin-bottom: 0; }
.tl-spine { position: relative; height: 100%; display: grid; place-items: center; align-self: stretch; }
.tl-spine::before { content: ""; position: absolute; top: -13px; bottom: -13px; width: 2px; background: rgba(250,249,247,.12); }
.tl-row:first-of-type .tl-spine::before { top: 50%; }
.tl-row:last-of-type .tl-spine::before { bottom: 50%; }
.tl-dot { position: relative; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 5px rgba(250,249,247,.1); }
.tl-card {
  background: rgba(250,249,247,.06);
  border: 1px solid rgba(250,249,247,.1);
  border-radius: var(--r);
  padding: 18px 20px;
  max-width: 340px;
}
.tl-card.b { justify-self: end; text-align: end; border-color: rgba(45,212,191,.28); }
.tl-card.s { justify-self: start; border-color: rgba(224,121,90,.3); }
.tc-status {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 9px;
}
.tl-card.b .tc-status { background: rgba(45,212,191,.15); color: var(--teal-bright); }
.tl-card.s .tc-status { background: rgba(224,121,90,.16); color: var(--clay-bright); }
.tl-card h5 { font-family: var(--display); font-size: 16.5px; font-weight: 700; margin-bottom: 3px; }
.tl-card p { font-size: 13px; color: rgba(250,249,247,.6); }

/* ---------- UI vignettes (light, product-flavoured) ---------- */
.vig {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 2px 4px rgba(28,26,23,.04), 0 24px 48px -20px rgba(28,26,23,.16);
  padding: 22px;
  text-align: start;
}
.vig-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vig-title { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.vig-badge { font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.vig-badge.t { background: var(--teal-subtle); color: var(--teal-deep); }
.vig-badge.c { background: var(--clay-subtle); color: var(--clay-deep); }
.vig-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 9px 2px; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.vig-row:last-of-type { border-bottom: none; }
.vig-row .q { color: var(--ink-faint); font-size: 12.5px; }
.vig-row .p { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 13px; }
.vig-total { display: flex; justify-content: space-between; padding-top: 12px; font-weight: 700; font-size: 14.5px; }
.vig-thumb { width: 34px; height: 34px; border-radius: 9px; flex: none; }
.stock-tag { font-size: 9.5px; font-weight: 800; letter-spacing: .1em; padding: 3px 8px; border-radius: 999px; }
.stock-tag.ok { color: var(--teal-deep); background: var(--teal-subtle); }
.stock-tag.low { color: var(--clay-deep); background: var(--clay-subtle); }
.track-line { display: flex; align-items: center; padding: 4px 2px; }
.t-node { width: 11px; height: 11px; border-radius: 50%; background: var(--teal); flex: none; }
.t-node.cur { background: var(--clay); }
.t-node.pending { background: var(--paper-2); border: 1.5px solid var(--line); }
.t-bar { flex: 1; height: 2px; background: var(--teal-tint); }
.t-bar.pending { background: var(--line-soft); }
.track-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-faint); margin-top: 6px; }
.invite-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 13px; font-size: 12px; color: var(--ink-soft);
}
.invite-pill code { font-family: ui-monospace, monospace; font-size: 11.5px; color: var(--teal-deep); }
.invite-pill .copy { margin-inline-start: auto; color: var(--teal); font-weight: 800; font-size: 11px; letter-spacing: .08em; }

/* ---------- Feature rows (alternating) ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 40px 0;
}
.feature-row .fr-copy h3 { font-family: var(--display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 14px; }
.feature-row .fr-copy p { color: var(--ink-soft); font-size: 16px; max-width: 46ch; }
.feature-row .fr-copy .mini-list { list-style: none; margin-top: 18px; display: grid; gap: 9px; }
.feature-row .fr-copy .mini-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: flex-start; }
.feature-row .fr-copy .mini-list svg { flex: none; margin-top: 4px; }
.feature-row.flip .fr-copy { order: 2; }
.feature-row.flip .fr-vis { order: 1; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 0; overflow: hidden;
}
details.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--display); font-weight: 700; font-size: 17px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--paper-2); color: var(--ink-soft); transition: transform .2s ease, background .2s ease, color .2s ease; }
details.faq[open] summary .plus { transform: rotate(45deg); background: var(--teal); color: #fff; }
details.faq .faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; max-width: 62ch; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: 0 2px 4px rgba(28,26,23,.04), 0 24px 48px -20px rgba(28,26,23,.12); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body); font-size: 15px; color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.16);
}
.hp-field {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); pointer-events: none; opacity: 0;
}
.role-toggle { display: flex; gap: 8px; }
.role-toggle input {
  position: absolute; width: 1px; height: 1px;
  opacity: 0; pointer-events: none; overflow: hidden;
  clip-path: inset(50%);
}
.role-toggle label {
  flex: 1; text-align: center; cursor: pointer;
  font-size: 14px; font-weight: 600; margin-bottom: 0;
  padding: 11px 8px; border-radius: 999px;
  border: 1.5px solid var(--line);
  transition: all .15s ease;
}
.role-toggle input:checked + label { border-color: transparent; color: #fff; }
.role-toggle input:focus-visible + label { outline: 3px solid var(--teal-tint); outline-offset: 2px; }
.role-toggle #r-buyer:checked + label { background: var(--teal); }
.role-toggle #r-seller:checked + label { background: var(--clay); }
.role-toggle #r-both:checked + label { background: var(--ink); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { margin-bottom: 8px; }
.prose .updated { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 40px; }
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin: 40px 0 12px; }
.prose p, .prose li { font-size: 15.5px; color: var(--ink-soft); }
.prose p + p { margin-top: 12px; }
.prose ul { padding-inline-start: 22px; margin-top: 10px; display: grid; gap: 7px; }
.prose a { color: var(--teal-deep); font-weight: 600; }
.prose .note {
  background: var(--teal-subtle); border: 1px solid var(--teal-tint); border-radius: var(--r);
  padding: 16px 20px; font-size: 14px; color: var(--teal-deep); margin-bottom: 36px;
}

/* ---------- CTA sections ---------- */
.cta-final { text-align: center; }
.cta-final .split { max-width: 900px; margin-inline: auto; margin-top: 44px; }
.cta-final .panel { min-height: 0; padding: 36px 32px; }
.cta-final .panel .p-title { font-size: 24px; margin-bottom: 6px; }
.cta-final .panel p { font-size: 14.5px; opacity: .85; margin-bottom: 22px; }
.signin-line { margin-top: 26px; font-size: 15px; color: var(--ink-soft); }
.signin-line a { font-weight: 600; color: var(--ink); }

.cta-simple {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-simple::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 12% 110%, rgba(13,148,136,.4), transparent 65%),
    radial-gradient(60% 90% at 88% -10%, rgba(194,85,61,.35), transparent 65%);
}
.cta-simple > * { position: relative; }
.cta-simple h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; margin-bottom: 12px; }
.cta-simple p { color: rgba(250,249,247,.72); max-width: 46ch; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); padding: 56px 0 38px; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.foot .tag { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.foot-links { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-links h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.foot-links a { display: block; font-size: 14.5px; color: var(--ink-soft); text-decoration: none; padding: 4px 0; }
.foot-links a:hover { color: var(--ink); }
.foot-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--ink-faint);
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .panel, .v-badge { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-span3 { grid-column: span 2; }
  .b-span2 { grid-column: span 1; }
  .bento > .b-last { grid-column: span 2; }
  .flow { flex-direction: column; gap: 34px; }
  .flow-link { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
  .feature-row.flip .fr-copy { order: 1; }
  .feature-row.flip .fr-vis { order: 2; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn {
    display: grid; place-items: center;
    width: 42px; height: 42px; border-radius: 12px; border: 2px solid rgba(28,26,23,.14);
    background: transparent; cursor: pointer; color: var(--ink);
  }
  .nav-cta .btn-ghost { display: none; }
  .split { flex-direction: column; }
  .v-badge { width: 72px; height: 72px; }
  .v-badge svg { width: 36px; height: 36px; }
  .panel { min-height: 0; padding: 34px 28px; }
  .split:has(.v-slot) .panel { padding-inline: 28px; }
  .dark-band { margin-inline: 8px; border-radius: 28px; padding: 64px 0; }
  .tl-labels { display: none; }
  .tl-row { grid-template-columns: 28px 1fr; margin-bottom: 18px; }
  .tl-spine { grid-column: 1; grid-row: 1; }
  .tl-card { grid-column: 2; max-width: none; }
  .tl-card.b { justify-self: stretch; text-align: start; }
  .tl-card.s { justify-self: stretch; }
  section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-hero { padding-top: 56px; }
  .form-card { padding: 26px 22px; }
}
