:root {
  /* Cool blue-grey base — crisp, modern, minimal */
  --bg: #f4f6fa;
  --bg-2: #e8ecf3;
  --surface: #ffffff;
  --ink: #0b1220;            /* deep navy-black, tonal with blue */
  --ink-2: #27324a;
  --muted: #5a6677;
  --line: #0b1220;
  --line-soft: rgba(11,18,32,0.12);
  --line-hair: rgba(11,18,32,0.07);
  /* Alva brand colors */
  --brand-teal: #43cea2;
  --brand-blue: #4285F4;
  --brand-gradient: linear-gradient(135deg, #43cea2 0%, #4285F4 100%);
  /* Accent: single blue pulled from logo */
  --accent: #2e6df6;
  --accent-2: #4285F4;
  --accent-ink: #ffffff;
  --accent-soft: #eaf1fe;
  --lilac: #eef3ff;
  /* Status colors — desaturated to fit cool palette */
  --ok: #2a8a63;
  --ok-soft: #dff0e8;
  --warn: #b07a1e;
  --warn-soft: #f3ead4;
  --danger: #c0413f;
  --danger-soft: #f4dcdb;

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-display: "Geist", ui-sans-serif, system-ui;

  --container: 1240px;
  --radius: 6px;
  --radius-lg: 14px;
}

/* Accent variants — all restrained, blue-leaning */
[data-accent="blue"]     { --accent: #2e6df6; --accent-2: #4285F4; --accent-soft: #eaf1fe; --accent-ink: #ffffff; }
[data-accent="teal"]     { --accent: #2a8a7a; --accent-2: #43cea2; --accent-soft: #dff1ec; --accent-ink: #ffffff; }
[data-accent="gradient"] { --accent: #2e6df6; --accent-2: #43cea2; --accent-soft: #eaf1fe; --accent-ink: #ffffff; }
[data-accent="ink"]      { --accent: #0b1220; --accent-2: #0b1220; --accent-soft: #e8ecf3; --accent-ink: #ffffff; }

/* Surface variants */
[data-surface="cool"]    { --bg: #f4f6fa; --bg-2: #e8ecf3; }
[data-surface="white"]   { --bg: #ffffff; --bg-2: #f4f6fa; }
[data-surface="paper"]   { --bg: #eef1f6; --bg-2: #dde3ec; }
[data-surface="warm"]    { --bg: #f4f6fa; --bg-2: #e8ecf3; }
[data-surface="ink"]     { --bg: #0b1220; --bg-2: #101a2e; --ink:#f4f6fa; --ink-2:#c5cddb; --muted:#7b8599; --line:#f4f6fa; --line-soft:rgba(244,246,250,0.14); --line-hair:rgba(244,246,250,0.08); --surface:#101a2e; }

[data-serif="true"] { --font-display: "Fraunces", "Geist", serif; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01","ss02","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }
.display { font-family: var(--font-display); letter-spacing: -0.035em; line-height: 0.96; font-weight: 500; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.hairline { height: 1px; background: var(--line-soft); width: 100%; }
.hairline-strong { height: 1px; background: var(--line); width: 100%; }

/* Top navigation */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.nav-links { flex: 1; }
.nav-cta-group { display: flex; align-items: center; gap: 10px; }
@media (max-width: 1100px) {
  .status-pill { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}
.nav-logo-word { line-height: 1; }
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: none;
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid var(--line-hair);
  line-height: 1;
  align-self: center;
}
.nav-logo .mark-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-gradient);
  vertical-align: 2px;
  margin: 0 2px;
}
.nav-logo sup { color: var(--muted); font-size: 10px; font-family: var(--font-mono); font-weight: 500; margin-left: 2px; vertical-align: super; }
.brand-dot { display:inline-block; width:10px; height:10px; border-radius:50%; background: var(--brand-gradient); vertical-align: 1px; margin-right: 6px; }
.nav-links { display: flex; gap: 28px; margin-left: 36px; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-spacer { flex: 1; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  padding: 4px 10px; border: 1px solid var(--line-soft); border-radius: 999px;
  white-space: nowrap;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-teal); box-shadow: 0 0 0 3px rgba(67,206,162,0.25); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); border: 0; }
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(46,109,246,0.45); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-soft); }
.btn-ghost:hover { border-color: var(--line); }
.btn-link { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.btn-sm { padding: 7px 12px; font-size: 13px; }

/* Layout primitives */
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 56px 0; }
.section-title { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.035em; font-size: clamp(32px, 4.4vw, 56px); line-height: 1; }
.section-kicker { display:flex; align-items:center; gap: 12px; margin-bottom: 28px; }
.section-kicker .bar { width: 28px; height: 1px; background: var(--line); }

/* Hero */
.hero { padding: 72px 0 0; position: relative; }
.hero-single { display: flex; flex-direction: column; gap: 56px; }
.hero-h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(56px, 8.4vw, 140px);
  line-height: 0.92;
  max-width: 18ch;
}
.hero-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; border-top: 1px solid var(--line-soft); padding-top: 36px; }
.hero-side { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero-lead { font-size: 18px; color: var(--ink-2); max-width: 52ch; line-height: 1.5; margin: 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta div { font-family: var(--font-mono); font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero-meta strong { color: var(--ink); font-weight: 500; }
.hero-h1 .mark {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0 0.08em;
  margin: 0 -0.02em;
  border-radius: 4px;
  font-style: normal;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* Terminal / order simulator */
.sim {
  background: #0b1220;
  color: #e8ecf3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25), 0 10px 20px -10px rgba(0,0,0,0.15);
  font-family: var(--font-mono);
  font-size: 13px;
  display: flex; flex-direction: column;
  min-height: 460px;
}
.sim-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sim-dots { display: flex; gap: 6px; }
.sim-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.sim-dots span.live { background: var(--accent); }
.sim-tabs { display: flex; gap: 2px; margin-left: 8px; }
.sim-tab { padding: 4px 10px; border-radius: 4px; color: rgba(255,255,255,0.55); font-size: 11px; }
.sim-tab.active { color: #fff; background: rgba(255,255,255,0.08); }
.sim-url { margin-left: auto; color: rgba(255,255,255,0.4); font-size: 11px; }

.sim-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sim-line { display: flex; gap: 10px; align-items: baseline; opacity: 0; transform: translateY(4px); transition: opacity .3s ease, transform .3s ease; }
.sim-line.show { opacity: 1; transform: translateY(0); }
.sim-line .gutter { color: rgba(255,255,255,0.28); width: 22px; flex-shrink: 0; font-size: 11px; text-align: right; }
.sim-line .tag { padding: 1px 6px; border-radius: 3px; font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.sim-line .tag.evt { background: rgba(255,255,255,0.08); color: #c5cddb; }
.sim-line .tag.ok  { background: rgba(67,206,162,0.18); color: #43cea2; }
.sim-line .tag.warn { background: rgba(255,180,80,0.14); color: #c48a2a; }
.sim-line .val { color: #fff; }
.sim-line .dim { color: rgba(255,255,255,0.5); }
.sim-cursor { display: inline-block; width: 7px; height: 14px; background: var(--brand-teal); vertical-align: -2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.sim-foot { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 14px; font-size: 11px; color: rgba(255,255,255,0.5); }
.sim-step-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.sim-step-dot.done { background: var(--brand-teal); }
.sim-replay { margin-left: auto; color: var(--brand-teal); background: none; border: 0; font-family: var(--font-mono); font-size: 11px; cursor: pointer; }

/* Marquee logo strip */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 18px 0; margin-top: 80px; overflow: hidden; }
.marquee-track { display: flex; gap: 64px; animation: scroll 40s linear infinite; white-space: nowrap; }
.marquee-track span { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.marquee-track span::before { content: "●"; margin-right: 12px; color: var(--line-soft); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Feature spec sheet */
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 160px 1fr 1fr; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line-soft); gap: 24px; }
.spec-num { font-family: var(--font-mono); font-size: 11px; color: var(--muted); padding-top: 4px; }
.spec-h { font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.spec-d { color: var(--ink-2); line-height: 1.5; font-size: 15px; max-width: 46ch; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.step { padding: 28px; border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 16px; position: relative; min-height: 240px; }
.step:last-child { border-right: 0; }
.step-num { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.step-h { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; line-height: 1.1; font-weight: 500; }
.step-d { color: var(--muted); font-size: 14px; line-height: 1.5; margin-top: auto; }
.step-spec { margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line-hair); display: flex; flex-direction: column; gap: 6px; }
.step-spec-row { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; }
.step-spec-row dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.step-spec-row dd { margin: 0; color: var(--ink); text-align: right; }
.step-visual { height: 72px; border: 1px solid var(--line-soft); border-radius: 6px; display: flex; align-items: center; justify-content: center; background: var(--bg-2); position: relative; overflow: hidden; }

/* File icons for step visuals */
.file-stack { display: flex; gap: 6px; }
.file-chip { font-family: var(--font-mono); font-size: 10px; padding: 3px 6px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 3px; color: var(--ink-2); }

/* Feature grid (compact) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.feature { background: var(--bg); padding: 28px; min-height: 200px; display: flex; flex-direction: column; gap: 12px; transition: background .2s; }
.feature:hover { background: var(--surface); }
.feature-tag { font-family: var(--font-mono); font-size: 10px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.feature-tag::before { content: ""; width: 14px; height: 1px; background: var(--line); }
.feature-h { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.02em; font-weight: 500; line-height: 1.2; }
.feature-d { color: var(--muted); font-size: 14px; line-height: 1.5; margin-top: auto; }

/* Editorial pricing table */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 14px; }
.pricing-table thead th { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); font-weight: 500; vertical-align: bottom; }
.pricing-table thead th .plan-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; display: block; }
.pricing-table thead th .plan-price { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }
.pricing-table thead th .plan-price strong { color: var(--ink); font-size: 18px; font-weight: 500; font-family: var(--font-display); letter-spacing: -0.02em; }
.pricing-table thead th .plan-tag { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-table thead th.highlight { background: linear-gradient(180deg, #eaf1fe 0%, #eaf1fe 100%); }
.pricing-table tbody td { padding: 14px 20px; border-bottom: 1px solid var(--line-hair); color: var(--ink-2); }
.pricing-table tbody tr td:first-child { color: var(--muted); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-table tbody td.highlight { background: #eef1f6; color: var(--ink); }
.pricing-table tfoot td { padding: 20px; }
.pricing-table .yes::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--ink); border-radius: 50%; }
.pricing-table .no  { color: var(--muted); }
.pricing-table .hl-badge { display: block; width: fit-content; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 3px 8px; border-radius: 3px; margin-bottom: 10px; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; background: none; border: 0; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; text-align: left; font-size: 20px; font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 500; color: var(--ink); }
.faq-a { overflow: hidden; height: 0; transition: height .3s ease; color: var(--ink-2); }
.faq-a-inner { padding: 0 0 24px; font-size: 15px; line-height: 1.6; max-width: 68ch; }
.faq-plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after { content:""; position:absolute; top:50%; left:50%; background: var(--ink); }
.faq-plus::before { width: 14px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-plus::after  { width: 1.5px; height: 14px; transform: translate(-50%,-50%); transition: transform .25s; }
.faq-item.open .faq-plus::after { transform: translate(-50%,-50%) scaleY(0); }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 36px 0; padding-right: 24px; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat-n { font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 56px); letter-spacing: -0.03em; font-weight: 500; line-height: 1; }
.stat-l { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 12px; }

/* CTA block */
.cta {
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  background: var(--brand-gradient);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cta h2, .cta p { color: #ffffff; }
.cta p { color: rgba(255,255,255,0.82); }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,0.06) 28px 29px);
  pointer-events: none;
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.cta h2 { font-family: var(--font-display); font-size: clamp(36px, 4.8vw, 64px); letter-spacing: -0.035em; line-height: 1; margin: 0; font-weight: 500; }
.cta p { color: var(--ink-2); margin-top: 20px; font-size: 16px; line-height: 1.55; }

/* Footer */
.footer { padding: 64px 0 48px; border-top: 1px solid var(--line-soft); margin-top: 80px; }
.footer-status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin-bottom: 64px;
  overflow: hidden;
}
.footer-status-item {
  padding: 20px 24px;
  border-right: 1px solid var(--line-hair);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-status-item:last-child { border-right: 0; }
.footer-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2a8a63;
  box-shadow: 0 0 0 3px rgba(42,138,99,0.18);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.footer-status-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.footer-status-v { margin-top: 4px; font-size: 13px; color: var(--ink); letter-spacing: -0.005em; }
.footer-about { color: var(--muted); max-width: 38ch; margin-top: 20px; font-size: 14px; line-height: 1.6; }
.footer-meta { margin-top: 20px; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
.footer-bottom-mid { color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.15fr 0.5fr 0.5fr 0.5fr 1fr 1fr; gap: 36px; }
.footer h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 16px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul.footer-list-cols { display: block; columns: 2; column-gap: 20px; }
.footer ul.footer-list-cols li { margin-bottom: 10px; break-inside: avoid; }
.footer a { color: var(--ink-2); text-decoration: none; }
.footer a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

/* Tweaks panel */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 16px;
  z-index: 100;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
  width: 260px;
  display: none;
  font-size: 12px;
  font-family: var(--font-mono);
}
.tweaks.open { display: block; }
.tweaks h5 { margin: 0 0 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 500; }
.tweaks-row { margin-bottom: 14px; }
.tweaks-row label { display: block; color: var(--muted); margin-bottom: 6px; }
.tweaks-opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.tweaks-opts button { padding: 6px 8px; border: 1px solid var(--line-soft); background: var(--bg); border-radius: 4px; color: var(--ink); font-size: 11px; text-transform: capitalize; }
.tweaks-opts button.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tweaks-swatch { width: 16px; height: 16px; border-radius: 4px; display: inline-block; vertical-align: middle; margin-right: 6px; border: 1px solid var(--line-hair); }

/* =========================================
   Listing-ad-inspired section styles
   ========================================= */

/* Hero upgrades */
.hero-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:48px; }
.built-for { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-2); }
.bf-mark { width:12px; height:12px; background: var(--brand-gradient); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.hero-em { font-style: italic; color: var(--muted); font-family: var(--font-display); font-weight: 400; }
[data-serif="true"] .hero-em { font-family: "Fraunces", serif; }
.hero-em-serif { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }
.hero-lead strong { color: var(--ink); font-weight: 600; }
.mark-blue { color: var(--brand-blue); font-style: italic; font-family: var(--font-display); font-weight: 500; }
.mark-red { color: var(--danger); font-style: italic; font-family: var(--font-display); font-weight: 500; }
.mark-green { color: var(--ok); font-style: italic; font-family: var(--font-display); font-weight: 500; }

/* Testimonials */
.testimonials { display:grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); margin-top: 64px; }
.testimonial { padding: 28px 28px 28px 0; border-right:1px solid var(--line-soft); display:flex; flex-direction:column; gap: 14px; }
.testimonial:nth-child(n+2) { padding-left: 28px; }
.testimonial:last-child { border-right: 0; padding-right: 0; }
.stars { color: #b07a1e; font-size: 13px; letter-spacing: 2px; }
.testimonial-q { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; max-width: 40ch; }
.testimonial-who { display:flex; align-items:center; gap: 10px; margin-top:auto; }
.avatar { width:28px; height:28px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#0b1220; font-family:var(--font-mono); font-size:10px; font-weight:600; }
.who-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
.who-role { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* Split section layout */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-lead { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 24px 0 28px; max-width: 46ch; }
.split-visual { position: relative; min-height: 520px; }

/* Dark section */
.section-dark { background: #0b1220; color: var(--bg); border-top: 1px solid transparent; }
.section-dark-2 { background: #101a2e; color: var(--bg); }
.section-dark .section-title, .section-dark-2 .section-title { color: #fff; }
.section-dark .eyebrow, .section-dark-2 .eyebrow { color: rgba(255,255,255,0.55); }
.bar-dark { background: rgba(255,255,255,0.35) !important; }
.split-lead-dark { color: rgba(255,255,255,0.7); }
.eyebrow-danger { color: #d85a58 !important; }
.eyebrow-green { color: #2f6b3e !important; }
.eyebrow-dark { color: rgba(255,255,255,0.55) !important; }

/* Green section */
.section-green { background: #eef1f6; }

/* Channel list */
.channel-list { list-style:none; padding:0; margin:0; border-top:1px solid var(--line-soft); }
.channel-row { display:grid; grid-template-columns: 40px 1fr auto; align-items:center; padding:18px 0; border-bottom:1px solid var(--line-hair); gap: 16px; }
.ch-num { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.ch-name { font-size: 15px; }
.ch-pill { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; padding: 4px 12px; border-radius: 999px; }
.ch-pill-ok { background: #dff0e8; color: #1e6e4f; }
.ch-pill-muted { background: #dde3ec; color: #27324a; }

/* Delivery visual (ad 02) */
.delivery-stack { position: relative; height: 560px; }
.d-card { position: absolute; background: #fff; border-radius: 10px; box-shadow: 0 22px 50px -20px rgba(12,18,35,0.22), 0 4px 10px -4px rgba(12,18,35,0.08); font-family: var(--font-sans); }
.d-email { top: 0; left: 0; width: 72%; overflow: hidden; z-index: 2; }
.d-email-hdr { background: linear-gradient(135deg, #2e6df6 0%, #1a4fb8 100%); color: #fff; padding: 18px 22px 54px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; display:flex; justify-content:space-between; }
.d-icon { width:22px; height:22px; border-radius:50%; background:rgba(255,255,255,0.18); display:inline-flex; align-items:center; justify-content:center; }
.d-email-body { padding: 18px 22px 20px; margin-top: -32px; background: #fff; border-radius: 10px 10px 0 0; position: relative; z-index: 2; }
.d-email-h { font-size: 20px; font-weight: 600; color: #0b1220; margin-bottom: 6px; letter-spacing: -0.01em; }
.d-email-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.d-file { display:flex; align-items:center; gap: 12px; padding: 10px; border: 1px solid var(--line-hair); border-radius: 8px; }
.d-file-ico { width:36px; height:28px; background:#2e6df6; color:#fff; border-radius:4px; display:inline-flex; align-items:center; justify-content:center; font-size: 11px; }
.d-file-ico-pdf { background:#dde3ec; color:#2e6df6; }
.d-file-n { font-size: 13px; font-weight: 500; color: #0b1220; }
.d-file-m { font-size: 10px; color: var(--muted); font-family: var(--font-mono); margin-top: 2px; letter-spacing: 0.04em; }

.d-confirm { top: 40px; right: 0; width: 54%; padding: 16px; z-index: 3; }
.d-confirm-row { display:flex; gap:10px; align-items:flex-start; margin-bottom: 10px; }
.d-check { width:20px; height:20px; background:#2a8a63; color:#fff; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:11px; flex-shrink: 0; }
.d-confirm-h { font-weight: 600; font-size: 14px; color: #0b1220; }
.d-confirm-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted); }
.d-status { background: #dff0e8; color: #1e6e4f; font-size: 12px; padding: 8px 12px; border-radius: 6px; display:flex; align-items:center; gap: 6px; margin-bottom: 10px; }
.d-status-dot { width: 6px; height: 6px; background: #2a8a63; border-radius: 50%; }
.d-thankyou-file { display:flex; gap: 10px; padding: 10px; border: 1px solid var(--line-hair); border-radius: 8px; align-items:center; }
.d-dl { padding: 6px 14px; background:#2e6df6; color:#fff; border:0; border-radius: 5px; font-size: 11px; font-weight: 500; }

.d-order { bottom: 0; right: 2%; width: 58%; padding: 16px; z-index: 2; }
.d-order-hdr { display:flex; justify-content:space-between; font-family:var(--font-mono); font-size: 11px; margin-bottom: 12px; }
.d-order-status { color: var(--muted); letter-spacing: 0.08em; }
.d-progress-label { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 6px; display:flex; justify-content:space-between; }
.d-ready { color: #2a8a63; }
.d-progress-track { height: 3px; background: #e8ecf3; border-radius: 99px; overflow: hidden; margin-bottom: 10px; }
.d-progress-fill { width: 75%; height: 100%; background: linear-gradient(90deg, #2a8a63, #2e6df6); }
.d-progress-steps { display:flex; justify-content:space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--muted); }
.d-step-done { color: #0b1220; }

/* Protection visual (ad 03) */
.protect-stack { position: relative; height: 600px; }
.p-queue { background: #fff; border-radius: 10px; position: absolute; top: 0; right: 0; width: 88%; padding: 14px; font-size: 12px; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.4); }
.p-queue-hdr { display:flex; align-items:center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line-hair); margin-bottom: 8px; }
.p-warn { width:20px; height:20px; background:#f4dcdb; color:#c0413f; border-radius:4px; display:inline-flex; align-items:center; justify-content:center; font-size:12px; }
.p-live { margin-left:auto; color:#c0413f; font-family:var(--font-mono); font-size: 10px; letter-spacing: 0.08em; }
.p-cols { display:grid; grid-template-columns: 70px 1.2fr 70px 1.2fr 110px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); padding: 8px 0; }
.p-row { display:grid; grid-template-columns: 70px 1.2fr 70px 1.2fr 110px; align-items:center; padding: 12px 0; border-top: 1px solid var(--line-hair); font-size: 11px; color: #0b1220; gap: 4px; }
.p-cell { font-family: var(--font-mono); letter-spacing: 0.02em; }
.p-note { color: var(--muted); font-size: 9px; letter-spacing: 0.06em; }
.p-risk { display:flex; align-items:center; gap: 8px; }
.p-score { font-weight: 600; font-size: 12px; font-family: var(--font-mono); }
.p-score-hi { color: #c0413f; }
.p-score-md { color: #b07a1e; }
.p-score-ok { color: #2a8a63; }
.p-bar { flex:1; height:3px; background:#eef1f6; border-radius:99px; overflow:hidden; }
.p-bar span { display:block; height:100%; }
.p-bar-hi span { background: #c0413f; }
.p-bar-md span { background: #b07a1e; }
.p-bar-ok span { background: #2a8a63; }
.p-action { display:flex; gap:4px; }
.p-btn { padding: 4px 10px; font-size: 10px; border-radius: 4px; border: 1px solid var(--line-hair); background:#fff; font-family: var(--font-mono); }
.p-btn-approve { background:#0b1220; color:#fff; border-color:#0b1220; }
.p-btn-reject { background:#fff; color:#0b1220; }
.p-autocleared { background:#dff0e8; color:#1e6e4f; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-family: var(--font-mono); }
.p-footer { display:flex; gap: 32px; padding-top: 14px; border-top: 1px solid var(--line-hair); margin-top: 8px; }
.p-f-n { color:#2a8a63; font-weight: 600; font-family: var(--font-mono); font-size: 13px; }
.p-f-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }

.p-signals { position: absolute; left: 0; bottom: 20px; width: 60%; background: #101a2e; color: #e0e3eb; border-radius: 10px; padding: 16px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); font-family: var(--font-sans); z-index: 2; }
.p-signals-hdr { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.p-signals-top { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.p-signals-title { font-size: 17px; font-weight: 500; margin-top: 4px; }
.p-matched { color: #d85a58; }
.p-big { text-align:right; }
.p-big-n { font-size: 40px; font-weight: 600; color: #d85a58; line-height: 1; font-family: var(--font-display); letter-spacing: -0.03em; }
.p-big-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-top: 2px; }
.p-sig-list { list-style:none; padding: 10px 0; margin: 0; display:flex; flex-direction: column; gap: 10px; font-size: 12px; }
.p-sig-list li { display:flex; align-items:center; gap: 10px; }
.p-sig-dot { width: 6px; height: 6px; border-radius: 50%; }
.p-red { background: #d85a58; }
.p-amber { background: #b07a1e; }
.p-green { background: #2a8a63; }
.p-sig-pts { margin-left:auto; color: rgba(255,255,255,0.5); font-family: var(--font-mono); font-size: 11px; }
.p-sig-ok { color: #2a8a63; }
.p-sig-foot { display:flex; justify-content:space-between; align-items:center; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); }
.p-sig-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: #d85a58; }
.p-sig-foot .p-btn-reject { background: #d85a58; color: #fff; border: 0; }
.p-sig-foot .p-btn-approve { background: #fff; color: #0b1220; border: 0; margin-left: 4px; }

/* Metric chips */
.metric-row { display:flex; gap: 12px; margin-top: 28px; }
.metric-chip { border: 1px solid rgba(255,255,255,0.14); padding: 14px 16px; border-radius: 8px; min-width: 100px; }
.section-green .metric-chip { border-color: var(--line-soft); }
.metric-n { font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; color: inherit; line-height: 1; }
.metric-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-top: 8px; line-height: 1.3; }
.section-green .metric-l { color: var(--muted); }

/* Tag grids */
.tag-grid { display:flex; flex-wrap:wrap; gap: 8px; margin-top: 24px; max-width: 480px; }
.tag-chip { font-family: var(--font-mono); font-size: 11px; padding: 6px 12px; border-radius: 6px; background: #fff; border: 1px solid var(--line-hair); display:inline-flex; align-items:center; gap: 8px; color: var(--ink-2); }
.tag-chip-plain { background: transparent; border-color: rgba(11,18,32,0.12); }
.tag-dot { width: 8px; height: 8px; border-radius: 2px; display:inline-block; }

/* Links visual (ad 04) */
.links-stack { position: relative; height: 540px; }
.l-table { background:#fff; border-radius: 10px; padding: 14px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); width: 100%; position:absolute; top: 0; right: 0; font-size: 12px; z-index: 1; }
.l-table-hdr { display:flex; justify-content:space-between; align-items:center; padding-bottom: 12px; border-bottom: 1px solid var(--line-hair); }
.l-title { font-weight: 500; font-size: 13px; }
.l-tabs { display:flex; gap: 14px; }
.l-tab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); }
.l-tab-on { color: #0b1220; font-weight: 600; }
.l-cols { display:grid; grid-template-columns: 40px 2fr 1.2fr 1fr 70px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); padding: 10px 0; }
.l-row { display:grid; grid-template-columns: 40px 2fr 1.2fr 1fr 70px; align-items:center; padding: 12px 0; border-top: 1px solid var(--line-hair); gap: 8px; }
.l-row-on { background: linear-gradient(90deg, rgba(46,109,246,0.04) 0%, transparent 100%); margin: 0 -14px; padding-left: 14px; padding-right: 14px; border-left: 2px solid #2e6df6; }
.l-ico { width:28px; height:28px; border-radius:6px; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 10px; font-weight: 600; }
.l-name { font-weight: 500; font-size: 12px; color: #0b1220; display:block; }
.l-sub { display:block; font-family: var(--font-mono); font-size: 9px; color: var(--muted); margin-top: 2px; letter-spacing: 0.04em; }
.l-access { font-family: var(--font-mono); font-size: 9px; color: #1e6e4f; letter-spacing: 0.06em; }
.l-usage { display:flex; flex-direction:column; gap: 2px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; }
.l-usage2 { color: var(--muted); }
.l-btn { padding: 5px 12px; font-size: 10px; border-radius: 4px; border: 1px solid var(--line-hair); background:#fff; font-family: var(--font-mono); }
.l-btn-solid { background: #0b1220; color: #fff; border-color: #0b1220; }

.l-signed { position: absolute; bottom: 0; left: 4%; width: 70%; background: #0b1220; color: #e0e3eb; border-radius: 10px; padding: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3); z-index: 2; }
.l-signed-hdr { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.l-signed-url { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); }
.l-signed-to { font-size: 15px; font-weight: 500; margin-top: 4px; color: #fff; }
.l-ttl-n { font-size: 28px; font-weight: 500; color: #c48a2a; font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1; }
.l-ttl-l { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.12em; }
.l-signed-link { padding: 10px 0; color: #43cea2; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.02em; border-bottom: 1px solid rgba(255,255,255,0.08); }
.l-signed-dim { color: rgba(255,255,255,0.35); }
.l-prop { list-style:none; padding: 10px 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.l-prop li { display:flex; align-items:center; gap: 10px; }
.l-dot { width: 6px; height: 6px; border-radius: 50%; }
.l-dot-on { background: #43cea2; }
.l-dot-off { background: rgba(255,255,255,0.25); }
.l-prop-val { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }
.l-signed-foot { display:flex; justify-content:space-between; align-items:center; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.l-copy { background: #fff; color: #0b1220; border: 0; padding: 6px 12px; border-radius: 4px; font-size: 10px; font-family: var(--font-mono); }

/* MTO visual (ad 05) */
.mto-stack { position: relative; height: 700px; }
.mto-card { background:#fff; border-radius: 10px; padding: 18px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); width: 100%; }
.mto-hdr { display:flex; align-items:flex-start; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line-hair); }
.mto-back { font-size: 16px; color: var(--muted); }
.mto-title { font-size: 14px; font-weight: 600; color: #0b1220; }
.mto-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }
.mto-due { text-align:right; font-family: var(--font-mono); }
.mto-due-n { font-size: 10px; letter-spacing: 0.08em; color: #c0413f; }
.mto-pending { background:#f3ead4; color:#7a5c10; padding: 3px 8px; border-radius: 4px; font-size: 9px; margin-top: 4px; display:inline-block; letter-spacing: 0.06em; }
.mto-prod { display:grid; grid-template-columns: 68px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-hair); align-items:center; }
.mto-prod-img { width: 68px; height: 68px; background: #dde3ec; border-radius: 6px; display:flex; align-items:center; justify-content:center; font-family: "Fraunces", serif; font-style: italic; font-size: 11px; color: #27324a; text-align: center; line-height: 1.2; }
.mto-prod-t { font-weight: 500; font-size: 14px; color: #0b1220; }
.mto-prod-s { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; color: var(--muted); margin-top: 3px; }
.mto-prod-price { text-align: right; }
.mto-price { font-size: 17px; font-weight: 600; color: #0b1220; }
.mto-paid { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.06em; margin-top: 2px; }
.mto-meta { display:grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-hair); }
.mto-meta > div { border: 1px solid var(--line-hair); border-radius: 5px; padding: 8px 10px; background: #f4f6fa; }
.mto-m-l { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.08em; color: var(--muted); }
.mto-m-v { font-size: 13px; margin-top: 4px; color: #0b1220; }
.mto-swatches { display:flex; gap: 4px; margin-top: 6px; }
.mto-swatches span { width: 14px; height: 14px; border-radius: 2px; border: 1px solid var(--line-hair); }
.mto-files-h { padding: 14px 0 10px; font-size: 12px; color: #0b1220; font-weight: 500; display:flex; justify-content:space-between; }
.mto-files-count { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.06em; font-weight: 400; }
.mto-files { display:grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mto-file { display:flex; gap: 10px; align-items:center; padding: 8px 10px; border: 1px solid var(--line-hair); border-radius: 6px; }
.mto-f-tag { padding: 2px 6px; border-radius: 3px; color: #fff; font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.04em; }
.mto-f-n { font-size: 11px; color: #0b1220; font-weight: 500; }
.mto-f-m { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.mto-f-ok { margin-left:auto; color: #2a8a63; font-size: 12px; }
.mto-actions { display:flex; justify-content:flex-end; gap: 8px; margin-top: 14px; }

.mto-status { position: absolute; bottom: 0; left: 0; width: 78%; background: #0b1220; color: #e0e3eb; border-radius: 10px; padding: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3); z-index: 2; }
.mto-status-hdr { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom: 10px; }
.mto-status-top { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); }
.mto-status-t { font-size: 18px; font-weight: 500; margin-top: 4px; }
.mto-sla-n { font-size: 28px; font-weight: 500; color: #c48a2a; font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1; }
.mto-sla-l { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; margin-top: 2px; }
.mto-timeline { list-style: none; padding: 10px 0; margin: 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 10px; }
.mto-timeline li { display:flex; align-items:center; gap: 10px; font-size: 12px; }
.mto-t-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display:inline-flex; align-items:center; justify-content:center; font-size: 9px; flex-shrink:0; }
.mto-t-done .mto-t-dot { background: #2a8a63; border-color: #2a8a63; }
.mto-t-done .mto-t-dot::after { content: "✓"; color: #fff; font-size: 8px; }
.mto-t-wip .mto-t-dot { background: #c48a2a; border-color: #c48a2a; }
.mto-t-time { margin-left: auto; font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.mto-status-foot { display:flex; justify-content:space-between; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.mto-status-foot strong { color: #2a8a63; }

/* Branded emails visual (ad 06) */
.brand-stack { position: relative; height: 680px; }
.brand-editor { background: #fff; border-radius: 10px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); padding: 14px; width: 78%; position: absolute; top: 0; left: 0; font-size: 12px; z-index: 1; }
.brand-ed-hdr { display:flex; justify-content:space-between; align-items:center; padding-bottom: 10px; border-bottom: 1px solid var(--line-hair); }
.brand-live { font-size: 12px; font-weight: 500; color: #0b1220; }
.brand-live::before { content: "● "; color: #2a8a63; }
.brand-saved { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted); }
.brand-tabs { display:flex; align-items:center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line-hair); }
.brand-tab { font-size: 11px; color: var(--muted); }
.brand-tab-on { color: #0b1220; font-weight: 600; border-bottom: 2px solid #0b1220; padding-bottom: 4px; }
.brand-v-count { background:#eef1f6; padding: 1px 6px; border-radius: 10px; font-size: 9px; margin-left: 2px; font-family: var(--font-mono); }
.brand-insert { margin-left: auto; font-family: var(--font-mono); font-size: 9px; color: #2e6df6; letter-spacing: 0.08em; }
.brand-toolbar { display:flex; gap: 4px; padding: 8px 0; align-items:center; color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--line-hair); }
.brand-toolbar span { padding: 4px 8px; }
.bt-b { font-weight: 700; color: #0b1220 !important; border: 1px solid var(--line-hair); border-radius: 4px; }
.bt-div { width: 1px; height: 14px; background: var(--line-hair); padding: 0 !important; margin: 0 4px; }
.brand-form { padding: 12px 0 0; display:flex; flex-direction: column; gap: 10px; }
.brand-field { display: grid; grid-template-columns: 100px 1fr; gap: 10px; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--line-hair); }
.brand-field-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); display:flex; align-items:center; gap: 6px; }
.brand-field-tag { background:#eef1f6; padding: 1px 4px; border-radius: 2px; font-size: 8px; }
.brand-field-v { font-size: 12px; color: #0b1220; line-height: 1.4; }
.brand-var { background: #eaf1fe; color: #2e6df6; padding: 2px 6px; border-radius: 3px; font-family: var(--font-mono); font-size: 10px; display:inline-block; }
.brand-vars { padding-top: 10px; }
.brand-vars-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.brand-vars-chips { display:flex; flex-wrap: wrap; gap: 4px; }
.brand-ed-foot { display:flex; justify-content:space-between; padding-top: 10px; margin-top: 8px; border-top: 1px solid var(--line-hair); font-size: 10px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.08em; }
.brand-send { color: #2e6df6; }

.brand-preview { background: #fff; border-radius: 10px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25); padding: 14px; width: 48%; position: absolute; top: 80px; right: 0; z-index: 2; font-size: 12px; }
.brand-pv-hdr { display:flex; justify-content:space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line-hair); }
.brand-pv-from { font-size: 12px; font-weight: 500; color: #0b1220; }
.brand-pv-email { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }
.brand-pv-meta { text-align: right; font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.08em; }
.brand-pv-today { display:block; margin-bottom: 4px; }
.brand-pv-inbox { background: #eaf1fe; color: #2e6df6; padding: 2px 6px; border-radius: 3px; }
.brand-pv-subject { padding: 10px 0; font-size: 12px; color: #0b1220; border-bottom: 1px solid var(--line-hair); }
.brand-pv-hero { background: linear-gradient(135deg, #2e6df6 0%, #1a4fb8 100%); color:#fff; padding: 22px 18px; border-radius: 6px; text-align:center; margin: 12px 0; }
.brand-pv-logo { width: 32px; height: 32px; background:#fff; color:#2e6df6; border-radius:4px; font-family: "Fraunces", serif; font-weight: 600; display:inline-flex; align-items:center; justify-content:center; margin-bottom: 10px; }
.brand-pv-h { font-family: "Fraunces", serif; font-size: 18px; font-weight: 500; }
.brand-pv-order { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; margin-top: 4px; opacity: 0.8; }
.brand-pv-body { font-size: 11px; color: var(--ink-2); line-height: 1.5; margin: 10px 0; }
.brand-pv-file { display:flex; align-items:center; gap: 10px; padding: 10px; border: 1px solid var(--line-hair); border-radius: 6px; margin-bottom: 8px; }
.brand-pv-file-ico { width: 32px; height: 28px; background: #2e6df6; color:#fff; border-radius: 4px; display:inline-flex; align-items:center; justify-content:center; font-size: 10px; }
.brand-pv-file-n { font-size: 11px; font-weight: 500; color: #0b1220; }
.brand-pv-file-m { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.04em; }
.brand-pv-dl { margin-left: auto; background: #2e6df6; color: #fff; border: 0; padding: 5px 10px; border-radius: 4px; font-size: 10px; }
.brand-pv-license { display:flex; justify-content:space-between; align-items:center; padding: 8px 10px; background: #f6faff; border: 1px solid #cfddf8; border-radius: 6px; }
.brand-pv-l-l { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.08em; color: var(--muted); }
.brand-pv-l-v { font-family: var(--font-mono); font-size: 11px; color: #2e6df6; font-weight: 600; margin-top: 2px; }
.brand-pv-reveal { font-family: var(--font-mono); font-size: 9px; color: #2e6df6; background: transparent; border: 1px solid #2e6df6; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.06em; }
.brand-pv-foot { display:flex; justify-content:space-between; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-hair); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); }

.brand-picker { display:flex; align-items:center; gap: 10px; margin-top: 28px; }
.bp-sw { width: 36px; height: 36px; border-radius: 4px; cursor: pointer; border: 1px solid var(--line-hair); }
.bp-sw-on { outline: 2px solid #0b1220; outline-offset: 2px; }
.bp-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--muted); margin-left: 8px; }

/* Tracking visual (ad 07) */
.track-list { list-style: none; padding: 0; margin-top: 24px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
.track-list li { display:flex; align-items:center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: #e0e3eb; }
.track-ico { width: 28px; height: 28px; background: rgba(66,133,244,0.14); color: #4285F4; border-radius: 5px; display:inline-flex; align-items:center; justify-content:center; font-size: 13px; }
.track-ico-svg { width: 28px; height: 28px; background: rgba(66,133,244,0.12); color: #4285F4; border-radius: 5px; display:inline-flex; align-items:center; justify-content:center; flex-shrink: 0; }
.track-ico-svg svg { display: block; }

.track-stack { position: relative; height: 620px; }
.track-keys { background: #fff; color: #0b1220; border-radius: 10px; padding: 14px; width: 96%; position: absolute; top: 0; right: 0; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3); font-size: 12px; z-index: 1; }
.tk-hdr { display:flex; justify-content:space-between; align-items:center; padding-bottom: 12px; border-bottom: 1px solid var(--line-hair); }
.tk-title { font-weight: 500; font-size: 13px; }
.tk-plugin { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.08em; margin-left: 8px; }
.tk-gen { background: #0b1220; color: #fff; border: 0; padding: 6px 12px; border-radius: 4px; font-size: 11px; }
.tk-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 12px 0; }
.tk-stats > div { padding: 10px 12px; border-radius: 6px; background: #eef1f6; }
.tk-stat-g { background: #dff0e8 !important; }
.tk-stat-n { background: #f3ead4 !important; }
.tk-stat-r { background: #f4dcdb !important; }
.tk-n { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.tk-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted); margin-top: 6px; }
.tk-cols { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--line-hair); }
.tk-row { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; align-items:center; padding: 12px 0; border-bottom: 1px solid var(--line-hair); gap: 8px; }
.tk-row-on { background: linear-gradient(90deg, rgba(46,109,246,0.04) 0%, transparent 100%); margin: 0 -14px; padding-left: 14px; padding-right: 14px; border-left: 2px solid #2e6df6; }
.tk-key { font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.tk-status { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; }
.tk-status-active { color: #2a8a63; }
.tk-status-unused { color: #b07a1e; }
.tk-status-chargeback { color: #c0413f; }
.tk-act { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.tk-cust { font-family: var(--font-mono); font-size: 11px; color: #0b1220; }
.tk-last { font-size: 9px; color: var(--muted); letter-spacing: 0.06em; margin-top: 2px; }

.track-log { position: absolute; bottom: 0; left: 0; width: 78%; background: #101a2e; color: #e0e3eb; border-radius: 10px; padding: 16px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); z-index: 2; font-size: 12px; }
.tl-hdr { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tl-top { font-size: 14px; font-weight: 500; color: #fff; }
.tl-order { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 2px; }
.tl-live { color: #2a8a63; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; }
.tl-recipient { display:flex; gap: 10px; align-items:center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tl-avatar { width: 24px; height: 24px; background: #4285F4; color: #fff; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.tl-r-n { font-size: 12px; color: #fff; }
.tl-r-e { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-top: 2px; }
.tl-events { list-style: none; padding: 10px 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tl-events li { display:grid; grid-template-columns: 70px 1.3fr 1.5fr 70px; align-items:center; gap: 10px; font-size: 11px; }
.tl-time { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.tl-tag { font-weight: 500; color: #fff; }
.tl-tag-ok { color: #43cea2; }
.tl-tag-view { color: #c48a2a; }
.tl-tag-click { color: #4285F4; }
.tl-tag-dl { color: #43cea2; }
.tl-det { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }
.tl-meta { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5); text-align: right; letter-spacing: 0.08em; }
.tl-funnel { display:grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.tl-f-n { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.tl-f-l { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-top: 4px; }

/* =========================================
   New editorial feature index (replaces multi-ad recreation)
   ========================================= */
.feature-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: var(--surface); }
.feature-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.feature-card-h {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
}
.feature-card-d {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}
.feature-meta {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feature-meta li {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 4px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--surface);
}

/* =========================================
   Protection — condensed signal list
   ========================================= */
.protect-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.protect-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.protect-stat {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.protect-stat:last-child { border-right: 0; }
.protect-stat:not(:first-child) { padding-left: 24px; }
.protect-stat-n {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.protect-stat-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  text-transform: uppercase;
  max-width: 24ch;
  line-height: 1.4;
}
.signal-list {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.signal-list-head {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
}
.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: #e8ecf3;
}
.signal-row:last-child { border-bottom: 0; }
.signal-name { letter-spacing: -0.005em; }
.signal-weight {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.signal-weight-red { background: rgba(240,103,103,0.15); color: #d85a58; }
.signal-weight-amber { background: rgba(240,160,32,0.15); color: #c48a2a; }
.signal-weight-green { background: rgba(46,168,106,0.18); color: #43cea2; }

/* Signal panel v3 — dark queue */
.signal-panel {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.signal-panel-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.015);
}
.signal-panel-kicker { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.signal-panel-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: #fff; letter-spacing: -0.02em; }
.signal-panel-score { color: #f47575; margin-left: 8px; font-variant-numeric: tabular-nums; }
.signal-panel-score-sub { color: rgba(255,255,255,0.45); font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.04em; margin-left: 8px; }
.signal-panel-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.signal-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase; }
.signal-pill-hold { background: rgba(240,103,103,0.14); color: #f47575; }
.signal-panel-time { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }

.signal-list-v3-head {
  display: grid;
  grid-template-columns: 14px minmax(160px, 1.1fr) minmax(180px, 1.4fr) 1.2fr 60px;
  gap: 16px; align-items: center;
  padding: 12px 28px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.signal-list-v3-head span:nth-child(1) { grid-column: 2; }
.signal-list-v3-head span:nth-child(2) { grid-column: 3; }
.signal-list-v3-head span:nth-child(3) { grid-column: 5; }
.signal-row-v3 {
  display: grid;
  grid-template-columns: 14px minmax(160px, 1.1fr) minmax(180px, 1.4fr) 1.2fr 60px;
  gap: 16px; align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.signal-row-v3:last-child { border-bottom: 0; }
.signal-dot { width: 8px; height: 8px; border-radius: 50%; }
.signal-dot-red { background: #f47575; box-shadow: 0 0 0 3px rgba(244,117,117,0.18); }
.signal-dot-amber { background: #f0a020; box-shadow: 0 0 0 3px rgba(240,160,32,0.18); }
.signal-dot-green { background: #43cea2; box-shadow: 0 0 0 3px rgba(67,206,162,0.18); }
.signal-name-v3 { font-size: 15px; color: #e8ecf3; letter-spacing: -0.005em; }
.signal-detail-v3 { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); }
.signal-bar-wrap { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); overflow: hidden; position: relative; }
.signal-bar { display: block; height: 100%; border-radius: 2px; }
.signal-bar-red { background: linear-gradient(90deg, #c0413f, #f47575); }
.signal-bar-amber { background: linear-gradient(90deg, #b07a1e, #f0a020); }
.signal-bar-green { background: linear-gradient(90deg, #2a8a63, #43cea2); }
.signal-weight-v3 { font-family: var(--font-mono); font-size: 12px; text-align: right; font-variant-numeric: tabular-nums; }

.signal-panel-foot {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.015);
  font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.signal-panel-foot strong { color: #fff; font-weight: 500; }

/* =========================================
   Link card stack (compact)
   ========================================= */
.link-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
}
.link-card {
  background: #0b1220;
  color: #e8ecf3;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
  font-size: 13px;
}
.link-card:nth-child(2) {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-soft);
  margin-left: 28px;
  opacity: 0.95;
}
.link-card-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.link-card:nth-child(2) .link-card-hdr { border-bottom-color: var(--line-hair); }
.link-card-url {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.link-card:nth-child(2) .link-card-url { color: var(--muted); }
.link-card-to { font-size: 16px; font-weight: 500; margin-top: 4px; }
.link-card-ttl { text-align: right; }
.link-card-ttl-n {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #c48a2a;
}
.link-card:nth-child(2) .link-card-ttl-n { color: var(--brand-blue); }
.link-card-ttl-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.link-card:nth-child(2) .link-card-ttl-l { color: var(--muted); }
.link-card-link {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 12px 0;
  color: #43cea2;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
}
.link-card:nth-child(2) .link-card-link { color: var(--brand-blue); border-bottom-color: var(--line-hair); }
.link-card-props {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.link-card-props li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.link-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: inline-block;
}
.link-card-dot.on { background: #43cea2; }
.link-card:nth-child(2) .link-card-dot { background: var(--line-soft); }
.link-card:nth-child(2) .link-card-dot.on { background: var(--brand-blue); }

/* =========================================
   Made-to-order compact card
   ========================================= */
.mto-compact {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 30px 60px -30px rgba(12,30,12,0.2);
  border: 1px solid rgba(11,18,32,0.06);
  font-size: 13px;
}
.mto-compact-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-hair);
}
.mto-compact-top {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.mto-compact-t {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.mto-compact-due { text-align: right; }
.mto-compact-due-n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #c0413f;
}
.mto-compact-pending {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #1e6e4f;
  background: #dff0e8;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 6px;
  display: inline-block;
}
.mto-compact-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-hair);
}
.mto-compact-meta > div {
  padding: 10px 0;
  border-right: 1px solid var(--line-hair);
  padding-right: 18px;
}
.mto-compact-meta > div:nth-child(2n) { border-right: 0; padding-left: 18px; padding-right: 0; }
.mto-compact-meta .mto-m-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted); }
.mto-compact-meta .mto-m-v { font-size: 14px; color: var(--ink); margin-top: 4px; }
.mto-compact-timeline {
  list-style: none;
  padding: 18px 0;
  margin: 0;
  border-bottom: 1px solid var(--line-hair);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mto-compact-timeline li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink); }
.mto-compact-timeline .mto-t-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mto-compact-timeline .mto-t-done .mto-t-dot { background: #1e6e4f; border-color: #1e6e4f; }
.mto-compact-timeline .mto-t-done .mto-t-dot::after { content:"✓"; color:#fff; font-size: 8px; }
.mto-compact-timeline .mto-t-wip .mto-t-dot { background: #c48a2a; border-color: #c48a2a; }
.mto-compact-timeline .mto-t-todo { color: var(--muted); }
.mto-compact-timeline .mto-t-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.mto-compact-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.mto-compact-foot strong { color: #1e6e4f; font-weight: 600; }

/* =========================================
   Brand preview compact + bullets
   ========================================= */
.brand-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.brand-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-hair);
}
.brand-bullet-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--bg);
  flex-shrink: 0;
}

.brand-preview-compact {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
  border: 1px solid var(--line-soft);
  font-size: 12px;
  max-width: 440px;
  margin-left: auto;
}
.bpc-hdr { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line-hair); }
.bpc-from { font-size: 13px; font-weight: 500; color: var(--ink); }
.bpc-email { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }
.bpc-meta { text-align: right; font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; display: flex; flex-direction: column; gap: 4px; }
.bpc-inbox { background: #eaf1fe; color: var(--brand-blue); padding: 2px 8px; border-radius: 3px; display: inline-block; }
.bpc-subject { padding: 12px 0; font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--line-hair); }
.bpc-hero { background: linear-gradient(135deg, #2e6df6 0%, #1a4fb8 100%); color: #fff; padding: 26px 20px; border-radius: 8px; text-align: center; margin: 14px 0; }
.bpc-logo { width: 36px; height: 36px; background: #fff; color: var(--brand-blue); border-radius: 5px; font-family: "Fraunces", serif; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.bpc-h { font-family: "Fraunces", serif; font-size: 20px; font-weight: 500; }
.bpc-order { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; margin-top: 4px; opacity: 0.85; }
.bpc-body { font-size: 12px; color: var(--ink-2); line-height: 1.55; margin: 12px 0; }
.bpc-file { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line-hair); border-radius: 6px; margin-bottom: 10px; }
.bpc-file-ico { width: 34px; height: 30px; background: var(--brand-blue); color: #fff; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.bpc-file-n { font-size: 12px; font-weight: 500; color: var(--ink); }
.bpc-file-m { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.bpc-dl { background: var(--brand-blue); color: #fff; border: 0; padding: 6px 12px; border-radius: 4px; font-size: 11px; }
.bpc-license { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: #f6faff; border: 1px solid #cfddf8; border-radius: 6px; }
.bpc-l-l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); }
.bpc-l-v { font-family: var(--font-mono); font-size: 12px; color: var(--brand-blue); font-weight: 600; margin-top: 2px; }
.bpc-reveal { font-family: var(--font-mono); font-size: 10px; color: var(--brand-blue); background: transparent; border: 1px solid var(--brand-blue); padding: 5px 10px; border-radius: 4px; letter-spacing: 0.06em; }
.bpc-foot { display: flex; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-hair); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); }

/* =========================================
   Tracking funnel (replaces log stack)
   ========================================= */
.track-funnel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
}
.track-funnel-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.track-funnel-top {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.track-funnel-t {
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.track-funnel-live {
  color: #43cea2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.track-funnel-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 18px;
}
.tf-row { display: flex; flex-direction: column; gap: 8px; }
.tf-row-top { display: flex; justify-content: space-between; align-items: baseline; }
.tf-row-t { font-size: 14px; color: #fff; letter-spacing: -0.005em; }
.tf-row-n {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
.tf-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.tf-bar span { display: block; height: 100%; border-radius: 99px; transition: width 0.6s ease; }
.tf-row-detail {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 960px) {
  .feature-index { grid-template-columns: 1fr; }
  .protect-grid { grid-template-columns: 1fr; gap: 32px; }
  .protect-row { grid-template-columns: repeat(2, 1fr); }
  .protect-stat:nth-child(2) { border-right: 0; }
  .mto-compact-meta { grid-template-columns: 1fr; }
  .mto-compact-meta > div { border-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; border-bottom: 1px solid var(--line-hair); }
  .mto-compact-meta > div:last-child { border-bottom: 0; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { border-right: 0; border-bottom: 1px solid var(--line-soft); padding-left: 0 !important; padding-right: 0; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-foot { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .spec-row { grid-template-columns: 60px 1fr; }
  .spec-row .spec-d { grid-column: 1 / -1; }
  .cta { padding: 48px 28px; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer ul.footer-list-cols { columns: 1; }
  .nav-links { display: none; }
  .pricing-table { font-size: 12px; }
  .pricing-table thead th { padding: 12px 10px; }
  .pricing-table tbody td { padding: 10px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .features { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .hero-h1 { font-size: 48px; }
  .hero { padding-top: 40px; }
}


/* =========================================
   V2 — Editorial upgrades
   ========================================= */

/* Hero: bigger, more editorial, with inline live badge + prose */
.hero-v2 { padding: 64px 0 0; position: relative; }
.hero-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 28px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
}
.hero-v2-eyebrows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-v2-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-v2-eye .bar { width: 22px; height: 1px; background: var(--line); }
.hero-v2-eye strong { color: var(--ink); font-weight: 500; }
.hero-v2-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--surface);
}
.hero-v2-live-n { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.hero-v2-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #2a8a63; box-shadow: 0 0 0 3px rgba(42,138,99,0.18); animation: pulse 2s ease-in-out infinite; }

.hero-v2-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-top: 48px;
}
.hero-v2-h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.9;
  max-width: 14ch;
}
.hero-v2-h1 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}
.hero-v2-h1 em::after {
  content: ".";
  color: var(--accent);
  font-style: normal;
}
.hero-v2-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-end;
  padding-bottom: 4px;
}
.hero-v2-visual {
  min-height: 340px;
  display: flex;
  align-items: stretch;
}
.hero-v2-visual > * {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hero-v2-trustrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--line-hair);
  flex-wrap: wrap;
}
.hero-v2-trustrow-stars { color: var(--accent); letter-spacing: 1px; font-size: 13px; }
.hero-v2-trustrow-n { color: var(--ink); }
.hero-v2-trustrow-n strong { font-weight: 600; }
.hero-v2-trustrow-sep { color: var(--line-soft); }
.hero-v2-bfs { display: block; height: 36px; width: auto; }
.hero-v2-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
}
.hero-v2-lead strong { color: var(--ink); font-weight: 600; }
.hero-v2-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-v2-foot {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-v2-foot-item {
  padding-right: 32px;
  border-right: 1px solid var(--line-hair);
}
.hero-v2-foot-item:last-child { border-right: 0; }
.hero-v2-foot-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-v2-foot-v {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-v2-foot-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Hero ticker */
.hero-ticker {
  margin-top: 64px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.hero-ticker-label {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 6px 20px 6px 0;
  margin-right: 0;
  border-right: 1px solid var(--line-hair);
  white-space: nowrap;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.hero-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 20px;
}
.hero-ticker-track-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg), transparent);
  z-index: 1;
}
.hero-ticker-track-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--bg));
}
.hero-ticker-track {
  display: flex;
  gap: 48px;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.hero-ticker-item {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.hero-ticker-item::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.7;
  flex-shrink: 0;
}
.hero-ticker-item strong { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }

/* Editorial number strip */
.numbers-strip {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0 40px;
  gap: 0;
}
.numbers-lead {
  padding-right: 32px;
  border-right: 1px solid var(--line-hair);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.numbers-lead-eye {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.numbers-lead-h {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
}
.numbers-cell {
  padding: 0 24px;
  border-right: 1px solid var(--line-hair);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.numbers-cell:last-child { border-right: 0; padding-right: 0; }
.numbers-n {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-top: auto;
}
.numbers-n sup {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  vertical-align: baseline;
  position: relative;
  top: -0.9em;
  text-transform: lowercase;
}
.numbers-l {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 22ch;
}

/* Feature index v2 — with visual thumbnails */
.feature-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.feature-v2-card {
  background: var(--bg);
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  min-height: 320px;
  position: relative;
  transition: background 0.2s ease;
}
.feature-v2-card:hover { background: var(--surface); }
.feature-v2-card.emphasis { background: var(--ink); color: var(--bg); }
.feature-v2-card.emphasis:hover { background: #0b1220; }
.feature-v2-card.emphasis .feature-v2-num,
.feature-v2-card.emphasis .feature-v2-eyebrow { color: rgba(255,255,255,0.55); }
.feature-v2-card.emphasis .feature-v2-top { border-bottom-color: rgba(255,255,255,0.12); }
.feature-v2-card.emphasis .feature-v2-d { color: rgba(255,255,255,0.72); }
.feature-v2-card.emphasis .feature-v2-meta li { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.feature-v2-card.emphasis .feature-v2-thumb { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }

.feature-v2-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.feature-v2-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.feature-v2-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.feature-v2-h {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin: 0;
  max-width: 15ch;
}
.feature-v2-h em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
}
.feature-v2-d {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}
.feature-v2-meta {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feature-v2-meta li {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 4px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--surface);
}

.feature-v2-thumb {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-v2-thumb svg { width: 100%; height: 100%; display: block; }

/* Section header — full-bleed editorial */
.section-head {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.section-head-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.section-head-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1;
  margin: 0;
  max-width: 22ch;
}
.section-head-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: right;
  text-transform: uppercase;
}
.section-dark .section-head,
.section-dark-2 .section-head { border-bottom-color: rgba(255,255,255,0.14); }
.section-dark .section-head-num,
.section-dark-2 .section-head-num,
.section-dark .section-head-meta,
.section-dark-2 .section-head-meta { color: rgba(255,255,255,0.55); }
.section-dark .section-head-title,
.section-dark-2 .section-head-title { color: #fff; }

/* Order-of-operations timeline (between protection and delivery) */
.ooo {
  padding: 80px 0;
  background: #0b1220;
  color: #e8ecf3;
  position: relative;
  overflow: hidden;
}
.ooo-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  max-width: 20ch;
  color: #fff;
}
.ooo-title em { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; color: #43cea2; }
.ooo-lead {
  margin: 20px 0 48px;
  max-width: 46ch;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.55;
}
.ooo-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ooo-step {
  padding: 28px 20px 28px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.ooo-step:not(:first-child) { padding-left: 20px; }
.ooo-step:last-child { border-right: 0; }
.ooo-step::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43cea2;
  transform: translateY(-50%);
}
.ooo-step:not(:first-child)::before { left: 20px; }
.ooo-step-t {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.ooo-step-h {
  margin: 10px 0 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.ooo-step-d {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.55;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.ooo-foot {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.ooo-foot strong { color: #43cea2; font-weight: 500; font-size: 14px; text-transform: none; letter-spacing: -0.005em; font-family: var(--font-display); }

/* Sim terminal — force content fill */
.sim { min-height: 520px; }
.sim-body { flex: 1; justify-content: flex-start; }

/* CTA v2 — cover block */
.cta-v2 {
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.cta-v2::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(600px 400px at 100% 50%, rgba(67,206,162,0.18), transparent 70%);
  pointer-events: none;
}
.cta-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 40px, rgba(255,255,255,0.03) 40px 41px);
  pointer-events: none;
}
.cta-v2-inner { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: end; z-index: 1; }
.cta-v2-eye {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-v2-eye .bar { width: 28px; height: 1px; background: rgba(255,255,255,0.4); }
.cta-v2-h {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
  color: #fff;
  max-width: 14ch;
}
.cta-v2-h em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: #43cea2;
}
.cta-v2-p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 44ch;
}
.cta-v2-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-v2-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
}
.cta-v2-btn:hover { border-color: #43cea2; background: rgba(67,206,162,0.06); }
.cta-v2-btn.primary { background: #43cea2; color: #0b1220; border-color: #43cea2; font-weight: 500; }
.cta-v2-btn.primary:hover { background: #5adcb1; border-color: #5adcb1; }
.cta-v2-btn .cta-v2-btn-l { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.cta-v2-btn .cta-v2-btn-top { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.65; text-transform: uppercase; }
.cta-v2-btn.primary .cta-v2-btn-top { opacity: 0.7; }
.cta-v2-btn .cta-v2-btn-main { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }

.cta-v2-contact {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.cta-v2-contact a { color: #43cea2; text-decoration: none; }

.cta-v2-checklist {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.cta-v2-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(67,206,162,0.18); color: #43cea2;
  font-size: 11px; font-weight: 600;
  margin-right: 10px;
}

/* Fix tracking split — more breathing room for headline */
.split-dark .section-title { max-width: 18ch !important; }
.split-dark .mark-blue-dark { color: #43cea2; font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }

/* Make testimonials a bit more editorial */
.testimonials { margin-top: 48px; padding: 0; }
.testimonial { padding: 32px 28px 32px 0; }
.testimonial .stars { margin-bottom: 4px; }
.testimonial-q {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}
.testimonial-q::before { content: none; }
.testimonial .stars { display: block; margin-bottom: 12px; }

/* =========================================
   Delivery channels (replaces terminal)
   ========================================= */
.dch {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(11,18,32,0.18), 0 6px 14px -8px rgba(11,18,32,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dch-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-hair);
}
.dch-head-eye {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.dch-head-who {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.dch-head-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #1e6e4f;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff0e8;
}
.dch-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2a8a63;
  box-shadow: 0 0 0 3px rgba(42,138,99,0.2);
  animation: pulse 2s ease-in-out infinite;
}
.dch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dch-tile {
  background: var(--bg);
  border: 1px solid var(--line-hair);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 172px;
}
.dch-tile-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dch-tile-n {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.dch-tile-name {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.dch-tile-ok {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #1e6e4f;
  background: #dff0e8;
  padding: 2px 7px;
  border-radius: 3px;
}
/* Email tile */
.dch-email {
  background: #fff;
  border: 1px solid var(--line-hair);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.dch-email-from {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.dch-email-sub {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.dch-email-file {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line-hair);
  font-family: var(--font-mono);
  font-size: 11px;
}
.dch-email-ico {
  width: 18px; height: 18px;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.dch-email-dl {
  margin-left: auto;
  color: var(--brand-blue);
  font-size: 10px;
  letter-spacing: 0.04em;
}
/* Thank-you */
.dch-thx {
  background: #fff;
  border: 1px solid var(--line-hair);
  border-radius: 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.dch-thx-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.dch-thx-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}
.dch-thx-btn {
  margin-top: auto;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 8px 10px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: left;
}
/* Order status */
.dch-order {
  background: #fff;
  border: 1px solid var(--line-hair);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.dch-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--line-hair);
  font-size: 11px;
}
.dch-order-row:last-child { border-bottom: 0; }
.dch-order-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.dch-order-v {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dch-dot-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2a8a63;
  box-shadow: 0 0 0 3px rgba(42,138,99,0.2);
}
/* Portal */
.dch-portal {
  background: #fff;
  border: 1px solid var(--line-hair);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.dch-portal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-hair);
  font-size: 11px;
}
.dch-portal-row:last-child { border-bottom: 0; }
.dch-portal-name { color: var(--ink); font-weight: 500; }
.dch-portal-meta { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.04em; }
.dch-portal-row-old .dch-portal-name { color: var(--muted); font-weight: 400; }
.dch-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--line-hair);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* btn-lg — hero primary */
.btn-lg { padding: 16px 22px; font-size: 15px; border-radius: 10px; }
.btn-lg .arrow, .btn-lg span { font-size: 15px; }

/* section-proof */
.section-proof { padding: 96px 0 112px; border-top: 1px solid var(--line-soft); background: var(--bg); }
.proof-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-top: 16px; margin-bottom: 48px; }
.proof-head-meta { text-align: right; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.proof-head-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.proof-head-sub { margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }

/* testimonial KPI */
.testimonial-kpi { display: flex; justify-content: space-between; padding: 12px 0; margin: 16px 0; border-top: 1px solid var(--line-hair); border-bottom: 1px solid var(--line-hair); font-family: var(--font-mono); font-size: 11px; }
.testimonial-kpi-l { color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.testimonial-kpi-v { color: var(--ink); font-weight: 500; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-v2-body { grid-template-columns: 1fr; gap: 32px; }
  .hero-v2-foot { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-v2-foot-item:nth-child(2) { border-right: 0; }
  .numbers-strip { grid-template-columns: 1fr; gap: 24px; }
  .numbers-lead, .numbers-cell { border-right: 0; padding: 0; }
  .feature-v2 { grid-template-columns: 1fr; }
  .feature-v2-card { grid-template-columns: 1fr; }
  .ooo-rail { grid-template-columns: repeat(3, 1fr); }
  .ooo-step { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cta-v2-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-v2 { padding: 48px 32px; }
  .dch-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-v2-top { flex-direction: column; align-items: flex-start; }
  .hero-v2-h1 { font-size: 56px; }
  .ooo-rail { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
}


/* ========= Dashboard mock (listing-image hero visual) ========= */
.dashmock {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 13;
  max-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px -40px rgba(28, 56, 140, 0.55), 0 10px 30px -20px rgba(11,18,32,0.25);
  align-self: center;
}

/* Blue gradient backdrop with a subtle grid + ghost sheets,
   echoing the listing-image treatment. */
.dashmock-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 10%, #3f7be6 0%, transparent 60%),
    radial-gradient(120% 100% at 90% 90%, #1c3f9d 0%, transparent 55%),
    linear-gradient(150deg, #2457c9 0%, #123478 100%);
  z-index: 0;
}
.dashmock-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(120% 100% at 70% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 40%, #000 0%, transparent 75%);
}
.dashmock-bg-sheet {
  position: absolute;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
}
.dashmock-bg-sheet-a { right: -40px;  top: 40px;  width: 150px; height: 110px; transform: rotate(-6deg); }
.dashmock-bg-sheet-b { right: -70px;  top: 180px; width: 200px; height: 150px; transform: rotate(4deg); background: rgba(255,255,255,0.03); }
.dashmock-bg-sheet-c { right: 40px;   bottom: -40px; width: 130px; height: 100px; transform: rotate(-3deg); }

/* Floating browser window */
.dashmock-window {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 8%;
  bottom: 4%;
  background: #ffffff;
  border-radius: 14px 14px 6px 6px;
  box-shadow:
    0 40px 80px -30px rgba(6, 18, 56, 0.55),
    0 14px 28px -10px rgba(6, 18, 56, 0.35),
    0 0 0 1px rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

.dashmock-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(11,18,32,0.08);
  flex-shrink: 0;
}
.dashmock-chrome-dots { display: inline-flex; gap: 6px; }
.dashmock-chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d4d8df;
}
.dashmock-chrome-url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  max-width: 360px;
  margin: 0 auto;
  padding: 6px 14px;
  background: #f3f4f7;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #2a3246;
  letter-spacing: -0.01em;
}
.dashmock-chrome-lock { color: #7a8396; display: inline-flex; }
.dashmock-chrome-url-dim { color: #9aa1b2; }

.dashmock-body {
  padding: 22px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.dashmock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dashmock-head-l { display: inline-flex; align-items: center; gap: 10px; }
.dashmock-logo {
  width: 34px; height: 34px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 6px -2px rgba(66, 133, 244, 0.5);
  flex-shrink: 0;
}
.dashmock-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dashmock-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #0b1220;
  letter-spacing: -0.02em;
}
.dashmock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e4f5ec;
  color: #1f6b49;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.dashmock-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1f6b49;
}

.dashmock-h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #0b1220;
  line-height: 1;
}

.dashmock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.dashmock-card {
  border: 1px solid rgba(11,18,32,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.dashmock-card-h {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #0b1220;
  letter-spacing: -0.01em;
}
.dashmock-card-sub {
  font-size: 12px;
  color: #5a6677;
  line-height: 1.35;
}
.dashmock-kv {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashmock-kv li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  padding: 2px 0;
  gap: 8px;
  white-space: nowrap;
}
.dashmock-kv li span { color: #5a6677; }
.dashmock-kv li b {
  color: #0b1220;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.dashmock-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}
.dashmock-btn-dark {
  background: #0b1220;
  color: #fff;
}
.dashmock-btn-ghost {
  background: #fff;
  color: #0b1220;
  border-color: rgba(11,18,32,0.18);
}

@media (max-width: 640px) {
  .dashmock { min-height: 420px; }
  .dashmock-window { left: 4%; right: 4%; top: 6%; }
  .dashmock-body { padding: 16px 18px 18px; }
  .dashmock-grid { grid-template-columns: 1fr; gap: 8px; }
  .dashmock-h1 { font-size: 22px; }
}
