/* ============================================================
   Vendoora — Design System v2
   Black & white. Green & yellow as text. Minimal, editorial.
   ============================================================ */

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --white: #ffffff;
  --off: #f6f6f4;
  --ink: #0a0a0a;
  --grey-700: #3f3f3f;
  --grey-500: #6b6b6b;
  --grey-400: #9a9a9a;
  --line: rgba(10,10,10,.14);
  --line-strong: rgba(10,10,10,.85);
  --line-dark: rgba(255,255,255,.18);
  /* accent text colours */
  --green: #15803d;          /* on white */
  --green-bright: #4ade80;   /* on black */
  --yellow: #a16207;         /* on white */
  --yellow-bright: #facc15;  /* on black */
  /* legacy var aliases (used inline across pages) */
  --navy-900: #0a0a0a;
  --slate-600: #3f3f3f;
  --slate-500: #6b6b6b;
  --slate-400: #9a9a9a;
  --slate-200: #e4e4e0;
  --slate-100: #efefec;
  --slate-50: #f6f6f4;
  --violet: #15803d;
  --violet-deep: #15803d;
  --cyan: #facc15;
  --amber: #a16207;
  --accent-grad: linear-gradient(90deg, #15803d, #a16207);
  --accent-grad-soft: #f6f6f4;
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --shadow-card: none;
  --shadow-card-hover: none;
  --shadow-cta: none;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --max-w: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--grey-700); max-width: 46em; }
.muted { color: var(--grey-500); }
.small { font-size: .82rem; }
.fineprint { font-size: .76rem; color: var(--grey-500); line-height: 1.6; font-family: var(--font-body); }

/* Keyword tooltip — dotted underline, popup on hover */
.tip {
  position: relative; cursor: help; font-weight: 600;
  border-bottom: 2px dotted var(--green);
}
.tip::before {
  content: ""; position: absolute; bottom: calc(100% + 4px); left: 24px;
  border: 7px solid transparent; border-top-color: var(--black);
  opacity: 0; transition: opacity .18s ease; pointer-events: none;
}
.tip::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 17px); left: 0;
  width: min(300px, 70vw);
  background: var(--black); color: #e5e5e5;
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 400; line-height: 1.5;
  opacity: 0; transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none; z-index: 50;
}
.tip:hover::after, .tip:hover::before { opacity: 1; transform: none; }

/* Bar chart — animated growth */
.bar { transform: scaleY(0); transform-origin: bottom; transform-box: fill-box; transition: transform 1.1s cubic-bezier(.2,.7,.25,1); }
.in .bar:nth-of-type(1) { transition-delay: .2s; }
.in .bar:nth-of-type(2) { transition-delay: .45s; }
.in .bar:nth-of-type(3) { transition-delay: .7s; }
.in .bar { transform: scaleY(1); }
.bar-label { opacity: 0; transition: opacity .5s ease 1.5s; }
.in .bar-label { opacity: 1; }
.cagr-badge {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  color: var(--yellow-bright); border: 1px solid rgba(250,204,21,.45);
  padding: 7px 14px; border-radius: 4px; white-space: nowrap;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 9vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 70px) 0; }

/* Eyebrow — mono section label, numbered feel */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
  background: none; border: 0; padding: 0; border-radius: 0;
  margin-bottom: 20px;
}
.eyebrow::before { content: "//"; color: var(--yellow); font-weight: 600; width: auto; height: auto; border-radius: 0; background: none; }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* Dark sections */
.dark { background: var(--black); color: #d4d4d4; position: relative; overflow: hidden; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.dark .lead { color: #a3a3a3; }
.dark .eyebrow { color: var(--green-bright); }
.dark .eyebrow::before { color: var(--yellow-bright); }
.dark .fineprint { color: #8a8a8a; }
.soft { background: var(--off); }

/* Grid line background */
.mesh::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
}
.mesh > .container { position: relative; z-index: 1; }

/* Logo */
.logo-img { height: 26px; width: auto; }
.logo-invert { filter: brightness(0) invert(1); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 4px; border: 1px solid var(--black);
  font-weight: 600; font-size: .88rem; font-family: var(--font-mono);
  letter-spacing: .02em;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--black); color: var(--yellow-bright); }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); }
.dark .btn-primary { border-color: rgba(255,255,255,.4); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { color: var(--green); border-color: var(--green); }
.dark .btn-ghost { color: #fff; border-color: var(--line-dark); }
.dark .btn-ghost:hover { color: var(--yellow-bright); border-color: var(--yellow-bright); }
.btn-dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn-dark:hover { color: var(--yellow-bright); }
.btn-sm { padding: 9px 18px; font-size: .78rem; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.text-link { font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--ink); }
.dark .text-link { color: var(--green-bright); }

/* ============ Navbar — minimal bar + full-screen menu ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; position: relative; z-index: 102; }
.nav-cta { display: flex; align-items: center; gap: 18px; position: relative; z-index: 102; }
.nav-cta .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.nav-cta .btn-primary:hover { color: var(--green); transform: none; }
.nav-toggle {
  display: flex; align-items: center; gap: 10px;
  background: none; border: 0; padding: 10px 0; color: #fff;
}
.nav-toggle em {
  font-style: normal; font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: #a3a3a3; transition: color .15s;
}
.nav-toggle:hover em { color: var(--yellow-bright); }
.nav-toggle .bars { display: flex; flex-direction: column; gap: 7px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; transition: transform .25s ease; }
.nav-toggle.x span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.x span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
@media (max-width: 560px) { .nav-apply { display: none; } }

/* Full-screen overlay menu (all viewports) */
.menu-overlay {
  position: fixed; inset: 0; z-index: 101;
  background: var(--black);
  padding-top: 64px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  overflow-y: auto;
}
.menu-overlay::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.menu-overlay.open { opacity: 1; visibility: visible; transform: none; }
.menu-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: clamp(40px, 7vh, 80px) 0 40px; position: relative;
}
@media (max-width: 720px) { .menu-cols { grid-template-columns: 1fr; gap: 28px; } }
.menu-col h5 {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green-bright); margin: 0 0 18px;
}
.menu-col a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: #fff;
  padding: 12px 0; border-bottom: 1px solid var(--line-dark);
  transition: color .15s, padding-left .2s;
}
.menu-col a i {
  font-style: normal; font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  color: var(--grey-500); letter-spacing: .1em;
}
.menu-col a:hover { color: var(--yellow-bright); padding-left: 10px; }
.menu-col a.active { color: var(--green-bright); }
.menu-foot {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  padding: 28px 0 48px; position: relative;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-500);
}
.menu-foot .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.menu-foot .btn-primary:hover { color: var(--green); }

/* ============ Hero ============ */
.hero { padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 100px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad { background: none; -webkit-background-clip: unset; background-clip: unset; color: var(--green-bright); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 0 0 18px; list-style: none; }
.trust-strip li { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .78rem; font-weight: 500; color: #a3a3a3; }
.trust-strip .tick { color: var(--green-bright); font-weight: 700; }

/* Hero dashboard visual */
.dash {
  background: var(--near-black);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: none;
}
.dash-head { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.dash-head i { width: 9px; height: 9px; border-radius: 50%; background: #2e2e2e; }
.dash-head i:nth-child(1){ background:#3f3f3f } .dash-head i:nth-child(2){ background:#facc15 } .dash-head i:nth-child(3){ background:#4ade80 }
.dash-head span { margin-left: 10px; font-size: .72rem; color: #737373; font-family: var(--font-mono); }
.flow { display: flex; flex-direction: column; gap: 10px; }
.flow-step {
  display: flex; align-items: center; gap: 14px;
  background: transparent; border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm); padding: 12px 16px;
}
.flow-step .fi {
  width: 36px; height: 36px; flex: none; border-radius: 4px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line-dark); color: var(--green-bright);
  font-size: .95rem; font-family: var(--font-mono); font-weight: 600;
}
.flow-step b { display: block; color: #f5f5f5; font-size: .85rem; font-weight: 600; }
.flow-step small { color: #8a8a8a; font-size: .73rem; font-family: var(--font-mono); }
.flow-arrow { text-align: center; color: var(--yellow-bright); font-size: .9rem; line-height: .6; }
.flow-step.fee { border-color: rgba(250,204,21,.5); }
.flow-step.fee .fi { background: transparent; border-color: rgba(250,204,21,.5); color: var(--yellow-bright); }
.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* ============ Cards ============ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: none;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: none; }
.card .icon {
  width: 44px; height: 44px; border-radius: 4px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line);
  font-size: 1.15rem; margin-bottom: 18px; color: var(--green);
}
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; color: var(--grey-700); font-size: .93rem; }
.card.warn .icon { background: none; border-color: var(--line); color: var(--yellow); }
.dark .card { background: transparent; border-color: var(--line-dark); }
.dark .card:hover { border-color: rgba(255,255,255,.5); }
.dark .card p:last-child { color: #a3a3a3; }
.dark .card .icon { border-color: var(--line-dark); color: var(--green-bright); }

/* Stat cards */
.stat-card { border-top: 2px solid var(--green-bright); border-image: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.stat-card .stat-k { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; display: block; color: var(--ink); }
.dark .stat-card .stat-k { color: #fff; }

/* ============ Steps ============ */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: none;
  transition: border-color .2s ease;
}
.step:hover { border-color: var(--line-strong); }
.step .num {
  counter-increment: step;
  width: 52px; height: 52px; border-radius: 4px; display: grid; place-items: center;
  background: var(--black); color: var(--yellow-bright);
  font-family: var(--font-mono); font-weight: 600; font-size: 1rem;
}
.step .num::before { content: "0" counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--grey-700); font-size: .94rem; }
@media (max-width: 560px) { .step { grid-template-columns: 1fr; } }

/* ============ Journey comparison ============ */
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .journey { grid-template-columns: 1fr; } }
.journey-col { border-radius: var(--radius-lg); padding: 28px; }
.journey-col.old { background: var(--white); border: 1px solid var(--line); }
.journey-col.new { background: var(--black); border: 1px solid var(--black); color: #e5e5e5; }
.journey-col h4 { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; color: var(--grey-500); font-weight: 500; }
.journey-col.new h4 { color: var(--yellow-bright); }
.journey-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.journey-flow .jstep { background: none; border: 1px solid var(--line); border-radius: 4px; padding: 8px 14px; font-size: .84rem; font-weight: 600; font-family: var(--font-mono); }
.journey-col.new .jstep { background: none; border-color: var(--line-dark); color: var(--green-bright); }
.journey-flow .jsep { color: var(--grey-400); }
.journey-col.new .jsep { color: var(--yellow-bright); }

/* ============ Charts ============ */
.chart-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: none; }
.chart-card h3 { font-size: 1.05rem; margin-bottom: 18px; }
.funnel { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.funnel .frow {
  background: transparent; border: 1px solid var(--line-dark); color: var(--green-bright); text-align: center;
  padding: 10px 14px; border-radius: 4px; font-size: .8rem; font-weight: 500; font-family: var(--font-mono);
}

/* ============ Checklist / feature list ============ */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; padding: 0; margin: 0; list-style: none; }
@media (max-width: 620px) { .check-grid { grid-template-columns: 1fr; } }
.check-grid li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; font-weight: 500; }
.check-grid .tick {
  flex: none; width: 20px; height: 20px; border-radius: 0; display: grid; place-items: center;
  background: none; color: var(--green); font-size: .85rem; font-weight: 800; margin-top: 2px;
}
.dark .check-grid li { color: #d4d4d4; }
.dark .check-grid .tick { color: var(--green-bright); }

/* Selling checklist — premium pills */
.check-grid.sell { gap: 10px 12px; }
.check-grid.sell li {
  border: 1px solid var(--line); border-radius: 10px; background: var(--white);
  padding: 13px 16px; font-weight: 600; font-size: .9rem; align-items: center;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.check-grid.sell li:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.check-grid.sell .tick {
  width: 24px; height: 24px; border-radius: 50%; margin-top: 0;
  background: var(--green); color: #fff; font-size: .7rem;
  box-shadow: 0 0 0 4px rgba(21,128,61,.12);
}

/* Stripe-style pricing duo */
.price-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 880px) { .price-duo { grid-template-columns: 1fr; } }
.pd-card {
  display: grid; grid-template-columns: 1.15fr 1fr; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--white);
}
@media (max-width: 520px) { .pd-card { grid-template-columns: 1fr; } }
.pd-left { padding: 34px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.pd-left h3 { margin-bottom: 6px; }
.pd-left p { font-size: .9rem; color: var(--grey-700); flex: 1; }
.pd-rate {
  background: var(--off); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 30px 22px; gap: 6px;
}
.pd-rate b { font-family: var(--font-display); font-size: 3rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.pd-rate span { font-size: .82rem; color: var(--grey-500); max-width: 14em; }
.pd-card.darkcard { background: var(--black); border-color: var(--black); }
.pd-card.darkcard .pd-left h3 { color: #fff; }
.pd-card.darkcard .pd-left p { color: #a3a3a3; }
.pd-card.darkcard .pd-rate { background: var(--near-black); border-left-color: var(--line-dark); }
.pd-card.darkcard .pd-rate b { color: var(--green-bright); }
.pd-card.darkcard .pd-rate span { color: #8a8a8a; }
.pd-card.darkcard .btn-ghost { color: #fff; border-color: var(--line-dark); }
.pd-card.darkcard .btn-ghost:hover { color: var(--yellow-bright); border-color: var(--yellow-bright); }

/* Pricing tiers */
.tiers { margin: 18px 0 6px; text-align: left; }
.trow {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px;
  font-size: .9rem;
}
.trow b { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -.02em; }
.trow.best { border-color: var(--line-strong); background: var(--black); color: #e5e5e5; }
.trow.best b { color: var(--green-bright); }
.trow .trow-tag {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow-bright); border: 1px solid rgba(250,204,21,.5); border-radius: 3px; padding: 3px 8px;
}
.deal-line { font-size: .88rem; color: var(--grey-700); margin: 14px 0 18px; }
.deal-line b { color: var(--green); }

/* Chip / tag cloud */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips li, .chips a {
  background: none; border: 1px solid var(--line); border-radius: 4px;
  padding: 9px 16px; font-size: .8rem; font-weight: 500; color: var(--grey-700);
  font-family: var(--font-mono);
  transition: border-color .15s, color .15s;
}
.chips a:hover { border-color: var(--green); color: var(--green); }
.dark .chips li { background: none; border-color: var(--line-dark); color: #d4d4d4; }

/* ============ Product / service cards ============ */
.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: none; display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.pcard:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: none; }
.pcard-img { height: 190px; position: relative; display: grid; place-items: center; font-size: 3rem; border-bottom: 1px solid var(--line); }
.ph-1 { background: #f6f6f4; }
.ph-2 { background: #efefec; }
.ph-3 { background: #f6f6f4; }
.ph-4 { background: #efefec; }
.pcard-img .cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--black); color: var(--yellow-bright);
  font-family: var(--font-mono); font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px;
}
.pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard-body h3 { font-size: 1.02rem; margin: 0; }
.seller { font-size: .8rem; color: var(--grey-500); font-family: var(--font-body); }
.pcard-desc { font-size: .86rem; color: var(--grey-700); margin: 0; flex: 1; }
.pcard-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 6px; font-size: .74rem; color: var(--grey-500); font-family: var(--font-mono); white-space: nowrap; }
.pcard-meta .star { color: var(--yellow); }
.stock { font-weight: 600; color: var(--green); white-space: nowrap; }
.stock.low { color: var(--yellow); }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.price small { font-size: .72rem; color: var(--grey-500); font-weight: 500; }

/* ============ Article cards ============ */
.acard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: none; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.acard:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: none; }
.acard-img { height: 170px; display: grid; place-items: center; font-size: 2.6rem; border-bottom: 1px solid var(--line); }
.acard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.cat-pill {
  align-self: flex-start; font-family: var(--font-mono); font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); background: none; border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 2px;
}
.acard h3 { font-size: 1.05rem; margin: 0; }
.acard .excerpt { font-size: .88rem; color: var(--grey-700); margin: 0; flex: 1; }
.byline { font-size: .72rem; color: var(--grey-500); font-family: var(--font-mono); }
.acard.featured { grid-column: span 2; }
.acard.featured .acard-img { height: 260px; font-size: 4rem; }
@media (max-width: 980px) { .acard.featured { grid-column: span 1; } }

/* ============ Pricing ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 32px; display: flex; flex-direction: column; box-shadow: none;
}
.price-card.hot { border: 1px solid var(--black); background: var(--white); position: relative; }
.hot-badge {
  position: absolute; top: -13px; left: 32px; transform: none;
  background: var(--black); color: var(--yellow-bright); font-family: var(--font-mono); font-size: .64rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; white-space: nowrap;
}
.price-card .tier { font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.price-card .amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; letter-spacing: -.02em; }
.price-card .amount small { font-size: .9rem; font-weight: 500; color: var(--grey-500); }
.price-card .blurb { color: var(--grey-700); font-size: .92rem; margin: 8px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-card li { display: flex; gap: 10px; padding: 7px 0; font-size: .9rem; align-items: flex-start; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 800; flex: none; }

/* ============ FAQ ============ */
.faq { max-width: 780px; margin: 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 10px; background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px;
  font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; gap: 16px; align-items: center;
  font-family: var(--font-display); color: var(--ink);
}
.faq-q .chev { transition: transform .2s; color: var(--green); flex: none; }
.faq-item.open { border-color: var(--line-strong); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--grey-700); font-size: .94rem; }

/* ============ Forms ============ */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: none; color: var(--ink); }
.form-card h3 { color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: .76rem; font-weight: 600; letter-spacing: .03em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .93rem; padding: 12px 15px;
  border: 1px solid var(--line); border-radius: 4px;
  background: var(--white); color: var(--ink); transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--black); box-shadow: none; background: var(--white);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; grid-column: 1 / -1; }
.field-check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--black); }
.trust-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--black); border: 0; color: #d4d4d4;
  border-radius: var(--radius-md); padding: 18px 20px; font-size: .85rem;
}
.trust-note .shield { font-size: 1.2rem; }

/* ============ CTA banner ============ */
.cta-banner {
  background: var(--black); border-radius: var(--radius-lg); position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 72px); text-align: center; color: #d4d4d4;
}
.cta-banner h2 { color: #fff; max-width: 17em; margin: 0 auto .4em; }
.cta-banner h3 { color: #fff; }
.cta-banner p { max-width: 38em; margin: 0 auto 1.6em; color: #a3a3a3; }
.cta-banner .eyebrow { color: var(--green-bright); }
.cta-banner .eyebrow::before { color: var(--yellow-bright); }
.cta-banner .btn-ghost { color: #fff; border-color: var(--line-dark); }
.cta-banner .btn-ghost:hover { color: var(--yellow-bright); border-color: var(--yellow-bright); }
.cta-banner .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.cta-banner .btn-primary:hover { color: var(--green); }

/* ============ Footer ============ */
footer.site-footer { background: var(--black); color: #a3a3a3; padding: 70px 0 36px; font-size: .87rem; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 16px; }
.site-footer h4 { color: var(--yellow-bright); font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--green-bright); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .74rem; color: #737373; font-family: var(--font-mono); }

/* ============ Page hero (inner pages) ============ */
.page-hero { padding: clamp(56px, 8vw, 90px) 0 clamp(40px, 6vw, 64px); }
.page-hero h1 { max-width: 16em; }
.page-hero .lead { margin-top: 6px; }

/* Detail layouts */
.detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; } }
.gallery-main { border-radius: var(--radius-lg); height: 380px; display: grid; place-items: center; font-size: 5rem; border: 1px solid var(--line); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs div { height: 76px; border-radius: 4px; display: grid; place-items: center; font-size: 1.6rem; border: 1px solid var(--line); cursor: pointer; }
.gallery-thumbs div:first-child { border-color: var(--black); }
.buy-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: none; }
.seller-strip {
  background: var(--off); border: 1px solid var(--line); border-radius: 4px;
  padding: 14px 18px; font-size: .82rem; color: var(--grey-700); margin: 18px 0;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { font-weight: 600; width: 38%; color: var(--grey-700); font-family: var(--font-mono); font-size: .8rem; }

/* Tabs (subnav) */
.subnav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.subnav a {
  padding: 8px 14px; border-radius: 4px; font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--grey-700); background: none;
}
.subnav a.active, .subnav a:hover { border-color: var(--black); color: var(--green); }

/* Prose */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.5em; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ Premium extras ============ */
/* Monochrome emoji — flat silhouettes via text-shadow trick */
.pcard-img, .acard-img, .gallery-main, .gallery-thumbs div, .card .icon {
  color: transparent; text-shadow: 0 0 0 #1a1a1a;
}
.card .icon { text-shadow: 0 0 0 var(--green); }
.card.warn .icon { text-shadow: 0 0 0 var(--yellow); }
.dark .card .icon { text-shadow: 0 0 0 var(--green-bright); }

/* Text highlights */
.hl-g { color: var(--green-bright); }
.hl-y { color: var(--yellow-bright); }

/* Hero type scale — roomy but still above the fold */
.hero { padding: clamp(52px, 6.5vw, 92px) 0 clamp(52px, 6.5vw, 92px); }
.hero .hero-grid { gap: 72px; }
.hero h1 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); letter-spacing: -.03em; margin-bottom: 22px; }
.hero .eyebrow { margin-bottom: 18px; }
.hero .lead { font-size: clamp(.98rem, 1.2vw, 1.08rem); }
.hero-ctas { margin: 30px 0 26px; }
.hero .trust-strip { margin-bottom: 12px; }

/* ============ Animated chat (hero) ============ */
.chat {
  background: var(--near-black);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 470px;
}
.chat-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 18px; border-bottom: 1px solid var(--line-dark); flex: none;
}
.chat-bar i { width: 9px; height: 9px; border-radius: 50%; background: #2e2e2e; }
.chat-bar i:nth-child(2) { background: #facc15; }
.chat-bar i:nth-child(3) { background: #4ade80; }
.chat-bar span { margin-left: 10px; color: #737373; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.chat-body {
  flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px;
  overflow: hidden; justify-content: flex-end;
}
.chat-input {
  flex: none; margin: 0 16px 16px; padding: 12px 16px;
  border: 1px solid var(--line-dark); border-radius: 10px;
  font-family: var(--font-mono); font-size: .76rem; color: #737373;
}
.chat-input::after { content: "▍"; color: var(--green-bright); animation: blink 1.1s steps(1) infinite; }
.msg {
  max-width: 88%; padding: 11px 15px; border-radius: 12px;
  font-size: .85rem; line-height: 1.5;
  opacity: 0; transform: translateY(10px);
  animation: msg-in .4s ease forwards;
}
@keyframes msg-in { to { opacity: 1; transform: none; } }
.msg.user { align-self: flex-end; background: var(--white); color: var(--black); border-bottom-right-radius: 3px; }
.msg.agent { align-self: flex-start; background: transparent; border: 1px solid var(--line-dark); color: #e5e5e5; border-bottom-left-radius: 3px; }
.msg.agent .ok { color: var(--green-bright); }
.msg.typing { display: inline-flex; gap: 5px; padding: 14px 16px; }
.msg.typing b { width: 6px; height: 6px; border-radius: 50%; background: #737373; animation: tdot 1s infinite; }
.msg.typing b:nth-child(2) { animation-delay: .15s; }
.msg.typing b:nth-child(3) { animation-delay: .3s; }
@keyframes tdot { 0%,100%{opacity:.25; transform:none} 50%{opacity:1; transform:translateY(-3px)} }
.msg.product {
  align-self: flex-start; display: flex; gap: 12px; align-items: center;
  background: transparent; border: 1px solid var(--line-dark); padding: 10px;
  width: 88%;
}
.msg.product img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex: none;
  filter: grayscale(1) contrast(1.05);
}
.msg.product b { display: block; color: #fff; font-size: .82rem; font-weight: 600; }
.msg.product small { color: #8a8a8a; font-size: .7rem; font-family: var(--font-mono); display: block; margin-top: 2px; }
.msg.product .p-price { margin-left: auto; color: var(--yellow-bright); font-family: var(--font-mono); font-weight: 600; font-size: .85rem; white-space: nowrap; }

/* Payment screen inside chat */
.msg.payment {
  align-self: flex-start; width: 88%;
  background: #161616; border: 1px solid var(--line-dark); padding: 14px 16px;
}
.msg.payment .pay-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: #8a8a8a; margin-bottom: 10px;
}
.msg.payment .pay-head b { color: var(--green-bright); font-weight: 500; }
.pay-row {
  display: flex; gap: 8px; margin-bottom: 8px;
}
.pay-field {
  flex: 1; border: 1px solid var(--line-dark); border-radius: 6px;
  padding: 9px 12px; font-family: var(--font-mono); font-size: .74rem; color: #d4d4d4;
  display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden;
}
.pay-field i { font-style: normal; color: #737373; }
.pay-btn {
  width: 100%; margin-top: 4px; padding: 11px; border: 0; border-radius: 6px;
  background: var(--white); color: var(--black);
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600; text-align: center;
}
.pay-btn .lock { color: var(--green); }

/* Hero one-line trust note */
.hero-note {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em;
  color: #8a8a8a; margin: 0;
}
.hero-note b { color: var(--green-bright); font-weight: 500; }

/* ============ Journey comparison v3 — full-width typewriter ============ */
.journey2 { margin-top: 8px; }
.jrow {
  display: block;
  padding: clamp(30px, 4vw, 48px) 0; border-top: 1px solid var(--line);
}
.jrow:last-child { border-bottom: 1px solid var(--line); }
.jlabel {
  display: block; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--grey-500);
}
.jrow.new .jlabel { color: var(--green); }
.jsteps {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1rem, 2.25vw, 1.9rem); line-height: 1.3;
  min-height: 1.3em; white-space: nowrap;
}
@media (max-width: 640px) { .jsteps { white-space: normal; } }
.jrow.old .jsteps { color: var(--grey-400); }
.jrow.new .jsteps { color: var(--ink); }
.jsteps .ja { color: var(--grey-400); padding: 0 .25em; }
.jrow.new .jsteps .ja { color: var(--yellow-bright); }
.jrow.new .jsteps .final { color: var(--green); }
.type-cursor::after { content: "▍"; color: var(--green); animation: blink 1.1s steps(1) infinite; font-weight: 400; }

/* ============ Partners ============ */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .partner-grid { grid-template-columns: 1fr; } }
.partner {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: border-color .2s ease, transform .2s ease;
}
.partner:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.partner-logo {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 6px;
}
.partner-logo i { font-style: normal; font-size: 1rem; color: var(--grey-400); transition: color .15s, transform .15s; }
.partner:hover .partner-logo i { color: var(--green); transform: translate(2px,-2px); }
.partner-role {
  display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.partner p { margin: 0; color: var(--grey-700); font-size: .92rem; }

/* ============ ChatGPT-style product modal ============ */
.gpt-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,.65); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.gpt-overlay.open { display: flex; }
.gpt-window {
  background: #fff; border-radius: 16px; width: 100%; max-width: 620px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.6);
  animation: gpt-in .25s ease;
}
@keyframes gpt-in { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.gpt-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.gpt-head b { font-family: var(--font-body); font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.gpt-head b .gpt-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--black); color: #fff; display: grid; place-items: center; font-size: .6rem; font-family: var(--font-mono); }
.gpt-head small { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-400); }
.gpt-close { background: none; border: 0; font-size: 1.3rem; line-height: 1; color: var(--grey-500); padding: 6px; }
.gpt-close:hover { color: var(--black); }
.gpt-body { padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.gpt-user {
  align-self: flex-end; max-width: 85%;
  background: var(--slate-100); border-radius: 16px 16px 4px 16px;
  padding: 11px 16px; font-size: .9rem; color: var(--ink);
}
.gpt-assistant { display: flex; gap: 12px; max-width: 100%; }
.gpt-assistant .gpt-dot {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--black); color: #fff; display: grid; place-items: center;
  font-size: .6rem; font-family: var(--font-mono); margin-top: 2px;
}
.gpt-assistant .gpt-text { font-size: .9rem; color: var(--ink); line-height: 1.6; }
.gpt-product {
  margin-left: 38px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.gpt-product img { width: 100%; height: 200px; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.gpt-product-body { padding: 16px 18px; }
.gpt-product-body h4 { margin: 0 0 2px; font-size: 1.05rem; }
.gpt-product-body .gpt-seller { font-size: .78rem; color: var(--grey-500); }
.gpt-product-body .gpt-desc { font-size: .85rem; color: var(--grey-700); margin: 8px 0 10px; }
.gpt-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gpt-product-foot .price { font-size: 1.15rem; }
.gpt-product-foot .gpt-meta { font-family: var(--font-mono); font-size: .7rem; color: var(--grey-500); }
.gpt-buy { display: block; margin: 14px 18px 18px; text-align: center; }
.gpt-note {
  margin: 0 20px 20px; padding-top: 14px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .04em; color: var(--grey-400);
}

/* ============ Editorial split section ============ */
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split-left { position: sticky; top: 96px; }
@media (max-width: 880px) { .split-left { position: static; } }
.split-left .lead { margin-bottom: 0; }
.risk-list { display: flex; flex-direction: column; }
.risk {
  display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: start;
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-top: 1px solid var(--line);
  transition: background .2s ease;
}
.risk:last-child { border-bottom: 1px solid var(--line); }
.risk-num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.5px var(--grey-400);
  transition: color .25s ease, -webkit-text-stroke-color .25s ease;
}
.risk:hover .risk-num { color: var(--yellow-bright); -webkit-text-stroke-color: var(--black); }
.risk h3 { margin-bottom: 8px; font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.risk p { margin: 0; color: var(--grey-700); max-width: 34em; }
.risk .risk-tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green);
}
@media (max-width: 560px) { .risk { grid-template-columns: 1fr; gap: 10px; } }

.dark .risk { border-color: var(--line-dark); }
.dark .risk p { color: #a3a3a3; }
.dark .risk-num { -webkit-text-stroke-color: #525252; }
.dark .risk:hover .risk-num { color: var(--green-bright); -webkit-text-stroke-color: transparent; }

/* Mono icon chips (replaces emoji) */
.icon-mono {
  font-family: var(--font-mono); font-size: .72rem !important; font-weight: 600; letter-spacing: .06em;
  color: var(--green);
}

/* ============ Real imagery — B&W ============ */
.pcard-img { padding: 0; overflow: hidden; }
.pcard-img img, .acard-img img, .gallery-main img, .gallery-thumbs div img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: transform .5s ease, filter .4s ease;
}
.gallery-main { overflow: hidden; padding: 0; }
.gallery-thumbs div { overflow: hidden; padding: 0; }
.pcard:hover .pcard-img img, .acard:hover .acard-img img { transform: scale(1.04); filter: grayscale(.4) contrast(1.04); }

/* ============ Scroll animations ============ */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .36s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .6s; }

/* Journey steps light up in sequence */
.journey-flow .jstep { opacity: .35; transition: opacity .4s ease, border-color .4s ease; }
.journey.in .jstep { opacity: 1; }
.journey.in .old .jstep:nth-child(1) { transition-delay: .1s; }
.journey.in .old .jstep:nth-child(3) { transition-delay: .3s; }
.journey.in .old .jstep:nth-child(5) { transition-delay: .5s; }
.journey.in .old .jstep:nth-child(7) { transition-delay: .7s; }
.journey.in .old .jstep:nth-child(9) { transition-delay: .9s; }
.journey.in .new .jstep:nth-child(1) { transition-delay: 1.2s; }
.journey.in .new .jstep:nth-child(3) { transition-delay: 1.5s; }
.journey.in .new .jstep:nth-child(5) { transition-delay: 1.8s; }
.journey.in .new .jstep:nth-child(7) { transition-delay: 2.1s; border-color: var(--green-bright); }

/* SVG line chart draws itself */
.draw-line { stroke-dasharray: 1500; stroke-dashoffset: 1500; }
.in .draw-line { animation: draw 2.4s ease forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.draw-area { opacity: 0; }
.in .draw-area { animation: fadein 1s ease forwards 1.8s; }
@keyframes fadein { to { opacity: 1; } }

/* Interactive chart */
.chart-wrap { position: relative; }
.cdot { cursor: pointer; }
.cdot .dot-core { transition: r .15s ease; }
.cdot:hover .dot-core { r: 7; }
.chart-tip {
  position: absolute; z-index: 5; pointer-events: none;
  background: var(--black); border: 1px solid rgba(255,255,255,.25); border-radius: 8px;
  padding: 10px 14px; max-width: 300px;
  opacity: 0; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease;
}
.chart-tip.show { opacity: 1; transform: none; }
.chart-tip b { display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--yellow-bright); margin-bottom: 4px; }
.chart-tip span { font-size: .8rem; color: #e5e5e5; line-height: 1.45; display: block; }
.milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
@media (max-width: 860px) { .milestones { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .milestones { grid-template-columns: 1fr; } }
.milestone { border-top: 1px solid var(--line-dark); padding-top: 12px; transition: border-color .2s; }
.milestone:hover { border-top-color: var(--yellow-bright); }
.milestone b { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--green-bright); margin-bottom: 4px; }
.milestone span { font-size: .78rem; color: #a3a3a3; line-height: 1.5; }

/* Funnel rows cascade */
.funnel .frow { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.in .funnel .frow:nth-child(1) { transition-delay: .1s; }
.in .funnel .frow:nth-child(2) { transition-delay: .3s; }
.in .funnel .frow:nth-child(3) { transition-delay: .5s; }
.in .funnel .frow:nth-child(4) { transition-delay: .7s; }
.in .funnel .frow:nth-child(5) { transition-delay: .9s; }
.in .funnel .frow { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > *, .funnel .frow, .journey-flow .jstep { opacity: 1 !important; transform: none !important; transition: none !important; }
  .draw-line { stroke-dashoffset: 0; animation: none; }
  .draw-area { opacity: 1; animation: none; }
  .msg { animation: none; opacity: 1; transform: none; }
}

/* Terminal mock */
.terminal {
  background: var(--near-black);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  font-family: var(--font-mono);
  font-size: .82rem;
  overflow: hidden;
}
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 18px; border-bottom: 1px solid var(--line-dark);
}
.terminal-bar i { width: 9px; height: 9px; border-radius: 50%; background: #2e2e2e; }
.terminal-bar i:nth-child(2) { background: #facc15; }
.terminal-bar i:nth-child(3) { background: #4ade80; }
.terminal-bar span { margin-left: 10px; color: #737373; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.terminal-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 13px; line-height: 1.55; }
.t-line { color: #d4d4d4; }
.t-user::before { content: "you  › "; color: #737373; }
.t-agent::before { content: "agent› "; color: var(--green-bright); }
.t-agent { color: #f5f5f5; }
.t-sys { color: #737373; font-size: .74rem; }
.t-sys b { color: var(--yellow-bright); font-weight: 500; }
.t-ok { color: var(--green-bright); }
.t-cursor::after { content: "▍"; color: var(--green-bright); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.t-card {
  border: 1px solid var(--line-dark); border-radius: 4px; padding: 12px 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.t-card b { color: #fff; font-weight: 600; display: block; }
.t-card small { color: #8a8a8a; }
.t-card .t-price { color: var(--yellow-bright); font-weight: 600; white-space: nowrap; }

/* Marquee */
.marquee {
  background: var(--black); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  overflow: hidden; padding: 14px 0; position: relative;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: #a3a3a3;
  padding: 0 28px; white-space: nowrap;
}
.marquee span b { color: var(--green-bright); font-weight: 500; }
.marquee span i { font-style: normal; color: var(--yellow-bright); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Big stat number */
.bignum {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(3.4rem, 7vw, 5rem); line-height: 1;
  color: var(--green);
}
.dark .bignum { color: var(--green-bright); }

/* ============ Order & money flow (how-it-works) ============ */
.oflow { position: relative; max-width: 720px; margin: 0 auto; padding-left: 8px; }
.ostep {
  position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 0 0 34px 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.oflow.in .ostep { opacity: 1; transform: none; }
.oflow.in .ostep:nth-child(1) { transition-delay: .1s; }
.oflow.in .ostep:nth-child(2) { transition-delay: .45s; }
.oflow.in .ostep:nth-child(3) { transition-delay: .8s; }
.oflow.in .ostep:nth-child(4) { transition-delay: 1.15s; }
.oflow.in .ostep:nth-child(5) { transition-delay: 1.5s; }
.oflow.in .ostep:nth-child(6) { transition-delay: 1.85s; }
.oflow.in .ostep:nth-child(7) { transition-delay: 2.2s; }
.ostep::before {
  content: ""; position: absolute; left: 27px; top: 44px; bottom: -6px; width: 2px;
  background: var(--line-dark);
}
.ostep:last-child::before { display: none; }
.ostep .onum {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--near-black); border: 2px solid var(--line-dark);
  font-family: var(--font-mono); font-weight: 600; font-size: .85rem; color: var(--green-bright);
  position: relative; z-index: 1;
}
.ostep.fee .onum { border-color: rgba(250,204,21,.55); color: var(--yellow-bright); }
.ostep b { display: block; color: #fff; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin: 6px 0 4px; }
.ostep small { display: block; color: #a3a3a3; font-size: .88rem; line-height: 1.55; }
.ostep .otag {
  display: inline-block; margin-top: 8px;
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-bright); border: 1px solid rgba(74,222,128,.4); border-radius: 3px; padding: 3px 8px;
}
.ostep.fee .otag { color: var(--yellow-bright); border-color: rgba(250,204,21,.45); }

/* Money split bar */
.splitbar-card {
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px); margin-top: 26px;
}
.splitbar-card h3 { color: #fff; margin-bottom: 20px; }
.splitbar { display: flex; height: 64px; border-radius: 8px; overflow: hidden; gap: 3px; }
.sb {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600; white-space: nowrap; overflow: hidden;
  width: 0; transition: width 1.1s cubic-bezier(.2,.7,.25,1);
}
.in .sb { width: var(--w); }
.in .sb:nth-child(1) { transition-delay: .2s; }
.in .sb:nth-child(2) { transition-delay: .5s; }
.in .sb:nth-child(3) { transition-delay: .8s; }
.sb-vendor { background: #1c1c1c; border: 1px solid rgba(74,222,128,.45); color: var(--green-bright); }
.sb-fee { background: #1c1c1c; border: 1px solid rgba(250,204,21,.5); color: var(--yellow-bright); }
.sb-stripe { background: #1c1c1c; border: 1px solid var(--line-dark); color: #8a8a8a; }
.splitbar-legend { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 16px; }
.splitbar-legend span { font-family: var(--font-mono); font-size: .74rem; color: #a3a3a3; }
.splitbar-legend b { font-weight: 600; }
.splitbar-legend .lg { color: var(--green-bright); }
.splitbar-legend .ly { color: var(--yellow-bright); }

/* Utility */
.center { text-align: center; }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:36px}.mt-5{margin-top:56px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:36px}
.flex-between { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
