/* ========== Yolport landing — shared styles ========== */

:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #6b6b6b;
  --muted-2: #9a9a9a;
  --line: #e8e8e8;
  --line-2: #efefef;
  --paper: #ffffff;
  --paper-2: #fafafa;
  --paper-3: #f4f4f4;

  /* status accents — reused from the product itself */
  --c-blue: #2f80ed;
  --c-purple: #7b61ff;
  --c-orange: #f59e0b;
  --c-green: #16a34a;
  --c-red: #ef4444;
  --c-pink: #ec4899;

  /* Tweakable */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --density: 1;      /* 0.85 compact, 1 normal, 1.18 airy */
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ========== Landing scaffold ========== */

.lp {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.45;
}

.lp .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== Nav ========== */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-brand img { display: block; height: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: calc(28px * var(--density));
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a { color: var(--ink-2); opacity: .8; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font: inherit;
}
.lang-switch button.on {
  background: var(--ink);
  color: #fff;
}

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s, color .12s, border-color .12s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-bare {
  background: transparent;
  color: var(--ink);
  padding: 0 4px;
}
.btn-bare:hover { color: #000; }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15px; }

/* ========== Video showcase ========== */

.video-section {
  padding: calc(40px * var(--density)) 0 calc(80px * var(--density));
  background: var(--paper);
}

.video-frame {
  margin: 0 auto;
  max-width: 1120px;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 1px rgba(15,15,15,0.04),
    0 30px 60px -30px rgba(15,15,15,0.25),
    0 60px 120px -60px rgba(15,15,15,0.15);
  position: relative;
}

.vf-chrome {
  height: 36px;
  background: linear-gradient(to bottom, #fdfdfd, #f4f4f4);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.vf-dots { display: flex; gap: 6px; }
.vf-dot { width: 11px; height: 11px; border-radius: 50%; background: #e0e0e0; }
.vf-dot.r { background: #ff5f57; }
.vf-dot.y { background: #febc2e; }
.vf-dot.g { background: #28c840; }

.vf-url {
  flex: 1;
  display: flex;
  justify-content: center;
}
.vf-url-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 22px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--font-mono);
  max-width: 360px;
}
.vf-url-inner .lock { color: var(--muted-2); }

.vf-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vf-actions .ic {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background .15s;
  cursor: pointer;
}
.vf-actions .ic:hover { background: rgba(0,0,0,0.05); color: var(--ink); }

.vf-body {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.vf-body video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  opacity: 1;
  transition: opacity .25s;
}
.vf-body:hover .vf-overlay { opacity: 1; }
.vf-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px 9px 11px;
  border-radius: 999px;
  pointer-events: auto;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .15s, background .15s;
}
.vf-cta:hover { background: #fff; transform: translateY(-1px); }
.vf-cta .play-ic {
  width: 22px; height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vf-tag {
  margin-left: auto;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  letter-spacing: 0.02em;
}

.video-caption {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 600px;
}
.video-caption .eyebrow { justify-content: center; display: inline-flex; }

/* Modal */
.vmodal-bg {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  animation: vfade .2s ease;
}
@keyframes vfade { from { opacity: 0 } to { opacity: 1 } }
.vmodal-frame {
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6);
}
.vmodal-frame video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.vmodal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: inherit;
}
.vmodal-close:hover { opacity: 0.8; }

.section {
  padding: calc(96px * var(--density)) 0;
  border-bottom: 1px solid var(--line);
}
.section-tight { padding: calc(56px * var(--density)) 0; }
.section-soft { background: var(--paper-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

.h1 {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 16px;
  text-wrap: balance;
}
.h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 8px;
}
.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.5;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.kicker {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ========== Hero ========== */

.hero {
  padding: calc(96px * var(--density)) 0 calc(48px * var(--density));
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
.hero-stacked .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 56px;
}
.hero-stacked .hero-visual {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
.hero-stacked .lead { margin-left: auto; margin-right: auto; }
.hero-stacked .hero-ctas { justify-content: center; }
.hero-asym .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--muted-2); border-radius: 50%; }

.hero-visual {
  position: relative;
}

/* ========== Feature cards (3-6) ========== */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: calc(32px * var(--density));
  background: #fff;
  transition: background .2s;
}
.feature:hover { background: var(--paper-2); }
.feature .icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--paper-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ========== Zigzag breakdown ========== */

.zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: calc(80px * var(--density)) 0;
  border-bottom: 1px solid var(--line);
}
.zig:last-child { border-bottom: 0; }
.zig.reverse .zig-text { order: 2; }
.zig.reverse .zig-visual { order: 1; }
.zig-text .h2 { font-size: clamp(28px, 2.8vw, 40px); margin-bottom: 14px; }
.zig-text .lead { font-size: 17px; margin-bottom: 24px; }
.zig-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.zig-bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.zig-bullets li svg { margin-top: 3px; }

/* ========== Logos strip ========== */

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.logo-cell {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  opacity: .85;
}
.logo-cell:last-child { border-right: 0; }

/* ========== Audience cards ========== */

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.aud-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  transition: border-color .15s, transform .15s;
}
.aud-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.aud-card .aud-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.aud-card h3 { font-size: 20px; margin: 0; letter-spacing: -0.01em; }
.aud-card p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.aud-card .aud-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.aud-tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--paper-3);
  color: var(--ink-2);
}

/* ========== Workflow ========== */

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.wf-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.wf-step:last-child { border-right: 0; }
.wf-step .wf-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.wf-step h3 { font-size: 18px; margin: 0 0 6px; letter-spacing: -0.01em; }
.wf-step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.wf-step .wf-arrow {
  position: absolute;
  right: -8px;
  top: 50px;
  color: var(--line);
}
.wf-step:last-child .wf-arrow { display: none; }

/* ========== Showcase ========== */

.showcase-wrap {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-2);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.showcase-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.showcase-tab {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s;
}
.showcase-tab:hover { border-color: var(--ink-2); }
.showcase-tab.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ========== CTA ========== */

.cta {
  padding: calc(120px * var(--density)) 0;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.cta .h2 { color: #fff; }
.cta .lead { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; }
.cta .btn-primary {
  background: #fff;
  color: var(--ink);
}
.cta .btn-primary:hover { background: #f4f4f4; }
.cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.cta .btn-ghost:hover { border-color: #fff; }

/* ========== Contact form modal ========== */

.cf-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: vfade .2s ease;
  overflow-y: auto;
}
.cf-modal {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  position: relative;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.4);
  margin: auto;
}
.cf-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.cf-close:hover { background: var(--paper-3); color: var(--ink); }

.cf-head { margin-bottom: 24px; }
.cf-head .eyebrow { margin-bottom: 12px; }
.cf-head h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink);
}
.cf-head p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cf-form { display: grid; gap: 14px; }
.cf-row {
  display: grid;
  gap: 6px;
}
.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cf-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.cf-input, .cf-textarea {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.cf-input:focus, .cf-textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.cf-textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
}
.cf-submit {
  margin-top: 8px;
  height: 46px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .12s, background .12s;
}
.cf-submit:hover { background: #000; transform: translateY(-1px); }
.cf-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.cf-foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Success state */
.cf-success {
  text-align: center;
  padding: 28px 8px 8px;
}
.cf-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.cf-success h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.cf-success p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.footer {
  padding: 64px 0 40px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

/* ========== Mocked dashboard UI (recreated, not screenshots) ========== */

.mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--ink);
  box-shadow:
    0 1px 1px rgba(15,15,15,0.04),
    0 30px 60px -30px rgba(15,15,15,0.18),
    0 18px 36px -18px rgba(15,15,15,0.12);
}
.mock-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  gap: 8px;
}
.mock-topbar .mark {
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.mock-iconrow {
  display: flex;
  gap: 4px;
  margin-left: 4px;
}
.mock-iconbtn {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background .15s;
}
.mock-iconbtn:hover { background: var(--paper-3); }
.mock-iconbtn.on { background: var(--paper-3); color: var(--ink); }
.mock-topbar .spacer { flex: 1; }
.mock-topbar .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.mock-body { padding: 14px; background: var(--paper-2); }

.mock-periodbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 12px;
}
.mock-periodbar .left {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.mock-periodbar .date { font-weight: 600; color: var(--ink); }
.mock-fx { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border: 1px solid var(--line); border-radius: 7px; font-family: var(--font-mono); font-size: 11px; }
.mock-fx .ccy { color: var(--muted); font-weight: 600; }
.mock-fx .buy { color: var(--ink); }
.mock-fx .sell { color: var(--c-green); }
.mock-periodbar .right {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}
.mock-periodbar .right button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.mock-periodbar .right button.on {
  background: var(--ink);
  color: #fff;
}

.mock-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-stat-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mock-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.mock-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent, var(--ink));
}
.mock-stat .ic { color: var(--accent); margin-bottom: 2px; }
.mock-stat .num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.mock-stat .lab {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  word-break: break-word;
}

.mock-money-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.mock-money {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--accent-bg, #f3f6fc);
}
.mock-money .top { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-weight: 600; color: var(--accent, var(--c-blue)); font-size: 12px; }
.mock-money .top .ic-wrap { width: 22px; height: 22px; border-radius: 6px; background: rgba(255,255,255,0.7); display:flex; align-items:center; justify-content:center; }
.mock-money .big {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent, var(--c-blue));
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.mock-money .sub { font-size: 11px; color: var(--muted); }
.mock-money .legs {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: grid;
  gap: 4px;
  font-size: 11px;
}
.mock-money .leg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-money .pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.75);
  color: var(--accent);
  letter-spacing: 0.04em;
}
.mock-money .amt { font-family: var(--font-mono); font-weight: 500; }

.mock-cari-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-cari {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}
.mock-cari::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent, var(--ink));
}
.mock-cari .top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.mock-cari .top .ic-wrap { width: 20px; height: 20px; border-radius: 5px; background: var(--accent-bg, #f4f4f4); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.mock-cari .top .ttl { font-size: 11px; font-weight: 500; color: var(--ink); }
.mock-cari .v { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.mock-cari .s { font-size: 10px; color: var(--muted); }

/* Ops list mock */
.mock-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15,15,15,0.18);
}
.mock-list .head, .mock-list .row {
  display: grid;
  grid-template-columns: 110px 70px 60px 1fr 80px 100px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
}
.mock-list .head {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.mock-list .row { border-bottom: 1px solid var(--line-2); }
.mock-list .row:last-child { border-bottom: 0; }
.mock-list .row.r-blue { background: rgba(47,128,237,0.05); }
.mock-list .row.r-purple { background: rgba(123,97,255,0.05); }
.mock-list .row.r-orange { background: rgba(245,158,11,0.06); }
.mock-list .row.r-red { background: rgba(239,68,68,0.05); }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 5px;
  color: #fff;
}
.status-pill.s-op { background: var(--c-blue); }
.status-pill.s-rs { background: var(--c-purple); }
.status-pill.s-tm { background: var(--c-orange); }
.status-pill.s-ip { background: var(--c-red); }
.mock-list .row .num { font-family: var(--font-mono); }
.mock-list .row .cust { font-weight: 600; }

/* Vehicle mock */
.mock-vehicle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: 0 30px 60px -30px rgba(15,15,15,0.15);
}
.mv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mv-plate {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  padding: 6px 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.mv-meta { display: flex; gap: 14px; font-size: 11.5px; color: var(--muted); flex-wrap: wrap; }
.mv-meta b { color: var(--ink); font-weight: 600; }
.mv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mv-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: var(--accent-bg, var(--paper-2));
}
.mv-card .ic { color: var(--accent); margin-bottom: 8px; }
.mv-card .v { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--accent); font-variant-numeric: tabular-nums; }
.mv-card .l { font-size: 10.5px; color: var(--muted); margin-top: 2px; }

/* ============= Variant B treatments ============= */

.lp.variant-b {
  --font-sans: "IBM Plex Sans", -apple-system, sans-serif;
}
.lp.variant-b .h1 {
  font-weight: 600;
  letter-spacing: -0.04em;
}
.lp.variant-b .nav { background: rgba(250,250,250,0.85); border-bottom-color: var(--line); }
.lp.variant-b .section { border-bottom: 0; }
.lp.variant-b .section + .section { border-top: 1px solid var(--line); }
.lp.variant-b .feature {
  border: 0;
  padding: 28px 0;
  background: transparent;
}
.lp.variant-b .features {
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  border-top: 1px solid var(--ink);
}
.lp.variant-b .feature {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 32px;
}
.lp.variant-b .feature .icon {
  background: transparent;
  margin-left: -4px;
  width: 28px;
  height: 28px;
}
.lp.variant-b .hero { padding-bottom: calc(80px * var(--density)); }
.lp.variant-b .hero .h1 { font-size: clamp(44px, 6vw, 92px); }
.lp.variant-b .hero .editorial-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.lp.variant-b .section-rule {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.lp.variant-b .section-rule .num { color: var(--ink); font-weight: 600; }
.lp.variant-b .aud-card {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.lp.variant-b .audience {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.lp.variant-b .aud-card { display: grid; grid-template-columns: 80px 1fr 2fr; gap: 32px; align-items: start; }
.lp.variant-b .aud-card:hover { transform: none; border-color: var(--line); background: var(--paper-2); }
.lp.variant-b .workflow {
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.lp.variant-b .wf-step {
  border-right: 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 32px;
  padding: 28px 0;
  align-items: baseline;
}
.lp.variant-b .wf-step .wf-arrow { display: none; }

/* ============= Editor-only helpers ============= */

.tnums { font-variant-numeric: tabular-nums; }

/* Tweaks-driven density helpers */
.lp.density-compact { --density: 0.78; }
.lp.density-normal  { --density: 1; }
.lp.density-airy    { --density: 1.22; }

/* ============= Hide nav demo CTA on tight widths inside artboard ============= */
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .zig { grid-template-columns: 1fr; gap: 32px; }
}
