/* Verilian — site styles */
:root {
  --bg: #FAFAF7;
  --bg-0: #FFFFFF;
  --bg-1: #F2F2EE;
  --bg-2: #ECECE6;
  --line: rgba(10,12,16,0.10);
  --line-strong: rgba(10,12,16,0.18);
  --fg: #0A0B0E;
  --fg-dim: #54596A;
  --fg-mute: #8A8F9C;
  --accent: #1E82B4;
  --accent-2: #3F4F75;
  --accent-warm: #B86E3D;
  --good: #2E8B57;
  --ink-1: #0A0B0E;
  --ink-2: #54596A;
  --ink-3: #8A8F9C;
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.display { font-family: "Space Grotesk", "Inter", sans-serif; letter-spacing: -0.02em; line-height: 1.02; font-weight: 500; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-feature-settings: "ss01","ss02"; }
.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ────────── NAV ────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(to bottom, rgba(250,250,247,0.85), rgba(250,250,247,0.55));
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  overflow: hidden;
}
/* logo-nav.png is a 2000×2000 canvas with transparent padding around the
   wordmark. Scale the image so the visible wordmark renders at ~48px,
   then clip the surrounding transparency via .brand overflow:hidden. */
.brand img {
  height: 360px;
  width: auto;
  margin-block: -156px;
  display: block;
}
.brand-word {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 15px;
}
.nav-links {
  display: flex; gap: 28px; margin-left: 36px;
  font-size: 13.5px; color: var(--fg-dim);
}
.nav-links a:hover { color: var(--fg); }

/* ── Mega menu ── */
.nav-item-mega { position: static; }
.nav-mega-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-mega-trigger .caret { font-size: 10px; opacity: 0.6; transition: transform 0.2s; }
.nav-item-mega:hover .nav-mega-trigger { color: var(--fg); }
.nav-item-mega:hover .nav-mega-trigger .caret { transform: rotate(180deg); }

.mega-menu {
  position: fixed;
  left: 0; right: 0;
  top: 56px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
/* invisible hover bridge so the menu doesn't close on the gap */
.nav-item-mega { position: relative; padding-bottom: 24px; margin-bottom: -24px; }
.nav-item-mega::after {
  content: "";
  position: absolute;
  left: -20px; right: -20px;
  top: 100%;
  height: 32px;
  background: transparent;
  pointer-events: auto;
}
.nav-mega-trigger { position: relative; z-index: 2; }
.mega-menu { transition: opacity 0.22s ease 0.05s, transform 0.22s ease 0.05s; }
.nav-item-mega:hover .mega-menu,
.mega-menu:hover {
  transition-delay: 0s;
}
.mega-menu {
  background: linear-gradient(to bottom, rgba(250,250,247,0.96), rgba(255,255,255,0.96));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  z-index: 49;
}
.nav-item-mega:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 28px 18px;
}
.mega-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  margin-bottom: 14px;
  align-items: end;
}
.mega-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.mega-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-weight: 400;
  max-width: 600px;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mega-card {
  position: relative;
  display: block;
  background: var(--bg);
  padding: 16px 16px 16px;
  color: var(--fg-dim);
  transition: background 0.18s ease, color 0.18s ease;
  min-height: 0;
}
.mega-card:hover { background: var(--bg-1); color: var(--fg); }
.mega-card-id { display: none; }
.mega-card-icon {
  width: 20px; height: 20px;
  color: var(--fg);
  margin-bottom: 10px;
  opacity: 0.85;
}
.mega-card-icon svg { width: 100%; height: 100%; }
.mega-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 4px;
}
.mega-card-sub {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--fg-mute);
}
.mega-card-arr {
  position: absolute;
  top: 14px; right: 14px;
  color: var(--fg-mute);
  font-size: 11px;
  transition: transform 0.18s ease, color 0.18s ease;
}
.mega-card:hover .mega-card-arr { color: var(--fg); transform: translate(2px, -2px); }
.mega-foot {
  margin-top: 14px;
  display: flex; justify-content: flex-end;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
}
.mega-foot a { color: var(--fg); border-bottom: 1px solid rgba(10,12,16,0.3); padding-bottom: 1px; }
.mega-foot a:hover { border-color: var(--fg); }
@media (max-width: 1100px) {
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-head { grid-template-columns: 1fr; gap: 8px; }
}
.nav-spacer { flex: 1; }
.nav-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--fg-dim);
  display: flex; align-items: center; gap: 8px;
  padding-right: 8px;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 oklch(0.78 0.15 150 / 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.78 0.15 150 / 0.6); }
  100% { box-shadow: 0 0 0 8px oklch(0.78 0.15 150 / 0); }
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  border: 1px solid var(--line-strong);
  background: rgba(10,12,16,0.02);
  color: var(--fg);
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn:hover { background: rgba(10,12,16,0.06); border-color: rgba(10,12,16,0.25); }
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  font-weight: 600;
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn .arr { display: inline-block; transition: transform 0.18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ────────── HERO ────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(10,12,16,0.05), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}
.hero-copy { z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: rgba(10,12,16,0.02);
}
.hero-eyebrow .ee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 28px;
  overflow: visible;
  padding-right: 0.05em;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  padding-right: 0.04em;
}
.hero h1 .strike {
  position: relative; color: var(--fg-mute); display: inline-block;
}
.hero h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 2px; background: var(--accent);
  transform: rotate(-2deg);
}
.hero p.lede {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Listening strip */
.listening-strip {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.ls-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ls-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fg);
  box-shadow: 0 0 0 0 rgba(10,12,16,0.4);
  animation: pulse 1.8s infinite;
}
.ls-icons {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 22px;
  row-gap: 18px;
}
.ls-icon {
  width: 22px; height: 22px;
  color: var(--fg-dim);
  opacity: 0.55;
  display: inline-flex;
  animation: lsBlink 5s ease-in-out infinite;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
}
.ls-icon:hover { color: var(--fg); opacity: 1; transform: translateY(-1px); }
.ls-icon svg { width: 100%; height: 100%; }
.ls-icon:nth-child(1) { animation-delay: 0s; }
.ls-icon:nth-child(2) { animation-delay: 0.45s; }
.ls-icon:nth-child(3) { animation-delay: 0.90s; }
.ls-icon:nth-child(4) { animation-delay: 1.35s; }
.ls-icon:nth-child(5) { animation-delay: 1.80s; }
.ls-icon:nth-child(6) { animation-delay: 2.25s; }
.ls-icon:nth-child(7) { animation-delay: 2.70s; }
.ls-icon:nth-child(8) { animation-delay: 3.15s; }
.ls-icon:nth-child(9) { animation-delay: 3.60s; }
.ls-icon:nth-child(10) { animation-delay: 4.05s; }
.ls-icon:nth-child(11) { animation-delay: 4.50s; }
.ls-icon:nth-child(12) { animation-delay: 4.95s; }
@keyframes lsBlink {
  0%, 100% { opacity: 0.40; }
  50%      { opacity: 0.85; }
}
.ls-more {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  margin-left: 6px;
}

.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta-item {
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item:not(:first-child) { padding-left: 20px; }
.hero-meta-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero-meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px;
}

/* Globe area */
.hero-stage {
  position: relative;
  height: 720px;
  display: flex; align-items: center; justify-content: center;
}
#globe {
  width: 100%;
  height: 100%;
  position: relative;
}
.globe-rings {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.globe-rings .ring {
  position: absolute;
  border: 1px dashed rgba(10,12,16,0.08);
  border-radius: 50%;
}
.r1 { width: 92%; height: 92%; }
.r2 { width: 70%; height: 70%; border-style: solid; border-color: rgba(10,12,16,0.05);}
.r3 { width: 110%; height: 110%; }

.globe-corner {
  position: absolute;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.gc-tl { top: 12px; left: 12px; }
.gc-tr { top: 12px; right: 12px; text-align: right; }
.gc-bl { bottom: 12px; left: 12px; }
.gc-br { bottom: 12px; right: 12px; text-align: right; }
.globe-corner .v { color: var(--fg-dim); }

/* tag chips floating around globe */
.signal-chip {
  position: absolute;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 8px 12px 8px 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg);
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
  animation: chipFloat 6s ease-in-out infinite;
}
.signal-chip .sc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.signal-chip .sc-meta { color: var(--fg-mute); }
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ────────── TICKER ────────── */
.ticker-section {
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 48px;
  padding: 18px 0;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
}
.ticker-row { display: inline-flex; gap: 48px; }
.ticker .item { color: var(--fg-dim); display: inline-flex; align-items: center; gap: 12px; }
.ticker .item .lbl { color: var(--fg-mute); }
.ticker .item .val { color: var(--fg); }
.ticker .up { color: var(--fg); }
.ticker .down { color: var(--fg-dim); }
.ticker .item .pip { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────────── SECTION ────────── */
section.bay { padding: 140px 0; border-bottom: 1px solid var(--line); position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}
.section-head .lhs .eyebrow { display: block; margin-bottom: 16px; }
.section-head .lhs .ix {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: var(--fg-mute);
}
.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 14ch;
}
.section-head p {
  color: var(--fg-dim);
  font-size: 17px;
  max-width: 60ch;
  margin: 0;
}
.section-head.section-head-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.section-head.section-head-center .lhs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-head.section-head-center h2 {
  max-width: 22ch;
  margin: 0;
  text-align: center;
}

/* ────────── WHAT WE DO · flow design ────────── */
.bay-flow {
  padding: 88px 0 104px;
  position: relative;
  overflow: hidden;
}

/* Stage: LEFT column · CENTRE column · RIGHT column.
   Symmetric widths so the centre lands on true page centre.
   `position: relative` anchors the absolute SVG flow lines. */
/* Symmetric LEFT/RIGHT widths so the centre cell lands on true page centre */
.flow-stage {
  display: grid;
  grid-template-columns: minmax(280px, 310px) 1fr minmax(280px, 310px);
  gap: 0;
  align-items: stretch;
  position: relative;
  min-height: 720px;
}

/* Background flow-lines SVG · full bleed, behind cards */
.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Horizontal accent stripe across the middle of the stage · sits behind the hub
   so the V mark reads as a node on a horizontal flow track */
.flow-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(30,130,180,0) 0%,
    rgba(30,130,180,0.18) 16%,
    rgba(30,130,180,0.10) 44%,
    rgba(30,130,180,0.10) 56%,
    rgba(30,130,180,0.18) 84%,
    rgba(30,130,180,0) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Side columns · explicit single-column grid so children can't escape into
   columns of the parent grid. min-width: 0 lets the column shrink. */
.flow-side {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-auto-rows: auto;
  align-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 2;
  padding: 8px 0;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
.flow-side > * { min-width: 0; max-width: 100%; grid-column: 1 / -1 !important; }
.flow-left  { padding-right: 12px; }
.flow-right { padding-left: 12px; }

.flow-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 16px;
  text-align: left;
}
.flow-label-right { text-align: right; }

/* ── LEFT source cards · RAW DATA SOURCES (reference replication) ─── */
.src-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);   /* minmax(0,1fr) lets the column shrink */
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(10,12,16,0.07);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(10,12,16,0.04), 0 4px 14px -10px rgba(10,12,16,0.08);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.src-card.src3 {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
}
.src-card .src-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  color: #111827;
  margin-top: 2px;
}
.src-card .src-icon svg { width: 20px; height: 20px; display: block; }
.src-card .src-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.src-card .src-label-sm {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.src-card .src-text-main {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #1f2937;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.src-card .src-meta {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.35;
}
.src-card .src-meta strong { color: #1f2937; font-weight: 600; }
.src-card .src-dot { color: #cbd5e1; margin: 0 4px; }

/* Quote-style card (Social Posts) */
.src-card .src-quote {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #1f2937;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.src-card .src-engage {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}
.src-card .src-engage span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.src-card .src-engage svg {
  width: 13px;
  height: 13px;
  opacity: 0.75;
}

/* Delta tokens */
.src-card .src-delta-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 12.5px;
}
.src-card .src-delta { font-weight: 600; font-size: 12.5px; }
.src-card .src-delta-up { color: #3b82f6; }
.src-card .src-delta-up-green { color: #16a34a; font-weight: 600; }
.src-card .src-delta-down { color: #ef4444; font-weight: 600; }

/* Right-side aside */
.src-card .src-aside {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.src-card .src-aside-col {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.src-card .src-aside-col-end {
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.src-card .src-aside-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.src-card .src-stat-num {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.1;
}

/* Charts */
.src-card .src-spark {
  width: 76px;
  height: 30px;
  display: block;
}
.src-card .src-bars {
  width: 84px;
  height: 30px;
  display: block;
}

/* Pill (green tag) for transactions */
.src-card .src-pill {
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.src-card .src-pill-up {
  color: #16a34a;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.30);
}

/* Map (flights card) */
.src-card .src-map {
  width: 150px;
  margin-top: 2px;
}
.src-card .src-map svg { width: 100%; height: auto; display: block; }

/* Live indicator (flights card) */
.src-card .src-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #6b7280;
}
.src-card .src-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 6px rgba(22,163,74,0.5);
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Heatmap grid (location/mobility card) */
.src-card .src-heatmap {
  display: grid;
  grid-template-columns: repeat(4, 12px);
  grid-template-rows: repeat(4, 12px);
  gap: 2px;
}
.src-card .src-heatmap span {
  width: 12px;
  height: 12px;
  border-radius: 1px;
}

/* "+ thousands more" card */
.src-card.src-card-more {
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  background: #FFFFFF;
  border: 1px dashed rgba(59,130,246,0.30);
}
.src-card.src-card-more .src-more-text {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #3b82f6;
  font-weight: 500;
}

/* ── CENTER · title at top in normal flow, hub absolutely pinned to cell
   centre (which is the same 50%,50% point the SVG curves converge to),
   steps below the hub. ───────────────────────────────────────────────── */
.flow-center {
  position: relative;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
  min-height: 720px;
}
.flow-title-block {
  padding-top: 16px;
  position: relative;
  z-index: 3;
}
.flow-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 18px;
  max-width: 14ch;
}
.flow-lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 38ch;
  margin: 0 auto;
}

.flow-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  z-index: 2;
}
.flow-hub .hub-rings {
  width: 100%;
  height: 100%;
  display: block;
}
.flow-hub .hub-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-hub .hub-mark img {
  width: 72px;
  height: auto;
  object-fit: contain;
}
/* Slow pulse on outermost rings */
@keyframes hub-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: 0.8; }
}
.flow-hub .hub-rings { animation: hub-pulse 6s ease-in-out infinite; transform-origin: center; }

.flow-steps {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(180px + 28px));   /* below hub bottom + 28px gap */
  display: flex;
  gap: 36px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--fg-dim);
  z-index: 2;
  white-space: nowrap;
}
.flow-steps .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.flow-steps .step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #1E82B4;
  position: relative;
  display: inline-block;
}
.flow-steps .step-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #1E82B4;
  opacity: 0.4;
}

/* ── RIGHT derived-signal cards · "what we surface" ─────────────── */
.signal-card {
  background: #FFFFFF;
  border: 1px solid rgba(10,12,16,0.07);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(10,12,16,0.04), 0 6px 18px -10px rgba(10,12,16,0.10);
  overflow: hidden;
}
.signal-card .signal-main {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 14px;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 12px;
}
.signal-card .signal-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #DBEAFE;
  color: #1E6A93;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.signal-card .signal-icon svg { width: 18px; height: 18px; display: block; }

.signal-card .signal-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.signal-card .signal-title {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.signal-card .signal-desc {
  font-size: 11.5px;
  color: var(--fg-mute);
  line-height: 1.4;
}

.signal-card .signal-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  min-width: 0;
}
.signal-card .signal-stat {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.1;
}
.signal-card .signal-stat-up   { color: #16a34a; }
.signal-card .signal-stat-down { color: #ef4444; }
.signal-card .signal-meta {
  font-size: 10.5px;
  color: var(--fg-mute);
  line-height: 1.2;
}
.signal-card .signal-spark {
  width: 80px;
  height: 24px;
  display: block;
  margin-top: 4px;
}
.signal-card .signal-aside-radar { justify-content: center; }
.signal-card .signal-radar {
  width: 56px;
  height: 56px;
  display: block;
}

.signal-card .signal-chev {
  width: 14px;
  height: 14px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.signal-card .signal-chev svg { width: 14px; height: 14px; display: block; }

.signal-card .signal-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px 11px;
  border-top: 1px solid rgba(10,12,16,0.05);
  background: rgba(15,23,42,0.012);
}
.signal-card .signal-conf-icon {
  width: 12px;
  height: 12px;
  color: var(--fg-mute);
  display: block;
}
.signal-card .signal-conf-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
  text-transform: lowercase;
}


/* Responsive · stack columns on narrow viewports, hide background lines */
@media (max-width: 1100px) {
  .flow-stage {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .flow-lines { display: none; }
  .flow-side  { padding: 0; }
  .flow-left  { padding-right: 0; }
  .flow-right { padding-left: 0; }
  .flow-label, .flow-label-right { text-align: left; }
  .flow-center { padding: 0; }
  .flow-hub { width: 240px; height: 240px; }
}
@media (max-width: 720px) {
  .bay-flow { padding: 64px 0 80px; }
  .flow-title { font-size: clamp(28px, 8vw, 40px); }
  .flow-steps { gap: 20px; font-size: 12px; }
}

/* ────────── PIPELINE ────────── */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pipe-step {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}
.pipe-step:last-child { border-right: none; }
.pipe-step:hover { background: rgba(10,12,16,0.02); }
.pipe-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 36px;
}
.pipe-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.pipe-step p {
  color: var(--fg-dim);
  font-size: 14.5px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.pipe-viz {
  height: 130px;
  border: 1px solid #0B0D12;
  border-radius: 6px;
  background: #0B0D12;
  position: relative;
  overflow: hidden;
}

/* PIPE 1 — ontology tree */
.ontology svg { width: 100%; height: 100%; }
/* PIPE 2 — waveforms */
.waves svg { width: 100%; height: 100%; }
/* PIPE 3 — entity tags */
.entities {
  padding: 10px;
  display: flex; flex-wrap: wrap; gap: 4px; align-content: flex-start;
}
.entities .e {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  padding: 3px 6px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.02);
}
.entities .e.hot { color: #F4F5F7; border-color: rgba(255,255,255,0.30); background: rgba(255,255,255,0.06); }
/* PIPE 4 — graph */
.graph svg { width: 100%; height: 100%; }

/* ────────── SOLUTIONS ────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sol-card {
  background: var(--bg);
  padding: 36px 32px 36px;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 360px;
  transition: background 0.25s;
  cursor: pointer;
}
.sol-card:hover { background: var(--bg-1); }
.sol-id {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  margin-bottom: 28px;
  display: flex; justify-content: space-between;
}
.sol-id .tag {
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 3px;
}
.sol-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(10,12,16,0.02);
}
.sol-icon svg { width: 28px; height: 28px; stroke: var(--fg); fill: none; stroke-width: 1.2; }
.sol-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.sol-card p {
  color: var(--fg-dim);
  font-size: 14.5px;
  margin: 0 0 24px;
  line-height: 1.55;
  flex: 1;
}
.sol-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sol-tags .t {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--fg-dim);
}
.sol-arr {
  position: absolute; bottom: 32px; right: 32px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-mute);
  transition: all 0.2s;
  font-size: 16px;
}
.sol-card:hover .sol-arr { color: var(--accent); transform: translate(2px, -2px); }

/* ────────── DATAFLOW BANNER ────────── */
.dataflow-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.df-cell {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.df-cell:last-child { border-right: none; }
.df-cell .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.df-cell .num .sub { font-size: 24px; color: var(--fg-dim); margin-left: 4px; }
.df-cell .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 14px;
}
.df-cell .lbl-2 { color: var(--accent); }

/* ────────── DASHBOARD ────────── */
.dash-wrap {
  border: 1px solid var(--line-strong);
  background: var(--bg-1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.7), 0 0 80px -20px rgba(10,12,16,0.04);
}
.dash-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
  background: var(--bg);
  height: 44px;
  align-items: center;
  gap: 4px;
}
.dash-tabs .traffic {
  display: flex; gap: 6px; padding-right: 16px; border-right: 1px solid var(--line);
  margin-right: 12px; height: 100%; align-items: center;
}
.dash-tabs .traffic span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-strong);
}
.dash-tabs .tab {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  padding: 5px 12px;
  color: var(--fg-mute);
  border-radius: 4px;
}
.dash-tabs .tab.active { background: rgba(10,12,16,0.04); color: var(--fg); }
.dash-tabs .right {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-mute);
  display: flex; align-items: center; gap: 14px;
}

.dash-body {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  height: 540px;
}
.dash-side {
  border-right: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg);
}
.dash-side h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 18px 10px;
  font-weight: 400;
}
.dash-side .item {
  padding: 8px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: var(--fg-dim);
  border-left: 2px solid transparent;
  cursor: default;
}
.dash-side .item:hover { background: rgba(10,12,16,0.02); }
.dash-side .item.active { color: var(--fg); border-left-color: var(--fg); background: rgba(10,12,16,0.04); }
.dash-side .item .c { font-family: "JetBrains Mono", monospace; font-size: 10.5px; color: var(--fg-mute); }
.dash-side hr { border: none; border-top: 1px solid var(--line); margin: 14px 0; }

.dash-main {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
  overflow: hidden;
}
.dash-main h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  display: flex; align-items: center; gap: 12px;
}
.dash-main h3 .badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  padding: 3px 7px;
  background: rgba(10,12,16,0.08);
  color: var(--fg);
  border-radius: 3px;
  border: 1px solid rgba(10,12,16,0.22);
  letter-spacing: 0.1em;
}
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.kpi { background: var(--bg-1); padding: 12px 14px; }
.kpi .v { font-family: "Space Grotesk", sans-serif; font-size: 22px; letter-spacing: -0.02em; }
.kpi .v .delta { font-family: "JetBrains Mono", monospace; font-size: 11px; margin-left: 6px; color: var(--fg-dim); }
.kpi .l { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-mute); margin-top: 4px; }

.chart-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  flex: 1;
  display: flex; flex-direction: column;
  min-height: 200px;
}
.chart-head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.chart-head .t { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--fg-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.chart-head .legend { display: flex; gap: 14px; font-family: "JetBrains Mono", monospace; font-size: 10.5px; color: var(--fg-mute); }
.chart-head .legend .s { display: inline-flex; align-items: center; gap: 6px; }
.chart-head .legend .s::before { content: ""; width: 8px; height: 2px; background: currentColor; }
.chart-head .legend .a { color: var(--accent); }
.chart-head .legend .b { color: var(--accent-2); }
.chart-body { padding: 12px; flex: 1; }
.chart-body svg { width: 100%; height: 100%; }

.dash-feed {
  background: var(--bg);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.dash-feed h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0; padding: 18px 18px 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 400;
}
.dash-feed h4 .live { color: var(--fg); display: inline-flex; align-items: center; gap: 6px; }
.dash-feed h4 .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.feed-list {
  padding: 8px 18px 18px;
  flex: 1;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.feed-item {
  border-left: 2px solid var(--line-strong);
  padding-left: 12px;
}
.feed-item.hot { border-left-color: var(--accent); }
.feed-item .ts { font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--fg-mute); }
.feed-item .txt { font-size: 13px; color: var(--fg); margin: 4px 0; line-height: 1.4; }
.feed-item .meta { font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--fg-dim); display: flex; gap: 10px; }
.feed-item .meta .pos { color: var(--fg); }

/* ────────── CTA ────────── */
.cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,12,16,0.04), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 0 0 24px;
}
.cta h2 em {
  font-style: italic; font-weight: 300;
  color: var(--fg-dim);
}
.cta p { color: var(--fg-dim); font-size: 18px; margin: 0 auto 36px; max-width: 50ch; }
.cta-actions { display: inline-flex; gap: 12px; }

/* ────────── FOOTER ────────── */
footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--fg-dim); font-size: 14px; max-width: 36ch; }
.footer-col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 16px;
  font-weight: 400;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--fg-dim); }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
}

/* ────────── REVEAL ────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ────────── WHAT WE DO · editorial composition ──────────
   Single sharp idea: the three verbs (listens / understands / translates)
   are the company. They ignite in sequence as the section enters view —
   the rest of the paragraph stays dim. The H2 and body are joined by a
   short hairline; content hangs off-center to the left, not centered. */
.bay-wwd {
  padding: clamp(120px, 18vh, 200px) 0;
  border-bottom: 1px solid var(--line);
}
.wwd {
  width: 100%;
  max-width: 720px;
  margin-left: clamp(0px, 24%, 320px);
  margin-right: auto;
}
.wwd-h {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--fg);
  margin: 0;
}
.wwd-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--line-strong);
  margin: 36px 0 40px;
}
.wwd-body {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.42;
  max-width: 30ch;
  margin: 0;
  color: var(--fg-mute);
}
.wwd-body .kw {
  color: var(--fg-mute);
  transition: color 1100ms cubic-bezier(.2, .7, .2, 1);
  will-change: color;
}
.bay-wwd.in .wwd-body .kw-1 { color: var(--fg); transition-delay: 480ms; }
.bay-wwd.in .wwd-body .kw-2 { color: var(--fg); transition-delay: 880ms; }
.bay-wwd.in .wwd-body .kw-3 { color: var(--fg); transition-delay: 1280ms; }

@media (max-width: 820px) {
  .wwd { margin-left: 0; }
  .wwd-h { font-size: clamp(34px, 8vw, 48px); }
  .wwd-rule { width: 48px; margin: 28px 0 32px; }
  .wwd-body { font-size: clamp(19px, 5vw, 24px); max-width: 36ch; }
}

@media (prefers-reduced-motion: reduce) {
  .wwd-body .kw,
  .bay-wwd.in .wwd-body .kw {
    transition: none;
    color: var(--fg);
  }
}

/* ────────── RESPONSIVE ────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { height: 480px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .pipe-step { border-right: none; border-bottom: 1px solid var(--line); }
  .pipe-step:nth-child(odd) { border-right: 1px solid var(--line); }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .dataflow-banner { grid-template-columns: 1fr 1fr; }
  .df-cell { border-bottom: 1px solid var(--line); padding: 18px 24px; }
  .df-cell:nth-child(2) { border-right: none; }
  .dash-body { grid-template-columns: 1fr; height: auto; }
  .dash-side, .dash-feed { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
