/* ============================================================
   V2P Labs — venture studio site  ·  Operator Dark theme
   (base tokens below are overridden by the OPERATOR DARK block
   at the end of this file — that block is the source of truth
   for palette. Revert to warm peach: css/styles.peach-backup.css)
   Multi-page shell
   ============================================================ */

:root {
  /* warm surfaces */
  --bg: #fff6ee;
  --bg-2: #ffe6d2;
  --surface: #ffffff;
  --surface-2: #fff3ea;
  --cream: #fff0e2;

  --border: rgba(74, 40, 28, 0.10);
  --border-strong: rgba(74, 40, 28, 0.18);

  --text: #2e1c14;
  --text-dim: #6a5046;
  --text-mute: #a3897b;

  /* vivid peach / sunset gradient */
  --p1: #ff3d68;   /* rose-coral   */
  --p2: #ff6a3d;   /* sunset orange */
  --p3: #ffab2e;   /* apricot gold  */
  --grad: linear-gradient(105deg, var(--p1) 0%, var(--p2) 50%, var(--p3) 100%);
  --grad-vivid: linear-gradient(120deg, #ff2e6a 0%, #ff5a33 46%, #ffa61f 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,61,104,0.16), rgba(255,171,46,0.18));

  --ink: #22110d;         /* espresso — dark contrast sections */

  /* warm shadows */
  --shadow-sm: 0 8px 24px -10px rgba(220, 84, 52, 0.32);
  --shadow-md: 0 22px 50px -22px rgba(220, 84, 52, 0.44);
  --shadow-lg: 0 42px 92px -34px rgba(205, 66, 44, 0.52);

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- ambient background: sunset mesh + grain ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -4;
  background:
    radial-gradient(ellipse 70% 55% at 82% -8%, rgba(255,61,104,0.30), transparent 60%),
    radial-gradient(ellipse 80% 60% at 12% -6%, rgba(255,106,61,0.28), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 116%, rgba(255,171,46,0.22), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.bg-grid::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,40,28,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,40,28,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 100% 55% at 50% -5%, #000 25%, transparent 80%);
}
.bg-glow { position: fixed; z-index: -3; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.bg-glow--1 { width: 660px; height: 660px; top: -260px; left: -180px; opacity: 0.62;
  background: radial-gradient(circle, rgba(255,106,61,0.7), transparent 70%);
  animation: drift1 20s ease-in-out infinite alternate; }
.bg-glow--2 { width: 620px; height: 620px; top: 160px; right: -200px; opacity: 0.5;
  background: radial-gradient(circle, rgba(255,61,104,0.55), transparent 70%);
  animation: drift2 24s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(60px,50px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(-50px,40px) scale(1.08); } }
/* grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- gradient text (with shimmer) ---------- */
.grad { background: var(--grad); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1; padding: 14px 22px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s; white-space: nowrap; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--primary { background: var(--grad-vivid); color: #fff; box-shadow: 0 14px 30px -8px rgba(255,64,80,0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -8px rgba(255,64,80,0.72); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--p2); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s, box-shadow .3s; }
.nav.is-scrolled { background: rgba(255,246,238,0.8); backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--border); box-shadow: 0 6px 28px -20px rgba(205,66,44,0.6); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand__logo svg { border-radius: 8px; box-shadow: 0 8px 18px -6px rgba(255,90,51,0.7); }
.brand__mark { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__word { color: var(--text); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; color: var(--text-dim); font-weight: 500; position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--text); }
.nav__toggle { display: none; }

/* ---------- generic section ---------- */
.section { padding: 104px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, #fff1e4 0%, #ffe6d3 100%); border-top: 1px solid rgba(255,255,255,0.6); border-bottom: 1px solid var(--border); }
.section__head { max-width: 720px; margin-bottom: 52px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.05rem); line-height: 1.06; letter-spacing: -0.025em; font-weight: 700; }
.section__sub { margin-top: 18px; font-size: 1.12rem; color: var(--text-dim); max-width: 62ch; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: 150px 0 60px; }
.page-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-dim); text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.7); box-shadow: var(--shadow-sm); backdrop-filter: blur(6px); }
.page-hero__eyebrow span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.03em; font-weight: 700; margin: 22px 0 0; max-width: 18ch; }
.page-hero__lede { margin-top: 22px; max-width: 60ch; font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--text-dim); }
.page-hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- home hero ---------- */
.hero { padding: 150px 0 66px; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-dim); text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.7); box-shadow: var(--shadow-sm); backdrop-filter: blur(6px); }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--p1); box-shadow: 0 0 12px var(--p2); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 700; margin: 24px 0 0; max-width: 15ch; }
.hero__lede { margin-top: 24px; max-width: 54ch; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--text-dim); }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { margin-top: 48px; display: grid; grid-template-columns: repeat(3, auto); gap: 40px; border-top: 1px solid var(--border); padding-top: 30px; width: fit-content; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: 13px; color: var(--text-mute); max-width: 12ch; }

/* ---------- hero visual: studio console ---------- */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 440px; }
.hero__visual::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,61,0.35), transparent 70%); filter: blur(50px); }
.orbit { position: absolute; border-radius: 50%; border: 1px solid var(--border); pointer-events: none; }
.orbit--1 { width: 420px; height: 420px; border-color: rgba(255,106,61,0.35); animation: spin 40s linear infinite; }
.orbit--2 { width: 560px; height: 560px; border-color: rgba(255,61,104,0.22); animation: spin 60s linear infinite reverse; }
.orbit--1::before, .orbit--2::before { content: ""; position: absolute; top: -4px; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--p2); box-shadow: 0 0 16px var(--p2); }
.orbit--2::before { background: var(--p1); box-shadow: 0 0 16px var(--p1); }
@keyframes spin { to { transform: rotate(360deg); } }
.console { position: relative; z-index: 2; width: 100%; max-width: 400px; background: var(--surface);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; padding: 16px; box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.console__bar { display: flex; align-items: center; gap: 10px; padding: 4px 6px 14px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.console__dots { display: inline-flex; gap: 5px; }
.console__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.console__dots i:first-child { background: #ff5f57; } .console__dots i:nth-child(2) { background: #febc2e; } .console__dots i:nth-child(3) { background: #28c840; }
.console__title { font-size: 12.5px; color: var(--text-dim); font-weight: 500; }
.console__live { margin-left: auto; font-size: 11px; color: #16a34a; font-weight: 600; }
.console__row { display: flex; align-items: center; gap: 12px; padding: 11px 8px; border-radius: 12px; transition: background .25s; }
.console__row:hover { background: var(--surface-2); }
.console__row--hot { background: linear-gradient(90deg, rgba(255,106,61,0.16), transparent); }
.console__name { display: flex; flex-direction: column; font-weight: 600; font-size: 14.5px; line-height: 1.25; }
.console__name em { font-style: normal; font-size: 11.5px; color: var(--text-mute); font-weight: 500; }
.pill { margin-left: auto; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-dim); }
.pill--live { color: #16a34a; border-color: rgba(22,163,74,0.4); background: rgba(22,163,74,0.08); }
.pill--build { color: #dc7a06; border-color: rgba(220,122,6,0.35); }
.pill--spec { color: #e0426a; border-color: rgba(224,66,106,0.4); }
.chip { position: absolute; z-index: 3; font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border-strong); box-shadow: var(--shadow-md); }
.chip--a { top: 40px; right: 4px; color: var(--p1); animation: floaty 5s ease-in-out infinite; }
.chip--b { bottom: 46px; left: 0; color: var(--p2); animation: floaty 7s ease-in-out infinite; }

/* ---------- monograms ---------- */
.mono { width: 38px; height: 38px; min-width: 38px; border-radius: 11px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 6px 14px -6px rgba(220,84,52,0.6); }
.mono--lg { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; font-size: 24px; }
.mono--roistr  { background: linear-gradient(135deg, #ff6a3d, #ffab2e); }
.mono--finlace { background: linear-gradient(135deg, #ff8a2e, #ffc73d); }
.mono--wick    { background: linear-gradient(135deg, #ff3d68, #ff7a45); }
.mono--doc     { background: linear-gradient(135deg, #f24d94, #ff6a3d); }
.mono--pos     { background: linear-gradient(135deg, #ff4557, #ff8a2e); }

/* ---------- verticals strip ---------- */
.verticals { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.verticals__inner { display: flex; align-items: center; gap: 26px; padding: 22px 24px; flex-wrap: wrap; }
.verticals__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); font-weight: 600; }
.vtag { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--text-dim); }

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

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; box-shadow: var(--shadow-sm); }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); pointer-events: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255,106,61,0.35); }
.card__icon { font-size: 26px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--grad); color: #fff; margin-bottom: 20px; box-shadow: 0 12px 26px -10px rgba(255,90,51,0.75); }
.card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--text-dim); font-size: 0.98rem; }

/* ---------- bento products ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.product:hover { transform: translateY(-6px); border-color: rgba(255,106,61,0.35); box-shadow: var(--shadow-md); }
.product__glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; filter: blur(64px); top: -120px; right: -100px; opacity: 0.7; pointer-events: none; }
.product--feature { padding: 34px; justify-content: flex-start; }
.bento .product--feature { grid-column: span 2; grid-row: span 2; }
.product--feature .product__glow { background: radial-gradient(circle, rgba(255,171,46,0.6), transparent 70%); }
.product--feature .product__name { font-size: 2.1rem; }
.product--feature .product__tagline { font-size: 1.14rem; }
.product--feature .product__desc { font-size: 1.02rem; max-width: 48ch; }
.product--live .product__glow { background: radial-gradient(circle, rgba(255,61,104,0.5), transparent 70%); }
.product--live { border-color: rgba(255,61,104,0.3); }
.product--doc .product__glow { background: radial-gradient(circle, rgba(242,77,148,0.45), transparent 70%); }
.product--doc { border-color: rgba(242,77,148,0.28); }
.product--cta-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; margin-top: 20px; }
.product--cta-row .product__desc { flex-grow: 0; }
.product__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; border: 1px solid var(--border-strong); width: fit-content; color: var(--text-dim); }
.tag--proptech { color: #dc7a06; } .tag--fintech { color: #d1410c; } .tag--doc { color: #cf3f82; } .tag--govtech { color: #dc3c3c; }
.status { font-size: 11.5px; font-weight: 600; color: var(--text-mute); display: inline-flex; align-items: center; gap: 6px; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status--live { color: #16a34a; } .status--build { color: #dc7a06; } .status--spec { color: #e0426a; }
.product__name { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: -0.02em; margin-top: 2px; }
.product__tagline { font-weight: 600; color: var(--text); font-size: 1rem; }
.product__desc { color: var(--text-dim); font-size: 0.95rem; flex-grow: 1; }
.product__meta { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-mute); }
.product--cta { background: var(--grad-soft); border-color: var(--border-strong); justify-content: center; align-items: flex-start; gap: 14px; }
.product--cta .product__name { font-size: 1.3rem; }

/* ---------- product detail rows (products page) ---------- */
.prow { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 40px 0; border-top: 1px solid var(--border); align-items: start; }
.prow:first-of-type { border-top: 0; }
.prow__side { display: flex; flex-direction: column; gap: 14px; }
.prow__badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.prow__name { font-family: var(--font-display); font-size: 2rem; letter-spacing: -0.02em; }
.prow__tagline { font-weight: 600; color: var(--text-dim); }
.prow__body h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin: 0 0 6px; }
.prow__body p { color: var(--text-dim); margin-bottom: 20px; max-width: 60ch; }
.prow__facts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 4px; }
.prow__fact { font-size: 13px; }
.prow__fact strong { display: block; color: var(--text); font-family: var(--font-display); }
.prow__fact span { color: var(--text-mute); }

/* ---------- advisory ---------- */
.advisory { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: start; }
.advisory__intro .btn { margin-top: 30px; }
.advisory__note { margin-top: 18px; font-size: 14px; color: var(--text-mute); }
.advisory__note a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.advisory__list { display: flex; flex-direction: column; gap: 8px; }
.advisory-item { display: flex; gap: 22px; padding: 24px; border-radius: var(--radius-sm); border: 1px solid transparent; transition: background .3s, border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.advisory-item:hover { background: var(--surface); border-color: var(--border); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.advisory-item__num { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; min-width: 28px; }
.advisory-item h3 { font-size: 1.18rem; margin-bottom: 6px; font-family: var(--font-display); font-weight: 600; }
.advisory-item p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- engagement / steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { position: relative; padding: 28px 28px 28px 78px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 26px; top: 26px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- mini (approach) ---------- */
.mini { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; position: relative; overflow: hidden; }
.mini::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini:hover::before { transform: scaleX(1); }
.mini__k { font-family: var(--font-display); font-size: 0.9rem; color: var(--p1); font-weight: 700; }
.mini h4 { font-size: 1.12rem; margin: 12px 0 8px; font-family: var(--font-display); }
.mini p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.member { display: flex; gap: 20px; padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member__avatar { width: 60px; height: 60px; min-width: 60px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; box-shadow: 0 12px 26px -10px rgba(255,90,51,0.75); }
.member h3 { font-family: var(--font-display); font-size: 1.3rem; }
.member__role { color: var(--p1); font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.member p { color: var(--text-dim); font-size: 0.94rem; }
.member__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: var(--p1); }
.member__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.member__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* ---------- founder logo strip ---------- */
.logos { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--border); }
.logos__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); font-weight: 600; text-align: center; margin-bottom: 20px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 42px; }
.logos__row span { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.01em; color: var(--text-mute); opacity: 0.72; transition: color .2s, opacity .2s; }
.logos__row span:hover { color: var(--text); opacity: 1; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { display: block; padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--p2); }
.contact-card__icon { font-size: 22px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--grad); color: #fff; margin-bottom: 16px; box-shadow: 0 10px 22px -10px rgba(255,90,51,0.7); }
.contact-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.contact-card p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 12px; }
.contact-card__link { font-weight: 600; color: var(--p1); font-size: 0.95rem; }

/* ---------- cta (vivid gradient band) ---------- */
.cta { padding: 116px 0; position: relative; }
.cta__inner { text-align: center; max-width: 820px; padding: 66px 44px; border-radius: 30px; color: #fff; position: relative; overflow: hidden;
  background: var(--grad-vivid); box-shadow: var(--shadow-lg); }
.cta__inner::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(ellipse 60% 100% at 15% 0%, rgba(255,255,255,0.28), transparent 55%),
  radial-gradient(ellipse 50% 90% at 100% 100%, rgba(255,46,106,0.4), transparent 60%);
  pointer-events: none; }
.cta__inner > * { position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.025em; line-height: 1.08; }
.cta p { margin: 20px auto 0; color: rgba(255,255,255,0.92); font-size: 1.12rem; max-width: 54ch; }
.cta__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--primary { background: #fff; color: var(--p1); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.3); }
.cta .btn--primary:hover { background: #fff; box-shadow: 0 20px 42px -10px rgba(0,0,0,0.4); }
.cta .btn--ghost { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.45); box-shadow: none; }
.cta .btn--ghost:hover { background: rgba(255,255,255,0.24); border-color: #fff; }

/* ---------- footer (dark espresso) ---------- */
.footer { border-top: 0; padding: 72px 0 32px; background: var(--ink); color: #f7e9e1; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; }
.footer .brand__word { color: #fff; }
.footer__brand p { margin-top: 16px; color: rgba(247,233,225,0.55); font-size: 0.95rem; max-width: 42ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247,233,225,0.45); margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(247,233,225,0.75); font-size: 0.95rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #ff9a6b; }
.footer__base { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(247,233,225,0.12); display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: rgba(247,233,225,0.5); flex-wrap: wrap; gap: 12px; }
.footer__made { color: #ff9a6b; font-weight: 500; }

/* ---------- nav dropdown ---------- */
.nav__dd { position: relative; display: inline-flex; align-items: center; }
.nav__caret { font-style: normal; font-size: 9px; margin-left: 6px; transition: transform .2s var(--ease); display: inline-block; }
.nav__dd:hover .nav__caret, .nav__dd:focus-within .nav__caret { transform: rotate(180deg); }
.nav__menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s var(--ease); }
.nav__dd:hover .nav__menu, .nav__dd:focus-within .nav__menu { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__menu-inner { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; min-width: 256px; display: flex; flex-direction: column; gap: 2px; }
.nav__menu a { display: flex; flex-direction: column; gap: 2px; padding: 11px 13px; border-radius: 11px; color: var(--text); font-size: 15px; font-weight: 600; transition: background .2s; }
.nav__menu a::after { display: none; }
.nav__menu a:hover { background: var(--surface-2); color: var(--text); }
.nav__menu a em { font-style: normal; font-size: 12px; color: var(--text-mute); font-weight: 500; }
.nav__menu-all { color: var(--p1) !important; font-size: 14px !important; margin-top: 4px; border-top: 1px solid var(--border); border-radius: 0 0 11px 11px; }

/* ---------- persona cards (product page) ---------- */
.persona { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.persona:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.persona__tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--p1); }
.persona__role { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.persona__block h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 5px; }
.persona__block p { color: var(--text-dim); font-size: 0.95rem; }
.persona__block + .persona__block { margin-top: 4px; }
.persona__use { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text); font-weight: 600; }
.persona__use span { color: var(--p1); }

/* ---------- inline product link ---------- */
.product__link { color: var(--p1); font-weight: 600; font-size: 0.95rem; margin-top: 2px; align-self: flex-start; }
.product__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- byo pill row ---------- */
.byo { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.byo span { font-size: 13px; font-weight: 600; color: var(--text-dim); padding: 7px 14px; border: 1px solid var(--border-strong); border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-sm); }
.byo b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- app-UI mockups (DocQuill) ---------- */
.appwin { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.appwin__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.appwin__dots { display: inline-flex; gap: 5px; }
.appwin__dots i { width: 9px; height: 9px; border-radius: 50%; }
.appwin__dots i:nth-child(1){ background:#ff5f57; } .appwin__dots i:nth-child(2){ background:#febc2e; } .appwin__dots i:nth-child(3){ background:#28c840; }
.appwin__url { margin-left: 6px; font-size: 12px; color: var(--text-mute); background: var(--bg); border: 1px solid var(--border); border-radius: 7px; padding: 4px 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.appwin__body { display: grid; grid-template-columns: 156px 1fr; min-height: 300px; }
.appwin__side { border-right: 1px solid var(--border); padding: 12px 10px; display: flex; flex-direction: column; gap: 3px; background: var(--surface-2); }
.appwin__nav { font-size: 12.5px; color: var(--text-dim); padding: 8px 10px; border-radius: 9px; font-weight: 500; }
.appwin__nav.is-on { background: #4f46e5; color: #fff; font-weight: 600; box-shadow: 0 6px 14px -6px rgba(79,70,229,.5); }
.appwin__main { padding: 16px 18px; }
.appwin__h { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.appwin__h em { font-style: normal; font-size: 11px; font-weight: 700; color: #fff; background: #4f46e5; padding: 4px 10px; border-radius: 999px; }
.subrow { display: flex; align-items: center; gap: 12px; padding: 10px 2px; border-top: 1px solid var(--border); }
.subrow:first-of-type { border-top: 0; }
.subrow__t { display: flex; flex-direction: column; gap: 1px; }
.subrow__t b { font-size: 13px; font-weight: 600; }
.subrow__t span { font-size: 11px; color: var(--text-mute); }
.spill { margin-left: auto; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; white-space: nowrap; border: 1px solid transparent; }
/* real app state colors (from AdminModule.tsx status map) */
.spill--done { color:#047857; background:#ecfdf5; border-color:#a7f3d0; }   /* completed / signed → emerald */
.spill--prog { color:#4338ca; background:#eef2ff; border-color:#c7d2fe; }   /* in_progress → indigo */
.spill--pend { color:#b45309; background:#fffbeb; border-color:#fde68a; }   /* pending → amber */
.spill--exp  { color:#4b5563; background:#f3f4f6; border-color:#e5e7eb; }   /* expired / voided → gray */
.spill--red  { color:#b91c1c; background:#fef2f2; border-color:#fecaca; }   /* declined / COI lapsed → red */

/* field editor mockup */
.fieldbar { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.fieldbar span { font-size:11px; font-weight:600; padding:5px 10px; border:1px solid var(--border); border-radius:8px; color:var(--text-dim); background:var(--surface-2); }
.fieldbar span:first-child { color:#4338ca; background:#eef2ff; border-color:#c7d2fe; }
.docpage { position:relative; background:#fafafa; border:1px solid var(--border); border-radius:8px; height:186px; padding:16px; overflow:hidden; }
.docpage__line { height:7px; background:rgba(60,40,28,.09); border-radius:4px; margin-bottom:10px; }
.docpage__line.sh { width:58%; } .docpage__line.md { width:78%; }
.fieldbox { position:absolute; font-size:10px; font-weight:600; padding:7px 9px; border-radius:6px; border:1.5px dashed; white-space:nowrap; }
.fieldbox--s1 { border-color:#6366f1; background:rgba(99,102,241,.12); color:#4338ca; }
.fieldbox--s2 { border-color:#dc2626; background:rgba(220,38,38,.09); color:#b91c1c; }
.fieldlegend { display:flex; gap:16px; margin-top:12px; font-size:11.5px; color:var(--text-mute); }
.fieldlegend b { font-weight:600; }
.fieldlegend i { font-style:normal; display:inline-block; width:9px; height:9px; border-radius:3px; margin-right:5px; vertical-align:middle; }
.fieldlegend .s1 { background:#6366f1; } .fieldlegend .s2 { background:#dc2626; }

.coigrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.coicard { border: 1px solid var(--border); border-radius: 12px; padding: 14px 10px; text-align: center; background: var(--surface); }
.coicard b { font-family: var(--font-display); font-size: 1.7rem; display: block; line-height: 1; }
.coicard span { font-size: 10.5px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .05em; }
.coicard--exp b{ color:#dc2626; } .coicard--crit b{ color:#ea580c; } .coicard--soon b{ color:#ca8a04; } .coicard--cur b{ color:#16a34a; }

.redline { font-size: 13.5px; line-height: 1.75; color: var(--text-dim); }
.redline mark { background: rgb(254 243 199); border-bottom: 2px solid rgb(252 211 77); color: var(--text); padding: 1px 2px; border-radius: 2px; }  /* amber-100 / amber-300 — exact from ProposalHighlight.css */
.redline__acts { display: flex; gap: 8px; margin-top: 14px; }
.redline__acts b { font-size: 11.5px; font-weight: 600; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-dim); }
.redline__acts .is-accept { color:#16a34a; border-color:rgba(22,163,74,.4); }
.redline__acts .is-reject { color:#dc2626; border-color:rgba(220,38,38,.35); }

.cmp__q { font-size: 13px; font-weight: 600; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px 12px 12px 3px; padding: 11px 14px; }
.cmp__a { font-size: 13px; color: var(--text-dim); padding: 12px 4px 0; }
.cmp__cite { margin-top: 10px; font-size: 11px; color: #4338ca; background: #eef2ff; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; border: 1px solid #c7d2fe; border-radius: 999px; padding: 5px 11px; }  /* workspace citation = indigo, per CITATION_STYLE */

/* module cards with status */
.mod { position: relative; }
.mod__status { position: absolute; top: 22px; right: 22px; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.mod__status::before { content:""; width:7px; height:7px; border-radius:50%; background: currentColor; }
.mod__status--live { color:#16a34a; } .mod__status--build { color:#d97706; }
.mod__pillar { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- dark band (mid-page rhythm) ---------- */
.band { background: var(--ink); color: #f8ece4; padding: 100px 0; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; top: -200px; right: -120px; background: radial-gradient(circle, rgba(255,106,61,0.38), transparent 70%); filter: blur(90px); pointer-events: none; }
.band::after { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; bottom: -220px; left: -120px; background: radial-gradient(circle, rgba(255,61,104,0.30), transparent 70%); filter: blur(90px); pointer-events: none; }
.band > .container { position: relative; z-index: 1; }
.band__head { max-width: 760px; margin-bottom: 46px; }
.band__title { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; color: #fff; }
.band__title .grad { -webkit-text-fill-color: transparent; }
.band__sub { margin-top: 16px; color: rgba(248,236,228,0.62); font-size: 1.12rem; max-width: 62ch; }
.band__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 36px; }
.band__stat { display: flex; flex-direction: column; gap: 8px; }
.band__stat b { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.9rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.band__stat span { color: rgba(248,236,228,0.55); font-size: 0.95rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { min-height: 400px; order: 2; }
  .hero__title { max-width: 20ch; }
  .advisory { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 940px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .product--feature { grid-column: span 2; grid-row: auto; }
  .grid--2 { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .band__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .product--cta-row { flex-direction: column; align-items: flex-start; }
  .prow { grid-template-columns: 1fr; gap: 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .nav__links, .nav__cta { display: none; }
  .nav__links.is-open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: rgba(255,246,238,0.98); backdrop-filter: blur(16px); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav__toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { transform: translateY(0) rotate(-45deg); }
  .nav__links.is-open .nav__dd { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav__links.is-open .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; padding-top: 8px; pointer-events: auto; }
  .nav__links.is-open .nav__menu-inner { box-shadow: none; border: none; background: transparent; padding: 0 0 0 14px; min-width: 0; }
  .nav__links.is-open .nav__menu a { padding: 8px 0; }
  .appwin__body { grid-template-columns: 1fr; }
  .appwin__side { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--border); }
  .appwin__nav { white-space: nowrap; }
  .coigrid { grid-template-columns: repeat(2, 1fr); }
  .hero, .page-hero { padding: 120px 0 50px; }
  .hero__stats { grid-template-columns: repeat(3, auto); gap: 22px; }
  .hero__visual { min-height: 360px; }
  .orbit--2 { display: none; }
  .grid--2, .grid--3, .grid--4, .bento { grid-template-columns: 1fr; }
  .product--feature { grid-column: auto; }
  .section { padding: 72px 0; }
  .cta__inner { padding: 44px 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orbit, .console, .chip, .bg-glow--1, .bg-glow--2, .grad { animation: none; }
}

/* =========================================================
   OPERATOR DARK — site-wide theme.
   Near-black ground, warm-ivory text, ONE disciplined coral
   accent used deliberately. Reads as a serious operator studio,
   not a consumer brand. Product-UI mockups stay LIGHT so they
   read as real product screenshots on the dark canvas.
   (Revert: css/styles.peach-backup.css)
   ========================================================= */
:root {
  /* dark, faintly warm surfaces */
  --bg:        #0E0D12;
  --bg-2:      #131019;
  --surface:   #17141E;
  --surface-2: #201C2A;
  --cream:     #201C2A;

  --border:        rgba(255,240,232,0.10);
  --border-strong: rgba(255,240,232,0.20);

  --text:     #F4EEE9;   /* warm ivory */
  --text-dim: #B7ADA6;
  --text-mute:#867B74;

  /* one warm accent — coral, tightened from a 3-stop rainbow to 2 stops */
  --p1: #FF5A4D;
  --p2: #FF7A45;
  --p3: #FFA24A;
  --grad:       linear-gradient(100deg, #FF5A4D 0%, #FF854A 100%);
  --grad-vivid: linear-gradient(118deg, #FF4D5C 0%, #FF6A3A 100%);
  --grad-soft:  linear-gradient(135deg, rgba(255,90,77,0.16), rgba(255,150,74,0.10));

  --ink: #0A0810;        /* darkest — the proof band */

  --shadow-sm: 0 10px 26px -14px rgba(0,0,0,0.65);
  --shadow-md: 0 24px 54px -26px rgba(0,0,0,0.72);
  --shadow-lg: 0 46px 96px -38px rgba(0,0,0,0.82);
}

/* ambient: dark canvas with a subtle warm coral aura + faint light grid */
.bg-grid {
  background:
    radial-gradient(ellipse 70% 55% at 84% -8%, rgba(255,90,77,0.16), transparent 60%),
    radial-gradient(ellipse 80% 60% at 8% -6%, rgba(255,122,69,0.12), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 118%, rgba(255,162,74,0.07), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.bg-grid::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
}
.bg-glow--1 { background: radial-gradient(circle, rgba(255,106,61,0.42), transparent 70%); opacity: 0.40; }
.bg-glow--2 { background: radial-gradient(circle, rgba(255,74,92,0.34), transparent 70%); opacity: 0.34; }
body::before { opacity: 0.04; }

/* chrome that assumed a light ground */
.nav.is-scrolled { background: rgba(12,11,16,0.72); border-bottom-color: var(--border); box-shadow: 0 8px 30px -20px #000; }
.brand__word, .footer .brand__word { color: var(--text); }
.hero__eyebrow, .page-hero__eyebrow { background: rgba(255,255,255,0.04); border-color: var(--border); }
.verticals { background: rgba(255,255,255,0.02); }
.section--alt { background: linear-gradient(180deg, var(--bg-2), #0F0D14); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.card::after { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.console { border-color: var(--border-strong); }
.nav__menu-inner { background: var(--surface); }
.chip { background: var(--surface); border-color: var(--border-strong); }
.kicker { background: none; color: var(--p1); -webkit-text-fill-color: var(--p1); }
.footer__made, .footer__col a:hover { color: var(--p2); }
.card:hover, .product:hover, .contact-card:hover { border-color: rgba(255,90,77,0.38); }
@media (max-width: 680px) {
  .nav__links.is-open { background: rgba(12,11,16,0.97); border-bottom-color: var(--border); }
}

/* lift small semantic accents so they read cleanly on near-black
   (these sit on DARK surfaces — the light-tinted .spill* pills stay
   inside .appwin and are untouched) */
.status--live, .console__live { color: #34D399; }
.status--build { color: #FBBF24; }
.status--spec  { color: #FF7A9C; }
.pill--live { color: #34D399; border-color: rgba(52,211,153,0.40); background: rgba(52,211,153,0.10); }
.tag--fintech { color: #FF7A45; }
.tag--doc     { color: #FF74A6; }
.tag--proptech{ color: #FFA24A; }
.tag--govtech { color: #FF6A6A; }
.member__role, .persona__tag, .persona__use span, .contact-card__link,
.product__link, .mini__k { color: var(--p2); }

/* the proof band keeps its emphasis via a warm coral aura */
.band::before { background: radial-gradient(circle, rgba(255,106,61,0.34), transparent 70%); }
.band::after  { background: radial-gradient(circle, rgba(255,74,92,0.26), transparent 70%); }
.band__stat b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* product-UI mockups stay LIGHT (they depict the real product on the dark page) */
.appwin {
  --surface: #ffffff; --surface-2: #F6F7FB; --bg: #F1F3F8; --cream: #F6F7FB;
  --border: rgba(23,26,38,0.10); --border-strong: rgba(23,26,38,0.16);
  --text: #171A26; --text-dim: #565D75; --text-mute: #8A90A6;
  background: #ffffff; color: #171A26;
}

/* =========================================================
   Demo page — capture form
   ========================================================= */
.demo-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: start; }
.demo-why { display: flex; flex-direction: column; gap: 22px; }

.demo-picks { display: flex; gap: 10px; flex-wrap: wrap; }
.demo-pick { display: inline-flex; align-items: center; gap: 11px; padding: 11px 15px 11px 11px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border); cursor: pointer; color: var(--text);
  transition: border-color .2s, background .2s, transform .2s var(--ease); text-align: left; }
.demo-pick:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.demo-pick.is-on { border-color: var(--p1); background: var(--grad-soft); box-shadow: var(--shadow-sm); }
.demo-pick span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.demo-pick b { font-size: 14px; font-weight: 700; }
.demo-pick em { font-style: normal; font-size: 11.5px; color: var(--text-mute); }
.demo-pick .mono { width: 34px; height: 34px; min-width: 34px; font-size: 15px; border-radius: 10px; }

.demo-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 4px 0 0; padding: 0; }
.demo-list li { display: flex; flex-direction: column; gap: 2px; padding-left: 30px; position: relative; }
.demo-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; background: var(--grad); }
.demo-list b { font-size: 15px; font-weight: 600; }
.demo-list span { font-size: 13.5px; color: var(--text-dim); }

.demo-proof { margin-top: 6px; padding: 16px 18px; border-radius: 14px; background: var(--surface);
  border: 1px solid var(--border); border-left: 3px solid var(--p1); font-size: 13.5px; color: var(--text-dim); }
.demo-proof b { color: var(--text); }

.demo-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: 22px;
  padding: 30px; box-shadow: var(--shadow-md); }
.demo-form { display: flex; flex-direction: column; gap: 16px; }
.formfield { display: flex; flex-direction: column; gap: 7px; }
.formfield label { font-size: 12.5px; font-weight: 600; color: var(--text-dim); letter-spacing: .01em; }
.formfield label .opt { color: var(--text-mute); font-weight: 500; }
.formfield input, .formfield select, .formfield textarea {
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 12px; padding: 12px 14px;
  width: 100%; transition: border-color .2s, box-shadow .2s; outline: none; }
.formfield textarea { resize: vertical; min-height: 76px; }
.formfield input::placeholder, .formfield textarea::placeholder { color: var(--text-mute); }
.formfield input:focus, .formfield select:focus, .formfield textarea:focus {
  border-color: var(--p1); box-shadow: 0 0 0 3px rgba(255,90,77,0.18); }
.formfield select { appearance: none; -webkit-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' fill='none' stroke='%23867B74' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.demo-submit { width: 100%; margin-top: 4px; }
.demo-alt { font-size: 13px; color: var(--text-dim); text-align: center; margin-top: 2px; }
.demo-alt a { color: var(--p2); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.form-note { font-size: 12px; color: var(--text-mute); text-align: center; }

.form-success { text-align: center; padding: 20px 10px; }
.form-success__mark { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  font-size: 26px; font-weight: 800; color: #fff; background: var(--grad); box-shadow: 0 14px 30px -10px rgba(255,90,77,0.6); }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-dim); font-size: 0.96rem; max-width: 42ch; margin: 0 auto; }
.form-success a { color: var(--p2); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 940px) {
  .demo-grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-card { order: -1; }
}
