:root {
  --bg: #070d1f;
  --bg-soft: #0c1634;
  --panel: #111f45cc;
  --line: #2f4f91;
  --text: #e8f3ff;
  --text-dim: #9eb3d8;
  --cyan: #21c8ff;
  --blue: #1d4ed8;
  --blue-2: #11318c;
  --ok: #27c27a;
  --warn: #f59e0b;
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(1100px 600px at 90% -20%, #173f9b66 0%, transparent 60%),
    radial-gradient(900px 500px at -20% 20%, #0f8fc266 0%, transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, #0a1430 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI Variable Text", "Century Gothic", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to right, #1b2f6152 1px, transparent 1px),
    linear-gradient(to bottom, #1b2f6152 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  filter: blur(80px);
  pointer-events: none;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: #00bcff4a;
  top: 14%;
  left: -80px;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: #355cff44;
  bottom: 6%;
  right: -120px;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav {
  padding: 26px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: min(360px, 70vw);
  height: auto;
  display: block;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 0 0 1px #355ca960;
}

.brand-wordmark {
  width: 220px;
  height: auto;
}

.mini-logo {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 7px;
}

.brand.mini .brand-mark {
  width: 24px;
  height: 24px;
}

.brand.mini span {
  font-weight: 700;
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.kicker {
  margin: 0;
  color: #7ed8ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #8de4ff 0%, #4e9dff 45%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  margin: 0;
  color: var(--text-dim);
  max-width: 60ch;
  font-size: 1.04rem;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.18s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(95deg, #1d4ed8 0%, #21c8ff 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px #0f4bd955;
}

.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn.ghost {
  border-color: #4f6ca9;
  color: #d9ecff;
  background: #0c1d46cc;
}

.btn.ghost:hover {
  border-color: #89b6ff;
  background: #0f2a63cc;
}

.hero-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  border: 1px solid #3b548b;
  background: #0f1e44cf;
  border-radius: 14px;
  padding: 12px;
}

.metric-num {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 800;
}

.metric-label {
  margin: 3px 0 0;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.hero-right {
  border: 1px solid #4a66a6;
  background: var(--panel);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(6px);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #d6eaff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--ok);
  box-shadow: 0 0 0 5px #27c27a33;
}

.stat-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border-radius: 12px;
  border: 1px solid #355488;
  background: #0e1b3ec9;
  padding: 12px;
}

.stat p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stat h3 {
  margin: 8px 0 0;
  font-size: 1.55rem;
}

.severity-row {
  margin-top: 14px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.sev {
  font-size: 0.72rem;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sev.critical {
  background: #ef44442a;
  color: #ff8787;
  border: 1px solid #ef444472;
}

.sev.high {
  background: #fb923c2a;
  color: #ffb37e;
  border: 1px solid #fb923c75;
}

.sev.medium {
  background: #facc1526;
  color: #ffd967;
  border: 1px solid #facc1570;
}

.sev.low {
  background: #22c55e24;
  color: #86efac;
  border: 1px solid #22c55e70;
}

.hero-flow-map {
  position: relative;
  margin-top: 14px;
  min-height: 185px;
  border: 1px solid #3f5f9f;
  border-radius: 12px;
  background: #0d1f47d8;
  overflow: hidden;
  padding: 10px;
}

.hero-flow-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(69, 102, 168, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(69, 102, 168, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-node {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(15, 34, 79, 0.96);
  border: 1px solid rgba(82, 123, 198, 0.72);
  white-space: nowrap;
}

.hn-repo { top: 12px; left: 10px; color: #99e8ff; }
.hn-sast { top: 50px; left: 88px; color: #ff9d9d; border-color: rgba(239, 68, 68, 0.72); }
.hn-sca { top: 50px; left: 160px; color: #ffbf88; border-color: rgba(251, 146, 60, 0.72); }
.hn-iac { top: 50px; left: 226px; color: #ffe080; border-color: rgba(250, 204, 21, 0.72); }
.hn-corr { top: 88px; left: 142px; color: #8ce5b5; border-color: rgba(39, 194, 122, 0.72); }
.hn-risk { top: 128px; left: 100px; color: #99e8ff; }
.hn-rem { top: 128px; left: 188px; color: #8ce5b5; }

.hero-link {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(32, 199, 255, 0.2) 0%, rgba(32, 199, 255, 1) 50%, rgba(32, 199, 255, 0.2) 100%);
  transform-origin: left center;
  animation: pulse-path 1.8s linear infinite;
}

.hl-a { top: 30px; left: 62px; width: 66px; transform: rotate(24deg); }
.hl-b { top: 30px; left: 98px; width: 112px; transform: rotate(14deg); }
.hl-c { top: 30px; left: 130px; width: 150px; transform: rotate(8deg); }
.hl-d { top: 76px; left: 148px; width: 52px; transform: rotate(56deg); }
.hl-e { top: 108px; left: 164px; width: 52px; transform: rotate(162deg); }
.hl-f { top: 108px; left: 172px; width: 78px; transform: rotate(24deg); }

.hero-chip {
  position: absolute;
  z-index: 3;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 0.61rem;
  font-weight: 700;
  background: rgba(8, 17, 42, 0.96);
  border: 1px solid rgba(82, 123, 198, 0.65);
  color: #d5e8ff;
  white-space: nowrap;
}

.hc-1 { top: 12px; right: 8px; border-color: rgba(239, 68, 68, 0.65); color: #ffb0b0; }
.hc-2 { top: 72px; right: 8px; border-color: rgba(250, 204, 21, 0.65); color: #ffe79d; }
.hc-3 { bottom: 8px; right: 8px; border-color: rgba(39, 194, 122, 0.65); color: #a7f0c8; }

.section {
  margin-top: 74px;
}

.section-title h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
}

.neon-title {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #e8f4ff 0%, #8fe6ff 42%, #63b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(45, 168, 255, 0.2);
}

.neon-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: min(260px, 90%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32, 199, 255, 0.95) 0%, rgba(32, 199, 255, 0.05) 100%);
  box-shadow: 0 0 12px rgba(32, 199, 255, 0.45);
}

.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid #385286;
  background: #0e1d42d4;
  border-radius: 16px;
  padding: 18px;
}

.card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.card p {
  margin: 8px 0 0;
  color: var(--text-dim);
}

.cap-map {
  position: relative;
  min-height: 300px;
  border: 1px solid #3f5f9f;
  border-radius: 14px;
  background: #0d1f47d8;
  overflow: hidden;
  margin-top: 22px;
  padding: 12px;
}

.cap-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(69, 102, 168, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(69, 102, 168, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cap-node {
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(15, 34, 79, 0.96);
  border: 1px solid rgba(82, 123, 198, 0.72);
  white-space: nowrap;
}

.cap-center {
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8ce5b5;
  border-color: rgba(39, 194, 122, 0.72);
  box-shadow: 0 0 0 6px rgba(39, 194, 122, 0.16);
}

.cap-detect { top: 16%; left: 9%; color: #ff9d9d; border-color: rgba(239, 68, 68, 0.72); }
.cap-prio { top: 16%; right: 9%; color: #ffbf88; border-color: rgba(251, 146, 60, 0.72); }
.cap-dev { bottom: 26%; left: 12%; color: #99e8ff; }
.cap-gov { bottom: 26%; right: 10%; color: #ffe080; border-color: rgba(250, 204, 21, 0.72); }

.cap-link {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(32, 199, 255, 0.2) 0%, rgba(32, 199, 255, 1) 50%, rgba(32, 199, 255, 0.2) 100%);
  animation: pulse-path 1.8s linear infinite;
  transform-origin: left center;
}

.cl-a { top: 38%; left: 26%; width: 190px; transform: rotate(17deg); }
.cl-b { top: 37%; right: 24%; width: 190px; transform: rotate(-17deg); }
.cl-c { top: 58%; left: 30%; width: 150px; transform: rotate(-18deg); }
.cl-d { top: 58%; right: 27%; width: 150px; transform: rotate(18deg); }

.cap-note {
  position: absolute;
  z-index: 3;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 0.66rem;
  font-weight: 700;
  background: rgba(8, 17, 42, 0.96);
  border: 1px solid rgba(82, 123, 198, 0.65);
  color: #d5e8ff;
  white-space: nowrap;
}

.cn-1 { left: 16px; bottom: 16px; }
.cn-2 { left: 50%; transform: translateX(-50%); bottom: 16px; border-color: rgba(250, 204, 21, 0.65); color: #ffe79d; }
.cn-3 { right: 16px; bottom: 16px; border-color: rgba(39, 194, 122, 0.65); color: #a7f0c8; }

.timeline {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border: 1px solid #385286;
  background: #0e1d42d4;
  border-radius: 15px;
  padding: 14px;
}

.timeline li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d4ed8 0%, #21c8ff 100%);
}

.timeline h3 {
  margin: 0;
  font-size: 1.04rem;
}

.timeline p {
  margin: 5px 0 0;
  color: var(--text-dim);
}

.ops-map {
  position: relative;
  margin-top: 22px;
  min-height: 260px;
  border: 1px solid #3f5f9f;
  border-radius: 14px;
  background: #0d1f47d8;
  overflow: hidden;
  padding: 12px;
}

.ops-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(69, 102, 168, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(69, 102, 168, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ops-step {
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(15, 34, 79, 0.96);
  border: 1px solid rgba(82, 123, 198, 0.72);
  white-space: nowrap;
}

.os-1 { top: 26px; left: 24px; color: #99e8ff; }
.os-2 { top: 26px; left: 302px; color: #ffbf88; border-color: rgba(251, 146, 60, 0.72); }
.os-3 { top: 26px; left: 576px; color: #8ce5b5; border-color: rgba(39, 194, 122, 0.72); }
.os-4 { top: 26px; right: 26px; color: #ffe080; border-color: rgba(250, 204, 21, 0.72); }

.ops-edge {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(32, 199, 255, 0.2) 0%, rgba(32, 199, 255, 1) 50%, rgba(32, 199, 255, 0.2) 100%);
  animation: pulse-path 1.8s linear infinite;
}

.oe-1 { top: 48px; left: 190px; width: 116px; }
.oe-2 { top: 48px; left: 464px; width: 114px; }
.oe-3 { top: 48px; left: 736px; width: 114px; }

.ops-desc {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #cfe1ff;
  background: rgba(11, 26, 62, 0.92);
  border: 1px solid rgba(77, 113, 182, 0.72);
}

.od-1 { top: 96px; left: 24px; width: 240px; }
.od-2 { top: 96px; left: 302px; width: 230px; }
.od-3 { top: 96px; left: 576px; width: 250px; }
.od-4 { top: 96px; right: 26px; width: 240px; }

.od-1::before,
.od-2::before,
.od-3::before,
.od-4::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 16px;
  width: 2px;
  height: 18px;
  background: rgba(32, 199, 255, 0.7);
}

.integrations-map {
  position: relative;
  margin-top: 22px;
  min-height: 290px;
  border: 1px solid #3f5f9f;
  border-radius: 14px;
  background: #0d1f47d8;
  overflow: hidden;
  padding: 12px;
}

.int-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(69, 102, 168, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(69, 102, 168, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.int-wire {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.int-wire line {
  stroke: rgba(32, 199, 255, 0.9);
  stroke-width: 0.26;
  stroke-linecap: round;
  stroke-dasharray: 2.2 1.5;
  animation: wire-dash 6.2s linear infinite;
}

.int-node {
  position: absolute;
  z-index: 2;
  border-radius: 14px;
  border: 1px solid rgba(82, 123, 198, 0.72);
  background: rgba(15, 34, 79, 0.96);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(84, 123, 198, 0.26), 0 10px 22px rgba(4, 11, 29, 0.45);
}

.int-node img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.int-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8ce5b5;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  width: auto;
  height: auto;
  min-width: 104px;
  min-height: 54px;
  padding: 12px 20px;
  border-radius: 999px;
  border-color: rgba(39, 194, 122, 0.8);
  box-shadow: 0 0 0 7px rgba(39, 194, 122, 0.16), 0 0 28px rgba(39, 194, 122, 0.2);
}

.int-bitbucket { top: 30%; left: 22%; transform: translate(-50%, -50%); }
.int-github { top: 16%; left: 50%; transform: translate(-50%, -50%); }
.int-gitlab { top: 30%; left: 78%; transform: translate(-50%, -50%); }
.int-jira { top: 73%; left: 72%; transform: translate(-50%, -50%); }
.int-docker { top: 73%; left: 28%; transform: translate(-50%, -50%); }

.hero-flow-map::after,
.cap-map::after,
.ops-map::after,
.integrations-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(33, 200, 255, 0.12) 48%, rgba(33, 200, 255, 0.22) 50%, rgba(33, 200, 255, 0.12) 52%, transparent 62%, transparent 100%);
  transform: translateX(-120%);
  animation: scan-sweep 4.2s ease-in-out infinite;
}

.cta {
  margin-top: 82px;
  border: 1px solid #4d6fad;
  background: linear-gradient(145deg, #13275acc 0%, #0b1a3dd1 100%);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.cta .neon-title::after {
  left: 50%;
  transform: translateX(-50%);
  width: min(340px, 90%);
}

.cta p {
  margin: 12px auto 0;
  color: var(--text-dim);
  max-width: 66ch;
}

.cta-form {
  margin: 20px auto 0;
  max-width: 680px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 111, 173, 0.72);
  border-radius: 14px;
  background: rgba(10, 24, 57, 0.72);
  padding: 14px;
}

.cta-form::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(33, 200, 255, 0.09) 46%,
    rgba(33, 200, 255, 0.2) 50%,
    rgba(33, 200, 255, 0.09) 54%,
    transparent 66%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: scan-sweep 5.4s ease-in-out infinite;
}

.cta-form > * {
  position: relative;
  z-index: 1;
}

.cta-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbe5ff;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #4569ac;
  background: #0d1f47cc;
  color: #eaf5ff;
  font: inherit;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.cta-form textarea {
  resize: vertical;
  min-height: 120px;
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: #33cfff;
  box-shadow: 0 0 0 3px rgba(33, 200, 255, 0.2);
}

.cta-form .btn {
  margin-top: 6px;
  justify-self: center;
  min-width: 180px;
}

.footer {
  margin-top: 52px;
  padding: 22px 0 26px;
  border-top: 1px solid #314d86;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-path {
  0% { opacity: 0.35; }
  50% { opacity: 1; }
  100% { opacity: 0.35; }
}

@keyframes scan-sweep {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes wire-dash {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -9;
    opacity: 0.7;
  }
}

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

  .hero-metrics,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-flow-map,
  .cap-map,
  .ops-map,
  .integrations-map {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-flow-grid,
  .hero-link,
  .cap-grid,
  .cap-link,
  .ops-grid-bg,
  .ops-edge,
  .int-grid,
  .int-link,
  .int-wire {
    display: none;
  }

  .hero-node,
  .hero-chip,
  .cap-node,
  .cap-note,
  .ops-step,
  .ops-desc,
  .int-node {
    position: static;
    transform: none !important;
    width: auto;
    white-space: normal;
  }

  .od-1::before,
  .od-2::before,
  .od-3::before,
  .od-4::before {
    display: none;
  }

  .integrations-map::after,
  .hero-flow-map::after,
  .cap-map::after,
  .ops-map::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(1200px, calc(100% - 24px));
  }

  .brand-wordmark {
    width: 160px;
  }

  .brand-logo {
    width: min(260px, 78vw);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
