/* ============================================================
   REACHVEX — shared stylesheet
   Premium SaaS aesthetic · Geist · accent-tweakable
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500&display=swap');

/* ---------- tokens ---------- */
:root {
  --accent: #2563EB;
  --accent-strong: color-mix(in srgb, var(--accent), black 14%);
  --accent-soft: color-mix(in srgb, var(--accent), white 86%);
  --accent-softer: color-mix(in srgb, var(--accent), white 93%);
  --glow: color-mix(in srgb, var(--accent), white 18%);

  --navy: #0F1F3D;
  --navy-2: #16294d;
  --ink: #0F1F3D;
  --ink-2: #334063;
  --bg: #FFFFFF;
  --surface: #F5F7FA;
  --surface-2: #EEF2F8;
  --muted: #94A3B8;
  --line: #E6EBF2;
  --line-strong: #D8E0EC;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,31,61,.06), 0 1px 1px rgba(15,31,61,.04);
  --shadow: 0 4px 14px rgba(15,31,61,.07), 0 1px 3px rgba(15,31,61,.05);
  --shadow-lg: 0 24px 60px -18px rgba(15,31,61,.22), 0 8px 24px -12px rgba(15,31,61,.14);
  --shadow-glow: 0 18px 50px -16px color-mix(in srgb, var(--accent), transparent 60%);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { 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(--bg);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}
.section { padding-block: 110px; position: relative; }
.section.tight { padding-block: 80px; }
.section.surface { background: var(--surface); }
.section.surface-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent-strong);
  text-transform: none;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 50px);
  margin-top: 18px;
}
.section-head .lede {
  margin-top: 20px;
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
}

.lede { color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: var(--pad-y) 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(15,31,61,.18), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 1px 2px rgba(15,31,61,.18);
}
.btn-outline {
  background: rgba(255,255,255,.6);
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost { background: transparent; color: var(--ink-2); padding-inline: 14px; }
.btn-ghost:hover { color: var(--navy); }
.btn-lg { --pad-y: 16px; font-size: 16.5px; padding-inline: 28px; }
.btn-block { width: 100%; }

.btn-on-dark.btn-outline {
  background: rgba(255,255,255,.04);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-on-dark.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s, box-shadow .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15,31,61,.02);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand .logo-mark { height: 30px; width: auto; flex-shrink: 0; display: block; }
/* svg variants (comparison chip / dashboard rail) keep square sizing + accent fill */
svg.logo-mark { width: 30px; height: 30px; }
.logo-mark .lm-bg { fill: var(--accent); transition: fill .3s; }
.logo-mark .lm-sheen { fill: #fff; opacity: .14; }
.brand .logo-word {
  font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy);
}
.nav-center {
  display: flex; align-items: center; gap: 4px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: color .18s, background .18s;
}
.nav-link:hover { color: var(--navy); background: var(--surface); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: #fff; border-radius: 11px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { position: relative; width: 18px; height: 1.6px; background: var(--navy); border-radius: 2px; transition: .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--navy); border-radius: 2px; transition: .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 72px 0 auto 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px 26px;
  z-index: 99;
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-size: 18px; font-weight: 500; padding: 12px 4px; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: 86px; padding-bottom: 96px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 5.6vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.0;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent) 0%, var(--glow) 60%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub {
  margin-top: 26px;
  font-size: 20px;
  color: var(--ink-2);
  max-width: 540px;
  line-height: 1.55;
}
.hero-cta { display: flex; align-items: center; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { color: var(--accent); }

/* badge above hero headline */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 7px 6px 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill .tag {
  font-size: 11.5px; font-weight: 600; color: #fff; background: var(--accent);
  padding: 3px 9px; border-radius: var(--radius-pill); letter-spacing: .01em;
}

/* gradient mesh background */
.mesh { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.mesh::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,31,61,.05) 1px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 0%, transparent 75%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; will-change: transform; }
.blob.b1 { width: 520px; height: 520px; background: var(--accent); top: -180px; right: -80px; opacity: .22; animation: drift1 22s var(--ease) infinite alternate; }
.blob.b2 { width: 420px; height: 420px; background: var(--glow); top: 120px; left: -120px; opacity: .16; animation: drift2 26s var(--ease) infinite alternate; }
.blob.b3 { width: 300px; height: 300px; background: #8B5CF6; bottom: -120px; right: 30%; opacity: .12; animation: drift3 30s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(-60px, 60px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(80px, -40px) scale(1.15); } }
@keyframes drift3 { to { transform: translate(-50px, -50px) scale(1.2); } }

/* ---------- hero visual (verify card) ---------- */
.hero-visual { position: relative; }
.verify-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  padding: 22px;
  position: relative;
  z-index: 2;
}
.verify-card .vc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.vc-head .dot-row { display: flex; gap: 6px; }
.vc-head .dot-row i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-2); display: block; }
.vc-title { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: -0.01em; }
.vrow {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 8px; border-radius: 12px;
  transition: background .25s;
}
.vrow:hover { background: var(--surface); }
.vrow .vemail { font-family: var(--mono); font-size: 13.5px; color: var(--ink); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vstatus {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.vstatus.valid { color: #0a7d4d; background: #e7f7ee; }
.vstatus.risky { color: #b45309; background: #fdf3e3; }
.vstatus.invalid { color: #be123c; background: #fde8ec; }
.vcheck {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
}
.vcheck.valid { background: #16a36a; }
.vcheck.risky { background: #e0913a; }
.vcheck.invalid { background: #e11d48; }
.vcheck svg { width: 14px; height: 14px; }
.vc-foot {
  margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.vc-foot .stat { display: flex; flex-direction: column; }
.vc-foot .stat b { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.vc-foot .stat span { font-size: 12px; color: var(--muted); }
.vc-speed { font-family: var(--mono); font-size: 12px; color: var(--accent-strong); background: var(--accent-soft); padding: 6px 11px; border-radius: var(--radius-pill); }

/* floating mini chips around the card */
.float-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 9px 13px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.float-chip .ic { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; }
.float-chip.fc1 { top: -22px; left: -26px; animation: bob 6s var(--ease) infinite alternate; }
.float-chip.fc2 { bottom: 38px; right: -30px; animation: bob 7s var(--ease) .6s infinite alternate; }
@keyframes bob { to { transform: translateY(-12px); } }

/* ---------- stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.stat-cell { padding: 30px 28px; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-cell .num { font-size: 40px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.stat-cell .num .unit { color: var(--accent); }
.stat-cell .lab { margin-top: 9px; font-size: 14.5px; color: var(--ink-2); }

/* ---------- feature highlights (icon rows) ---------- */
.hl-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.hl {
  padding: 26px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.hl:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.hl .hl-ic {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--accent-soft); color: var(--accent-strong);
}
.hl h3 { font-size: 18px; letter-spacing: -0.02em; }
.hl p { margin-top: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------- feature cards (2x2) ---------- */
.fc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fcard {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.fcard::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), var(--accent-softer), transparent 60%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow), var(--shadow-lg); border-color: color-mix(in srgb, var(--accent), white 55%); }
.fcard:hover::before { opacity: 1; }
.fcard .fc-ic {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, var(--accent), var(--glow));
  color: #fff; box-shadow: var(--shadow-glow);
  position: relative;
}
.fcard h3 { font-size: 22px; position: relative; }
.fcard p { margin-top: 12px; font-size: 15.5px; color: var(--ink-2); position: relative; line-height: 1.6; }
.fcard .fc-tag { margin-top: 18px; display: inline-flex; font-family: var(--mono); font-size: 12px; color: var(--accent-strong); position: relative; }

/* ---------- comparison table ---------- */
.cmp-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 20px 22px; text-align: left; font-size: 15.5px; }
.cmp thead th { font-weight: 600; color: var(--ink-2); font-size: 14px; border-bottom: 1px solid var(--line); }
.cmp thead th.us { color: var(--navy); }
.cmp tbody td { border-bottom: 1px solid var(--line); color: var(--ink-2); }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp .rowlabel { font-weight: 500; color: var(--navy); }
.cmp td.us, .cmp th.us {
  text-align: center;
  background: var(--accent-softer);
  border-left: 1px solid color-mix(in srgb, var(--accent), white 70%);
  border-right: 1px solid color-mix(in srgb, var(--accent), white 70%);
  position: relative;
}
.cmp td.col { text-align: center; }
.cmp thead th.us {
  position: relative;
}
.cmp thead .us .uschip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 700; color: var(--navy);
}
.cmp thead .us .uschip .logo-mark { width: 18px; height: 18px; }
.tick { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; transform: scale(.4); opacity: 0; transition: transform .45s var(--ease-out), opacity .3s; }
.tick svg { width: 14px; height: 14px; }
.revealed .tick { transform: scale(1); opacity: 1; }
.cross { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); color: var(--muted); }
.cross svg { width: 12px; height: 12px; }
.cmp .soft { color: var(--muted); font-size: 14.5px; }

/* ---------- use cases ---------- */
.uc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.uc {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px 28px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.uc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.uc .uc-ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--surface); color: var(--accent-strong); border: 1px solid var(--line); }
.uc h3 { font-size: 17.5px; }
.uc p { margin-top: 6px; font-size: 14.5px; color: var(--ink-2); }
.uc-closer { margin-top: 40px; text-align: center; font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.uc-closer .grad { background: linear-gradient(100deg, var(--accent), var(--glow)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- dark CTA ---------- */
.cta-dark {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 76px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 50% -10%, color-mix(in srgb, var(--accent), transparent 55%), transparent 60%);
  pointer-events: none;
}
.cta-dark::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 70%);
  pointer-events: none;
}
.cta-dark h2 { color: #fff; font-size: clamp(34px, 4.4vw, 48px); position: relative; }
.cta-dark p { position: relative; margin: 20px auto 0; max-width: 560px; color: #C5D0E4; font-size: 19px; }
.cta-dark .hero-cta { position: relative; justify-content: center; margin-top: 34px; }
.cta-dark .hero-note { color: #8aa0c4; }

/* full-bleed dark section variant */
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lede, .section-dark p { color: #C5D0E4; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: stretch; }
.price-grid.price-3 { grid-template-columns: repeat(3,1fr); max-width: 980px; margin-inline: auto; }
.pcard {
  display: flex; flex-direction: column;
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  transform: scale(1.02);
}
.pcard.featured:hover { transform: scale(1.02) translateY(-4px); }
.pcard .ptag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11.5px; font-weight: 600; color: #fff; background: var(--accent);
  padding: 4px 11px; border-radius: var(--radius-pill);
}
.pcard .pname { font-size: 15px; font-weight: 600; color: var(--accent-strong); }
.pcard .pprice { margin-top: 14px; display: flex; align-items: baseline; gap: 4px; }
.pcard .pprice .amt { font-size: 46px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.pcard .pprice .per { font-size: 15px; color: var(--muted); }
.pcard .pdesc { margin-top: 12px; font-size: 14.5px; color: var(--ink-2); min-height: 42px; }
.pcard .pcta { margin-top: 22px; }
.plist { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 13px; }
.plist li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.plist li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* every plan includes */
.epi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px 28px; max-width: 760px; margin-inline: auto; }
.epi { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: var(--navy); }
.epi .epi-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-strong); flex-shrink: 0; }
.epi .epi-ic svg { width: 16px; height: 16px; }

/* ---------- about ---------- */
.story-prose { max-width: 720px; }
.story-prose p { font-size: 19px; color: var(--ink-2); line-height: 1.7; margin-top: 22px; }
.story-prose p:first-child { margin-top: 0; }
.story-prose .lead { font-size: 22px; color: var(--navy); font-weight: 500; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.diff {
  padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.diff:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.diff .dnum { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--accent); padding-top: 3px; flex-shrink: 0; }
.diff h3 { font-size: 19px; }
.diff p { margin-top: 9px; font-size: 15px; color: var(--ink-2); }

.values-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.values-strip .vcell { background: #fff; padding: 32px 30px; }
.values-strip .vcell .num { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.values-strip .vcell h3 { margin-top: 12px; font-size: 19px; }
.values-strip .vcell p { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); transition: border-color .2s, box-shadow .2s, background .2s; outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid textarea { border-color: #e11d48; box-shadow: 0 0 0 4px #fde8ec; }
.field .err { display: none; font-size: 13px; color: #e11d48; margin-top: 6px; }
.field.invalid .err { display: block; }
.form-success {
  display: none; text-align: center; padding: 30px 20px;
}
.form-success.show { display: block; }
.form-success .check-big { width: 64px; height: 64px; border-radius: 50%; background: #e7f7ee; color: #16a36a; display: grid; place-items: center; margin: 0 auto 20px; }
.form-success h3 { font-size: 24px; }
.form-success p { margin-top: 10px; color: var(--ink-2); }

.contact-side .side-card {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
}
.contact-side .side-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(380px circle at 100% 0%, color-mix(in srgb, var(--accent), transparent 55%), transparent 60%);
}
.contact-side .side-card h3 { color: #fff; font-size: 20px; position: relative; }
.contact-side .email-big { position: relative; margin-top: 18px; font-size: 22px; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.contact-side .email-big svg { color: var(--glow); }
.contact-side .reply { position: relative; margin-top: 12px; font-size: 14.5px; color: #9fb2d1; display: flex; align-items: center; gap: 8px; }
.contact-side .reply .live { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.2); }
.quicklinks { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.quicklink {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  font-weight: 600; color: var(--navy); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.quicklink:hover { border-color: var(--accent); transform: translateX(3px); box-shadow: var(--shadow); }
.quicklink svg { color: var(--accent); }

/* ============================================================
   CENTERED HERO + FLOATING DASHBOARD (master-brief direction)
   ============================================================ */
.hero.centered { padding-top: 64px; padding-bottom: 70px; text-align: center; }
.hero-center { max-width: 880px; margin-inline: auto; position: relative; z-index: 2; }
.hero-center .pill { margin-inline: auto; }
.hero.centered h1 {
  font-size: clamp(42px, 5.8vw, 78px);
  margin-top: 22px;
  letter-spacing: -0.04em;
  line-height: 1.0;
}
.hero.centered .sub { margin: 24px auto 0; max-width: 640px; font-size: 20px; }
.hero.centered .hero-cta { justify-content: center; margin-top: 32px; }
.hero.centered .hero-note { justify-content: center; }
.hero.centered .trust-row { justify-content: center; margin-top: 22px; }

/* soft cloud glow behind hero text */
.cloud-glow {
  position: absolute; z-index: 0;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: min(1100px, 120%); height: 560px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 60% at 38% 42%, color-mix(in srgb, var(--accent), transparent 72%), transparent 70%),
    radial-gradient(ellipse 40% 55% at 64% 38%, color-mix(in srgb, var(--glow), transparent 74%), transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 30%, color-mix(in srgb, #8B5CF6, transparent 82%), transparent 72%);
  filter: blur(36px);
  opacity: .9;
}

/* floating dashboard wrapper */
.hero-dash-wrap {
  position: relative; z-index: 2;
  max-width: 1060px; margin: 56px auto 0;
  padding: 0 10px;
}
.hero-dash {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 50px 100px -36px rgba(15,31,61,.32), 0 24px 50px -28px rgba(15,31,61,.22);
  overflow: hidden;
  text-align: left;
}
.hero-dash::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--surface), white 30%));
  pointer-events: none; opacity: 0;
}

/* dashboard chrome */
.dash-top {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface), white 40%);
}
.dash-top .traffic { display: flex; gap: 7px; }
.dash-top .traffic i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dash-top .traffic i:nth-child(1){ background:#FF5F57; } .dash-top .traffic i:nth-child(2){ background:#FEBC2E; } .dash-top .traffic i:nth-child(3){ background:#28C840; }
.dash-top .dash-url {
  flex: 1; max-width: 360px; margin-inline: auto;
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px 16px; text-align: center;
}
.dash-top .dash-actions { display: flex; gap: 8px; }
.dash-top .dash-actions span { width: 28px; height: 28px; border-radius: 8px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); }

.dash-body { display: grid; grid-template-columns: 64px 1fr; min-height: 420px; }
.dash-rail {
  border-right: 1px solid var(--line); padding: 18px 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--surface), white 55%);
}
.dash-rail .rail-logo { width: 32px; height: 32px; margin-bottom: 12px; }
.dash-rail .rail-ic {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  color: var(--muted);
}
.dash-rail .rail-ic.on { background: var(--accent-soft); color: var(--accent-strong); }
.dash-rail .rail-ic svg { width: 19px; height: 19px; }
.dash-rail .rail-sp { flex: 1; }

.dash-main { padding: 24px 26px; }
.dash-h {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px;
}
.dash-h h4 { font-size: 19px; letter-spacing: -0.02em; }
.dash-h .dash-h-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
.dash-run {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: #fff; background: var(--accent);
  padding: 9px 16px; border-radius: var(--radius-pill);
}
.dash-run svg { width: 15px; height: 15px; }

.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.dash-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: #fff; }
.dash-card .dc-lab { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.dash-card .dc-lab .dc-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-card .dc-val { font-size: 27px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-top: 8px; line-height: 1; }
.dash-card .dc-val small { font-size: 14px; font-weight: 600; color: #16a36a; margin-left: 6px; letter-spacing: 0; }
.dash-card .dc-bar { height: 6px; border-radius: 3px; background: var(--surface-2); margin-top: 12px; overflow: hidden; }
.dash-card .dc-bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--glow)); }

/* dashboard table */
.dash-table { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.dash-tr {
  display: grid; grid-template-columns: 1fr 110px 84px;
  align-items: center; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid var(--line); font-size: 13.5px;
}
.dash-tr:last-child { border-bottom: none; }
.dash-tr.head { background: color-mix(in srgb, var(--surface), white 40%); font-size: 11.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.dash-tr .dt-email { font-family: var(--mono); color: var(--ink); display: flex; align-items: center; gap: 10px; overflow: hidden; }
.dash-tr .dt-email .di { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-size: 10px; font-weight: 700; }
.dash-tr .dt-email span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dpill { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-pill); }
.dpill .ddot { width: 7px; height: 7px; border-radius: 50%; }
.dpill.valid { color: #0a7d4d; background: #e7f7ee; } .dpill.valid .ddot { background: #16a36a; }
.dpill.risky { color: #b45309; background: #fdf3e3; } .dpill.risky .ddot { background: #e0913a; }
.dpill.invalid { color: #be123c; background: #fde8ec; } .dpill.invalid .ddot { background: #e11d48; }
.dash-tr .dt-score { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); text-align: right; }

/* floating metric badges around dashboard */
.dash-badge {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 20px 44px -14px rgba(15,31,61,.28);
  padding: 12px 16px; border-radius: 15px;
}
.dash-badge .db-ic { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; color: #fff; }
.dash-badge .db-t { font-size: 12px; color: var(--muted); line-height: 1.2; }
.dash-badge .db-v { font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.dash-badge.bdg1 { top: -26px; left: -40px; animation: bob 6s var(--ease) infinite alternate; }
.dash-badge.bdg2 { top: 196px; right: -46px; animation: bob 7s var(--ease) .8s infinite alternate; }
.dash-badge.bdg3 { bottom: 40px; left: -34px; animation: bob 6.6s var(--ease) .4s infinite alternate; }

/* client logo strip */
.logos-row { display: flex; align-items: center; justify-content: center; gap: 46px; flex-wrap: wrap; margin-top: 44px; }
.logos-row .lg-cap { width: 100%; text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 4px; letter-spacing: .02em; }
.logos-row .lg {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 700; color: #9aa7bd; letter-spacing: -0.02em;
  filter: grayscale(1); opacity: .8; transition: opacity .2s, color .2s;
}
.logos-row .lg:hover { opacity: 1; color: var(--ink-2); }
.logos-row .lg svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .dash-badge.bdg1 { left: 8px; } .dash-badge.bdg2 { right: 8px; } .dash-badge.bdg3 { left: 8px; }
}
@media (max-width: 680px) {
  .hero-dash-wrap { margin-top: 40px; }
  .dash-cards { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-rail { flex-direction: row; border-right: none; border-bottom: 1px solid var(--line); padding: 10px; gap: 6px; }
  .dash-rail .rail-sp, .dash-rail .rail-logo { display: none; }
  .dash-tr { grid-template-columns: 1fr 96px; }
  .dash-tr .dt-score { display: none; }
  .dash-badge { display: none; }
  .logos-row { gap: 26px; }
  .logos-row .lg { font-size: 15px; }
}

/* ---------- hero trust strip ---------- */
.trust-row { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #fff; margin-left: -11px;
  display: grid; place-items: center;
  font-size: 12.5px; font-weight: 600; color: #fff;
  box-shadow: 0 2px 6px rgba(15,31,61,.12);
}
.avatar-stack .av:first-child { margin-left: 0; }
.trust-meta { font-size: 14px; color: var(--ink-2); line-height: 1.35; }
.trust-meta b { color: var(--navy); font-weight: 600; }
.trust-meta .stars { display: inline-flex; gap: 1px; vertical-align: -2px; color: #F5A623; margin-right: 5px; }
.trust-meta .stars svg { width: 15px; height: 15px; }
.trust-sep { color: var(--line-strong); margin: 0 2px; }

/* monogram avatar palette */
.av.c1, .tav.c1 { background: linear-gradient(150deg,#2563EB,#3B82F6); }
.av.c2, .tav.c2 { background: linear-gradient(150deg,#7C3AED,#9F67FF); }
.av.c3, .tav.c3 { background: linear-gradient(150deg,#0E9F6E,#34D399); }
.av.c4, .tav.c4 { background: linear-gradient(150deg,#E0820B,#F5A623); }
.av.c5, .tav.c5 { background: linear-gradient(150deg,#E11D48,#FB7185); }

/* ---------- testimonials ---------- */
.tq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tcard {
  display: flex; flex-direction: column;
  padding: 32px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.tcard .stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: 18px; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard blockquote {
  margin: 0; flex: 1;
  font-size: 17.5px; line-height: 1.6; color: var(--ink);
  letter-spacing: -0.01em; text-wrap: pretty;
}
.tcard .tfoot { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.tcard .tav {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-size: 16px; font-weight: 600;
}
.tcard .tname { font-size: 15px; font-weight: 600; color: var(--navy); }
.tcard .trole { font-size: 13px; color: var(--muted); margin-top: 1px; }
.tcard .tpersona {
  margin-left: auto; align-self: flex-start;
  font-size: 11.5px; font-weight: 600; color: var(--accent-strong);
  background: var(--accent-soft); padding: 5px 11px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.t-cta { margin-top: 44px; text-align: center; }
.t-cta p { font-size: 21px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; max-width: 540px; margin: 0 auto 22px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding-block: 72px 36px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand .logo-word { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 15px; color: #9fb2d1; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: #6f86ab; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; color: #C5D0E4; transition: color .18s; }
.footer-col a:hover { color: var(--glow); }
.footer-bottom {
  margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom .copy { font-size: 14px; color: #7e93b5; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #C5D0E4; transition: background .2s, color .2s, transform .2s; }
.socials a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .float-chip { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- tweaks panel ---------- */
#tweaks-root { position: fixed; z-index: 1000; right: 22px; bottom: 22px; display: none; }
#tweaks-root.show { display: block; }
.tweaks-panel {
  width: 268px; background: #fff; border: 1px solid var(--line-strong);
  border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden;
  font-family: var(--font);
}
.tweaks-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); cursor: grab; }
.tweaks-head h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
.tweaks-head .tx { width: 26px; height: 26px; border: none; background: var(--surface); border-radius: 8px; cursor: pointer; color: var(--ink-2); display: grid; place-items: center; }
.tweaks-head .tx:hover { background: var(--surface-2); }
.tweaks-body { padding: 16px; }
.tweaks-body .tlabel { font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 12px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 38px; height: 38px; border-radius: 10px; cursor: pointer; border: 2px solid transparent; box-shadow: inset 0 0 0 2px #fff; transition: transform .15s; position: relative; }
.swatch:hover { transform: scale(1.08); }
.swatch.sel { border-color: var(--navy); }
.swatch.sel::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-center { display: none; }
  .nav-right .desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .hl-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .price-grid.price-3 { grid-template-columns: 1fr; max-width: 440px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding-block: 72px; }
  .container { padding-inline: 20px; }
  .fc-grid, .uc-grid, .diff-grid, .epi-grid, .values-strip, .tq-grid { grid-template-columns: 1fr; }
  .hl-grid, .price-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .cta-dark { padding: 56px 28px; }
  .cmp th, .cmp td { padding: 14px 12px; font-size: 13.5px; }
  .cmp .soft { font-size: 12.5px; }
  .pcard.featured { transform: none; }
  .pcard.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
}
