/* =========================================
   APPICE DESIGN SYSTEM
   Palette: Dark (#050D1F) · Blue (#0050FF) · White (#FFF) · Black (#0A0A0A)
   Type: Syne 800 (display) + Figtree 400/600 (body)
   ========================================= */

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

html, body {
  margin: 0;
  padding: 0;
  background: #050D1F;
  overflow-x: hidden;
}

:root {
  --dark:  #050D1F;
  --blue:  #0050FF;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --nav-h: 72px;
  --panel-h: 40vh;
  --max-w: 1280px;
  --px: clamp(16px, 4vw, 72px);
  --py: clamp(24px, 4vh, 48px);
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--dark);
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.eyebrow {
  display: block;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 20px;
  text-align: left;
}

/* Hero headline — Searce-scale: large but readable */
.hero-headline {
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
/* 1px border on hero headline words */
.hero-headline .w { text-shadow: none; }

.section-title {
  font-size: clamp(30px, 4.5vw, 64px);
  letter-spacing: -0.025em;
}

.panel-title {
  font-size: clamp(22px, 3vw, 44px);
  letter-spacing: -0.02em;
}

.sub-copy {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 500; line-height: 1.55;
  letter-spacing: -0.01em;
}

.body { font-size: clamp(14px, 1.1vw, 16px); line-height: 1.75; opacity: 0.75; }

/* ── LAYOUT ───────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* Panels */
.panel {
  min-height: var(--panel-h);
  padding: var(--py) var(--px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.panel > .inner { width: 100%; max-width: var(--max-w); margin: 0 auto; }

.panel--dark  { background: var(--dark);  color: var(--white); }
.panel--white { background: var(--white); color: var(--black); }
.panel--blue  { background: var(--blue);  color: var(--white); }

/* Grids */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(20px,3vw,64px); }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,48px); }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,40px); }
.g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: clamp(12px,1.5vw,28px); }
.g12 { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px,5vw,100px); align-items: start; }
.g21 { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(32px,5vw,100px); align-items: start; }

/* ── NAV ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h);
  background: var(--white); z-index: 10000;
  border-bottom: 1px solid rgba(5,13,31,.08);
  display: flex; align-items: center;
  transition: box-shadow .3s;
  overflow: visible;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(5,13,31,.1); }

.nav__inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: -0.03em; color: var(--black);
  flex-shrink: 0;
}
.nav__logo img { height: 34px; width: auto; display: block; flex-shrink: 0; }

.nav__links {
  display: flex; align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.nav__links > a,
.nav__dropdown > a {
  font-size: 15px; font-weight: 500; color: var(--black);
  opacity: .65; transition: opacity .2s; cursor: pointer;
}
.nav__links > a:hover,
.nav__dropdown:hover > a { opacity: 1; }

/* Dropdown */
.nav__dropdown { position: relative; }
/* Bridge: invisible padding so mouse doesn't leave hover zone */
.nav__dropdown > a::after {
  content: ''; position: absolute;
  bottom: -20px; left: -20px; right: -20px; height: 20px;
}
.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 6px; min-width: 220px;
  padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  box-shadow: 0 8px 40px rgba(5,13,31,.12);
  z-index: 9999;
  overflow: visible;
  max-height: none;
}
/* Invisible bridge between trigger and panel */
.nav__drop::before {
  content: ''; position: absolute; top: -12px; left: 0;
  width: 100%; height: 12px;
}
.nav__dropdown:hover .nav__drop {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav__drop a {
  display: block; padding: 11px 16px; border-radius: 4px;
  font-size: 14px; font-weight: 500; opacity: 1; color: var(--black);
  transition: background .15s, color .15s;
}
.nav__drop a:hover { background: rgba(0,80,255,.06); color: var(--blue); }

.nav__right { display: flex; align-items: center; gap: 16px; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 600; font-family: 'Figtree', sans-serif;
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.btn--blue   { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: #003DD6; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,80,255,.3); }
.sec--blue .btn--blue { background: var(--white); color: var(--dark); border-color: var(--white); }
.sec--blue .btn--blue:hover { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(0,0,0,.15); transform: translateY(-1px); }
.btn--dark   { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #0c1830; transform: translateY(-1px); }
.btn--white  { background: var(--white); color: var(--dark); }
.btn--white:hover { background: #f0f0f0; }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn--outline:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); }
.btn--outline-dark { background: transparent; color: var(--dark); border: 1.5px solid rgba(5,13,31,.25); }
.btn--outline-dark:hover { border-color: var(--dark); }
.btn--lg { padding: 18px 40px; font-size: 17px; }

/* Link arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; transition: gap .2s;
}
.arrow-link:hover { gap: 14px; }

/* ── HAMBURGER ────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--black); display: block; transition: all .3s; }

/* ── MOBILE MENU ──────────────────────────── */
.mobile-menu {
  display: none !important; position: fixed; top: var(--nav-h); left: 0; width: 100%;
  background: var(--white); z-index: 999;
  padding: 8px var(--px) 32px;
  border-bottom: 1px solid rgba(5,13,31,.08);
  flex-direction: column; gap: 0;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { display: flex !important; }
/* accordion sections */
.mob-section { border-bottom: 1px solid rgba(5,13,31,.07); }
.mob-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 16px 0; cursor: pointer;
  font-size: 17px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black);
}
.mob-toggle svg { transition: transform .22s; flex-shrink: 0; }
.mob-toggle.mob-open svg { transform: rotate(180deg); }
.mob-drop { display: none; flex-direction: column; padding-bottom: 10px; }
.mob-drop.mob-open { display: flex; }
.mob-drop a {
  font-size: 14px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 9px 12px; color: rgba(5,13,31,.65); display: block;
  border-radius: 6px; transition: background .15s, color .15s;
}
.mob-drop a:hover { background: rgba(0,80,255,.05); color: var(--blue); }
/* bottom actions */
.mob-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mob-actions a { font-size: 15px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.mob-login { color: var(--black); padding: 12px 0; }
.mob-actions .btn { text-align: center; justify-content: center; }
/* language select inside mobile */
.mobile-lang-select { margin-top: 4px; padding: 10px; border: 1px solid rgba(5,13,31,.12); border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; width: 100%; }
.mobile-menu .btn { margin-top: 20px; text-align: center; justify-content: center; }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: var(--py);
  background: var(--dark); color: var(--white);
  display: flex; align-items: flex-end;
}
.hero > .inner { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* Hero word animation */
.hero-headline .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: wUp .75s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-headline .w.blue { color: var(--blue); }
.hero-headline .w.dim  { opacity: 0; color: rgba(255,255,255,.4); animation: wUp .75s cubic-bezier(.16,1,.3,1) forwards; }

.hero-sub {
  opacity: 0;
  animation: fUp .7s ease 1.3s forwards;
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 500; max-width: 620px;
  line-height: 1.6; margin-top: 28px;
  color: rgba(255,255,255,.82);
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
  opacity: 0; animation: fUp .7s ease 1.6s forwards;
}

/* Cycling word */
.cycle {
  display: inline-block; color: var(--blue);
  min-width: 140px;
  transition: opacity .3s, transform .3s;
}

/* ── PROBLEM PANEL ────────────────────────── */
.big-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(80px, 14vw, 200px);
  line-height: .9; letter-spacing: -0.05em;
  color: var(--blue);
}

.pain-card {
  padding: clamp(24px,3vw,40px);
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s;
}
.pain-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.pain-card__num  { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--blue); }
.pain-card__title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: clamp(18px,2vw,24px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.pain-card__body  { font-size: 14px; opacity: .6; line-height: 1.7; }

/* ── INDUSTRY CARDS (Panel 3) ─────────────── */
.ind-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: clamp(28px,3vw,48px) clamp(24px,3vw,40px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  transition: border-color .25s, background .25s;
  cursor: pointer;
  text-decoration: none; color: var(--white);
}
.ind-card:hover { border-color: var(--blue); background: rgba(0,80,255,.08); }

.ind-card__label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.ind-card__title {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(24px,3vw,40px); letter-spacing: -0.025em;
  line-height: 1.0; margin-top: auto;
}
.ind-card__desc { font-size: 14px; opacity: .65; line-height: 1.6; margin-top: 14px; }
.ind-card__link {
  margin-top: 28px; font-size: 14px; font-weight: 600;
  color: var(--blue); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s;
}
.ind-card:hover .ind-card__link { gap: 14px; }

/* ── 5 I'S TILES ──────────────────────────── */
.i-tile {
  padding: clamp(24px,3vw,40px) clamp(20px,2.5vw,32px);
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all .25s; cursor: pointer;
  text-decoration: none; color: var(--black);
}
.i-tile:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,80,255,.1); }

.i-tile__icon { width: 44px; height: 44px; color: var(--blue); flex-shrink: 0; }
.i-tile__name {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(20px,2vw,26px); letter-spacing: -0.02em;
}
.i-tile__desc { font-size: 14px; opacity: .6; line-height: 1.65; }

/* ── WHY APPICE ───────────────────────────── */
.pillar {
  padding: clamp(28px,3vw,48px) 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.pillar:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.pillar__num {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(56px,7vw,100px);
  opacity: .08; line-height: 1; letter-spacing: -0.04em;
}
.pillar__head {
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: clamp(20px,2.5vw,32px);
  font-weight: 800; letter-spacing: -0.02em;
  margin-top: -18px;
}
.pillar__body { font-size: 15px; opacity: .75; line-height: 1.7; margin-top: 10px; max-width: 520px; }

/* ── CTA PANEL ────────────────────────────── */
.email-form { display: flex; gap: 12px; max-width: 520px; flex-wrap: wrap; }
.email-form input {
  flex: 1; min-width: 220px; padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px; font-size: 16px; font-family: 'Figtree',sans-serif;
  background: rgba(255,255,255,.08); color: var(--white); outline: none;
  transition: border-color .2s;
}
.email-form input::placeholder { color: rgba(255,255,255,.4); }
.email-form input:focus { border-color: rgba(255,255,255,.6); }

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--dark); color: var(--white);
  padding: clamp(64px,9vh,110px) var(--px) 40px;
}
.footer__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr; gap: 36px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__tagline { font-size: 14px; opacity: .45; line-height: 1.65; max-width: 260px; }
.footer__col h4 {
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; opacity: .35; margin-bottom: 20px;
}
.footer__col a {
  display: block; font-size: 14px; opacity: .5; margin-bottom: 12px;
  color: var(--white);
  transition: opacity .2s;
}
.footer__col a:hover { opacity: 1; color: var(--white); }
.footer__brand a, .footer__bottom a, .footer__bottom-links a, .footer__contact-btn { color: var(--white); }
.mobile-menu .mob-drop a, .mobile-menu .mob-toggle { color: var(--black); }
.footer__bottom {
  max-width: var(--max-w); margin: 56px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px; opacity: .35;
}
.footer__bottom a { opacity: 1; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__social { display: flex; gap: 8px; align-items: center; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.45);
  transition: background .2s, color .2s; flex-shrink: 0;
}
.footer__social a:hover { background: rgba(255,255,255,.16); color: var(--white); }
.footer__contact { display: flex; align-items: center; gap: 10px; }
.footer__contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75); background: rgba(255,255,255,.06);
  transition: background .2s, color .2s; opacity: 1;
}
.footer__contact-btn:hover { background: rgba(255,255,255,.14); color: var(--white); }
.footer__contact-btn--wa { border-color: rgba(37,211,102,.4); color: rgba(37,211,102,.9); background: rgba(37,211,102,.08); }
.footer__contact-btn--wa:hover { background: rgba(37,211,102,.18); color: #25d366; }
.footer__contact-btn--demo { background: var(--blue); border-color: var(--blue); color: var(--white); font-weight: 700; }
.footer__contact-btn--demo:hover { background: #0041cc; border-color: #0041cc; color: var(--white); }

/* ── INNER PAGE HERO ──────────────────────── */
.page-hero {
  padding-top: clamp(100px,10vw,140px);
  padding-bottom: clamp(60px,8vw,100px);
  background: var(--dark); color: var(--white);
  display: flex; align-items: center;
  padding-left: var(--px); padding-right: var(--px);
  min-height: clamp(440px,56vh,540px);
}
.page-hero .inner  { width: 100%; max-width: var(--max-w); margin: 0 auto; }
.page-hero .sec-inner { width: 100%; max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow { color: rgba(255,255,255,.45); }

/* Split override */
.page-hero.page-hero--split {
  min-height: 0;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(40px,5vh,70px));
}

/* ── INNER SECTIONS ───────────────────────── */
.sec { padding: clamp(20px,2.5vh,32px) var(--px) var(--py); }
.sec-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
/* Global centering for .inner containers — max-width set inline per section */
.inner { margin-left: auto; margin-right: auto; width: 100%; box-sizing: border-box; }

.sec--dark { background: var(--dark); color: var(--white); }
.sec--white { background: var(--white); color: var(--black); }
.sec--blue  { background: var(--blue);  color: var(--white); }

.divider { width: 48px; height: 3px; background: var(--blue); margin: 28px 0; }

/* Use-case card */
.uc-card {
  padding: clamp(28px,3vw,48px);
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 4px; display: flex; flex-direction: column; gap: 16px;
  transition: all .2s;
}
.uc-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,80,255,.15); background: rgba(0,80,255,.04); }
.uc-card--dark {
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.uc-card--dark:hover { border-color: rgba(0,80,255,.7); background: rgba(0,80,255,.18); box-shadow: 0 12px 48px rgba(0,0,0,.3); }
.uc-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(0,80,255,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.uc-card--dark .uc-card__icon { background: rgba(255,255,255,.1); color: var(--white); }
.uc-card__title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: clamp(18px,2vw,24px); font-weight: 800; letter-spacing: -0.02em; }
.uc-card__body  { font-size: 14px; opacity: .65; line-height: 1.7; }

/* Step process */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 36px 0; border-bottom: 1px solid rgba(5,13,31,.08); align-items: start;
}
.step:first-child { border-top: 1px solid rgba(5,13,31,.08); }
.step__n {
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 52px; font-weight: 800;
  color: var(--blue); line-height: 1; letter-spacing: -0.03em;
}
.step__title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: clamp(18px,2vw,24px); font-weight: 800; letter-spacing: -0.02em; }
.step__desc { font-size: 15px; opacity: .6; line-height: 1.7; margin-top: 8px; }

/* Stat row */
.stat-row { display: flex; gap: clamp(40px,6vw,100px); flex-wrap: wrap; margin-top: clamp(40px,5vh,72px); }
.stat-block { display: flex; flex-direction: column; gap: 6px; }
.stat-n {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(40px,5vw,72px); letter-spacing: -0.04em; line-height: 1;
}
.stat-l { font-size: 14px; opacity: .6; line-height: 1.5; max-width: 160px; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label { font-size: 13px; font-weight: 600; opacity: .6; letter-spacing: .04em; text-transform: uppercase; }
.fg input, .fg textarea, .fg select {
  padding: 15px 18px; border: 1.5px solid rgba(5,13,31,.15);
  border-radius: 6px; font-size: 16px; font-family: 'Figtree',sans-serif;
  outline: none; background: var(--white); color: var(--black);
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,80,255,.08);
}
.fg textarea { min-height: 140px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Value / about cards */
.val-card {
  padding: clamp(28px,3vw,48px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
}
.val-card__num {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800; font-size: 48px;
  color: var(--blue); opacity: .5; line-height: 1; letter-spacing: -0.04em;
}
.val-card__title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 16px; }
.val-card__body  { font-size: 14px; opacity: .7; line-height: 1.7; margin-top: 10px; }

/* ── ANIMATIONS ───────────────────────────── */
@keyframes wUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wUpDim {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 0.32; transform: translateY(0); }
}
.w.dim { animation: wUpDim .75s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes fUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.on { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.stagger.on > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.on > *:nth-child(2) { opacity:1; transform:none; transition-delay:.1s; }
.stagger.on > *:nth-child(3) { opacity:1; transform:none; transition-delay:.2s; }
.stagger.on > *:nth-child(4) { opacity:1; transform:none; transition-delay:.3s; }
.stagger.on > *:nth-child(5) { opacity:1; transform:none; transition-delay:.4s; }
.stagger.on > *:nth-child(6) { opacity:1; transform:none; transition-delay:.5s; }

/* ══════════════════════════════════════════
   MEGA MENU
══════════════════════════════════════════ */
.has-mega { position: static !important; }
.has-mega > .nav__drop { display: none !important; }

.nav__mega {
  position: fixed;
  top: var(--nav-h, 64px);
  left: 0; right: 0;
  z-index: 9998;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 16px 56px rgba(5,13,31,.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.mega-open .nav__mega {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mega-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 28px var(--px, 24px) 32px;
}
.nav__mega-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}
.nav__mega-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav__mega-grid {
  display: grid;
  gap: 2px;
}
.nav__mega-grid--2col { grid-template-columns: repeat(2, 1fr); }
.nav__mega-grid--3col { grid-template-columns: repeat(3, 1fr); }
.nav__mega-grid--4col { grid-template-columns: repeat(4, 1fr); }

.nav__mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background .14s;
}
.nav__mega-item:hover { background: rgba(0,80,255,.045); }
.nav__mega-item:hover .nav__mega-title { color: var(--blue); }

.nav__mega-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,80,255,.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.nav__mega-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  transition: color .14s;
}
.nav__mega-sub {
  font-size: 11.5px;
  color: rgba(5,13,31,.5);
  line-height: 1.45;
  margin-top: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Promo card */
.nav__mega-promo {
  background: linear-gradient(135deg, #050D1F 0%, #0a1f5c 55%, #0050FF 100%);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}
.nav__mega-promo::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  right: -50px; bottom: -50px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.nav__mega-promo-icon {
  margin: 8px 0 4px;
  color: rgba(255,255,255,.75);
}
.nav__mega-promo-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav__mega-promo-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.nav__mega-promo-sub {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav__mega-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: gap .14s;
  position: relative;
  z-index: 1;
}
.nav__mega-promo-cta:hover { gap: 9px; }

/* Multi-section mega menu */
.nav__mega-section { }
.nav__mega-divider {
  height: 1px;
  background: rgba(5,13,31,.07);
  margin: 16px 0;
}
.nav__mega-grid--1col { grid-template-columns: 1fr; }

/* Active trigger highlight */
.has-mega.mega-open > a {
  color: var(--blue) !important;
  opacity: 1 !important;
}

@media (max-width: 960px) {
  .nav__mega { display: none !important; }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 960px) {
  .nav__links, .nav__right .btn--outline-dark { display: none; }
  .hamburger { display: flex; }
  .nav__right { gap: 8px; min-width: 0; flex-shrink: 1; }
  .g3, .g4, .g5 { grid-template-columns: repeat(2,1fr); }
  .g12, .g21 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Phones — keep the logo visible by hiding text-heavy nav__right items
   (Login + language picker move into the hamburger menu instead) */
@media (max-width: 600px) {
  .nav__right .lang-picker,
  .nav__right .nav__login-btn { display: none !important; }
}

@media (max-width: 600px) {
  :root { --py: 32px; }
  .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__brand { grid-column: 1 / -1; }
  .stat-row { flex-direction: column; gap: 28px; }
  .email-form { flex-direction: column; }
  .hero { padding-bottom: 56px; align-items: center; }
  .fg-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── COMPLIANCE BADGE ───────────────────── */
.compliance-row {
  display: flex; gap: clamp(16px,2vw,32px); flex-wrap: wrap; margin-top: 40px;
}
.compliance-badge {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 4px;
  padding: 12px 20px; font-size: 13px; font-weight: 600; color: var(--white);
  opacity: .8;
}
.compliance-badge svg { color: var(--blue); flex-shrink: 0; }

/* ── ACTION FLOW ────────────────────────── */
.flow-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border: 1px solid rgba(5,13,31,.1); border-radius: 8px; overflow: hidden;
}
.flow-step {
  padding: clamp(24px,3vw,40px) clamp(20px,2.5vw,32px);
  border-right: 1px solid rgba(5,13,31,.08); position: relative;
}
.flow-step:last-child { border-right: none; }
.flow-step::after {
  content: '→';
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--blue); font-weight: 700; z-index: 2;
}
.flow-step:last-child::after { display: none; }
.flow-n {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.flow-title {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(18px,2vw,24px); letter-spacing: -0.02em; margin-bottom: 10px;
}
.flow-desc { font-size: 13px; opacity: .6; line-height: 1.6; }

/* Dark flow */
.flow-row--dark { border-color: rgba(255,255,255,.1); }
.flow-row--dark .flow-step { border-right-color: rgba(255,255,255,.08); background: transparent; }
.flow-row--dark .flow-desc { color: var(--white); }
.flow-row--dark .flow-title { color: var(--white); }

/* ── OUTCOME PILL ───────────────────────── */
.outcome {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,80,255,.08); color: var(--blue);
  border-radius: 100px; padding: 7px 16px;
  font-size: 13px; font-weight: 700;
  margin-top: 20px;
}
.outcome--white {
  background: rgba(255,255,255,.1); color: var(--white);
}

/* ── PROBLEM STACK ──────────────────────── */
.prob-item {
  padding: 18px 0; border-bottom: 1px solid rgba(5,13,31,.07);
  display: flex; gap: 16px; align-items: baseline;
}
.prob-item:last-child { border-bottom: none; }
.prob-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.prob-text { font-size: 15px; line-height: 1.6; opacity: .7; }

/* ── CASE STUDY CARD ────────────────────── */
.cs-card {
  border: 1px solid rgba(5,13,31,.1); border-radius: 6px;
  padding: clamp(24px,3vw,40px); display: flex; flex-direction: column; gap: 16px;
  transition: all .2s; text-decoration: none; color: var(--black);
}
.cs-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,80,255,.08); }
.cs-card--dark { border-color: rgba(255,255,255,.12); color: var(--white); }
.cs-card--dark:hover { border-color: var(--blue); background: rgba(0,80,255,.06); }
.cs-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.cs-metric { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800; font-size: clamp(28px,4vw,52px); letter-spacing: -0.03em; line-height: 1; color: var(--blue); }
.cs-label { font-size: 13px; opacity: .6; line-height: 1.5; margin-top: 4px; }
.cs-co { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; font-size: 15px; margin-top: auto; }
.cs-read { font-size: 13px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.cs-card:hover .cs-read { gap: 10px; }

/* ── LOGIN BTN ──────────────────────────── */
.btn--login {
  background: transparent; color: var(--black); font-size: 15px; font-weight: 500;
  opacity: .6; transition: opacity .2s; padding: 0;
}
.btn--login:hover { opacity: 1; transform: none; box-shadow: none; background: transparent; }

/* ── BLOG CARD ──────────────────────────── */
.blog-card {
  border-bottom: 1px solid rgba(5,13,31,.07); padding: 28px 0;
  display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--black);
  transition: padding-left .2s;
}
.blog-card:hover { padding-left: 8px; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.blog-title { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800; font-size: clamp(18px,2vw,24px); letter-spacing: -0.02em; line-height: 1.2; }
.blog-meta { font-size: 13px; opacity: .45; }

/* ── COMPLIANCE PANEL ───────────────────── */
.comp-feature {
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start;
}
.comp-feature:last-child { border-bottom: none; }
.comp-icon { width: 36px; height: 36px; color: var(--blue); margin-top: 2px; }

@media (max-width: 960px) {
  .flow-row { grid-template-columns: repeat(2,1fr); }
  .flow-step::after { display: none; }
  .flow-step:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .flow-row { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid rgba(5,13,31,.08); }
  .flow-row--dark .flow-step { border-bottom-color: rgba(255,255,255,.08); }
  .flow-step:last-child { border-bottom: none; }
}

/* ── INDUSTRY IMAGE CARDS ───────────────── */
.ind-img-card {
  position: relative; border-radius: 6px; overflow: hidden;
  min-height: 520px; display: flex; flex-direction: column;
  justify-content: flex-end; text-decoration: none;
  color: var(--white); transition: transform .3s;
}
.ind-img-card:hover { transform: translateY(-6px); }
.ind-img-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform .5s;
}
.ind-img-card:hover img { transform: scale(1.04); }
.ind-img-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,13,31,.94) 30%, rgba(5,13,31,.25) 60%, rgba(5,13,31,.05) 100%);
}
.ind-img-card__body {
  position: relative; z-index: 2;
  padding: clamp(20px,3vw,36px);
}
.ind-img-card__label { font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; display:block; }
.ind-img-card__title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(20px,2.5vw,32px); letter-spacing:-0.025em; line-height:1.1; margin-bottom:10px; }
.ind-img-card__bullets { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.ind-img-card__bullet { font-size:13px; color:rgba(255,255,255,.65); display:flex; align-items:center; gap:8px; }
.ind-img-card__bullet::before { content:''; display:block; width:14px; height:1px; background:var(--blue); flex-shrink:0; }
.ind-img-card__cta { font-size:13px; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:6px; }

/* ── BLOCKFLOW (combined solution + how it works) ── */
.blockflow {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
  border: 1px solid rgba(5,13,31,.1); border-radius: 8px; overflow: hidden;
}
.blockflow-step {
  padding: clamp(24px,3vw,40px) clamp(18px,2vw,28px);
  border-right: 1px solid rgba(5,13,31,.08);
  display: flex; flex-direction: column; gap: 14px;
  background: var(--white); position: relative;
}
.blockflow-step:last-child { border-right: none; }
.blockflow-arrow {
  position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 12px; font-weight: 800; z-index: 3;
}
.blockflow-step:last-child .blockflow-arrow { display: none; }
.blockflow-n { font-size:10px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--blue); }
.blockflow-icon { width:36px; height:36px; background:rgba(0,80,255,.08); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--blue); }
.blockflow-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(15px,1.6vw,20px); letter-spacing:-0.02em; line-height:1.2; }
.blockflow-desc { font-size:13px; line-height:1.65; opacity:.6; }
.blockflow-outcome { font-size:12px; font-weight:700; color:var(--blue); margin-top:auto; display:flex; align-items:center; gap:6px; }

/* stat-row override for larger numbers */
.stat-row--lg .stat-n { font-size:clamp(52px,7vw,90px); }

/* Responsive additions */
@media (max-width: 960px) {
  .blockflow { grid-template-columns: 1fr 1fr; }
  .blockflow-step { border-right: none; border-bottom: 1px solid rgba(5,13,31,.08); }
  .blockflow-step:nth-child(odd) { border-right: 1px solid rgba(5,13,31,.08); }
  .blockflow-step:last-child,.blockflow-step:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .blockflow-arrow { display: none; }
  .nav__right .btn { display: none; } /* hide login & demo btn in mobile, keep hamburger */
  .nav__right { gap: 8px; }
}
@media (max-width: 600px) {
  .blockflow { grid-template-columns: 1fr; }
  .blockflow-step { border-right: none !important; border-bottom: 1px solid rgba(5,13,31,.08) !important; }
  .blockflow-step:last-child { border-bottom: none !important; }
  .ind-img-card { min-height: 380px; }
}

/* Ensure nav__right only shows CTA button not login on mobile */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__login { display: none; }
}

/* ── GLOBAL RESPONSIVE OVERHAUL ─────────── */
/* Prevent any horizontal overflow */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }

/* Nav: always show Book a Demo button, hide login on mobile */
@media (max-width: 960px) {
  .nav__login { display: none !important; }
  .nav__right { display: flex; gap: 8px; align-items: center; }
}

/* Hero: ensure text wraps on small screens */
@media (max-width: 600px) {
  .hero-headline { word-break: break-word; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .page-hero { padding-top: 100px; padding-bottom: 60px; }
}

/* Panel padding on tiny screens */
@media (max-width: 400px) {
  :root { --px: 16px; --py: 28px; }
  .hero-headline { font-size: clamp(30px, 8vw, 52px); }
}


/* Contact form responsive */
@media (max-width: 600px) {
  .fg-row { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form input, .email-form button { width: 100%; }
}

/* Stat row wrapping */
@media (max-width: 600px) {
  .stat-row { flex-direction: column; gap: 20px; }
}

/* Compliance badges wrap */
@media (max-width: 600px) {
  .compliance-row { gap: 8px; }
  .compliance-badge { font-size: 12px; padding: 10px 14px; }
}

/* Intel bar on small screens */
@media (max-width: 600px) {
  .intel-bar { padding: clamp(20px,4vw,32px); }
  .intel-bar__stats { gap: 20px; }
  .intel-stat-n { font-size: clamp(18px,5vw,28px); }
  .intel-bar__left { flex-direction: column; gap: 12px; }
}

/* Industry image cards: ensure equal height on grid */
@media (max-width: 960px) {
  .g3 .ind-img-card { min-height: 420px; }
}
@media (max-width: 600px) {
  .g3 .ind-img-card { min-height: 340px; }
}

/* Flow rows on mobile */
@media (max-width: 600px) {
  .flow-row { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid rgba(5,13,31,.08); padding: 20px; }
  .flow-row--dark .flow-step { border-bottom-color: rgba(255,255,255,.1); }
  .flow-step:last-child { border-bottom: none; }
}

/* Steps on mobile */
@media (max-width: 600px) {
  .step { grid-template-columns: 48px 1fr; gap: 12px; }
  .step__n { font-size: 36px; }
}

/* g12/g21 alignment on mobile */
@media (max-width: 960px) {
  .g12, .g21 { grid-template-columns: 1fr; gap: clamp(24px,4vh,48px); }
}

/* Blockflow */
@media (max-width: 960px) {
  .blockflow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blockflow { grid-template-columns: 1fr; }
  .blockflow-step { border-bottom: 1px solid rgba(5,13,31,.08) !important; border-right: none !important; }
  .blockflow-step:last-child { border-bottom: none !important; }
  .blockflow-arrow { display: none !important; }
}

/* section/page hero titles on very small screens */
@media (max-width: 380px) {
  .section-title { font-size: clamp(26px, 8vw, 44px); }
  .panel-title { font-size: clamp(20px, 6vw, 36px); }
}

/* Ensure CTA panels stack gracefully */
@media (max-width: 600px) {
  .sec-inner[style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column;
    gap: 24px;
  }
}

/* ── LOGIN BTN IN NAV ───────────────────── */
.nav__login-btn {
  font-size: 15px; font-weight: 500; color: var(--black);
  opacity: .65; text-decoration: none; padding: 6px 12px;
  border: 1.5px solid rgba(5,13,31,.18); border-radius: 6px;
  transition: all .2s; white-space: nowrap;
}
.nav__login-btn:hover { opacity: 1; border-color: var(--dark); }
@media (max-width: 960px) { .nav__login-btn { display: none; } }


/* ── CHANNEL SCROLL TICKER ───────────────── */
.channel-ticker {
  background: var(--white); border-top: 1px solid rgba(5,13,31,.07);
  border-bottom: 1px solid rgba(5,13,31,.07);
  padding: 18px 0; overflow: hidden; position: relative;
}
.channel-ticker__track {
  display: flex; gap: 0; animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.channel-ticker:hover .channel-ticker__track { animation-play-state: paused; }
.channel-ticker__item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 0 clamp(18px,3vw,36px); border-right: 1px solid rgba(5,13,31,.07);
  min-width: 90px;
}
.channel-ticker__icon {
  width: 44px; height: 44px; background: rgba(0,80,255,.06);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 20px;
}
.channel-ticker__label { font-size: 11px; font-weight: 600; opacity: .5; white-space: nowrap; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO LAYOUT WITH IMAGE ──────────────── */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,80px); align-items: center;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.hero-split__img {
  display: flex; align-items: center; justify-content: center;
}
.hero-split__img img {
  max-width: 100%; max-height: 480px; object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,80,255,.25));
  animation: fUp .9s ease 1.4s both;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__img { display: none; }
}

/* ── INDUSTRY ICON BADGES ────────────────── */
.ind-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,80,255,.15); border: 1px solid rgba(0,80,255,.3);
  border-radius: 100px; padding: 7px 14px; margin-bottom: 10px;
}
.ind-badge span { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: .08em; text-transform: uppercase; }

/* Ind-img-card: top-aligned body */
.ind-img-card__body { justify-content: flex-start !important; }

/* ── PLATFORM ICON STYLE (Core Features) ─── */
.pi-icon-cf {
  width: 52px; height: 52px; background: rgba(0,80,255,.08);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--blue);
}

/* ── "MISSED MOMENTS" HERO CALLOUT ──────── */
.missed-callout {
  background: var(--dark); border-radius: 8px;
  padding: clamp(28px,4vw,52px);
  display: flex; flex-direction: column; gap: 16px; height: 100%;
  justify-content: center;
}
.missed-callout__big {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(24px,3.5vw,48px); letter-spacing: -0.03em; line-height: 1.05;
  color: var(--white);
}
.missed-callout__big span { color: var(--blue); }
.missed-callout__sub { font-size: 14px; opacity: .55; color: var(--white); line-height: 1.65; max-width: 280px; }

/* ── COMPLIANCE ROW (horizontal) ─────────── */
.compliance-badges-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.compliance-badge-pill {
  padding: 10px 20px; border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 6px; font-size: 13px; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 7px;
}
.compliance-badge-pill svg { color: var(--blue); }

/* ── WHY APPICE FLAT ICONS ───────────────── */
.why-icon {
  width: 44px; height: 44px; color: var(--blue); margin-bottom: 4px;
}

/* ── TYPOGRAPHY SYSTEM — CONSISTENT ─────── */
.t-eyebrow { font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; opacity:.5; display:block; margin-bottom:16px; }
.t-h1 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(40px,6.5vw,88px); letter-spacing:-0.03em; line-height:1.0; }
.t-h2 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(28px,4vw,56px); letter-spacing:-0.025em; line-height:1.05; }
.t-h3 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(20px,2.5vw,32px); letter-spacing:-0.02em; line-height:1.1; }
.t-sub { font-size:clamp(15px,1.6vw,19px); line-height:1.65; font-weight:500; }
.t-body { font-size:clamp(14px,1.2vw,16px); line-height:1.75; opacity:.65; }
.t-label { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--blue); }

/* ── MOBILE HERO FIX ─────────────────────── */
@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 10px) !important; padding-bottom: 48px; }
}

/* ── NAV DROPDOWN ─────────────── */
.nav__dropdown { position: relative; overflow: visible; }
.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  transform: translateY(-6px);
  background: var(--white); border: 1px solid rgba(5,13,31,.1);
  border-radius: 8px; min-width: 220px; padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 8px 40px rgba(5,13,31,.12);
  z-index: 9999;
  overflow: visible;
  max-height: none;
}
.nav__dropdown:hover .nav__drop,
.nav__dropdown:focus-within .nav__drop {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}

/* ── CHANNEL TICKER STRIP ──────────────── */
.ticker-wrap {
  background: var(--dark); overflow: hidden;
  padding: 20px 0; position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-wrap::before,.ticker-wrap::after {
  content:''; position:absolute; top:0; width:80px; height:100%; z-index:2;
  pointer-events:none;
}
.ticker-wrap::before { left:0; background:linear-gradient(to right, var(--dark), transparent); }
.ticker-wrap::after  { right:0; background:linear-gradient(to left, var(--dark), transparent); }
.ticker-track {
  display: flex; gap: 32px; align-items: center;
  animation: tickerScroll 32s linear infinite;
  width: max-content;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0; min-width: 70px;
}
.ticker-item img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); opacity: .55; }
.ticker-item span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); white-space: nowrap; }



/* ── INDUSTRY ICONS ────────────────────── */
.ind-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,80,255,.15); color: var(--blue);
  flex-shrink: 0; margin-bottom: 12px;
}

/* ── PLATFORM CAPABILITY ICONS (app-style) */
.app-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,80,255,.08); color: var(--blue);
}

/* ── COMPLIANCE BADGES ROW ─────────────── */
.comp-badges-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.comp-badge-box {
  padding: 12px 20px; border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 6px; font-size: 13px; font-weight: 700;
  color: var(--white); display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
}
.comp-badge-box svg { color: rgba(255,255,255,.7); }

/* ── WHY APPICE FLAT ICONS ─────────────── */
.why-flat-icon {
  width: 44px; height: 44px; color: var(--blue); margin-bottom: 12px;
}

/* ── TYPOGRAPHY SYSTEM (global) ────────── */
/* Consistent sizing tokens */
.t-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .5; display: block; margin-bottom: 16px; }
.t-h1 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(40px,6.5vw,80px); letter-spacing:-0.03em; line-height:1.02; }
.t-h2 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(28px,4vw,52px); letter-spacing:-0.025em; line-height:1.08; }
.t-h3 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:clamp(20px,2.5vw,32px); letter-spacing:-0.02em; line-height:1.15; }
.t-body-lg { font-size:clamp(16px,1.6vw,20px); line-height:1.7; }
.t-body { font-size:clamp(14px,1.3vw,16px); line-height:1.75; opacity:.7; }
.t-label { font-size:13px; line-height:1.6; }
.t-small { font-size:12px; }

/* ── HERO height fix ───────────────────── */
.hero {
  min-height: calc(100vh - var(--panel-h));
  padding-top: calc(var(--nav-h) + 10px);
  padding-bottom: var(--py);
  padding-left: 0; padding-right: 0;
}

/* ── IND IMG CARD text top-aligned ─────── */
.ind-img-card { justify-content: flex-start; }
.ind-img-card__overlay {
  background: linear-gradient(to bottom,
    rgba(5,13,31,.55) 0%,
    rgba(5,13,31,.35) 40%,
    rgba(5,13,31,.88) 80%,
    rgba(5,13,31,.96) 100%);
}
.ind-img-card__body {
  display: flex; flex-direction: column;
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  padding: clamp(18px,2.5vw,28px);
  justify-content: space-between;
}
.ind-img-card__top { display: flex; flex-direction: column; gap: 8px; }
.ind-img-card__bottom { display: flex; flex-direction: column; gap: 10px; }

/* ── HERO ACTION TEXT ──────────────────── */
.hero-sub-3line { font-size:clamp(15px,1.4vw,19px); line-height:1.55; color:rgba(255,255,255,.7); margin-top:24px; max-width:480px; }
.hero-sub-3line span { display:block; }

/* ── PROBLEM PANEL LAYOUT ──────────────── */
.prob-img-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,80px); align-items: start;
}
.prob-hero-msg {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-weight: 800;
  font-size: clamp(32px,5vw,68px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--blue);
  margin-top: clamp(24px,3vh,40px);
}

/* ── PLATFORM HERO MSG RHS ─────────────── */
.plat-hero-rhs {
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; gap: 20px;
}
.missed-msg {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(26px,4vw,52px); letter-spacing:-0.03em; line-height:1.05;
  color: var(--white);
}
.missed-msg em { color:var(--blue); font-style:normal; }

/* Responsive */
@media (max-width:960px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__img { display: none; }
  .prob-img-split { grid-template-columns: 1fr; }
}

/* Chatbot avatar — use Appice icon */
.chatbot-avatar { background: transparent !important; }
.chatbot-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* Hero image — larger, bottom-aligned */
.hero-split__img {
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.hero-split__img img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr !important; }
  .hero-split__img { display: none; }
}
/* Platform intelligence screenshot */
.platform-intel-screenshot {
  border-radius: 8px; overflow: hidden; border: 1px solid rgba(5,13,31,.08);
  margin-top: 24px;
}

/* ── CHANNEL GRID TILES ─────────────────── */
.channel-grid .ch-tile.bg-dark { background: var(--dark); }
.channel-grid .ch-tile.bg-blue { background: var(--blue); }
.channel-grid-2 .ch-tile.bg-dark { background: var(--dark); }
.channel-grid-2 .ch-tile.bg-blue { background: var(--blue); }
/* Make tile bg transition smooth */
.ch-tile { transition: background 0.6s ease; }

/* ── IND-IMG-CARD: BG DIV instead of <img> tag ─── */
.ind-img-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform .5s ease;
}
.ind-img-card:hover .ind-img-card__bg { transform: scale(1.04); }
/* Hide any old <img> tags inside ind-img-card that might still exist */
.ind-img-card > img { display: none; }

/* ── AGENTIC SECTION ─────────────────────── */
.agentic-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px); align-items: start;
}
.agentic-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,80,255,.1); border: 1px solid rgba(0,80,255,.25);
  border-radius: 100px; padding: 7px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 20px;
}
.agentic-pill {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid rgba(5,13,31,.07);
}
.agentic-pill:last-child { border-bottom: none; }
.agentic-pill__dot {
  width: 28px; height: 28px; background: rgba(0,80,255,.1);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; color: var(--blue); flex-shrink: 0; margin-top: 2px;
}
.agentic-pill__title {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(15px,1.5vw,18px); letter-spacing: -0.02em; margin-bottom: 3px;
}
.agentic-pill__desc { font-size: 13px; opacity: .6; line-height: 1.6; }

.vs-table {
  width: 100%; border-collapse: collapse; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(5,13,31,.1);
}
.vs-table th {
  padding: 14px 20px; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-align: left; background: var(--dark); color: rgba(255,255,255,.5);
}
.vs-table th:nth-child(2) { background: var(--blue); color: rgba(255,255,255,.8); }
.vs-table td {
  padding: 14px 20px; font-size: 13px; font-weight: 500;
  border-top: 1px solid rgba(5,13,31,.07); vertical-align: middle;
}
.vs-table tr:last-child td { border-bottom: none; }
.vs-table td:first-child { color: var(--black); opacity: .7; }
.vs-table td:nth-child(2) {
  background: rgba(0,80,255,.04); color: var(--blue);
  font-weight: 700; border-left: 1px solid rgba(0,80,255,.12);
  border-right: 1px solid rgba(0,80,255,.12);
}
.vs-check { color: var(--blue); font-size: 15px; margin-right: 6px; }
.vs-cross { color: rgba(5,13,31,.25); font-size: 15px; margin-right: 6px; }

@media (max-width: 960px) {
  .agentic-grid { grid-template-columns: 1fr; }
}

/* ── LOGO GRID ─────────────────────────── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(5,13,31,.07);
  border-radius: 10px;
  overflow: hidden;
}
.logo-item {
  padding: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid rgba(5,13,31,.07);
  border-bottom: 1px solid rgba(5,13,31,.07);
  min-height: clamp(80px,10vh,110px);
  background: var(--white);
  transition: background .2s;
}
.logo-item:hover { background: rgba(0,80,255,.03); }
.logo-item:nth-child(6n) { border-right: none; }
.logo-item:nth-last-child(-n+6) { border-bottom: none; }
.logo-item img {
  max-width: clamp(80px,8vw,120px);
  max-height: 48px; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%); opacity: .55;
  transition: filter .25s, opacity .25s;
}
.logo-item:hover img { filter: grayscale(0%); opacity: 1; }

@media (max-width: 960px) {
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .logo-item:nth-child(6n) { border-right: 1px solid rgba(5,13,31,.07); }
  .logo-item:nth-child(4n) { border-right: none; }
  .logo-item:nth-last-child(-n+4) { border-bottom: none; }
  .logo-item:nth-last-child(n+5):nth-last-child(-n+8) { border-bottom: none; }
}
@media (max-width: 600px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-item:nth-child(4n) { border-right: 1px solid rgba(5,13,31,.07); }
  .logo-item:nth-child(3n) { border-right: none; }
  .logo-item img { max-width: 72px; max-height: 40px; }
}

/* ── LOGO TICKER ────────────────────────── */
.logo-ticker-wrap {
  background: var(--white);
  padding: 20px 0 18px;
  border-bottom: 1px solid rgba(5,13,31,.07);
  overflow: hidden;
  position: relative;
}
/* Fade edges */
.logo-ticker-wrap::before,
.logo-ticker-wrap::after {
  content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2;
}
.logo-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--white) 30%, transparent); }
.logo-ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--white) 30%, transparent); }

.logo-ticker-label {
  text-align: center;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  opacity: .3; margin-bottom: 14px;
}

.logo-ticker-track { overflow: hidden; }

.logo-ticker-inner {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.logo-ticker-inner:hover { animation-play-state: paused; }

.logo-tile {
  padding: 0 clamp(28px,4vw,52px);
  display: flex; align-items: center; justify-content: center;
  height: 52px; flex-shrink: 0;
  border-right: 1px solid rgba(5,13,31,.07);
}
.logo-tile:last-child { border-right: none; }
.logo-tile img {
  height: clamp(24px,3vw,36px); width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%); opacity: .55;
  transition: filter .3s, opacity .3s;
}
.logo-tile:hover img { filter: grayscale(0%); opacity: 1; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CHANNELS GRID ──────────────────────── */
.channels-panel { background: #080F23; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.ch-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.55);
  cursor: default;
  transition: background .4s, border-color .4s, color .4s, transform .3s;
  position: relative; overflow: hidden;
}
.ch-tile span {
  font-size: clamp(10px,1vw,13px); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
/* Lit state */
.ch-tile.lit {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(0,80,255,.5), 0 0 60px rgba(0,80,255,.2);
}
/* Pulse ring on lit */
.ch-tile.lit::after {
  content: '';
  position: absolute; inset: -1px; border-radius: 11px;
  border: 2px solid rgba(0,80,255,.5);
  animation: chPulse 1.4s ease-out forwards;
}
@keyframes chPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

@media (max-width: 960px) {
  .channels-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}
@media (max-width: 600px) {
  .channels-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ch-tile span { font-size: 9px; }
}

/* ── TILE SCROLL ANIMATIONS ─────────────── */
/* Base state — tiles start invisible/shifted */
.tile-anim {
  opacity: 0;
  transform: translateY(32px) scale(.97);
  transition: opacity .6s cubic-bezier(.16,1,.3,1),
              transform .6s cubic-bezier(.16,1,.3,1),
              border-color .25s, box-shadow .25s;
}
.tile-anim.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Stagger delays for grid children */
.tile-anim:nth-child(1)  { transition-delay: 0.00s; }
.tile-anim:nth-child(2)  { transition-delay: 0.07s; }
.tile-anim:nth-child(3)  { transition-delay: 0.14s; }
.tile-anim:nth-child(4)  { transition-delay: 0.21s; }
.tile-anim:nth-child(5)  { transition-delay: 0.28s; }
.tile-anim:nth-child(6)  { transition-delay: 0.35s; }
.tile-anim:nth-child(7)  { transition-delay: 0.42s; }
.tile-anim:nth-child(8)  { transition-delay: 0.49s; }
.tile-anim:nth-child(9)  { transition-delay: 0.56s; }
.tile-anim:nth-child(10) { transition-delay: 0.63s; }
.tile-anim:nth-child(11) { transition-delay: 0.70s; }
.tile-anim:nth-child(12) { transition-delay: 0.77s; }
.tile-anim:nth-child(13) { transition-delay: 0.84s; }
.tile-anim:nth-child(14) { transition-delay: 0.91s; }

/* Blockflow steps — slide in from sides alternating */
.bf-step { opacity: 0; transform: translateY(24px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); }
.bf-step.in-view { opacity: 1; transform: translateY(0); }
.bf-step:nth-child(1) { transition-delay: 0s; }
.bf-step:nth-child(2) { transition-delay: .1s; }
.bf-step:nth-child(3) { transition-delay: .2s; }
.bf-step:nth-child(4) { transition-delay: .3s; }

/* Platform cards pop up */
.pi-card { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1), background .2s; }
.pi-card.in-view { opacity: 1; transform: translateY(0); }
.pi-card:nth-child(1) { transition-delay: 0s; }
.pi-card:nth-child(2) { transition-delay: .08s; }
.pi-card:nth-child(3) { transition-delay: .16s; }
.pi-card:nth-child(4) { transition-delay: .24s; }

/* Industry image cards */
.ind-img-card { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.ind-img-card.in-view { opacity: 1; transform: translateY(0); }
.ind-img-card:nth-child(1) { transition-delay: 0s; }
.ind-img-card:nth-child(2) { transition-delay: .12s; }
.ind-img-card:nth-child(3) { transition-delay: .24s; }

/* Channel icon tiles */
.ch-tile { opacity: 0; transform: translateY(18px) scale(.95); transition: opacity .45s ease, transform .45s cubic-bezier(.16,1,.3,1); }
.ch-tile.in-view { opacity: 1; transform: translateY(0) scale(1); }

/* ── CHANNEL ICON TILES ──────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  margin-top: clamp(28px, 4vh, 48px);
}
.ch-tile {
  background: var(--white);
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 10px;
  padding: clamp(14px,2vw,22px) clamp(10px,1.5vw,16px);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  cursor: default; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ch-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,80,255,.1);
  transform: translateY(-4px);
}
.ch-tile svg, .ch-tile img { color: rgba(5,13,31,.55); flex-shrink: 0; }
.ch-tile:hover svg { color: var(--blue); }
.ch-label {
  font-size: clamp(10px, 1vw, 12px); font-weight: 600;
  color: rgba(5,13,31,.55); text-align: center; letter-spacing: .01em;
  line-height: 1.3;
}

/* dark variant for channels on dark bg */
.ch-tile--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.ch-tile--dark svg { color: rgba(255,255,255,.6); }
.ch-tile--dark .ch-label { color: rgba(255,255,255,.55); }
.ch-tile--dark:hover { border-color: var(--blue); background: rgba(0,80,255,.1); }
.ch-tile--dark:hover svg { color: var(--blue); }

@media (max-width: 960px) { .channels-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 600px) { .channels-grid { grid-template-columns: repeat(3,1fr); } }

/* ── LOGO TICKER ────────────────────────── */
.logo-ticker {
  background: var(--white);
  border-top: 1px solid rgba(5,13,31,.07);
  border-bottom: 1px solid rgba(5,13,31,.07);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute; top: 0; width: 120px; height: 100%; z-index: 2;
  pointer-events: none;
}
.logo-ticker::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.logo-ticker::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

.logo-ticker__label {
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(5,13,31,.35);
  margin-bottom: 20px;
}
.ticker-track {
  display: flex; align-items: center;
  gap: 48px; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-logo {
  display: flex; align-items: center; justify-content: center;
  height: 44px; flex-shrink: 0;
  filter: grayscale(50%) opacity(0.55);
  transition: filter .3s;
}
.ticker-logo:hover { filter: grayscale(0%) opacity(1); }
.ticker-logo img {
  height: 44px; width: auto; max-width: 140px;
  object-fit: contain; display: block;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* dark bg variant */
.logo-ticker--dark {
  background: var(--dark);
  border-color: rgba(255,255,255,.07);
}
.logo-ticker--dark::before { background: linear-gradient(to right, var(--dark), transparent); }
.logo-ticker--dark::after  { background: linear-gradient(to left,  var(--dark), transparent); }
.logo-ticker--dark .ticker-logo { filter: brightness(0) invert(1) opacity(.4); }
.logo-ticker--dark .ticker-logo:hover { filter: brightness(0) invert(1) opacity(.9); }
.logo-ticker--dark .logo-ticker__label { color: rgba(255,255,255,.3); }

/* ── LANGUAGE SWITCHER ──────────────────── */
.lang-picker {
  position: relative; display: inline-flex; align-items: center;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border: 1.5px solid rgba(5,13,31,.18);
  border-radius: 6px; font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black); background: transparent; cursor: pointer;
  transition: border-color .2s, background .2s; white-space: nowrap;
  min-width: auto; width: auto;
}
.lang-btn:hover { border-color: var(--blue); background: rgba(0,80,255,.04); }
.lang-btn .lang-text { font-size: 14px; line-height: 1; }

.lang-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid rgba(5,13,31,.1);
  border-radius: 8px; box-shadow: 0 8px 40px rgba(5,13,31,.14);
  min-width: 160px; padding: 4px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s; z-index: 2000;
  display: flex; flex-direction: column; gap: 4px;
}
.lang-picker.open .lang-drop {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.lang-group-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(5,13,31,.35);
  padding: 8px 12px 4px; display: block;
}
.lang-opt {
  display: flex; align-items: center; gap: 0;
  padding: 7px 12px; border-radius: 5px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--black);
  transition: background .15s, transform .15s; border: none; background: none;
  width: 100%; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif;
  justify-content: flex-start;
}
.lang-opt:hover { background: rgba(0,80,255,.1); transform: scale(1.1); }
.lang-opt.active { background: rgba(0,80,255,.15); }
.lang-opt .lf { display: none !important; }
.lang-opt .ln { flex: 1; display: none; }
.lang-opt .lc { font-size: 11px; opacity: .4; display: none; }

/* Hide Google's ugly default translate bar */
.goog-te-banner-frame, .goog-te-gadget, .goog-logo-link,
.goog-te-gadget img, #goog-gt-tt, .goog-te-balloon-frame,
div#goog-gt-tt, .goog-te-spinner { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }
/* Hide Google Translate widget container so it never pushes the nav/logo */
#google_translate_element { display: none !important; height: 0 !important; visibility: hidden !important; position: absolute !important; left: -9999px !important; }
/* Defensive: Google Translate sometimes wraps elements in <font> tags with inline styles. Force the logo to stay visible. */
.nav__logo, .nav__logo img,
.nav__logo font, .nav__logo font img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.nav__logo img { display: block !important; height: 36px !important; width: auto !important; }

/* Auto-detect badge */
.lang-auto-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; background: rgba(0,80,255,.08);
  color: var(--blue); padding: 3px 8px; border-radius: 100px;
  margin-left: 4px;
}

@media (max-width: 960px) {
  .lang-btn .lang-name { display: none; } /* show flag only on mobile */
  .lang-drop { right: auto; left: 0; }
}

/* ── LANGUAGE SWITCHER ───────────────────── */
.lang-switcher { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: 1.5px solid rgba(5,13,31,.18);
  border-radius: 6px; padding: 7px 11px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--black);
  transition: all .2s; white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue); }
.lang-toggle svg { flex-shrink: 0; }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid rgba(5,13,31,.1);
  border-radius: 8px; min-width: 196px; padding: 6px;
  box-shadow: 0 8px 40px rgba(5,13,31,.14);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s; z-index: 1100;
  max-height: 360px; overflow-y: auto;
}
.lang-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: block; width: 100%; text-align: left;
  padding: 10px 14px; border-radius: 5px; border: none;
  background: transparent; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--black);
  transition: background .15s, color .15s;
}
.lang-option:hover { background: rgba(0,80,255,.06); color: var(--blue); }
.lang-option.active { font-weight: 700; color: var(--blue); background: rgba(0,80,255,.05); }
@media (max-width: 960px) { .lang-switcher { display: none; } }

/* Mobile lang switcher fallback — show in mobile menu */
.mobile-lang-select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(5,13,31,.12); border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--black); background: var(--white); cursor: pointer;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   SEARCH OVERLAY
   ══════════════════════════════════════════ */

/* Search icon button in nav */
.nav__search-btn {
  width: 36px; height: 36px; display: flex !important; align-items: center;
  justify-content: center; border-radius: 6px; cursor: pointer;
  border: 1.5px solid rgba(5,13,31,.2); background: transparent; color: var(--dark);
  opacity: 1; transition: border-color .2s, background .2s, color .2s;
  flex-shrink: 0; visibility: visible !important;
}
.nav__search-btn:hover { border-color: var(--blue); background: rgba(0,80,255,.06); color: var(--blue); }
.nav:not(.scrolled) .nav__search-btn { color: var(--white) !important; border-color: rgba(255,255,255,.4) !important; }
.nav:not(.scrolled) .nav__search-btn:hover { border-color: var(--white); background: rgba(255,255,255,.15); }
.nav.scrolled .nav__search-btn { color: var(--dark) !important; border-color: rgba(5,13,31,.2) !important; }

/* Full-screen search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,13,31,.82); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(80px,12vh,140px) clamp(16px,5vw,60px) 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.search-overlay.open {
  opacity: 1; pointer-events: all;
}

/* Search box */
.search-box {
  width: 100%; max-width: 720px;
  background: var(--white); border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  transform: translateY(-16px); transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.search-overlay.open .search-box { transform: translateY(0); }

.search-input-row {
  display: flex; align-items: center; gap: 12px; padding: 18px 22px;
  border-bottom: 1px solid rgba(5,13,31,.08);
}
.search-icon-inner { color: rgba(5,13,31,.35); flex-shrink: 0; }
.search-input {
  flex: 1; border: none; outline: none; font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif; color: var(--black);
  background: transparent; font-weight: 500;
}
.search-input::placeholder { color: rgba(5,13,31,.3); }
.search-kbd {
  font-size: 11px; font-weight: 700; color: rgba(5,13,31,.3);
  background: rgba(5,13,31,.06); border: 1px solid rgba(5,13,31,.1);
  border-radius: 4px; padding: 3px 7px; white-space: nowrap;
}
.search-close-btn {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: rgba(5,13,31,.4); display: flex; align-items: center;
  transition: color .15s;
}
.search-close-btn:hover { color: var(--black); }

/* Results */
.search-results {
  max-height: 400px; overflow-y: auto;
}
.search-results:empty { display: none; }
.search-result-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 22px; border-bottom: 1px solid rgba(5,13,31,.05);
  cursor: pointer; text-decoration: none; color: var(--black);
  transition: background .15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(0,80,255,.04); }
.search-result-item.selected { background: rgba(0,80,255,.06); }
.sr-section {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
}
.sr-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -0.01em;
}
.sr-title mark {
  background: rgba(0,80,255,.15); color: var(--blue);
  border-radius: 2px; padding: 0 2px;
}
.sr-excerpt { font-size: 13px; color: rgba(5,13,31,.5); line-height: 1.5; }
.sr-excerpt mark {
  background: rgba(0,80,255,.1); color: var(--blue);
  border-radius: 2px; padding: 0 2px;
}

/* Empty / loading states */
.search-empty {
  padding: 32px 22px; text-align: center; color: rgba(5,13,31,.4); font-size: 14px;
}
.search-footer {
  padding: 10px 22px; border-top: 1px solid rgba(5,13,31,.06);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(5,13,31,.3);
}
.search-footer-keys { display: flex; gap: 12px; align-items: center; }
.sf-key {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: rgba(5,13,31,.35);
}
.sf-key kbd {
  background: rgba(5,13,31,.06); border: 1px solid rgba(5,13,31,.1);
  border-radius: 3px; padding: 1px 5px; font-size: 10px; font-family: inherit;
}

/* ══════════════════════════════════════════
   SHARED PROB-3COL (tick / cross format)
   Used on industry Real Problem sections
   ══════════════════════════════════════════ */
.prob-3col-industry {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px, 2.5vw, 36px);
  align-items: start;
  margin-top: clamp(16px, 2.5vh, 28px);
}
@media (max-width: 760px) { .prob-3col-industry { grid-template-columns: 1fr; } }

.prob-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(5,13,31,.4);
  margin-bottom: 10px; display: block;
}

.prob-list-i {
  list-style: none; padding: 0; margin: 0;
}
.prob-list-i li {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 0; border-bottom: 1px solid rgba(5,13,31,.07);
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.prob-list-i li:last-child { border-bottom: none; }

.prob-list-i--tick li::before { display: none; }
.prob-tick-i {
  width: 16px; height: 16px; flex-shrink: 0;
  background: #0EB87A; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.prob-tick-i svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 2.5; fill: none; }

.prob-list-i--cross li { color: rgba(5,13,31,.5); font-weight: 500; white-space: nowrap; }
.prob-list-i--cross li::before { display: none; }
.prob-cross-i {
  width: 16px; height: 16px; flex-shrink: 0;
  background: #E53935; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.prob-cross-i svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 2.5; fill: none; }

.prob-result-col {
  padding-top: clamp(10px,1.5vh,18px);
  border-top: 2px solid var(--blue);
}
.prob-result-col .prob-result-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(16px,2vw,26px);
  line-height: 1.15; letter-spacing: -0.02em; color: var(--dark);
}
.prob-result-col .prob-result-text .rb { color: var(--blue); }
.prob-result-col .prob-result-text .rd { color: rgba(5,13,31,.4); }

/* ══════════════════════════════════════════
   HOME PAGE PANELS — reduced by ~33%
   ══════════════════════════════════════════ */
.panel {
  min-height: 27vh;
  padding: clamp(16px,2.5vh,36px) var(--px);
}

/* Use-case card — compact (industry pages) */
.uc-card {
  padding: clamp(16px,1.8vw,28px);
}

/* Industry solution section — compact */
.sec--dark .stat-n { font-size: clamp(24px,2.5vw,38px); }
.sec--dark .stat-l { font-size: 12px; }

/* Language hint */
.search-lang-badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  background: rgba(0,80,255,.08); border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--blue);
  margin-bottom: 16px;
}

/* Smaller "From" text in hero */
.hero-split__text h1 .w:first-child {
  font-size: clamp(28px, 3.5vw, 54px) !important;
}

/* ── HERO HEADLINE SIZING ───────────────── */
.hero-from,
.hero-to {
  font-size: clamp(20px, 2.8vw, 40px) !important;
  margin-bottom: clamp(8px, 1.5vh, 18px) !important;
}

.hero-from {
  margin-top: 20px;
}

.hero-to {
  margin-top: 30px;
}

.hero-main {
  font-size: clamp(32px, 4.2vw, 56px) !important;
}

/* Add space after Customer Signals */
.hero-main:first-of-type {
  margin-bottom: 24px;
}

/* Add space before Real Time Action */
.hero-main:last-of-type {
  margin-top: 10px;
}

/* Padding below hero CTA buttons */
.hero-split__cta-below {
  margin-bottom: 20px;
}

/* ── HERO LAYOUT ───────────────────────── */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,4vw,64px); align-items: start;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.hero-split__img {
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding-top: 40px;
}
.hero-split__img img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: cover;
  object-position: left center;
  image-rendering: crisp-edges;
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr !important; }
  .hero-split__img { display: none; }
}

@media (max-width: 600px) {
  .search-input { font-size: 16px; }
  .search-overlay { padding-top: 72px; padding-left: 12px; padding-right: 12px; }
  .search-results { max-height: 320px; }
}

/* ════════════════════════════════════════
   HERO — FINAL CLEAN VERSION (FIXED)
   ════════════════════════════════════════ */

.hero-split {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,4vw,64px);
  background: var(--dark);
  padding-top: var(--nav-h);
  overflow: hidden;
  width: 100%;
}

/* LEFT TEXT */
.hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px,4vh,40px) clamp(24px,4vw,48px) clamp(24px,4vh,40px) 0;
}

/* RIGHT IMAGE CONTAINER */
.hero-split__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE — constrained to match industry hero height */
.hero-split__image img {
  width: 100%;
  height: clamp(260px, 30vw, 420px);
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: 12px;
}

/* REMOVE ANY OVERLAY */
.hero-split__image::before {
  display: none !important;
}

/* CTA BELOW IMAGE */
.hero-split__cta-below {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* BUTTON SIZE */
.btn--hero {
  min-width: 220px;
  padding: 18px 32px;
  font-size: 16px;
}

/* HEADLINE ALIGNMENT */
.hero-split__text h1 {
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-size: clamp(40px, 5.5vw, 76px);
  margin-left: 0;
}

/* ═══ MOBILE ═══ */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-split__image {
    order: 1;
  }

  .hero-split__text {
    order: 2;
  }
}

@media (max-width: 600px) {
  .hero-split__image img {
    max-height: 60vh;
  }
}
/* ── CUSTOMER LOGO TICKER ───────────────── */
.logo-ticker-section {
  background: var(--white);
  padding: clamp(20px,3vh,32px) 0;
  border-top: 1px solid rgba(5,13,31,.07);
  border-bottom: 1px solid rgba(5,13,31,.07);
  overflow: hidden;
}
.logo-ticker-label {
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(5,13,31,.35);
  margin-bottom: clamp(14px,2vh,22px);
}
.ticker-track-wrap {
  overflow: hidden; position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
/* Two copies for seamless loop */
.ticker-track .ticker-set {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
}
.ticker-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(24px,3vw,48px);
  height: 56px; flex-shrink: 0;
  border-right: 1px solid rgba(5,13,31,.08);
}
.ticker-logo:last-child { border-right: none; }
.ticker-logo img {
  height: 40px; width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .3s, opacity .3s;
  max-width: 160px;
}
.ticker-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO SPLIT (text left / image right) ─ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  width: 100%;
}
.hero-split__text { display: flex; flex-direction: column; }
.hero-split__image {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  flex-shrink: 0;
}
.hero-split__image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* subtle blue tint overlay */
.hero-split__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,80,255,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Override hero alignment for split layout */
.hero--split {
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(40px,6vh,80px));
  padding-left: var(--px);
  padding-right: var(--px);
}
.hero--split > .inner { padding: 0; }

/* page-hero split */
.page-hero--split {
  min-height: 60vh;
  padding-top: calc(var(--nav-h) + clamp(40px,5vh,72px));
  padding-left: var(--px);
  padding-right: var(--px);
  display: flex; align-items: center;
  background: var(--dark); color: var(--white);
  padding-bottom: var(--py);
}
.page-hero--split .inner { width: 100%; max-width: var(--max-w); margin: 0 auto; }

/* stat badge on hero image */
.hero-img-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(5,13,31,.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.hero-img-badge__stat { display: flex; flex-direction: column; min-width: 0; flex: 1 1 0; }
.hero-img-badge__n {
  font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800;
  font-size: clamp(18px,2.2vw,26px); color: var(--white);
  letter-spacing: -0.03em; line-height: 1;
  font-style: italic;
  white-space: nowrap;
}
.hero-img-badge__l {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-img-badge__div {
  width: 1px; height: 36px; background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Responsive hero split */
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__image {
    aspect-ratio: 16/9;
    max-height: 320px;
    order: -1; /* image above text on mobile */
  }
  .hero--split {
    padding-top: calc(var(--nav-h) + 24px);
  }
  .page-hero--split {
    padding-top: calc(var(--nav-h) + 20px);
  }
}
@media (max-width: 600px) {
  .hero-split__image { aspect-ratio: 16/9; max-height: 240px; }
  .hero-img-badge { padding: 12px 14px; gap: 12px; }
  .hero-img-badge__n { font-size: clamp(16px,4.5vw,22px); }
}

/* === Mobile compression — minimise endless scrolling === */
@media (max-width: 768px) {
  /* Tighter section padding on mobile */
  .sec { padding-top: clamp(28px, 5vh, 44px) !important; padding-bottom: clamp(28px, 5vh, 44px) !important; }
  .page-hero { padding-top: calc(var(--nav-h) + 16px) !important; padding-bottom: clamp(24px, 4vh, 36px) !important; }

  /* Smaller mobile hero h1 */
  .hero-headline,
  .page-hero__title,
  .section-title { font-size: clamp(24px, 7vw, 36px) !important; line-height: 1.15 !important; }
  .panel-title { font-size: clamp(20px, 5.5vw, 30px) !important; line-height: 1.2 !important; white-space: normal !important; }

  /* Force two-column hero grids to stack */
  .page-hero > div[style*="grid-template-columns:1fr 1fr"],
  .page-hero > div[style*="grid-template-columns: 1fr 1fr"],
  .page-hero > div[style*="grid-template-columns:0.85fr 1.15fr"],
  .page-hero > div[style*="grid-template-columns:1.1fr 0.9fr"],
  .page-hero > div[style*="grid-template-columns: 1.1fr 0.9fr"] { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Hero headline + sub-copy: always wrap on mobile, kill any inline nowrap */
  .page-hero .hero-headline,
  .page-hero .hero-headline span,
  .page-hero .sub-copy,
  .page-hero p { white-space: normal !important; word-break: break-word !important; overflow-wrap: anywhere !important; max-width: 100% !important; }

  /* Console graphics on industry pages — keep compact */
  .page-hero img[src*="unsplash"] { height: 200px !important; }

  /* Section fonts trim — drop large body copy */
  .sec p { font-size: 14px !important; line-height: 1.55 !important; }
  .sec ul li, .sec ol li { font-size: 13px !important; line-height: 1.5 !important; }

  /* === Collapsible-by-default mobile sections ===
     Every <section> on the site collapses to eyebrow + heading + intro by default,
     with a "Show more" pill to expand. Excludes hero/banner sections only. */
  section:not(.al-hero):not(.page-hero):not(.pl-hero):not(.ab-hero):not(.lib-hero):not(.gloss-hero):not(.ind-hero):not(.cta-band):not(.partner-strip):not(.sec--blue):not(.sec--no-mcollapse) {
    position: relative;
    padding-bottom: 60px !important;
  }
  /* Universal rule: inside the section's outer wrapper (any direct-child element),
     hide every child after the first. The "first child" typically contains
     eyebrow + heading + intro. */
  section:not(.al-hero):not(.page-hero):not(.pl-hero):not(.ab-hero):not(.lib-hero):not(.gloss-hero):not(.ind-hero):not(.cta-band):not(.partner-strip):not(.sec--blue):not(.sec--no-mcollapse):not(.is-open) > * > *:nth-child(n+2) { display: none !important; }

  /* Preview + Progressive Reveal pill */
  section:not(.al-hero):not(.page-hero):not(.pl-hero):not(.ab-hero):not(.lib-hero):not(.gloss-hero):not(.ind-hero):not(.cta-band):not(.partner-strip):not(.sec--blue):not(.sec--no-mcollapse)::after {
    content: 'View details ↓';
    position: absolute; left: 50%; transform: translateX(-50%);
    bottom: 14px; padding: 8px 18px; font-size: 12px; font-weight: 700;
    border-radius: 999px; background: rgba(0,80,255,.12); color: var(--blue);
    border: 1px solid rgba(0,80,255,.32); cursor: pointer;
    pointer-events: auto;
    z-index: 5;
  }
  section.is-open::after { content: 'Hide details ↑'; }

  /* Sections that should NOT collapse */
  .sec--blue { padding-bottom: clamp(28px,5vh,44px) !important; }
  .sec--blue::after { display: none !important; }
  .trusted-strip { padding-bottom: clamp(20px,3vh,32px) !important; }
  .trusted-strip::after { display: none !important; }

  /* === INDEX HERO — mobile-only adjustments === */
  .al-hero__eyebrow,
  .al-hero__sub { display: none !important; }
  .al-hero__h1 {
    font-size: clamp(22px, 6vw, 38px) !important;   /* ~20% smaller */
    margin-top: -40px !important;
    margin-bottom: 14px !important;
  }
  .al-hero__sig { font-size: 12px !important; }

  /* === TRUSTED STRIP — 100% faster logo scroll on mobile === */
  .trusted-track { animation-duration: 25s !important; }

  /* === Slight shading behind icons on key sections === */
  .stackfail svg, .stackfail [class*="icon"]:not([class*="icon--"]),
  .sdal svg, .sdal [class*="step-icon"], .sdal [class*="stage-icon"],
  .forwhom svg, .forwhom [class*="icon"]:not([class*="icon--"]),
  .ucases svg, .ucases [class*="uc-icon"], .ucases [class*="ucase-icon"] {
    background: rgba(0,80,255,.06);
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(0,80,255,.08);
  }
  /* But don't tint inline-decoration SVGs (arrows, dividers) — only icon containers */
  .stackfail__list svg,
  .sdal__step-arrow svg,
  .ucases__grid svg[width="12"], .ucases__grid svg[width="14"] {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* === "Show more" pill on light-section overrides === */
  .stackfail::after,
  .forwhom::after,
  .ucases::after,
  .sdal::after,
  .workswith::after {
    background: #fff !important;
    color: var(--blue) !important;
    border: 1px solid rgba(0,80,255,.35) !important;
    box-shadow: 0 4px 14px rgba(5,13,31,.08) !important;
  }

  /* Pill colour adapts to dark / blue section backgrounds */
  section.sec--dark::after,
  section.pl-modules::after,
  section[style*="background:#050D1F"]::after,
  section[style*="background: #050D1F"]::after,
  section[style*="background:var(--dark)"]::after,
  section[style*="background: var(--dark)"]::after,
  section[style*="background:#0050FF"]::after,
  section[style*="background: #0050FF"]::after,
  section[style*="background:var(--blue)"]::after,
  section[style*="background: var(--blue)"]::after {
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.36) !important;
  }
}

/* Index hero — keep worker + phone visible on mobile */
@media (max-width: 960px) {
  /* Zoom out: shrink hero so the full image fits more naturally */
  .al-hero { min-height: auto !important; }
  .al-hero__inner { min-height: auto !important; }
  .al-hero__bg-img {
    /* Phone roughly sits at ~75% across in the widescreen image — centre it on screen */
    background-position: 75% center !important;
    background-size: auto 100% !important;
    background-repeat: no-repeat !important;
    background-color: var(--dark);
  }
  .al-hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(5,13,31,.82) 0%,
        rgba(5,13,31,.6) 35%,
        rgba(5,13,31,.5) 55%,
        rgba(5,13,31,.7) 82%,
        rgba(5,13,31,.92) 100%) !important;
  }
}

/* Phones — zoom out further, smartphone stays centred */
@media (max-width: 600px) {
  .al-hero { min-height: auto !important; }
  .al-hero__inner {
    min-height: auto !important;
    padding-bottom: clamp(20px, 4vh, 32px) !important;
  }
  .al-hero__bg-img {
    /* Zoom out further: image height = 72% of viewport — more headroom around worker + smartphone */
    background-position: 75% 42% !important;
    background-size: auto 72% !important;
    background-repeat: no-repeat !important;
    background-color: var(--dark);
  }
  .al-hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(5,13,31,.85) 0%,
        rgba(5,13,31,.62) 32%,
        rgba(5,13,31,.55) 55%,
        rgba(5,13,31,.75) 80%,
        rgba(5,13,31,.95) 100%) !important;
  }
  .al-hero__copy { max-width: 100% !important; }
  /* Tight spacing between CTAs and the SDAL overlay */
  .al-hero__ctas { margin-bottom: 0 !important; }
  .sdal-overlay {
    position: relative !important;
    left: auto !important; bottom: auto !important;
    margin: 14px var(--px) clamp(20px, 4vh, 36px) !important;
    width: auto !important;
    /* 20% smaller on mobile, scaled inline */
    padding: 14px 14px 12px !important;
    border-radius: 13px !important;
  }
  .sdal-overlay__label { font-size: 9px !important; margin-bottom: 11px !important; }
  .sdal-overlay__icon { width: 30px !important; height: 30px !important; border-radius: 8px !important; }
  .sdal-overlay__icon svg { width: 14px !important; height: 14px !important; }
  .sdal-overlay__name { font-size: 9px !important; }
  .sdal-overlay__flow { column-gap: 5px !important; row-gap: 10px !important; }
  .sdal-overlay__flow::before { top: 15px !important; }
  .sdal-overlay__step--wide { display: flex !important; justify-content: center !important; }
  .sdal-overlay__step--wide .sdal-overlay__icon {
    width: 92% !important; max-width: 170px !important;
    height: 34px !important; padding: 0 12px !important;
    border-width: 1.5px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    gap: 8px !important; flex-direction: row !important;
    box-sizing: border-box !important;
    transform-origin: center center !important;
  }
  /* Gentler highlight scale on wide buttons so they don't overlap when active */
  .sdal-overlay__step--wide.is-highlight .sdal-overlay__icon { transform: scale(1.06) !important; }
  .sdal-overlay__step--wide .sdal-overlay__icon svg { width: 14px !important; height: 14px !important; flex-shrink: 0 !important; }
  .sdal-overlay__step--wide .sdal-overlay__icon-label {
    font-size: 11px !important; color: #fff !important; font-weight: 800 !important;
    letter-spacing: .02em !important; white-space: nowrap !important;
  }
  /* Stronger, brighter outline for the two wide buttons so they read clearly on mobile */
  .sdal-overlay__step--wide .sdal-overlay__icon--allyvate {
    border-color: rgba(165,243,252,.85) !important;
    background: rgba(34,211,238,.32) !important;
    box-shadow: 0 0 0 1px rgba(34,211,238,.25), 0 6px 18px -8px rgba(0,0,0,.55) !important;
  }
  .sdal-overlay__step--wide .sdal-overlay__icon--inform {
    border-color: rgba(251,207,232,.9) !important;
    background: rgba(244,114,182,.32) !important;
    box-shadow: 0 0 0 1px rgba(244,114,182,.25), 0 6px 18px -8px rgba(0,0,0,.55) !important;
  }
}


/* page refinements */
.who-for-line { color: var(--blue); }
.platform-action-line { width: 100%; max-width: 620px; margin: 8px 0 0; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.62); }
.intel-bar--allyvate { background: linear-gradient(180deg, rgba(0,80,255,.16) 0%, rgba(255,255,255,.04) 100%); border: 1px solid rgba(0,80,255,.26); border-radius: 12px; }

/* ═══ PARTNER TICKER (shared — used on partners page) ═══ */
.partner-strip {
  background: var(--white);
  padding: clamp(20px,3vh,36px) var(--px);
  border-top: 1px solid rgba(5,13,31,.07);
  border-bottom: 1px solid rgba(5,13,31,.07);
  overflow: hidden;
}
.partner-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.partner-ticker {
  position: relative;
  overflow: hidden;
  margin-left: calc(-1 * var(--px));
  margin-right: calc(-1 * var(--px));
  margin-top: clamp(16px,2.5vh,24px);
}
.partner-ticker::before,
.partner-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.partner-ticker::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.partner-ticker::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.partner-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: partner-scroll 40s linear infinite;
  padding: 6px 0;
}
.partner-track:hover { animation-play-state: paused; }
@keyframes partner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-pill {
  height: 44px; padding: 0 clamp(18px,2vw,28px);
  border: 1px solid rgba(5,13,31,.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: clamp(13px,1.1vw,15px); letter-spacing: -0.01em;
  color: rgba(5,13,31,.65); white-space: nowrap; flex-shrink: 0;
  background: var(--white);
  transition: opacity .2s, transform .2s, border-color .2s, color .2s;
  opacity: .85; cursor: default;
}
.partner-pill:hover { opacity: 1; transform: scale(1.04); border-color: var(--blue); color: var(--dark); }
.partner-track img {
  height: 44px; width: auto;
  flex-shrink: 0;
  opacity: .7; filter: grayscale(20%);
  transition: opacity .2s, transform .2s, filter .2s;
  cursor: default;
  display: block;
}
.partner-track img:hover { opacity: 1; transform: scale(1.04); filter: grayscale(0%); }
@media (max-width: 600px) {
  .partner-track { gap: 28px; }
  .partner-pill { height: 36px; font-size: 13px; padding: 0 16px; }
  .partner-track img { height: 36px; max-width: 110px; }
}

/* ── Glossary ──────────────────────────────────────────── */
.gloss-hero {
  background: var(--dark);
  padding: 100px 24px 72px;
  text-align: center;
}
.gloss-hero__inner { max-width: 680px; margin: 0 auto; }
.gloss-hero__inner h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.gloss-hero__inner h1 span { color: var(--blue); }
.gloss-hero__inner p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0 0 32px;
}
.gloss-hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gloss-hero-stat {
  padding: 8px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
}

/* layout wrapper */
.gloss-layout-wrap {
  background: #F7F8FA;
  min-height: 60vh;
}
.gloss-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  max-width: 1160px;
  margin: 0 auto;
  gap: 0;
  align-items: start;
}

/* sidebar */
.gloss-sidebar {
  position: sticky;
  top: 72px;
  padding: 40px 24px 40px 0;
  border-right: 1px solid rgba(5,13,31,.08);
}
.gloss-sidebar__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(5,13,31,.35);
  margin-bottom: 6px;
}
.gloss-sidebar h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 18px;
}
.gloss-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(5,13,31,.12);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 20px;
}
.gloss-search-row svg { flex-shrink: 0; color: rgba(5,13,31,.35); }
.gloss-search-row input {
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--dark);
  background: transparent;
  width: 100%;
}
.gloss-search-row input::placeholder { color: rgba(5,13,31,.35); }

.gloss-group-btns { display: flex; flex-direction: column; gap: 4px; }
.gloss-group-btn {
  text-align: left;
  padding: 9px 14px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: rgba(5,13,31,.55);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.gloss-group-btn:hover { background: rgba(0,80,255,.06); color: var(--blue); }
.gloss-group-btn.is-active { background: var(--blue); color: #fff; }
.gloss-group-btn.is-empty { opacity: .3; cursor: default; }

/* main content */
.gloss-content {
  padding: 40px 0 60px 40px;
}
.gloss-sec { margin-bottom: 8px; }
.gloss-letter-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(5,13,31,.07);
  margin-bottom: 0;
}
.gloss-terms { display: flex; flex-direction: column; }

.gloss-term {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(5,13,31,.06);
  align-items: start;
}
.gloss-term:last-child { border-bottom: none; }

.gloss-term__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.gloss-term__abbr {
  font-size: 11px;
  font-weight: 500;
  color: rgba(5,13,31,.45);
  letter-spacing: .01em;
}

.gloss-term__right {}
.gloss-term__def {
  font-size: 14px;
  color: rgba(5,13,31,.72);
  line-height: 1.7;
  margin: 0 0 12px;
}
.gloss-term__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.gloss-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,80,255,.08);
  color: var(--blue);
}

.gloss-no-results {
  display: none;
  padding: 48px 0;
  text-align: center;
  color: rgba(5,13,31,.4);
  font-size: 15px;
}

@media (max-width: 860px) {
  .gloss-layout { grid-template-columns: 1fr; }
  .gloss-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(5,13,31,.08);
    padding: 28px 24px;
  }
  .gloss-group-btns { flex-direction: row; flex-wrap: wrap; }
  .gloss-content { padding: 28px 24px 48px; }
  .gloss-term { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Case study cards (cs2) ─ shared by case-studies.html and all industry pages ── */
.cs2-card { border-radius: 8px; padding: clamp(18px,2.2vw,26px); display: flex; flex-direction: column; }
.cs2-card--light { background: #fff; border: 1px solid rgba(5,13,31,.09); }
.cs2-card--dark  { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.cs2-row { padding-top: 12px; margin-top: 12px; }
.cs2-card--light .cs2-row { border-top: 1px solid rgba(5,13,31,.07); }
.cs2-card--dark  .cs2-row { border-top: 1px solid rgba(255,255,255,.08); }
.cs2-lbl { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.cs2-card--light .cs2-lbl { color: var(--blue); }
.cs2-card--dark  .cs2-lbl { color: rgba(100,160,255,.85); }
.cs2-txt { font-size: 13px; line-height: 1.65; }
.cs2-card--light .cs2-txt { color: rgba(5,13,31,.68); }
.cs2-card--dark  .cs2-txt { color: rgba(255,255,255,.62); }
.cs2-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .07em; padding: 4px 10px; border-radius: 4px; margin-bottom: 14px; }
.cs2-card--light .cs2-tag { background: rgba(0,80,255,.07); color: var(--blue); }
.cs2-card--dark  .cs2-tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
.cs2-metric { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(26px,2.8vw,36px); color: var(--blue); line-height: 1; margin-bottom: 6px; }
.cs2-metric-lbl { font-size: 12px; opacity: .5; margin-bottom: 14px; }
.cs2-card--dark .cs2-metric-lbl { color: #fff; }
.cs2-cta { margin-top: auto; padding-top: 20px; }
.cap-pill { display: inline-block; font-size: 11px; font-weight: 700; background: rgba(0,80,255,.1); color: var(--blue); padding: 2px 8px; border-radius: 3px; margin: 2px 2px 2px 0; }
.cs2-card--dark .cap-pill { background: rgba(100,160,255,.15); color: rgba(140,190,255,.9); }
.cs2-4grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
@media (max-width: 640px) { .cs2-4grid { grid-template-columns: 1fr; } }
.cs2-card-head { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.cs2-card-head .cs2-lbl { margin-bottom: 0; }
.cs2-lbl { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* ── Mechanism cards (case studies page) ── */
.mech-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(5,13,31,.09);
  border-radius: 10px;
  padding: clamp(20px,2.2vw,28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  cursor: default;
}
.mech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,80,255,.35);
  box-shadow: 0 0 0 1px rgba(0,80,255,.2), 0 8px 32px rgba(0,80,255,.14), 0 2px 8px rgba(0,80,255,.08);
}
.mech-card__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(5,13,31,.2);
}
.mech-card__icon {
  color: var(--blue);
  margin: 4px 0 2px;
}
.mech-card__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.mech-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(14px,1.3vw,17px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}
.mech-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(5,13,31,.58);
  flex: 1;
}
.mech-card__arrow {
  font-size: 18px;
  color: rgba(0,80,255,.3);
  margin-top: 4px;
  align-self: flex-end;
}
@media (max-width: 860px) {
  .mech-cards { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 520px) {
  .mech-cards { grid-template-columns: 1fr !important; }
}

/* ── Integrations page ── */
/* Architecture diagram */
.int-diagram-wrap {
  background: var(--dark);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
}
.int-arch {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
}
.int-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.int-col-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.int-node {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.int-node sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,.35);
  font-style: normal;
  vertical-align: baseline;
}
.int-node.src { border-color: rgba(0,80,255,.3); }
.int-node.ch  { border-color: rgba(0,200,150,.2); }
.int-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
  min-width: 180px;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(0,80,255,.15), 0 0 0 14px rgba(0,80,255,.06);
}
.int-hub-eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.int-hub-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.int-hub-pill {
  background: rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
/* Pattern cards */
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(24px, 3vh, 40px);
}
.pattern-card {
  background: #fff;
  border: 1px solid rgba(5,13,31,.09);
  border-radius: 12px;
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.pattern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(5,13,31,.09);
}
.pattern-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pattern-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,80,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.pattern-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(5,13,31,.35);
  margin-bottom: 3px;
}
.pattern-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.pattern-card > p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(5,13,31,.6);
  margin: 0;
  flex: 1;
}
.pattern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.pattern-tag {
  background: rgba(0,80,255,.06);
  border: 1px solid rgba(0,80,255,.15);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
}
/* Result callout */
.int-result {
  margin-top: clamp(28px, 4vh, 44px);
  background: rgba(0,80,255,.05);
  border: 1px solid rgba(0,80,255,.15);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.int-result-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.int-result h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--dark);
  margin: 0 0 8px;
}
.int-result p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(5,13,31,.6);
  margin: 0;
}
/* Ecosystem badges */
.eco-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.eco-badge {
  background: #fff;
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(5,13,31,.7);
}
/* Responsive */
@media (max-width: 768px) {
  .int-arch { grid-template-columns: 1fr; }
  .int-hub { min-width: unset; }
  .pattern-grid { grid-template-columns: 1fr; }
  .int-result { flex-direction: column; }
}

/* ── DOCUMENTS PAGE ───────────────────────── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(5,13,31,.1);
  border-radius: 14px;
  padding: 26px 24px 22px;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow .15s, transform .15s, border-color .15s;
}
.doc-card:hover {
  box-shadow: 0 8px 28px rgba(0,80,255,.1);
  transform: translateY(-2px);
  border-color: #c0d4ff;
  text-decoration: none;
}
.doc-icon {
  width: 44px; height: 44px;
  background: #EEF4FF;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-bottom: 2px;
}
.doc-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EEF4FF;
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 4px;
}
.doc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}
.doc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(5,13,31,.55);
  flex: 1;
  margin: 0;
}
.doc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(5,13,31,.45);
  border: 1px solid rgba(5,13,31,.12);
  border-radius: 999px;
  padding: 2px 9px;
}
.doc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}
/* Dark variant doc cards */
.doc-card.doc-card--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}
.doc-card.doc-card--dark .doc-icon {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.doc-card.doc-card--dark .doc-type {
  background: rgba(0,80,255,.25);
  color: #7FAAFF;
}
.doc-card.doc-card--dark .doc-title { color: var(--white); }
.doc-card.doc-card--dark .doc-desc { color: rgba(255,255,255,.5); }
.doc-card.doc-card--dark .doc-tag {
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.4);
}
.doc-card.doc-card--dark:hover {
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
@media (max-width: 900px) {
  .doc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .doc-grid { grid-template-columns: 1fr; }
}

/* ── BLOG PAGE ────────────────────────────── */

/* Substack subscribe bar */
.substack-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #050D1F 0%, #0B1D45 100%);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 40px;
}

/* Tag filter */
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(5,13,31,.15);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: rgba(5,13,31,.5);
  cursor: pointer;
  transition: all .15s;
}
.tag-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.tag-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(5,13,31,.09);
  border-radius: 14px;
  padding: 24px 22px 20px;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow .15s, transform .15s, border-color .15s;
  overflow: hidden;
}
.blog-tile:hover {
  box-shadow: 0 8px 28px rgba(0,80,255,.1);
  transform: translateY(-2px);
  border-color: #c0d4ff;
  text-decoration: none;
}
.blog-tile.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: linear-gradient(135deg, #EEF4FF 0%, #F7F9FC 100%);
  border-color: #c0d4ff;
  padding: 36px;
}
.blog-tile__cover {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.cover--blue   { background: linear-gradient(135deg, #0050FF, #3D8EFF); }
.cover--green  { background: linear-gradient(135deg, #059669, #34D399); }
.cover--purple { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.cover--orange { background: linear-gradient(135deg, #D97706, #FCD34D); }
.cover--teal   { background: linear-gradient(135deg, #0891B2, #67E8F9); }
.cover--indigo { background: linear-gradient(135deg, #4338CA, #818CF8); }
.cover--red    { background: linear-gradient(135deg, #DC2626, #FCA5A5); }
.blog-tile__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EEF4FF;
  border-radius: 999px;
  padding: 2px 10px;
  display: inline-block;
}
.blog-tile__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--dark);
  margin: 0;
}
.blog-tile.featured .blog-tile__title {
  font-size: clamp(20px, 2.5vw, 30px);
}
.blog-tile__excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(5,13,31,.55);
  margin: 0;
  flex: 1;
}
.blog-tile__meta {
  font-size: 12px;
  color: rgba(5,13,31,.38);
  margin: 0;
}
.blog-tile__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-block;
}
.blog-tile.hidden { display: none; }

/* Full article body */
.article-body { font-size: 15px; line-height: 1.8; color: rgba(5,13,31,.8); }
.article-body h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(20px,2.5vw,28px); letter-spacing: -0.02em; margin: 40px 0 14px; color: var(--dark); }
.article-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; margin: 32px 0 10px; color: var(--dark); }
.article-body p { margin: 0 0 18px; }
.article-body blockquote {
  border-left: 3px solid var(--blue);
  margin: 28px 0;
  padding: 16px 24px;
  background: #EEF4FF;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 16px;
  color: rgba(5,13,31,.7);
}
.article-body strong { color: var(--dark); }
.article-body a { color: var(--blue); font-weight: 600; }

/* Responsive */
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-tile.featured { grid-column: span 2; grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-tile.featured { grid-column: span 1; padding: 24px 20px; }
  .substack-bar { flex-direction: column; padding: 24px 20px; }
}
