/* ==========================================================
   SleakSkin landing — 3 variations share these base styles.
   Each variation scopes its own look under .va / .vb / .vc
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #0b0b0c;
  background: #fff;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sora: 'Sora', 'Inter', sans-serif;
  --inter: 'Inter', system-ui, sans-serif;
  --serif: 'Instrument Serif', 'Fraunces', Georgia, serif;
  --fraunces: 'Fraunces', Georgia, serif;
}

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 280px; padding: 14px;
  background: rgba(15,15,17,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  font-family: var(--inter);
  font-size: 12px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.4);
}
.tweaks h4 {
  margin: 0 0 10px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
}
.tweaks h4::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #7bdcb5;
}
.tweaks .row { margin-bottom: 12px; }
.tweaks .row:last-child { margin-bottom: 0; }
.tweaks label {
  display: block;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.tweaks .seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px;
  padding: 3px; background: rgba(255,255,255,0.05);
  border-radius: 9px;
}
.tweaks .seg button {
  padding: 6px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.tweaks .seg button.on { background: #fff; color: #0b0b0c; }
.tweaks .swatches {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
}
.tweaks .swatches button {
  aspect-ratio: 1; border-radius: 50%;
  border: 2px solid transparent;
  transition: transform .15s;
}
.tweaks .swatches button.on { border-color: rgba(255,255,255,0.9); transform: scale(1.08); }

/* ---------- Shared: placeholder avatar/image ---------- */
.ph-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--inter); font-weight: 600;
  color: #fff; flex-shrink: 0;
}
.ph-img {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e6e6e9, #d4d4d9);
}
.ph-img.noise::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

/* ==========================================================
   VARIATION A — Clean Modern (Linear/Vercel energy)
   ========================================================== */

.va {
  --bg: #ffffff;
  --bg-2: #f7f7f8;
  --bg-3: #ececee;
  --ink: #0b0b0c;
  --ink-2: #52525b;
  --ink-3: #8a8a92;
  --line: #e6e6ea;
  --line-2: #efeff2;
  --accent: var(--va-accent, #4f46e5);
  --accent-ink: #ffffff;
  --card: #ffffff;
  font-family: var(--inter);
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
}
.va.dense { --pad-sec: 72px; }
.va:not(.dense) { --pad-sec: 120px; }

.va .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.va .nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid var(--line-2);
}
.va .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.va .brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.va .brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--sora); font-weight: 700; font-size: 14px;
  position: relative; overflow: hidden;
}
.va .brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.35), transparent 50%);
}
.va .nav-links { display: flex; gap: 4px; }
.va .nav-links a {
  padding: 8px 12px; border-radius: 8px;
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
  transition: .15s;
}
.va .nav-links a:hover { color: var(--ink); background: var(--bg-2); }
.va .nav-cta { display: flex; align-items: center; gap: 8px; }

.va .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500;
  transition: .15s; white-space: nowrap;
}
.va .btn-ghost { color: var(--ink-2); }
.va .btn-ghost:hover { color: var(--ink); background: var(--bg-2); }
.va .btn-primary { background: var(--ink); color: #fff; }
.va .btn-primary:hover { background: #222226; }
.va .btn-accent { background: var(--accent); color: var(--accent-ink); }
.va .btn-accent:hover { filter: brightness(0.95); }
.va .btn-outline { border: 1px solid var(--line); color: var(--ink); background: var(--bg); }
.va .btn-outline:hover { background: var(--bg-2); }
.va .btn-lg { padding: 12px 18px; font-size: 14.5px; border-radius: 10px; }

/* Hero */
.va .hero { padding: 88px 0 40px; position: relative; }
.va .hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center;
}
.va .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 5px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg); font-size: 12.5px; color: var(--ink-2);
}
.va .eyebrow .pill {
  padding: 3px 8px; border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 14%, white);
  color: var(--accent); font-weight: 600; font-size: 11px;
  letter-spacing: 0.02em;
}
.va .hero h1 {
  font-family: var(--sora);
  margin: 20px 0 16px;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 700;
}
.va .hero h1 em {
  font-style: normal; color: var(--accent);
  background: linear-gradient(120deg, var(--accent), color-mix(in oklab, var(--accent) 60%, black));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.va .hero p.lead {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  max-width: 520px; margin: 0 0 28px;
}
.va .hero-ctas { display: flex; gap: 10px; }
.va .hero-meta {
  display: flex; gap: 22px; margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line-2);
  font-size: 13px; color: var(--ink-2);
}
.va .hero-meta b { color: var(--ink); font-weight: 600; }
.va .hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; display: inline-block; margin-right: 6px; vertical-align: 1px; }

/* Product shot */
.va .shot {
  position: relative;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 30px 60px -20px rgba(15,15,25,.18),
    0 8px 16px -8px rgba(15,15,25,.08);
}
.va .shot-window {
  border-radius: 10px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
}
.va .shot-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-bottom: 1px solid var(--line-2);
  background: var(--bg-2);
}
.va .shot-dots { display: flex; gap: 5px; }
.va .shot-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e0e0e4; }
.va .shot-url {
  flex: 1; text-align: center;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.va .shot-body {
  display: grid; grid-template-columns: 200px 1fr;
  height: 380px;
}
.va .shot-side {
  background: var(--bg-2); border-right: 1px solid var(--line-2);
  padding: 14px 10px;
}
.va .shot-side .logo {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; margin-bottom: 12px;
  font-size: 12px; font-weight: 600;
}
.va .shot-side .logo .m { width: 18px; height: 18px; border-radius: 5px; background: var(--accent); }
.va .shot-side .item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 6px;
  font-size: 12px; color: var(--ink-2);
}
.va .shot-side .item.on { background: #fff; color: var(--ink); font-weight: 500; box-shadow: 0 1px 0 var(--line-2); }
.va .shot-side .item::before { content: ''; width: 12px; height: 12px; border-radius: 3px; background: var(--line); flex-shrink: 0;}
.va .shot-side .item.on::before { background: var(--accent); }
.va .shot-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.va .shot-main h5 { margin: 0; font-size: 13px; font-weight: 600; }
.va .shot-main .sub { font-size: 11px; color: var(--ink-3); margin-bottom: 2px; }
.va .shot-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.va .shot-stat {
  padding: 10px 11px; border: 1px solid var(--line-2); border-radius: 8px;
}
.va .shot-stat .k { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em;}
.va .shot-stat .v { font-family: var(--sora); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px;}
.va .shot-stat .d { font-size: 10px; color: #16a34a; }
.va .shot-chart {
  flex: 1; border: 1px solid var(--line-2); border-radius: 8px; padding: 10px;
  background: linear-gradient(180deg, #fff, var(--bg-2));
  display: flex; flex-direction: column;
}
.va .chart-head { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-3); margin-bottom: 6px;}
.va .chart-svg { flex: 1; }
.va .shot-bookings { display: flex; flex-direction: column; gap: 6px; }
.va .booking-row {
  display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 10px;
  padding: 8px 10px; border: 1px solid var(--line-2); border-radius: 7px; font-size: 11px;
}
.va .booking-row .time { font-family: var(--mono); color: var(--ink-3); }
.va .booking-row .who { display: flex; align-items: center; gap: 7px; }
.va .booking-row .status { font-size: 10px; padding: 2px 6px; border-radius: 4px; background: #dcfce7; color: #15803d; font-weight: 500; }

.va .shot-float {
  position: absolute;
  background: #fff; border: 1px solid var(--line);
  border-radius: 11px; padding: 11px 13px;
  box-shadow: 0 20px 40px -12px rgba(15,15,25,.18);
  font-size: 12px;
}
.va .shot-float.top { top: -14px; right: -14px; display: flex; gap: 10px; align-items: center;}
.va .shot-float.bot { bottom: -14px; left: -14px; max-width: 220px; }
.va .shot-float .ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: color-mix(in oklab, var(--accent) 14%, white);
  color: var(--accent);
  display: grid; place-items: center;
}
.va .shot-float .ttl { font-weight: 600; font-size: 12.5px; }
.va .shot-float .sub { font-size: 11px; color: var(--ink-3); }

/* Logo cloud */
.va .logos {
  padding: 28px 0 0;
}
.va .logos-lbl {
  text-align: center; font-size: 12px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 20px;
  font-family: var(--mono); font-weight: 500;
}
.va .logos-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  align-items: center;
}
.va .logo-chip {
  height: 42px; display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-family: var(--sora); font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em;
  opacity: 0.75; transition: .2s;
}
.va .logo-chip:hover { opacity: 1; color: var(--ink); }
.va .logo-chip svg { height: 22px; width: auto; }

/* Section */
.va .sec { padding: var(--pad-sec) 0; }
.va .sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.va .sec-head.left { text-align: left; margin-left: 0; }
.va .kicker {
  font-family: var(--mono); font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
  margin-bottom: 14px;
}
.va h2 {
  font-family: var(--sora);
  margin: 0 0 14px; font-weight: 700;
  font-size: clamp(32px, 3.3vw, 44px);
  line-height: 1.08; letter-spacing: -0.03em;
}
.va .sec-head p { margin: 0; color: var(--ink-2); font-size: 17px; line-height: 1.55; }

/* How it works */
.va .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.va .step {
  padding: 26px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--card); position: relative;
  transition: .2s;
}
.va .step:hover { border-color: #d4d4da; transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(15,15,25,.08);}
.va .step-n {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.08em;
}
.va .step h3 {
  font-family: var(--sora); margin: 14px 0 8px;
  font-size: 20px; letter-spacing: -0.02em; font-weight: 600;
}
.va .step p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.va .step-illo {
  margin-top: 18px; height: 120px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  position: relative; overflow: hidden;
}

/* Features */
.va .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.va .feat {
  padding: 26px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--card);
}
.va .feat .ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: color-mix(in oklab, var(--accent) 12%, white);
  color: var(--accent);
  display: grid; place-items: center; margin-bottom: 14px;
}
.va .feat h3 {
  font-family: var(--sora); margin: 0 0 6px;
  font-size: 17px; letter-spacing: -0.01em; font-weight: 600;
}
.va .feat p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }

/* Split: case study */
.va .split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.va .case-card {
  padding: 34px; border-radius: 18px;
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.va .case-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, color-mix(in oklab, var(--accent) 60%, black), transparent 55%);
  opacity: 0.7;
}
.va .case-card > * { position: relative; }
.va .case-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.va .case-q {
  font-family: var(--serif); font-size: 26px; line-height: 1.3;
  margin: 18px 0 22px; font-weight: 500; letter-spacing: -0.01em;
}
.va .case-attr { display: flex; align-items: center; gap: 12px; }
.va .case-attr .name { font-size: 14px; font-weight: 600; }
.va .case-attr .role { font-size: 12px; color: rgba(255,255,255,.6); }
.va .case-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 26px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.va .case-metrics .k { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55);}
.va .case-metrics .v { font-family: var(--sora); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px;}

.va .case-right h2 { margin-bottom: 16px; }
.va .case-right p { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 24px;}
.va .case-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px;}
.va .case-list li {
  display: flex; gap: 10px; font-size: 14.5px; color: var(--ink);
  padding: 10px 12px; border-radius: 10px; background: var(--bg-2);
}
.va .case-list li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  margin-top: 1px;
}

/* Testimonials grid */
.va .tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.va .tcard {
  padding: 24px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--card);
  display: flex; flex-direction: column;
}
.va .tcard .stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px;}
.va .tcard p { margin: 10px 0 18px; font-size: 15px; line-height: 1.55; color: var(--ink); flex: 1;}
.va .tcard .who { display: flex; align-items: center; gap: 10px; }
.va .tcard .who .name { font-size: 13.5px; font-weight: 600; }
.va .tcard .who .role { font-size: 12px; color: var(--ink-3); }

/* Pricing */
.va .pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.va .pcard {
  padding: 28px; border-radius: 16px; border: 1px solid var(--line);
  background: var(--card); display: flex; flex-direction: column;
}
.va .pcard.pop {
  border: 1.5px solid var(--ink);
  box-shadow: 0 20px 40px -20px rgba(15,15,25,.2);
  position: relative;
}
.va .pcard.pop::before {
  content: 'Most popular'; position: absolute; top: -11px; left: 28px;
  padding: 4px 10px; font-size: 10.5px; font-weight: 600;
  border-radius: 999px; background: var(--ink); color: #fff;
  letter-spacing: 0.04em;
}
.va .pcard h3 { font-family: var(--sora); margin: 0; font-size: 16px; font-weight: 600;}
.va .pcard .pdesc { color: var(--ink-3); font-size: 13px; margin: 4px 0 22px;}
.va .pcard .price {
  font-family: var(--sora); font-size: 44px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1;
}
.va .pcard .price sup { font-size: 16px; font-weight: 500; color: var(--ink-2); vertical-align: top; position: relative; top: 6px; margin-right: 2px;}
.va .pcard .price small { font-size: 13px; font-weight: 500; color: var(--ink-3); margin-left: 3px; }
.va .pcard .setup { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin: 8px 0 22px; }
.va .pcard ul { list-style: none; padding: 0; margin: 22px 0 22px; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--ink);}
.va .pcard ul li { display: flex; gap: 8px; align-items: flex-start; }
.va .pcard ul li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b0b0c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/16px no-repeat;
}
.va .pcard .btn { margin-top: auto; justify-content: center; text-align: center;}

/* FAQ */
.va .faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.va .faq-list { display: flex; flex-direction: column; }
.va details.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.va details.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.va details.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sora); font-size: 17px; font-weight: 600;
  cursor: pointer; list-style: none;
  letter-spacing: -0.01em;
}
.va details.faq-item summary::-webkit-details-marker { display: none; }
.va details.faq-item summary::after {
  content: '+'; font-family: var(--sora); font-weight: 400; font-size: 22px; color: var(--ink-3);
  transition: .2s;
}
.va details.faq-item[open] summary::after { transform: rotate(45deg); }
.va details.faq-item p {
  margin: 10px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.6;
  max-width: 580px;
}

/* CTA block */
.va .ctablock {
  padding: 64px;
  border-radius: 22px;
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
  text-align: center;
}
.va .ctablock::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 85% -20%, color-mix(in oklab, var(--accent) 70%, black), transparent),
    radial-gradient(500px 260px at 10% 120%, color-mix(in oklab, var(--accent) 40%, black), transparent);
  opacity: 0.8;
}
.va .ctablock > * { position: relative; }
.va .ctablock h2 {
  font-family: var(--sora); color: #fff;
  font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.va .ctablock p { margin: 0 auto 28px; max-width: 540px; color: rgba(255,255,255,0.7); font-size: 16.5px; line-height: 1.55;}
.va .ctablock .ctas { display: flex; gap: 10px; justify-content: center;}
.va .ctablock .trust { margin-top: 22px; font-size: 12px; color: rgba(255,255,255,0.55);}

/* Footer */
.va .foot {
  padding: 48px 0 32px;
  border-top: 1px solid var(--line-2);
  font-size: 13px; color: var(--ink-2);
}
.va .foot-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  margin-bottom: 36px;
}
.va .foot h5 {
  font-family: var(--inter); margin: 0 0 14px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  font-weight: 600;
}
.va .foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;}
.va .foot a:hover { color: var(--ink); }
.va .foot-about { color: var(--ink-2); line-height: 1.6; margin: 12px 0 0; max-width: 260px;}
.va .foot-bot { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line-2); font-size: 12.5px; color: var(--ink-3);}

/* ==========================================================
   VARIATION B — Warm Human
   ========================================================== */

.vb {
  --bg: #faf6f0;
  --bg-2: #f2ebde;
  --bg-card: #ffffff;
  --ink: #2a1d12;
  --ink-2: #6b5645;
  --ink-3: #9a8775;
  --line: #e6dcc8;
  --line-2: #eee5d4;
  --accent: var(--vb-accent, #c6552c);
  --accent-2: #e8a87c;
  --sage: #7a8a6b;
  font-family: var(--inter);
  background: var(--bg); color: var(--ink);
  letter-spacing: -0.005em;
}
.vb.dense { --pad-sec: 72px; }
.vb:not(.dense) { --pad-sec: 120px; }
.vb .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.vb .nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250,246,240,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.vb .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px;}
.vb .brand { display: flex; align-items: center; gap: 10px; font-family: var(--fraunces); font-weight: 600; font-size: 19px; letter-spacing: -0.01em;}
.vb .brand-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--fraunces); font-weight: 600; font-size: 15px;
}
.vb .nav-links { display: flex; gap: 6px;}
.vb .nav-links a { padding: 8px 12px; font-size: 14px; color: var(--ink-2); border-radius: 8px;}
.vb .nav-links a:hover { color: var(--ink); background: var(--bg-2); }

.vb .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: .15s;
}
.vb .btn-primary { background: var(--accent); color: #fff; }
.vb .btn-primary:hover { filter: brightness(0.95); }
.vb .btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.vb .btn-outline:hover { background: var(--ink); color: var(--bg); }
.vb .btn-ghost { color: var(--ink); }

/* Hero B */
.vb .hero { padding: 72px 0 36px; }
.vb .hero-grid {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px;
  align-items: center;
}
.vb .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
}
.vb .eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--accent);}
.vb .hero h1 {
  font-family: var(--fraunces);
  margin: 18px 0 18px;
  font-size: clamp(48px, 5.8vw, 76px);
  line-height: 1; letter-spacing: -0.035em; font-weight: 500;
}
.vb .hero h1 em {
  font-style: italic; color: var(--accent); font-weight: 500;
}
.vb .hero p.lead {
  font-size: 18.5px; line-height: 1.6; color: var(--ink-2);
  max-width: 510px; margin: 0 0 30px;
}
.vb .hero-ctas { display: flex; gap: 12px; align-items: center; }
.vb .hero-note {
  margin-top: 30px; padding: 18px 20px;
  background: var(--bg-2); border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  max-width: 460px;
}
.vb .hero-note .avatars { display: flex; }
.vb .hero-note .avatars .ph-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid var(--bg-2);
  margin-left: -8px; font-size: 11px;
}
.vb .hero-note .avatars .ph-avatar:first-child { margin-left: 0; }
.vb .hero-note .txt { font-size: 13px; line-height: 1.5; color: var(--ink); }
.vb .hero-note .txt b { font-weight: 600; }

/* Hero right — overlapping cards */
.vb .hero-stack { position: relative; height: 540px;}
.vb .hero-photo {
  position: absolute; top: 0; right: 0;
  width: 78%; height: 92%;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #d4a574, #b87947);
}
.vb .hero-photo .ph-img { width: 100%; height: 100%; }
.vb .hero-photo .label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  padding: 10px 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: 12px; font-family: var(--fraunces); font-size: 14px;
  color: var(--ink);
}
.vb .hero-card {
  position: absolute; left: 0; bottom: 30px;
  width: 240px;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px -14px rgba(90,60,30,.25);
  border: 1px solid var(--line-2);
}
.vb .hero-card .hd { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.vb .hero-card .hd .ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: color-mix(in oklab, var(--accent) 15%, var(--bg-card));
  color: var(--accent); display: grid; place-items: center;
}
.vb .hero-card .hd .t { font-size: 13px; font-weight: 600;}
.vb .hero-card .hd .s { font-size: 11px; color: var(--ink-3);}
.vb .hero-card .slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;}
.vb .hero-card .slot {
  padding: 7px 0; border-radius: 6px;
  text-align: center; font-size: 11px;
  border: 1px solid var(--line); color: var(--ink-2);
  font-family: var(--mono);
}
.vb .hero-card .slot.on { background: var(--accent); color: #fff; border-color: var(--accent);}
.vb .hero-card .slot.off { opacity: 0.5; text-decoration: line-through; }

.vb .hero-card-2 {
  position: absolute; top: 30px; left: 10px;
  width: 200px;
  background: var(--bg-card); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 16px 32px -12px rgba(90,60,30,.22);
  border: 1px solid var(--line-2);
}
.vb .hero-card-2 .k { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;}
.vb .hero-card-2 .v { font-family: var(--fraunces); font-size: 30px; font-weight: 500; margin: 3px 0 0; letter-spacing: -0.02em;}
.vb .hero-card-2 .d { font-size: 11px; color: var(--sage); margin-top: 3px; font-weight: 500; }

/* Marquee / trust line */
.vb .trust-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.vb .trust-strip .row {
  display: flex; align-items: center; gap: 40px; justify-content: space-between;
  font-family: var(--fraunces); font-size: 17px; color: var(--ink-2);
  font-weight: 500;
}
.vb .trust-strip .row span { display: flex; align-items: center; gap: 10px;}
.vb .trust-strip .dot { color: var(--accent); }

/* Section B */
.vb .sec { padding: var(--pad-sec) 0; }
.vb .sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.vb .sec-head.left { text-align: left; margin-left: 0; }
.vb .kicker {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
  margin-bottom: 14px;
}
.vb h2 {
  font-family: var(--fraunces);
  margin: 0 0 14px; font-weight: 500;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05; letter-spacing: -0.03em;
}
.vb h2 em { font-style: italic; color: var(--accent);}
.vb .sec-head p { margin: 0; color: var(--ink-2); font-size: 18px; line-height: 1.6; }

/* How (B) — a three-card horizontal with line */
.vb .howb { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative;}
.vb .howb::before {
  content: ''; position: absolute; top: 40px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, var(--ink-3), transparent);
  opacity: .35;
}
.vb .stepb {
  padding: 28px; background: var(--bg-card); border-radius: 18px;
  border: 1px solid var(--line-2);
  position: relative;
}
.vb .stepb .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--fraunces); font-weight: 500; font-size: 20px;
  display: grid; place-items: center;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.vb .stepb h3 { font-family: var(--fraunces); margin: 0 0 8px; font-size: 22px; font-weight: 500; letter-spacing: -0.01em;}
.vb .stepb p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* Features B — alternating rows */
.vb .fb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 80px;}
.vb .fb-row:last-child { margin-bottom: 0; }
.vb .fb-row.flip > *:first-child { order: 2;}
.vb .fb-row .fb-copy .kick { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase;}
.vb .fb-row .fb-copy h3 { font-family: var(--fraunces); font-size: 36px; font-weight: 500; margin: 10px 0 14px; letter-spacing: -0.02em; line-height: 1.1;}
.vb .fb-row .fb-copy p { font-size: 16.5px; color: var(--ink-2); line-height: 1.65; margin: 0 0 18px;}
.vb .fb-row .fb-copy ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px;}
.vb .fb-row .fb-copy ul li { display: flex; gap: 10px; font-size: 15px; }
.vb .fb-row .fb-copy ul li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 18%, var(--bg));
  flex-shrink: 0; margin-top: 2px;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c6552c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.vb .fb-visual {
  aspect-ratio: 5/4; border-radius: 22px; overflow: hidden;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 28px;
}

/* Testimonial big */
.vb .tbig {
  padding: 80px 64px; border-radius: 24px;
  background: var(--ink); color: var(--bg);
  text-align: center; position: relative; overflow: hidden;
}
.vb .tbig::before {
  content: '\201C';
  position: absolute; left: 40px; top: 20px;
  font-family: var(--fraunces); font-size: 180px; line-height: 1;
  color: var(--accent); opacity: 0.5;
}
.vb .tbig p {
  font-family: var(--fraunces); font-weight: 500; font-style: italic;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.35;
  max-width: 820px; margin: 0 auto 30px;
  letter-spacing: -0.01em;
}
.vb .tbig .who {
  display: inline-flex; gap: 14px; align-items: center;
}
.vb .tbig .who .name { font-family: var(--fraunces); font-size: 17px; font-weight: 500;}
.vb .tbig .who .role { font-size: 13px; color: rgba(255,255,255,0.6);}
.vb .tbig .metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 680px; margin: 48px auto 0;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12);
}
.vb .tbig .metrics .v { font-family: var(--fraunces); font-size: 44px; font-weight: 500; letter-spacing: -0.02em; line-height: 1;}
.vb .tbig .metrics .k { margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase;}

/* Testimonials small grid (B) */
.vb .tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;}
.vb .tcard {
  padding: 24px; background: var(--bg-card); border: 1px solid var(--line-2);
  border-radius: 18px;
}
.vb .tcard .stars { color: var(--accent); font-size: 14px; letter-spacing: 1px;}
.vb .tcard p { font-family: var(--fraunces); font-size: 18px; line-height: 1.4; margin: 12px 0 20px; font-weight: 500; letter-spacing: -0.005em;}
.vb .tcard .who { display: flex; align-items: center; gap: 10px;}
.vb .tcard .who .name { font-size: 13.5px; font-weight: 600;}
.vb .tcard .who .role { font-size: 12px; color: var(--ink-3);}

/* Pricing B */
.vb .pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vb .pcard {
  padding: 30px; border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--line-2);
  display: flex; flex-direction: column;
}
.vb .pcard.pop {
  background: var(--ink); color: var(--bg); border: none;
}
.vb .pcard.pop .pdesc, .vb .pcard.pop .price small, .vb .pcard.pop .setup { color: rgba(255,255,255,0.6);}
.vb .pcard.pop ul { color: rgba(255,255,255,0.9);}
.vb .pcard.pop ul li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e8a87c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.vb .pcard.pop .price { color: #fff;}
.vb .pcard h3 { font-family: var(--fraunces); margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -0.01em;}
.vb .pcard .pdesc { font-size: 13.5px; color: var(--ink-2); margin: 4px 0 20px;}
.vb .pcard .price { font-family: var(--fraunces); font-size: 56px; font-weight: 500; letter-spacing: -0.03em; line-height: 1;}
.vb .pcard .price sup { font-size: 22px; font-weight: 500; vertical-align: top; position: relative; top: 10px; margin-right: 2px; }
.vb .pcard .price small { font-size: 14px; color: var(--ink-3); font-family: var(--inter); margin-left: 4px;}
.vb .pcard .setup { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin: 10px 0 22px;}
.vb .pcard ul { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; font-size: 14px; flex: 1;}
.vb .pcard ul li { display: flex; gap: 10px; line-height: 1.45;}
.vb .pcard ul li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c6552c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.vb .pcard .btn { margin-top: auto; width: 100%; justify-content: center;}
.vb .pcard.pop .btn-outline { border-color: var(--bg); color: var(--bg);}
.vb .pcard.pop .btn-outline:hover { background: var(--bg); color: var(--ink);}

/* FAQ B */
.vb .faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;}
.vb details.faq-item { border-top: 1px solid var(--line); padding: 20px 0;}
.vb details.faq-item:last-of-type { border-bottom: 1px solid var(--line);}
.vb details.faq-item summary {
  font-family: var(--fraunces); font-size: 20px; font-weight: 500;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.01em;
}
.vb details.faq-item summary::-webkit-details-marker { display: none; }
.vb details.faq-item summary::after {
  content: ''; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--ink); flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232a1d12' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 12px;
  transition: .2s;
}
.vb details.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23faf6f0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.vb details.faq-item p { margin: 12px 0 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; max-width: 600px;}

/* CTA B */
.vb .ctablock {
  padding: 72px 48px; border-radius: 28px;
  background: var(--accent); color: #fff;
  text-align: center; position: relative; overflow: hidden;
}
.vb .ctablock::before {
  content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255,255,255,0.1);
}
.vb .ctablock::after {
  content: ''; position: absolute; left: -60px; bottom: -100px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(0,0,0,0.06);
}
.vb .ctablock > * { position: relative;}
.vb .ctablock h2 { font-family: var(--fraunces); color: #fff; font-size: clamp(36px, 4.2vw, 56px); letter-spacing: -0.03em; margin: 0 0 14px; font-weight: 500;}
.vb .ctablock h2 em { font-style: italic;}
.vb .ctablock p { margin: 0 auto 28px; max-width: 520px; color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.6;}
.vb .ctablock .ctas { display: flex; gap: 10px; justify-content: center;}
.vb .ctablock .btn-primary { background: #fff; color: var(--accent);}
.vb .ctablock .btn-primary:hover { background: var(--bg);}
.vb .ctablock .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff;}
.vb .ctablock .btn-outline:hover { background: rgba(255,255,255,0.12);}

/* Footer B */
.vb .foot { padding: 48px 0 32px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-2);}
.vb .foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; margin-bottom: 36px;}
.vb .foot h5 { font-family: var(--fraunces); margin: 0 0 14px; font-size: 14px; color: var(--ink); font-weight: 600;}
.vb .foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;}
.vb .foot a:hover { color: var(--ink);}
.vb .foot-about { color: var(--ink-2); line-height: 1.6; margin: 12px 0 0; max-width: 260px;}
.vb .foot-bot { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3);}

/* ==========================================================
   VARIATION C — Bold Editorial
   ========================================================== */

.vc {
  --bg: #f3f1ec;
  --bg-2: #e8e4da;
  --ink: #0e0e10;
  --ink-2: #44443f;
  --ink-3: #7a7970;
  --line: #d8d4c8;
  --accent: var(--vc-accent, #1f3d2b);
  --accent-ink: #eaf2ec;
  --pop: #ef5b2a;
  font-family: var(--inter);
  background: var(--bg); color: var(--ink);
  letter-spacing: -0.005em;
}
.vc.dense { --pad-sec: 80px; }
.vc:not(.dense) { --pad-sec: 130px; }
.vc .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Nav */
.vc .nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--bg); border-bottom: 1px solid var(--ink);
}
.vc .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px;}
.vc .brand {
  font-family: var(--fraunces); font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px;
}
.vc .brand-mark {
  width: 30px; height: 30px; border: 1.5px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--fraunces); font-weight: 600; font-size: 15px;
  font-style: italic;
}
.vc .nav-links { display: flex; gap: 2px; }
.vc .nav-links a {
  padding: 6px 12px; font-size: 13px; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}
.vc .nav-links a:hover { background: var(--ink); color: var(--bg);}

.vc .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: .15s;
}
.vc .btn-primary { background: var(--ink); color: var(--bg);}
.vc .btn-primary:hover { background: var(--accent); }
.vc .btn-outline { border: 1.5px solid var(--ink); color: var(--ink);}
.vc .btn-outline:hover { background: var(--ink); color: var(--bg); }
.vc .btn-pop { background: var(--pop); color: var(--ink); }
.vc .btn-pop:hover { filter: brightness(0.95);}
.vc .btn-lg { padding: 14px 22px; font-size: 14px;}

/* Hero C */
.vc .hero {
  border-bottom: 1px solid var(--ink);
  padding: 40px 0 48px;
}
.vc .hero-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink); padding-bottom: 12px;
}
.vc .hero-top .issue b { color: var(--ink); font-weight: 600;}
.vc .hero h1 {
  font-family: var(--fraunces);
  margin: 0; font-weight: 500;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.92; letter-spacing: -0.06em;
}
.vc .hero h1 em {
  font-style: italic; font-weight: 400; color: var(--accent);
}
.vc .hero h1 .under { text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 8px;}
.vc .hero-sub {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: start;
}
.vc .hero-sub .deck {
  font-family: var(--fraunces); font-size: 22px; line-height: 1.25;
  grid-column: span 2; letter-spacing: -0.01em; font-weight: 500;
}
.vc .hero-sub .meta { display: flex; flex-direction: column; gap: 12px;}
.vc .hero-ctas { margin-top: 8px; display: flex; gap: 10px;}
.vc .hero-ctas .btn { padding: 12px 18px; font-size: 13px;}

/* Hero art — large product mock */
.vc .hero-art {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 24px;
  align-items: stretch;
}
.vc .hero-art-main {
  background: var(--ink); color: var(--bg);
  border-radius: 6px; padding: 28px;
  position: relative; overflow: hidden;
  min-height: 420px;
}
.vc .hero-art-main .lbl {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.55);
  display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 10px;
}
.vc .hero-art-main .big {
  font-family: var(--fraunces); font-size: 88px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1; margin: 28px 0 8px;
}
.vc .hero-art-main .dlt { color: var(--pop); font-size: 14px; font-weight: 500;}
.vc .hero-art-main .chart { margin-top: 24px; height: 180px;}
.vc .hero-art-main .footnote { position: absolute; bottom: 24px; left: 28px; right: 28px;
  font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between;
}
.vc .hero-art-side {
  display: grid; grid-template-rows: 1fr 1fr; gap: 24px;
}
.vc .art-tile {
  border: 1.5px solid var(--ink); border-radius: 6px; padding: 22px; background: var(--bg);
  display: flex; flex-direction: column;
}
.vc .art-tile .k { font-family: var(--mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em;}
.vc .art-tile .v { font-family: var(--fraunces); font-size: 48px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin: 10px 0 8px;}
.vc .art-tile .v em { color: var(--pop); font-style: italic;}
.vc .art-tile p { margin: auto 0 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-2);}

/* Logo row */
.vc .logos {
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
  display: flex; align-items: center; gap: 40px;
  overflow: hidden;
}
.vc .logos .lbl {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-2); white-space: nowrap; padding-right: 32px; border-right: 1px solid var(--line);
}
.vc .logos-row {
  flex: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: center;
}
.vc .logo-chip {
  height: 32px; display: flex; align-items: center; justify-content: center;
  font-family: var(--fraunces); font-weight: 500; font-size: 17px;
  color: var(--ink); letter-spacing: -0.01em;
}

/* Section C */
.vc .sec { padding: var(--pad-sec) 0; border-bottom: 1px solid var(--ink);}
.vc .sec-head {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 32px;
  padding-bottom: 48px; margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  align-items: end;
}
.vc .sec-head .k {
  font-family: var(--mono); font-size: 11px; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: 0.12em;
  padding-bottom: 8px; border-bottom: 1px solid var(--ink); display: inline-block;
}
.vc h2 {
  font-family: var(--fraunces);
  margin: 0; font-weight: 500;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98; letter-spacing: -0.04em;
}
.vc h2 em { font-style: italic; color: var(--accent);}
.vc .sec-head p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.55;}

/* How C — numbered list w/ dividers */
.vc .howc { display: grid; grid-template-columns: repeat(3, 1fr); }
.vc .stepc {
  padding: 28px; border-right: 1px solid var(--line);
}
.vc .stepc:last-child { border-right: none;}
.vc .stepc:first-child { padding-left: 0;}
.vc .stepc:last-child { padding-right: 0;}
.vc .stepc .num {
  font-family: var(--fraunces); font-style: italic; font-weight: 500;
  font-size: 64px; line-height: 1; color: var(--accent);
  letter-spacing: -0.03em; margin-bottom: 12px;
}
.vc .stepc h3 { font-family: var(--fraunces); margin: 0 0 10px; font-size: 26px; font-weight: 500; letter-spacing: -0.02em;}
.vc .stepc p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6;}
.vc .stepc .tag {
  display: inline-block; margin-top: 16px;
  font-family: var(--mono); font-size: 11px;
  padding: 4px 9px; border: 1px solid var(--ink);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Features C — asymmetric grid */
.vc .feat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; grid-auto-rows: 240px;}
.vc .fcard {
  border: 1.5px solid var(--ink); border-radius: 6px; padding: 24px;
  background: var(--bg); display: flex; flex-direction: column; overflow: hidden;
  position: relative;
}
.vc .fcard h3 {
  font-family: var(--fraunces); margin: 0; font-size: 26px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.05;
}
.vc .fcard p { margin: 10px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.55;}
.vc .fcard .tag { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: auto;}
.vc .fcard.dk { background: var(--ink); color: var(--bg);}
.vc .fcard.dk .tag { color: rgba(255,255,255,0.6);}
.vc .fcard.dk p { color: rgba(255,255,255,0.75);}
.vc .fcard.pop { background: var(--pop); border-color: var(--ink);}
.vc .fcard.sz-2 { grid-column: span 2;}
.vc .fcard.sz-3 { grid-column: span 3;}
.vc .fcard.sz-4 { grid-column: span 4;}
.vc .fcard.sz-6 { grid-column: span 6;}
.vc .fcard.tall { grid-row: span 2;}

/* Case study C — huge quote */
.vc .case {
  padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--ink); border-radius: 6px; overflow: hidden;
}
.vc .case-left {
  padding: 40px; background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 520px;
}
.vc .case-left .who-top {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between;
}
.vc .case-left blockquote {
  margin: 0;
  font-family: var(--fraunces); font-weight: 500;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.15; letter-spacing: -0.02em;
}
.vc .case-left blockquote em { color: var(--pop); font-style: italic; font-weight: 500;}
.vc .case-left .who-bot { display: flex; justify-content: space-between; align-items: end;}
.vc .case-left .who-bot .name-blk .nm { font-family: var(--fraunces); font-size: 20px; font-weight: 500;}
.vc .case-left .who-bot .name-blk .rl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px;}
.vc .case-right {
  padding: 40px; background: var(--bg-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-content: center;
}
.vc .case-right .metric { border-top: 1.5px solid var(--ink); padding-top: 12px;}
.vc .case-right .metric .k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2);}
.vc .case-right .metric .v { font-family: var(--fraunces); font-size: 60px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin-top: 12px;}
.vc .case-right .metric .v em { color: var(--accent); font-style: italic;}
.vc .case-right .metric .d { font-size: 13px; color: var(--ink-2); margin-top: 8px; line-height: 1.4;}

/* Testimonials C */
.vc .tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
.vc .tcard {
  padding: 28px; border-top: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 16px;
}
.vc .tcard .rating {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  display: flex; justify-content: space-between;
}
.vc .tcard p {
  font-family: var(--fraunces); font-size: 22px; font-weight: 500; line-height: 1.3;
  margin: 0; letter-spacing: -0.01em;
}
.vc .tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto;}
.vc .tcard .who .name { font-size: 14px; font-weight: 600;}
.vc .tcard .who .role { font-size: 12px; color: var(--ink-3);}

/* Pricing C — table style */
.vc .pricing-wrap { border: 1.5px solid var(--ink); border-radius: 6px; overflow: hidden;}
.vc .pricing { display: grid; grid-template-columns: repeat(4, 1fr);}
.vc .pcard {
  padding: 36px 30px; border-right: 1px solid var(--ink);
  display: flex; flex-direction: column;
}
.vc .pcard:last-child { border-right: none;}
.vc .pcard.pop { background: var(--ink); color: var(--bg);}
.vc .pcard.pop .pdesc, .vc .pcard.pop .setup, .vc .pcard.pop .price small { color: rgba(255,255,255,0.6);}
.vc .pcard.pop .label { background: var(--pop); color: var(--ink);}
.vc .label {
  font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 4px 8px; background: var(--ink); color: var(--bg);
  display: inline-block; margin-bottom: 18px; font-weight: 600;
}
.vc .pcard h3 { font-family: var(--fraunces); font-size: 28px; margin: 0; font-weight: 500; letter-spacing: -0.02em;}
.vc .pcard .pdesc { font-size: 13.5px; color: var(--ink-2); margin: 6px 0 26px;}
.vc .pcard .price { font-family: var(--fraunces); font-size: 72px; font-weight: 500; letter-spacing: -0.04em; line-height: 1;}
.vc .pcard .price sup { font-size: 28px; vertical-align: top; position: relative; top: 12px; margin-right: 2px;}
.vc .pcard .price small { font-size: 14px; font-family: var(--inter); color: var(--ink-3); margin-left: 4px;}
.vc .pcard.pop .price { color: #fff;}
.vc .pcard .setup { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 10px;}
.vc .pcard ul { list-style: none; padding: 0; margin: 28px 0 28px; display: flex; flex-direction: column; gap: 11px; font-size: 14px; flex: 1;}
.vc .pcard ul li {
  display: flex; gap: 10px; line-height: 1.45;
  padding-bottom: 11px; border-bottom: 1px solid var(--line);
}
.vc .pcard ul li:last-child { border-bottom: none;}
.vc .pcard.pop ul li { border-bottom-color: rgba(255,255,255,0.12);}
.vc .pcard ul li::before { content: '→'; flex-shrink: 0; font-family: var(--mono); opacity: 0.7;}
.vc .pcard .btn { margin-top: auto; width: 100%; justify-content: center;}
.vc .pcard.pop .btn-outline { border-color: var(--bg); color: var(--bg);}
.vc .pcard.pop .btn-outline:hover { background: var(--bg); color: var(--ink);}

/* FAQ C */
.vc .faq-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px;}
.vc details.faq-item { border-top: 1.5px solid var(--ink); padding: 22px 0;}
.vc details.faq-item:last-of-type { border-bottom: 1.5px solid var(--ink);}
.vc details.faq-item summary {
  font-family: var(--fraunces); font-size: 26px; font-weight: 500;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: start;
  letter-spacing: -0.02em; gap: 20px; line-height: 1.15;
}
.vc details.faq-item summary::-webkit-details-marker { display: none; }
.vc details.faq-item summary::after {
  content: '+'; font-family: var(--fraunces); font-weight: 400; font-size: 28px;
  color: var(--ink-3); flex-shrink: 0; transition: .2s; line-height: 1; margin-top: 4px;
}
.vc details.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent);}
.vc details.faq-item p { margin: 14px 0 0; color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 640px;}

/* CTA C */
.vc .ctablock {
  padding: 88px 48px; text-align: center;
  border: 1.5px solid var(--ink); border-radius: 6px;
  background: var(--accent); color: var(--accent-ink);
  position: relative; overflow: hidden;
}
.vc .ctablock .kick {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(234,242,236,0.6);
}
.vc .ctablock h2 {
  font-family: var(--fraunces); font-size: clamp(52px, 7vw, 104px);
  letter-spacing: -0.04em; line-height: 0.95; margin: 20px 0 24px; color: var(--accent-ink);
  font-weight: 500;
}
.vc .ctablock h2 em { font-style: italic; color: var(--pop);}
.vc .ctablock p { margin: 0 auto 32px; max-width: 560px; color: rgba(234,242,236,0.75); font-size: 17px; line-height: 1.55;}
.vc .ctablock .ctas { display: flex; gap: 12px; justify-content: center;}
.vc .ctablock .btn-primary { background: var(--pop); color: var(--ink);}
.vc .ctablock .btn-outline { border-color: var(--bg); color: var(--bg);}
.vc .ctablock .btn-outline:hover { background: var(--bg); color: var(--accent);}

/* Footer C */
.vc .foot { padding: 56px 0 28px; border-top: 1px solid var(--ink); font-size: 14px; color: var(--ink-2);}
.vc .foot-top {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.vc .foot h5 { font-family: var(--mono); margin: 0 0 14px; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.14em;}
.vc .foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;}
.vc .foot a:hover { color: var(--ink);}
.vc .foot-brand { font-family: var(--fraunces); font-size: 72px; letter-spacing: -0.04em; line-height: 0.9; margin-bottom: 14px; font-weight: 500;}
.vc .foot-brand em { font-style: italic; color: var(--accent);}
.vc .foot-about { color: var(--ink-2); line-height: 1.55; max-width: 280px; margin: 0;}
.vc .foot-bot { display: flex; justify-content: space-between; padding-top: 22px; font-size: 12.5px; color: var(--ink-3); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em;}

/* Responsive */
@media (max-width: 900px) {
  .va .hero-grid, .vb .hero-grid, .vc .hero-sub, .vc .hero-art,
  .va .split, .vb .fb-row, .va .faq-wrap, .vb .faq-wrap, .vc .faq-wrap, .vc .case,
  .va .features, .va .steps, .vb .howb, .va .tgrid, .vb .tgrid, .vc .tgrid,
  .va .pricing, .vb .pricing, .vc .pricing, .vc .howc, .va .foot-grid, .vb .foot-grid, .vc .foot-top,
  .va .logos-row, .vc .logos-row, .vc .hero-art-side { grid-template-columns: 1fr; }
  .va .feat, .vc .fcard { grid-column: span 1 !important; grid-row: auto !important;}
  .vc .feat-grid { grid-template-columns: 1fr; grid-auto-rows: auto;}
  .vb .fb-row.flip > *:first-child { order: 0;}

  /* Mobile nav: drop the inline link row + secondary button so the bar
     fits a phone. Keep brand + the primary CTA. */
  .va .nav-links, .vb .nav-links, .vc .nav-links { display: none; }
  .va .nav-cta .btn-ghost, .vb .nav-cta .btn-ghost, .vc .nav-cta .btn-ghost { display: none; }

  /* Stack CTA button rows full-width instead of overflowing side by side */
  .va .hero-ctas, .va .ctablock .ctas, .va .page-hero .ctas { flex-direction: column; align-items: stretch; }
  .va .hero-ctas .btn, .va .ctablock .ctas .btn, .va .page-hero .ctas .btn { justify-content: center; width: 100%; }
  .va .hero-meta { flex-wrap: wrap; gap: 14px; }

  /* Floating mockup cards sit at negative offsets (-14px) which pokes them
     past the viewport on phones and causes horizontal scroll. Pull inside. */
  .va .shot-float.top { right: 6px; top: -8px; }
  .va .shot-float.bot { left: 6px; bottom: -8px; }
}

/* Phone-specific typography so big display headings don't overflow */
@media (max-width: 600px) {
  .va .container { padding: 0 18px; }
  .va .hero { padding: 56px 0 28px; }
  .va .hero h1 { font-size: clamp(30px, 8.4vw, 40px); letter-spacing: -0.025em; }
  .va .hero p.lead { font-size: 16.5px; }
  .va h2 { font-size: clamp(26px, 7vw, 32px); }
  .va .page-hero { padding: 48px 0 22px; }
  .va .page-hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .va .page-hero .lead { font-size: 16px; }
  .va .prose { padding: 0; }

  /* The dashboard mockup has a fixed 200px sidebar + non-shrinking main,
     so it overflows phones. Collapse to a single column and hide sidebar. */
  .va .shot { padding: 12px; }
  .va .shot-body { grid-template-columns: 1fr; height: auto; min-width: 0; }
  .va .shot-side { display: none; }
  .va .shot-main { min-width: 0; padding: 14px; }
  .va .shot-stats { gap: 8px; }
  .va .booking-row .who { min-width: 0; }
}

@media (max-width: 1100px) and (min-width: 901px){ .pricing{ grid-template-columns: repeat(2, 1fr) !important; } }

/* ==========================================================
   Sub-page helpers (About, Industries, Product, Legal, etc.)
   Added for the multi-page build. Reuse existing tokens.
   ========================================================== */
.va .page-hero{ padding: 76px 0 28px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.va .page-hero .container{ max-width: 820px; }
.va .page-hero .kicker{ margin-bottom: 14px; }
.va .page-hero h1{ font-size: clamp(34px, 5vw, 54px); line-height: 1.04; letter-spacing: -0.02em; margin: 0; }
.va .page-hero .lead{ color: var(--ink-2); font-size: 18px; line-height: 1.6; margin-top: 18px; max-width: 640px; }
.va .page-hero .crumbs{ font-size: 13px; color: var(--ink-2); margin-bottom: 18px; }
.va .page-hero .crumbs a{ color: var(--ink-2); }
.va .page-hero .crumbs a:hover{ color: var(--accent); }

.va .prose{ max-width: 760px; margin: 0 auto; }
.va .prose h2{ font-size: 24px; letter-spacing: -0.01em; margin: 40px 0 12px; }
.va .prose h3{ font-size: 18px; margin: 28px 0 8px; }
.va .prose p{ color: var(--ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.va .prose ul{ color: var(--ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 16px; padding-left: 22px; }
.va .prose li{ margin-bottom: 8px; }
.va .prose a{ color: var(--accent); font-weight: 500; }
.va .prose .updated{ font-size: 13px; color: var(--ink-2); margin-bottom: 28px; }
.va .prose hr{ border: none; border-top: 1px solid var(--line); margin: 36px 0; }

.va .note-card{ max-width: 760px; margin: 28px auto 0; padding: 22px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); }
.va .note-card p{ margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
