/* ═══════════════════════════════════════════════════════════════
   EMU ANALYTICS  ·  Global Design System + All Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────────── */
:root {
  --blue:        #2175B6;
  --dark-blue:   #004475;
  --light-blue:  #91C3EA;
  --dark-green:  #4A8C9A;
  --light-green: #7AB0BD;
  --cream:       #FFFCF7;
  --near-black:  #050E1A;

  --text-primary:   #0A1628;
  --text-secondary: #3D5068;
  --text-muted:     #6B7A90;
  --text-on-dark:       rgba(232,240,248,0.92);
  --text-on-dark-muted: rgba(232,240,248,0.55);

  --border-light: rgba(33,117,182,0.14);
  --border-dark:  rgba(255,255,255,0.10);
  --glass-bg:     rgba(255,255,255,0.055);

  --section-gap:    120px;
  --section-gap-sm:  80px;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-card:     0 4px 24px rgba(10,22,40,0.10);
  --shadow-card-lg:  0 12px 48px rgba(10,22,40,0.16);
  --shadow-blue:     0 0 40px rgba(33,117,182,0.30);

  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:    'Montserrat', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16,1,0.3,1);
  --t: 0.25s ease;
  --t-slow: 0.5s ease;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
}
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select { font-family:inherit; font-size:inherit; }

/* ─── Typography ────────────────────────────────────────────── */
.t-display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px,7vw,92px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
}
.t-display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px,4.5vw,56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.t-display-md {
  font-family: var(--font-display);
  font-size: clamp(26px,3vw,38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-display-sm {
  font-family: var(--font-display);
  font-size: clamp(20px,2vw,26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.t-body-lg  { font-size: clamp(17px,1.3vw,20px); line-height:1.65; }
.t-body-md  { font-size: 16px; line-height:1.7; }
.t-body-sm  { font-size: 14px; line-height:1.6; }
.t-label    { font-size:12px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container       { width:100%; max-width:1240px; margin:0 auto; padding:0 28px; }
.container--wide { max-width:1440px; }
.container--narrow { max-width:820px; }
.section         { padding:var(--section-gap) 0; }
.section--sm     { padding:var(--section-gap-sm) 0; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:var(--r-sm);
  font-family:var(--font-body); font-size:15px; font-weight:600; line-height:1;
  transition:var(--t); white-space:nowrap; cursor:pointer; border:2px solid transparent;
}
.btn--primary {
  background:var(--blue); color:#fff; border-color:var(--blue);
}
.btn--primary:hover {
  background:#1863a0; border-color:#1863a0;
  box-shadow:0 0 28px rgba(33,117,182,0.45);
  transform:translateY(-1px);
}
.btn--outline {
  background:transparent; color:#fff; border-color:rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color:#fff; background:rgba(255,255,255,0.08);
}
.btn--outline-blue {
  background:transparent; color:var(--blue); border-color:var(--blue);
}
.btn--outline-blue:hover { background:var(--blue); color:#fff; }
.btn--lg { padding:18px 38px; font-size:17px; }
.btn--sm { padding:10px 20px; font-size:13px; }

/* ─── Badges / Pills ─────────────────────────────────────────── */
.badge {
  display:inline-flex; align-items:center; gap:7px;
  padding:6px 14px; border-radius:100px;
  font-size:11px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase;
}
.badge--blue {
  background:rgba(33,117,182,0.14); color:var(--light-blue);
  border:1px solid rgba(145,195,234,0.28);
}
.badge--green {
  background:rgba(74,140,154,0.14); color:var(--light-green);
  border:1px solid rgba(122,176,189,0.28);
}
.badge--light {
  background:rgba(33,117,182,0.09); color:var(--blue);
  border:1px solid rgba(33,117,182,0.18);
}

/* ─── Section Headers ─────────────────────────────────────────── */
.section-hdr            { text-align:center; max-width:680px; margin:0 auto 64px; }
.section-hdr .badge     { margin-bottom:16px; }
.section-hdr p          { margin-top:16px; color:var(--text-secondary); }
.section-hdr--left      { text-align:left; margin-left:0; }
.section-hdr--light h2  { color:#fff; }
.section-hdr--light p   { color:var(--text-on-dark-muted); }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background:#fff; border-radius:var(--r-lg);
  border:1px solid var(--border-light); padding:32px;
  transition:box-shadow var(--t), transform var(--t);
}
.card:hover { box-shadow:var(--shadow-card); transform:translateY(-2px); }
.card--glass {
  background:var(--glass-bg); border:1px solid var(--border-dark);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
}
.card--glass:hover { background:rgba(255,255,255,0.08); }

/* ─── Link Arrows ─────────────────────────────────────────────── */
.link-arr {
  display:inline-flex; align-items:center; gap:6px;
  font-weight:600; font-size:14px;
  transition:gap var(--t), color var(--t);
}
.link-arr::after { content:'→'; }
.link-arr--light  { color:var(--light-blue); }
.link-arr--dark   { color:var(--blue); }
/* Hover-only styling: gated so touch devices don't consume the first tap. */
@media (hover:hover) and (pointer:fine) {
  .link-arr:hover  { gap:10px; }
  .link-arr--light:hover { color:#fff; }
  .link-arr--dark:hover  { color:var(--dark-blue); }
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity:0; transform:translateY(30px);
  transition:opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity:1; transform:none; }
.reveal-d1 { transition-delay:0.08s; }
.reveal-d2 { transition-delay:0.16s; }
.reveal-d3 { transition-delay:0.24s; }
.reveal-d4 { transition-delay:0.32s; }
.reveal-d5 { transition-delay:0.40s; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:0 28px; transition:background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
  border-bottom:1px solid transparent;
}
.nav.scrolled {
  background:rgba(5,14,26,0.93);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom-color:rgba(255,255,255,0.06);
  box-shadow:0 2px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height:74px; gap:24px;
}
.nav-logo {
  display:flex; align-items:center; gap:10px; flex-shrink:0; text-decoration:none;
}
.nav-logo img { width:38px; height:38px; border-radius:50%; object-fit:contain; }
.nav-logo-wordmark {
  font-family:var(--font-display); font-size:17px; font-weight:700;
  color:#fff; letter-spacing:-0.02em; white-space:nowrap;
}
.nav-links {
  display:flex; align-items:center; gap:4px; flex:1; justify-content:center;
}
.nav-links a {
  color:rgba(232,240,248,0.75); font-size:15px; font-weight:500;
  padding:8px 16px; border-radius:var(--r-sm);
  transition:color var(--t), background var(--t);
}
.nav-links a:hover { color:#fff; background:rgba(255,255,255,0.07); }
.nav-links a.active { color:#fff; background:rgba(33,117,182,0.2); }
.nav-cta { flex-shrink:0; }
.nav-hamburger {
  display:none; flex-direction:column; gap:5px; padding:8px; cursor:pointer;
}
.nav-hamburger span {
  width:22px; height:2px; background:#fff; border-radius:2px;
  transition:transform var(--t), opacity var(--t);
  display:block;
}
.nav-hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity:0; }
.nav-hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background:var(--near-black); color:var(--text-on-dark);
  padding:80px 0 40px;
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr;
  gap:48px; margin-bottom:56px;
}
.footer-logo {
  display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.footer-logo img { width:34px; height:34px; border-radius:50%; object-fit:contain; }
.footer-logo-text {
  font-family:var(--font-display); font-size:17px; font-weight:700; color:#fff;
}
.footer-tagline {
  color:var(--text-on-dark-muted); font-size:14px; line-height:1.7;
  max-width:240px; margin-bottom:24px;
}
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:34px; height:34px; border-radius:8px;
  background:rgba(255,255,255,0.07);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-on-dark-muted); font-size:15px;
  transition:background var(--t), color var(--t);
  text-decoration:none;
}
.footer-social a:hover { background:var(--blue); color:#fff; }
.footer-col h4 {
  font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:rgba(232,240,248,0.4); margin-bottom:18px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col a {
  color:var(--text-on-dark-muted); font-size:14px;
  transition:color var(--t); text-decoration:none;
}
.footer-col a:hover { color:#fff; }
.footer-bottom {
  padding-top:28px; border-top:1px solid rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.footer-bottom p { color:rgba(232,240,248,0.35); font-size:13px; }
.footer-legal { display:flex; gap:20px; }
.footer-legal a {
  color:rgba(232,240,248,0.35); font-size:13px;
  transition:color var(--t); text-decoration:none;
}
.footer-legal a:hover { color:rgba(232,240,248,0.7); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position:relative; min-height:100vh;
  background:radial-gradient(ellipse at 35% 45%, #004d8a 0%, #021833 55%, #050E1A 100%);
  display:flex; flex-direction:column; overflow:hidden;
}
.hero-grid-lines {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(33,117,182,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.07) 1px, transparent 1px);
  background-size:64px 64px;
}
.hero-orb {
  position:absolute; border-radius:50%; pointer-events:none; filter:blur(100px);
}
.hero-orb-1 {
  width:720px; height:720px;
  background:radial-gradient(circle, rgba(33,117,182,0.28) 0%, transparent 70%);
  top:-260px; right:-180px;
  animation:orb-drift 18s ease-in-out infinite;
}
.hero-orb-2 {
  width:480px; height:480px;
  background:radial-gradient(circle, rgba(74,140,154,0.22) 0%, transparent 70%);
  bottom:-120px; left:25%;
  animation:orb-drift 13s ease-in-out infinite reverse;
  animation-delay:-5s;
}
.hero-orb-3 {
  width:280px; height:280px;
  background:radial-gradient(circle, rgba(145,195,234,0.15) 0%, transparent 70%);
  top:40%; left:-80px;
  animation:orb-drift 20s ease-in-out infinite;
  animation-delay:-9s;
}
@keyframes orb-drift {
  0%,100% { transform:translate(0,0) scale(1); }
  25%  { transform:translate(30px,-45px) scale(1.06); }
  50%  { transform:translate(-20px,25px) scale(0.94); }
  75%  { transform:translate(45px,35px) scale(1.03); }
}
.hero-content {
  position:relative; z-index:2; flex:1;
  display:flex; align-items:center;
  padding:120px 0 80px;
}
.hero-layout {
  display:grid; grid-template-columns:54% 46%;
  gap:64px; align-items:center;
}
/* Hero Left */
.hero-badge {
  display:inline-flex; align-items:center; gap:9px;
  background:rgba(33,117,182,0.18); border:1px solid rgba(145,195,234,0.32);
  border-radius:100px; padding:8px 16px;
  font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--light-blue); margin-bottom:28px;
}
.hero-badge .pulse-dot {
  width:7px; height:7px; background:var(--light-blue);
  border-radius:50%; animation:pulse-anim 2s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.75); }
}
.hero-title {
  font-family:var(--font-display);
  font-size:clamp(52px,6.5vw,90px);
  font-weight:800; line-height:1.0; letter-spacing:-0.04em;
  color:#fff; margin-bottom:24px;
}
.hero-title .gradient-text {
  background:linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  font-size:clamp(28px,3.2vw,46px);
  display:block;
  padding-bottom:0.12em;
}
.hero-sub {
  font-size:clamp(16px,1.5vw,20px); line-height:1.65;
  color:rgba(232,240,248,0.72); max-width:500px; margin-bottom:40px;
}
.hero-ctas { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-proof {
  display:flex; align-items:center; gap:20px;
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-md); padding:18px 24px; width:fit-content;
}
.hero-proof-stat {
  font-family:var(--font-display); font-size:30px; font-weight:800;
  color:var(--light-blue); line-height:1;
}
.hero-proof-div { width:1px; height:36px; background:rgba(255,255,255,0.14); flex-shrink:0; }
.hero-proof-text { font-size:13px; color:rgba(232,240,248,0.58); line-height:1.45; }
.hero-proof-text strong { display:block; color:rgba(232,240,248,0.88); font-weight:600; font-size:14px; }
/* Hero Right — Mockup */
.hero-visual { display:flex; align-items:center; justify-content:center; overflow:visible; }
.hero-mockup-wrap { width:100%; max-width:560px; animation:float-bob 7s ease-in-out infinite; }
@keyframes float-bob {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-14px); }
}


/* ── Flo.w dashboard mockup composition ───────────────────────── */
.hm-composition {
  position: relative;
  padding: 28px 5px 90px 5px; /* top: flight card overhangs above map */
}

/* Main map panel */
.hm-map {
  background: #020C1A;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(145,195,234,0.18);
  box-shadow: 0 28px 80px rgba(0,0,0,0.62), 0 0 0 1px rgba(145,195,234,0.06);
  animation: hm-enter 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
.hm-panel-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: rgba(0,40,80,0.7);
  border-bottom: 1px solid rgba(145,195,234,0.1);
}
.hm-panel-dots { display: flex; gap: 5px; flex-shrink: 0; }
.hm-pd { width: 9px; height: 9px; border-radius: 50%; }
.hm-pd-r { background: #FF5F57; }
.hm-pd-a { background: #FFBD2E; }
.hm-pd-g { background: #28C840; }
.hm-panel-title {
  flex: 1;
  font-size: 11px; font-weight: 600; letter-spacing: 0.4px;
  color: rgba(145,195,234,0.65);
  font-family: var(--font-body);
}
.hm-live-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  color: #4A8C9A;
  font-family: var(--font-body);
}
.hm-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4A8C9A;
  animation: hm-pulse-dot 2s ease-in-out infinite;
}
@keyframes hm-pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
.hm-airport-svg { display: block; width: 100%; height: auto; }

/* KPI strip at bottom of map panel */
.hm-kpi-strip {
  display: flex;
  border-top: 1px solid rgba(145,195,234,0.1);
  background: rgba(0,20,45,0.6);
}
.hm-kpi {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 7px 4px; gap: 2px;
  border-right: 1px solid rgba(145,195,234,0.08);
}
.hm-kpi:last-child { border-right: none; }
.hm-kpi-label {
  font-size: 8px; font-weight: 600; letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(145,195,234,0.4);
  font-family: var(--font-body);
}
.hm-kpi-val {
  font-size: 15px; font-weight: 700; line-height: 1;
  color: rgba(232,240,248,0.88);
  font-family: var(--font-display);
}
.hm-kpi-good { color: #7AB0BD; }
.hm-kpi-warn { color: #F0A838; }
.hm-kpi-delta {
  font-size: 8px;
  color: rgba(145,195,234,0.38);
  font-family: var(--font-body);
}

/* Floating panels shared */
.hm-float {
  position: absolute;
  background: rgba(3,12,28,0.97);
  border: 1px solid rgba(145,195,234,0.2);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.62), 0 0 0 1px rgba(145,195,234,0.04);
  padding: 12px 14px;
  font-family: var(--font-body);
}
.hm-float-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}

/* Flight detail card (top-right — partially above map) */
.hm-float-flight {
  top: -22px; right: -12px;
  width: 186px;
  animation: hm-enter 1.0s cubic-bezier(0.22,1,0.36,1) 1.1s both;
}
.hm-flight-id { display: flex; align-items: center; gap: 7px; }
.hm-ba-stripe {
  display: inline-block; width: 3px; height: 16px; border-radius: 2px;
  background: #002F8A;
}
.hm-flight-id strong {
  font-size: 14px; font-weight: 700; letter-spacing: -0.3px;
  color: #fff;
  font-family: var(--font-display);
}
.hm-chip {
  font-size: 9px; font-weight: 600; letter-spacing: 0.4px;
  padding: 2px 7px; border-radius: 20px; text-transform: uppercase;
}
.hm-chip-ok {
  background: rgba(74,140,154,0.18); color: #7AB0BD;
  border: 1px solid rgba(74,140,154,0.32);
}
.hm-route {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 9px;
}
.hm-apt {
  font-size: 16px; font-weight: 700; letter-spacing: -0.5px;
  color: rgba(232,240,248,0.92);
  font-family: var(--font-display);
}
.hm-route-arrow { color: rgba(145,195,234,0.4); font-size: 13px; }
.hm-timing {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px 10px; margin-bottom: 10px;
}
.hm-timing-row { display: flex; flex-direction: column; gap: 1px; }
.hm-t-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; color: rgba(145,195,234,0.4);
}
.hm-t-val { font-size: 12px; font-weight: 600; color: rgba(232,240,248,0.85); }
.hm-on-time { color: #7AB0BD; }
.hm-ai-rec {
  display: flex; align-items: flex-start; gap: 7px;
  padding: 7px 9px;
  background: rgba(33,117,182,0.1);
  border: 1px solid rgba(33,117,182,0.22);
  border-radius: 8px;
}
.hm-ai-star { color: #91C3EA; font-size: 12px; flex-shrink: 0; line-height: 1.4; }
.hm-ai-text { font-size: 10px; color: rgba(145,195,234,0.82); line-height: 1.4; }

/* Alerts card (bottom-left) */
.hm-float-alerts {
  bottom: 8px; left: -8px;
  width: 215px;
  animation: hm-enter 1.0s cubic-bezier(0.22,1,0.36,1) 1.6s both;
}
.hm-alerts-title {
  font-size: 11px; font-weight: 700;
  color: rgba(232,240,248,0.85);
  font-family: var(--font-display);
}
.hm-alert-badge {
  background: rgba(212,131,26,0.18); color: #F0A838;
  border: 1px solid rgba(212,131,26,0.38);
  font-size: 10px; font-weight: 700;
  padding: 1px 7px; border-radius: 20px;
}
.hm-alert-list { display: flex; flex-direction: column; gap: 8px; }
.hm-alert-row { display: flex; align-items: flex-start; gap: 9px; }
.hm-adot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; margin-top: 3px;
}
.hm-alert-red   .hm-adot { background: #E05050; }
.hm-alert-amber .hm-adot { background: #D4831A; }
.hm-alert-name {
  font-size: 11px; font-weight: 600;
  color: rgba(232,240,248,0.82); line-height: 1.3;
}
.hm-alert-meta {
  font-size: 10px; color: rgba(145,195,234,0.42); line-height: 1.3;
}

/* Holds card (bottom-right, staggered below alerts) */
.hm-float-holds {
  bottom: 4px; right: -18px;
  width: 182px;
  animation: hm-enter 1.0s cubic-bezier(0.22,1,0.36,1) 2.1s both;
}
.hm-holds-title {
  font-size: 11px; font-weight: 700;
  color: rgba(232,240,248,0.85);
  font-family: var(--font-display);
}
.hm-holds-badge {
  background: rgba(74,140,154,0.18); color: #7AB0BD;
  border: 1px solid rgba(74,140,154,0.32);
  font-size: 9px; font-weight: 700;
  padding: 1px 6px; border-radius: 20px;
}
.hm-holds-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 9px; }
.hm-hold-block { display: flex; flex-direction: column; gap: 3px; }
.hm-hold-type {
  font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: rgba(145,195,234,0.42);
}
.hm-hold-vals { display: flex; align-items: center; gap: 6px; }
.hm-hold-col { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.hm-hold-sublabel {
  font-size: 8px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase;
  color: rgba(145,195,234,0.32);
  font-family: var(--font-body);
}
.hm-hold-now {
  font-size: 18px; font-weight: 700; line-height: 1;
  font-family: var(--font-display);
}
.hm-hold-arrow { font-size: 9px; color: rgba(145,195,234,0.25); }
.hm-hold-pred {
  font-size: 15px; font-weight: 700; line-height: 1;
  color: rgba(232,240,248,0.65);
  font-family: var(--font-display);
}
.hm-hold-pred-clear { color: #7AB0BD; }
.hm-holds-foot {
  padding-top: 8px;
  border-top: 1px solid rgba(145,195,234,0.1);
  display: flex; flex-direction: column; gap: 2px;
  font-size: 10px; color: rgba(145,195,234,0.4);
}
.hm-holds-otp { color: #F0A838; }

@keyframes hm-enter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.mockup-shell {
  background:rgba(4,16,38,0.96); border:1px solid rgba(145,195,234,0.18);
  border-radius:18px; overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(145,195,234,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.mockup-bar {
  background:rgba(0,52,100,0.85); padding:11px 16px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid rgba(145,195,234,0.12);
}
.mockup-bar-title { font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--light-blue); }
.mockup-live {
  display:flex; align-items:center; gap:5px;
  font-size:10px; font-weight:700; color:#4ade80; letter-spacing:0.05em; text-transform:uppercase;
}
.live-dot { width:5px; height:5px; background:#4ade80; border-radius:50%; animation:pulse-anim 1.4s ease-in-out infinite; }
.mockup-map-area {
  height:190px; position:relative; overflow:hidden;
  background:linear-gradient(160deg, rgba(3,20,55,0.9) 0%, rgba(0,40,80,0.7) 100%);
}
.map-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(33,117,182,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.14) 1px, transparent 1px);
  background-size:32px 32px;
}
.map-aircraft {
  position:absolute; font-size:13px;
  animation:ac-drift 5s ease-in-out infinite;
  filter:drop-shadow(0 0 4px rgba(145,195,234,0.6));
}
.map-aircraft:nth-child(2) { top:18%; left:22%; animation-delay:0s; }
.map-aircraft:nth-child(3) { top:42%; left:52%; animation-delay:-1.2s; }
.map-aircraft:nth-child(4) { top:62%; left:34%; animation-delay:-2.4s; transform:rotate(-45deg); }
.map-aircraft:nth-child(5) { top:28%; left:72%; animation-delay:-0.8s; transform:rotate(30deg); }
.map-aircraft:nth-child(6) { top:74%; left:70%; animation-delay:-3.1s; transform:rotate(-20deg); }
@keyframes ac-drift {
  0%,100% { transform:translate(0,0); }
  50%      { transform:translate(2px,-4px); }
}
.map-aircraft:nth-child(4), .map-aircraft:nth-child(5), .map-aircraft:nth-child(6) { /* keep their rotate */ }

.ai-chip {
  position:absolute; bottom:8px; right:8px;
  background:rgba(33,117,182,0.28); border:1px solid rgba(145,195,234,0.3);
  border-radius:8px; padding:8px 12px;
  font-size:9px; backdrop-filter:blur(8px); min-width:140px;
}
.ai-chip-lbl { color:var(--light-blue); font-weight:700; letter-spacing:0.07em; text-transform:uppercase; margin-bottom:4px; }
.ai-chip-body { color:rgba(232,240,248,0.8); line-height:1.4; }
.ai-chip-action { color:#4ade80; font-weight:600; margin-top:4px; }

.mockup-rows { padding:10px 14px; display:flex; flex-direction:column; gap:8px; }
.flight-row {
  display:grid; grid-template-columns:70px 1fr 60px 56px;
  gap:8px; align-items:center; font-size:10px;
  padding-bottom:8px; border-bottom:1px solid rgba(145,195,234,0.07);
}
.flight-row:last-child { border:none; padding-bottom:0; }
.fr-num  { font-family:var(--font-display); font-weight:700; color:var(--light-blue); }
.fr-route { color:rgba(232,240,248,0.6); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.fr-time  { color:rgba(232,240,248,0.85); font-weight:600; }
.fr-status { padding:2px 6px; border-radius:4px; font-weight:600; font-size:9px; text-align:center; }
.s-ok   { background:rgba(74,222,128,0.14); color:#4ade80; }
.s-late { background:rgba(251,191,36,0.14); color:#fbbf24; }
.s-alert { background:rgba(239,68,68,0.14); color:#ef4444; }

.mockup-alert-strip {
  margin:0 14px 12px; padding:9px 12px;
  background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.28);
  border-radius:7px; display:flex; gap:7px; font-size:9px; align-items:flex-start;
}
.alert-icon { font-size:12px; margin-top:1px; flex-shrink:0; }
.alert-msg  { color:rgba(232,240,248,0.78); line-height:1.4; }
.alert-msg strong { display:block; color:#fca5a5; font-size:9px; margin-bottom:2px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; }

/* ═══════════════════════════════════════════════════════════════
   CLIENT LOGOS TICKER
   ═══════════════════════════════════════════════════════════════ */
.logos-section { background:#fff; padding:52px 0; border-bottom:1px solid var(--border-light); }
.logos-label {
  text-align:center; font-size:12px; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted);
  margin-bottom:36px;
}
.logos-outer {
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logos-track {
  display:flex; align-items:center; gap:48px;
  width:max-content; animation:ticker 32s linear infinite;
}
.logos-track:hover { animation-play-state:paused; }
@keyframes ticker {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
.logo-item {
  display:flex; align-items:center; justify-content:center;
  height:40px; flex-shrink:0;
  filter:grayscale(100%) opacity(0.45);
  transition:filter var(--t);
}
.logo-item:hover { filter:grayscale(0%) opacity(1); }
.logo-item img {
  display:block; height:auto; width:auto;
  max-height:40px; max-width:180px;
}
.logo-txt {
  font-family:var(--font-display); font-weight:800; font-size:17px;
  letter-spacing:-0.02em; white-space:nowrap; line-height:1;
}

/* ═══════════════════════════════════════════════════════════════
   ROI STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.roi-section {
  background:linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%);
  position:relative; overflow:hidden;
}
.roi-section::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(33,117,182,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.06) 1px, transparent 1px);
  background-size:80px 80px;
}
.roi-inner { position:relative; z-index:1; }
.roi-head { text-align:center; margin-bottom:60px; }
.roi-head h2 { color:#fff; margin-bottom:14px; }
.roi-head p  { color:var(--text-on-dark-muted); font-size:18px; max-width:680px; margin:0 auto; }
.roi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:48px; }
.roi-card {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-lg); padding:36px 24px; text-align:center;
  transition:background var(--t), border-color var(--t), transform var(--t);
}
.roi-card:hover {
  background:rgba(255,255,255,0.07);
  border-color:rgba(145,195,234,0.24);
  transform:translateY(-4px);
}
.roi-number {
  font-family:var(--font-display);
  font-size:clamp(36px,4vw,54px); font-weight:800;
  color:var(--light-blue); line-height:1; margin-bottom:10px;
  letter-spacing:-0.03em;
}
.roi-label { font-size:13px; color:rgba(232,240,248,0.55); line-height:1.4; }
.roi-foot  { text-align:center; }

/* ═══════════════════════════════════════════════════════════════
   PLATFORM PILLARS
   ═══════════════════════════════════════════════════════════════ */
.platform-section { background:var(--cream); }
.platform-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.platform-card {
  background:#fff; border-radius:var(--r-lg);
  border:1px solid var(--border-light); padding:40px 32px;
  transition:box-shadow var(--t), transform var(--t);
  position:relative; overflow:hidden;
}
.platform-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--blue), var(--dark-green));
  opacity:0; transition:opacity var(--t);
}
@media (hover:hover) and (pointer:fine) {
  .platform-card:hover::before { opacity:1; }
  .platform-card:hover { box-shadow:0 8px 40px rgba(33,117,182,0.11); transform:translateY(-4px); }
}
.platform-icon {
  width:56px; height:56px; border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.platform-icon svg { display:block; }
.pi-blue  { background:rgba(33,117,182,0.1);  color:var(--blue); }
.pi-teal  { background:rgba(74,140,154,0.1);  color:var(--dark-green); }
.pi-green { background:rgba(122,176,189,0.12); color:var(--light-green); }
.pi-navy  { background:rgba(0,68,117,0.1);    color:var(--dark-blue); }
.platform-num { font-size:11px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
.platform-card h3 {
  font-family:var(--font-display); font-size:24px; font-weight:700;
  color:var(--text-primary); margin-bottom:12px; letter-spacing:-0.02em;
}
.platform-card p { color:var(--text-secondary); line-height:1.7; margin-bottom:24px; }

/* ═══════════════════════════════════════════════════════════════
   AI FEATURES SECTION
   ═══════════════════════════════════════════════════════════════ */
.ai-section {
  background:var(--cream); position:relative; overflow:hidden;
}
.ai-bg-orb-1, .ai-bg-orb-2 { display:none; }
.ai-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.ai-content .badge { margin-bottom:20px; }
.ai-content h2  { color:var(--text-primary); margin-bottom:16px; }
.ai-content > p { color:var(--text-secondary); font-size:18px; margin-bottom:40px; }
.ai-feat-list { display:flex; flex-direction:column; gap:20px; }
.ai-feat {
  display:flex; gap:14px; align-items:flex-start;
  padding:16px; border-radius:var(--r-md);
  border:1px solid var(--border-light);
  transition:border-color var(--t), background var(--t);
}
.ai-feat:hover { border-color:var(--blue); background:rgba(33,117,182,0.04); }
.ai-feat-ico {
  width:40px; height:40px; border-radius:10px;
  background:rgba(33,117,182,0.09); border:1px solid rgba(33,117,182,0.15);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; color:var(--blue);
}
.ai-feat-ico svg { display:block; }
.ai-feat-body h4 { color:var(--text-primary); font-size:15px; font-weight:600; margin-bottom:4px; }
.ai-feat-body p  { color:var(--text-secondary); font-size:13px; line-height:1.55; }
/* AI Visual Panel */
.ai-panel-wrap { animation:float-bob 8s ease-in-out infinite; animation-delay:-2s; }
.ai-panel {
  background:rgba(4,16,40,0.95); border:1px solid rgba(145,195,234,0.18);
  border-radius:var(--r-lg); overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,0.5);
}
.ai-panel-hdr {
  background:rgba(0,52,100,0.75); padding:13px 18px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid rgba(145,195,234,0.12);
}
.ai-panel-title { font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--light-blue); }
.ai-panel-tag { font-size:9px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:3px 8px; border-radius:4px; }
.tag-live { background:rgba(74,222,128,0.14); color:#4ade80; }
.ai-recs { padding:16px; display:flex; flex-direction:column; gap:12px; }
.ai-rec {
  background:rgba(33,117,182,0.1); border:1px solid rgba(145,195,234,0.16);
  border-radius:10px; padding:14px;
}
.ai-rec-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.ai-rec-type { font-size:9px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--light-blue); }
.ai-sev { font-size:9px; font-weight:700; padding:2px 7px; border-radius:4px; }
.sev-h { background:rgba(239,68,68,0.14); color:#ef4444; }
.sev-m { background:rgba(251,191,36,0.14); color:#fbbf24; }
.ai-rec-title { font-size:12px; font-weight:600; color:rgba(232,240,248,0.88); margin-bottom:10px; line-height:1.4; }
.ai-actions { display:flex; flex-direction:column; gap:5px; }
.ai-action {
  display:flex; justify-content:space-between; align-items:center;
  padding:7px 10px; border-radius:6px; font-size:10px;
}
.ai-action-best { background:rgba(33,117,182,0.2); border:1px solid rgba(145,195,234,0.25); }
.ai-action-lbl  { color:rgba(232,240,248,0.75); }
.ai-action-lbl .best-tag { color:var(--light-blue); font-weight:700; margin-right:4px; }
.ai-action-save { color:#4ade80; font-weight:700; font-size:10px; }
.ai-nlp-box {
  margin:0 16px 16px; padding:13px 14px;
  background:rgba(0,52,100,0.3); border:1px solid rgba(145,195,234,0.16);
  border-radius:9px;
}
.ai-nlp-lbl { font-size:9px; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; color:var(--light-blue); margin-bottom:7px; }
.ai-nlp-q { font-size:11px; color:rgba(232,240,248,0.65); font-style:italic; margin-bottom:7px; }
.ai-nlp-a { font-size:11px; color:rgba(232,240,248,0.88); line-height:1.5; }

/* ═══════════════════════════════════════════════════════════════
   SOLUTIONS TABS
   ═══════════════════════════════════════════════════════════════ */
.solutions-section { background:linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%); }
.solutions-section .section-hdr h2 { color:#fff; }
.solutions-section .section-hdr p  { color:var(--text-on-dark-muted); }
.sol-tabs { display:flex; gap:8px; justify-content:center; margin-bottom:52px; flex-wrap:wrap; }
.sol-tab {
  padding:11px 28px; border-radius:100px; font-size:15px; font-weight:600;
  border:2px solid rgba(255,255,255,0.18); color:rgba(255,255,255,0.55); background:transparent;
  transition:background var(--t), border-color var(--t), color var(--t); cursor:pointer;
}
.sol-tab:hover, .sol-tab.active { background:var(--blue); border-color:var(--blue); color:#fff; }
.sol-panel { display:none; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.sol-panel.active { display:grid; }
.sol-features { display:flex; flex-direction:column; gap:12px; }
.sol-feature {
  display:flex; gap:12px; align-items:flex-start; padding:14px 16px;
  border-radius:var(--r-md); border:1px solid rgba(255,255,255,0.08);
  transition:border-color var(--t), background var(--t);
}
.sol-feature:hover { border-color:rgba(145,195,234,0.3); background:rgba(255,255,255,0.04); }
.sol-f-ico {
  width:28px; height:28px; border-radius:7px; flex-shrink:0;
  background:rgba(33,117,182,0.18); border:1px solid rgba(145,195,234,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--light-blue);
}
.sol-f-ico svg { display:block; }
.sol-f-body h4 { font-size:14px; font-weight:600; color:#fff; margin-bottom:3px; }
.sol-f-body p  { font-size:13px; color:var(--text-on-dark-muted); line-height:1.5; }
.sol-mockup {
  background:linear-gradient(135deg, var(--near-black) 0%, var(--dark-blue) 100%);
  border-radius:var(--r-xl); aspect-ratio:4/3;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(145,195,234,0.14); position:relative; overflow:hidden;
}
.sol-mockup::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(33,117,182,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.1) 1px, transparent 1px);
  background-size:36px 36px;
}
.sol-mockup-inner { position:relative; z-index:1; text-align:center; }
.sol-mockup-inner .icon { font-size:52px; margin-bottom:12px; opacity:0.4; }
.sol-mockup-inner p { font-size:13px; color:rgba(145,195,234,0.35); }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDY TEASER
   ═══════════════════════════════════════════════════════════════ */
.cs-section { background:linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%); }
.cs-section .section-hdr h2 { color:#fff; }
.cs-section .section-hdr p  { color:var(--text-on-dark-muted); }
.cs-card {
  background:linear-gradient(140deg, #021833 0%, #041d42 50%, #062040 100%);
  border-radius:var(--r-xl); padding:64px;
  border:1px solid rgba(145,195,234,0.14);
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  position:relative; overflow:hidden;
}
.cs-card::before {
  content:''; position:absolute;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(33,117,182,0.14) 0%, transparent 70%);
  top:-200px; right:-100px; pointer-events:none; filter:blur(40px);
}
.cs-inner { position:relative; z-index:1; }
.cs-tag { display:flex; align-items:center; gap:8px; margin-bottom:18px; }
.cs-tag-text { font-size:11px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; color:var(--light-blue); }
.cs-card h3 {
  font-family:var(--font-display); font-size:clamp(22px,2.5vw,32px);
  font-weight:700; color:#fff; line-height:1.2; margin-bottom:20px;
  letter-spacing:-0.02em;
}
.cs-quote {
  font-size:15px; color:rgba(232,240,248,0.68); font-style:italic;
  line-height:1.7; margin-bottom:10px;
  padding-left:18px; border-left:3px solid var(--blue);
}
.cs-attr { font-size:12px; color:rgba(232,240,248,0.42); margin-bottom:36px; }
.cs-stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cs-stat {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r-md); padding:20px 18px;
}
.cs-stat-num {
  font-family:var(--font-display); font-size:26px; font-weight:800;
  color:var(--light-blue); line-height:1; margin-bottom:6px; letter-spacing:-0.02em;
}
.cs-stat-lbl { font-size:12px; color:rgba(232,240,248,0.45); line-height:1.4; }
.cs-logo-placeholder {
  display:inline-flex; align-items:center; gap:6px; margin-bottom:4px;
}
.ba-logo-text { font-family:var(--font-display); font-size:20px; font-weight:800; color:#fff; letter-spacing:-0.02em; }

/* Carousel */
.cs-carousel { position:relative; }
.cs-carousel-viewport { overflow:hidden; border-radius:var(--r-xl); }
.cs-carousel-track { display:flex; transition:transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change:transform; }
.cs-slide { flex:0 0 100%; min-width:100%; }
.cs-slide .cs-card { border-radius:0; }
.cs-carousel-nav {
  display:flex; align-items:center; justify-content:center; gap:12px; margin-top:20px;
}
.cs-dot {
  width:8px; height:8px; border-radius:50%; border:none; padding:0; cursor:pointer;
  background:rgba(255,255,255,0.3); transition:background var(--t), transform var(--t);
}
.cs-dot--active { background:var(--blue); transform:scale(1.3); }
.cs-arrow-btn {
  width:34px; height:34px; border-radius:50%; cursor:pointer;
  background:transparent; border:1px solid rgba(0,0,0,0.14);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-secondary); font-size:15px;
  transition:background var(--t), border-color var(--t);
}
.cs-arrow-btn:hover { background:rgba(0,0,0,0.06); border-color:rgba(0,0,0,0.28); }

/* Sector badge */
.cs-sector-badge {
  display:inline-flex; align-items:center; font-size:10px; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; padding:3px 9px; border-radius:20px;
  background:rgba(33,117,182,0.25); color:var(--light-blue);
  border:1px solid rgba(145,195,234,0.3);
}
.cs-sector-badge--rail {
  background:rgba(196,30,42,0.3); color:#f4a0a6; border-color:rgba(244,160,166,0.3);
}

/* Case study device mockup */
.cs-device-wrap {
  margin-top: 0;
}
.cs-device {
  border-radius: 10px 10px 6px 6px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 28px 80px rgba(10,22,40,0.22), 0 8px 24px rgba(10,22,40,0.10), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
  animation: float-bob 7s ease-in-out infinite;
}
#panel-rail .cs-device {
  animation: none;
  transform: perspective(1100px) rotateY(7deg) rotateX(3deg);
  box-shadow:
    -24px 40px 90px rgba(10,22,40,0.28),
    -8px 16px 32px rgba(10,22,40,0.14),
    0 0 0 1px rgba(0,0,0,0.10);
}
.sol-panel .cs-device {
  animation: none;
  transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
  border-radius: 16px;
  border: 10px solid #1c1c1e;
  box-shadow:
    24px 40px 90px rgba(10,22,40,0.28),
    8px 16px 32px rgba(10,22,40,0.14),
    0 0 0 1px rgba(0,0,0,0.10);
}
.sol-panel .cs-device-bar { display: none; }
.sol-device-wrap {
  position: relative;
  animation: float-bob 7s ease-in-out infinite;
}
#panel-rail .sol-device-wrap { animation-delay: -3.5s; }
.sol-mobile-overlay {
  position: absolute;
  bottom: -28px;
  right: -16px;
  width: 20%;
  z-index: 10;
  filter: drop-shadow(0 16px 32px rgba(10,22,40,0.45));
  transform: perspective(900px) rotateY(-18deg) rotateX(4deg);
}
.sol-panel .cs-device-screen { position: relative; }
.sol-panel .cs-device-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.06) 35%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}
.cs-device-bar {
  background: #efefef;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cs-device-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.cs-device-url {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  height: 20px;
  margin: 0 10px;
  max-width: 300px;
}
.cs-device-screen img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.1) saturate(1.2);
}

/* LNER slide */
.lner-logo-text { font-family:var(--font-display); font-size:20px; font-weight:800; color:#fff; letter-spacing:-0.02em; }
.cs-card--lner {
  background:linear-gradient(140deg, #200407 0%, #3e0708 55%, #1f0305 100%);
  border-color:rgba(196,30,42,0.25);
}
.cs-card--lner::before {
  background:radial-gradient(circle, rgba(196,30,42,0.2) 0%, transparent 70%);
}
.cs-quote--lner { border-left-color:#C41E2A; }
.cs-stat-num--rail { color:#f4a0a6; }
.btn--lner {
  display:inline-flex; align-items:center; gap:8px;
  background:#C41E2A; border:2px solid #C41E2A; color:#fff;
  font-family:var(--font-display); font-size:15px; font-weight:700;
  padding:14px 28px; border-radius:var(--r-sm); cursor:pointer;
  transition:background var(--t), border-color var(--t), transform var(--t);
  text-decoration:none;
}
.btn--lner:hover { background:#a0181e; border-color:#a0181e; transform:translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background:var(--cream);
}
.testimonials-section .section-hdr h2 { color:var(--text-primary); }
.testimonials-section .section-hdr p  { color:var(--text-secondary); }
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.test-card {
  background:#fff; border-radius:var(--r-lg);
  border:1px solid var(--border-light); padding:32px;
  display:grid; grid-row:span 2; grid-template-rows:subgrid; row-gap:16px;
  transition:border-color var(--t), background var(--t);
}
.test-card:hover { background:var(--cream); border-color:rgba(33,117,182,0.28); }
.test-stars { color:var(--blue); font-size:13px; letter-spacing:2px; }
.test-quote { font-size:15px; line-height:1.7; color:var(--text-secondary); }
.test-quote::before {
  content:'\201C'; font-size:48px; line-height:0; vertical-align:-16px;
  color:var(--blue); font-family:Georgia,serif; margin-right:2px;
}
.test-author {
  display:flex; align-items:center; gap:12px;
  padding-top:18px; border-top:1px solid var(--border-light);
}
.test-avatar {
  width:42px; height:42px; border-radius:50%; flex-shrink:0;
  background:rgba(33,117,182,0.09); border:1px solid rgba(33,117,182,0.18);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:700; color:var(--blue);
}
.test-name { font-weight:600; font-size:14px; color:var(--text-primary); line-height:1.3; }
.test-role { font-size:12px; color:var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   BLOG TEASER
   ═══════════════════════════════════════════════════════════════ */
.blog-section {
  background:linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%);
}
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-card {
  background:#fff; border-radius:var(--r-lg);
  border:1px solid var(--border-light); overflow:hidden;
  display:flex; flex-direction:column;
  height:100%;
  transition:background var(--t), border-color var(--t), transform var(--t);
}
.blog-card-outer > a.blog-card { flex:1; }
.blog-card:hover { box-shadow:var(--shadow-card); border-color:rgba(33,117,182,0.28); transform:translateY(-4px); }
.blog-card-img {
  height:180px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; font-size:52px;
}
.blog-card-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.blog-cat { font-size:10px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; color:var(--blue); margin-bottom:10px; }
.blog-card h3 {
  font-family:var(--font-display); font-size:17px; font-weight:700;
  color:var(--text-primary); line-height:1.3; margin-bottom:9px; letter-spacing:-0.01em;
}
.blog-card p { font-size:14px; color:var(--text-primary); line-height:1.6; flex:1; margin-bottom:18px; }
.blog-foot {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; border-top:1px solid var(--border-light);
  font-size:12px; color:var(--text-muted);
}
/* Dark section override (homepage blog teaser) */
.blog-section .blog-card { background:rgba(255,255,255,0.05); border-color:rgba(255,255,255,0.09); }
.blog-section .blog-card:hover { background:rgba(255,255,255,0.08); border-color:rgba(145,195,234,0.24); }
.blog-section .blog-card h3 { color:#fff; }
.blog-section .blog-card p { color:var(--text-on-dark-muted); }
.blog-section .blog-foot { border-top-color:rgba(255,255,255,0.08); color:var(--text-on-dark-muted); }
.blog-section .blog-cat { color:var(--light-blue); }
.blog-section .blog-card-meta { color:var(--text-on-dark-muted); }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  background:linear-gradient(140deg, var(--dark-blue) 0%, var(--near-black) 100%);
  position:relative; overflow:hidden; text-align:center;
}
.final-cta::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(33,117,182,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.06) 1px, transparent 1px);
  background-size:64px 64px;
}
.final-cta-orb {
  position:absolute; width:700px; height:700px; border-radius:50%; top:50%; left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(33,117,182,0.18) 0%, transparent 65%);
  filter:blur(60px); pointer-events:none;
}
.final-cta-inner { position:relative; z-index:1; max-width:860px; margin:0 auto; }
.final-cta-inner h2 { color:#fff; margin-bottom:18px; }
.final-cta-inner p  { color:var(--text-on-dark-muted); font-size:18px; margin-bottom:40px; }
.final-cta-btns { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.final-cta-sub { margin-top:18px; font-size:13px; color:var(--text-on-dark-muted); }
.final-cta-sub a { color:var(--light-blue); text-decoration:underline; text-underline-offset:3px; }

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background:linear-gradient(140deg, var(--dark-blue) 0%, var(--near-black) 100%);
  padding:140px 0 80px; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(33,117,182,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.07) 1px, transparent 1px);
  background-size:56px 56px; pointer-events:none;
}
.page-hero-inner { position:relative; z-index:1; max-width:700px; }
.page-hero .badge { margin-bottom:16px; }
.page-hero h1 { color:#fff; margin-bottom:16px; }
.page-hero p  { color:var(--text-on-dark-muted); font-size:18px; max-width:560px; }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES PAGE
   ═══════════════════════════════════════════════════════════════ */
.cs-featured {
  background:linear-gradient(140deg, #021833 0%, #04234a 100%);
  border-radius:var(--r-xl); padding:56px;
  border:1px solid rgba(145,195,234,0.12); margin-bottom:40px;
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
  position:relative; overflow:hidden;
}
.cs-featured::before {
  content:''; position:absolute;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(33,117,182,0.14) 0%, transparent 70%);
  top:-150px; right:-80px; filter:blur(40px); pointer-events:none;
}
.cs-pathway-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.cs-pathway {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--r-md); padding:18px;
}
.cs-pathway-val {
  font-family:var(--font-display); font-size:22px; font-weight:800;
  color:var(--light-blue); margin-bottom:5px; line-height:1;
}
.cs-pathway-lbl { font-size:11px; color:rgba(232,240,248,0.45); line-height:1.4; }
.cs-cards-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.cs-item-card {
  background:#fff; border-radius:var(--r-lg);
  border:1px solid var(--border-light); padding:32px; overflow:hidden;
  transition:box-shadow var(--t), transform var(--t);
}
.cs-item-card:hover { box-shadow:var(--shadow-card-lg); transform:translateY(-3px); }
.cs-item-sector { font-size:10px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; color:var(--blue); margin-bottom:12px; }
.cs-item-card h3 { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--text-primary); margin-bottom:10px; letter-spacing:-0.015em; }
.cs-item-card p  { font-size:14px; color:var(--text-secondary); line-height:1.6; margin-bottom:20px; }
.cs-item-metric { font-family:var(--font-display); font-size:36px; font-weight:800; color:var(--blue); letter-spacing:-0.03em; margin-bottom:4px; }
.cs-item-metric-lbl { font-size:13px; color:var(--text-muted); margin-bottom:20px; }

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════════ */
.blog-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.filter-pill {
  padding:8px 18px; border-radius:100px; font-size:13px; font-weight:600;
  border:2px solid var(--border-light); color:var(--text-muted); background:transparent;
  cursor:pointer; transition:var(--t);
}
.filter-pill:hover, .filter-pill.active { background:var(--blue); border-color:var(--blue); color:#fff; }
.blog-full-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.about-mission { background:var(--cream); }
.about-mission-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-stat-row { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
.about-stat { text-align:center; }
.about-stat-num { font-family:var(--font-display); font-size:40px; font-weight:800; color:var(--blue); line-height:1; margin-bottom:8px; }
.about-stat-lbl { font-size:14px; color:var(--text-muted); }
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.value-card {
  background:#fff; border-radius:var(--r-lg); border:1px solid var(--border-light);
  padding:28px; display:flex; flex-direction:column;
}
.value-ico {
  width:44px; height:44px; border-radius:10px; flex-shrink:0;
  background:rgba(33,117,182,0.07); border:1px solid rgba(33,117,182,0.12);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; color:var(--blue);
}
.value-ico svg { display:block; }
.value-body h4 { font-size:16px; font-weight:700; color:var(--text-primary); margin-bottom:6px; }
.value-body p  { font-size:14px; color:var(--text-muted); line-height:1.6; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.team-card {
  text-align:center; background:#fff;
  border-radius:var(--r-lg); border:1px solid var(--border-light); padding:28px 20px;
  transition:var(--t);
}
.team-card:hover { box-shadow:var(--shadow-card); transform:translateY(-2px); }
.team-avatar {
  width:80px; height:80px; border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--dark-green));
  display:flex; align-items:center; justify-content:center;
  font-size:28px; color:#fff; font-weight:700;
  margin:0 auto 14px;
}
.team-name { font-weight:700; font-size:16px; color:var(--text-primary); margin-bottom:4px; }
.team-role { font-size:13px; color:var(--text-muted); }
.clients-wall {
  display:flex; flex-wrap:wrap; gap:20px;
  justify-content:center; align-items:center;
}
.client-chip {
  background:#fff; border:1px solid var(--border-light); border-radius:var(--r-md);
  padding:16px 28px; font-family:var(--font-display); font-weight:700;
  font-size:15px; color:var(--text-secondary);
  transition:border-color var(--t), box-shadow var(--t);
}
.client-chip:hover { border-color:var(--blue); box-shadow:var(--shadow-card); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.contact-form {
  background:#fff; border-radius:var(--r-xl);
  border:1px solid var(--border-light); padding:48px;
  box-shadow:var(--shadow-card);
}
.form-group { margin-bottom:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--text-primary); margin-bottom:7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 16px; border:2px solid var(--border-light);
  border-radius:var(--r-sm); font-size:15px; color:var(--text-primary);
  background:#fff; transition:border-color var(--t), box-shadow var(--t);
  outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--blue); box-shadow:0 0 0 3px rgba(33,117,182,0.12);
}
.form-group--invalid input,
.form-group--invalid select,
.form-group--invalid textarea {
  border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,0.12);
}
.form-group__error { display:none; font-size:12px; color:#ef4444; margin-top:5px; }
.form-group--invalid .form-group__error { display:block; }
.form-group textarea { resize:vertical; min-height:100px; }
.form-submit { width:100%; margin-top:8px; justify-content:center; }
.contact-info { padding-top:8px; }
.contact-info h2 { color:#fff; margin-bottom:16px; }
.contact-info > p { color:var(--text-on-dark-muted); font-size:16px; margin-bottom:36px; }
.why-demo { display:flex; flex-direction:column; gap:14px; margin-bottom:40px; }
.why-item { display:flex; gap:12px; align-items:flex-start; }
.why-ico { font-size:20px; flex-shrink:0; margin-top:1px; }
.why-text h4 { font-size:15px; font-weight:600; color:#fff; margin-bottom:3px; }
.why-text p  { font-size:13px; color:var(--text-on-dark-muted); line-height:1.55; }
.contact-alt { padding-top:28px; border-top:1px solid rgba(255,255,255,0.08); font-size:14px; color:var(--text-on-dark-muted); }
.contact-alt a { color:var(--light-blue); }

/* ═══════════════════════════════════════════════════════════════
   GRADIENT TEXT (standalone utility)
   ═══════════════════════════════════════════════════════════════ */
.gradient-text {
  background:linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════ */
.page-hero-orb {
  position:absolute; border-radius:50%; pointer-events:none; filter:blur(80px);
}
.page-hero-orb-1 {
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(33,117,182,0.22) 0%, transparent 70%);
  top:-180px; right:-100px;
}
.page-hero-orb-2 {
  width:320px; height:320px;
  background:radial-gradient(circle, rgba(74,140,154,0.18) 0%, transparent 70%);
  bottom:-80px; left:15%;
}
.page-hero-content { position:relative; z-index:1; }
.page-hero-sub { color:var(--text-on-dark-muted); font-size:18px; max-width:580px; margin-top:16px; }
.page-hero--narrow { padding:130px 0 60px; }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES PAGE — FEATURED CARD
   ═══════════════════════════════════════════════════════════════ */
.cs-card--featured {
  display:flex; flex-direction:column; gap:32px;
  padding:48px 56px; border-radius:var(--r-xl);
  background:linear-gradient(140deg, #021833 0%, #041d42 100%);
  border:1px solid rgba(145,195,234,0.14); position:relative; overflow:hidden;
}
.cs-card--featured::before {
  content:''; position:absolute;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(33,117,182,0.14) 0%, transparent 70%);
  top:-200px; right:-100px; filter:blur(40px); pointer-events:none;
}
.cs-featured-top {
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  position:relative; z-index:1;
}
.cs-featured-top-left { flex:1; }
.cs-featured-top-right { flex-shrink:0; }
.cs-card-left, .cs-card-right { position:relative; z-index:1; }
.cs-card-left h2, .cs-featured-top h2 {
  font-family:var(--font-display); font-size:clamp(22px,2.6vw,34px);
  font-weight:700; color:#fff; line-height:1.15; margin-bottom:0; letter-spacing:-0.02em;
}
.cs-logo-pill { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.cs-featured-stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,0.07); border-radius:12px; overflow:hidden;
  position:relative; z-index:1;
}
.cs-featured-stats .cs-stat {
  background:rgba(255,255,255,0.04); padding:24px 20px; border-radius:0;
}
.cs-featured-stats .cs-stat:hover { background:rgba(255,255,255,0.07); }
.cs-stats-grid--4 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cs-pill-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:20px; }
.cs-pill {
  padding:5px 14px; border-radius:100px; font-size:11px; font-weight:600;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  color:rgba(232,240,248,0.6);
}
.cs-quote--lg {
  font-size:17px; color:rgba(232,240,248,0.72); font-style:italic;
  line-height:1.7; margin-bottom:12px;
  padding-left:20px; border-left:3px solid var(--blue);
}

/* Case Study — Pathway Breakdown */
.cs-pathways { display:flex; flex-direction:column; gap:0; margin-top:52px; }
.cs-pathways .cs-pathway {
  display:grid; grid-template-columns:64px 1fr; gap:24px; padding:36px 0;
  border-top:1px solid var(--border-light); background:transparent; border-radius:0;
}
.cs-pathway-num {
  font-family:var(--font-display); font-size:40px; font-weight:800;
  color:var(--border-light); line-height:1; margin-top:4px;
  border:none; padding:0;
}
.cs-pathway-body { flex:1; }
.cs-pathway-body h3 {
  font-family:var(--font-display); font-size:clamp(18px,2vw,24px);
  font-weight:700; color:var(--text-primary); margin-bottom:10px;
  display:flex; flex-wrap:wrap; align-items:baseline; gap:12px; letter-spacing:-0.015em;
}
.cs-pathway-body h3 .cs-pathway-val {
  font-size:18px; color:var(--blue); font-weight:800;
  background:transparent; border:none; padding:0;
}
.cs-pathway-body p { color:var(--text-secondary); margin-bottom:14px; line-height:1.65; }
.cs-list { padding-left:20px; list-style:disc; display:flex; flex-direction:column; gap:5px; margin-bottom:14px; }
.cs-list li { color:var(--text-muted); font-size:14px; }
.cs-calc {
  font-family:var(--font-display); font-size:13px; color:var(--text-muted);
  background:rgba(33,117,182,0.07); border:1px solid rgba(33,117,182,0.14);
  border-radius:var(--r-sm); padding:10px 14px; display:inline-block;
}
.cs-calc strong { color:var(--blue); }
.cs-total-bar {
  margin-top:40px; padding:36px 40px;
  background:linear-gradient(135deg, var(--dark-blue) 0%, #021e3a 100%);
  border-radius:var(--r-xl); text-align:center;
  border:1px solid rgba(145,195,234,0.14);
}
.cs-total-label { font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:rgba(232,240,248,0.45); margin-bottom:10px; }
.cs-total-val { font-family:var(--font-display); font-size:clamp(48px,6vw,80px); font-weight:800; color:var(--light-blue); line-height:1; letter-spacing:-0.04em; }
.cs-total-sub { font-size:14px; color:rgba(232,240,248,0.35); margin-top:8px; }

/* ── Individual Case Study Page ──────────────────────────────── */
.cs-case-hero {
  background:linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%);
  padding:140px 0 64px; position:relative; overflow:hidden;
}
.cs-case-hero-inner { position:relative; z-index:1; }
.cs-case-client-row { display:flex; align-items:center; gap:12px; margin-bottom:4px; }
.cs-case-client {
  font-family:var(--font-display); font-size:15px; font-weight:800;
  letter-spacing:0.05em; text-transform:uppercase;
}
.cs-stats-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cs-case-stats-bar {
  background:var(--cream); padding:40px 0;
  border-bottom:1px solid var(--border-light);
}
.cs-case-stats-bar .cs-stat {
  background:transparent; border-color:var(--border-light);
}
.cs-case-stats-bar .cs-stat-num { color:var(--dark-blue); }
.cs-case-stats-bar .cs-stat-lbl { color:var(--text-secondary); }
#cs-summary-section .cs-quote--lg {
  color:var(--text-secondary); font-size:18px; line-height:1.75;
}
#cs-summary-section .cs-attr { color:var(--text-muted); }
.cs-stats-grid--4 { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.cs-stats-grid--5 { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.cs-coming-soon-box {
  text-align:center; padding:64px 40px;
  background:var(--cream); border-radius:var(--r-xl);
  border:1px solid var(--border-light);
}

/* Case Study — Grid */
.cs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cs-grid-card {
  position:relative;
  background:#fff; border-radius:var(--r-lg); border:1px solid var(--border-light);
  padding:32px; display:flex; flex-direction:column; gap:10px;
  transition:box-shadow var(--t), transform var(--t);
}
.cs-grid-card:hover { box-shadow:var(--shadow-card-lg); transform:translateY(-3px); }
.cs-grid-card .link-arr::before { content:''; position:absolute; inset:0; }
.cs-gc-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:4px; }
.cs-gc-client { font-family:var(--font-display); font-size:17px; font-weight:800; }
.cs-gc-stat {
  font-family:var(--font-display); font-size:16px; font-weight:700;
  color:var(--dark-blue); line-height:1.3; margin-bottom:4px;
}
.cs-grid-card p { font-size:13px; color:var(--text-muted); line-height:1.6; flex:1; }

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════════ */
.filter-row { display:flex; gap:8px; flex-wrap:wrap; }
.blog-card-meta { font-size:12px; color:var(--text-muted); }
.blog-grid--full { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card-outer { display:flex; flex-direction:column; } /* wrapper for JS filter targeting */
.blog-featured {
  position:relative;
  background:#fff; border-radius:var(--r-xl); border:1px solid var(--border-light);
  display:grid; grid-template-columns:1.2fr 1fr; overflow:hidden;
  margin-bottom:0; box-shadow:var(--shadow-card);
}
.blog-featured .btn::before { content:''; position:absolute; inset:0; }
.blog-featured-img {
  display:flex; align-items:center; justify-content:center; font-size:80px;
  min-height:320px; opacity:0.85;
}
.blog-featured-body { padding:48px 40px; display:flex; flex-direction:column; }
.blog-featured-body h2 {
  font-family:var(--font-display); font-size:clamp(22px,2.5vw,30px);
  font-weight:700; color:var(--text-primary); margin-bottom:14px;
  letter-spacing:-0.02em; line-height:1.25;
}
.blog-featured-body p { color:var(--text-primary); line-height:1.7; margin-bottom:20px; flex:1; }
.blog-feat-meta { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.blog-feat-meta .blog-cat { margin-bottom:0; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — ADDITIONAL
   ═══════════════════════════════════════════════════════════════ */
.about-mission { padding-top:0; }
.about-mission-body { color:var(--text-secondary); font-size:18px; line-height:1.75; margin-bottom:16px; }
.about-stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:52px; }
.about-platform-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.about-pcard {
  background:var(--cream); border-radius:var(--r-lg); border:1px solid var(--border-light);
  padding:28px;
  transition:border-color var(--t), box-shadow var(--t);
}
.about-pcard:hover { border-color:var(--blue); box-shadow:0 4px 24px rgba(33,117,182,0.09); }
.about-pcard h4 { font-size:16px; font-weight:700; color:var(--text-primary); margin-bottom:8px; }
.about-pcard p  { font-size:14px; color:var(--text-muted); line-height:1.65; }
.client-logo-wall {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:52px;
}
.clw-item {
  background:var(--cream); border:1px solid var(--border-light); border-radius:var(--r-md);
  padding:20px 24px; display:flex; align-items:center; justify-content:center;
  transition:border-color var(--t), box-shadow var(--t);
  filter:grayscale(100%) opacity(0.55);
}
.clw-item:hover { filter:grayscale(0%) opacity(1); border-color:var(--blue); box-shadow:var(--shadow-card); }
.team-avatar--emu { background:linear-gradient(135deg, var(--dark-blue), var(--dark-green)); }
.value-card h3 { font-size:17px; font-weight:700; color:var(--text-primary); margin-bottom:8px; }
.value-card p  { font-size:14px; color:var(--text-muted); line-height:1.65; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — INFO SIDE
   ═══════════════════════════════════════════════════════════════ */
.contact-form-wrap { position:sticky; top:100px; }
.req { color:#ef4444; }
.form-privacy { font-size:12px; color:var(--text-muted); margin-top:12px; line-height:1.5; }
.form-privacy a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.ci-block { margin-bottom:32px; padding-bottom:32px; border-bottom:1px solid var(--border-light); }
.ci-block:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.ci-block h3 { font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--text-primary); margin-bottom:16px; }
.ci-list { display:flex; flex-direction:column; gap:16px; }
.ci-list li { display:flex; gap:14px; align-items:flex-start; font-size:14px; color:var(--text-secondary); line-height:1.55; }
.ci-list strong { display:block; color:var(--text-primary); font-weight:600; margin-bottom:2px; }
.ci-ico { flex-shrink:0; width:20px; height:20px; display:flex; align-items:center; justify-content:center; color:var(--blue); margin-top:1px; }
.ci-ico svg { display:block; }
.ci-quote {
  background:rgba(33,117,182,0.05); border-left:3px solid var(--blue);
  border-radius:0 var(--r-sm) var(--r-sm) 0; padding:16px 18px;
}
.ci-quote-stars { color:#f59e0b; font-size:12px; letter-spacing:2px; margin-bottom:8px; }
.ci-quote p { font-size:14px; color:var(--text-secondary); font-style:italic; line-height:1.65; margin-bottom:10px; }
.ci-quote-attr { font-size:12px; color:var(--text-muted); font-weight:600; }
.ci-contact-row {
  display:flex; align-items:center; gap:10px; margin-bottom:10px;
  font-size:14px; color:var(--text-secondary);
}
.ci-contact-row a { color:var(--blue); font-weight:500; }
.ci-contact-row a:hover { color:var(--dark-blue); }
.ci-roi-strip {
  background:linear-gradient(135deg, var(--dark-blue), #021e3a);
  border-radius:var(--r-lg); padding:28px 24px; text-align:center;
  border:1px solid rgba(145,195,234,0.14);
}
.ci-roi-num { font-family:var(--font-display); font-size:48px; font-weight:800; color:var(--light-blue); line-height:1; letter-spacing:-0.03em; }
.ci-roi-label { font-size:13px; color:rgba(232,240,248,0.5); margin-top:8px; line-height:1.4; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero mockup: pull floating panels in at narrower viewports ── */
@media (max-width:1340px) {
  .hero-layout      { gap:40px; }
  .hm-float-flight  { right:0; top:-10px; }
  .hm-float-holds   { right:0; }
  .hm-float-alerts  { left:0; }
}

/* ── Hero mockup: scale down before the 1024 cutoff ─────────── */
@media (max-width:1180px) {
  .hero-layout         { gap:28px; grid-template-columns:52% 48%; }
  .hm-composition      { padding-top:16px; padding-bottom:80px; }
  .hm-float-holds      { display:none; } /* drop rightmost card first */
  .hm-float-flight     { width:168px; font-size:0.92em; }
}

@media (max-width:1080px) {
  .hero-layout         { grid-template-columns:1fr 1fr; gap:20px; }
  .hero-mockup-wrap    { max-width:420px; }
  .hm-float-flight     { width:154px; top:0; }
  .hm-float-alerts     { width:190px; }
  .hm-kpi-val          { font-size:13px; }
}

@media (max-width:1024px) {
  :root { --section-gap:80px; --section-gap-sm:60px; }
  .hero-layout          { grid-template-columns:1fr; }
  .hero-visual          { display:none; }
  .roi-grid             { grid-template-columns:repeat(2,1fr); }
  .platform-grid        { grid-template-columns:1fr 1fr; }
  .ai-layout            { grid-template-columns:1fr; gap:48px; }
  .sol-panel            { grid-template-columns:1fr; gap:36px; }
  .cs-card              { grid-template-columns:1fr; gap:40px; padding:40px; }
  .cs-card--featured    { grid-template-columns:1fr; gap:40px; padding:40px; }
  .cs-grid              { grid-template-columns:repeat(2,1fr); }
  .cs-stats-grid--4     { grid-template-columns:1fr 1fr; }
  .cs-stats-grid--5     { grid-template-columns:repeat(3,1fr); }
  .test-grid            { grid-template-columns:1fr 1fr; }
  .blog-grid            { grid-template-columns:1fr 1fr; }
  .blog-grid--full      { grid-template-columns:1fr 1fr; }
  .blog-featured        { grid-template-columns:1fr; }
  .footer-grid          { grid-template-columns:1fr 1fr; gap:36px; }
  .cs-featured          { grid-template-columns:1fr; gap:40px; padding:40px; }
  .cs-cards-grid        { grid-template-columns:1fr; }
  .about-mission-layout { grid-template-columns:1fr; gap:48px; }
  .about-platform-grid  { grid-template-columns:1fr 1fr; }
  .about-stats-row      { grid-template-columns:repeat(2,1fr); }
  .client-logo-wall     { grid-template-columns:repeat(3,1fr); }
  .team-grid            { grid-template-columns:repeat(2,1fr); }
  .contact-layout       { grid-template-columns:1fr; gap:40px; }
  .contact-form-wrap    { position:static; }
}
@media (max-width:768px) {
  .nav-links, .nav-cta  { display:none; }
  .nav-hamburger        { display:flex; }
  .roi-grid             { grid-template-columns:1fr 1fr; }
  .platform-grid        { grid-template-columns:1fr; }
  .test-grid            { grid-template-columns:1fr; }
  .blog-grid            { grid-template-columns:1fr; }
  .blog-grid--full      { grid-template-columns:1fr; }
  .blog-featured        { grid-template-columns:1fr; }
  .cs-grid              { grid-template-columns:1fr; }
  .cs-stats-grid        { grid-template-columns:1fr 1fr; }
  .cs-stats-grid--3     { grid-template-columns:1fr; }
  .cs-stats-grid--4     { grid-template-columns:1fr 1fr; }
  .cs-stats-grid--5     { grid-template-columns:1fr 1fr; }
  .cs-pathways .cs-pathway { grid-template-columns:1fr; gap:8px; }
  .footer-grid          { grid-template-columns:1fr; gap:28px; }
  .footer-bottom        { flex-direction:column; text-align:center; }
  .form-row             { grid-template-columns:1fr; }
  .values-grid          { grid-template-columns:1fr; }
  .team-grid            { grid-template-columns:repeat(2,1fr); }
  .about-stat-row       { grid-template-columns:1fr 1fr; }
  .about-stats-row      { grid-template-columns:1fr 1fr; }
  .about-platform-grid  { grid-template-columns:1fr; }
  .client-logo-wall     { grid-template-columns:repeat(2,1fr); }
  .hero-ctas            { flex-direction:column; align-items:flex-start; }
  .cs-card              { padding:28px; }
  .cs-card--featured    { padding:28px; }
  .cs-total-bar         { padding:28px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLE / POST PAGES
   ═══════════════════════════════════════════════════════════════ */
.post-hero {
  padding: 120px 0 64px;
  background: linear-gradient(140deg, var(--dark-blue) 0%, var(--near-black) 100%);
  position: relative; overflow: hidden;
}
.post-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(33,117,182,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,117,182,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.post-hero-inner { position: relative; z-index: 1; }
.post-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--light-blue);
  margin-bottom: 28px; transition: gap var(--t), color var(--t); text-decoration: none;
}
.post-back::before { content: '←'; font-size: 16px; line-height: 1; }
.post-back:hover { gap: 12px; color: #fff; }
.post-hero h1 { color: #fff; margin-top: 16px; max-width: 800px; }
.post-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 14px; color: var(--text-on-dark-muted); margin-top: 18px;
}
.post-meta-sep { color: rgba(232,240,248,0.2); }
.post-hero-img {
  width: 100%; height: 440px;
  background-size: cover; background-position: center;
  display: block;
}
.article-section {
  background: var(--cream);
  padding: 80px 0 var(--section-gap);
}
.article-body {
  font-size: 17px; line-height: 1.8; color: var(--text-primary);
}
.article-lead {
  font-size: 20px; line-height: 1.75; color: var(--text-primary);
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px,2.5vw,30px); font-weight: 700;
  color: var(--text-primary); margin: 52px 0 18px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px,2vw,22px); font-weight: 700;
  color: var(--text-primary); margin: 36px 0 12px;
  letter-spacing: -0.015em;
}
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol {
  padding-left: 26px; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--text-secondary); }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-quote {
  margin: 44px 0; padding: 28px 36px;
  border-left: 4px solid var(--blue);
  background: rgba(33,117,182,0.05);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.article-quote p {
  font-size: 19px; font-style: italic;
  color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 12px;
}
.article-quote cite {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); font-style: normal;
}
.article-img {
  margin: 44px 0; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border-light);
}
.article-img img { width: 100%; height: auto; display: block; }
.article-img figcaption {
  font-size: 12px; color: var(--text-muted); text-align: center;
  padding: 12px 16px; background: #fff;
  border-top: 1px solid var(--border-light);
}
.article-callout {
  background: rgba(33,117,182,0.06); border: 1px solid rgba(33,117,182,0.16);
  border-radius: var(--r-md); padding: 24px 28px; margin: 36px 0;
}
.article-callout p { margin-bottom: 0; color: var(--text-primary); font-weight: 500; }
.events-list { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.event-item {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 20px 24px;
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: start;
  transition: border-color var(--t), box-shadow var(--t);
}
.event-item:hover { border-color: var(--blue); box-shadow: var(--shadow-card); }
.event-date {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--blue); line-height: 1.4; text-align: center;
}
.event-body h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.event-body p  { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.event-body .event-loc { font-size: 12px; color: var(--blue); font-weight: 600; margin-top: 6px; }
@media (max-width:768px) {
  .post-hero-img { height: 280px; }
  .article-lead  { font-size: 17px; }
  .article-quote { padding: 20px 22px; }
  .article-quote p { font-size: 16px; }
  .event-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ PAGE */
.faq-group { margin-bottom: 56px; }
.faq-group-title {
  font-family: var(--font-display); font-size: clamp(18px,2vw,22px); font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.015em;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 2px solid var(--border-light);
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--text-primary); text-align: left;
  transition: color var(--t);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border-light); position: relative;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--text-secondary);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: opacity var(--t), transform var(--t);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--blue); border-color: var(--blue); transform: rotate(45deg); }
.faq-q[aria-expanded="true"] .faq-icon::before,
.faq-q[aria-expanded="true"] .faq-icon::after { background: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.faq-a p, .faq-a ul, .faq-a ol {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 16px;
}
.faq-a ul { padding-left: 22px; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.faq-a li { color: var(--text-secondary); }
.faq-a a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.faq-a > *:last-child { padding-bottom: 22px; }
.faq-cta {
  margin-top: 64px; padding: 48px 40px; text-align: center;
  background: var(--cream); border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
}
.faq-cta p { font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 20px; }

/* ── About page — investor rebuild ──────────────────────────────── */

/* Founder cards */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.founder-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.founder-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.founder-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.founder-card-body { display: flex; flex-direction: column; gap: 6px; }
.founder-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; }
.founder-title { font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: 0.02em; margin-bottom: 8px; }
.founder-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.founder-credentials {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 16px;
}
.founder-cred {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* Traction section */
/* About page — alternating dark sections */
.about-section--dark {
  background: linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%);
}
.about-section--dark .section-hdr h2 { color: #e8f0f8; }
.about-section--dark .section-hdr p  { color: rgba(232,240,248,0.65); }
.about-section--dark .value-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(145,195,234,0.12);
}
.about-section--dark .value-card h3 { color: #e8f0f8; }
.about-section--dark .value-card p  { color: rgba(232,240,248,0.6); }
.about-section--dark .value-ico {
  background: rgba(33,117,182,0.25);
  border-color: rgba(33,117,182,0.35);
  color: var(--light-blue);
}
.about-section--dark .about-pcard {
  background: rgba(255,255,255,0.05);
  border-color: rgba(145,195,234,0.12);
}
.about-section--dark .about-pcard h4 { color: #e8f0f8; }
.about-section--dark .about-pcard p  { color: rgba(232,240,248,0.6); }
/* Wider team cards on dark background */
.about-section--dark .team-card-full {
  background: rgba(255,255,255,0.05);
  border-color: rgba(145,195,234,0.12);
}
.about-section--dark .team-name { color: #e8f0f8; }
.about-section--dark .team-role { color: rgba(232,240,248,0.6); }
.about-section--dark .team-photo-sm { border-color: rgba(145,195,234,0.2); }

/* Why Emu Analytics — three-pillar grid */
.values-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .values-grid--3 { grid-template-columns: 1fr; }
}

/* Founder capability tag */
.founder-cap {
  align-self: flex-start;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(33,117,182,0.08);
  border: 1px solid rgba(33,117,182,0.18);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* Why We Built Flo.w — shaped-by-industry block + partner strip */
.about-shaped { max-width: 840px; margin: 80px auto 0; text-align: center; }
.about-shaped h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 18px;
}
.about-shaped p { color: var(--text-secondary); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.partner-strip {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 32px 52px;
  margin: 36px auto;
  max-width: 820px;
}
.partner-logo { display: flex; align-items: center; justify-content: center; height: 44px; }
.partner-logo img {
  height: auto; width: auto;
  max-height: 44px; max-width: 150px;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--t);
}
.partner-logo:hover img { filter: grayscale(0%) opacity(1); }
/* About traction on light background */
.about-traction--light {
  background: #FFFCF7;
}
.about-traction--light .traction-num { color: var(--dark-blue); }
.about-traction--light .traction-lbl { color: var(--text-secondary); }
.about-traction--light .traction-stat { border-color: var(--border-light); background: #fff; }
.about-traction--light .traction-stat:hover { background: var(--cream); }
.about-traction-section {
  background: linear-gradient(140deg, var(--dark-blue) 0%, #021e3a 55%, var(--near-black) 100%);
}
.traction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.traction-stat {
  padding: 40px 32px;
  border: 1px solid rgba(145,195,234,0.1);
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: background 0.2s;
}
.traction-stat:hover { background: rgba(255,255,255,0.06); }
.traction-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.traction-lbl {
  font-size: 13px;
  color: rgba(232,240,248,0.55);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* Senior leadership */
.senior-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.senior-card {
  flex: 0 1 calc(25% - 15px);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.senior-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.senior-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.senior-name { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 2px; }
.senior-title { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.02em; margin-bottom: 10px; }
.senior-bio { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Responsive */
@media (max-width: 1080px) {
  .founder-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .traction-grid { grid-template-columns: repeat(2, 1fr); }
  .senior-card { flex-basis: calc(50% - 10px); }
}
@media (max-width: 640px) {
  .traction-grid { grid-template-columns: 1fr; }
  .senior-card { flex-basis: 100%; }
  .traction-stat { padding: 28px 20px; }
}

/* Photos in founder / senior / team cards */
.founder-photo-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.founder-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid rgba(145,195,234,0.22);
  box-shadow: 0 0 0 8px rgba(33,117,182,0.08), 0 16px 40px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto;
}
.senior-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border-light);
  margin: 0 auto 12px;
  display: block;
}

/* Team photo banner */
.about-team-photo {
  margin-top: 48px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.about-team-photo img {
  width: 100%; height: auto;
  display: block;
}

/* Full team grid */
.team-grid-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.team-card-full {
  flex: 0 1 calc(20% - 16px);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card-full:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.team-photo-sm {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border-light);
  margin: 0 auto 12px;
  display: block;
}

@media (max-width: 1080px) {
  .team-card-full { flex-basis: calc(50% - 10px); }
}
@media (max-width: 480px) {
  .team-card-full { flex-basis: 100%; }
}

/* About — Opportunity section two-column layout */
.about-opportunity-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.about-flow-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(2,12,26,0.28);
  animation: float-bob 7s ease-in-out infinite;
}
@media (max-width: 1060px) {
  .about-opportunity-layout {
    grid-template-columns: 1fr;
  }
  .about-flow-svg {
    max-width: 480px;
  }
}
