/* ============================================================
   Millers Software — Design System
   Brand colors derived from the Millers "M" logo
   ============================================================ */

:root {
  /* Brand palette */
  --teal: #3FC9CB;
  --teal-light: #7BE6E8;
  --teal-50: #E6FAFA;
  --purple: #5E3FE8;
  --purple-dark: #4326CC;
  --purple-light: #7A5BF7;
  --purple-50: #EFEBFE;
  --green: #8FE234;
  --green-dark: #6FBB1F;
  --green-50: #F1FBE0;

  /* Neutrals */
  --ink: #0B1437;
  --ink-2: #1B2452;
  --slate-700: #3A4570;
  --slate-500: #6B7494;
  --slate-300: #C8CCDC;
  --slate-100: #EEF0F7;
  --slate-50: #F7F8FC;
  --white: #FFFFFF;

  /* Semantic */
  --bg: #FFFFFF;
  --bg-alt: #F7F8FC;
  --text: #0B1437;
  --text-muted: #6B7494;
  --border: #E5E8F2;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11,20,55,.06), 0 1px 3px rgba(11,20,55,.04);
  --shadow-md: 0 4px 12px rgba(11,20,55,.08), 0 2px 4px rgba(11,20,55,.04);
  --shadow-lg: 0 20px 40px rgba(11,20,55,.12), 0 8px 16px rgba(11,20,55,.06);
  --shadow-glow: 0 20px 60px rgba(94,63,232,.25);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --gradient-brand: linear-gradient(135deg, #3FC9CB 0%, #5E3FE8 60%, #8FE234 130%);
  --gradient-purple: linear-gradient(135deg, #7A5BF7, #4326CC);
  --gradient-soft: linear-gradient(180deg, #F7F8FC 0%, #FFFFFF 100%);

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
  --header-h: 76px;

  /* Type — Apple system font stack (apple.com uses SF Pro Display/Text via -apple-system) */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-weight: 600; line-height: 1.1; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.022em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; letter-spacing: -.028em; }
h3 { font-size: 1.25rem; letter-spacing: -.018em; }
p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--ink); color: rgba(255,255,255,.85); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--teal-light); }

.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 680px; }
.muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-purple);
  color: #fff;
  box-shadow: 0 6px 18px rgba(94,63,232,.35);
}
.btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(94,63,232,.45); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--purple); color: var(--purple); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: transparent;
}
.btn-ghost:hover { color: var(--purple); }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-dark:hover { color: var(--purple); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color:#fff; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-arrow::after { content: "→"; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 1.2rem; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand-logo { height: 44px; width: auto; }
.brand-name { font-weight: 800; }
.brand-name span { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: 10px;
  font-size: .95rem; font-weight: 500; color: var(--ink-2);
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--purple); background: var(--purple-50); }
.nav-link svg { width: 12px; height: 12px; opacity: .6; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  min-width: 640px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  border: 1px solid var(--border);
}
.nav-item:hover > .mega,
.nav-item:focus-within > .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-link {
  display: block; padding: 12px 14px; border-radius: 10px;
  color: var(--ink-2); transition: background .15s ease;
}
.mega-link:hover { background: var(--slate-50); color: var(--purple); }
.mega-link strong { display: block; font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.mega-link span { display: block; font-size: .8rem; color: var(--text-muted); line-height: 1.4; }
.mega-link:hover strong { color: var(--purple); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

@media (max-width: 980px) {
  .nav, .header-cta .btn-secondary { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { display: block; }
}

.mobile-nav {
  display: none;
  position: fixed; inset: var(--header-h) 0 0 0;
  background: #fff; z-index: 49;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 600; }
.mobile-nav .sub { padding-left: 16px; font-weight: 400; color: var(--text-muted); }
.mobile-nav .btn { width: 100%; margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0 clamp(64px, 8vw, 110px);
  background:
    radial-gradient(ellipse at top right, rgba(143,226,52,.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(63,201,203,.18), transparent 55%),
    linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.hero-visual { width: 100%; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .grad { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 1.2rem; color: var(--text-muted); max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; color: var(--text-muted); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* Hero visual / product card stack */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-card-head {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.hero-card-head .swatch { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-body { padding-top: 16px; }
.hero-stat-row { display: flex; gap: 12px; margin-bottom: 12px; }
.hero-stat {
  flex: 1; padding: 14px; border-radius: 12px;
  background: var(--slate-50);
}
.hero-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.hero-stat .lbl { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.hero-bar { height: 8px; background: var(--slate-100); border-radius: 999px; overflow: hidden; margin: 6px 0; }
.hero-bar i { display: block; height: 100%; border-radius: 999px; background: var(--gradient-brand); }
.hero-rows { display: grid; gap: 10px; margin-top: 16px; }
.hero-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 10px; background: var(--slate-50); font-size: .85rem; }
.hero-row .tag { font-size: .7rem; padding: 3px 8px; border-radius: 999px; background: var(--green-50); color: var(--green-dark); font-weight: 600; }
.hero-row .tag.alt { background: var(--purple-50); color: var(--purple); }
.hero-row .tag.t { background: var(--teal-50); color: #1f8587; }

.hero-card.floating-1 { position: absolute; right: -20px; top: 40px; padding: 14px 18px; min-width: 220px; }
.hero-card.floating-2 { position: absolute; left: -10px; bottom: -10px; padding: 14px 18px; min-width: 220px; }

/* ---------- Hero v4 — port of MillersDashboardPreview React component ---------- */
.hero-centered {
  text-align: center;
  padding: clamp(56px, 7vw, 100px) 0 0;
  background: #fbfcf8;
}
.hero-centered .container { max-width: 1180px; }
.hero-centered h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); margin-bottom: .6rem; }
.hero-centered .hero-lead {
  max-width: 640px; margin: 0 auto 28px; font-size: 1.15rem;
  color: var(--text-muted); line-height: 1.55;
}
.hero-centered .hero-cta { display: flex; justify-content: center; margin-bottom: 56px; }

.hero-canvas {
  position: relative;
  max-width: 920px; margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .hero-canvas { padding: 0 16px; }
}

/* Trust strip below the hero canvas */
.trust-strip {
  margin: 96px auto 0;
  max-width: 1140px; padding: 64px 24px 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 900px) { .trust-strip { grid-template-columns: 1fr; gap: 20px; } }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item .ic.g { background: var(--green-50); color: var(--green-dark); }
.trust-item .ic.p { background: var(--purple-50); color: var(--purple); }
.trust-item .ic.t { background: var(--teal-50); color: #1f8587; }
.trust-item strong { display: block; font-size: 1rem; color: var(--ink); line-height: 1.3; }
.trust-item span { display: block; font-size: .88rem; color: var(--text-muted); }

/* Explore by area card (right of dashboard) */
.explore {
  position: absolute;
  right: -180px; top: 110px;
  width: 240px;
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .12);
}
.explore .h {
  font-size: 1.02rem; font-weight: 700; color: #334155;
  margin: 0 0 14px; letter-spacing: -.02em;
}
.explore-list { display: flex; flex-direction: column; }
.explore-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  color: #111532; font-size: .88rem; font-weight: 700;
  transition: opacity .15s;
}
.explore-row > .left { display: flex; align-items: center; gap: 12px; }
.explore-row:hover { opacity: .8; color: #111532; }
.explore-row .ic {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
}
.explore-row .ic svg { width: 17px; height: 17px; }
/* Tailwind palette: violet-100/600, blue-100/600, green-100/600, fuchsia-100/600, orange-100/500 */
.explore-row .ic.p  { background: #EDE9FE; color: #7C3AED; }
.explore-row .ic.b  { background: #DBEAFE; color: #2563EB; }
.explore-row .ic.g  { background: #DCFCE7; color: #16A34A; }
.explore-row .ic.pk { background: #FAE8FF; color: #C026D3; }
.explore-row .ic.o  { background: #FFEDD5; color: #F97316; }
.explore-row .ch { color: #94A3B8; font-size: 1.05rem; }
@media (max-width: 1200px) {
  .explore { position: static; width: auto; margin: 20px 0 0; right: auto; top: auto; }
}
.explore-row .ch { color: var(--slate-300); font-size: 1.1rem; }

/* Dashboard header bar — Overview title + filter pill + bell */
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.dash-topbar .ov-title {
  font-weight: 700; color: #111532; font-size: 1.2rem;
  letter-spacing: -.025em; margin: 0;
}
.dash-topbar .ov-controls { display: flex; align-items: center; gap: 14px; }
.dash-topbar .ov-filter {
  font-size: .76rem; color: #64748B; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid #F1F5F9;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
  cursor: pointer;
}
.dash-topbar .ov-filter svg { width: 11px; height: 11px; }
.dash-topbar .bell {
  color: #94A3B8; cursor: pointer;
  display: grid; place-items: center;
}
.dash-topbar .bell svg { width: 17px; height: 17px; }

/* Brand-color window dots (cyan-300 / violet-500 / lime-400) */
.cdot.brand-c { background: #67E8F9; }
.cdot.brand-p { background: #8B5CF6; }
.cdot.brand-g { background: #A3E635; }

/* Line-chart variant */
.dash-line-card {
  max-width: 800px;
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(15,23,42,.05);
}
.dash-line-card .h {
  font-size: 1.05rem; font-weight: 700; color: #111532;
  margin: 0 0 18px; letter-spacing: -.02em;
}
.dash-line-plot {
  position: relative; height: 150px;
}
.dash-line-y {
  position: absolute; left: 0; top: 0;
  height: 120px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: .72rem; color: #94A3B8; font-weight: 600;
}
.dash-line-svg-wrap {
  position: relative; height: 128px;
  margin-left: 48px;
  background:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent calc(25% - 1px),
      #F0F2F8 calc(25% - 1px),
      #F0F2F8 25%,
      transparent 25%,
      transparent calc(50% - 1px),
      #F0F2F8 calc(50% - 1px),
      #F0F2F8 50%,
      transparent 50%,
      transparent calc(75% - 1px),
      #F0F2F8 calc(75% - 1px),
      #F0F2F8 75%,
      transparent 75%
    );
  border-radius: 4px;
}
.dash-line-svg { width: 100%; height: 100%; display: block; }
.dash-line-x {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: #94A3B8; font-weight: 600;
  margin-top: 2px; margin-left: 48px;
}

/* ---------- Hero dashboard mockup v2 (matches reference comp) ---------- */
.dash-caption {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--purple); font-size: .92rem; font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.dash-caption .sp { color: var(--purple); opacity: .8; font-size: .9rem; }

.dash {
  position: relative;
  background: rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
  overflow: visible;
}
.dash-chrome {
  display: flex; align-items: center; gap: 10px;
  height: 44px;
  padding: 0 22px;
  border-bottom: 1px solid #F1F5F9;
}
.dash-chrome .cdot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dash-chrome .cdot.r { background: #FF5F57; }
.dash-chrome .cdot.y { background: #FEBC2E; }
.dash-chrome .cdot.g { background: #28C940; }
.dash-search {
  flex: 1; max-width: 280px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 7px;
  background: #fff; border: 1px solid var(--border);
  font-size: .72rem; color: var(--slate-500);
}
.dash-search svg { width: 11px; height: 11px; flex-shrink: 0; }
.dash-avatar {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #5E3FE8, #4326CC);
  color: #fff; display: grid; place-items: center;
  font-size: .65rem; font-weight: 700;
}

.dash-body { display: flex; min-height: 360px; position: relative; }

/* Sidebar */
.dash-side {
  width: 72px; padding: 20px 0;
  border-right: 1px solid #F1F5F9;
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0;
}
.dash-side .dash-logo {
  width: 34px; height: 34px; margin-bottom: 22px;
  display: block;
  object-fit: contain;
}
.dash-side .side-stack {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.dash-side .side-bottom { margin-top: auto; }
.dash-side .dash-side-link {
  display: grid; place-items: center;
  color: #94A3B8;
  transition: color .15s;
}
.dash-side .dash-side-link svg { width: 18px; height: 18px; }
.dash-side .dash-side-link:hover { color: var(--purple); }
.dash-side .dash-side-link.active { color: var(--ink-2); }

/* Main pane */
.dash-main {
  flex: 1; padding: 28px 24px 28px 28px;
  display: flex; flex-direction: column; gap: 18px;
  min-width: 0;
}

/* KPI cards */
.dash-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 800px;
}
.dash-kpi {
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 1px 2px rgba(15,23,42,.05);
}
.dash-kpi-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.dash-kpi-ico {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dash-kpi-ico svg { width: 17px; height: 17px; }
/* Tailwind-aligned palette: violet-100/600, blue-100/600, lime-100 + green-600 */
.dash-kpi-ico.t { background: #DBEAFE; color: #2563EB; }
.dash-kpi-ico.p { background: #EDE9FE; color: #7C3AED; }
.dash-kpi-ico.g { background: #ECFCCB; color: #16A34A; }
.dash-kpi .name {
  font-size: .78rem; color: #475569; font-weight: 700;
}
.dash-kpi .val {
  margin-top: 12px;
  font-size: 1.5rem; font-weight: 700; color: #111532;
  letter-spacing: -.025em; line-height: 1.1;
}
.dash-kpi .delta {
  margin-top: 10px;
  font-size: .76rem; color: #94A3B8; font-weight: 600;
}
.dash-kpi .delta::before { content: "▲"; color: #10B981; margin-right: 4px; font-size: .68rem; }

/* Chart */
.dash-chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.dash-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.dash-chart-head .title { font-size: .78rem; font-weight: 600; color: var(--ink); }
.dash-chart-head .filter {
  font-size: .65rem; color: var(--slate-500); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 7px; border-radius: 5px;
  border: 1px solid var(--border);
  background: #fff;
}
.dash-chart-head .filter svg { width: 10px; height: 10px; opacity: .6; }

.dash-chart-plot {
  display: grid; grid-template-columns: 32px 1fr; gap: 6px;
}
.dash-chart-y {
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: .54rem; color: var(--slate-500); font-weight: 500;
  text-align: right;
  padding-bottom: 14px;
  height: 76px;
}
.dash-chart-svg-wrap { position: relative; height: 76px; }
.dash-chart-svg-wrap::before,
.dash-chart-svg-wrap::after {
  content: "";
  position: absolute; left: 0; right: 0;
  border-top: 1px dashed #EEF0F7;
}
.dash-chart-svg {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent calc(20% - 1px),
      #F0F2F8 calc(20% - 1px),
      #F0F2F8 20%,
      transparent 20%,
      transparent calc(40% - 1px),
      #F0F2F8 calc(40% - 1px),
      #F0F2F8 40%,
      transparent 40%,
      transparent calc(60% - 1px),
      #F0F2F8 calc(60% - 1px),
      #F0F2F8 60%,
      transparent 60%,
      transparent calc(80% - 1px),
      #F0F2F8 calc(80% - 1px),
      #F0F2F8 80%,
      transparent 80%
    );
  display: block;
}
.dash-chart-x {
  display: grid; grid-template-columns: repeat(12, 1fr);
  font-size: .58rem; color: var(--slate-500); font-weight: 500;
  margin-top: 6px; padding-left: 38px;
  text-align: center;
}

/* Recent activity */
.dash-activity {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.dash-activity > .head { font-size: .78rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.dash-activity .row {
  display: grid; grid-template-columns: 22px 1fr auto auto; gap: 8px; align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--slate-100);
  font-size: .72rem;
}
.dash-activity .row:first-of-type { border-top: 0; }
.dash-activity .row .ic {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
}
.dash-activity .row .ic svg { width: 11px; height: 11px; }
.dash-activity .row .ic.g { background: #E7F7CE; color: var(--green-dark); }
.dash-activity .row .ic.p { background: #E8E2FC; color: var(--purple); }
.dash-activity .row .txt { color: var(--ink); }
.dash-activity .row .meta { color: var(--slate-500); font-weight: 500; }
.dash-activity .row .time { color: var(--slate-500); font-size: .68rem; }

@media (max-width: 900px) {
  .dash-side { width: 42px; }
  .dash-kpis { grid-template-columns: 1fr; }
  .dash-chart-x { font-size: .55rem; }
}

/* ---------- Hero dashboard mockup (refined) ---------- */
.kpi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.kpi-tile {
  background: var(--slate-50); border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--border);
}
.kpi-tile .lbl { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.kpi-tile .num { font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.1; }
.kpi-tile .delta { font-size: .72rem; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.kpi-tile .delta.up { color: var(--green-dark); }
.kpi-tile .delta.up::before { content: "▲"; font-size: .6rem; }

.chart-card {
  margin-top: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #FAFBFF 0%, #F4F5FC 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.chart-head .t { font-size: .78rem; color: var(--text-muted); font-weight: 600; }
.chart-head .y { font-size: .72rem; color: var(--purple); font-weight: 700; }
.chart-svg { width: 100%; height: 64px; display: block; }
.chart-axis { font-size: .62rem; color: var(--text-muted); display: flex; justify-content: space-between; margin-top: 4px; padding: 0 2px; }

.module-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: #fff; border: 1px solid var(--border);
  font-size: .85rem;
}
.module-row + .module-row { margin-top: 8px; }
.module-tag {
  font-size: .65rem; font-weight: 800; letter-spacing: .04em;
  padding: 4px 7px; border-radius: 6px;
  background: var(--purple-50); color: var(--purple);
}
.module-tag.t { background: var(--teal-50); color: #1f8587; }
.module-tag.g { background: var(--green-50); color: var(--green-dark); }
.module-row .txt { flex: 1; color: var(--ink-2); }
.module-row .val {
  font-size: .72rem; font-weight: 600; color: var(--text-muted);
  padding: 3px 8px; border-radius: 999px; background: var(--slate-50);
}
.float-tile { display: flex; gap: 12px; align-items: center; }
.float-tile .ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--purple-50); color: var(--purple); font-weight: 800; }
.float-tile .ico.alt { background: var(--green-50); color: var(--green-dark); }
.float-tile .ico.t { background: var(--teal-50); color: #1f8587; }
.float-tile small { color: var(--text-muted); font-size: .75rem; display: block; }
.float-tile strong { font-size: .9rem; }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.logo-strip-title { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.logo-strip-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }
.fake-logo {
  text-align: center; font-weight: 800; letter-spacing: -.02em;
  color: var(--slate-500); font-size: 1.1rem;
  opacity: .8;
}
.fake-logo .accent { color: var(--purple); }
@media (max-width: 900px) {
  .logo-strip-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ---------- Cards / grids ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; margin: 0; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: var(--ink);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94,63,232,.25);
  color: var(--ink);
}
.product-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem;
  background: var(--purple-50); color: var(--purple);
  margin-bottom: 18px;
}
.product-card .ico.teal { background: var(--teal-50); color: #1f8587; }
.product-card .ico.green { background: var(--green-50); color: var(--green-dark); }
.product-card h3 { margin: 0 0 6px; }
.product-card p { margin: 0 0 14px; color: var(--text-muted); font-size: .95rem; }
.product-card .more { margin-top: auto; font-weight: 600; color: var(--purple); font-size: .9rem; display: inline-flex; align-items: center; gap: 4px; }
.product-card .more::after { content: "→"; transition: transform .2s ease; }
.product-card:hover .more::after { transform: translateX(3px); }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature-list li { padding-left: 32px; position: relative; color: var(--ink-2); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236FBB1F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Industries ---------- */
.industry-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  gap: 12px;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--ink); }
.industry-card .emoji {
  font-size: 1.6rem; width: 52px; height: 52px;
  border-radius: 14px; display: grid; place-items: center;
  background: var(--gradient-purple); color: #fff;
}
.industry-card h3 { margin: 0; }
.industry-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.industry-card .more { margin-top: 4px; font-weight: 600; color: var(--purple); font-size: .9rem; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #2A1B5E 100%);
  color: #fff; border-radius: var(--radius-xl);
  padding: 56px clamp(28px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: ""; position: absolute; inset: 0; opacity: .25;
  background:
    radial-gradient(ellipse at top right, rgba(143,226,52,.35), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(63,201,203,.35), transparent 50%);
  pointer-events: none;
}
.testimonial > * { position: relative; }
.testimonial .quote { font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.4; max-width: 800px; font-weight: 500; }
.testimonial cite { font-style: normal; display: block; margin-top: 24px; color: rgba(255,255,255,.7); font-size: .95rem; }
.testimonial cite strong { color: #fff; display: block; margin-bottom: 2px; font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center;
  padding: 80px 32px;
  background: var(--gradient-purple);
  color: #fff; border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(143,226,52,.2), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(63,201,203,.25), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.1rem; }
.cta-banner .btn { background: #fff; color: var(--purple); }
.cta-banner .btn:hover { background: var(--slate-50); }
.cta-banner .btn.alt { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink-2); }
.field label .req { color: #D43F4F; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: 12px 14px;
  border-radius: 10px; border: 1px solid var(--border);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(94,63,232,.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.form-foot { font-size: .8rem; color: var(--text-muted); margin-top: 8px; }
.form-success {
  background: var(--green-50); border: 1px solid #C9E89A;
  color: var(--green-dark); padding: 16px; border-radius: 10px;
  margin-bottom: 16px; display: none;
}
.form-success.show { display: block; }
.field-error { color: #D43F4F; font-size: .8rem; margin-top: 4px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #D43F4F; }
.field.invalid .field-error { display: block; }

/* ---------- Page headers ---------- */
.page-hero {
  padding: clamp(72px, 9vw, 112px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse at top right, rgba(143,226,52,.14), transparent 50%),
    radial-gradient(ellipse at top left, rgba(63,201,203,.14), transparent 50%),
    linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { margin: 0 auto 28px; font-size: 1.15rem; }
.breadcrumbs { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--purple); }
.breadcrumbs .sep { margin: 0 6px; opacity: .6; }

/* ---------- Product detail ---------- */
.product-hero {
  padding: clamp(72px, 9vw, 112px) 0 clamp(56px, 7vw, 88px);
  background:
    radial-gradient(ellipse at right, rgba(94,63,232,.10), transparent 55%),
    linear-gradient(180deg, #F7F8FC 0%, #FFFFFF 100%);
}
.product-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .product-hero-grid { grid-template-columns: 1fr; } }
.product-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--purple-50); color: var(--purple);
  font-size: .85rem; font-weight: 600; margin-bottom: 18px;
}
.product-badge .dot { width: 8px; height: 8px; background: var(--purple); border-radius: 50%; }

.capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .capabilities { grid-template-columns: 1fr; } }
.cap-card { padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.cap-card .ico-sm { width: 38px; height: 38px; border-radius: 10px; background: var(--purple-50); color: var(--purple); display: grid; place-items: center; font-weight: 800; margin-bottom: 12px; }
.cap-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cap-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr; } }
.stat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-block .stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.stat-block .stat .n { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.stat-block .stat .n .g { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-block .stat .l { color: var(--text-muted); font-size: .9rem; }

/* Use cases */
.usecase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .usecase { grid-template-columns: 1fr; } }
.uc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.uc-card .tag { display:inline-block; padding: 4px 10px; border-radius: 999px; background: var(--teal-50); color: #1f8587; font-size: .75rem; font-weight: 600; margin-bottom: 10px; }
.uc-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.uc-card p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--purple); font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 4px 22px; color: var(--text-muted); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--purple);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.price-card.featured::before {
  content: "Most popular"; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-purple); color: #fff;
  padding: 4px 14px; border-radius: 999px; font-size: .75rem; font-weight: 600;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price { font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin: 12px 0 4px; }
.price-card .price small { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.price-card .desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.price-card ul li { padding-left: 28px; position: relative; color: var(--ink-2); font-size: .92rem; }
.price-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-50); color: var(--green-dark);
  display: grid; place-items: center; font-size: .7rem; font-weight: 800;
}
.price-card .btn { margin-top: auto; }

/* ---------- Resources ---------- */
.resource-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  color: var(--ink);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--ink); }
.resource-thumb {
  height: 160px;
  background: var(--gradient-purple);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.8rem; letter-spacing: -.02em;
}
.resource-thumb.t { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--ink); }
.resource-thumb.g { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--ink); }
.resource-thumb.p { background: var(--gradient-purple); }
.resource-card .body { padding: 22px; }
.resource-card .tag { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: 8px; }
.resource-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.resource-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px;
}
.filter-bar button {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff; color: var(--ink-2);
  font-weight: 500; font-size: .9rem;
  transition: all .15s;
}
.filter-bar button:hover, .filter-bar button.active { border-color: var(--purple); color: var(--purple); background: var(--purple-50); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand-name span { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 280px; }
.footer-col h4 {
  color: #fff; font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); margin-right: 18px; font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- About / Content pages ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 32px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.value-card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gradient-brand); color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--text-muted); margin: 0; }

.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px;
}
@media (max-width: 900px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }
.kpi { text-align: center; padding: 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); }
.kpi .n { font-size: 2.2rem; font-weight: 800; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.02em; }
.kpi .l { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal-content h2 { margin-top: 40px; }
.legal-content p, .legal-content li { color: var(--ink-2); }
.legal-content ul { padding-left: 22px; }

/* ---------- Utility ---------- */
.divider { height: 1px; background: var(--border); margin: 64px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Focus accessible */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print */
@media print { .site-header, .site-footer, .cta-banner, .hero-actions { display: none !important; } }
