/* ============================================================
   DPAI — Marketing site
   Design tokens lifted from decks/pitchdeck/styles/deck.css,
   reflowed into a responsive, mobile-first marketing system.
   ============================================================ */

:root {
  /* Brand */
  --blue: #3aa3e3;
  --blue-deep: #1c7fc4;
  --blue-soft: #e8f4fc;
  --blue-softer: #f3f9fd;
  --gold: #f0b429;
  --gold-deep: #d99a14;
  --gold-soft: #fdf3dc;
  --ink: #11293b;
  --ink-soft: #4a6276;
  --ink-faint: #7e93a4;
  --card: #ffffff;
  --line: #dcebf5;

  /* App canvas — the page sits a step below white cards so surfaces lift */
  --bg: #eef4fb;        /* default page background */
  --bg-soft: #f4f8fc;   /* lighter alternate band */
  --bg-deep: #e6eef7;   /* grounded edge for canvas gradients */

  /* Dark surfaces (web-only extension of the deck palette) */
  --navy: #0a1c2b;
  --navy-2: #0f2638;
  --navy-3: #16344a;

  /* Effects */
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -22px rgba(28, 127, 196, 0.22);
  --shadow-lg: 0 40px 90px -40px rgba(10, 28, 43, 0.55);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Type */
  --font: "Jost", "Century Gothic", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Reusable layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.7rem, 1.4vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
}
.kicker.on-dark { color: #9fd4f5; }

.accent { color: var(--blue-deep); }
.accent-gold { color: var(--gold-deep); }

h1, h2, h3 { line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; }

.section-title {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  margin: 14px 0 16px;
}
.section-lede {
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(28, 127, 196, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(28, 127, 196, 0.85); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(217, 154, 20, 0.7);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(10, 28, 43, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  list-style: none;
}
.nav-links a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  transition: width 0.22s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; }

/* The in-list demo button is for the mobile menu only */
.nav-links .btn { display: none; }

/* ---- Products dropdown ---- */
.nav-links .has-dropdown { position: relative; }
.dropdown-toggle svg {
  width: 14px; height: 14px; margin-left: 4px; vertical-align: middle;
  transition: transform 0.2s ease;
}
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown:focus-within .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  list-style: none;
  position: absolute;
  top: 100%; left: 50%;
  min-width: 244px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 6px);
}
/* Right-anchored dropdown (Sign in sits near the nav's right edge) */
.has-dropdown.dd-right .dropdown {
  left: auto; right: 0;
  transform: translate(0, 10px);
}
.has-dropdown.dd-right:hover .dropdown,
.has-dropdown.dd-right:focus-within .dropdown {
  transform: translate(0, 6px);
}
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 12px; border-radius: 10px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
}
.dropdown a:hover { background: var(--blue-softer); color: var(--blue-deep); }
.dropdown a::after { display: none; }
.dropdown .dd-overview {
  font-weight: 600;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
}
.dropdown .dd-arrow {
  display: inline-flex;
  color: var(--blue-deep);
  transition: transform 0.18s ease;
}
.dropdown .dd-arrow svg { width: 14px; height: 14px; }
.dropdown a:hover .dd-arrow { transform: translateX(3px); }
.nav-pill {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; line-height: 1;
}
.nav-pill.live { background: rgba(40, 200, 100, 0.16); color: #1a9b63; }
.nav-pill.beta { background: var(--gold-soft); color: var(--gold-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(58, 163, 227, 0.22), transparent 60%),
    radial-gradient(900px 500px at 8% 110%, rgba(240, 180, 41, 0.14), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 55%, #0c2235 100%);
  color: #eaf3fb;
  overflow: hidden;
  isolation: isolate;
}
.hero::after { /* takeoff photo, very subtle */
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/dpai-intro-takeoff-toward-viewer.png") center 30% / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(56px, 8vw, 104px);
}
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  margin: 18px 0 20px;
  letter-spacing: -0.02em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #6fc1f0 10%, var(--gold) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  color: #b9d2e6;
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust span {
  font-size: 0.82rem;
  color: #91afc6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust b { color: #eaf3fb; font-weight: 600; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---- Hero · Option D — clean Option-A artwork + "delivered in" product footer ---- */
.hero-d::after {
  background-image: url("../../assets/dpai-hero-takeoff-clean.png");
  background-position: center 28%;
  background-size: cover;
}
.console-deliver {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
}
.console-deliver .cd-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-faint); margin-right: 2px;
}
.cd-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
}
.cd-dot { width: 8px; height: 8px; border-radius: 50%; }
.cd-dot.sro { background: var(--blue); }
.cd-dot.sky { background: var(--gold); }
.cd-dot.go { background: #1a9b63; }

/* ---- Hero · Option C — new airspace artwork + three-product console ---- */
.hero-c::after {
  background: url("../../assets/dpai-hero-airspace-network.png") center right / cover no-repeat;
  opacity: 0.5;
  mix-blend-mode: normal;
}
.hero-c {
  background:
    radial-gradient(1100px 600px at 88% -10%, rgba(58, 163, 227, 0.18), transparent 60%),
    linear-gradient(120deg, var(--navy) 0%, rgba(11, 31, 51, 0.75) 46%, rgba(12, 34, 53, 0.35) 100%);
}
.console.trio .trio-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-deep); margin: 4px 0 12px;
}
.console.trio .trio-label .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.6); animation: pulse 1.8s infinite;
}
.trio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.trio-card {
  display: flex; flex-direction: column; gap: 5px;
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 12px;
  background: #fff; box-shadow: var(--shadow);
}
.trio-card .trio-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 3px; }
.trio-card .trio-ico svg { width: 18px; height: 18px; }
.trio-ico.sro { background: var(--blue-softer); color: var(--blue-deep); }
.trio-ico.sky { background: var(--gold-soft); color: var(--gold-deep); }
.trio-ico.go { background: #e6f6ec; color: #1a9b63; }
.trio-card b { font-size: 0.9rem; color: var(--ink); line-height: 1.2; }
.trio-card > span:last-child { font-size: 0.78rem; color: var(--ink-soft); }
.console.trio .ans-foot { margin-top: 16px; }
@media (max-width: 420px) {
  .trio-cards { grid-template-columns: 1fr; }
}

/* ---- Hero · Option B — centered "ask aviation anything" ---- */
.hero-b .herob {
  text-align: center; max-width: 900px; margin-inline: auto;
  padding-top: clamp(60px, 9vw, 120px); padding-bottom: clamp(60px, 9vw, 120px);
}
.hero-b h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem); margin: 16px 0 18px; letter-spacing: -0.02em;
}
.herob-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem); color: #b9d2e6;
  max-width: 60ch; margin: 0 auto 36px;
}
.askbar {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f4f9fd);
  border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 999px;
  box-shadow: var(--shadow-lg); padding: 10px 10px 10px 22px; color: var(--ink);
  max-width: 700px; margin: 0 auto;
}
.askbar-ico { display: grid; place-items: center; color: var(--blue-deep); flex: none; }
.askbar-ico svg { width: 20px; height: 20px; }
.askbar-q {
  flex: 1; min-width: 0; text-align: left; font-weight: 500;
  font-size: clamp(0.92rem, 2vw, 1.08rem); color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.askbar-caret {
  display: inline-block; width: 2px; height: 1.05em; margin-left: 3px; vertical-align: -0.18em;
  background: var(--blue-deep); animation: askCaret 1s steps(1) infinite;
}
@keyframes askCaret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.askbar-go {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(100deg, var(--gold), var(--gold-deep)); color: #2a1c00;
  border: 0; border-radius: 999px; padding: 13px 24px; font: inherit; font-weight: 700;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.askbar-go svg { width: 18px; height: 18px; }
.askbar-go:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(240, 180, 41, 0.7); }
.askbar-suggest {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 620px; margin: 18px auto 0;
}
.askbar-suggest span {
  font-size: 0.85rem; color: #cfe2f1; cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06);
  padding: 7px 14px; border-radius: 999px; transition: background 0.18s ease, color 0.18s ease;
}
.askbar-suggest span:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.herob-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.hero-trust--center { justify-content: center; }

/* ---- Hero "answer console" (the site's original concept) ---- */
.console {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f4f9fd);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  color: var(--ink);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.console:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.console-bar .dots { display: flex; gap: 6px; }
.console-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.console-bar .dots i:nth-child(1) { background: #ff6058; }
.console-bar .dots i:nth-child(2) { background: #ffbd2e; }
.console-bar .dots i:nth-child(3) { background: #28c840; }
.console-bar .tag {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.console-query {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-softer);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
}
.console-query .q-ico {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: grid; place-items: center;
  color: #fff;
}
.console-query .q-ico svg { width: 16px; height: 16px; }
#typed { color: var(--ink); }
.caret {
  display: inline-block;
  width: 2px; height: 1.05em;
  background: var(--blue-deep);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.console-answer {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.console-answer.show { opacity: 1; transform: none; }
.console-answer .ans-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-deep);
  margin-bottom: 10px;
}
.console-answer .ans-label .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(240, 180, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 180, 41, 0); }
}
.ans-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ans-chip {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 7px;
}
.ans-chip .delta { color: #1a9b63; font-weight: 700; }
.ans-chip .delta.down { color: #d1495b; }
.ans-foot {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--ink-soft);
  border-top: 1px dashed var(--line); padding-top: 12px;
}
.ans-foot b { color: var(--ink); }
.ans-foot .src-badge {
  margin-left: auto;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold-deep);
}

/* ============================================================
   SECTION: THE PROBLEM (data marquee → answer)
   ============================================================ */
.section { padding-block: clamp(56px, 9vw, 110px); }
.section.tight { padding-block: clamp(40px, 6vw, 72px); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); }
.section-head .section-lede { margin-inline: auto; }

.problem { background: var(--blue-softer); position: relative; overflow: hidden; }
.problem-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
.data-cloud {
  position: relative;
  height: 290px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, var(--blue-soft));
  border: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.data-cloud .row {
  position: absolute;
  white-space: nowrap;
  font-size: 0.92rem;
  color: var(--ink-faint);
  font-weight: 500;
  will-change: transform;
}
.data-cloud .row span { padding-inline: 14px; }
.data-cloud .row.r1 { top: 8%;  animation: drift 38s linear infinite; }
.data-cloud .row.r2 { top: 26%; animation: drift 30s linear infinite reverse; }
.data-cloud .row.r3 { top: 44%; animation: drift 44s linear infinite; }
.data-cloud .row.r4 { top: 62%; animation: drift 34s linear infinite reverse; }
.data-cloud .row.r5 { top: 80%; animation: drift 40s linear infinite; }
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.problem-arrow {
  display: grid; place-items: center;
  color: var(--blue-deep);
}
.problem-arrow svg { width: clamp(34px, 6vw, 54px); height: auto; }
.problem-arrow .arrow-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-top: 8px; text-align: center;
}
.answer-card {
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.answer-card .ac-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.answer-card h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 10px 0 12px; }
.answer-card p { color: #b9d2e6; font-size: 0.98rem; }
.answer-card .ac-glow {
  position: absolute; inset: auto -30% -50% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,0.5), transparent 70%);
  filter: blur(10px); z-index: 0; pointer-events: none;
}

/* Floating "that's the answer" DPAI logo — pops in after the section is seen */
.answer-card .ac-logo {
  position: absolute; top: -24px; right: -24px; z-index: 4;
  width: clamp(64px, 8vw, 86px); height: clamp(64px, 8vw, 86px);
  border-radius: 50%; background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(11, 31, 51, 0.35);
  opacity: 0; transform: scale(0.3) rotate(-14deg);
  pointer-events: none;
}
.answer-card .ac-logo img { width: 58%; height: auto; display: block; position: relative; z-index: 1; }
.answer-card .ac-logo-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(240, 180, 41, 0.55);
  opacity: 0;
}
.answer-card .ac-logo.pop { animation: acLogoPop 0.7s cubic-bezier(0.18, 0.89, 0.32, 1.4) forwards; }
.answer-card .ac-logo.pop .ac-logo-ring { animation: acRing 1.1s ease-out 0.2s 1; }
.answer-card .ac-logo.floating { opacity: 1; animation: acLogoFloat 4.5s ease-in-out infinite; }
.answer-card .ac-logo.static { opacity: 1; transform: none; }
@keyframes acLogoPop {
  0%   { opacity: 0; transform: scale(0.3) rotate(-14deg); }
  60%  { opacity: 1; transform: scale(1.14) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes acLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes acRing {
  0%   { opacity: 0.8; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.5); }
}
@media (prefers-reduced-motion: reduce) {
  .answer-card .ac-logo { opacity: 1; transform: none; animation: none; }
}

.problem-foot {
  text-align: center;
  margin-top: clamp(28px, 4vw, 44px);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 600;
}
.problem-foot .strike { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--gold); }

/* ============================================================
   SECTION: WHAT WE DO (Curate → Synthesize → Deliver)
   ============================================================ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  counter-reset: step;
}
.flow-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.flow-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(28,127,196,0.4); }
.flow-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 18px; right: 20px;
  font-size: 2.6rem; font-weight: 700;
  color: var(--blue-soft);
  line-height: 1;
}
.flow-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.flow-card.gold .flow-icon { color: var(--gold-deep); background: linear-gradient(135deg, var(--gold-soft), #fff); }
.flow-icon svg { width: 26px; height: 26px; }
.flow-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.flow-card p { color: var(--ink-soft); font-size: 0.97rem; }
.flow-card .flow-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.flow-card .flow-tags span {
  font-size: 0.76rem; font-weight: 600;
  padding: 5px 10px; border-radius: 8px;
  background: var(--blue-softer); color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* ---- Curated data sources strip ---- */
.sources {
  margin-top: clamp(22px, 3.5vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.sources-col p { font-size: 0.92rem; color: var(--ink-soft); margin: 8px 0 14px; }
.sources-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
}
.src-dot { width: 9px; height: 9px; border-radius: 50%; }
.src-dot.blue { background: var(--blue-deep); }
.src-dot.gold { background: var(--gold); }
.sources-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sources-chips span {
  font-size: 0.84rem; font-weight: 600;
  padding: 7px 13px; border-radius: 999px;
  background: var(--blue-softer); color: var(--blue-deep);
  border: 1px solid var(--line);
}
.sources-col.gold .sources-chips span { background: var(--gold-soft); color: var(--gold-deep); border-color: #f0dca5; }
.sources-plus {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--ink-faint);
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px dashed var(--line);
}

/* ============================================================
   SECTION: THREE PRODUCTS
   ============================================================ */
.products { background: linear-gradient(180deg, #fff, var(--blue-softer)); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(165deg, var(--navy-2), var(--navy));
  display: grid; place-items: center;
  overflow: hidden;
}
.prod-shot img {
  width: 86%;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.7);
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-shot img { transform: translateY(-6px) scale(1.02); }
.prod-shot.phone img { width: auto; height: 90%; border-radius: 22px; }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(40, 200, 100, 0.16); color: #59e08e;
  border: 1px solid rgba(40, 200, 100, 0.35);
  backdrop-filter: blur(4px);
}
.prod-badge.beta { background: rgba(240,180,41,0.18); color: var(--gold); border-color: rgba(240,180,41,0.4); }
.prod-mode {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #cfe6f6;
}
.prod-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.45rem; margin-bottom: 6px; }
.prod-body .prod-tagline { font-size: 0.86rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 12px; }
.prod-body .prod-tagline.gold { color: var(--gold-deep); }
.prod-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 16px; }
.prod-proof {
  font-size: 0.84rem; color: var(--ink-soft);
  background: var(--blue-softer); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.prod-proof svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; }
.prod-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  transition: gap 0.2s ease, color 0.2s ease;
}
.prod-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.prod-link:hover { color: var(--blue-deep); gap: 12px; }

.products-foundation {
  margin-top: clamp(26px, 4vw, 40px);
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 26px;
  box-shadow: var(--shadow);
}
.products-foundation b { color: var(--ink); }

/* ============================================================
   SECTION: WHO WE SERVE (personas + the question each asks)
   ============================================================ */
.serve { background: var(--blue-softer); }

/* Horizontal swipe row */
.serve-row { position: relative; }
.serve-grid {
  display: flex;
  gap: clamp(14px, 1.8vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.serve-grid::-webkit-scrollbar { height: 8px; }
.serve-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.serve-grid::-webkit-scrollbar-track { background: transparent; }

.serve-card {
  flex: 0 0 clamp(218px, 23vw, 252px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.serve-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -34px rgba(28,127,196,0.42); border-color: #bcdcf2; }
.serve-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, var(--blue-soft), #fff);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.serve-avatar img { width: 80%; height: 80%; object-fit: contain; }
.serve-num {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.serve-card h3 { font-size: 1.12rem; margin: 4px 0 8px; }
.serve-card p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 16px; }
.serve-q {
  margin-top: auto;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue-deep);
  background: var(--blue-softer);
  border: 1px dashed var(--line);
  border-radius: 11px;
  padding: 10px 12px;
}
.serve-q::before { content: "\201C"; }
.serve-q::after { content: "\201D"; }

/* Edge fades to hint scroll */
.serve-row::before,
.serve-row::after {
  content: "";
  position: absolute;
  top: 0; bottom: 16px;
  width: 48px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.serve-row::before { left: 0; background: linear-gradient(90deg, var(--blue-softer), transparent); }
.serve-row::after { right: 0; background: linear-gradient(270deg, var(--blue-softer), transparent); }
.serve-row.can-prev::before { opacity: 1; }
.serve-row.can-next::after { opacity: 1; }

/* Arrow buttons (desktop) */
.serve-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  color: var(--ink);
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.serve-arrow:hover { background: var(--blue-deep); color: #fff; border-color: var(--blue-deep); }
.serve-arrow svg { width: 20px; height: 20px; }
.serve-arrow.prev { left: -10px; }
.serve-arrow.next { right: -10px; }
.serve-arrow[disabled] { opacity: 0; pointer-events: none; }

.serve-note {
  margin-top: clamp(26px, 4vw, 40px);
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ink);
}
.serve-note .dot { color: var(--gold); margin-inline: 10px; }
.serve-note .muted { color: var(--ink-faint); font-weight: 500; }

/* ============================================================
   SECTION: PROOF IN PRODUCTION
   ============================================================ */
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  margin-bottom: clamp(26px, 4vw, 40px);
}
.proof-metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
}
.proof-metric.gold { border-top-color: var(--gold); }
.proof-metric .n {
  display: block;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.proof-metric.gold .n { color: var(--gold-deep); }
.proof-metric .l { font-size: 0.96rem; color: var(--ink-soft); }
.proof-metric .l b { color: var(--ink); }

.proof-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}
.proof-quote {
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proof-quote .mark {
  font-size: 4rem; line-height: 0.6; color: var(--gold);
  font-family: Georgia, serif; margin-bottom: 8px;
}
.proof-quote p { font-size: clamp(1.15rem, 2.6vw, 1.6rem); font-weight: 500; }
.proof-quote .src { margin-top: 18px; font-size: 0.9rem; color: #9fc3de; }
.proof-momentum-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-momentum-card .pm-lab {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-deep);
}
.proof-chip {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
  padding: 11px 14px;
  background: var(--blue-softer);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.proof-chip svg { width: 17px; height: 17px; color: var(--gold-deep); flex: none; }
.proof-chip.gold { background: var(--gold-soft); border-color: #f0dca5; }

/* ============================================================
   SECTION: PROOF · OPTION B (public-safe — no hard financials)
   ============================================================ */
.proofb-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(24px, 3.5vw, 38px);
}
.proofb-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proofb-step:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(28,127,196,0.4); }
.proofb-step .node {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 12px;
}
.proofb-step .node i {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--blue-soft);
}
.proofb-step.gold .node i { background: var(--gold); border-color: var(--gold-soft); }
.proofb-step .yr { font-size: 1.45rem; font-weight: 700; color: var(--ink); line-height: 1; }
.proofb-step h3 { font-size: 1.04rem; margin-bottom: 6px; }
.proofb-step p { font-size: 0.9rem; color: var(--ink-soft); }
.proofb-step .tag {
  display: inline-block; margin-top: 12px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-deep); background: var(--blue-softer);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px;
}
.proofb-step.gold .tag { color: var(--gold-deep); background: var(--gold-soft); border-color: #f0dca5; }

.proofb-signals {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(26px, 4vw, 42px);
}
.proofb-signal {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; box-shadow: var(--shadow);
}
.proofb-signal svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; }

.proofb-quote {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 52px);
  box-shadow: var(--shadow-lg);
}
.proofb-quote .mark { font-size: 3.4rem; line-height: 0.5; color: var(--gold); font-family: Georgia, serif; }
.proofb-quote p { font-size: clamp(1.2rem, 2.8vw, 1.7rem); font-weight: 500; margin: 14px 0 16px; }
.proofb-quote .src { font-size: 0.9rem; color: #9fc3de; }

/* ============================================================
   SECTION: PROOF · OPTION C (product-by-product, public-safe)
   ============================================================ */
.proofc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.proofc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proofc-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -34px rgba(28,127,196,0.42); }
.proofc-card.gold { border-top-color: var(--gold); }
.proofc-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.proofc-prod { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.proofc-status {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.proofc-status.live { background: rgba(40,200,100,0.16); color: #1a9b63; border: 1px solid rgba(40,200,100,0.3); }
.proofc-status.renewed { background: var(--gold-soft); color: var(--gold-deep); border: 1px solid #f0dca5; }
.proofc-status.new { background: var(--blue-soft); color: var(--blue-deep); border: 1px solid #bcdcf2; }
.proofc-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.proofc-card p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 16px; }
.proofc-tag {
  margin-top: auto;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px dashed var(--line); padding-top: 14px;
}
.proofc-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 14px 24px; box-shadow: var(--shadow);
  max-width: 760px; margin-inline: auto;
}
.proofc-trust .lab {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint);
}
.proofc-trust .roles { display: flex; flex-wrap: wrap; gap: 8px; }
.proofc-trust .role {
  font-size: 0.84rem; font-weight: 600; color: var(--blue-deep);
  background: var(--blue-softer); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px;
}

/* ============================================================
   SECTION: PROOF · OPTION D (built by aviation insiders)
   ============================================================ */
.insider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
  margin-bottom: clamp(22px, 3.5vw, 36px);
}
.insider-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.insider-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -34px rgba(28,127,196,0.42); border-color: #bcdcf2; }
.insider-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.insider-icon svg { width: 25px; height: 25px; }
.insider-card .eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep);
}
.insider-card h3 { font-size: 1.12rem; margin: 5px 0 8px; }
.insider-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* Fun sticker-style logo wall inside each card */
.insider-logos {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.insider-logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 6px 9px; flex: 0 1 auto; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  box-shadow: 0 8px 18px -10px rgba(17,41,59,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.insider-logo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; display: block; }
.insider-logos > *:nth-child(odd) { transform: rotate(-2.5deg); }
.insider-logos > *:nth-child(even) { transform: rotate(2deg); }
.insider-logo:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 0 14px 26px -12px rgba(17,41,59,0.5); }
/* The data-miner sticker shows as a real sticker (no frame) */
.insider-sticker {
  height: 48px; width: auto; flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(17,41,59,0.32));
  transition: transform 0.2s ease;
}
.insider-sticker:hover { transform: rotate(0deg) scale(1.05); }

.insider-band {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 32px);
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: var(--shadow-lg);
}
.insider-band .ib-lab {
  flex: none;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl; transform: rotate(180deg);
  align-self: stretch; display: flex; align-items: center;
  border-right: 1px solid rgba(255,255,255,0.16); padding-right: 18px;
}
.insider-band p { font-size: clamp(1rem, 2.2vw, 1.2rem); color: #cfe2f0; }
.insider-band p b { color: #fff; }

/* ---- Option E · credibility ledger (horizontal lanes) ---- */
.inse-lanes {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: clamp(22px, 3.5vw, 36px);
}
.inse-lane {
  display: grid;
  grid-template-columns: 52px minmax(150px, 0.9fr) 1.5fr auto;
  align-items: center; gap: clamp(14px, 2vw, 28px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(15px, 1.9vw, 22px) clamp(18px, 2.4vw, 28px);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.inse-lane:hover { transform: translateX(4px); border-color: #bcdcf2; box-shadow: 0 30px 60px -34px rgba(28,127,196,0.42); }
.inse-ic {
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--blue-soft); color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
}
.inse-lane.gold .inse-ic { background: var(--gold-soft); color: var(--gold-deep); }
.inse-ic svg { width: 24px; height: 24px; }
.inse-meta .eyebrow {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 3px;
}
.inse-meta h3 { font-size: 1.08rem; margin: 0; }
.inse-desc { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.inse-logos { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.inse-logos > *:nth-child(odd) { transform: rotate(-2.5deg); }
.inse-logos > *:nth-child(even) { transform: rotate(2deg); }

@media (max-width: 860px) {
  .inse-lane { grid-template-columns: 50px 1fr; row-gap: 12px; }
  .inse-desc { grid-column: 1 / -1; }
  .inse-logos { grid-column: 1 / -1; justify-content: flex-start; }
}

/* ---- Option F · lightweight insider strip (no boxes, airy) ---- */
.insf-creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.insf-cred {
  display: flex; align-items: flex-start; gap: 13px;
  padding-left: clamp(18px, 2.4vw, 30px);
  border-left: 1px solid var(--line);
}
.insf-creds > .insf-cred:first-child { border-left: 0; padding-left: 0; }
.insf-ic {
  flex: none; width: 34px; height: 34px;
  display: grid; place-items: center;
  color: var(--gold-deep);
}
.insf-ic svg { width: 22px; height: 22px; }
.insf-tx h3 { font-size: 1rem; margin: 0 0 5px; color: var(--ink); }
.insf-tx p { font-size: 0.86rem; line-height: 1.45; color: var(--ink-soft); margin: 0; }

.insf-proof {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line);
}
.insf-lab {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.insf-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 3.5vw, 44px);
}
.insf-logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px;
}
.insf-logo img {
  height: 100%; width: auto; object-fit: contain; display: block;
  filter: grayscale(1); opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.insf-logo:hover img { filter: grayscale(0); opacity: 1; }

.insf-note {
  max-width: 760px; margin: clamp(22px, 3vw, 32px) auto 0;
  text-align: center; font-size: 0.94rem; line-height: 1.6; color: var(--ink-soft);
}
.insf-note b { color: var(--ink); font-weight: 600; }

@media (max-width: 860px) {
  .insf-creds { grid-template-columns: repeat(2, 1fr); gap: 22px 26px; }
  .insf-creds > .insf-cred:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  .insf-creds { grid-template-columns: 1fr; }
  .insf-cred { border-left: 0; padding-left: 0; }
}

/* ---- Option G · compact two-column insider band (smaller footprint) ---- */
.insg {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.insg-title {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem); line-height: 1.12;
  margin: 12px 0 14px; letter-spacing: -0.01em;
}
.insg-lede { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }
.insg-note {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 0.86rem; line-height: 1.55; color: var(--ink-soft);
}
.insg-note b { color: var(--ink); font-weight: 600; }

.insg-creds {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 22px) clamp(18px, 2.2vw, 28px);
}
.insg-cred { display: flex; align-items: flex-start; gap: 11px; }
.insg-ic { flex: none; width: 30px; height: 30px; display: grid; place-items: center; color: var(--gold-deep); }
.insg-ic svg { width: 20px; height: 20px; }
.insg-tx h3 { font-size: 0.92rem; margin: 0 0 3px; color: var(--ink); }
.insg-tx p { font-size: 0.8rem; line-height: 1.4; color: var(--ink-soft); margin: 0; }

.insg-proof {
  margin-top: clamp(20px, 2.6vw, 28px); padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.insg-lab {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.insg-logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2.6vw, 30px); }
.insg-logos .insf-logo { height: 28px; }

@media (max-width: 860px) {
  .insg { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 460px) {
  .insg-creds { grid-template-columns: 1fr; }
}

/* ---- Option H · two-color split "table" visual ---- */
.inst {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.inst-side { padding: clamp(28px, 4vw, 52px); }

/* Left half — "your side of the table" */
.inst-you {
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.inst-you::after {
  content: ""; position: absolute; top: 0; right: -1px; bottom: 0;
  width: 3px; background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}
.inst-kick {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.inst-title {
  font-size: clamp(1.6rem, 3.3vw, 2.45rem); line-height: 1.1; color: #fff;
  margin: 12px 0 14px; letter-spacing: -0.01em;
}
.inst-you .accent-gold { color: var(--gold); }
.inst-lede { color: #cfe2f0; font-size: 1rem; line-height: 1.55; }
.inst-foot {
  margin-top: clamp(20px, 3vw, 30px); padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.84rem; line-height: 1.55; color: #9fc0d6;
}
.inst-foot b { color: #fff; font-weight: 600; }

/* Right half — the seats we've held */
.inst-seats {
  background: linear-gradient(165deg, #fdf6e6, var(--gold-soft));
  display: flex; flex-direction: column; justify-content: center;
}
.inst-seatlab {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep);
}
.inst-list { list-style: none; margin: clamp(16px, 2vw, 22px) 0 0; padding: 0; }
.inst-list li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 14px 0; border-bottom: 1px solid rgba(17,41,59,0.1);
}
.inst-list li:first-child { padding-top: 0; }
.inst-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.inst-ic {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(217,154,20,0.16); color: var(--gold-deep);
}
.inst-ic svg { width: 20px; height: 20px; }
.inst-tx h3 { font-size: 1rem; margin: 0 0 4px; color: var(--ink); }
.inst-tx p { font-size: 0.84rem; line-height: 1.45; color: var(--ink-soft); margin: 0; }

@media (max-width: 760px) {
  .inst { grid-template-columns: 1fr; }
  .inst-you::after { display: none; }
}

/* ---- Option J · Option H in motion ---- */
@keyframes instFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes instRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.inst-motion {
  animation: instFloat 6.5s ease-in-out infinite;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
  will-change: transform;
}
.inst-motion:hover {
  animation-play-state: paused;
  transform: translateY(-12px) scale(1.012);
  box-shadow: 0 46px 90px -42px rgba(10,28,43,0.55);
}
/* seam comes alive on hover */
.inst-motion .inst-you::after { transition: opacity 0.45s ease, box-shadow 0.45s ease, width 0.45s ease; }
.inst-motion:hover .inst-you::after {
  width: 4px; box-shadow: 0 0 20px 3px rgba(240,180,41,0.55);
}
/* slow sheen drifting across the navy half */
.inst-motion .inst-you { overflow: hidden; }
.inst-motion .inst-you::before {
  content: ""; position: absolute; top: -60%; bottom: -60%; width: 45%; left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-18deg);
  animation: instSheen 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes instSheen {
  0% { left: -60%; }
  55%, 100% { left: 130%; }
}
/* seats rise in (replays each time the tab is opened) + react to hover */
.inst-motion .inst-list li { animation: instRise 0.5s both; transition: transform 0.25s ease; }
.inst-motion .inst-list li:nth-child(1) { animation-delay: 0.08s; }
.inst-motion .inst-list li:nth-child(2) { animation-delay: 0.18s; }
.inst-motion .inst-list li:nth-child(3) { animation-delay: 0.28s; }
.inst-motion .inst-list li:nth-child(4) { animation-delay: 0.38s; }
.inst-motion .inst-ic { transition: transform 0.25s ease; }
.inst-motion .inst-list li:hover { transform: translateX(6px); }
.inst-motion .inst-list li:hover .inst-ic { transform: scale(1.1) rotate(-3deg); }

@media (prefers-reduced-motion: reduce) {
  .inst-motion,
  .inst-motion .inst-list li { animation: none; }
  .inst-motion .inst-you::before { animation: none; display: none; }
  .inst-motion:hover { transform: none; }
}

/* ---- Option I · literal top-down boardroom table ---- */
.tbl {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.tbl-side-lab {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.tbl-side-lab.far { color: var(--ink-faint); margin-bottom: 10px; }
.tbl-side-lab.near { color: var(--gold-deep); margin-top: 14px; }

.tbl-row { display: flex; justify-content: center; gap: clamp(26px, 6vw, 64px); width: 100%; }
.tbl-far { margin-bottom: -11px; position: relative; z-index: 1; }
.tbl-near { margin-top: -11px; position: relative; z-index: 3; align-items: flex-start; }

.tbl-chair {
  width: clamp(48px, 7vw, 64px); height: 30px; border-radius: 10px;
  display: grid; place-items: center;
}
.tbl-chair.dim { background: #cdddea; box-shadow: inset 0 -2px 0 rgba(17,41,59,0.07); }
.tbl-near .tbl-chair {
  background: linear-gradient(165deg, var(--gold), var(--gold-deep));
  color: var(--ink); box-shadow: 0 9px 18px -8px rgba(217,154,20,0.75);
}
.tbl-chair svg { width: 19px; height: 19px; }

.tbl-surface {
  width: 100%; min-height: clamp(120px, 17vw, 168px);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(240,180,41,0.28);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  position: relative; z-index: 2; text-align: center; padding: clamp(20px, 3vw, 30px);
}
.tbl-surface::before {
  content: ""; position: absolute; left: 9%; right: 9%; top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.32), transparent);
}
.tbl-kick {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.tbl-plate { font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: #fff; margin: 0; line-height: 1.12; }
.tbl-surface .accent-gold { color: var(--gold); }

.tbl-seat {
  width: clamp(120px, 16vw, 168px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.tbl-seat h3 { font-size: 0.92rem; margin: 12px 0 4px; color: var(--ink); }
.tbl-seat p { font-size: 0.78rem; line-height: 1.4; color: var(--ink-soft); margin: 0; }

@media (max-width: 680px) {
  .tbl-near { flex-wrap: wrap; gap: 24px 18px; margin-top: 6px; }
  .tbl-far { gap: 26px; }
  .tbl-seat { width: 42%; }
}

/* Option K — slimmer, text-free tabletop */
.tbl-clean .tbl-surface { min-height: clamp(80px, 11vw, 124px); }

/* Option L — fatter tabletop carrying the lede */
.tbl-fat .tbl-surface { min-height: clamp(150px, 22vw, 234px); padding: clamp(26px, 4vw, 44px) clamp(28px, 5vw, 60px); }
.tbl-fat .tbl-surface::before { display: none; }
.tbl-lede {
  max-width: 620px; margin: 0; text-align: center;
  color: #d6e6f2; font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.6;
}

/* ============================================================
   SECTION: CTA BAND
   ============================================================ */
.cta {
  position: relative;
  color: #eaf3fb;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../../assets/dpai-data/dpai-hero-dataglobe.png") center / cover no-repeat;
  opacity: 0.4;
  z-index: -2;
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(10,28,43,0.92), rgba(15,38,56,0.88));
  z-index: -1;
}
.cta .wrap { padding-block: clamp(64px, 10vw, 120px); }
.cta h2 {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  margin: 14px 0 16px;
}
.cta h2 .grad {
  background: linear-gradient(100deg, #6fc1f0, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-sub {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  color: #b9d2e6;
  max-width: 46ch;
  margin: 0 auto 30px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 28px; }
.cta-contacts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-contact {
  font-size: 0.94rem; font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: #eaf3fb;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.cta-contact:hover { background: rgba(255,255,255,0.14); border-color: var(--gold); }
.cta-contact { display: inline-flex; align-items: center; gap: 7px; }
.cta-contact svg { width: 15px; height: 15px; color: var(--gold); }

/* ---- Outro Option B · split layout with demo card ---- */
.cta2 { text-align: left; }
.cta2-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.cta2-copy h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.cta2-copy .cta-sub { margin-inline: 0; }
.cta2-copy .cta-actions { justify-content: flex-start; }
.cta2-copy .cta-contacts { justify-content: flex-start; }
.cta2-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 70px -36px rgba(0,0,0,0.6);
}
.cta2-card-lab {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.cta2-list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cta2-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.02rem; color: #e3eef8; line-height: 1.45;
}
.cta2-list svg {
  flex: none; width: 22px; height: 22px;
  color: #2a1c00; background: var(--gold); border-radius: 50%; padding: 4px;
  margin-top: 1px;
}
.cta2-note {
  font-size: 0.86rem; color: #9fb8cc;
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 16px; margin: 0;
}

@media (max-width: 820px) {
  .cta2-grid { grid-template-columns: 1fr; }
  .cta2 { text-align: center; }
  .cta2-copy .cta-actions, .cta2-copy .cta-contacts { justify-content: center; }
  .cta2-list li { text-align: left; }
}

/* ---- Outro Option C · clean Discovery Hub gateway ---- */
.cta3 .wrap { padding-block: clamp(72px, 11vw, 140px); }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }
.cta3-enter { margin: 28px 0 4px; }
.cta3-hub { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta3-chip {
  font-size: 0.9rem; font-weight: 600; color: #cfe2f0;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.04);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.cta3-chip:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: #fff; }

/* ---- Outro Option E · boarding-pass styled invite ---- */
.cta-pass .wrap { padding-block: clamp(56px, 9vw, 110px); }
.boardpass {
  display: grid; grid-template-columns: 1.4fr auto 0.95fr;
  max-width: 900px; margin: 0 auto; text-align: left;
  background: #fff; color: var(--ink);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.65);
}
.bp-main { padding: clamp(28px, 4vw, 46px); }
.bp-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.bp-logo { height: 26px; }
.bp-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); border-left: 1px solid var(--line); padding-left: 12px;
}
.bp-main h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--ink); margin: 0 0 10px; }
.bp-accent { color: var(--blue-deep); }
.bp-main p { color: var(--ink-soft); font-size: 1.02rem; max-width: 34ch; margin: 0 0 24px; }

.bp-perf { position: relative; width: 0; border-left: 2px dashed var(--line); margin: 20px 0; }
.bp-perf::before, .bp-perf::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink);
}
.bp-perf::before { top: -14px; }
.bp-perf::after { bottom: -14px; }

.bp-stub {
  background: linear-gradient(165deg, var(--ink), #16374f); color: #dce9f4;
  padding: clamp(22px, 3vw, 30px) clamp(20px, 2.6vw, 28px);
  display: flex; flex-direction: column; gap: 11px; justify-content: center;
}
.bp-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.bp-k { color: #8fb0c8; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; font-weight: 700; }
.bp-v { font-weight: 700; color: #fff; font-size: 0.92rem; text-align: right; }
.bp-bars {
  margin-top: 12px; height: 36px; border-radius: 4px; opacity: 0.9;
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 4px, #fff 4px 5px, transparent 5px 9px, #fff 9px 12px, transparent 12px 14px);
}

@media (max-width: 720px) {
  .boardpass { grid-template-columns: 1fr; max-width: 440px; }
  .bp-perf { width: auto; height: 0; border-left: 0; border-top: 2px dashed var(--line); margin: 0 20px; }
  .bp-perf::before { top: 50%; left: -14px; transform: translateY(-50%); }
  .bp-perf::after { top: 50%; left: auto; right: -14px; bottom: auto; transform: translateY(-50%); }
}

/* ---- Outro Option F · light "ask the answer" console ---- */
.cta-ask { color: var(--ink); background: linear-gradient(180deg, #f3f9fd 0%, #e6f2fb 100%); }
.cta-ask::before, .cta-ask::after { display: none; }
.cta-ask h2 { color: var(--ink); }
.cta-ask h2 .grad { background: linear-gradient(100deg, var(--blue-deep), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-ask-sub { font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: var(--ink-soft); max-width: 50ch; margin: 0 auto 6px; }
.ask-bar {
  display: flex; align-items: center; gap: 10px;
  max-width: 680px; margin: 28px auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 8px 8px 20px; box-shadow: var(--shadow);
}
.ask-bar > svg { width: 20px; height: 20px; color: var(--ink-faint); flex: none; }
.ask-input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  font: inherit; font-size: 1rem; color: var(--ink); outline: none; text-overflow: ellipsis;
}
.ask-go { white-space: nowrap; flex: none; }
.ask-suggest {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; align-items: center;
  margin-top: 16px; font-size: 0.88rem; color: var(--ink-soft);
}
.ask-chip {
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  padding: 7px 14px; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.ask-chip:hover { border-color: var(--blue); color: var(--blue-deep); box-shadow: 0 6px 16px -10px rgba(28,127,196,0.5); }

@media (max-width: 560px) {
  .ask-bar { flex-wrap: wrap; border-radius: 20px; padding: 14px; gap: 12px; }
  .ask-bar > svg { display: none; }
  .ask-input { width: 100%; flex-basis: 100%; }
  .ask-go { width: 100%; justify-content: center; }
}

/* ---- Outro Option G · boarding pass v2 (route + gold stub) ---- */
.boardpass2 {
  max-width: 880px; margin: 0 auto; text-align: left;
  background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.65);
}
.bp2-top {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--ink); color: #fff; padding: 13px clamp(20px, 3vw, 30px);
}
.bp2-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.03em; }
.bp2-brand img { height: 20px; filter: brightness(0) invert(1); }
.bp2-flight { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #9fc0d8; font-weight: 700; }
.bp2-body { display: grid; grid-template-columns: 1fr auto 0.82fr; }
.bp2-main { padding: clamp(24px, 3.5vw, 40px); }
.bp2-kick { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.bp2-route { display: flex; align-items: center; gap: clamp(10px, 2vw, 20px); margin: 16px 0 26px; }
.bp2-node { text-align: center; flex: none; }
.bp2-code { font-size: clamp(1.6rem, 4.5vw, 2.4rem); font-weight: 800; color: var(--ink); line-height: 1; }
.bp2-place { font-size: 0.74rem; color: var(--ink-soft); margin-top: 6px; max-width: 12ch; margin-inline: auto; }
.bp2-path { flex: 1; position: relative; height: 26px; display: flex; align-items: center; justify-content: center; color: var(--blue-deep); }
.bp2-path::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 2px dashed var(--line); }
.bp2-path svg { position: relative; width: 26px; height: 26px; background: #fff; padding: 0 4px; transform: rotate(90deg); }

.bp2-perf { position: relative; width: 0; border-left: 2px dashed rgba(17,41,59,0.16); margin: 18px 0; }
.bp2-stub {
  background: linear-gradient(165deg, var(--gold), var(--gold-deep)); color: #2a1c00;
  padding: clamp(22px, 3vw, 30px) clamp(18px, 2.4vw, 26px);
  display: flex; flex-direction: column; gap: 11px; justify-content: center;
}
.bp2-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.bp2-k { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #7a5c00; }
.bp2-v { font-size: 0.9rem; font-weight: 800; color: #2a1c00; text-align: right; }
.bp2-bars {
  margin-top: 12px; height: 34px; border-radius: 4px;
  background: repeating-linear-gradient(90deg, #2a1c00 0 2px, transparent 2px 4px, #2a1c00 4px 5px, transparent 5px 9px, #2a1c00 9px 12px, transparent 12px 14px);
}

@media (max-width: 720px) {
  .boardpass2 { max-width: 440px; }
  .bp2-body { grid-template-columns: 1fr; }
  .bp2-perf { width: auto; height: 0; border-left: 0; border-top: 2px dashed rgba(17,41,59,0.16); margin: 0 24px; }
}

/* ---- Outro Option H · floating boarding pass (interactive 3D) ---- */
.bp3-scene { perspective: 1100px; }
.bp3-float { animation: bp3-float 6s ease-in-out infinite; will-change: transform; }
@keyframes bp3-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.boardpass.bp3 {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.25s ease;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7);
}
.bp3-scene:hover .boardpass.bp3 { box-shadow: 0 60px 110px -38px rgba(0,0,0,0.78); }
.bp3-glare {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.4), rgba(255,255,255,0) 46%);
  opacity: 0; transition: opacity 0.3s ease; mix-blend-mode: screen;
}
.bp3-scene:hover .bp3-glare { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .bp3-float { animation: none; }
  .boardpass.bp3 { transform: none !important; }
}

/* ============================================================
   LAB CONCEPT · DATA BUCKETS (for "What We Do")
   ============================================================ */
/* Option A — fusion diagram */
.fuse {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch;
  gap: clamp(14px, 2.4vw, 30px); margin-bottom: clamp(16px, 2.6vw, 26px);
}
.fuse-bucket {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--blue);
  border-radius: var(--radius); padding: clamp(20px, 2.6vw, 28px); box-shadow: var(--shadow);
}
.fuse-bucket.gold { border-top-color: var(--gold); }
.fuse-head { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.fuse-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.fuse-bucket.gold .fuse-dot { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.fuse-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 8px 0 16px; }
.fuse-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.fuse-list li { font-size: 0.82rem; font-weight: 600; color: var(--blue-deep); background: var(--blue-softer); border: 1px solid var(--blue-soft); padding: 7px 12px; border-radius: 999px; }
.fuse-bucket.gold .fuse-list li { color: var(--gold-deep); background: var(--gold-soft); border-color: #f6e4b8; }
.fuse-merge { display: flex; align-items: center; justify-content: center; position: relative; min-width: 64px; }
.fuse-plus {
  width: 54px; height: 54px; border-radius: 50%; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: #fff;
  background: linear-gradient(165deg, var(--ink), var(--navy-3)); box-shadow: var(--shadow-lg);
}
.fuse-ring { position: absolute; width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--blue); animation: fuse-pulse 2.4s ease-out infinite; }
@keyframes fuse-pulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(2.2); opacity: 0; } }
.fuse-out {
  display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
  background: linear-gradient(100deg, var(--blue-deep), var(--gold-deep)); color: #fff;
  font-weight: 800; font-size: clamp(1rem, 2.4vw, 1.25rem);
  padding: clamp(16px, 2.4vw, 22px); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.fuse-out svg { width: 24px; height: 24px; flex: none; }
@media (max-width: 760px) {
  .fuse { grid-template-columns: 1fr; }
  .fuse-merge { min-height: 60px; }
}

/* Option B — streams into a core */
.stream { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(14px, 3vw, 40px); }
.stream-side { display: flex; flex-direction: column; gap: 10px; }
.stream-side.right { align-items: flex-end; text-align: right; }
.stream-cap { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.stream-cap.blue { color: var(--blue-deep); }
.stream-cap.gold { color: var(--gold-deep); }
.stream-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: 0.9rem; color: var(--ink); box-shadow: var(--shadow);
}
.stream-chip.blue { border-left: 3px solid var(--blue); }
.stream-chip.gold { border-right: 3px solid var(--gold); }
.stream-core {
  width: clamp(120px, 16vw, 168px); aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px;
  color: #fff; background: radial-gradient(circle at 30% 25%, var(--blue), var(--ink)); box-shadow: var(--shadow-lg); padding: 16px;
}
.stream-core b { font-size: 1.05rem; }
.stream-core span { font-size: 0.72rem; color: #bcd6e8; }
@media (max-width: 760px) {
  .stream { grid-template-columns: 1fr; }
  .stream-side.right { align-items: flex-start; text-align: left; }
  .stream-core { margin: 8px auto; }
}

/* Option C — overlap / Venn */
.venn { position: relative; display: flex; justify-content: center; align-items: center; padding: 16px 0; }
.venn-circle {
  width: clamp(190px, 30vw, 300px); aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; opacity: 0.92;
}
.venn-circle.blue { background: radial-gradient(circle at 35% 35%, var(--blue), var(--blue-deep)); }
.venn-circle.gold {
  background: radial-gradient(circle at 65% 35%, var(--gold), var(--gold-deep)); color: #2a1c00;
  margin-left: clamp(-90px, -9vw, -70px); mix-blend-mode: multiply;
}
.venn-circle span { font-size: clamp(1.05rem, 2.4vw, 1.45rem); }
.venn-circle.blue span { transform: translateX(-24%); }
.venn-circle.gold span { transform: translateX(24%); }
.venn-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 18px; text-align: center; box-shadow: var(--shadow-lg);
}
.venn-core b { display: block; color: var(--ink); font-size: 1rem; }
.venn-core span { font-size: 0.72rem; color: var(--ink-soft); }
.venn-legend { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 20px); max-width: 760px; margin: clamp(18px, 3vw, 28px) auto 0; }
.vl { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; font-size: 0.86rem; color: var(--ink-soft); box-shadow: var(--shadow); }
.vl.blue { border-top: 3px solid var(--blue); }
.vl.gold { border-top: 3px solid var(--gold); }
.vl-h { display: block; font-weight: 800; color: var(--ink); margin-bottom: 6px; font-size: 0.95rem; }
@media (max-width: 620px) { .venn-legend { grid-template-columns: 1fr; } }

/* Option D — fusion funnel */
.fuse2-buckets { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2.4vw, 30px); }
.fuse2-link { position: relative; height: 60px; }
.fuse2-link svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.fuse2-link path { fill: none; stroke: var(--line); stroke-width: 2; stroke-dasharray: 6 6; }
.fuse2-node {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(165deg, var(--ink), var(--navy-3)); box-shadow: var(--shadow-lg);
}
.fuse2-out {
  display: flex; align-items: center; justify-content: center; gap: 14px; text-align: left;
  max-width: 560px; margin: 6px auto 0;
  background: linear-gradient(100deg, var(--blue-deep), var(--gold-deep)); color: #fff;
  border-radius: var(--radius); padding: clamp(16px, 2.4vw, 22px) clamp(20px, 3vw, 30px); box-shadow: var(--shadow-lg);
}
.fuse2-out svg { width: 28px; height: 28px; flex: none; }
.fuse2-out b { display: block; font-size: clamp(1rem, 2.2vw, 1.18rem); }
.fuse2-out span { font-size: 0.82rem; opacity: 0.85; }
@media (max-width: 640px) {
  .fuse2-buckets { grid-template-columns: 1fr; }
  .fuse2-link { height: 44px; }
}

/* Bare fusion (Option A without the output bar) for the live What We Do section */
.fuse--bare { margin-top: clamp(28px, 4vw, 44px); margin-bottom: 0; }

/* Option E — unified panel (hybrid of A + original sources strip) */
.dbh { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.dbh-cols { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: clamp(16px, 3vw, 40px); padding: clamp(22px, 3vw, 32px); }
.dbh-label { display: flex; align-items: center; gap: 9px; font-weight: 800; color: var(--ink); }
.dbh-col p { color: var(--ink-soft); font-size: 0.9rem; margin: 8px 0 14px; }
.dbh-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.dbh-chips span { font-size: 0.82rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; }
.dbh-col.blue .dbh-chips span { color: var(--blue-deep); background: var(--blue-softer); border: 1px solid var(--blue-soft); }
.dbh-col.gold .dbh-chips span { color: var(--gold-deep); background: var(--gold-soft); border: 1px solid #f6e4b8; }
.dbh-merge { align-self: center; }
.dbh-plus {
  position: relative; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: #fff;
  background: linear-gradient(165deg, var(--ink), var(--navy-3)); box-shadow: var(--shadow);
}
.dbh-plus::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--blue-soft); }
.dbh-out {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-top: 1px solid var(--line); background: linear-gradient(100deg, var(--blue-softer), var(--gold-soft));
  padding: clamp(14px, 2vw, 18px); font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--ink); text-align: center;
}
.dbh-out b { color: var(--blue-deep); }
.dbh-out svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }
@media (max-width: 720px) {
  .dbh-cols { grid-template-columns: 1fr; }
  .dbh-merge { justify-self: center; }
}

/* ============================================================
   LAB CONCEPT · DATA STORY (standalone section)
   ============================================================ */
/* Option A — foundation hero band */
.datahero {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, var(--ink), #16374f); color: #fff;
  border-radius: var(--radius); padding: clamp(34px, 5vw, 64px); box-shadow: var(--shadow-lg);
}
.datahero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../../assets/dpai-data/dpai-hero-dataglobe.png") center / cover no-repeat; opacity: 0.16;
}
.datahero > * { position: relative; z-index: 1; }
.datahero h2 { color: #fff; font-size: clamp(1.8rem, 4.4vw, 2.8rem); margin: 10px 0 12px; }
.datahero h2 .grad { background: linear-gradient(100deg, #6fc1f0, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.datahero p { color: #bcd6e8; max-width: 60ch; margin: 0 auto; }
.datastat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 20px); margin-top: clamp(26px, 4vw, 40px); }
.datastat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: clamp(18px, 2.4vw, 26px); text-align: left; }
.datastat .n { display: block; font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1; }
.datastat .n .u { color: var(--gold); font-size: 0.6em; }
.datastat .l { display: block; font-size: 0.85rem; color: #bcd6e8; margin-top: 8px; }
@media (max-width: 780px) { .datastat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .datastat-grid { grid-template-columns: 1fr; } }

/* Option B — layered foundation (strata) */
.strata { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.strata-layer {
  border-radius: 14px; padding: clamp(15px, 2.2vw, 22px) clamp(20px, 3vw, 30px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: #fff; box-shadow: var(--shadow); transition: transform 0.2s ease;
}
.strata-layer:hover { transform: translateY(-2px); }
.strata-layer .lyr-t { font-weight: 800; font-size: clamp(1rem, 2.2vw, 1.2rem); }
.strata-layer .lyr-d { font-size: 0.85rem; opacity: 0.9; text-align: right; }
.strata-layer.l1 { width: 60%; background: linear-gradient(100deg, var(--gold), var(--gold-deep)); color: #2a1c00; }
.strata-layer.l2 { width: 74%; background: var(--blue-deep); }
.strata-layer.l3 { width: 88%; background: #2c5f86; }
.strata-layer.l4 { width: 100%; background: linear-gradient(165deg, var(--ink), var(--navy-3)); }
@media (max-width: 620px) {
  .strata-layer { width: 100% !important; flex-direction: column; align-items: flex-start; gap: 4px; }
  .strata-layer .lyr-d { text-align: left; }
}

/* Data Story · Option C — coverage timeline + stat ribbon */
.dtl { margin-top: clamp(8px, 2vw, 16px); }
.dtl-track {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 26px); padding-top: 38px;
}
.dtl-track::before {
  content: ""; position: absolute; top: 15px; left: 7%; right: 7%; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.dtl-node { position: relative; text-align: center; }
.dtl-node::before {
  content: ""; position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-shadow: var(--shadow);
}
.dtl-node.gold::before { border-color: var(--gold); }
.dtl-year { display: block; font-weight: 800; font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--ink); }
.dtl-cap { display: block; color: var(--ink-soft); font-size: 0.88rem; margin-top: 5px; max-width: 22ch; margin-inline: auto; }
.dtl-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(28px, 4vw, 46px);
}
.dtl-stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(16px, 2vw, 22px); text-align: center;
}
.dtl-stat .n { display: block; font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--blue-deep); }
.dtl-stat .l { display: block; color: var(--ink-soft); font-size: 0.85rem; margin-top: 6px; }
@media (max-width: 760px) {
  .dtl-track { grid-template-columns: 1fr; padding-top: 0; gap: 0; }
  .dtl-track::before { display: none; }
  .dtl-node { text-align: left; padding: 14px 0 14px 26px; border-left: 3px solid var(--blue-soft); }
  .dtl-node.gold { border-left-color: var(--gold-soft); }
  .dtl-node::before { top: 16px; left: -9px; transform: none; }
  .dtl-cap { max-width: none; margin-inline: 0; }
  .dtl-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LAB CONCEPT · ECOSYSTEM ("Where you'd use each product")
   Inspired by device flat-lay product family shots.
   ============================================================ */

/* shared product accent tokens */
.eco-tag.sro, .ecm-prod.sro .ecm-dot, .day-tag.sro { --pc: var(--blue); }
.eco-tag.sky, .ecm-prod.sky .ecm-dot, .day-tag.sky { --pc: var(--gold); }
.eco-tag.go,  .ecm-prod.go  .ecm-dot, .day-tag.go  { --pc: #1a9b63; }

/* ---------- Option A — device flat-lay (the "wow") ---------- */
.eco {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #1a3b56 0%, var(--ink) 55%, #081521 100%);
  color: #fff; border-radius: var(--radius);
  padding: clamp(30px, 5vw, 60px); box-shadow: var(--shadow-lg);
}
.eco::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(2px 2px at 12% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 82% 22%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 46% 14%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 68% 60%, rgba(255,255,255,0.3), transparent);
  opacity: 0.7;
}
.eco > * { position: relative; z-index: 1; }
.eco-head { text-align: center; margin-bottom: clamp(30px, 5vw, 52px); }
.eco-head .kicker { justify-content: center; }
.eco-head h2 { color: #fff; font-size: clamp(1.8rem, 4.4vw, 2.8rem); margin: 12px 0 12px; }
.eco-head h2 .grad { background: linear-gradient(100deg, #6fc1f0, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eco-head p { color: #bcd6e8; max-width: 60ch; margin: 0 auto; }

.eco-stage { display: grid; grid-template-columns: 1fr 1.25fr 0.75fr; align-items: end; gap: clamp(16px, 3vw, 36px); }
.eco-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.eco-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: 999px; color: #fff;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
}
.eco-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pc); box-shadow: 0 0 10px var(--pc); }
.eco-cap { font-size: 0.86rem; color: #bcd6e8; text-align: center; max-width: 26ch; }
.eco-cap b { color: #fff; }

/* device frames */
.eco-device { width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45)); }
.eco-screen {
  position: relative; background: #0b1722; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
}
.eco-device.laptop .eco-screen { border-radius: 10px 10px 0 0; aspect-ratio: 16 / 10; border-bottom: 0; }
.eco-device.laptop .eco-base {
  height: 12px; border-radius: 0 0 12px 12px; margin: 0 -8%;
  background: linear-gradient(180deg, #c3ccd6, #97a3b0);
  position: relative;
}
.eco-device.laptop .eco-base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22%; height: 4px; border-radius: 0 0 6px 6px; background: rgba(0,0,0,0.18);
}
.eco-device.monitor .eco-screen { border-radius: 12px; aspect-ratio: 16 / 10; border-width: 8px; border-color: #11202e; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.eco-device.monitor .eco-stand { width: 12px; height: 26px; margin: 0 auto; background: linear-gradient(180deg, #9aa6b2, #6f7c89); }
.eco-device.monitor .eco-foot { width: 46%; height: 8px; margin: 0 auto; border-radius: 6px; background: linear-gradient(180deg, #c3ccd6, #8a96a3); }
.eco-device.phone .eco-screen { border-radius: 26px; aspect-ratio: 9 / 17; border-width: 7px; border-color: #0d1925; }
.eco-device.phone .eco-screen::before {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 10px; border-radius: 999px; background: #0d1925; z-index: 3;
}

/* faux UI inside screens */
.ux { position: absolute; inset: 0; display: flex; flex-direction: column; }
.ux-top { display: flex; align-items: center; gap: 7px; padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.ux-dots { display: inline-flex; gap: 4px; }
.ux-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.ux-ttl { font-size: 0.62rem; font-weight: 700; color: #cfe0ee; letter-spacing: 0.04em; }
.ux-body { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 9px; min-height: 0; }
.ux-kpis { display: flex; gap: 6px; }
.ux-kpis span { flex: 1; font-size: 0.58rem; font-weight: 700; text-align: center; padding: 6px 2px; border-radius: 6px; background: rgba(58,163,227,0.16); color: #9fd4f5; }
.ux-kpis span.down { background: rgba(240,180,41,0.16); color: var(--gold); }
.ux-chart { flex: 1; display: flex; align-items: flex-end; gap: 6px; padding-top: 4px; }
.ux-chart i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #6fc1f0, var(--blue-deep)); min-height: 8px; }
.ux-chart i:nth-child(even) { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); }

.ux-map { position: relative; flex: 1; margin: 8px; border-radius: 8px; background: radial-gradient(80% 80% at 30% 20%, #143049, #0a1822); overflow: hidden; }
.ux-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ux-map .arc { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 4 4; opacity: 0.9; }
.ux-map .city { fill: #fff; }
.ux-list { position: absolute; left: 8px; bottom: 8px; right: 8px; display: flex; flex-direction: column; gap: 4px; }
.ux-list span { height: 8px; border-radius: 3px; background: rgba(255,255,255,0.16); }
.ux-list span:first-child { width: 80%; background: rgba(58,163,227,0.5); }
.ux-list span:nth-child(2) { width: 62%; }
.ux-list span:nth-child(3) { width: 70%; }

.go-screen .ux-body { padding: 14px 10px; gap: 10px; }
.ux-alert { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 0.55rem; font-weight: 700; padding: 4px 8px; border-radius: 999px; background: rgba(26,155,99,0.2); color: #6fe0a6; }
.ux-alert::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #6fe0a6; }
.ux-cardline { height: 9px; border-radius: 4px; background: rgba(255,255,255,0.14); }
.ux-cardline.lg { width: 90%; height: 12px; background: rgba(255,255,255,0.24); }
.ux-cardline.md { width: 65%; }
.ux-cardline.sm { width: 45%; }
.ux-tile { margin-top: auto; border-radius: 8px; padding: 8px; background: linear-gradient(135deg, rgba(58,163,227,0.18), rgba(240,180,41,0.12)); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 6px; }

@media (max-width: 820px) {
  .eco-stage { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .eco-item { gap: 12px; }
}

/* ---------- Option D — hybrid: a day, told through devices ---------- */
.eco-stage--day {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.eco-stage--day::before {
  content: ""; position: absolute; top: 15px; left: 16.66%; right: 16.66%; height: 2px;
  background: linear-gradient(90deg, #1a9b63, var(--blue), var(--gold));
  border-radius: 2px; opacity: 0.55;
}
.eco-item--day {
  display: grid; grid-template-rows: auto 1fr auto auto; gap: 16px;
  justify-items: center; align-items: center;
}
.eco-item--day .eco-device { align-self: end; }
.eco-item--day .eco-device.phone { max-width: 138px; }
.eco-item--day .eco-device.laptop { max-width: 300px; }
.eco-item--day .eco-device.monitor { max-width: 340px; }
.eco-when {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: #eaf3fb;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(10, 28, 43, 0.8); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.eco-when::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pc, var(--blue)); box-shadow: 0 0 10px var(--pc, var(--blue)); }
.eco-when i { font-style: normal; color: #9fc0d8; font-weight: 600; }
.eco-when.sro { --pc: var(--blue); }
.eco-when.sky { --pc: var(--gold); }
.eco-when.go  { --pc: #1a9b63; }
@media (max-width: 820px) {
  .eco-stage--day { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .eco-stage--day::before { display: none; }
  .eco-item--day { grid-template-rows: none; gap: 12px; }
  .eco-item--day .eco-device { align-self: center; }
}

/* ---------- Option E — moment cards with real product mockups (B + real art) ---------- */
.dayp { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.dayp-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dayp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dayp-media {
  position: relative; height: 240px; padding: 20px 20px 0;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.dayp-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(10,28,43,0.06)); pointer-events: none; }
.dayp-media img { max-height: 100%; width: auto; object-fit: contain; object-position: bottom; border-radius: 8px 8px 0 0; filter: drop-shadow(0 16px 28px rgba(10,28,43,0.26)); }
.dayp-media.go  { background: linear-gradient(160deg, #e9f7ef, #cfead9); align-items: flex-start; padding: 22px 16px 0; }
.dayp-media.sro { background: linear-gradient(160deg, var(--blue-softer), #d7e9f7); }
.dayp-media.sky { background: linear-gradient(160deg, #eef5fb, #dbe8f3); }
/* framed phone mockups: size by width so the device reads large; bottom bleeds into the card */
.dayp-media.go img { max-height: none; width: min(74%, 200px); border-radius: 0; }
.dayp-body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: clamp(18px, 2.2vw, 24px); }
.dayp-time { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.dayp-body h3 { font-size: 1.12rem; color: var(--ink); }
.dayp-body p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.dayp-body .day-tag { margin-top: auto; }
@media (max-width: 900px) { .dayp { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dayp { grid-template-columns: 1fr; } }

/* 4-up variant (Option F — bookended by SkyGo) */
.dayp.dayp-4 { grid-template-columns: repeat(4, 1fr); }
.dayp.dayp-4 .dayp-media { height: 210px; }
@media (max-width: 1040px) { .dayp.dayp-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dayp.dayp-4 { grid-template-columns: 1fr; } }

/* ---------- Option B — "a day in the decision" moments ---------- */
.day { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 20px); }
.day-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(18px, 2.4vw, 24px);
  display: flex; flex-direction: column; gap: 12px; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.day-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.day-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--pc, var(--blue)); }
.day-time { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.day-where { display: flex; align-items: center; gap: 10px; }
.day-ic { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--blue-softer); color: var(--blue-deep); }
.day-ic svg { width: 20px; height: 20px; }
.day-where h3 { font-size: 1.05rem; color: var(--ink); }
.day-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.day-tag {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  color: #fff; background: var(--pc, var(--blue));
}
.day-tag svg { width: 13px; height: 13px; }
@media (max-width: 900px) { .day { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .day { grid-template-columns: 1fr; } }

/* ---------- Option C — surface matrix ("one answer, every surface") ---------- */
.ecm { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.ecm-col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
}
.ecm-prod { display: flex; align-items: center; gap: 10px; padding: clamp(16px, 2vw, 20px); border-bottom: 1px solid var(--line); }
.ecm-prod .ecm-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--pc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--pc) 18%, transparent); }
.ecm-prod b { font-size: 1.05rem; color: var(--ink); }
.ecm-prod span { font-size: 0.78rem; color: var(--ink-faint); margin-left: auto; }
.ecm-rows { display: flex; flex-direction: column; }
.ecm-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px clamp(16px, 2vw, 20px); border-bottom: 1px solid var(--blue-softer); }
.ecm-row:last-child { border-bottom: 0; }
.ecm-surf { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--blue-softer); color: var(--blue-deep); }
.ecm-surf svg { width: 18px; height: 18px; }
.ecm-txt b { display: block; font-size: 0.92rem; color: var(--ink); }
.ecm-txt span { display: block; font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 880px) { .ecm { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER (multi-page sitemap)
   ============================================================ */
.footer {
  background: var(--navy);
  color: #b9d2e6;
  padding-block: clamp(48px, 7vw, 72px);
}
.footer .brand { color: #fff; }
.footer .brand img { filter: brightness(0) invert(1); height: 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p { margin: 14px 0 8px; color: #9fb8cc; font-size: 0.95rem; max-width: 34ch; }
.footer-loc { font-size: 0.82rem; color: #7e9bb2; }
.footer-social { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: #cfe0ee; background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.footer-social a:hover {
  color: #fff; background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold); transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-globe {
  position: relative; flex: none; width: 54px; height: 54px;
  margin-left: 4px; border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 50% 38%, rgba(58, 163, 227, 0.18), rgba(8, 23, 38, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 16px rgba(58, 163, 227, 0.22), 0 0 0 1px rgba(240, 180, 41, 0.08);
}
.footer-globe canvas { display: block; width: 100% !important; height: 100% !important; }
.footer-globe-static::after {
  content: ""; position: absolute; top: 38%; left: 46%; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px 2px rgba(240, 180, 41, 0.6);
}

/* Mini floating holiday postcard (teaser → holiday calendar) */
.footer-card { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 9px; margin-top: 22px; text-decoration: none; }
.footer-card-frame {
  position: relative; width: 112px; padding: 5px;
  border: 4px solid transparent; border-radius: 11px;
  background:
    linear-gradient(#f7fbff, #edf6fb) padding-box,
    repeating-linear-gradient(45deg, #de4f5e 0 7px, #fff 7px 12px, #337fc6 12px 19px, #fff 19px 24px) border-box;
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
  animation: footerCardFloat 7s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-card:hover .footer-card-frame {
  transform: rotate(-1deg) translateY(-4px) scale(1.03);
  box-shadow: 0 24px 42px -22px rgba(0, 0, 0, 0.85);
  animation-play-state: paused;
}
.footer-card-frame img { display: block; width: 100%; height: 64px; object-fit: cover; border-radius: 6px; }
.footer-card-stamp { position: absolute; top: -11px; right: -11px; width: 34px; height: 34px; transform: rotate(12deg); pointer-events: none; }
.footer-card-stamp svg { width: 100%; height: 100%; filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.35)); }
.footer-card-veil {
  position: absolute; left: 5px; right: 5px; bottom: 5px;
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; text-align: center;
  color: #fff; padding: 3px 0; border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, rgba(8, 21, 46, 0), rgba(8, 21, 46, 0.82));
}
.footer-card-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: #cfe0ee; transition: color 0.18s ease; }
.footer-card-label svg { width: 13px; height: 13px; color: var(--gold); transition: transform 0.18s ease; }
.footer-card:hover .footer-card-label { color: #fff; }
.footer-card:hover .footer-card-label svg { transform: translateX(3px); }
@keyframes footerCardFloat { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-5px); } }
@media (prefers-reduced-motion: reduce) { .footer-card-frame { animation: none; } }
.footer-col h4 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #7e9bb2; margin-bottom: 14px;
}
.footer-col a {
  display: block; color: #cfe0ee; font-size: 0.94rem; padding: 6px 0;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: #fff; }
.footer-base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding-top: 22px;
}
.footer-base small { color: #7e9bb2; font-size: 0.84rem; }
.footer-base-left {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
}
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer-legal a {
  color: #9fb6c9; font-size: 0.84rem; transition: color 0.18s ease;
}
.footer-legal a:hover { color: #cfe0ee; }
.footer-legal a[aria-current="page"] { color: var(--gold); }
.footer-contacts { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-contacts a {
  font-size: 0.84rem; color: #cfe0ee; padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.footer-contacts a:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.12); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .console { transform: none; max-width: 520px; margin-inline: auto; }
  .console:hover { transform: none; }
  .flow-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .prod-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .proofc-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .insider-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-feature { grid-template-columns: 1fr; }
  .proofb-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px var(--gutter) 20px;
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a { display: block; width: 100%; padding: 13px 0; border-bottom: 1px solid var(--blue-softer); }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .nav-links .btn { display: flex; margin-top: 12px; width: 100%; border-bottom: 0; }

  /* Dropdown becomes an inline, always-open list inside the mobile menu */
  .nav.open .dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; padding: 0 0 6px 14px;
    border: 0; box-shadow: none; background: transparent;
  }
  .nav.open .dropdown a { padding: 11px 0; }
  .dropdown-toggle svg { display: none; }

  .problem-stage { grid-template-columns: 1fr; }
  .problem-arrow { transform: rotate(90deg); margin-block: 6px; }
  .data-cloud { height: 220px; }
  .sources { grid-template-columns: 1fr; text-align: left; }
  .sources-plus { justify-self: center; }
  .proof-metrics { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .serve-arrow { display: none; }
}

@media (max-width: 560px) {
  .proofb-timeline { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; margin-bottom: clamp(24px,5vw,38px); }
  .insider-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .insider-band { flex-direction: column; align-items: flex-start; gap: 12px; }
  .insider-band .ib-lab { writing-mode: horizontal-tb; transform: none; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); padding: 0 0 12px; width: 100%; }
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PRODUCT PAGE TEMPLATE
   (hero badge/logo, statement band, feature rows, use case,
    "your way" banner, cross-sell — used by /products/*.html)
   ============================================================ */

/* ---- Product hero additions ---- */
.phero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  color: #cfe6f6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px; padding: 7px 14px;
}
.phero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #59e08e;
  box-shadow: 0 0 0 0 rgba(89, 224, 142, 0.6); animation: pulse 1.8s infinite;
}
.phero-logo { height: clamp(40px, 7vw, 58px); width: auto; margin: 20px 0 6px; }

/* ---- Hero logo lockup (SVG mark + wordmark) ---- */
.phero-lock {
  display: flex; align-items: center; gap: 18px;
  width: max-content; max-width: 100%;
  margin: 20px 0 10px; text-decoration: none;
}
.phero-mark {
  width: clamp(80px, 11vw, 108px); height: clamp(80px, 11vw, 108px);
  display: grid; place-items: center; flex: none;
}
.phero-mark svg { width: 100%; height: 100%; display: block; }
.phero-wordmark { display: flex; flex-direction: column; line-height: 1; }
.phero-wordmark b {
  font-size: clamp(1.8rem, 3.6vw, 2.45rem); font-weight: 700; color: #fff;
  letter-spacing: -0.015em;
}
.phero-wordmark span {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem); font-weight: 600; color: #8fb4d0;
  letter-spacing: 0.26em; text-transform: uppercase; margin-top: 8px;
}

/* ---- Hero · custom network background (SkyRoute) ---- */
.hero-network {
  background:
    linear-gradient(90deg, rgba(7, 20, 33, 0.94) 0%, rgba(7, 20, 33, 0.78) 42%, rgba(7, 20, 33, 0.42) 100%),
    url("../../assets/SRO/skyroute-hero-bg.png") center / cover no-repeat;
}
.hero-network::after { display: none; }

.phero-shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.phero-shot:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.phero-shot img { width: 100%; display: block; }

/* ---- Statement / outcome band ---- */
.statement {
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.statement .lab {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.statement h2 { font-size: clamp(1.5rem, 3.8vw, 2.5rem); margin: 12px 0 14px; }
.statement p { color: #b9d2e6; font-size: clamp(1rem, 2.1vw, 1.18rem); max-width: 60ch; margin-inline: auto; }

/* ---- Feature rows (zig-zag) ---- */
.feature-rows { display: flex; flex-direction: column; gap: clamp(44px, 7vw, 92px); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-lg);
  padding: clamp(14px, 2vw, 26px);
}
.feature-media img { width: 100%; display: block; border-radius: 10px; }
.feature-text h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 10px 0 12px; }
.feature-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 18px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; color: var(--ink); }
.feature-list svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; margin-top: 2px; }

/* ---- Use case card ---- */
.usecase { background: var(--blue-softer); position: relative; overflow: hidden; }

/* Flying airline stickers (JetBlue / Spirit) */
.fly-layer { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.fly-sticker {
  position: absolute; left: 0;
  width: clamp(54px, 7vw, 86px); height: auto;
  will-change: transform;
  filter: drop-shadow(0 10px 18px rgba(10, 28, 43, 0.28));
}
.fly-sticker.jetblue { top: 6%;  animation: fly-right 15s linear infinite; }
.fly-sticker.spirit  { top: 84%; animation: fly-left 19s linear infinite; animation-delay: -7s; }

@keyframes fly-right {
  0%   { transform: translateX(-24vw) translateY(0) rotate(-6deg); }
  50%  { transform: translateX(48vw) translateY(-26px) rotate(-2deg); }
  100% { transform: translateX(122vw) translateY(0) rotate(-6deg); }
}
@keyframes fly-left {
  0%   { transform: translateX(122vw) translateY(0) rotate(6deg) scaleX(-1); }
  50%  { transform: translateX(48vw) translateY(24px) rotate(2deg) scaleX(-1); }
  100% { transform: translateX(-24vw) translateY(0) rotate(6deg) scaleX(-1); }
}
@media (prefers-reduced-motion: reduce) {
  .fly-layer { display: none; }
}
.usecase-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.usecase-body h3 { font-size: clamp(1.3rem, 2.8vw, 1.9rem); margin-bottom: 12px; }
.usecase-body p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 20px; }
.usecase-output {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 16px;
}
.usecase-output .lab {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 4px;
}
.usecase-output b { font-size: 1.08rem; color: var(--ink); }
.usecase-score {
  text-align: center;
  background: linear-gradient(165deg, var(--ink), var(--navy-3));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 38px);
  box-shadow: var(--shadow-lg);
}
.usecase-score b {
  display: block; font-size: clamp(3rem, 8vw, 4.6rem); line-height: 1; color: var(--gold); font-weight: 700;
}
.usecase-score span { display: block; font-size: 0.86rem; color: #b9d2e6; margin: 8px 0 16px; }
.usecase-pills { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.usecase-pills em {
  font-style: normal; font-size: 0.78rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); color: #eaf3fb;
}

/* ---- Use-case explorer (list + detail panel) ---- */
.uc-explorer { display: grid; grid-template-columns: 300px 1fr; gap: clamp(18px, 2.4vw, 30px); align-items: start; }
.uc-list { display: flex; flex-direction: column; gap: 8px; }
.uc-tab {
  text-align: left; cursor: pointer; width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.uc-tab:hover { border-color: #bcd4e8; transform: translateX(2px); }
.uc-tab .uc-n {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; color: var(--blue-deep); background: var(--blue-soft);
}
.uc-tab .uc-n svg { width: 17px; height: 17px; }
.uc-tab-txt { display: flex; flex-direction: column; min-width: 0; }
.uc-tab b { font-size: 1rem; line-height: 1.25; color: var(--ink); }
.uc-tab .uc-tab-sub { font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }
.uc-tab.active { border-color: var(--gold); background: linear-gradient(180deg, var(--gold-soft), #fff); box-shadow: var(--shadow); }
.uc-tab.active .uc-n { background: var(--gold); color: #2a1c00; }

.uc-stage { position: relative; }
.uc-panel {
  background: linear-gradient(165deg, var(--ink), var(--navy-3)); color: #eaf3fb;
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-lg);
}
.uc-panel[hidden] { display: none; }
.uc-panel .uc-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.uc-panel .uc-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.uc-ask { font-size: clamp(1.3rem, 2.6vw, 1.85rem); font-weight: 700; line-height: 1.2; margin: 12px 0 22px; max-width: 26ch; }
.uc-ask .grad { background: linear-gradient(90deg, #ffd27a, #ffb347); -webkit-background-clip: text; background-clip: text; color: transparent; }
.uc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.uc-step { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 16px; }
.uc-step .s { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #8fb3cf; }
.uc-step h4 { margin: 6px 0 8px; font-size: 0.98rem; color: #fff; }
.uc-step ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.uc-step li { font-size: 0.84rem; color: #c6dcee; padding-left: 16px; position: relative; }
.uc-step li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: #4f7da3; }
.uc-step.out { background: rgba(240,180,41,0.12); border-color: rgba(240,180,41,0.35); }
.uc-step.out .s { color: #ffd27a; }
.uc-step.out li::before { background: var(--gold); }
.uc-panel .uc-result { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #eaf3fb; }
.uc-panel .uc-result svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }
@media (max-width: 860px) {
  .uc-explorer { grid-template-columns: 1fr; }
  .uc-list { flex-direction: row; flex-wrap: wrap; }
  .uc-tab { flex: 1 1 220px; }
}
@media (max-width: 720px) { .uc-steps { grid-template-columns: 1fr; } }
/* Let the JetBlue / Spirit stickers fly across the explorer section */
.uc-fly { position: relative; overflow: hidden; }
.uc-fly .wrap { position: relative; z-index: 1; }

/* ---- AI automation — Ace & Juliet agents ---- */
.ai-auto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 34px);
}
.ai-agent {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(170deg, #fff, var(--blue-softer));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ai-agent::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.ai-agent:hover { transform: translateY(-5px); box-shadow: 0 36px 70px -38px rgba(28, 127, 196, 0.45); }
.ai-agent-head { display: flex; align-items: center; gap: 16px; }
.ai-agent-photo {
  position: relative;
  flex: none;
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy-2), var(--navy));
  border: 2px solid #fff;
  box-shadow: 0 14px 30px -14px rgba(10, 28, 43, 0.55);
}
.ai-agent-photo img {
  width: 122%; height: 122%;
  object-fit: cover; object-position: 50% 12%;
}
.ai-agent-online {
  position: absolute; right: 5px; bottom: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #2fbf71; border: 2.5px solid #fff;
  box-shadow: 0 0 0 2px rgba(47, 191, 113, 0.25);
}
.ai-agent-id h3 {
  display: flex; align-items: center; gap: 9px;
  font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 4px;
}
.ai-agent-status {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #1f9d57; background: rgba(47, 191, 113, 0.12);
  padding: 3px 8px; border-radius: 999px;
}
.ai-agent-role {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-deep);
}
.ai-agent > p { color: var(--ink-soft); font-size: 1.02rem; }
.ai-agent-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ai-agent-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.97rem; color: var(--ink); }
.ai-agent-list svg { width: 19px; height: 19px; color: var(--gold-deep); flex: none; margin-top: 2px; }

.ai-auto-flow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 12px;
  margin-top: clamp(28px, 4vw, 44px);
}
.ai-flow-step {
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; box-shadow: var(--shadow);
}
.ai-flow-step.ace { border-color: #bfe0f5; color: var(--blue-deep); }
.ai-flow-step.juliet { border-color: #bfe0f5; color: var(--blue-deep); }
.ai-flow-step.out { border-color: var(--gold); color: var(--gold-deep); }
.ai-flow-arrow { color: var(--ink-faint); font-weight: 700; }

/* ---- AI automation — single-agent auto-setup (Ace) ---- */
.aiv-auto-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.aiv-auto-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 12px 0 14px; }
.aiv-auto-copy .sub { color: var(--ink-soft); font-size: clamp(1rem, 2.1vw, 1.18rem); margin-bottom: 22px; }
.aiv-agents-stack { display: flex; flex-direction: column; gap: 12px; }
.aiv-agent-row { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow); }
.aiv-agent-row img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: 50% 10%; flex: none; background: linear-gradient(165deg, var(--navy-2), var(--navy)); border: 2px solid #fff; box-shadow: 0 8px 18px -10px rgba(10,28,43,0.6); }
.aiv-agent-row.solo img { width: 60px; height: 60px; }
.aiv-agent-row b { font-size: 1.04rem; }
.aiv-agent-row span { display: block; font-size: 0.82rem; color: var(--ink-soft); }
.aiv-agent-row em { font-style: normal; margin-left: auto; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #1f9d57; background: rgba(47,191,113,0.12); padding: 4px 9px; border-radius: 999px; }
.aiv-pick { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; box-shadow: var(--shadow); }
.aiv-pick svg { width: 15px; height: 15px; color: var(--gold-deep); flex: none; }

.aiv-setup { position: relative; background: linear-gradient(165deg, var(--ink), var(--navy-3)); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-lg); }
.aiv-setup-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.aiv-setup-agent { display: flex; align-items: center; gap: 11px; }
.aiv-setup-agent img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: 50% 10%; border: 1.5px solid rgba(255,255,255,0.4); flex: none; }
.aiv-setup-agent b { display: block; font-size: 0.9rem; }
.aiv-setup-agent small { display: block; font-size: 0.72rem; color: #9fc3de; }
.aiv-typing { display: inline-flex; gap: 4px; padding: 4px 2px; }
.aiv-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: 0.5; animation: aiv-blink 1.2s infinite both; }
.aiv-typing i:nth-child(2) { animation-delay: 0.2s; }
.aiv-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes aiv-blink { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.aiv-progress { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.12); overflow: hidden; }
.aiv-progress i { display: block; height: 100%; width: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--gold)); transform-origin: left; transform: scaleX(0); animation: aiv-fill 6s ease-in-out infinite; }
.aiv-task-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.aiv-task { display: flex; align-items: center; gap: 13px; font-size: 0.97rem; color: #cfe0ee; opacity: 0.4; animation: aiv-reveal 6s ease-in-out infinite; }
.aiv-task .chk { position: relative; width: 24px; height: 24px; border-radius: 50%; flex: none; border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); display: grid; place-items: center; }
.aiv-task .chk::before { content: ""; position: absolute; inset: -2px; border-radius: 50%; background: var(--gold); opacity: 0; transform: scale(0.4); animation: aiv-pop 6s ease-in-out infinite; }
.aiv-task .chk i { position: relative; z-index: 1; display: grid; place-items: center; opacity: 0; transform: scale(0.4); animation: aiv-tick 6s ease-in-out infinite; }
.aiv-task .chk i svg { width: 13px; height: 13px; color: #06202f; opacity: 1; transform: none; }
.aiv-task:nth-child(1), .aiv-task:nth-child(1) .chk::before, .aiv-task:nth-child(1) .chk i { animation-delay: 0.3s; }
.aiv-task:nth-child(2), .aiv-task:nth-child(2) .chk::before, .aiv-task:nth-child(2) .chk i { animation-delay: 1.2s; }
.aiv-task:nth-child(3), .aiv-task:nth-child(3) .chk::before, .aiv-task:nth-child(3) .chk i { animation-delay: 2.1s; }
.aiv-task:nth-child(4), .aiv-task:nth-child(4) .chk::before, .aiv-task:nth-child(4) .chk i { animation-delay: 3.0s; }
.aiv-task:nth-child(5), .aiv-task:nth-child(5) .chk::before, .aiv-task:nth-child(5) .chk i { animation-delay: 3.9s; }
.aiv-setup-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #d7e7f4; }
.aiv-setup-foot b { color: var(--gold); }
@keyframes aiv-fill { 0% { transform: scaleX(0); } 80%, 100% { transform: scaleX(1); } }
@keyframes aiv-reveal { 0%, 6% { opacity: 0.4; } 14%, 100% { opacity: 1; } }
@keyframes aiv-pop { 0%, 6% { opacity: 0; transform: scale(0.4); } 16%, 100% { opacity: 1; transform: scale(1); } }
@keyframes aiv-tick { 0%, 8% { opacity: 0; transform: scale(0.2); } 18%, 100% { opacity: 1; transform: scale(1); } }

/* ---- "Your way" banner ---- */
.yourway {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
}
.yourway img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.yourway .section-title { margin-top: 12px; }
.yourway .section-lede { max-width: none; }

/* ---- Made to fit — output-depth funnel ---- */
.mf-funnel-copy { max-width: 880px; margin: 0 auto clamp(28px, 4vw, 40px); text-align: center; }
.mf-funnel-copy .section-title { margin: 10px 0 12px; }
.mf-funnel-copy .section-lede { margin-inline: auto; }
.mf-funnel-stage { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(20px, 3vw, 40px); align-items: center; }
.mf-funnel-bands { position: relative; width: 100%; max-width: 540px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mf-funnel-bands::before {
  content: ""; position: absolute; left: 50%; top: 6px; bottom: 40px; width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, #3aa3e3, #f0b429, #2f9e6e); opacity: 0.35; z-index: 0;
}
.mf-band {
  position: relative; z-index: 1; min-height: 92px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  text-align: center; padding: 14px 56px; color: var(--ink); outline: none;
  filter: drop-shadow(0 16px 22px rgba(8, 41, 67, 0.16));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.mf-band.score  { width: 100%; clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%); background: linear-gradient(135deg, #1f8fd6 0%, #46aeea 55%, #6bc2f1 100%); }
.mf-band.demand { width: 80%;  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%); background: linear-gradient(135deg, #f3a712 0%, #ffc233 55%, #ffd55e 100%); }
.mf-band.profit { width: 62%;  clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%); background: linear-gradient(135deg, #1f9468 0%, #2fae7c 55%, #54c699 100%); }
.mf-band:hover, .mf-band:focus { transform: translateY(-2px) scale(1.018); filter: drop-shadow(0 24px 32px rgba(8, 41, 67, 0.30)); }
.mf-band .lyr { font-size: 0.64rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.mf-band.score .lyr,
.mf-band.profit .lyr { color: rgba(255, 255, 255, 0.92); }
.mf-band.demand .lyr { color: #8a5300; }
.mf-band b { font-size: 1.1rem; line-height: 1.12; font-weight: 800; }
.mf-band.score b,
.mf-band.profit b { color: #fff; text-shadow: 0 1px 3px rgba(5, 26, 41, 0.28); }
.mf-band.demand b { color: #3a2700; }
.mf-band .out { font-size: 0.73rem; font-weight: 700; color: #15324a; background: #fff; border-radius: 999px; padding: 4px 12px; box-shadow: 0 4px 10px -4px rgba(8, 41, 67, 0.4); }
.mf-neck { position: relative; z-index: 1; width: 46%; min-width: 240px; text-align: center; padding: 12px 14px; border-radius: 14px; background: var(--navy); color: #fff; box-shadow: 0 18px 36px -20px rgba(8, 41, 67, 0.6); margin-top: 2px; }
.mf-neck span { display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.mf-neck b { display: block; font-size: 0.98rem; color: #fff; margin-top: 3px; }

.mf-detail-panel { position: relative; min-height: 248px; border-radius: var(--radius); background: var(--blue-softer); border: 1px solid var(--line); padding: 26px; }
.mf-detail { position: absolute; inset: 26px; opacity: 0; transform: translateY(10px); transition: opacity 0.18s ease, transform 0.18s ease; }
.mf-detail.def { opacity: 1; transform: none; }
.mf-detail span { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.mf-detail h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.mf-detail p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 10px; }
.mf-detail b { color: #1f8a5b; font-size: 0.95rem; }
.mf-funnel-bands:has(.score:hover) ~ .mf-detail-panel .def,
.mf-funnel-bands:has(.score:focus) ~ .mf-detail-panel .def,
.mf-funnel-bands:has(.demand:hover) ~ .mf-detail-panel .def,
.mf-funnel-bands:has(.demand:focus) ~ .mf-detail-panel .def,
.mf-funnel-bands:has(.profit:hover) ~ .mf-detail-panel .def,
.mf-funnel-bands:has(.profit:focus) ~ .mf-detail-panel .def { opacity: 0; transform: translateY(-8px); }
.mf-funnel-bands:has(.score:hover) ~ .mf-detail-panel .d-score,
.mf-funnel-bands:has(.score:focus) ~ .mf-detail-panel .d-score,
.mf-funnel-bands:has(.demand:hover) ~ .mf-detail-panel .d-demand,
.mf-funnel-bands:has(.demand:focus) ~ .mf-detail-panel .d-demand,
.mf-funnel-bands:has(.profit:hover) ~ .mf-detail-panel .d-profit,
.mf-funnel-bands:has(.profit:focus) ~ .mf-detail-panel .d-profit { opacity: 1; transform: none; }

/* ---- Cross-sell ---- */
.crosssell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 24px); }
.crosssell-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.crosssell-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.crosssell-card .cs-body h4 { font-size: 1.18rem; margin-bottom: 4px; display: flex; align-items: center; gap: 9px; }
.crosssell-card .cs-body p { font-size: 0.92rem; color: var(--ink-soft); }
.crosssell-card .cs-arrow { margin-left: auto; color: var(--blue-deep); flex: none; }
.crosssell-card .cs-arrow svg { width: 22px; height: 22px; transition: transform 0.2s ease; }
.crosssell-card:hover .cs-arrow svg { transform: translateX(4px); }

/* ---- Product page responsive ---- */
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 22px; }
  .feature-row.reverse .feature-media { order: 0; }
  .usecase-card { grid-template-columns: 1fr; }
  .yourway { grid-template-columns: 1fr; }
  .mf-funnel-stage { grid-template-columns: 1fr; }
  .ai-auto-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .aiv-auto-grid { grid-template-columns: 1fr; }
  .aiv-auto-copy { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .aiv-progress i { animation: none; transform: scaleX(1); }
  .aiv-task { animation: none; opacity: 1; }
  .aiv-task .chk::before, .aiv-task .chk i { animation: none; opacity: 1; transform: scale(1); }
  .aiv-typing i { animation: none; }
}
@media (max-width: 960px) {
  .phero-shot { transform: none; }
  .phero-shot:hover { transform: none; }
}
@media (max-width: 560px) {
  .crosssell-grid { grid-template-columns: 1fr; }
}

/* ════════════════ Outcome — race to the answer ════════════════ */
.osb-race {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--navy), var(--ink));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 62px); text-align: center; box-shadow: var(--shadow-lg);
}
.osb-speedlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.5;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
  animation: osb-speedlines 0.9s linear infinite;
}
.osb-race > *:not(.osb-speedlines) { position: relative; z-index: 1; }
.osb-race .kicker { justify-content: center; color: var(--gold); }
.osb-race h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); margin: 12px auto 14px; max-width: 22ch; }
.osb-race .sub { color: #b9d2e6; font-size: clamp(1rem, 2.1vw, 1.18rem); max-width: 60ch; margin: 0 auto clamp(34px, 5vw, 50px); }

.osb-track { position: relative; max-width: 760px; margin: 0 auto; }
.osb-track-labels { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.osb-track-labels .start { color: #9fc3de; }
.osb-track-labels .end { color: var(--gold); }
.osb-track-line {
  position: relative; height: 4px; border-radius: 99px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 9px, transparent 9px 18px);
}
.osb-track-stop {
  position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy-2); border: 2px solid rgba(255,255,255,0.4);
}
.osb-track-stop.finish { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(240,180,41,0.18); }
.osb-runner {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  animation: osb-race 6s cubic-bezier(0.55, 0, 0.4, 1) infinite;
}
.osb-trail {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 130px; height: 7px; border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(58,163,227,0.5), var(--gold));
}
.osb-plane-img { position: relative; z-index: 1; width: 56px; height: auto; display: block; filter: drop-shadow(0 7px 11px rgba(0,0,0,0.5)); }
.osb-track-marks { position: relative; margin-top: 16px; height: 18px; }
.osb-track-marks span {
  position: absolute; transform: translateX(-50%);
  font-size: 0.76rem; font-weight: 600; color: #9fc3de; white-space: nowrap;
}
.osb-track-marks span.gold { color: var(--gold); }

.osb-race-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(34px, 5vw, 48px); }
.osb-race-chip {
  font-size: 0.92rem; color: #d7e7f4;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 10px 18px;
}
.osb-race-chip b { color: #fff; font-weight: 700; }

@keyframes osb-race {
  0%   { left: 0%; opacity: 0; }
  6%   { opacity: 1; }
  70%  { left: 100%; opacity: 1; }
  80%  { left: 100%; opacity: 1; }
  90%  { left: 100%; opacity: 0; }
  100% { left: 0%; opacity: 0; }
}
@keyframes osb-speedlines {
  from { background-position: 0 0; }
  to   { background-position: -26px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .osb-speedlines { animation: none; }
  .osb-runner { animation: none; left: 100%; }
}

/* ============================================================
   LAB CONCEPT · WHO WE SERVE (sector imagery)
   ============================================================ */
.ws-q { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.86rem; color: var(--ink); }
.ws-q svg { width: 15px; height: 15px; color: var(--blue-deep); flex: none; }

/* Option A — sector gallery (photo-banner cards) */
.ws-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.ws-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ws-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ws-shot { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.ws-shot img { width: 100%; height: 100%; object-fit: cover; }
.ws-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,28,43,0.4)); }
.ws-num {
  position: absolute; top: 12px; left: 12px; z-index: 1; font-weight: 800; font-size: 0.78rem; color: #fff;
  background: rgba(10,28,43,0.5); border: 1px solid rgba(255,255,255,0.3); padding: 3px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ws-body { position: relative; flex: 1; padding: clamp(16px, 2vw, 22px); display: flex; flex-direction: column; gap: 8px; }
.ws-ava {
  position: absolute; top: -26px; right: 18px; width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  border: 3px solid #fff; box-shadow: var(--shadow); background: var(--blue-softer);
}
.ws-ava img { width: 100%; height: 100%; object-fit: cover; }
.ws-body h3 { font-size: 1.15rem; color: var(--ink); }
.ws-body p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.ws-body .ws-q { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--blue-softer); }
@media (max-width: 900px) { .ws-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ws-gallery { grid-template-columns: 1fr; } }

/* Option B — editorial tiles (full-bleed photo + overlay) */
.ws-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 20px); }
.ws-tile { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ws-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.ws-tile:hover > img { transform: scale(1.06); }
.ws-tile-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,28,43,0.05) 28%, rgba(10,28,43,0.55) 64%, rgba(8,21,33,0.92)); }
.ws-tile-tx { position: absolute; inset: auto 0 0 0; padding: clamp(16px, 2vw, 22px); color: #fff; display: flex; flex-direction: column; gap: 9px; }
.ws-tile-top { display: flex; align-items: center; gap: 10px; }
.ws-tile-ava { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.6); flex: none; }
.ws-tile-ava img { width: 100%; height: 100%; object-fit: cover; }
.ws-tile-role { font-weight: 800; font-size: 1.15rem; }
.ws-tile-desc { font-size: 0.85rem; color: #cfe0ee; line-height: 1.45; margin: 0; }
.ws-tile-q { font-size: 0.92rem; color: #eaf3fb; padding-left: 12px; border-left: 2px solid var(--gold); }
@media (max-width: 900px) { .ws-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ws-tiles { grid-template-columns: 1fr; } }

/* Option E — editorial tiles WITH detail subtext (taller gradient for legibility) */
.ws-tiles-detail .ws-tile { aspect-ratio: 3 / 4.15; }
.ws-tiles-detail .ws-tile-grad { background: linear-gradient(180deg, rgba(10,28,43,0.04) 16%, rgba(10,28,43,0.62) 50%, rgba(8,21,33,0.95)); }
.ws-tiles-detail .ws-tile-tx { gap: 7px; }

/* Option C — spotlight list (thumbnail + Q&A row) */
.ws-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 20px); }
.ws-row {
  display: flex; gap: 16px; padding: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ws-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ws-row-shot { width: 108px; flex: none; border-radius: 14px; overflow: hidden; position: relative; }
.ws-row-shot img { width: 100%; height: 100%; object-fit: cover; }
.ws-row-tx { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ws-row-head { display: flex; align-items: center; gap: 10px; }
.ws-row-ava { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; border: 2px solid #fff; box-shadow: var(--shadow); flex: none; }
.ws-row-ava img { width: 100%; height: 100%; object-fit: cover; }
.ws-row-head h3 { font-size: 1.02rem; color: var(--ink); }
.ws-row-num { margin-left: auto; font-weight: 800; color: var(--ink-faint); font-size: 0.78rem; }
.ws-row-tx p { font-size: 0.84rem; color: var(--ink-soft); margin: 0; }
.ws-row .ws-q { font-size: 0.84rem; margin-top: 2px; }
@media (max-width: 760px) { .ws-list { grid-template-columns: 1fr; } }

/* Option D — compact carousel / fan (reuses editorial tiles) */
.ws-carousel { position: relative; }
.ws-fan {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 2px 14px; scroll-behavior: smooth; scrollbar-width: thin;
}
.ws-fan::-webkit-scrollbar { height: 8px; }
.ws-fan::-webkit-scrollbar-track { background: transparent; }
.ws-fan::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.ws-fan .ws-tile { flex: 0 0 clamp(210px, 23vw, 252px); aspect-ratio: 3 / 4; scroll-snap-align: start; }
.ws-fan .ws-tile-role { font-size: 1.05rem; }
.ws-fan .ws-tile-q { font-size: 0.86rem; }
.ws-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  color: var(--ink); cursor: pointer; transition: transform 0.15s ease, background 0.15s ease;
}
.ws-arrow svg { width: 20px; height: 20px; }
.ws-arrow:hover { background: var(--blue-softer); transform: translateY(-50%) scale(1.07); }
.ws-prev { left: -10px; }
.ws-next { right: -10px; }
@media (max-width: 640px) { .ws-arrow { display: none; } }

/* Option G — interactive card stack (tap to flip, spread to fan out) */
.ws-stack-wrap { display: flex; flex-direction: column; align-items: center; }
.ws-stack { position: relative; width: 100%; height: clamp(380px, 46vw, 470px); perspective: 1400px; }
.ws-scard {
  position: absolute; top: 0; left: 50%;
  width: clamp(230px, 28vw, 300px); aspect-ratio: 3 / 4;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  cursor: pointer; transform-origin: center bottom;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease, opacity 0.4s ease;
  will-change: transform;
}
.ws-scard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ws-stack .ws-tile-grad { background: linear-gradient(180deg, rgba(10,28,43,0.04) 16%, rgba(10,28,43,0.62) 50%, rgba(8,21,33,0.95)); }
.ws-stack-ctrl { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.ws-stack-toggle {
  background: var(--ink); color: #fff; border: none; border-radius: 999px;
  padding: 11px 22px; font: inherit; font-weight: 600; font-size: 0.92rem; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.ws-stack-toggle:hover { transform: translateY(-2px); background: var(--blue-deep, #1f6fb2); }
.ws-stack-hint { font-size: 0.84rem; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) { .ws-scard { transition: none; } }

/* Option H — always-fanned hand; hover/tap pops a card forward */
.ws-fanned { position: relative; width: 100%; height: clamp(360px, 44vw, 460px); margin-top: 6px; }
.ws-fcard {
  position: absolute; top: 0; left: 50%;
  width: clamp(180px, 19vw, 224px); aspect-ratio: 3 / 4.1;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  cursor: pointer; transform-origin: center bottom;
  text-decoration: none; color: inherit;
  transform: translate(calc(-50% + var(--tx, 0px)), var(--ty, 0px)) rotate(var(--rot, 0deg)) scale(var(--sc, 1));
  z-index: var(--z, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
  will-change: transform;
}
.ws-fcard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ws-fanned .ws-tile-grad { background: linear-gradient(180deg, rgba(10,28,43,0.04) 14%, rgba(10,28,43,0.6) 48%, rgba(8,21,33,0.95)); }
.ws-fanned .ws-tile-tx { padding: 14px; gap: 6px; }
.ws-fanned .ws-tile-role { font-size: 1rem; }
.ws-fanned .ws-tile-desc { font-size: 0.78rem; }
.ws-fanned .ws-tile-q { font-size: 0.8rem; }
.ws-fcard:hover, .ws-fcard.is-up, .ws-fcard:focus-visible {
  transform: translate(calc(-50% + var(--tx, 0px)), calc(var(--ty, 0px) - 30px)) rotate(0deg) scale(1.08);
  z-index: 500;
  box-shadow: 0 30px 60px rgba(8,21,33,0.42);
  outline: none;
}
@media (max-width: 680px) { .ws-fanned { height: 420px; } .ws-fcard { width: clamp(150px, 40vw, 200px); } }
