/* ============================================================
   EOX Vantage — Design System
   Brand: Deep Teal anchor, Action Blue accent. Quicksand + Open Sans.
   ============================================================ */

:root {
  /* ---- Brand anchors ---- */
  --teal:        #004559;   /* primary anchor */
  --teal-700:    #00637E;
  --teal-900:    #00323F;
  --navy:        #0A2D5B;   /* deep navy — new */

  /* ---- Blue accent ramp (pale → vivid → deep) ---- */
  --sky-200:     #98E6FF;   /* palest — new */
  --sky-300:     #67CBFF;   /* light  — new */
  --sky:         #38B6FF;   /* sky    — refined to palette */
  --sky-2:       #37AFFF;
  --action:      #0398FF;   /* primary action accent */
  --blue-600:    #0283FF;   /* new */
  --cyan:        #00A1E0;   /* new */
  --blue-700:    #2E7DE9;   /* new */
  --indigo:      #357EDE;
  --steel:       #4495D1;   /* new */
  --royal:       #154BE7;   /* deep royal — new */
  --periwinkle:  #5271FF;   /* new */
  --violet:      #4849FF;   /* new */

  /* ---- Neutrals ---- */
  --ink:         #0F2A33;
  --slate:       #5A6B72;
  --mist:        #F4F8FA;
  --line:        #E2EBEF;
  --cloud:       #D9D9D9;   /* new */
  --white:       #FFFFFF;

  /* Translucent brand layers */
  --teal-tint:      rgba(0, 69, 89, 0.06);
  --action-tint:    rgba(3, 152, 255, 0.10);
  --periwinkle-tint: rgba(82, 113, 255, 0.10);
  --royal-tint:      rgba(21, 75, 231, 0.10);

  /* Type */
  --font-head: "Quicksand", "Segoe UI", system-ui, sans-serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, sans-serif;
  --font-ui:   "Segoe UI", "Open Sans", system-ui, sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(15, 42, 51, 0.06), 0 1px 3px rgba(15, 42, 51, 0.05);
  --sh:    0 6px 18px rgba(15, 42, 51, 0.08), 0 2px 6px rgba(15, 42, 51, 0.05);
  --sh-lg: 0 18px 48px rgba(15, 42, 51, 0.14), 0 6px 16px rgba(15, 42, 51, 0.08);
  --sh-blue: 0 14px 34px rgba(3, 152, 255, 0.28);
  --sh-peri: 0 14px 34px rgba(82, 113, 255, 0.30);

  /* Layout */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --header-h: 76px;
  --promo-h: 54px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--action); text-decoration: none; }
a:hover { color: var(--sky); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Type scale ---------- */
.h1 { font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.5rem); }   /* ~56px */
.h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.5rem); }      /* ~40px */
.h3 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.625rem); }  /* ~26px */
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action);
  margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--sky); }
.lead { font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); color: var(--slate); line-height: 1.6; }
.muted { color: var(--slate); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--mist { background: var(--mist); }
.section--teal { background: var(--teal); color: rgba(255,255,255,0.85); }
.section-head { max-width: 760px; margin: 0 0 clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 + .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--action); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { background: var(--sky); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--action); color: var(--action); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.textlink {
  font-family: var(--font-head); font-weight: 600; color: var(--action);
  display: inline-flex; align-items: center; gap: 7px;
}
.textlink .arr { transition: transform .2s ease; }
.textlink:hover .arr { transform: translateX(4px); }

/* ============================================================
   HEADER / MEGA-NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(12px);
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--line);
}
.header-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut);
  display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 40px; width: auto; display: block; }
/* Dark (unscrolled) header: render the black wordmark white */
.site-header:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.site-header.scrolled .brand-logo { filter: brightness(1) invert(0) !important; }
/* Footer sits on dark teal — keep the logo white there too */
.footer-brand .brand-logo { height: 38px; filter: brightness(0) invert(1); }
.brand .brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em;
  color: #fff; transition: color .3s ease;
}
.scrolled .brand .brand-name { color: var(--teal); }

/* ============================================================
   PROMO BANNER (AI assessment) — fixed strip under the nav
   ============================================================ */
.promo-bar {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 90;
  height: var(--promo-h);
  display: flex; align-items: center;
  background: linear-gradient(90deg, var(--royal) 0%, var(--periwinkle) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(21, 75, 231, 0.26);
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.promo-bar::before { /* subtle sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 180% at 88% -40%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%);
}
.promo-bar.promo-hidden { transform: translateY(calc(-100% - var(--header-h))); opacity: 0; pointer-events: none; }
body.promo-dismissed .promo-bar { display: none; }
body.promo-dismissed { --promo-h: 0px; }
.promo-inner {
  position: relative; z-index: 1; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding-inline: var(--gut);
  display: flex; align-items: center; gap: 14px;
}
.promo-spark { display: inline-flex; flex-shrink: 0; }
.promo-spark svg { width: 20px; height: 20px; color: var(--sky-200); }
.promo-text {
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.3;
  color: rgba(255,255,255,0.92); margin: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.promo-text strong { font-family: var(--font-head); font-weight: 700; color: #fff; }
.promo-cta {
  margin-left: auto; flex-shrink: 0; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--royal); background: #fff;
  padding: 8px 18px; border-radius: var(--r-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform .18s ease, box-shadow .2s ease, color .2s ease;
}
.promo-cta:hover { transform: translateY(-1px); color: var(--royal); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.promo-cta .arr { transition: transform .2s ease; }
.promo-cta:hover .arr { transform: translateX(3px); }
.promo-close {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.14); border: none; color: #fff;
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  transition: background .2s ease;
}
.promo-close:hover { background: rgba(255,255,255,0.28); }
@media (max-width: 720px) {
  .promo-sub { display: none; }
  .promo-text { white-space: normal; }
  .promo-cta { padding: 8px 14px; font-size: 0.85rem; }
  .promo-inner { gap: 10px; }
}
@media (max-width: 420px) {
  .promo-cta .arr { display: none; }
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: 0.975rem;
  color: rgba(255,255,255,0.92); padding: 10px 14px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: none; border: none; transition: color .2s ease, background .2s ease;
}
.scrolled .nav-link { color: var(--ink); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.scrolled .nav-link:hover { color: var(--action); background: var(--action-tint); }
.nav-link .caret { width: 9px; height: 9px; opacity: .7; transition: transform .25s ease; }
.nav-item.open .nav-link .caret { transform: rotate(180deg); }

/* Dropdown panels */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 18px; min-width: 280px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown::before { content:""; position:absolute; top:-8px; left:0; right:0; height:14px; }
.dd-link {
  display: block; padding: 11px 14px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 0.95rem;
  transition: background .15s ease, color .15s ease;
}
.dd-link small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.8rem; color: var(--slate); margin-top: 2px; }
.dd-link:hover { background: var(--mist); color: var(--action); }
.dd-link:hover small { color: var(--slate); }

/* Mega dropdown (Industries) */
.dropdown.mega { min-width: 560px; padding: 0; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mega-col { padding: 22px; }
.mega-col + .mega-col { background: var(--mist); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.mega-col h4 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; padding-inline: 14px; font-family: var(--font-ui); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 10px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: background .3s; }
.scrolled .hamburger span { background: var(--ink); }
.hamburger span + span { margin-top: 5px; }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(15,42,51,0.45); z-index: 110; opacity: 0; visibility: hidden; transition: opacity .3s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 88vw); background: #fff; z-index: 120;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; box-shadow: var(--sh-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--gut); border-bottom: 1px solid var(--line); }
.drawer-head .brand-name { color: var(--teal); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.drawer-close { background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--slate); cursor: pointer; }
.drawer-body { overflow-y: auto; padding: 12px var(--gut) 28px; flex: 1; }
.acc { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 18px 2px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--teal); text-align: left;
}
.acc-trigger .caret { width: 12px; transition: transform .25s; }
.acc.open .acc-trigger .caret { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc.open .acc-panel { max-height: 420px; }
.acc-panel a { display: block; padding: 10px 2px 10px 14px; color: var(--slate); font-family: var(--font-head); font-weight: 500; font-size: 0.98rem; }
.acc-panel a:hover { color: var(--action); }
.drawer .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ============================================================
   HERO (dark)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 8%, rgba(3,152,255,0.32) 0%, rgba(3,152,255,0) 46%),
    radial-gradient(90% 90% at 100% 100%, rgba(82,113,255,0.28) 0%, rgba(82,113,255,0) 52%),
    radial-gradient(120% 110% at 8% 100%, rgba(53,126,222,0.30) 0%, rgba(53,126,222,0) 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--teal) 50%, var(--teal-700) 100%);
  color: #fff;
  padding-top: calc(var(--header-h) + var(--promo-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(64px, 8vw, 120px);
}
.hero::before { /* grid texture removed per design feedback */
  display: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.breadcrumb { font-family: var(--font-ui); font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 1.2rem + 4vw, 3.5rem); }
.hero .lead { color: rgba(255,255,255,0.82); margin-top: 22px; max-width: 33ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; align-items: center; }
.hero-chips .chips-label { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-right: 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.chip:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-1px); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }
.chip:nth-of-type(2) .dot { background: var(--sky-300); }
.chip:nth-of-type(3) .dot { background: var(--periwinkle); }
.chip:nth-of-type(4) .dot { background: var(--sky-200); }

/* ---------- Hero visual (representative dashboard) ---------- */
.hero-visual { position: relative; }
.dash {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px; box-shadow: 0 30px 70px rgba(0,20,30,0.5);
  backdrop-filter: blur(6px); overflow: hidden;
}
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.12); }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.dash-dot:nth-child(1) { background: #ff6b6b66; }
.dash-dot:nth-child(2) { background: #ffd16b66; }
.dash-dot:nth-child(3) { background: #6bff9b66; }
.dash-title { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.82); margin-left: 6px; }
.dash-live { margin-left: auto; font-family: var(--font-ui); font-size: 0.72rem; color: var(--sky); letter-spacing: 0.04em; }
.dash-body { padding: 20px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.kpi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.kpi-label { font-family: var(--font-ui); font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.03em; }
.kpi-num { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff; line-height: 1; }
.kpi-trend { font-size: 0.72rem; font-family: var(--font-ui); }
.kpi-trend.up { color: #5fe3a1; }
.dash-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px; margin-bottom: 18px; }
.dash-chart svg { width: 100%; height: 96px; }
.dash-flow { display: flex; align-items: center; gap: 0; }
.flow-node { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; color: rgba(255,255,255,0.82); padding: 8px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); white-space: nowrap; }
.flow-node.hub { background: var(--action); border-color: var(--action); color: #fff; box-shadow: 0 6px 16px rgba(3,152,255,0.45); }
.flow-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(3,152,255,0.2), rgba(3,152,255,0.7)); margin: 0 2px; }
.visual-note { position: absolute; bottom: -26px; right: 4px; font-family: var(--font-ui); font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }

/* ---------- Solve band ---------- */
.solve-band {
  display: flex; align-items: flex-start; gap: 20px; margin-top: 40px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%);
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); color: rgba(255,255,255,0.9);
}
.solve-band p { font-size: 1.08rem; line-height: 1.6; }
.solve-band strong { color: #fff; }
.solve-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.14); display: grid; place-items: center; color: #fff; }
.solve-icon svg { width: 26px; height: 26px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { position: relative; z-index: 2; margin-top: -44px; }
.stats-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat { padding: clamp(24px, 3vw, 38px) clamp(18px, 2.4vw, 32px); text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.stat .num { font-family: var(--font-head); font-weight: 700; color: var(--action); font-size: clamp(2rem, 1.3rem + 2.4vw, 2.9rem); line-height: 1; letter-spacing: -0.02em; }
.stat:nth-child(2) .num { color: var(--periwinkle); }
.stat:nth-child(3) .num { color: var(--royal); }
.stat:nth-child(4) .num { color: var(--cyan); }
.stat .label { margin-top: 10px; color: var(--slate); font-size: 0.95rem; font-family: var(--font-ui); }

/* ============================================================
   LOGO BAR
   ============================================================ */
.logobar { padding-block: clamp(44px, 5vw, 68px); background: var(--mist); border-block: 1px solid var(--line); }
.logobar .eyebrow { text-align: center; }
.logobar .logo-title {
  text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--teal);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); margin: 6px auto 0; max-width: 26ch;
}

/* Marquee */
.marquee {
  position: relative; margin-top: 34px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; width: max-content; align-items: center;
  gap: clamp(40px, 5vw, 76px);
  animation: marquee-scroll 70s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-logo {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  height: 86px; padding: 12px 14px; border-radius: var(--r-sm);
}
.marquee-logo img {
  height: 60px; width: auto; max-width: 176px; object-fit: contain;
  filter: grayscale(1); opacity: 0.62;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.marquee-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* legacy placeholder (kept for other pages) */
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(28px, 5vw, 64px); margin-top: 26px; }
.logo-ph {
  height: 30px; min-width: 120px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  color: var(--slate); background: var(--mist); border: 1px dashed var(--line);
  opacity: .8; filter: grayscale(1); transition: opacity .2s;
  padding: 0 18px;
}
.logo-ph:hover { opacity: 1; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px); box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(3,152,255,0.3); }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--action-tint); color: var(--action);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.card .icon svg { width: 26px; height: 26px; }
/* Cycle accent hues across the pain-point grid for rhythm */
.grid-3 .card:nth-child(3n+2) .icon { background: var(--periwinkle-tint); color: var(--periwinkle); }
.grid-3 .card:nth-child(3n+3) .icon { background: var(--royal-tint); color: var(--royal); }
.grid-3 .card:nth-child(3n+2):hover { border-color: rgba(82,113,255,0.32); }
.grid-3 .card:nth-child(3n+3):hover { border-color: rgba(21,75,231,0.30); }
.grid-3 .card:hover .icon { transform: scale(1.06); }
.card h3 { margin-bottom: 10px; }
.card .card-desc { color: var(--slate); font-size: 1rem; line-height: 1.6; }
.section--mist .card { background: #fff; }

/* Bullets */
.bullets li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink); line-height: 1.55; }
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px;
  background: var(--action); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/13px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* Two-column feature */
.feature-2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }

/* Split panel (managed services + taruvi) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-panel {
  border-radius: var(--r-lg); padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line); background: #fff; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.split-panel.dark {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-700) 100%);
  border-color: transparent; color: rgba(255,255,255,0.86);
}
.split-panel.dark h3 { color: #fff; }
.split-panel.dark .textlink { color: var(--sky); }
.split-panel.dark .bullets li { color: rgba(255,255,255,0.86); }
.split-panel.dark .bullets li::before { background: var(--sky); }
.split-panel .pill-tag { align-self: flex-start; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 18px; }
.split-panel .pill-tag.light { background: var(--action-tint); color: var(--action); }
.split-panel .pill-tag.glass { background: rgba(255,255,255,0.14); color: #fff; }
.split-panel p { margin-bottom: 18px; }
.split-panel .textlink { margin-top: auto; }

/* AI two-path */
.path-card { position: relative; overflow: hidden; }
.path-card .step-no { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--action); letter-spacing: 0.1em; margin-bottom: 12px; }

/* ============================================================
   PROOF / CASE STAT CARDS
   ============================================================ */
.proof-card {
  border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff;
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--sh-sm);
  border-left: 4px solid var(--action);
  transition: transform .25s ease, box-shadow .25s ease;
}
.proof-card:nth-child(3n+2) { border-left-color: var(--periwinkle); }
.proof-card:nth-child(3n+2) .big { color: var(--navy); }
.proof-card:nth-child(3n+3) { border-left-color: var(--royal); }
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.proof-card .proof-tag { font-family: var(--font-ui); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.proof-card .big { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem); line-height: 1.1; letter-spacing: -0.01em; }
.proof-card .proof-desc { color: var(--slate); font-size: 0.98rem; margin-top: 14px; line-height: 1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px); box-shadow: var(--sh-sm); position: relative;
}
.quote-card .mark { font-family: var(--font-head); font-weight: 700; font-size: 3.4rem; line-height: 0.6; color: var(--action); opacity: .25; }
.quote-card blockquote { margin: 14px 0 0; font-size: 1.15rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.quote-card .cite { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--action), var(--indigo)); flex-shrink: 0; }
.quote-card .cite-name { font-family: var(--font-head); font-weight: 600; color: var(--teal); font-size: 0.95rem; }

/* ============================================================
   CLOSING CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden;
  background:
    radial-gradient(110% 130% at 88% 12%, rgba(3,152,255,0.34) 0%, rgba(3,152,255,0) 50%),
    radial-gradient(90% 120% at 6% 100%, rgba(82,113,255,0.30) 0%, rgba(82,113,255,0) 55%),
    linear-gradient(125deg, var(--navy), var(--teal) 58%, var(--teal-700));
  color: #fff;
}
.cta-banner::before { /* grid texture removed per design feedback */
  display: none;
}
.cta-banner .container { position: relative; text-align: center; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.82); max-width: 60ch; margin: 18px auto 0; }
.cta-banner .hero-ctas { justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--teal);
}
.faq-q .pm { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--action); border-radius: 2px; transition: transform .25s ease, opacity .25s; }
.faq-q .pm::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-q .pm::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 26px; color: var(--slate); font-size: 1.02rem; line-height: 1.7; max-width: 92%; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal); color: rgba(255,255,255,0.7); padding-block: clamp(56px, 6vw, 80px) 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand .brand-name { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.footer-brand p { margin-top: 16px; font-size: 0.95rem; line-height: 1.6; max-width: 30ch; color: rgba(255,255,255,0.66); }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.92rem; padding: 6px 0; font-family: var(--font-body); }
.footer-col a:hover { color: var(--sky); }
.footer-certs { display: flex; flex-wrap: wrap; gap: 12px; padding-block: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.cert-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-block: 26px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-meta .centers { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-meta .centers .sep { opacity: .4; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   LOGO BADGE (placeholder round logo)
   ============================================================ */
.logo-badge {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; position: relative;
  background: conic-gradient(from 220deg, var(--action), var(--indigo), var(--teal-700), var(--action));
  box-shadow: 0 2px 10px rgba(3,152,255,0.35);
}
.logo-badge::after {
  content: "EOX"; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.02em;
  color: #fff; position: relative; z-index: 1;
}
.logo-badge .ring { position: absolute; inset: 4px; border-radius: 50%; background: var(--teal); }
.logo-badge .ring + ::after { } /* noop */
.site-header:not(.scrolled) .logo-badge .ring { background: rgba(255,255,255,0.10); }

/* placeholder note flag (small, only on image placeholders) */
.img-ph {
  position: relative; border-radius: var(--r-lg); border: 1px dashed rgba(3,152,255,0.4);
  background:
    repeating-linear-gradient(45deg, rgba(3,152,255,0.04) 0 12px, transparent 12px 24px),
    var(--mist);
  display: grid; place-items: center; color: var(--slate);
  font-family: var(--font-ui); font-size: 0.85rem; min-height: 200px; text-align: center;
}
.img-ph .ph-tag { position: absolute; top: 12px; left: 12px; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--action); background: #fff; padding: 4px 9px; border-radius: 6px; border: 1px solid var(--line); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
  .reveal.d4 { transition-delay: .32s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-2col, .split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { } /* keep dividers simple on 2col */
  .stat:nth-child(odd)::before { display: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-card { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat + .stat { border-top: 1px solid var(--line); }
}

/* ============================================================
   ACTIVE NAV STATE
   ============================================================ */
.nav-item.is-active .nav-link { color: #fff; }
.scrolled .nav-item.is-active .nav-link { color: var(--action); }
.nav-item.is-active .nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--sky); border-radius: 2px;
}
.scrolled .nav-item.is-active .nav-link::after { background: var(--action); }
.nav-link { position: relative; }
.dd-link.dd-all { color: var(--action); margin-top: 4px; border-top: 1px solid var(--line); border-radius: 0 0 var(--r-sm) var(--r-sm); }

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(110% 120% at 88% 6%, rgba(3,152,255,0.30) 0%, rgba(3,152,255,0) 48%),
    radial-gradient(90% 120% at 4% 100%, rgba(82,113,255,0.26) 0%, rgba(82,113,255,0) 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--teal) 52%, var(--teal-700) 100%);
  padding-top: calc(var(--header-h) + var(--promo-h) + clamp(40px, 6vw, 76px));
  padding-bottom: clamp(48px, 6vw, 92px);
}
.page-hero::before {
  display: none; /* grid texture removed per design feedback */
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { margin-bottom: 20px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 1.2rem + 3.2vw, 3.1rem); max-width: 20ch; }
.page-hero.center h1 { max-width: 22ch; margin-inline: auto; }
.page-hero .lead { color: rgba(255,255,255,0.84); margin-top: 20px; max-width: 62ch; }
.page-hero.center { text-align: center; }
.page-hero.center .breadcrumb { justify-content: center; }
.page-hero.center .lead { margin-inline: auto; }
.page-hero .hero-ctas { margin-top: 30px; }
.page-hero.center .hero-ctas { justify-content: center; }
.hero-textlinks { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 26px; align-items: center; }
.page-hero.center .hero-textlinks { justify-content: center; }
.hero-textlinks a { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 7px; opacity: .9; }
.hero-textlinks a:hover { opacity: 1; color: var(--sky-300); }
.hero-clarifier { display: inline-block; margin-top: 14px; font-family: var(--font-ui); font-size: 0.92rem; color: var(--sky-300); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 8px 16px; border-radius: var(--r-pill); }

/* ============================================================
   BRIDGE / NARROW PROSE SECTION
   ============================================================ */
.bridge { max-width: 820px; }
.bridge.center { margin-inline: auto; text-align: center; }
.bridge p + p { margin-top: 16px; }
.bridge p { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); color: var(--slate); line-height: 1.65; }
.bridge p strong { color: var(--teal); }

/* ============================================================
   PILL / CHIP LISTS (lines we support)
   ============================================================ */
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-list .pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  font-family: var(--font-head); font-weight: 600; color: var(--teal); font-size: 1rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pill-list .pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--action); flex-shrink: 0; }
.pill-list .pill:nth-child(3n+2)::before { background: var(--periwinkle); }
.pill-list .pill:nth-child(3n+3)::before { background: var(--royal); }
.pill-list .pill:hover { transform: translateY(-2px); border-color: rgba(3,152,255,0.4); box-shadow: var(--sh); }
.section--mist .pill-list .pill { background: #fff; }

/* ============================================================
   PROCESS / LIFECYCLE COLUMNS (heading + bullet list)
   ============================================================ */
.proc-grid { display: grid; gap: 24px; }
.proc-col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--sh-sm);
}
.proc-col .proc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.proc-col .proc-no { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--action); background: var(--action-tint); width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.proc-col:nth-child(3n+2) .proc-no { color: var(--periwinkle); background: var(--periwinkle-tint); }
.proc-col:nth-child(3n+3) .proc-no { color: var(--royal); background: var(--royal-tint); }
.proc-col h3 { font-size: 1.18rem; }
.proc-list li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--slate); font-size: 0.97rem; line-height: 1.5; }
.proc-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 9px; height: 9px; border-radius: 3px; background: var(--action); opacity: .55; }
.proc-col:nth-child(3n+2) .proc-list li::before { background: var(--periwinkle); }
.proc-col:nth-child(3n+3) .proc-list li::before { background: var(--royal); }

/* Single-column lifecycle list */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; max-width: 880px; }
.checklist li { position: relative; padding-left: 32px; color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  background: var(--action); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/13px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ============================================================
   TABS (Who We Serve, lifecycle stages)
   ============================================================ */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--slate);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 11px 22px; cursor: pointer; transition: all .2s ease;
}
.tab:hover { border-color: rgba(3,152,255,0.4); color: var(--action); }
.tab.active { background: var(--action); border-color: var(--action); color: #fff; box-shadow: var(--sh-blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tab-panel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,36px); box-shadow: var(--sh-sm); }
.tab-panel-card .tp-eyebrow { font-family: var(--font-ui); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--action); margin-bottom: 8px; }
.tab-panel-card p { color: var(--slate); font-size: 1.08rem; line-height: 1.6; }

/* ============================================================
   SYSTEM CHIP ROW
   ============================================================ */
.sys-block { text-align: center; }
.sys-block .sys-intro { color: var(--slate); max-width: 60ch; margin: 0 auto 24px; }
.sys-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 920px; margin: 0 auto; }
.sys-chip {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; color: var(--ink);
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 10px 18px;
}
.sys-note { margin-top: 22px; font-family: var(--font-head); font-weight: 600; color: var(--teal); font-size: 0.95rem; }
.sys-note .badge-orange { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #ff7a1a; margin-right: 7px; vertical-align: middle; }

/* ============================================================
   CALLOUT / PROOF BOX
   ============================================================ */
.callout {
  background: var(--mist); border: 1px solid var(--line); border-left: 4px solid var(--action);
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px);
}
.section--mist .callout { background: #fff; }
.callout .callout-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); margin-bottom: 20px; }
.callout .cs { display: flex; flex-direction: column; }
.callout .cs .cs-num { font-family: var(--font-head); font-weight: 700; color: var(--action); font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); line-height: 1; letter-spacing: -0.02em; }
.callout .cs:nth-child(2) .cs-num { color: var(--periwinkle); }
.callout .cs:nth-child(3) .cs-num { color: var(--royal); }
.callout .cs:nth-child(4) .cs-num { color: var(--cyan); }
.callout .cs .cs-label { margin-top: 8px; font-family: var(--font-ui); font-size: 0.9rem; color: var(--slate); }
.callout p { color: var(--ink); font-size: 1.05rem; line-height: 1.6; }
.callout .callout-tag { font-family: var(--font-ui); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.callout .textlink { margin-top: 18px; }

/* Stat trio in a row (proof) */
.stat-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-trio .st-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  border-top: 4px solid var(--action); padding: clamp(26px, 3vw, 34px); box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-trio .st-card:nth-child(3n+2) { border-top-color: var(--periwinkle); }
.stat-trio .st-card:nth-child(3n+3) { border-top-color: var(--royal); }
.stat-trio .st-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.stat-trio .st-num { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.2rem); line-height: 1.05; letter-spacing: -0.01em; }
.stat-trio .st-tag { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--action); margin-bottom: 12px; }
.stat-trio .st-card:nth-child(3n+2) .st-tag { color: var(--periwinkle); }
.stat-trio .st-card:nth-child(3n+3) .st-tag { color: var(--royal); }
.stat-trio .st-desc { color: var(--slate); font-size: 0.96rem; margin-top: 12px; line-height: 1.55; }

/* ============================================================
   NUMBERED STEP CARDS (AI assessment 3x2)
   ============================================================ */
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--sh-sm); position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(3,152,255,0.3); }
.step-card .sc-no {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff;
  background: linear-gradient(135deg, var(--action), var(--blue-700)); margin-bottom: 16px;
}
.step-card:nth-child(3n+2) .sc-no { background: linear-gradient(135deg, var(--periwinkle), var(--violet)); }
.step-card:nth-child(3n+3) .sc-no { background: linear-gradient(135deg, var(--royal), var(--blue-700)); }
.step-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step-card p { color: var(--slate); font-size: 0.98rem; line-height: 1.6; }

/* ============================================================
   TIMELINE (managed-services steps, about history)
   ============================================================ */
.timeline { position: relative; max-width: 880px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--action), var(--periwinkle), var(--royal)); }
.tl-item { position: relative; padding-left: 64px; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--action); box-shadow: 0 0 0 4px var(--action-tint); }
.tl-item:nth-child(3n+2) .tl-dot { border-color: var(--periwinkle); box-shadow: 0 0 0 4px var(--periwinkle-tint); }
.tl-item:nth-child(3n+3) .tl-dot { border-color: var(--royal); box-shadow: 0 0 0 4px var(--royal-tint); }
.tl-year { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 1.15rem; margin-bottom: 4px; }
.tl-item p { color: var(--slate); font-size: 1rem; line-height: 1.6; }

/* Horizontal numbered steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; box-shadow: var(--sh-sm);
  position: relative;
}
.step-box .step-num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--action-tint); -webkit-text-stroke: 1px var(--action); color: transparent; }
.step-box .step-num-fallback { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--action); opacity: .85; }
.step-box:nth-child(4n+2) .step-num-fallback { color: var(--periwinkle); }
.step-box:nth-child(4n+3) .step-num-fallback { color: var(--royal); }
.step-box:nth-child(4n+4) .step-num-fallback { color: var(--cyan); }
.step-box h4 { font-family: var(--font-head); color: var(--teal); font-size: 1.05rem; margin: 12px 0 6px; }
.step-box p { color: var(--slate); font-size: 0.92rem; line-height: 1.5; }

/* ============================================================
   INDUSTRY ROWS (industries overview)
   ============================================================ */
.industry-row { padding-block: clamp(44px, 5vw, 72px); }
.industry-row:nth-child(even) { background: var(--mist); }
.industry-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.ind-left .ind-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--action-tint); color: var(--action); margin-bottom: 18px; }
.ind-left .ind-icon svg { width: 28px; height: 28px; }
.ind-left h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem); margin-bottom: 8px; }
.ind-left .ind-desc { color: var(--slate); font-size: 1.02rem; margin-bottom: 22px; }
.ind-left .ind-stat { font-family: var(--font-head); font-weight: 700; color: var(--action); font-size: clamp(1.2rem,1rem+0.7vw,1.45rem); line-height: 1.2; padding-left: 16px; border-left: 4px solid var(--action); margin-bottom: 24px; }
.ind-right h4 { font-family: var(--font-ui); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.ind-right .bullets { margin-bottom: 22px; }
.ind-proof { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--periwinkle); border-radius: var(--r); padding: 20px 24px; font-style: italic; color: var(--ink); font-size: 1rem; line-height: 1.55; }
.industry-row:nth-child(even) .ind-proof { background: #fff; }

/* ============================================================
   LOCATION / VALUE CARDS
   ============================================================ */
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,34px); box-shadow: var(--sh-sm); }
.loc-card .loc-name { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 1.3rem; }
.loc-card .loc-role { font-style: italic; color: var(--action); font-size: 0.95rem; margin: 4px 0 14px; }
.loc-card p { color: var(--slate); font-size: 0.98rem; line-height: 1.6; }

/* Two-column cert lists */
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); }
.cert-grid h3 { font-size: 1.25rem; margin-bottom: 18px; }
.cert-grid .bullets li { color: var(--ink); }

/* ============================================================
   KEEP EXPLORING / inline link row
   ============================================================ */
.explore { border-top: 1px solid var(--line); }
.explore-links { display: flex; flex-wrap: wrap; gap: 14px 36px; }
.explore-links a { font-family: var(--font-head); font-weight: 600; color: var(--action); display: inline-flex; align-items: center; gap: 7px; }
.explore-links a .arr { transition: transform .2s ease; }
.explore-links a:hover .arr { transform: translateX(4px); }

/* ============================================================
   COMPARISON CARDS (AI page)
   ============================================================ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,36px); box-shadow: var(--sh-sm); }
.compare-card.is-no { background: var(--mist); }
.compare-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.compare-card .bullets li::before { background: var(--action); }
.compare-card.is-no .bullets li { color: var(--slate); }
.compare-card.is-no .bullets li::before { -webkit-mask: none; mask: none; background: var(--slate); border-radius: 2px; width: 12px; height: 2px; top: 12px; opacity: .6; }

/* ============================================================
   INTERIOR RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .industry-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid.cols-3, .proc-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .checklist { grid-template-columns: 1fr; }
  .stat-trio, .compare-grid, .cert-grid { grid-template-columns: 1fr; }
  .proc-grid.cols-3, .proc-grid.cols-4, .steps-grid { grid-template-columns: 1fr; }
}

/* Generic multi-col helpers for proc-grid */
.proc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.proc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.proc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.step-grid-3x2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .step-grid-3x2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .step-grid-3x2 { grid-template-columns: 1fr; } }

/* ============================================================
   FORMS (assessment / signup)
   ============================================================ */
.form-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh); padding: clamp(26px, 3.4vw, 42px);
}
.form-card .form-card-head { margin-bottom: 26px; }
.form-card .form-card-head h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); }
.form-card .form-card-head p { color: var(--slate); margin-top: 8px; font-size: 1rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--teal);
}
.field label .req { color: var(--action); margin-left: 2px; }
.field .hint { font-size: 0.8rem; color: var(--slate); font-family: var(--font-ui); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--mist); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; width: 100%; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235A6B72' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9AAAB1; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; background: #fff; border-color: var(--action);
  box-shadow: 0 0 0 3px var(--action-tint);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #E2574C; background: #FEF5F4; }
.field .err-msg { display: none; font-size: 0.8rem; color: #C0392B; font-family: var(--font-ui); }
.field.invalid .err-msg { display: block; }

.consent { display: flex; align-items: flex-start; gap: 12px; grid-column: 1 / -1; margin-top: 2px; }
.consent input { width: 19px; height: 19px; margin-top: 2px; flex-shrink: 0; accent-color: var(--action); cursor: pointer; }
.consent label { font-family: var(--font-body); font-weight: 400; font-size: 0.88rem; color: var(--slate); line-height: 1.5; }
.consent a { color: var(--action); }

.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-actions .btn { width: auto; }
.form-actions .form-note { font-size: 0.84rem; color: var(--slate); font-family: var(--font-ui); }

/* Success state */
.form-success { display: none; text-align: center; padding: clamp(20px, 3vw, 40px) 0; }
.form-card.is-success .form-body { display: none; }
.form-card.is-success .form-success { display: block; animation: fadeUp .4s ease; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--action), var(--royal));
  box-shadow: var(--sh-blue);
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h2 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--slate); max-width: 44ch; margin: 0 auto; }
.form-success .textlink { margin-top: 24px; justify-content: center; }

/* Sidebar */
.form-aside { position: sticky; top: calc(var(--header-h) + var(--promo-h) + 24px); display: flex; flex-direction: column; gap: 22px; }
.aside-card {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
}
.aside-card.dark {
  background: linear-gradient(150deg, var(--navy), var(--teal-700)); border: none; color: #fff;
}
.aside-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.aside-card.dark h3 { color: #fff; }
.aside-steps { display: flex; flex-direction: column; gap: 14px; }
.aside-step { display: flex; gap: 13px; align-items: flex-start; }
.aside-step .as-no {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--action); background: var(--action-tint);
}
.aside-step:nth-child(3n+2) .as-no { color: var(--periwinkle); background: var(--periwinkle-tint); }
.aside-step:nth-child(3n+3) .as-no { color: var(--royal); background: var(--royal-tint); }
.aside-step p { font-size: 0.92rem; color: var(--slate); line-height: 1.5; }
.aside-step p strong { color: var(--teal); font-family: var(--font-head); display: block; font-size: 0.96rem; margin-bottom: 1px; }
.aside-card.dark .trust-list { display: flex; flex-direction: column; gap: 11px; }
.aside-card.dark .trust-list li { display: flex; gap: 10px; align-items: center; font-size: 0.94rem; color: rgba(255,255,255,0.9); }
.aside-card.dark .trust-list svg { width: 18px; height: 18px; color: var(--sky-300); flex-shrink: 0; }

@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GRAPHIC SYSTEM — "operational schematics"
   Decorative SVG motifs mounted by eox-graphics.js
   ============================================================ */
/* Interior page-hero schematic (sits behind .container, z-index 1) */
.hero-schematic {
  position: absolute;
  top: 50%;
  right: clamp(-56px, -1vw, -8px);
  transform: translateY(-50%);
  width: clamp(380px, 38vw, 540px);
  aspect-ratio: 560 / 470;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(120% 100% at 72% 50%, #000 52%, transparent 92%);
          mask-image: radial-gradient(120% 100% at 72% 50%, #000 52%, transparent 92%);
  animation: heroSchemaIn 1.1s cubic-bezier(.2,.7,.3,1) .15s forwards;
}
.hero-schematic svg { width: 100%; height: 100%; display: block; }
@keyframes heroSchemaIn { from { opacity: 0; transform: translateY(-50%) scale(.96); } to { opacity: .92; transform: translateY(-50%) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-schematic { animation: none; opacity: .9; }
}
@media (max-width: 1040px) { .hero-schematic { display: none; } }

/* Subject glyph tile on proof / case-study metric cards */
.proof-card .proof-glyph {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--action-tint); color: var(--action);
  margin-bottom: 18px;
  transition: transform .25s ease;
}
.proof-card:nth-child(3n+2) .proof-glyph { background: var(--periwinkle-tint); color: var(--periwinkle); }
.proof-card:nth-child(3n+3) .proof-glyph { background: var(--royal-tint); color: var(--royal); }
.proof-card .proof-glyph svg { width: 24px; height: 24px; }
.proof-card:hover .proof-glyph { transform: translateY(-2px) scale(1.05); }

/* Icon tile on the home AI path cards */
.path-card .path-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--action-tint); color: var(--action);
  margin-bottom: 20px;
  transition: transform .25s ease;
}
.path-card:nth-child(2) .path-icon { background: var(--periwinkle-tint); color: var(--periwinkle); }
.path-card .path-icon svg { width: 26px; height: 26px; }
.path-card:hover .path-icon { transform: scale(1.06); }

/* ---- QA refinements ------------------------------------------------- */
/* Cross-page hash links land below the fixed header */
:target { scroll-margin-top: calc(var(--header-h) + 24px); }
section[id], .industry-row[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* Homepage "Industries we serve": label stacked, chips on one horizontal row */
.hero-chips { flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-chips .chips-label { margin-right: 0; }
.hero-chips-row { display: flex; flex-wrap: nowrap; gap: 10px; }
@media (max-width: 520px) { .hero-chips-row { flex-wrap: wrap; } }

/* Process columns: icon tile variant (replaces 01/02/03 numbers) */
.proc-col .proc-ico {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--action); background: var(--action-tint);
  transition: transform .25s ease;
}
.proc-col:nth-child(3n+2) .proc-ico { color: var(--periwinkle); background: var(--periwinkle-tint); }
.proc-col:nth-child(3n+3) .proc-ico { color: var(--royal); background: var(--royal-tint); }
.proc-col .proc-ico svg { width: 24px; height: 24px; }
.proc-col:hover .proc-ico { transform: translateY(-2px) scale(1.05); }

/* Icon pills (e.g. lines we support) */
.pill-list.icon-pills .pill::before { display: none; }
.pill-list .pill .pill-ico { width: 19px; height: 19px; color: var(--action); flex-shrink: 0; }
.pill-list.icon-pills .pill:nth-child(3n+2) .pill-ico { color: var(--periwinkle); }
.pill-list.icon-pills .pill:nth-child(3n+3) .pill-ico { color: var(--royal); }

/* Platforms chip block: keep rows balanced (avoid a lone orphan chip) */
.sys-row { max-width: 760px; }

/* ============================================================
   GATED RESOURCE DOWNLOAD MODAL (injected by eox-chrome.js)
   ============================================================ */
.dl-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.dl-modal.open { display: flex; }
.dl-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 33, 46, 0.55);
  backdrop-filter: saturate(140%) blur(4px);
  animation: dlFade .25s ease;
}
.dl-dialog {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: #fff; border-radius: var(--r-lg, 18px);
  box-shadow: 0 30px 80px -20px rgba(8,33,46,0.45);
  padding: clamp(26px, 4vw, 40px);
  animation: dlPop .32s cubic-bezier(.2,.7,.3,1);
}
@keyframes dlFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dlPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.dl-x {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: var(--mist, #eef4f7); color: var(--slate);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .2s ease;
}
.dl-x:hover { background: var(--action-tint); color: var(--action); }
.dl-sub { color: var(--slate); margin-bottom: 22px; font-size: 0.97rem; }
.dl-dialog .form-grid { grid-template-columns: 1fr 1fr; }
.dl-dialog .field.full,
.dl-dialog .consent,
.dl-dialog .form-actions { grid-column: 1 / -1; }
.dl-success { display: none; text-align: center; padding: 8px 4px 4px; }
.dl-modal.is-success .dl-body { display: none; }
.dl-modal.is-success .dl-success { display: block; }
.dl-success .check {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--action-tint); color: var(--action);
}
.dl-success .check svg { width: 30px; height: 30px; }
.dl-success #dl-success-sub { color: var(--slate); margin: 8px 0 22px; }
@media (max-width: 480px) { .dl-dialog .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TARUVI PAGE
   ============================================================ */
.tv-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.tv-metric { text-align: center; padding: 26px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md, 14px); }
.tv-metric .m-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--action); line-height: 1; }
.tv-metric .m-label { display: block; margin-top: 10px; color: var(--slate); font-size: 0.92rem; }
.tv-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tv-cap { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md, 14px); transition: transform .25s ease, box-shadow .25s ease; }
.tv-cap:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(8,33,46,0.3); }
.tv-cap .cap-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--action-tint); color: var(--action); margin-bottom: 18px; }
.tv-cap:nth-child(3n+2) .cap-ico { background: var(--periwinkle-tint); color: var(--periwinkle); }
.tv-cap:nth-child(3n+3) .cap-ico { background: var(--royal-tint); color: var(--royal); }
.tv-cap .cap-ico svg { width: 26px; height: 26px; }
.tv-cap h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--ink); margin-bottom: 10px; }
.tv-cap p { color: var(--slate); font-size: 0.96rem; line-height: 1.55; }
@media (max-width: 900px) { .tv-caps { grid-template-columns: 1fr 1fr; } .tv-metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tv-caps { grid-template-columns: 1fr; } }
