/* ═══════════════════════════════════════════
   KREDLINK — STYLESHEET
   Design System: Stripe-inspired
   Version: 2.0
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Source+Code+Pro:wght@500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── BRAND / NAVY ────────────────────────────── */
  --navy: #061b31;            /* Deep Navy (headings, primary text) */
  --navy-mid: #1c1e54;        /* Brand Dark (immersive sections, footer) */
  --navy-light: #533afd;      /* Stripe Purple (interactive, links) */
  --navy-pale: #f3f0ff;       /* Soft purple-tint surface */
  --navy-ultra: #fafaff;      /* Whisper purple tint */

  /* ── PRIMARY (mapped to legacy "saffron" var names for compat) ── */
  --saffron: #533afd;         /* Stripe Purple — primary CTA / accent */
  --saffron-m: #4434d4;       /* Purple Hover */
  --saffron-l: #ede9fe;       /* Purple-tint surface */
  --saffron-p: #faf9ff;       /* Faintest purple wash */

  /* ── DECORATIVE ACCENTS ──────────────────────── */
  --purple-soft: #b9b9f9;     /* Soft lavender / button outline */
  --purple-deep: #2e2b8c;     /* Icon hover */
  --purple-mid:  #665efd;
  --ruby: #ea2261;            /* Decorative gradient only */
  --magenta: #f96bee;
  --magenta-l: #ffd7ef;

  /* ── SURFACE ─────────────────────────────────── */
  --ivory: #ffffff;           /* Pure white surface */
  --cream: #f6f9fc;           /* Soft surface */
  --warm:  #eef2f7;           /* Slightly darker surface */
  --border:    #e5edf5;       /* Standard border */
  --border-l:  #eef2f7;       /* Lighter border */
  --border-sp: #d6d9fc;       /* Soft purple border */

  /* ── TEXT ────────────────────────────────────── */
  --text: #061b31;            /* Body strong */
  --t2:   #273951;            /* Label / dark slate */
  --t3:   #64748d;            /* Body / slate */
  --t4:   #94a3b8;            /* Muted */

  /* ── STATUS ──────────────────────────────────── */
  --green:    #108c3d;        /* Success text */
  --green-l:  rgba(21,190,83,.18);   /* Success bg */
  --green-m:  #15be53;        /* Success solid */
  --red:      #dc2626;
  --red-l:    #fee2e2;

  /* ── STRIPE SHADOWS (blue-tinted multi-layer) ── */
  --s1: rgba(50,50,93,.07) 0 2px 5px -1px, rgba(0,0,0,.05) 0 1px 3px -1px;
  --s2: rgba(23,23,23,.08) 0 15px 35px 0, rgba(50,50,93,.06) 0 5px 15px 0;
  --s3: rgba(50,50,93,.18) 0 13px 27px -5px, rgba(0,0,0,.10) 0 8px 16px -8px;
  --s4: rgba(50,50,93,.25) 0 30px 45px -30px, rgba(0,0,0,.10) 0 18px 36px -18px;

  /* ── RADII (4–8px workhorse range) ───────────── */
  --r:   4px;
  --rm:  6px;
  --rl:  8px;
  --rxl: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  background: #ffffff;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* Headings — Inter weight 300, negative tracking */
h1, h2, h3, h4 {
  font-family: 'Inter', 'SF Pro Display', system-ui, sans-serif;
  font-weight: 300;
  color: var(--navy);
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.4px;
  line-height: 1.15;
}

/* Tabular-numerals utility */
.tnum { font-feature-settings: "tnum", "ss01"; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::selection { background: rgba(83,58,253,.18); color: var(--navy); }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; transition: box-shadow .25s;
}
nav.scrolled { box-shadow: rgba(0,55,112,.08) 0 1px 0 0; }
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.kl-logo { width: 58px; height: 34px; flex-shrink: 0; display: block; }
.brand-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px; font-weight: 500;
  color: var(--navy); letter-spacing: -0.3px;
  font-feature-settings: "ss01";
}
.brand-name span { color: var(--saffron); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--navy);
  font-feature-settings: "ss01";
  transition: color .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--saffron); }
.nav-r { display: flex; gap: 9px; align-items: center; flex-shrink: 0; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 400; line-height: 1;
  font-feature-settings: "ss01";
  letter-spacing: -0.05px;
  cursor: pointer; transition: all .18s;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-navy, .btn-saffron {
  background: var(--saffron); color: #fff;
  border-color: var(--saffron);
}
.btn-navy:hover, .btn-saffron:hover {
  background: var(--saffron-m); border-color: var(--saffron-m);
  box-shadow: rgba(50,50,93,.15) 0 4px 12px -2px, rgba(0,0,0,.08) 0 2px 4px -1px;
}
.btn-outline {
  background: transparent; border: 1px solid var(--purple-soft);
  color: var(--saffron);
}
.btn-outline:hover {
  background: rgba(83,58,253,.05); border-color: var(--saffron);
}
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--t2);
}
.btn-ghost:hover {
  background: var(--cream); color: var(--navy);
  border-color: var(--purple-soft);
}
.btn-green {
  background: var(--green-m); color: #fff; border-color: var(--green-m);
}
.btn-green:hover {
  background: var(--green); border-color: var(--green);
  box-shadow: rgba(21,190,83,.22) 0 4px 12px -2px;
}
.btn-danger {
  background: var(--red-l); border: 1px solid rgba(220,38,38,.2); color: var(--red);
}
.btn-danger:hover { background: #fecaca; }
.btn-lg { padding: 12px 22px; font-size: 16px; border-radius: var(--rm); }
.btn-sm { padding: 6px 12px; font-size: 13px; border-radius: var(--r); }
.btn-xs { padding: 4px 10px; font-size: 12px; border-radius: var(--r); }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-loading { position: relative; pointer-events: none; }
.btn-loading::after {
  content: ''; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Keyboard focus ring (accessibility) */
.btn:focus-visible, .fi:focus-visible, .fse:focus-visible, .fta:focus-visible, .chip:focus-visible {
  outline: 2px solid var(--saffron); outline-offset: 2px;
}

/* ── BADGES ──────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 1px 6px; border-radius: var(--r);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px; font-weight: 400;
  font-feature-settings: "ss01";
  letter-spacing: 0;
}
.b-navy    { background: var(--saffron-l);  color: var(--saffron); border: 1px solid var(--border-sp); }
.b-saffron { background: var(--saffron-l);  color: var(--saffron); border: 1px solid var(--border-sp); }
.b-green   { background: rgba(21,190,83,.2); color: var(--green); border: 1px solid rgba(21,190,83,.4); }
.b-muted   { background: var(--cream); color: var(--t3); border: 1px solid var(--border); }
.b-red     { background: var(--red-l); color: var(--red); border: 1px solid rgba(220,38,38,.2); }

/* ── FORMS ───────────────────────────────────── */
.fg { margin-bottom: 16px; }
.fg:last-child { margin-bottom: 0; }
.fl {
  display: block; font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 400; color: var(--t2);
  font-feature-settings: "ss01";
  margin-bottom: 6px; letter-spacing: 0;
  text-transform: none;
}
.fi, .fse, .fta {
  width: 100%; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 12px; color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
  font-size: 14px; font-weight: 400; line-height: 1.4;
  transition: border-color .18s, box-shadow .18s; outline: none;
}
.fi:focus, .fse:focus, .fta:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(83,58,253,.15);
}
.fi::placeholder { color: var(--t3); }
.fi.error, .fse.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.08); }
.fse {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.fta { resize: vertical; min-height: 88px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error { font-size: 12px; color: var(--red); margin-top: 5px; display: none; }
.field-error.show { display: block; }
.form-section {
  background: #fff; border: 1px solid var(--border); border-radius: var(--rl);
  padding: 28px;
  box-shadow: var(--s1);
  margin-bottom: 16px;
}
.form-section-title {
  font-family: 'Source Code Pro', SFMono-Regular, monospace;
  font-size: 12px; font-weight: 500; line-height: 2;
  letter-spacing: 0; text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 18px;
}

/* ── CHIPS ───────────────────────────────────── */
.chip-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 7px; }
.chip {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--r);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 400; cursor: pointer;
  transition: all .17s;
  color: var(--t2); background: #fff; user-select: none;
  font-feature-settings: "ss01";
}
.chip:hover { border-color: var(--purple-soft); color: var(--saffron); background: rgba(83,58,253,.04); }
.chip.on { background: var(--saffron); border-color: var(--saffron); color: #fff; font-weight: 400; }
.chip-square { border-radius: var(--r); }
.chip-square.on { background: var(--saffron); border-color: var(--saffron); }

/* ── NOTIFICATIONS ───────────────────────────── */
.notif {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: var(--r); font-size: 14px;
  margin-top: 13px; animation: slideIn .28s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.notif-success { background: rgba(21,190,83,.12); border: 1px solid rgba(21,190,83,.32); color: var(--green); }
.notif-error   { background: var(--red-l); border: 1px solid rgba(220,38,38,.2); color: var(--red); }
.notif-info    { background: var(--saffron-l); border: 1px solid var(--border-sp); color: var(--saffron); }

/* ── CARDS ───────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--rl);
  padding: 24px;
  box-shadow: var(--s1);
}
.card-cream { background: var(--cream); border-color: var(--border-l); }

/* ── FLOW BAR (apply.html stepper) ───────────── */
.fbar {
  background: #fff; border-bottom: 1px solid var(--border);
  height: 54px; display: flex; align-items: center; padding: 0 2.5rem;
  overflow-x: auto; gap: 0; position: sticky; top: 64px; z-index: 50;
}
.fbar::-webkit-scrollbar { height: 0; }
.fs {
  display: flex; align-items: center; gap: 8px; padding: 0 14px;
  font-size: 13px; color: var(--t3); white-space: nowrap;
  font-feature-settings: "ss01";
}
.fsn {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 400; flex-shrink: 0; transition: all .22s;
  color: var(--t3);
}
.fs.act { color: var(--navy); font-weight: 400; }
.fs.act .fsn { background: var(--saffron); border-color: var(--saffron); color: #fff; box-shadow: 0 0 0 4px rgba(83,58,253,.12); }
.fs.dn .fsn  { background: var(--green-m); border-color: var(--green-m); color: #fff; font-size: 9px; }
.fs-sep { width: 24px; height: 1px; background: var(--border); flex-shrink: 0; }

/* ── PAGE HEADER ─────────────────────────────── */
.ph {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 24px 2.5rem;
}
.ph-in { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ph-t {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 26px; font-weight: 300;
  letter-spacing: -0.26px; color: var(--navy);
  font-feature-settings: "ss01";
}
.ph-s { font-size: 14px; color: var(--t3); margin-top: 4px; font-weight: 300; }

/* ── PROGRESS ────────────────────────────────── */
.prog-wrap { height: 4px; background: var(--warm); border-radius: 2px; overflow: hidden; }
.prog-fill { height: 100%; background: var(--saffron); border-radius: 2px; transition: width .5s cubic-bezier(.4,0,.2,1); }

/* ── TABLES ──────────────────────────────────── */
.dt-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden; box-shadow: var(--s1);
}
table.dt { width: 100%; border-collapse: collapse; }
.dt th {
  text-align: left; padding: 11px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px; font-weight: 500; color: var(--t3);
  text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border); background: var(--cream);
  font-feature-settings: "ss01";
}
.dt td {
  padding: 14px 16px; font-size: 14px; font-weight: 400;
  border-bottom: 1px solid var(--border-l); color: var(--text);
  vertical-align: middle;
  font-feature-settings: "ss01";
}
.dt td.tnum, .dt th.tnum { font-feature-settings: "tnum", "ss01"; }
.dt tr:last-child td { border-bottom: none; }
.dt tr:hover td { background: var(--cream); }
.dt-empty { text-align: center; padding: 48px; color: var(--t4); font-size: 14px; }

/* ── TABS ────────────────────────────────────── */
.tabs {
  display: flex; gap: 0; background: var(--cream);
  border-radius: var(--r); padding: 3px; width: fit-content;
  margin-bottom: 20px; border: 1px solid var(--border);
}
.tab {
  padding: 7px 16px; border-radius: 3px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 400; color: var(--t3);
  cursor: pointer; transition: all .17s;
  font-feature-settings: "ss01";
}
.tab.on { background: #fff; color: var(--navy); box-shadow: var(--s1); font-weight: 500; }

/* ── STAT CARDS ──────────────────────────────── */
.sg { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 24px; }
.sc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 22px; box-shadow: var(--s1);
}
.sc-l {
  font-size: 12px; color: var(--t3); font-weight: 400;
  letter-spacing: 0; text-transform: none; margin-bottom: 8px;
  font-feature-settings: "ss01";
}
.sc-n {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 28px; font-weight: 300;
  color: var(--navy); line-height: 1;
  letter-spacing: -0.56px;
  font-feature-settings: "tnum", "ss01";
}
.sc-s { font-size: 12px; color: var(--green); margin-top: 6px; font-weight: 400; }

/* ── MODAL ───────────────────────────────────── */
.modal {
  position: fixed; inset: 0; background: rgba(6,27,49,.45);
  backdrop-filter: blur(6px); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; pointer-events: none; transition: opacity .22s;
}
.modal.open { opacity: 1; pointer-events: all; }
.mbox {
  background: #fff; border: 1px solid var(--border); border-radius: var(--rxl);
  padding: 36px; max-width: 620px; width: 100%; max-height: 88vh;
  overflow-y: auto;
  box-shadow: rgba(3,3,39,.25) 0 14px 21px -14px, rgba(0,0,0,.10) 0 8px 17px -8px;
  transform: translateY(10px) scale(.985); transition: all .25s cubic-bezier(.4,0,.2,1);
}
.modal.open .mbox { transform: translateY(0) scale(1); }
.modal-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px; font-weight: 300;
  color: var(--navy); letter-spacing: -0.22px;
  font-feature-settings: "ss01";
}
.modal-close { background: none; border: none; cursor: pointer; color: var(--t3); font-size: 20px; line-height: 1; padding: 4px; }
.modal-close:hover { color: var(--navy); }

/* ── ADMIN LAYOUT ────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 64px); }
.sidebar {
  background: var(--navy-mid); padding: 22px 0;
  position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 0; }
.sb-section { margin-bottom: 4px; padding: 0 12px; }
.sb-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.6px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  padding: 12px 8px 6px;
}
.sb-item {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px;
  border-radius: var(--r);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; color: rgba(255,255,255,.6);
  cursor: pointer; transition: all .18s; font-weight: 400;
  user-select: none;
  font-feature-settings: "ss01";
}
.sb-item:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); }
.sb-item.on { background: rgba(83,58,253,.22); color: #fff; font-weight: 500; }
.sb-ico { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }
.admin-main { padding: 28px 32px; background: var(--cream); min-height: calc(100vh - 64px); }
.admin-section { display: none; }
.admin-section.active { display: block; }

/* ── DOC LIST ────────────────────────────────── */
.doclist {
  border: 1px solid var(--border); border-radius: var(--rl);
  overflow: hidden; box-shadow: var(--s1);
}
.doci {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid var(--border-l);
  background: #fff; transition: background .15s;
}
.doci:last-child { border-bottom: none; }
.doci:hover { background: var(--cream); }
.di {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; border: 1px solid;
}
.di-done   { background: rgba(21,190,83,.18); color: var(--green); border-color: rgba(21,190,83,.4); }
.di-active { background: var(--saffron-l); color: var(--saffron); border-color: var(--border-sp); animation: breathe 2.5s ease infinite; }
@keyframes breathe { 0%,100% { box-shadow: 0 0 0 0 rgba(83,58,253,.22); } 50% { box-shadow: 0 0 0 8px rgba(83,58,253,.04); } }
.di-pend   { background: var(--cream); color: var(--t4); border-color: var(--border); }
.di-info   { flex: 1; }
.di-n { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 2px; font-feature-settings: "ss01"; }
.di-s { font-size: 13px; color: var(--t3); font-weight: 400; font-feature-settings: "ss01"; }

/* ── TICKER ──────────────────────────────────── */
.ticker-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--cream); overflow: hidden; padding: 12px 0;
}
.ticker-track { display: flex; width: max-content; animation: tk 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes tk { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ti {
  display: flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 13px; color: var(--t3); white-space: nowrap;
  font-feature-settings: "ss01";
}
.ti strong { color: var(--navy); font-weight: 500; }
.ti-d { color: var(--saffron); font-size: 10px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: center; gap: 56px;
  max-width: 1180px; margin: 0 auto; padding: 110px 2.5rem 80px;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: 80px;
  width: 380px; height: 380px; pointer-events: none; z-index: -1;
  background: radial-gradient(circle, rgba(249,107,238,.18), rgba(234,34,97,.06) 50%, transparent 70%);
  filter: blur(40px);
}
.h-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.h-line { width: 26px; height: 2px; background: var(--saffron); }
.h-tag {
  font-family: 'Source Code Pro', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0;
  text-transform: uppercase; color: var(--saffron);
}
.h-title {
  font-family: 'Inter', 'SF Pro Display', system-ui, sans-serif;
  font-size: clamp(40px, 5.2vw, 56px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -1.6px; color: var(--navy);
  margin-bottom: 22px;
  font-feature-settings: "ss01", "cv11";
}
.h-title em {
  font-style: italic; color: var(--saffron); font-weight: 700;
}
.h-body {
  font-size: 18px; color: var(--t3); line-height: 1.45;
  max-width: 520px; margin-bottom: 36px; font-weight: 300;
  font-feature-settings: "ss01";
}
.h-cta { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.h-stats {
  display: flex; gap: 48px; padding-top: 28px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hs-n {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 28px; font-weight: 300;
  color: var(--navy); line-height: 1;
  letter-spacing: -0.56px;
  font-feature-settings: "tnum", "ss01";
}
.hs-l { font-size: 13px; color: var(--t3); margin-top: 6px; font-weight: 400; }
.hero-r { position: relative; height: 540px; }
.hi-main {
  position: absolute; right: 0; top: 0; width: 320px; height: 400px;
  border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--s4);
}
.hi-main img { width: 100%; height: 100%; object-fit: cover; }
.hi-accent {
  position: absolute; left: 0; bottom: 20px; width: 220px; height: 280px;
  border-radius: var(--rl); overflow: hidden; box-shadow: var(--s3);
  border: 4px solid #fff;
}
.hi-accent img { width: 100%; height: 100%; object-fit: cover; }
.hi-float {
  position: absolute; left: 148px; top: 47%; transform: translateY(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 16px 18px;
  box-shadow: var(--s3); min-width: 180px;
}
.hi-fl {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: var(--t3); letter-spacing: 0;
  text-transform: uppercase; margin-bottom: 6px; font-weight: 500;
}
.hi-fv {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px; font-weight: 300; color: var(--navy);
  letter-spacing: -0.18px;
  font-feature-settings: "ss01";
}
.hi-fs { font-size: 12px; color: var(--green); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green-m); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.6); } }

/* ── SECTIONS ────────────────────────────────── */
.sec { max-width: 1080px; margin: 0 auto; padding: 90px 2.5rem; }
.sl { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sl-dash { width: 20px; height: 2px; background: var(--saffron); }
.sl-txt {
  font-family: 'Source Code Pro', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0;
  text-transform: uppercase; color: var(--saffron);
}
.sh {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 300; line-height: 1.10;
  letter-spacing: -0.96px; color: var(--navy);
  font-feature-settings: "ss01", "cv11";
}
.sh em {
  font-style: italic; color: var(--saffron); font-weight: 300;
}
.sp {
  font-size: 18px; color: var(--t3); line-height: 1.45;
  font-weight: 300; max-width: 560px;
  font-feature-settings: "ss01";
}

/* ── DARK BAND ───────────────────────────────── */
.dark-band { background: var(--navy-mid); color: #fff; position: relative; overflow: hidden; }
.dark-band::after {
  content: ''; position: absolute; right: -180px; top: -120px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(249,107,238,.18), rgba(234,34,97,.06) 50%, transparent 70%);
  filter: blur(60px); z-index: 0;
}
.db-inner {
  max-width: 1080px; margin: 0 auto; padding: 90px 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.db-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300; color: #fff; line-height: 1.12;
  letter-spacing: -0.4px; margin-bottom: 18px;
  font-feature-settings: "ss01", "cv11";
}
.db-p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.55; font-weight: 300; margin-bottom: 28px; font-feature-settings: "ss01"; }
.db-pts { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.db-quote-inline {
  margin: 0 0 28px;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--magenta);
  border-radius: 0 var(--rl) var(--rl) 0;
  max-width: 480px;
}
.db-quote-inline p {
  font-style: italic; color: rgba(255,255,255,.92);
  font-size: 15px; line-height: 1.45; font-weight: 300;
  font-feature-settings: "ss01"; margin: 0;
}
.db-quote-inline cite {
  display: block; font-style: normal;
  color: rgba(255,255,255,.5); font-size: 11px;
  margin-top: 8px;
  font-family: 'Source Code Pro', SFMono-Regular, monospace;
  text-transform: uppercase; letter-spacing: 0; font-weight: 500;
}
.db-pt { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,.78); font-weight: 300; line-height: 1.55; font-feature-settings: "ss01"; }
.db-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); flex-shrink: 0; margin-top: 8px; box-shadow: 0 0 8px rgba(249,107,238,.6); }
.db-imgs { position: relative; height: 500px; }
.dbi1 { position: absolute; right: 0; top: 0; width: 285px; height: 355px; border-radius: var(--rl); overflow: hidden; box-shadow: var(--s4); }
.dbi1 img { width: 100%; height: 100%; object-fit: cover; }
.dbi2 { position: absolute; left: 0; bottom: 0; width: 200px; height: 255px; border-radius: var(--rl); overflow: hidden; border: 3px solid rgba(255,255,255,.08); box-shadow: var(--s3); }
.dbi2 img { width: 100%; height: 100%; object-fit: cover; }
.db-quote { position: absolute; left: 155px; top: 220px; background: #fff; padding: 18px 20px; border-radius: var(--rl); box-shadow: rgba(50,50,93,.25) 0 30px 45px -30px, rgba(0,0,0,.10) 0 18px 36px -18px; max-width: 215px; z-index: 5; }
.dbq-t {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-style: italic; line-height: 1.5;
  color: var(--t2); margin-bottom: 8px; font-weight: 400;
  font-feature-settings: "ss01";
}
.dbq-a {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: var(--t3); letter-spacing: 0;
  text-transform: uppercase; font-weight: 500;
}
/* Speed-comparison card — visualises "4× faster" as actual data */
.db-speed {
  position: absolute; right: 0; bottom: 30px;
  width: 230px; padding: 16px 18px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl);
  box-shadow: rgba(50,50,93,.35) 0 30px 60px -20px, rgba(0,0,0,.15) 0 18px 36px -18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
  z-index: 2;
}
.dbs-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-l);
}
.dbs-eyebrow {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: var(--t3);
  text-transform: uppercase; font-weight: 500; letter-spacing: 0;
}
.dbs-pill {
  font-size: 11px; padding: 2px 8px; border-radius: var(--r);
  background: var(--saffron-l); color: var(--saffron);
  border: 1px solid var(--border-sp); font-weight: 500;
  font-feature-settings: "ss01";
}
.dbs-row {
  display: grid; grid-template-columns: 64px 1fr 32px;
  align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.dbs-row:last-child { margin-bottom: 0; }
.dbs-l {
  font-size: 11px; color: var(--t3); font-weight: 400;
}
.dbs-bar {
  height: 6px; background: var(--warm);
  border-radius: 3px; overflow: hidden;
}
.dbs-fill { display: block; height: 100%; border-radius: 3px; }
.dbs-bad { background: var(--t4); }
.dbs-good {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--purple-mid) 100%);
}
.dbs-v {
  font-size: 12px; font-weight: 500; color: var(--navy);
  font-feature-settings: "tnum";
  text-align: right;
}

/* ── VALUE PROPS SPLIT ───────────────────────── */
.vps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-radius: var(--rl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--s2); margin-top: 48px;
}
.vpc { background: #fff; padding: 46px; }
.vpc:last-child { background: var(--cream); }
.vpc-tag {
  display: inline-flex; align-items: center; padding: 1px 8px;
  border-radius: var(--r);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  margin-bottom: 18px; border: 1px solid;
  font-feature-settings: "ss01";
}
.tag-a { background: rgba(21,190,83,.16); color: var(--green); border-color: rgba(21,190,83,.4); }
.tag-b { background: var(--saffron-l); color: var(--saffron); border-color: var(--border-sp); }
.vpc-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 26px; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 12px; color: var(--navy);
  font-feature-settings: "ss01", "cv11";
}
.vpc-p { font-size: 16px; color: var(--t3); line-height: 1.5; font-weight: 300; margin-bottom: 22px; font-feature-settings: "ss01"; }
.vpc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.vpc-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--t2); line-height: 1.5; font-weight: 300; font-feature-settings: "ss01"; }
.vchk { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.vchk-g { background: rgba(21,190,83,.18); color: var(--green); border: 1px solid rgba(21,190,83,.4); }
.vchk-s { background: var(--saffron-l); color: var(--saffron); border: 1px solid var(--border-sp); }
.vpc-img { margin-top: 26px; border-radius: var(--rl); overflow: hidden; height: 220px; box-shadow: var(--s2); }
.vpc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vpc:hover .vpc-img img { transform: scale(1.04); }

/* ── TESTIMONIALS ────────────────────────────── */
.testi-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.testi {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px; box-shadow: var(--s1);
  transition: box-shadow .25s;
}
.testi:hover { box-shadow: var(--s3); }
.testi-q {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; font-style: italic; color: var(--t2);
  line-height: 1.55; margin-bottom: 18px; font-weight: 300;
  font-feature-settings: "ss01";
}
.testi-auth { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); }
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-n { font-size: 14px; font-weight: 500; color: var(--navy); font-feature-settings: "ss01"; }
.testi-r { font-size: 12px; color: var(--t3); font-weight: 400; }

/* ── TRUST STRIP ─────────────────────────────── */
.trust {
  background: var(--cream); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 2.5rem; text-align: center;
}
.trust-l {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; letter-spacing: 0;
  text-transform: uppercase; color: var(--t3);
  margin-bottom: 16px; font-weight: 500;
}
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-n {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; font-weight: 400; color: var(--t3);
  opacity: .65; transition: opacity .2s, color .2s; cursor: default;
  font-feature-settings: "ss01";
}
.trust-n:hover { opacity: 1; color: var(--navy); }

/* ── LEAD FORMS ──────────────────────────────── */
.lfs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-radius: var(--rl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--s2); margin-top: 48px;
}
.lfc { background: #fff; padding: 44px; }
.lfc:last-child { background: var(--cream); }
.lfc:last-child .fi, .lfc:last-child .fse { background: #fff; }

/* ── PARTNER CARDS (apply step 3) ────────────── */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.pcard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 22px; cursor: pointer;
  transition: all .2s; position: relative; overflow: hidden;
  box-shadow: var(--s1);
}
.pcard:hover { border-color: var(--purple-soft); transform: translateY(-2px); box-shadow: var(--s3); }
.pcard.sel { border-color: var(--saffron); background: var(--saffron-p); box-shadow: 0 0 0 1px var(--saffron), var(--s2); }
.p-tick {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--saffron); color: #fff;
  display: none; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
}
.pcard.sel .p-tick { display: flex; }
.p-mscore { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.p-mn {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px; font-weight: 500; color: var(--saffron);
  letter-spacing: -0.18px;
  font-feature-settings: "tnum", "ss01";
}
.p-mbar { flex: 1; height: 3px; background: var(--warm); border-radius: 2px; overflow: hidden; }
.p-mfill { height: 100%; background: var(--saffron); border-radius: 2px; }
.p-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px; font-weight: 500; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -0.18px;
  font-feature-settings: "ss01";
}
.p-type { font-size: 13px; color: var(--t3); margin-bottom: 13px; font-weight: 400; }
.p-rows { display: flex; flex-direction: column; gap: 7px; }
.p-rw { display: flex; justify-content: space-between; font-size: 13px; font-feature-settings: "ss01"; }
.p-rw .pl { color: var(--t3); font-weight: 400; }
.p-rw .pv { color: var(--navy); font-weight: 500; font-feature-settings: "tnum", "ss01"; }
.p-segs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.p-seg {
  padding: 1px 8px; background: var(--saffron-l);
  border: 1px solid var(--border-sp); border-radius: var(--r);
  font-size: 11px; color: var(--saffron); font-weight: 400;
  font-feature-settings: "ss01";
}

/* ── SEL FOOTER ──────────────────────────────── */
.selfoot {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px 2.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; z-index: 50; transform: translateY(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: rgba(50,50,93,.10) 0 -8px 24px -4px;
}
.selfoot.show { transform: translateY(0); }

/* ── ONE PAGER ───────────────────────────────── */
.ops { margin-bottom: 19px; padding-bottom: 19px; border-bottom: 1px solid var(--border-l); }
.ops:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.opl {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 10px;
}
.kvg { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.kv-l { font-size: 12px; color: var(--t3); margin-bottom: 2px; font-weight: 400; font-feature-settings: "ss01"; }
.kv-v { font-size: 14px; color: var(--navy); font-weight: 500; font-feature-settings: "tnum", "ss01"; }

/* ── PROPOSAL CARD ───────────────────────────── */
.prop-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 22px; margin-bottom: 13px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer; transition: all .2s;
  box-shadow: var(--s1);
}
.prop-card:hover { border-color: var(--purple-soft); box-shadow: var(--s3); }
.prop-card.new { border-color: var(--border-sp); background: var(--saffron-p); }

/* ── LOGIN ───────────────────────────────────── */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--navy-mid); padding: 2rem; position: relative; overflow: hidden;
}
.login-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(249,107,238,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, rgba(83,58,253,.20) 0%, transparent 55%);
}
.login-box {
  background: #fff; border-radius: var(--rxl); padding: 44px;
  max-width: 420px; width: 100%;
  box-shadow: rgba(3,3,39,.3) 0 14px 21px -14px, rgba(0,0,0,.15) 0 8px 17px -8px;
  position: relative; z-index: 1;
}
.login-tabs {
  display: flex; gap: 0; background: var(--cream);
  border-radius: var(--r); padding: 3px; border: 1px solid var(--border);
  margin-bottom: 24px;
}
.login-tab {
  flex: 1; padding: 8px 0; text-align: center; border-radius: 3px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 400; color: var(--t3);
  cursor: pointer; transition: all .17s;
  font-feature-settings: "ss01";
}
.login-tab.on { background: #fff; color: var(--navy); box-shadow: var(--s1); font-weight: 500; }
.login-hint {
  margin-top: 18px; background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
  font-size: 13px; color: var(--t3); line-height: 1.5; text-align: center;
  font-feature-settings: "ss01";
}

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--navy-mid); color: #fff; padding: 64px 2.5rem 28px; }
.fg-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.fg-brand {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.19px;
  margin-bottom: 12px; color: #fff;
  font-feature-settings: "ss01";
}
.fg-brand span { color: var(--magenta); }
.fg-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; max-width: 280px; font-weight: 300; font-feature-settings: "ss01"; }
.fg-ch {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.fg-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fg-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .18s; font-weight: 300; font-feature-settings: "ss01"; }
.fg-links a:hover { color: #fff; }
.fg-bot { max-width: 1080px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px; font-feature-settings: "ss01"; }
.fg-ci { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 300; display: flex; align-items: center; gap: 7px; margin-bottom: 4px; font-feature-settings: "ss01"; }
.rbi-note {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 12px 14px;
  font-size: 12px; color: rgba(255,255,255,.5);
  margin-top: 16px; line-height: 1.5; max-width: 440px;
  font-feature-settings: "ss01";
}

/* ── MULTI-SELECT DROPDOWN ───────────────────── */
.ms { position: relative; }
.ms-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 10px 12px; cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 400; color: var(--text);
  font-feature-settings: "ss01"; line-height: 1.4;
  transition: border-color .18s, box-shadow .18s;
}
.ms-toggle:hover { border-color: var(--purple-soft); }
.ms.open .ms-toggle {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(83,58,253,.15);
}
.ms-label { color: var(--text); }
.ms .ms-label:empty::before, .ms-toggle .ms-label:first-letter { color: inherit; }
.ms-arrow { color: var(--t3); transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
.ms.open .ms-arrow { transform: rotate(180deg); color: var(--saffron); }
.ms-menu {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--rl);
  box-shadow: rgba(50,50,93,.25) 0 30px 45px -30px, rgba(0,0,0,.10) 0 18px 36px -18px;
  padding: 6px; z-index: 50;
  max-height: 280px; overflow-y: auto;
  display: none;
}
.ms.open .ms-menu { display: block; }
.ms-opt {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  border-radius: var(--r); cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px; font-weight: 400; color: var(--t2);
  font-feature-settings: "ss01";
  transition: background .15s;
}
.ms-opt:hover { background: var(--saffron-l); color: var(--saffron); }
.ms-opt input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--saffron);
  cursor: pointer; flex-shrink: 0;
}
.ms-chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.ms-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 4px 3px 10px; border-radius: var(--r);
  background: var(--saffron-l); color: var(--saffron);
  border: 1px solid var(--border-sp);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 400;
  font-feature-settings: "ss01";
}
.ms-chip button {
  background: none; border: none; cursor: pointer;
  color: var(--saffron); font-size: 16px; line-height: 1;
  padding: 0 6px; opacity: .6; transition: opacity .15s;
}
.ms-chip button:hover { opacity: 1; }

/* Show field-error for the multiselect/select using its `.show` toggle */
.fse.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.08); }

/* ═══════════════════════════════════════════════
   PRODUCT MOCKUPS (replace stock photos)
═══════════════════════════════════════════════ */

/* Hero mockup card — main product preview */
.mockup {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
}
.mockup-main {
  position: absolute; right: 0; top: 0;
  width: 360px;
  box-shadow: var(--s4);
  overflow: hidden;
}
.mk-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--border-l);
  background: var(--cream);
}
.mk-dots { display: flex; gap: 5px; }
.mk-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
}
.mk-url {
  font-family: 'Source Code Pro', SFMono-Regular, monospace;
  font-size: 11px; color: var(--t3); margin-left: 4px;
}
.mk-body { padding: 18px 18px 16px; }
.mk-eyebrow {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 6px;
}
.mk-title { font-size: 18px; font-weight: 500; color: var(--navy); letter-spacing: -0.18px; }
.mk-title-sm { font-size: 15px; font-weight: 500; color: var(--navy); letter-spacing: -0.15px; }
.mk-sub { font-size: 12px; color: var(--t3); margin-top: 2px; margin-bottom: 14px; }
.mk-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.mk-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r);
  background: var(--cream); border: 1px solid var(--border-l);
}
.mk-rl { flex: 1; min-width: 0; }
.mk-rn { font-size: 13px; font-weight: 500; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-rs { font-size: 11px; color: var(--t3); margin-top: 1px; }
.mk-score { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mk-sn {
  font-size: 14px; font-weight: 500; color: var(--saffron);
  font-feature-settings: "tnum";
  min-width: 22px; text-align: right;
}
.mk-sb { width: 60px; height: 4px; background: var(--warm); border-radius: 2px; overflow: hidden; }
.mk-sb i { display: block; height: 100%; background: var(--saffron); border-radius: 2px; }
.mk-cta { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border-l); }
.mk-pill {
  font-size: 11px; font-weight: 400; padding: 1px 8px; border-radius: var(--r);
  background: var(--saffron-l); color: var(--saffron); border: 1px solid var(--border-sp);
}
.mk-pill-g { background: rgba(21,190,83,.16); color: var(--green); border-color: rgba(21,190,83,.4); }
.mk-btn {
  margin-left: auto; padding: 6px 12px; border-radius: var(--r);
  background: var(--saffron); color: #fff; border: none;
  font-family: inherit; font-size: 12px; font-weight: 400; cursor: pointer;
}

/* Hero accent mockup — small docs tracker */
.mockup-accent {
  position: absolute; left: -6px; bottom: 18px;
  width: 250px; padding: 16px;
  box-shadow: var(--s3);
  background: #fff;
}
.mk-prog { height: 4px; background: var(--warm); border-radius: 2px; overflow: hidden; margin: 12px 0 6px; }
.mk-prog-fill { height: 100%; background: var(--saffron); border-radius: 2px; }
.mk-prog-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--t3); margin-bottom: 12px; }
.mk-meta-g { color: var(--green); font-weight: 500; }
.mk-checks { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; border-top: 1px solid var(--border-l); }
.mk-chk { font-size: 12px; color: var(--t2); display: flex; align-items: center; gap: 8px; font-weight: 400; }
.mk-chk.done .mk-chki { background: rgba(21,190,83,.18); color: var(--green); border-color: rgba(21,190,83,.4); }
.mk-chk.active { color: var(--saffron); font-weight: 500; }
.mk-chk.active .mk-chki { background: var(--saffron-l); color: var(--saffron); border-color: var(--border-sp); }
.mk-chki {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--cream); color: var(--t4);
}

/* Dark-band mockups */
.dbm {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
  box-shadow: var(--s4);
}
.dbm-back {
  position: absolute; right: 0; top: 0;
  width: 295px;
}
.dbm-front {
  position: absolute; left: 0; bottom: 0;
  width: 235px;
  box-shadow: rgba(50,50,93,.35) 0 30px 60px -20px, rgba(0,0,0,.15) 0 18px 36px -18px;
}
.dbm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dbm-title { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: -0.13px; }
.dbm-pill {
  font-size: 11px; padding: 1px 7px; border-radius: var(--r);
  background: var(--saffron-l); color: var(--saffron); border: 1px solid var(--border-sp);
}
.dbm-pill-g { background: rgba(21,190,83,.16); color: var(--green); border-color: rgba(21,190,83,.4); }
.dbm-rows { display: flex; flex-direction: column; gap: 6px; }
.dbm-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--r);
  background: var(--cream); border: 1px solid var(--border-l);
  font-size: 12px;
}
.dbm-row.dbm-new { background: var(--saffron-p); border-color: var(--border-sp); }
.dbm-rdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dbm-rl { flex: 1; min-width: 0; }
.dbm-rn { font-size: 12px; font-weight: 500; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dbm-rs { font-size: 10px; color: var(--t3); margin-top: 1px; }
.dbm-rr { font-size: 10px; color: var(--t4); flex-shrink: 0; font-feature-settings: "tnum"; }
.dbm-prog { height: 4px; background: var(--warm); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.dbm-prog-fill { height: 100%; background: var(--saffron); border-radius: 2px; }
.dbm-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--t3); margin-bottom: 12px; }
.dbm-days { color: var(--green); font-weight: 500; }
.dbm-checks { display: flex; flex-direction: column; gap: 5px; padding-top: 10px; border-top: 1px solid var(--border-l); }
.dbm-chk { font-size: 11px; color: var(--t2); font-weight: 400; }
.dbm-chk.done { color: var(--green); }
.dbm-chk.active { color: var(--saffron); font-weight: 500; }
.dbm-chk.pending { color: var(--t4); }

/* How-it-works flow card */
.flow-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 22px;
  box-shadow: var(--s4);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
}
.flow-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 14px; border-bottom: 1px solid var(--border-l); margin-bottom: 14px;
}
.flow-eyebrow {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: var(--saffron); text-transform: uppercase;
  letter-spacing: 0; font-weight: 500; margin-bottom: 4px;
}
.flow-org { font-size: 16px; font-weight: 500; color: var(--navy); letter-spacing: -0.16px; }
.flow-pill {
  font-size: 11px; padding: 2px 8px; border-radius: var(--r);
  background: var(--saffron-l); color: var(--saffron);
  border: 1px solid var(--border-sp);
}
.flow-steps { display: flex; flex-direction: column; gap: 12px; }
.flow-step {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: flex-start;
  padding: 8px 4px; border-radius: var(--r);
}
.flow-n {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif; font-size: 12px; font-weight: 500;
  background: var(--cream); border: 1px solid var(--border); color: var(--t4);
}
.flow-step.done .flow-n { background: rgba(21,190,83,.18); border-color: rgba(21,190,83,.4); color: var(--green); }
.flow-step.active .flow-n { background: var(--saffron); border-color: var(--saffron); color: #fff; box-shadow: 0 0 0 4px rgba(83,58,253,.14); }
.flow-step.active { background: var(--saffron-p); }
.flow-t { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: -0.13px; }
.flow-s { font-size: 12px; color: var(--t3); margin-top: 2px; }
.flow-step.done .flow-t { color: var(--t2); }

/* Value-prop dashboard mockups */
.vp-mock {
  margin-top: 26px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px;
  box-shadow: var(--s2);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
}
.vp-mock-b { background: var(--cream); }
.vpm-head {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: var(--t3); text-transform: uppercase;
  letter-spacing: 0; font-weight: 500; margin-bottom: 12px;
}
.vpm-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; margin-bottom: 6px;
  border-radius: var(--r);
  background: #fff; border: 1px solid var(--border-l);
}
.vp-mock-b .vpm-row { background: #fff; }
.vpm-rl { flex: 1; min-width: 0; }
.vpm-rn { font-size: 13px; font-weight: 500; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vpm-rs { font-size: 11px; color: var(--t3); margin-top: 1px; }
.vpm-score { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.vpm-score span {
  font-size: 13px; font-weight: 500; color: var(--green);
  font-feature-settings: "tnum"; min-width: 20px; text-align: right;
}
.vpm-score i { display: block; width: 56px; height: 4px; border-radius: 2px; }
.vpm-tag {
  font-size: 11px; padding: 1px 8px; border-radius: var(--r);
  background: var(--saffron-l); color: var(--saffron);
  border: 1px solid var(--border-sp); font-weight: 400; flex-shrink: 0;
}
.vpm-tag-g { background: rgba(21,190,83,.16); color: var(--green); border-color: rgba(21,190,83,.4); }
.vpm-foot {
  font-size: 12px; color: var(--t3); padding-top: 10px; margin-top: 6px;
  border-top: 1px solid var(--border-l); font-weight: 400;
}

/* Testimonial avatars — initials in branded gradients */
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  flex-shrink: 0; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 13px;
  letter-spacing: -0.2px;
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01";
  box-shadow: rgba(50,50,93,.15) 0 2px 6px -1px;
  overflow: hidden;
}

/* Value-prop cards: flex column so the CTA sits at a consistent y across both
   cards (button absorbs any extra height left over from the bullet list),
   then the mockup gets a FIXED gap below the CTA so the two cards always have
   matching button-to-mockup spacing regardless of bullet line counts. */
.vpc { display: flex; flex-direction: column; }
.vpc .btn-lg { margin-top: auto; }
.vp-mock { margin-top: 26px; }

/* ═══════════════════════════════════════════════
   CAPITAL PARTNERS LANDING PAGE — components
═══════════════════════════════════════════════ */

/* Without/With comparison table */
.cmp-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border-l); }
.cmp-row > div {
  padding: 16px 22px; font-size: 14px; line-height: 1.5; font-weight: 400;
  display: flex; align-items: flex-start; gap: 12px;
  font-feature-settings: "ss01";
}
.cmp-bad { color: var(--t3); border-right: 1px solid var(--border-l); }
.cmp-good { color: var(--navy); background: var(--saffron-p); }
.cmp-x, .cmp-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 600; flex-shrink: 0; margin-top: 2px;
}
.cmp-x { background: rgba(220,38,38,.12); color: var(--red); border: 1px solid rgba(220,38,38,.3); }
.cmp-tick { background: var(--saffron-l); color: var(--saffron); border: 1px solid var(--border-sp); }

/* Flow diagram (Demand → Kredlink → Bank) — sophisticated 3-stage layout */
.flow-diagram {
  display: grid; grid-template-columns: 1fr auto 1.15fr auto 1fr;
  gap: 8px; margin-top: 48px; align-items: stretch;
}
.flow-node {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 26px 22px 22px;
  box-shadow: var(--s2);
  position: relative; overflow: hidden;
}
/* Thin top accent line per role */
.flow-node::before {
  content: ''; position: absolute; top: 0; left: 16px; right: 16px; height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, #cbd5e1 50%, transparent);
}
.flow-node-mid {
  background: linear-gradient(180deg, var(--saffron-p) 0%, #fff 60%);
  border-color: var(--border-sp);
  box-shadow: rgba(50,50,93,.18) 0 24px 40px -22px, rgba(0,0,0,.10) 0 14px 28px -14px;
  transform: translateY(-10px);
  z-index: 2;
}
.flow-node-mid::before {
  background: linear-gradient(90deg, transparent, var(--saffron) 30%, var(--magenta) 70%, transparent);
  height: 2px; left: 14px; right: 14px;
}
.flow-node-mid::after {
  content: ''; position: absolute; left: 18px; right: 18px; bottom: -10px;
  height: 12px; pointer-events: none;
  background: radial-gradient(ellipse at center top, rgba(83,58,253,.16), transparent 70%);
  filter: blur(2px);
}
.flow-node-badge {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 22px; opacity: .85;
}
.flow-node-badge svg { width: 100%; height: 100%; display: block; }
.flow-stage {
  font-family: 'Source Code Pro', SFMono-Regular, monospace;
  font-size: 10px; color: var(--t4); text-transform: uppercase;
  letter-spacing: 0.6px; font-weight: 500; margin-bottom: 4px;
}
.flow-node-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.15px; margin-bottom: 16px;
  font-feature-settings: "ss01";
}
.flow-node-list { display: flex; flex-direction: column; gap: 0; }
.flow-li {
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; color: var(--navy); font-weight: 400;
  padding: 11px 0; border-bottom: 1px solid var(--border-l);
  font-feature-settings: "ss01";
  letter-spacing: -0.05px;
}
.flow-li:last-child { border-bottom: none; }
.flow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.flow-dot-slate  { background: #94a3b8; box-shadow: 0 0 0 3px rgba(148,163,184,.15); }
.flow-dot-purple { background: var(--saffron); box-shadow: 0 0 0 3px rgba(83,58,253,.16); }
.flow-dot-green  { background: var(--green-m); box-shadow: 0 0 0 3px rgba(21,190,83,.16); }
.flow-tag {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-family: 'Source Code Pro', monospace;
  font-size: 10px; color: var(--t4);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;
}
.flow-tag-brand { color: var(--saffron); border-top-color: var(--border-sp); }
.flow-link {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* Caption pill below diagram */
.flow-caption-wrap { display: flex; justify-content: center; margin-top: 28px; }
.flow-caption {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl);
  box-shadow: var(--s1);
  font-size: 14px; color: var(--navy); font-weight: 400;
  font-feature-settings: "ss01";
  max-width: 760px;
}
.flow-caption strong { font-weight: 600; }
.flow-caption-muted { color: var(--t3); font-weight: 300; }
.flow-caption-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--saffron); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(83,58,253,.14);
}

/* Numbered process steps */
.step-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 24px;
  box-shadow: var(--s1);
}
.step-n {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px; font-weight: 300; color: var(--saffron);
  letter-spacing: -0.64px; line-height: 1;
  margin-bottom: 14px;
  font-feature-settings: "tnum", "ss01";
}
.step-t {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.18px; margin-bottom: 6px;
  font-feature-settings: "ss01";
}
.step-d {
  font-size: 14px; color: var(--t3); line-height: 1.55; font-weight: 300;
  font-feature-settings: "ss01";
}

/* What-You-Get benefit cards */
.benefit-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rl); padding: 32px;
  box-shadow: var(--s2);
}
.benefit-stat {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 56px; font-weight: 300; color: var(--saffron);
  letter-spacing: -1.4px; line-height: 1;
  font-feature-settings: "tnum", "ss01";
}
.benefit-stat-l {
  font-size: 13px; color: var(--t3); margin-top: 8px;
  font-weight: 400; font-feature-settings: "ss01";
}
.benefit-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.22px; margin: 22px 0 8px;
  padding-top: 22px; border-top: 1px solid var(--border-l);
  font-feature-settings: "ss01";
}
.benefit-d {
  font-size: 14px; color: var(--t3); line-height: 1.55; font-weight: 300;
  font-feature-settings: "ss01";
}

/* BC / FLDG model cards (in dark band) */
.model-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--rl); padding: 30px;
  position: relative; z-index: 1;
}
.model-tag {
  display: inline-block; padding: 4px 10px; border-radius: var(--r);
  background: rgba(249,107,238,.12); color: var(--magenta);
  border: 1px solid rgba(249,107,238,.3);
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0;
  text-transform: uppercase; margin-bottom: 18px;
}
.model-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 24px; font-weight: 700; color: #fff;
  letter-spacing: -0.24px; margin-bottom: 12px;
  font-feature-settings: "ss01";
}
.model-d {
  font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.55;
  font-weight: 300; margin-bottom: 22px;
  font-feature-settings: "ss01";
}
.model-meta { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.model-meta-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 8px 0; gap: 18px;
}
.model-meta-l {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: rgba(255,255,255,.5);
  text-transform: uppercase; font-weight: 500; flex-shrink: 0; letter-spacing: 0;
  padding-top: 1px;
}
.model-meta-v { font-size: 13px; color: rgba(255,255,255,.85); text-align: right; line-height: 1.45; font-weight: 400; }

/* BC / FLDG step list */
.bc-step {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border-l);
  align-items: flex-start;
}
.bc-step:last-child { border-bottom: none; }
.bc-n {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--saffron-l); color: var(--saffron);
  border: 1px solid var(--border-sp);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif; font-size: 13px; font-weight: 500;
  font-feature-settings: "tnum";
}
.bc-t { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; font-feature-settings: "ss01"; letter-spacing: -0.15px; }
.bc-d { font-size: 14px; color: var(--t3); line-height: 1.55; font-weight: 300; font-feature-settings: "ss01"; }

/* "What You Get" check list inside model side panels */
.get-li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--t2); line-height: 1.5; font-weight: 300;
  font-feature-settings: "ss01";
}

/* "What we need from your side" rows */
.need-row { display: flex; flex-direction: column; gap: 4px; }
.need-h {
  font-size: 15px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.15px; font-feature-settings: "ss01";
}
.need-d { font-size: 14px; color: var(--t3); line-height: 1.5; font-weight: 300; font-feature-settings: "ss01"; }

/* Integration timeline (5 phases horizontal) */
.timeline-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 48px; position: relative; z-index: 1;
}
.tl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rl); padding: 22px;
}
.tl-n {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(249,107,238,.12); color: var(--magenta);
  border: 1px solid rgba(249,107,238,.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 500;
  font-feature-settings: "tnum"; margin-bottom: 14px;
}
.tl-week {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px; color: var(--magenta); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0; margin-bottom: 6px;
}
.tl-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; font-weight: 600; color: #fff;
  letter-spacing: -0.16px; margin-bottom: 8px;
  font-feature-settings: "ss01";
}
.tl-d {
  font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5;
  font-weight: 300; font-feature-settings: "ss01";
}

/* Capital Partners page responsive */
@media (max-width: 1024px) {
  .flow-diagram { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 8px 0; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  #problem .sec > div[style*="grid-template-columns:repeat(4"],
  #how .sec > div[style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-bad { border-right: none; border-bottom: 1px solid var(--border-l); }
}

/* ── REVEAL ──────────────────────────────────── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 84px 2rem 60px; }
  .hero-r { display: none; }
  .db-inner { grid-template-columns: 1fr; }
  .db-imgs { display: none; }
  .vps { grid-template-columns: 1fr; }
  .testi-g { grid-template-columns: 1fr 1fr; }
  .pgrid { grid-template-columns: 1fr 1fr; }
  .lfs { grid-template-columns: 1fr; }
  .fg-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .fr2 { grid-template-columns: 1fr 1fr; }
  .h-title { font-size: 48px; letter-spacing: -0.96px; }
}
@media (max-width: 720px) {
  .pgrid { grid-template-columns: 1fr; }
  .fr2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .fg-grid { grid-template-columns: 1fr; }
  .testi-g { grid-template-columns: 1fr; }
  nav { padding: 0 1.25rem; }
  .sec { padding: 60px 1.25rem; }
  .admin-main { padding: 20px 16px; }
  .h-title { font-size: 36px; letter-spacing: -0.72px; }
  .sh { font-size: 28px; letter-spacing: -0.56px; }
}
