/* ═══════════════════════════════════════════════════════════════
   RMexpertise — Genesis-Inspired Design System
   Calm · Premium · Editorial · Aviation Intelligence
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Palette */
  --cream:        #F4EFE6;
  --cream-dark:   #EDE7DB;
  --warm-white:   #FAFAF6;
  --white:        #FFFFFF;
  --charcoal:     #1A1D18;
  --charcoal-2:   #272B25;
  --charcoal-3:   #353830;
  --sage:         #4A7B5E;
  --sage-light:   #6E9E84;
  --sky:          #5A8FA8;
  --sky-light:    #85B3C9;
  --amber:        #B87844;
  --amber-light:  #D0955E;
  --burgundy:     #5E2330;
  --burgundy-s:   #7A3040;
  --text:         #1A1D18;
  --text-60:      rgba(26,29,24,0.62);
  --text-40:      rgba(26,29,24,0.42);
  --text-20:      rgba(26,29,24,0.2);
  --on-dark:      rgba(255,255,255,0.88);
  --on-dark-60:   rgba(255,255,255,0.6);
  --on-dark-30:   rgba(255,255,255,0.3);
  /* Fonts */
  --font: 'Plus Jakarta Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  /* Layout */
  --max: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TYPE ── */
h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 0.98;
}
h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1.06;
}
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; letter-spacing: -0.4px; }
p  { line-height: 1.72; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ey-amber   { color: var(--amber); }
.ey-sage    { color: var(--sage); }
.ey-sky     { color: var(--sky); }
.ey-burg    { color: var(--burgundy-s); }
.ey-light   { color: rgba(255,255,255,0.5); }

/* ── FLOATING PILL NAV ── */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 80px);
  max-width: 1140px;
  transition: top 0.3s ease;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 999px;
  padding: 10px 12px 10px 28px;
  border: 1px solid rgba(26,29,24,0.1);
  box-shadow: 0 4px 40px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  gap: 16px;
}
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}
/* Legacy text fallbacks (unused but kept for safety) */
.nav-logo-rm  { color: var(--burgundy); }
.nav-logo-exp { color: var(--charcoal); }
.nav-links-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-60);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
  display: block;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(26,29,24,0.07);
  color: var(--charcoal);
}
.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  transition: all 0.22s ease;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--charcoal-2);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

/* ── HAMBURGER (mobile only) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DROPDOWN MENU ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 3px;
  /* Positioned relative to .nav-wrap (position:fixed), drops below the pill */
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 20px;
  border: 1px solid rgba(26,29,24,0.10);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  padding: 10px;
  z-index: 999;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-60);
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { background: rgba(26,29,24,0.07); color: var(--charcoal); }
.nav-mobile-menu .nm-cta {
  margin-top: 6px;
  background: var(--charcoal);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 500;
}
.nav-mobile-menu .nm-cta:hover { background: var(--charcoal-2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: all 0.24s ease;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-dark    { background: var(--charcoal); color: #fff; padding: 16px 34px; }
.btn-dark:hover   { background: var(--charcoal-2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.22); }
.btn-glass   { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); padding: 15px 33px; backdrop-filter: blur(8px); }
.btn-glass:hover  { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-cream   { background: var(--cream); color: var(--charcoal); padding: 16px 34px; }
.btn-cream:hover  { background: var(--cream-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid rgba(26,29,24,0.22); padding: 15px 33px; }
.btn-outline:hover{ border-color: var(--charcoal); background: rgba(26,29,24,0.04); }
.btn-sage    { background: var(--sage); color: #fff; padding: 16px 34px; }
.btn-sage:hover   { background: var(--sage-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(74,123,94,0.3); }
.btn-sm  { padding: 11px 22px; font-size: 13px; }
.btn-lg  { padding: 18px 42px; font-size: 16px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
/* ── HERO + IMPACT shared background wrap ── */
.hero-impact-wrap {
  position: relative;
  overflow: hidden;
}
/* Shared background: one image covers both hero and impact */
.hib-bg {
  position: absolute;
  inset: -6%;                    /* extra room for Ken Burns scale without clipping */
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 12s ease;
  z-index: 0;
}
/* :has() — when hero gets .loaded, scale the shared bg back to 1 */
.hero-impact-wrap:has(.hero.loaded) .hib-bg { transform: scale(1); }

/* Gradient: barely visible at hero top → fully dark charcoal by impact bottom */
.hib-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,22,16,0.04)  0%,
    rgba(18,22,16,0.10)  25%,
    rgba(18,22,16,0.55)  55%,
    rgba(18,22,16,0.88)  75%,
    rgba(18,22,16,0.97) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Both sections stack above the shared bg */
.hero-impact-wrap > .hero,
.hero-impact-wrap > .impact-section { position: relative; z-index: 2; }

/* hero-bg is kept only for JS preload — hidden visually */
.hero-impact-wrap .hero-bg { opacity: 0; pointer-events: none; }

/* Impact section is now transparent — hib-fade handles the dark overlay */
.hero-impact-wrap .impact-section { background: transparent; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 22, 16, 0.04) 0%,
    rgba(18, 22, 16, 0.08) 30%,
    rgba(18, 22, 16, 0.48) 62%,
    rgba(18, 22, 16, 0.86) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 68px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: rgba(18,22,16,0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: dotpulse 2.2s ease-in-out infinite;
}
@keyframes dotpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.75)} }
.hero h1 { color: #fff; margin-bottom: 22px; max-width: 720px; }
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 42px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SCORE CARD SECTION ── */
.score-section {
  position: relative;
  background-size: cover;
  background-position: center 60%;
  overflow: hidden;
}
.score-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,22,16,0.93) 0%,
    rgba(18,22,16,0.84) 50%,
    rgba(18,22,16,0.90) 100%
  );
}
.score-section > .score-card-row {
  position: relative;
  z-index: 1;
  padding: 100px 72px;
}
.score-card-row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 20px;
}
.score-card {
  background: rgba(22, 27, 20, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.13);
  padding: 32px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.14);
  color: #fff;
}
.sc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.sc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}
.sc-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.60);
}
.sc-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: ldot 2s ease-in-out infinite;
}
@keyframes ldot { 0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,0.2)} 50%{box-shadow:0 0 0 7px rgba(74,222,128,0.07)} }
.sc-main {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.score-ring-svg { width: 88px; height: 88px; flex-shrink: 0; }
.sr-track { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 7; }
.sr-fill  { fill: none; stroke: var(--sky); stroke-width: 7; stroke-linecap: round; transition: stroke-dashoffset 1.2s ease; }
.sr-sage  { stroke: var(--sage); }
.sr-amber { stroke: var(--amber); }
.score-info { display: flex; flex-direction: column; gap: 4px; }
.score-num {
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.score-denom { font-size: 16px; color: rgba(255,255,255,0.52); font-weight: 300; }
.score-grade {
  font-size: 14px;
  font-weight: 500;
  color: var(--sky-light);
  letter-spacing: 0.5px;
}
.score-since {
  font-size: 12px;
  color: #4ade80;
  margin-top: 2px;
}
.sc-bars { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.scb-row {}
.scb-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.scb-name { font-size: 11px; color: rgba(255,255,255,0.48); }
.scb-val  { font-size: 11px; font-family: var(--mono); color: rgba(255,255,255,0.78); }
.scb-track { height: 4px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.scb-fill  { height: 100%; border-radius: 999px; }
.fill-sky  { background: linear-gradient(to right, var(--sky), var(--sky-light)); }
.fill-sage { background: linear-gradient(to right, var(--sage), var(--sage-light)); }
.fill-amb  { background: linear-gradient(to right, var(--amber), var(--amber-light)); }
.sc-dist { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.scd-col { display: flex; flex-direction: column; gap: 4px; }
.scd-bar-wrap { height: 36px; display: flex; align-items: flex-end; }
.scd-bar  { width: 100%; border-radius: 4px 4px 0 0; min-height: 4px; }
.scd-num  { font-family: var(--mono); font-size: 13px; font-weight: 500; color: #fff; line-height: 1; }
.scd-lbl  { font-size: 9px; color: rgba(255,255,255,0.52); letter-spacing: 0.5px; line-height: 1.3; }

/* Second card (metrics) — dark glass to match section */
.metrics-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.13);
  padding: 32px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.14);
  color: #fff;
}
.mc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.mc-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.52); }
.mc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.mc-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 16px;
}
.mc-item-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.52); margin-bottom: 6px; display: block; }
.mc-item-val { font-family: var(--mono); font-size: 28px; font-weight: 500; color: #fff; letter-spacing: -1.5px; line-height: 1; }
.mc-item-val.green { color: var(--sage-light); }
.mc-item-val.sky   { color: var(--sky-light); }
.mc-item-val.amb   { color: var(--amber-light); }
.mc-ventures { display: flex; flex-direction: column; gap: 10px; }
.mc-vent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.mc-vent-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88); }
.mc-vent-sub  { font-size: 11px; color: rgba(255,255,255,0.52); margin-top: 1px; }
.vc-pill {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.vcp-live { background: rgba(74,222,128,0.12); color: #16a34a; border: 1px solid rgba(74,222,128,0.28); }
.vcp-soon { background: rgba(251,191,36,0.12); color: #b45309; border: 1px solid rgba(251,191,36,0.28); }
.vcp-dev  { background: rgba(139,92,246,0.12); color: #7c3aed; border: 1px solid rgba(139,92,246,0.28); }

/* ── STAT STRIP (genesis "+50%, +60%") ── */
.impact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,22,16,0.92) 0%,
    rgba(18,22,16,0.82) 50%,
    rgba(18,22,16,0.88) 100%
  );
}
.impact-inner {
  position: relative;
  z-index: 1;
  padding: 120px 72px;
  max-width: var(--max);
  margin: 0 auto;
}
.impact-header { max-width: 640px; margin-bottom: 72px; }
.impact-header h2 { color: #fff; margin-bottom: 18px; }
.impact-header p { color: var(--on-dark-60); font-size: 18px; font-weight: 300; line-height: 1.7; }
.impact-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; margin-bottom: 56px; }
.impact-stat { padding: 36px 28px; background: rgba(255,255,255,0.04); }
.impact-stat + .impact-stat { border-left: 1px solid rgba(255,255,255,0.1); }
.is-num { font-family: var(--mono); font-size: clamp(36px, 4vw, 54px); font-weight: 400; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.is-label { font-size: 14px; color: var(--on-dark-60); }
.impact-cards-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ── BRAND VENTURE CARDS (Proven at Scale section) ── */
.brand-venture-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.brand-venture-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.bvc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bvc-logo { width: 52px; height: 52px; flex-shrink: 0; }
.bvc-logo svg { width: 100%; height: 100%; }
.bvc-badge {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  align-self: flex-start;
}
.bvc-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.bvc-desc { font-size: 14px; color: rgba(255,255,255,0.70); line-height: 1.5; }
.bvc-divider {
  margin: 20px 0;
  margin-top: auto; /* pushes divider + tagline + link to the same position in every card */
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.bvc-tagline {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.50);
}
.bvc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.bvc-link:hover { color: #fff; }
.bvc-spright:hover  { border-color: rgba(60,185,165,0.55); }
.bvc-leapr:hover    { border-color: rgba(0,200,150,0.60); }
.bvc-ryval:hover    { border-color: rgba(240,180,41,0.60); }
.bvc-nova .bvc-logo { width: 52px; height: 52px; }
.bvc-nova:hover     { border-color: rgba(110,86,207,0.60); }

/* ── LEAPR logo draw animation (triggered by IntersectionObserver .visible class) ── */
@keyframes leapr-draw      { from { stroke-dashoffset: 95; } to { stroke-dashoffset: 0; } }
@keyframes leapr-tail-in   { from { stroke-dashoffset: 32; opacity: 0; } to { stroke-dashoffset: 0; opacity: 0.45; } }
@keyframes leapr-dot-pop   {
  0%   { r: 0;    opacity: 0; }
  60%  { r: 12px; opacity: 1; }
  80%  { r: 7.5px; opacity: 1; }
  100% { r: 9px;  opacity: 1; }
}
@keyframes leapr-pulse-ring {
  0%   { r: 9px;  opacity: 0.55; stroke-width: 2; }
  100% { r: 26px; opacity: 0;    stroke-width: 0.5; }
}
@keyframes leapr-edot1     { 0% { r: 0; opacity: 0; } 100% { r: 3.5px; opacity: 0.3; } }
@keyframes leapr-edot2     { 0% { r: 0; opacity: 0; } 100% { r: 2.5px; opacity: 0.2; } }
@keyframes leapr-float     { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.bvc-leapr.visible .leapr-arc        { animation: leapr-draw      0.75s cubic-bezier(0.4,0,0.2,1) forwards; }
.bvc-leapr.visible .leapr-tail       { animation: leapr-tail-in   0.40s ease-out 0.72s forwards; }
.bvc-leapr.visible .leapr-dot        { animation: leapr-dot-pop   0.50s cubic-bezier(0.34,1.56,0.64,1) 0.72s forwards; }
.bvc-leapr.visible .leapr-pulse      { animation: leapr-pulse-ring 1.8s ease-out 1.25s infinite; }
.bvc-leapr.visible .leapr-edot1      { animation: leapr-edot1     0.40s ease-out 0.92s forwards; }
.bvc-leapr.visible .leapr-edot2      { animation: leapr-edot2     0.40s ease-out 1.05s forwards; }
.bvc-leapr.visible .bvc-logo         { animation: leapr-float      3.2s ease-in-out 2.0s infinite; }

/* ── FLO ORB — Spright brand logo (FloOrb.jsx → pure CSS) ── */
/* Logo height matches the 52px default so all three bvc-name labels align */
.bvc-spright .bvc-logo { width: 52px; height: 52px; }

@keyframes flo-ambient-pulse {
  0%,100% { opacity: 0.6; transform: scale(1);    }
  50%     { opacity: 1;   transform: scale(1.08); }
}
@keyframes flo-halo-spin   { from { transform: rotate(0deg)    scaleX(1.2); } to { transform: rotate(360deg)  scaleX(1.2); } }
@keyframes flo-halo-spin-r { from { transform: rotate(0deg)    scaleY(1.15); } to { transform: rotate(-360deg) scaleY(1.15); } }
@keyframes flo-arc-breath  { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes flo-glow-breath { 0%,100% { transform: scale(0.90); opacity: 0.7; } 50% { transform: scale(1.14); opacity: 1; } }
@keyframes flo-ring-breath {
  0%,100% { transform: translate(-50%,-50%) rotateX(75deg) scale(0.96); opacity: 0.6; }
  50%     { transform: translate(-50%,-50%) rotateX(75deg) scale(1.04); opacity: 1;   }
}
@keyframes flo-blob-morph {
  0%   { border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%; }
  14%  { border-radius: 52% 48% 62% 38% / 48% 56% 44% 52%; }
  28%  { border-radius: 44% 56% 38% 62% / 58% 40% 60% 42%; }
  42%  { border-radius: 58% 42% 54% 46% / 42% 62% 38% 58%; }
  57%  { border-radius: 48% 52% 42% 58% / 60% 44% 56% 40%; }
  71%  { border-radius: 56% 44% 58% 42% / 46% 54% 46% 54%; }
  85%  { border-radius: 40% 60% 50% 50% / 52% 46% 54% 48%; }
  100% { border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%; }
}
@keyframes flo-orb-breath  { 0%,100% { transform: scale(0.96); } 50% { transform: scale(1.04); } }
@keyframes flo-mark-breath { 0%,100% { opacity: 0.70; }          50% { opacity: 0.95; } }

.flo-scene {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.flo-ambient {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(32,90,78,0.18) 0%, rgba(16,60,52,0.10) 50%, transparent 100%);
  animation: flo-ambient-pulse 8s ease-in-out infinite;
}
.flo-halo { position: absolute; border-radius: 50%; }
.flo-halo-outer { width: 78%; height: 78%; border: 1px solid rgba(110,200,185,0.06); animation: flo-halo-spin   40s linear infinite; }
.flo-halo-mid   { width: 62%; height: 62%; border: 1px solid rgba(110,200,185,0.10); animation: flo-halo-spin-r 28s linear infinite; }
.flo-arc { position: absolute; border-radius: 50%; border: 0.5px solid transparent; }
.flo-arc-a { width:53%;height:53%; border-top-color:rgba(72,210,190,0.18);   border-right-color:rgba(72,210,190,0.08);   transform:rotate(-30deg); animation:flo-arc-breath 6s ease-in-out infinite; }
.flo-arc-b { width:48%;height:48%; border-bottom-color:rgba(130,230,215,0.14); border-left-color:rgba(130,230,215,0.06);  transform:rotate(60deg);  animation:flo-arc-breath 6s ease-in-out infinite -2s; }
.flo-arc-c { width:58%;height:58%; border-top-color:rgba(180,240,232,0.10);   border-right-color:rgba(180,240,232,0.04); transform:rotate(120deg); animation:flo-arc-breath 6s ease-in-out infinite -4s; }
.flo-glow-bg {
  position: absolute; width: 47%; height: 47%; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,185,165,0.22) 0%, rgba(40,140,125,0.14) 40%, rgba(20,90,80,0.06) 70%, transparent 100%);
  filter: blur(6px);
  animation: flo-glow-breath 5s ease-in-out infinite;
}
.flo-eq-ring {
  position: absolute; border-radius: 50%;
  width: 37.5%; height: 4.4%;
  border: 1px solid rgba(100,210,195,0.14);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(75deg);
  animation: flo-ring-breath 5s ease-in-out infinite;
  z-index: 9;
}
.flo-orb {
  position: relative; width: 58%; height: 58%; flex-shrink: 0;
  animation: flo-blob-morph 9s ease-in-out infinite, flo-orb-breath 5s ease-in-out infinite;
  z-index: 10;
}
.flo-orb-inner {
  width: 100%; height: 100%; border-radius: inherit;
  background: radial-gradient(ellipse 70% 65% at 36% 32%, rgba(90,195,178,0.55) 0%, rgba(45,148,132,0.60) 35%, rgba(22,100,88,0.75) 65%, rgba(12,62,54,0.92) 100%);
  box-shadow: inset 0 0 10px rgba(10,55,48,0.60), inset -4px -4px 10px rgba(8,45,40,0.65), inset 3px 3px 8px rgba(80,185,165,0.12);
  border: 1px solid rgba(100,200,185,0.20);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.flo-mark-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: flo-mark-breath 5s ease-in-out infinite;
}
.flo-mark-wrap svg { width: 26px; height: 26px; }

/* ── NŌVA ORB — Spright Business companion (violet / indigo)
   Same architecture as Flō but in Spright's secondary violet palette.        ── */
@keyframes nova-ambient-pulse { 0%,100% { opacity:0.55; transform:scale(1); } 50% { opacity:1; transform:scale(1.10); } }
@keyframes nova-halo-spin   { from { transform: rotate(0deg)    scaleX(1.18); } to { transform: rotate(360deg)  scaleX(1.18); } }
@keyframes nova-halo-spin-r { from { transform: rotate(0deg)    scaleY(1.12); } to { transform: rotate(-360deg) scaleY(1.12); } }
@keyframes nova-arc-breath  { 0%,100% { opacity:0.4; } 50% { opacity:0.9; } }
@keyframes nova-glow-breath { 0%,100% { transform:scale(0.88); opacity:0.65; } 50% { transform:scale(1.16); opacity:1; } }
@keyframes nova-ring-breath {
  0%,100% { transform:translate(-50%,-50%) rotateX(75deg) scale(0.94); opacity:0.55; }
  50%      { transform:translate(-50%,-50%) rotateX(75deg) scale(1.06); opacity:1;    }
}
@keyframes nova-blob-morph {
  0%   { border-radius: 45% 55% 62% 38% / 52% 44% 56% 48%; }
  14%  { border-radius: 60% 40% 46% 54% / 40% 60% 42% 58%; }
  28%  { border-radius: 50% 50% 36% 64% / 62% 38% 60% 40%; }
  42%  { border-radius: 38% 62% 56% 44% / 46% 58% 42% 52%; }
  57%  { border-radius: 64% 36% 44% 56% / 58% 42% 56% 44%; }
  71%  { border-radius: 50% 50% 60% 40% / 40% 60% 44% 56%; }
  85%  { border-radius: 42% 58% 40% 60% / 60% 40% 52% 48%; }
  100% { border-radius: 45% 55% 62% 38% / 52% 44% 56% 48%; }
}
@keyframes nova-orb-breath  { 0%,100% { transform:scale(0.97); } 50% { transform:scale(1.03); } }
@keyframes nova-mark-breath { 0%,100% { opacity:0.65; } 50% { opacity:0.92; } }

.nova-scene {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nova-ambient {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(60,40,140,0.20) 0%, rgba(30,18,80,0.12) 50%, transparent 100%);
  animation: nova-ambient-pulse 9s ease-in-out infinite;
}
.nova-halo { position: absolute; border-radius: 50%; }
.nova-halo-outer { width: 78%; height: 78%; border: 1px solid rgba(140,120,220,0.07); animation: nova-halo-spin   50s linear infinite; }
.nova-halo-mid   { width: 62%; height: 62%; border: 1px solid rgba(140,120,220,0.11); animation: nova-halo-spin-r 35s linear infinite; }
.nova-arc { position: absolute; border-radius: 50%; border: 0.5px solid transparent; }
.nova-arc-a { width:53%;height:53%; border-top-color:rgba(140,120,220,0.18);   border-right-color:rgba(140,120,220,0.08);   transform:rotate(-30deg); animation:nova-arc-breath 7s ease-in-out infinite; }
.nova-arc-b { width:48%;height:48%; border-bottom-color:rgba(170,155,240,0.14); border-left-color:rgba(170,155,240,0.06);  transform:rotate(60deg);  animation:nova-arc-breath 7s ease-in-out infinite -2.5s; }
.nova-arc-c { width:58%;height:58%; border-top-color:rgba(200,190,255,0.10);   border-right-color:rgba(200,190,255,0.04); transform:rotate(120deg); animation:nova-arc-breath 7s ease-in-out infinite -4.5s; }
.nova-glow-bg {
  position: absolute; width: 47%; height: 47%; border-radius: 50%;
  background: radial-gradient(circle, rgba(100,80,200,0.24) 0%, rgba(70,50,160,0.16) 40%, rgba(35,20,90,0.06) 70%, transparent 100%);
  filter: blur(6px);
  animation: nova-glow-breath 6.5s ease-in-out infinite;
}
.nova-eq-ring {
  position: absolute; border-radius: 50%;
  width: 37.5%; height: 4.4%;
  border: 1px solid rgba(140,120,220,0.16);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(75deg);
  animation: nova-ring-breath 6.5s ease-in-out infinite;
  z-index: 9;
}
.nova-orb {
  position: relative; width: 52%; height: 52%; flex-shrink: 0;
  animation: nova-blob-morph 11s ease-in-out infinite, nova-orb-breath 6s ease-in-out infinite;
  z-index: 10;
}
.nova-orb-inner {
  width: 100%; height: 100%; border-radius: inherit;
  background: radial-gradient(ellipse 70% 65% at 36% 32%, rgba(130,110,220,0.55) 0%, rgba(85,65,175,0.60) 35%, rgba(50,35,120,0.75) 65%, rgba(25,15,70,0.92) 100%);
  box-shadow: inset 0 0 10px rgba(20,10,65,0.60), inset -4px -4px 10px rgba(15,8,55,0.65), inset 3px 3px 8px rgba(120,100,210,0.12);
  border: 1px solid rgba(140,120,220,0.22);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.nova-mark-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: nova-mark-breath 6s ease-in-out infinite;
}
.nova-mark-wrap svg { width: 26px; height: 26px; }

/* ── SPRIGHT DUAL-PRODUCT VISUAL (Innovation Lab featured card) ── */
.spright-dual-visual {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  padding: 8px 0;
}
.spright-orb-col {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 20px;
}
.spright-orb-scene-wrap { width: 120px; height: 120px; }
.spright-vert-divider {
  width: 1px; height: 140px; flex-shrink: 0; margin: 0 16px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.10) 30%, rgba(255,255,255,0.10) 70%, transparent);
}
.spright-col-label { text-align: center; }
.spright-col-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 8px;
}
.spright-tag-teal   { color: #4BBFB8; background: rgba(75,191,184,0.12);  border: 1px solid rgba(75,191,184,0.25); }
.spright-tag-violet { color: #A89FD4; background: rgba(110,86,207,0.12);  border: 1px solid rgba(110,86,207,0.25); }
.spright-col-name { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.03em; margin-bottom: 4px; line-height: 1.2; }
.spright-col-desc { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.5; max-width: 140px; margin: 0 auto; }
.spright-col-cta {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; border-radius: 999px; padding: 6px 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.spright-cta-teal   { color: #4BBFB8; background: rgba(75,191,184,0.08);  border: 1px solid rgba(75,191,184,0.22); }
.spright-cta-teal:hover   { background: rgba(75,191,184,0.16); border-color: rgba(75,191,184,0.60); }
.spright-cta-violet { color: #A89FD4; background: rgba(110,86,207,0.08);  border: 1px solid rgba(110,86,207,0.22); }
.spright-cta-violet:hover { background: rgba(110,86,207,0.16); border-color: rgba(110,86,207,0.60); }

/* ── KĀI ORB — Karii brand logo (KaiOrb.jsx → pure CSS)
   Architecture mirrors Flō/Spright exactly.
   Teal atmosphere (same sky as Spright), amber inner orb (Karii brand colour),
   two cream eyes with violet glow — the two i-dots of the KArii wordmark.      ── */
.bvc-karii .bvc-logo { width: 52px; height: 52px; }
.bvc-karii:hover { border-color: rgba(239,169,74,0.60); }

@keyframes kai-ambient-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1);    }
  50%       { opacity: 1;   transform: scale(1.08); }
}
@keyframes kai-halo-spin   { from { transform: rotate(0deg)    scaleX(1.2); } to { transform: rotate(360deg)  scaleX(1.2); } }
@keyframes kai-halo-spin-r { from { transform: rotate(0deg)    scaleY(1.15); } to { transform: rotate(-360deg) scaleY(1.15); } }
@keyframes kai-arc-breath  { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes kai-glow-breath { 0%, 100% { transform: scale(0.90); opacity: 0.7; } 50% { transform: scale(1.14); opacity: 1; } }
@keyframes kai-ring-breath {
  0%, 100% { transform: translate(-50%,-50%) rotateX(75deg) scale(0.96); opacity: 0.6; }
  50%       { transform: translate(-50%,-50%) rotateX(75deg) scale(1.04); opacity: 1;   }
}
@keyframes kai-blob-morph {
  0%   { border-radius: 60% 40% 48% 52% / 54% 50% 50% 46%; }
  14%  { border-radius: 50% 50% 60% 40% / 50% 54% 46% 50%; }
  28%  { border-radius: 46% 54% 40% 60% / 56% 42% 58% 44%; }
  42%  { border-radius: 56% 44% 52% 48% / 44% 60% 40% 56%; }
  57%  { border-radius: 50% 50% 44% 56% / 58% 46% 54% 42%; }
  71%  { border-radius: 54% 46% 56% 44% / 48% 52% 48% 52%; }
  85%  { border-radius: 42% 58% 50% 50% / 54% 48% 52% 46%; }
  100% { border-radius: 60% 40% 48% 52% / 54% 50% 50% 46%; }
}
@keyframes kai-orb-breath  { 0%, 100% { transform: scale(0.96); } 50% { transform: scale(1.04); } }
@keyframes kai-eye-blink   { 0%, 92%, 100% { transform: scaleY(1); } 94%, 98% { transform: scaleY(0.08); } }
@keyframes kai-eye-breath  { 0%, 100% { opacity: 0.85; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes kai-pupil-spark { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.kai-scene {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Ambient bg — teal, same atmosphere as Spright (Kāi rises through Spright's sky) */
.kai-ambient {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(32,90,78,0.18) 0%, rgba(16,60,52,0.10) 50%, transparent 100%);
  animation: kai-ambient-pulse 8s ease-in-out infinite;
}
.kai-halo { position: absolute; border-radius: 50%; }
.kai-halo-outer { width: 78%; height: 78%; border: 1px solid rgba(110,200,185,0.06); animation: kai-halo-spin   35s linear infinite; }
.kai-halo-mid   { width: 62%; height: 62%; border: 1px solid rgba(110,200,185,0.10); animation: kai-halo-spin-r 25s linear infinite; }
.kai-arc { position: absolute; border-radius: 50%; border: 0.5px solid transparent; }
.kai-arc-a { width:53%;height:53%; border-top-color:rgba(72,210,190,0.18);   border-right-color:rgba(72,210,190,0.08);   transform:rotate(-45deg);  animation:kai-arc-breath 5s ease-in-out infinite; }
.kai-arc-b { width:48%;height:48%; border-bottom-color:rgba(130,230,215,0.14); border-left-color:rgba(130,230,215,0.06);  transform:rotate(75deg);   animation:kai-arc-breath 5s ease-in-out infinite -1.6s; }
.kai-arc-c { width:58%;height:58%; border-top-color:rgba(180,240,232,0.10);   border-right-color:rgba(180,240,232,0.04); transform:rotate(135deg);  animation:kai-arc-breath 5s ease-in-out infinite -3.3s; }
.kai-glow-bg {
  position: absolute; width: 47%; height: 47%; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,185,165,0.22) 0%, rgba(40,140,125,0.14) 40%, rgba(20,90,80,0.06) 70%, transparent 100%);
  filter: blur(6px);
  animation: kai-glow-breath 4.5s ease-in-out infinite;
}
.kai-eq-ring {
  position: absolute; border-radius: 50%;
  width: 37.5%; height: 4.4%;
  border: 1px solid rgba(100,210,195,0.14);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(75deg);
  animation: kai-ring-breath 4.5s ease-in-out infinite;
  z-index: 9;
}
/* Main orb — amber gradient (Karii brand colour) */
.kai-orb {
  position: relative; width: 52%; height: 52%; flex-shrink: 0;
  animation: kai-blob-morph 8s ease-in-out infinite, kai-orb-breath 4.5s ease-in-out infinite;
  z-index: 10;
}
.kai-orb-inner {
  width: 100%; height: 100%; border-radius: inherit;
  background: radial-gradient(ellipse 70% 65% at 36% 32%, rgba(248,215,140,0.65) 0%, rgba(239,169,74,0.72) 30%, rgba(200,134,49,0.78) 60%, rgba(90,55,18,0.94) 100%);
  box-shadow: inset 0 0 10px rgba(60,32,8,0.60), inset -4px -4px 10px rgba(50,28,10,0.65), inset 3px 3px 8px rgba(250,220,160,0.18);
  border: 1px solid rgba(239,169,74,0.28);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* Eyes wrap — two i-dot eyes centred in the orb */
.kai-eyes-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 22%;
}
/* Each eye: cream with violet halo (the AI signal, borrowed from Spright's secondary palette) */
.kai-eye {
  width: 18%; height: 18%; border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 40% 35%, rgba(245,242,236,0.98) 0%, rgba(220,212,238,0.85) 55%, rgba(168,159,212,0.65) 100%);
  box-shadow: 0 0 12px rgba(168,159,212,0.55), 0 0 24px rgba(110,86,207,0.35), inset 0 0 6px rgba(255,255,255,0.35);
  animation: kai-eye-breath 4s ease-in-out infinite, kai-eye-blink 6s ease-in-out infinite;
  transform-origin: center;
}
.kai-eye:last-child { animation-delay: -0.2s; }
/* Pupil spark */
.kai-pupil {
  position: absolute; top: 28%; left: 32%;
  width: 22%; height: 22%; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  animation: kai-pupil-spark 3.2s ease-in-out infinite;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--charcoal);
  padding: 72px 40px;
  position: relative;
}
.mq-scroll-area {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
.marquee-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(90,143,168,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 50%, rgba(74,123,94,0.07) 0%, transparent 55%);
}
.mq-header { position: relative; z-index: 1; text-align: center; padding: 0 72px; margin-bottom: 48px; }
.mq-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-bottom: 8px; }
.mq-title { font-size: clamp(22px, 3vw, 30px); font-weight: 300; color: rgba(255,255,255,0.85); letter-spacing: -0.8px; }
.mq-row {
  position: relative; z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 24px;
}
.mq-row:last-child { margin-bottom: 0; }
.mq-track { display: flex; gap: 52px; width: max-content; animation: mqL 40s linear infinite; }
.mq-track-r { animation: mqR 46s linear infinite; }
.mq-row:hover .mq-track { animation-play-state: paused; }
.mq-logo {
  height: 28px; width: auto; max-width: 130px; object-fit: contain;
  opacity: 0.55; filter: saturate(0) brightness(0) invert(1);
  flex-shrink: 0; transition: opacity 0.28s, filter 0.28s; cursor: pointer;
}
.mq-logo:hover { opacity: 0.90; filter: saturate(0.2) brightness(0) invert(1); }
@keyframes mqL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mqR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── SECTIONS ── */
.section { padding: 120px 72px; }
.s-inner { max-width: var(--max); margin: 0 auto; }
.s-head { margin-bottom: 72px; }
.s-head.center { text-align: center; }
.s-sub { font-size: 18px; font-weight: 300; color: var(--text-60); margin-top: 16px; max-width: 560px; line-height: 1.72; }
.s-head.center .s-sub { margin-left: auto; margin-right: auto; }
.s-cream  { background: var(--cream); }
.s-white  { background: var(--warm-white); }
.s-dark   { background: var(--charcoal); }
.s-dark h2 { color: #fff; }
.s-dark .s-sub { color: var(--on-dark-60); }
.s-dark .eyebrow { color: rgba(255,255,255,0.52); }

/* ── GLASS SECTION (solutions, dark bg + glass cards) ── */
.s-glass {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.s-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(74,123,94,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(90,143,168,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.s-glass h2 { color: #fff; }
.s-glass .s-sub { color: var(--on-dark-60); }
.s-glass .eyebrow { color: rgba(255,255,255,0.52); }

/* ── SOLUTIONS grid — 3 cards side by side ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.solution-row {
  display: flex;
  flex-direction: column;
}

/* Glass card variant */
.solution-row.glass-card {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  flex: 1;                           /* fill equal height within grid row */
  transition: background 0.3s ease, border-color 0.3s ease;
}
.solution-row.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255,255,255,0.17);
}
.solution-row.glass-card .sol-title { color: #fff; }
.solution-row.glass-card .sol-text  { color: var(--on-dark-60); }
.solution-row.glass-card .sol-points li { color: var(--on-dark-60); }

.sol-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.sol-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sol-img:hover img { transform: scale(1.04); }
.sol-body { display: flex; flex-direction: column; flex: 1; }
.sol-tag { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 16px; }
.sol-title { font-size: clamp(20px, 2vw, 26px); font-weight: 300; letter-spacing: -0.8px; margin-bottom: 16px; }
.sol-text { font-size: 15px; color: var(--text-60); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.sol-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.sol-body > .btn { margin-top: auto; align-self: flex-start; }
.sol-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-60);
}
.sol-points li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 8px; }

/* ── PROCESS (Genesis platform section) ── */
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.process-steps { display: flex; flex-direction: column; }
.p-step {
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,29,24,0.08);
  display: flex;
  gap: 22px;
  cursor: default;
}
.p-step:first-child { border-top: 1px solid rgba(26,29,24,0.08); }
.p-num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.p-title { font-size: 18px; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.p-text  { font-size: 15px; color: var(--text-60); line-height: 1.68; font-weight: 300; }
.process-visual {
  position: sticky;
  top: 120px;
}
.pv-card {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 8px 40px rgba(26,29,24,0.06), inset 0 1px 0 rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 36px;
  overflow: hidden;
}
.pv-screen {
  background: var(--charcoal);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 18px;
}
.pv-screen-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pv-screen-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.52); }
.pv-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.pv-mini { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 14px; border: 1px solid rgba(255,255,255,0.07); }
.pv-mini-val { font-family: var(--mono); font-size: 22px; font-weight: 500; color: #fff; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.pv-mini-lab { font-size: 10px; color: rgba(255,255,255,0.50); text-transform: uppercase; letter-spacing: 1px; }
.pv-chart-row { display: flex; align-items: flex-end; gap: 6px; height: 48px; margin-bottom: 8px; }
.pv-bar { flex: 1; border-radius: 4px 4px 0 0; }
.pv-chart-labels { display: flex; gap: 6px; }
.pv-chart-label { flex: 1; font-size: 9px; text-align: center; color: rgba(255,255,255,0.3); }
.pv-insight {
  background: rgba(26,29,24,0.04);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(26,29,24,0.08);
}
.pv-insight:last-child { margin-bottom: 0; }
.pv-ins-icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.pv-ins-icon svg { display: block; }
.pv-ins-icon.icon-green  { background: rgba(74,123,94,0.10);  }
.pv-ins-icon.icon-sky    { background: rgba(90,143,168,0.12); }
.pv-ins-icon.icon-amber  { background: rgba(194,154,66,0.12); }
.pv-ins-text { font-size: 12px; color: rgba(26,29,24,0.73); line-height: 1.5; flex: 1; }
.pv-ins-val  { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--charcoal); flex-shrink: 0; }
.pv-footer { font-size: 11px; color: rgba(26,29,24,0.50); text-align: center; padding-top: 14px; letter-spacing: 0.02em; }

/* ── VENTURES ── */
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.v-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); box-shadow: 0 20px 56px rgba(0,0,0,0.25); }
.v-card.featured {
  grid-column: 1 / -1;
  background: rgba(18,22,16,0.60);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.v-card.featured:hover { background: rgba(18,22,16,0.70); box-shadow: 0 20px 56px rgba(0,0,0,0.35); }
.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.vc-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.vcb-live     { color: #16a34a; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.22); }
.vcb-soon     { color: #b45309; background: rgba(180,83,9,0.1); border: 1px solid rgba(180,83,9,0.22); }
.vcb-dev      { color: #7c3aed; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.22); }
.vcb-waitlist { color: #c88631; background: rgba(200,134,49,0.1); border: 1px solid rgba(200,134,49,0.28); }
.vc-tag   { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px; }
.vc-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 300; letter-spacing: -1.5px; color: var(--charcoal); margin-bottom: 14px; }
.vc-title-w { color: #fff; }
.vc-text  { font-size: 16px; color: var(--text-60); line-height: 1.72; margin-bottom: 24px; font-weight: 300; }
.vc-text-w{ color: var(--on-dark-60); }
.vc-tags  { display: flex; gap: 8px; flex-wrap: wrap; }
.vt-pill  { font-size: 11px; padding: 4px 12px; border-radius: 999px; background: rgba(26,29,24,0.06); color: var(--text-60); border: 1px solid rgba(26,29,24,0.1); }
.vt-pill-w{ background: rgba(255,255,255,0.08); color: var(--on-dark-60); border-color: rgba(255,255,255,0.12); }
/* Venture visual mock */
.v-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
}

/* ── AVIATION TEASER ── */
.avi-wrap { padding: 0 72px 120px; }
.avi-block {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.avi-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; }
.avi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,22,16,0.92) 0%, rgba(18,22,16,0.65) 55%, rgba(18,22,16,0.28) 100%);
}
.avi-content { position: relative; z-index: 1; padding: 56px 64px; max-width: 540px; }
.avi-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.avi-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #fbbf24; }
.avi-content h2 { color: #fff; margin-bottom: 16px; font-size: clamp(26px, 3.8vw, 46px); }
.avi-content p  { color: var(--on-dark-60); font-size: 17px; font-weight: 300; line-height: 1.75; margin-bottom: 34px; }

/* ── FINAL CTA (Genesis-style) ── */
.final-cta {
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 140px 72px;
  overflow: hidden;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,22,16,0.75), rgba(18,22,16,0.9));
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 { color: #fff; font-size: clamp(38px, 5.5vw, 72px); margin-bottom: 24px; }
.final-cta p { color: var(--on-dark-60); font-size: 20px; font-weight: 300; margin-bottom: 52px; line-height: 1.7; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 80px 72px 44px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 80%, rgba(74,123,94,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 85% 20%, rgba(90,143,168,0.07) 0%, transparent 50%);
}
.footer-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand-n { font-size: 17px; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-brand-n .rm { color: var(--burgundy-s); }
.footer-brand-n .exp { color: rgba(255,255,255,0.85); }
.footer-desc { font-size: 14px; color: var(--on-dark-30); line-height: 1.72; max-width: 240px; }
.f-col-h { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--on-dark-30); margin-bottom: 18px; display: block; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-links a { font-size: 14px; color: var(--on-dark-60); transition: color 0.2s; }
.f-links a:hover { color: #fff; }
.f-nl-title { font-size: 15px; font-weight: 500; color: var(--on-dark); margin-bottom: 6px; }
.f-nl-sub   { font-size: 13px; color: var(--on-dark-30); line-height: 1.65; margin-bottom: 18px; }
.f-nl-form  { display: flex; }
.f-nl-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: 999px 0 0 999px;
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.f-nl-input::placeholder { color: var(--on-dark-30); }
.f-nl-input:focus { border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.1); }
.f-nl-btn {
  padding: 12px 20px;
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.f-nl-btn:hover { background: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.f-copy { font-size: 13px; color: var(--on-dark-30); }
.f-bottom-links { display: flex; align-items: center; gap: 22px; }
.f-bottom-links a { font-size: 13px; color: var(--on-dark-30); transition: color 0.2s; }
.f-bottom-links a:hover { color: #fff; }
.f-addr { font-size: 12px; color: var(--on-dark-30); text-align: right; line-height: 1.72; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rv1 { transition-delay: 0.1s; }
.rv2 { transition-delay: 0.2s; }
.rv3 { transition-delay: 0.3s; }
.rv4 { transition-delay: 0.4s; }

/* ── WORD SWAP ── */
[data-words] { display: inline-block; transition: opacity 0.3s, transform 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .score-card-row   { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .impact-cards-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links-wrap   { display: none; }
  .nav-cta          { display: none; }
  .nav-hamburger    { display: flex; }
  .hero-content     { padding: 0 32px 52px; }
  .score-section > .score-card-row { padding: 72px 24px; }
  .score-card-row   { grid-template-columns: 1fr; }
  .impact-inner     { padding: 80px 32px; }
  .impact-stats-grid{ grid-template-columns: 1fr 1fr; }
  .impact-stat + .impact-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .impact-cards-row { grid-template-columns: 1fr; }
  .section          { padding: 80px 32px; }
  .mq-header        { padding: 0 32px; }
  .marquee-wrap     { padding: 72px 20px; }
  .solutions-grid   { grid-template-columns: 1fr; }
  .process-layout   { grid-template-columns: 1fr; }
  .process-visual   { position: static; }
  .ventures-grid    { grid-template-columns: 1fr; }
  .v-card.featured  { grid-template-columns: 1fr; }
  .avi-wrap         { padding: 0 24px 80px; }
  .avi-content      { padding: 44px 40px; }
  .final-cta        { padding: 100px 32px; }
  .footer           { padding: 64px 32px 40px; }
  .footer-top       { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }
  .f-addr           { text-align: left; }
  .nav-wrap         { width: calc(100% - 32px); top: 12px; }
}
@media (max-width: 600px) {
  h1 { letter-spacing: -2px; }
  h2 { letter-spacing: -1.2px; }
  .hero-content { padding: 0 24px 44px; }
  .impact-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}
