/* =========================================================
   Veris Labs - shared stylesheet
   Brand: gradient cyan->teal mark, navy wordmark
   Type: Sora (display) + Inter (body)
   ========================================================= */

:root {
  --navy-900: #0e1830;
  --navy-800: #16233f;
  --navy-700: #1b2a4a;
  --navy-600: #26375c;
  --ink: #1b2a4a;
  --slate: #5a6b86;
  --slate-light: #8494ab;

  --cyan-300: #9fdcef;
  --cyan-400: #6fc8e6;
  --cyan-500: #3e97c9;
  --teal-500: #3e8fc4;
  --teal-600: #2f76a8;

  --paper: #ffffff;
  --mist: #f4f8fb;
  --mist-2: #eaf2f8;
  --line: #dfe7f0;

  --grad-brand: linear-gradient(135deg, #9fdcef 0%, #4fa8d4 55%, #2f76a8 100%);
  --grad-brand-soft: linear-gradient(135deg, #e7f6fc 0%, #d3ebf7 100%);
  --grad-ink: linear-gradient(135deg, #16233f 0%, #223a63 100%);

  --shadow-sm: 0 1px 2px rgba(22, 35, 63, 0.04), 0 2px 8px rgba(22, 35, 63, 0.05);
  --shadow-md: 0 4px 12px rgba(22, 35, 63, 0.06), 0 16px 40px rgba(22, 35, 63, 0.10);
  --shadow-lg: 0 8px 20px rgba(22, 35, 63, 0.08), 0 32px 72px rgba(22, 35, 63, 0.16);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(79, 168, 212, 0.28); color: var(--navy-900); }

/* refined scrollbar (WebKit) */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: #c3d2e2; border-radius: 8px; border: 3px solid var(--mist); }
::-webkit-scrollbar-thumb:hover { background: var(--slate-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.65rem); }
h3 { font-size: 1.24rem; letter-spacing: -0.015em; }
p  { margin: 0 0 1rem; color: var(--slate); }
a  { color: var(--teal-600); text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible { outline: 3px solid rgba(79, 168, 212, .55); outline-offset: 3px; border-radius: 4px; }

[id] { scroll-margin-top: 90px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 100px 0; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.section-head.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.gradient-text {
  background: linear-gradient(120deg, #9fdcef 0%, #5fb6de 40%, #8fd2ea 70%, #4fa8d4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead { font-size: 1.18rem; color: var(--slate); max-width: 640px; }
.section-head { max-width: 700px; margin: 0 auto 60px; }
.section-head.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  font-family: var(--font);
  letter-spacing: .01em;
  cursor: pointer;
  border: 0;
  overflow: hidden;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
/* shine sweep */
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 26px rgba(47, 118, 168, 0.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(47, 118, 168, 0.48), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn--dark { background: var(--grad-ink); color: #fff; box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.12); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.12); }
.btn--outline { background: #fff; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--teal-500); color: var(--teal-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(22,35,63,.06); background: rgba(255,255,255,.92); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy-800); letter-spacing: -.01em; font-family: var(--font-display); }
.brand img { height: 42px; width: auto; border-radius: 10px; box-shadow: var(--shadow-sm); }
.brand span { font-size: 1.12rem; line-height: 1.15; }
.brand small { display: block; font-size: .58rem; letter-spacing: .36em; color: var(--slate-light); font-weight: 700; margin-top: 1px; font-family: var(--font); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  color: var(--navy-700);
  font-weight: 600;
  font-size: .95rem;
  padding: 4px 0;
  transition: color .18s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover { color: var(--teal-600); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 24px; font-size: .92rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 75% 10%, rgba(62,151,201,.24), transparent 60%),
    var(--grad-ink);
  color: #fff;
  overflow: hidden;
  padding: 128px 0 140px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  z-index: 0;
}
.hero::before { width: 560px; height: 560px; background: radial-gradient(circle, #3e97c9, transparent 68%); top: -180px; right: -120px; animation: float1 16s ease-in-out infinite; }
.hero::after  { width: 460px; height: 460px; background: radial-gradient(circle, #6fc8e6, transparent 66%); bottom: -200px; left: -140px; animation: float2 19s ease-in-out infinite; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero .lead { color: rgba(233,242,250,.86); font-size: 1.24rem; max-width: 620px; margin-bottom: 38px; }
.hero .eyebrow::before { background: linear-gradient(90deg, #9fdcef, #4fa8d4); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; margin-top: 56px; color: rgba(233,242,250,.72); font-size: .92rem; }
.hero-badges > div { padding: 4px 28px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-badges > div:first-child { padding-left: 0; border-left: 0; }
.hero-badges strong { color: #fff; display: block; font-size: 1.55rem; font-weight: 700; letter-spacing: -.02em; font-family: var(--font-display); margin-bottom: 2px; }

.grid-overlay {
  position: absolute; inset: 0; z-index: 1; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000, transparent 78%);
}

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,40px) scale(1.06)} }
@keyframes float2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(50px,-30px) scale(1.04)} }

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

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s ease;
  overflow: hidden;
}
/* gradient accent bar, revealed on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfe0ef; }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  color: var(--teal-600);
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(63,151,201,.14);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.card:hover .ic { transform: scale(1.08) rotate(-3deg); box-shadow: inset 0 0 0 1px rgba(63,151,201,.3), 0 6px 16px rgba(63,151,201,.18); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .35em; }
.card p { margin: 0; font-size: .98rem; }

/* ---------- Product feature (landing) ---------- */
.product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.product.reverse .product-visual { order: -1; }
.product-visual {
  border-radius: var(--radius-lg);
  padding: 44px;
  min-height: 350px;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* soft inner glow ring */
.product-visual::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 0 0 1px rgba(255,255,255,.07);
  pointer-events: none;
  z-index: 2;
}
.product-visual::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  top: -120px; right: -80px;
  pointer-events: none;
}
.product-visual.oh { background: linear-gradient(150deg, #103a2e 0%, #1d6b4f 100%); }
.product-visual.oh::after { background: radial-gradient(circle, #3fae7e, transparent 70%); }
.product-visual.evie { background: linear-gradient(150deg, #16233f 0%, #2f76a8 100%); }
.product-visual.evie::after { background: radial-gradient(circle, #6fc8e6, transparent 70%); }
.product-visual .mock {
  width: 100%; max-width: 340px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative;
  z-index: 3;
  animation: mockFloat 6s ease-in-out infinite;
}
@keyframes mockFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.product-visual .mock .bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,.28); margin: 9px 0; }
.product-visual .mock .bar.s { width: 55%; }
.product-visual .mock .bar.m { width: 78%; }
.product-visual .mock .chip { display: inline-block; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.2); margin-bottom: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,.2); }
.tag-pill { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; margin-bottom: 16px; margin-right: 8px; }
.tag-pill.oh { background: #e2f5ec; color: #1d6b4f; box-shadow: inset 0 0 0 1px rgba(29,107,79,.14); }
.tag-pill.evie { background: #e2eefb; color: #2f76a8; box-shadow: inset 0 0 0 1px rgba(47,118,168,.16); }
.tag-pill.status { background: var(--mist-2); color: var(--slate); box-shadow: inset 0 0 0 1px rgba(90,107,134,.12); }
.product ul { list-style: none; padding: 0; margin: 18px 0 28px; }
.product ul li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--slate); font-size: 1rem; }
.product ul li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(63,151,201,.13), 0 2px 6px rgba(47,118,168,.3);
}
.product ul li::after {
  content: "✓"; position: absolute; left: 4.5px; top: 3px; color: #fff; font-size: 11px; font-weight: 900;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.step:hover { background: #fff; border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: var(--grad-brand); margin-bottom: 18px;
  font-family: var(--font-display);
  box-shadow: 0 8px 18px rgba(47,118,168,.3), inset 0 1px 0 rgba(255,255,255,.3);
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .95rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 90% at 85% 0%, rgba(62,151,201,.35), transparent 60%),
    var(--grad-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 68px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.1);
}
.cta-band::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,#3e97c9,transparent 70%); top: -170px; right: -110px; opacity: .5; }
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle,#6fc8e6,transparent 70%); bottom: -160px; left: -90px; opacity: .35; }
.cta-band h2 { color: #fff; position: relative; z-index: 1; }
.cta-band p { color: rgba(233,242,250,.85); position: relative; z-index: 1; max-width: 560px; margin: 0 auto 30px; }
.cta-band .eyebrow { position: relative; z-index: 1; }
.cta-band .eyebrow::before { background: linear-gradient(90deg, #9fdcef, #4fa8d4); }
.cta-band .hero-actions { justify-content: center; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--navy-900);
  color: rgba(233,242,250,.7);
  padding: 72px 0 32px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: .8;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font); font-weight: 700; }
.site-footer a { color: rgba(233,242,250,.7); display: block; margin-bottom: 10px; font-size: .95rem; transition: color .18s, transform .18s var(--ease-out); }
.site-footer a:hover { color: #9fdcef; transform: translateX(3px); }
.footer-brand img { height: 44px; border-radius: 10px; margin-bottom: 16px; box-shadow: 0 4px 14px rgba(0,0,0,.3); }
.footer-brand p { color: rgba(233,242,250,.6); font-size: .95rem; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; color: rgba(233,242,250,.5); }

/* ---------- Brochure page hero ---------- */
.brochure-hero { position: relative; color: #fff; overflow: hidden; padding: 96px 0 84px; }
.brochure-hero.oh { background: radial-gradient(ellipse 80% 80% at 80% 0%, rgba(63,174,126,.3), transparent 55%), linear-gradient(150deg, #0d3327 0%, #1d6b4f 90%); }
.brochure-hero.evie { background: radial-gradient(ellipse 80% 80% at 80% 0%, rgba(111,200,230,.28), transparent 55%), linear-gradient(150deg, #12203a 0%, #2f76a8 95%); }
.brochure-hero::after { content: ""; position: absolute; inset: 0; opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 20%, #000, transparent 75%); }
.brochure-hero .container { position: relative; z-index: 2; max-width: 820px; }
.brochure-hero h1 { color: #fff; text-wrap: balance; }
.brochure-hero .lead { color: rgba(255,255,255,.9); font-size: 1.24rem; }
.crumb { font-size: .86rem; color: rgba(255,255,255,.7); margin-bottom: 24px; letter-spacing: .02em; }
.crumb a { color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.3); transition: border-color .2s; }
.crumb a:hover { border-color: #fff; }
.status-line { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 8px 17px; border-radius: 999px; font-size: .86rem; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(6px); box-shadow: inset 0 1px 0 rgba(255,255,255,.15); }
.status-line .dot { width: 8px; height: 8px; border-radius: 50%; background: #7dffb4; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(125,255,180,.5); }
  50% { box-shadow: 0 0 0 7px rgba(125,255,180,0); }
}

/* feature list on brochure */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.feature-block .card h3 { display: flex; align-items: center; gap: 10px; }

/* revenue / spec table */
.spec-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.spec-table th, .spec-table td { text-align: left; padding: 17px 22px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.spec-table th { background: linear-gradient(180deg, var(--mist) 0%, var(--mist-2) 100%); color: var(--navy-800); font-weight: 700; letter-spacing: .03em; font-size: .84rem; text-transform: uppercase; }
.spec-table td.num { font-weight: 800; color: var(--teal-600); white-space: nowrap; font-family: var(--font-display); font-size: 1.02rem; }
.spec-table tbody tr { transition: background .18s ease; }
.spec-table tbody tr:hover { background: var(--mist); }
.spec-table tr:last-child td { border-bottom: 0; }

/* flow */
.flow { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.flow .node {
  flex: 1 1 130px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s ease;
}
.flow .node:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe0ef; }
.flow .node .n { font-size: .7rem; font-weight: 800; color: var(--teal-600); letter-spacing: .12em; font-family: var(--font-display); }
.flow .node strong { display: block; margin: 7px 0 4px; color: var(--navy-800); font-size: .98rem; letter-spacing: -.01em; }
.flow .node span { font-size: .82rem; color: var(--slate-light); }

/* pill list */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills .p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.pills .p:hover { transform: translateY(-2px); border-color: var(--teal-500); color: var(--teal-600); box-shadow: var(--shadow-md); }

.bg-mist { background: linear-gradient(180deg, var(--mist) 0%, #f8fbfd 100%); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product { grid-template-columns: 1fr; gap: 32px; }
  .product.reverse .product-visual { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 20px 24px; gap: 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .section { padding: 72px 0; }
  .hero { padding: 96px 0 104px; }
  .hero-badges > div { padding: 4px 20px; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .hero-badges { gap: 18px 0; }
  .hero-badges > div { border-left: 0; padding: 0 18px 0 0; }
  body { font-size: 16px; }
}
