:root {
  --bg: #080a0f;
  --panel: #111520;
  --line: #242b39;
  --line2: #333d4f;
  --white: #eef1f6;
  --fog: #9aa6b9;
  --steel: #7c93b5;
  --accent: #e8324a;
  --good: #54c79a;
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  color-scheme: dark;
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  pointer-events: none;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.motion-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
body {
  background: var(--bg);
  color: var(--white);
  font:
    16px/1.65 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      900px 500px at 78% -8%,
      rgba(232, 50, 74, 0.12),
      transparent 68%
    ),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size:
    auto,
    48px 48px,
    48px 48px;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 99;
  background: var(--white);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip:focus {
  top: 12px;
}
.shell {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}
.nav {
  height: 78px;
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.01em;
}
.brand > span:last-child {
  color: var(--fog);
  font-weight: 350;
}
.brand b {
  color: var(--white);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff !important;
  font: 800 15px/1 Arial;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav nav a {
  color: var(--fog);
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.18s;
}
.nav nav a:hover {
  color: var(--white);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line2);
  border-radius: 12px;
  background: rgba(10, 12, 18, 0.78);
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 240ms ease, top 240ms ease;
}
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 25px; }
a:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 4px;
  border-radius: 5px;
}
.hero {
  padding: 112px 0 80px;
}
.eyebrow,
.kicker {
  color: var(--accent);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--accent);
}
h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.048em;
  max-width: 1000px;
  margin: 22px 0 28px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(31px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h3 {
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: -0.015em;
}
.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: var(--fog);
  max-width: 760px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  min-height: 50px;
  border-radius: 10px;
  font-weight: 750;
  white-space: nowrap;
  box-shadow:
    0 12px 30px rgba(232, 50, 74, 0.16),
    0 2px 5px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  background: #f13a52;
}
.button:active,
.text-link:active {
  transform: scale(0.98);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.text-link span,
.card-link span {
  color: var(--accent);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 92px;
}
.proof-strip div {
  padding: 22px 28px;
}
.proof-strip div + div {
  border-left: 1px solid var(--line);
}
.proof-strip strong,
.proof-strip span {
  display: block;
}
.proof-strip strong {
  font-size: 18px;
}
.proof-strip span {
  color: var(--fog);
  font-size: 13px;
  margin-top: 2px;
}
.section {
  padding: 104px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}
.section-head h2 {
  margin-top: 11px;
  max-width: 650px;
}
.section-head > p {
  color: var(--fog);
  max-width: 430px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.product {
  min-height: 560px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(21, 26, 39, 0.94),
    rgba(13, 16, 23, 0.94)
  );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.16),
    0 2px 5px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}
.product.featured {
  border-color: rgba(84, 199, 154, 0.42);
  background: linear-gradient(
    145deg,
    rgba(17, 32, 34, 0.82),
    rgba(13, 16, 23, 0.96)
  );
}
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.number {
  font:
    700 12px/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: var(--steel);
}
.pill {
  padding: 5px 9px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  color: var(--fog);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.live-pill {
  color: var(--good);
  border-color: rgba(84, 199, 154, 0.38);
  background: rgba(84, 199, 154, 0.07);
}
.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 250px;
  margin: 24px -12px 26px;
  overflow: hidden;
  border-radius: 12px;
  background: #090b10;
  isolation: isolate;
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow:
    inset 0 0 0 1px rgba(124, 147, 181, 0.12),
    inset 0 -60px 70px rgba(8, 10, 15, 0.28);
  pointer-events: none;
}
.product-visual img {
  display: block;
  width: 75%;
  height: 75%;
  object-fit: contain;
  object-position: center;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.product:hover .product-visual img {
  transform: scale(1.035);
}
.product h3 {
  font-size: 26px;
}
.product p {
  color: var(--fog);
  margin-top: 13px;
  max-width: 52ch;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
  margin-top: auto;
  padding-top: 25px;
}
@media (prefers-reduced-motion: reduce) {
  .product-visual img {
    transition: none;
  }
  .product:hover .product-visual img {
    transform: none;
  }
}
.band {
  width: 100%;
  background: rgba(15, 18, 26, 0.82);
  border-block: 1px solid var(--line);
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.split h2 {
  margin-top: 12px;
}
.principles {
  border-top: 1px solid var(--line);
}
.principles div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.principles strong {
  font-size: 18px;
}
.principles p {
  color: var(--fog);
  margin-top: 5px;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.insight {
  border-top: 1px solid var(--line2);
  padding: 25px 8px 25px 0;
  min-height: 260px;
  transition:
    border-color 0.18s,
    transform 0.18s;
}
.insight:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.insight > span {
  color: var(--steel);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 750;
}
.insight h3 {
  margin-top: 30px;
}
.insight p {
  color: var(--fog);
  margin-top: 12px;
  font-size: 15px;
}
.founder {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 55px;
  align-items: center;
  max-width: 920px;
}
.founder-monogram {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #252c3a, #10141e);
  border: 1px solid var(--line2);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.25),
    0 3px 8px rgba(0, 0, 0, 0.3);
}
.founder h2 {
  margin: 12px 0 18px;
}
.founder p:not(.kicker) {
  color: var(--fog);
  font-size: 18px;
  max-width: 650px;
}
.founder .text-link {
  margin-top: 18px;
}
.cta {
  margin-top: 30px;
  margin-bottom: 110px;
  padding: 46px 50px;
  border: 1px solid rgba(232, 50, 74, 0.38);
  border-radius: 18px;
  background:
    radial-gradient(
      700px 250px at 100% 0,
      rgba(232, 50, 74, 0.13),
      transparent 72%
    ),
    var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.24),
    0 3px 8px rgba(0, 0, 0, 0.28);
}
.cta h2 {
  font-size: 34px;
  margin: 10px 0;
}
.cta p:not(.kicker) {
  color: var(--fog);
}
footer {
  border-top: 1px solid var(--line);
  padding: 58px max(22px, calc((100% - var(--max)) / 2)) 25px;
  background: #07090d;
}
.insight-article-page footer,
.insights-page footer,
.legal-page footer {
  border-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-grid p,
.footer-grid a {
  color: var(--fog);
  font-size: 14px;
}
.footer-grid strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #788397;
  font-size: 12px;
  flex-wrap: wrap;
}
.page-hero {
  padding: 92px 0 58px;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  max-width: 900px;
}
.page-hero p {
  color: var(--fog);
  font-size: 20px;
  max-width: 720px;
}
.about-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: 60px;
}
.about-hero-copy { position: relative; z-index: 2; }
.about-hero h1 { margin-top: 18px; }
.operations-flow {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(124, 147, 181, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 12%, rgba(232, 50, 74, 0.12), transparent 28%),
    linear-gradient(155deg, rgba(18, 22, 32, 0.96), rgba(8, 11, 17, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  transform: perspective(900px) rotateY(-4deg) rotateX(1.5deg);
}
.operations-flow::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 82px;
  bottom: 44px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(124, 147, 181, 0.14));
}
.operations-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: #aeb9ca;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.operations-flow-head i {
  color: #dfe7f2;
  font-style: normal;
}
.operations-flow-head i::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(232, 50, 74, 0.7);
}
.operations-flow ol { list-style: none; margin-top: 10px; }
.operations-flow li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  opacity: 0.48;
  transition: opacity 560ms ease, background 560ms ease, border-color 560ms ease;
}
.operations-flow li > span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid #556176;
  border-radius: 50%;
  background: #10141d;
  color: #a5b1c3;
  font-size: 8px;
  font-weight: 800;
}
.operations-flow li strong,
.operations-flow li small { display: block; }
.operations-flow li strong { color: #f2f5fa; font-size: 14px; }
.operations-flow li small { margin-top: 4px; color: #7f8ba0; font-size: 11px; }
.operations-flow li > b {
  color: #8f9db2;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.operations-flow li.is-active {
  opacity: 1;
  border-color: rgba(232, 50, 74, 0.28);
  background: linear-gradient(90deg, rgba(232, 50, 74, 0.105), rgba(124, 147, 181, 0.035));
}
.operations-flow li.is-active > span,
.operations-flow li.is-complete > span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.operations-flow li.is-complete { opacity: 0.72; }
.operations-pulse {
  position: absolute;
  left: 41px;
  top: 88px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4960;
  box-shadow: 0 0 16px rgba(232, 50, 74, 0.85);
  animation: operations-travel 14s linear infinite;
}
@keyframes operations-travel {
  from { transform: translateY(0); }
  to { transform: translateY(350px); }
}
.about-story {
  position: relative;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 24px;
}
.about-story-copy { min-width: 0; }
.story-rail {
  position: relative;
}
.story-rail-line {
  position: absolute;
  top: 48px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--line2);
}
.story-rail-line i {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(var(--accent), #8ca0bd);
}
.roadmap-hero {
  min-height: 680px;
  padding: 72px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 48px;
}
.roadmap-hero-copy {
  position: relative;
  z-index: 2;
}
.roadmap-hero h1 {
  max-width: 690px;
  margin-top: 14px;
  font-size: clamp(52px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.roadmap-hero-copy > p:not(.kicker) {
  max-width: 570px;
  margin-top: 28px;
  color: var(--fog);
  font-size: 20px;
}
.roadmap-hero .button {
  margin-top: 34px;
}
.roadmap-core {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(124, 147, 181, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 49%, rgba(232, 50, 74, 0.11), transparent 19%),
    radial-gradient(ellipse at 50% 50%, rgba(111, 145, 193, 0.09), transparent 47%),
    radial-gradient(circle at 18% 20%, rgba(89, 124, 175, 0.06), transparent 32%),
    linear-gradient(155deg, #111520 0%, #090c13 52%, #070910 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 50px 100px rgba(0, 0, 0, 0.3);
}
.roadmap-core::before,
.roadmap-core::after {
  content: "";
  position: absolute;
  inset: 17% 8%;
  z-index: 1;
  border: 1px solid rgba(184, 208, 240, 0.3);
  border-radius: 50%;
  transform: rotate(9deg) scaleY(0.43);
  filter: drop-shadow(0 0 13px rgba(134, 175, 224, 0.25));
  pointer-events: none;
  transition: border-color 420ms ease, filter 420ms ease;
}
.roadmap-core::after {
  inset: 25% 17%;
  border-color: rgba(244, 70, 94, 0.38);
  transform: rotate(-22deg) scaleY(0.47);
  filter: drop-shadow(0 0 15px rgba(232, 50, 74, 0.3));
}
#roadmap3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 1;
  filter: brightness(1.12);
  transition: opacity 420ms ease, filter 420ms ease;
}
.core-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 4;
  border: 1px solid rgba(244, 80, 101, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 35%, rgba(32, 36, 49, 0.96), rgba(4, 6, 11, 0.98) 72%);
  box-shadow:
    0 0 20px rgba(232, 50, 74, 0.18),
    0 0 72px rgba(232, 50, 74, 0.14),
    inset 0 0 34px rgba(232, 50, 74, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease, box-shadow 420ms ease;
}
.core-wordmark {
  color: #aeb8ca;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.core-wordmark b {
  color: #f4f7fc;
  font-weight: 760;
}
.core-wordmark span {
  font-weight: 400;
}
.core-label {
  position: absolute;
  padding: 7px 11px;
  z-index: 4;
  border: 1px solid rgba(164, 190, 226, 0.28);
  border-radius: 999px;
  background: rgba(5, 8, 14, 0.74);
  color: #c7d1e2;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 24px rgba(96, 138, 196, 0.09);
  transition: border-color 360ms ease, color 360ms ease, box-shadow 360ms ease;
}
.roadmap-core:hover::before {
  border-color: rgba(205, 224, 249, 0.44);
  filter: drop-shadow(0 0 20px rgba(134, 175, 224, 0.38));
  transform: rotate(9deg) scaleY(0.48) scaleX(1.035);
}
.roadmap-core:hover::after {
  border-color: rgba(255, 82, 106, 0.58);
  filter: drop-shadow(0 0 22px rgba(232, 50, 74, 0.42));
  transform: rotate(-22deg) scaleY(0.54) scaleX(1.045);
}
.roadmap-core:hover #roadmap3d {
  opacity: 1;
  filter: brightness(1.3) contrast(1.06);
}
.roadmap-core:hover .core-center {
  transform: translate(-50%, -50%) scale(1.07);
  border-color: rgba(244, 80, 101, 0.72);
  box-shadow: 0 0 26px rgba(232, 50, 74, 0.3), 0 0 88px rgba(232, 50, 74, 0.2), inset 0 0 34px rgba(232, 50, 74, 0.14);
}
.roadmap-core:hover .core-label {
  border-color: rgba(180, 205, 239, 0.4);
  color: #e1e8f3;
  box-shadow: 0 0 28px rgba(96, 138, 196, 0.15);
}
.core-label-a { left: 9%; top: 20%; }
.core-label-b { right: 12%; top: 16%; }
.core-label-c { left: 12%; bottom: 16%; }
.core-label-d { right: 10%; bottom: 21%; }
.roadmap-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.roadmap-nav-item {
  position: relative;
  padding: 23px 24px 25px;
}
.roadmap-nav-item + .roadmap-nav-item {
  border-left: 1px solid var(--line);
}
.roadmap-nav-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 23px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 16px rgba(124, 147, 181, 0.55);
}
.roadmap-nav-item.is-live::before {
  background: var(--good);
  box-shadow: 0 0 18px rgba(84, 199, 154, 0.6);
}
.roadmap-nav-item span,
.roadmap-nav-item strong {
  display: block;
}
.roadmap-nav-item span {
  color: var(--steel);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.roadmap-nav-item strong {
  margin-top: 5px;
  font-size: 15px;
}
.roadmap {
  position: relative;
  padding: 90px 0 40px;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 90px;
  bottom: 40px;
  left: 31px;
  width: 1px;
  background: rgba(124, 147, 181, 0.2);
}
.roadmap::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 90px;
  bottom: 40px;
  left: 31px;
  width: 1px;
  background: linear-gradient(var(--good), var(--accent) 42%, #9fb5d5);
  box-shadow: 0 0 12px rgba(232, 50, 74, 0.22);
  transform: scaleY(var(--roadmap-progress, 0));
  transform-origin: top;
  will-change: transform;
}
.roadmap-stage {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  align-items: center;
  min-height: 680px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.stage-marker {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 5px;
}
.stage-marker span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line2);
  border-radius: 50%;
  background: var(--bg);
  color: var(--steel);
  font: 700 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 0 0 0 9px var(--bg);
  transition: border-color 300ms ease, color 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}
.roadmap-stage.is-live .stage-marker span {
  border-color: rgba(84, 199, 154, 0.45);
  color: var(--good);
}
.roadmap-stage.is-current .stage-marker span {
  border-color: rgba(232, 50, 74, 0.68);
  background: #11131b;
  color: #fff;
  box-shadow: 0 0 0 9px var(--bg), 0 0 24px rgba(232, 50, 74, 0.26);
}
.stage-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.stage-copy h2 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.04em;
}
.stage-lede {
  max-width: 620px;
  margin-top: 18px;
  color: var(--fog);
  font-size: 19px;
}
.feature-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.feature-list li {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) 1.28fr;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.feature-list strong {
  font-size: 14px;
}
.feature-list span {
  color: var(--fog);
  font-size: 14px;
}
.stage-copy .card-link {
  display: inline-flex;
  margin-top: 25px;
  padding-top: 0;
}
.stage-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(124, 147, 181, 0.17);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 46%, rgba(84, 199, 154, 0.1), transparent 33%),
    linear-gradient(145deg, rgba(17, 21, 32, 0.82), rgba(8, 10, 15, 0.9));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.24);
  perspective: 900px;
}
.stage-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(124, 147, 181, 0.13);
  border-radius: 50%;
  transform: rotateX(68deg) translateZ(-40px);
}
.stage-visual img {
  position: relative;
  z-index: 1;
  width: 70%;
  height: auto;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.38));
  transform: rotateX(2deg) rotateY(-5deg) translateZ(20px);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stage-visual:hover img {
  transform: rotateX(-2deg) rotateY(5deg) translateZ(42px) scale(1.035);
}
.stage-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(124, 147, 181, 0.18);
  border-radius: 12px;
  background: rgba(8, 10, 15, 0.72);
  backdrop-filter: blur(14px);
}
.stage-visual figcaption span {
  color: var(--steel);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stage-visual figcaption strong {
  font-size: 12px;
}
.stage-visual-ops {
  background: radial-gradient(circle at 50% 46%, rgba(232, 50, 74, 0.11), transparent 34%), #0b0e14;
}
.stage-visual-hq {
  background: radial-gradient(circle at 50% 46%, rgba(124, 147, 181, 0.15), transparent 36%), #0b0e14;
}
.stage-visual-pro {
  background: radial-gradient(circle at 50% 46%, rgba(232, 50, 74, 0.09), transparent 34%), #0b0e14;
}
.roadmap-close {
  margin-top: 65px;
  margin-bottom: 110px;
  padding: 80px;
  overflow: hidden;
  border: 1px solid rgba(232, 50, 74, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(600px 260px at 88% 20%, rgba(232, 50, 74, 0.16), transparent 70%),
    var(--panel);
}
.roadmap-close h2 {
  max-width: 750px;
  margin-top: 12px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.roadmap-close > p:not(.kicker) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--fog);
  font-size: 19px;
}
.roadmap-close small {
  display: block;
  max-width: 680px;
  margin-top: 34px;
  color: #758197;
}
@media (max-width: 980px) {
  .roadmap-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .roadmap-core {
    min-height: 520px;
  }
  .roadmap-nav {
    grid-template-columns: 1fr 1fr;
  }
  .roadmap-nav-item:nth-child(3) {
    border-left: 0;
  }
  .roadmap-nav-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
  .roadmap-stage {
    grid-template-columns: 64px 1fr;
  }
  .stage-visual {
    grid-column: 2;
    min-height: 420px;
  }
}
@media (max-width: 600px) {
  .roadmap-hero {
    min-height: auto;
    padding: 58px 0 62px;
    gap: 42px;
  }
  .roadmap-hero h1 {
    font-size: clamp(43px, 14vw, 58px);
  }
  .roadmap-hero-copy > p:not(.kicker) {
    font-size: 18px;
  }
  .roadmap-hero .button {
    width: 100%;
  }
  .roadmap-core {
    min-height: 390px;
    border-radius: 20px;
  }
  .core-center {
    width: 104px;
    height: 104px;
  }
  .core-label {
    font-size: 9px;
  }
  .core-label-a { left: 5%; top: 15%; }
  .core-label-b { right: 7%; top: 12%; }
  .core-label-c { left: 6%; bottom: 12%; }
  .core-label-d { right: 6%; bottom: 16%; }
  .roadmap-nav {
    grid-template-columns: 1fr;
  }
  .roadmap-nav-item + .roadmap-nav-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .roadmap {
    padding-top: 56px;
  }
  .roadmap::before,
  .roadmap::after {
    top: 56px;
    left: 20px;
  }
  .roadmap-stage {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 55px 0;
  }
  .stage-marker span {
    width: 42px;
    height: 42px;
    box-shadow: 0 0 0 7px var(--bg);
  }
  .stage-copy h2 {
    font-size: 39px;
  }
  .stage-lede {
    font-size: 17px;
  }
  .stage-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .feature-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 0;
  }
  .stage-visual {
    grid-column: 1 / -1;
    min-height: 330px;
    margin-left: 60px;
    border-radius: 18px;
  }
  .stage-visual img {
    width: 74%;
  }
  .stage-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-wrap: wrap;
  }
  .roadmap-close {
    margin-top: 40px;
    margin-bottom: 72px;
    padding: 46px 26px;
  }
  .roadmap-close h2 {
    font-size: 42px;
  }
}
.content {
  padding: 20px 0 100px;
  max-width: 820px;
}
.content h2 {
  font-size: 30px;
  margin: 48px 0 14px;
}
.content h3 {
  margin: 30px 0 10px;
}
.content p,
.content li {
  color: var(--fog);
  font-size: 17px;
}
.content p + p {
  margin-top: 18px;
}
.content ul {
  padding-left: 22px;
  margin-top: 14px;
}
.content a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.article-meta {
  color: var(--steel);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 18px;
}
.insight-article-page main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.insight-article-page main::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -80px;
  width: min(58vw, 820px);
  height: 720px;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(8, 10, 15, 0.12), rgba(8, 10, 15, 0.8) 72%),
    url("/assets/grid-pattern.svg") center / 680px auto no-repeat;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(ellipse at 62% 34%, #000 0, rgba(0, 0, 0, 0.78) 38%, transparent 76%);
  mask-image: radial-gradient(ellipse at 62% 34%, #000 0, rgba(0, 0, 0, 0.78) 38%, transparent 76%);
}
.insight-article-page main::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  height: 680px;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(232, 50, 74, 0.13), transparent 29%),
    radial-gradient(ellipse at 34% 8%, rgba(124, 147, 181, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(15, 18, 27, 0.54), transparent 82%);
}
.insight-article {
  position: relative;
  padding-top: 104px;
}
.insight-article > .article-meta:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9aa8bc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.insight-article > .article-meta:first-child::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(232, 50, 74, 0.42);
}
.insight-article > h1 { margin-top: 22px; }
.insight-article > h2 { position: relative; }
.insight-article > h2::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.2em;
  width: 2px;
  height: 0.8em;
  border-radius: 2px;
  background: linear-gradient(var(--accent), rgba(232, 50, 74, 0.2));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 35px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  background: var(--panel);
}
.contact-card h3 {
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--fog);
}
.contact-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(54px, 7vw, 100px);
  padding-block: 92px 88px;
}
.contact-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10px 0 auto 38%;
  height: 640px;
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 28%, rgba(232, 50, 74, 0.13), transparent 33%),
    url("/assets/grid-pattern.svg") center / 660px auto no-repeat;
  opacity: 0.22;
  -webkit-mask-image: radial-gradient(ellipse, #000 8%, transparent 70%);
  mask-image: radial-gradient(ellipse, #000 8%, transparent 70%);
}
.contact-intro {
  align-self: start;
  padding-top: 20px;
}
.contact-intro h1 {
  max-width: 640px;
  margin-top: 14px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.contact-lead {
  max-width: 580px;
  margin-top: 28px;
  color: var(--fog);
  font-size: 18px;
  line-height: 1.65;
}
.contact-route {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0 18px;
  max-width: 530px;
  margin-top: 48px;
}
.contact-route::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 38px;
  left: 4px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(232, 50, 74, 0.08));
}
.contact-route > span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.contact-route > span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 1px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  background: var(--bg);
  transform: rotate(45deg);
}
.contact-route > div {
  padding: 0 0 27px;
}
.contact-route strong {
  display: block;
  font-size: 15px;
}
.contact-route p {
  margin-top: 3px;
  color: var(--fog);
  font-size: 14px;
  line-height: 1.55;
}
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--fog);
  font-size: 14px;
}
.contact-direct a {
  color: var(--white);
  font-weight: 700;
}
.contact-direct a:hover { color: var(--accent); }
.contact-form-panel {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(23, 27, 39, 0.97), rgba(12, 15, 23, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}
.contact-form-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(transparent 8%, var(--accent) 32%, transparent 76%);
}
.contact-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.contact-form-heading > span {
  font-size: 21px;
  font-weight: 780;
}
.contact-form-heading p {
  color: var(--fog);
  font-size: 12px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  margin-top: 30px;
}
.contact-form label {
  display: grid;
  align-content: start;
  gap: 8px;
}
.contact-form label > span {
  color: #c9d0dc;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #343d4d;
  border-radius: 8px;
  outline: 0;
  background: rgba(7, 9, 14, 0.82);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}
.contact-form select { color-scheme: dark; }
.contact-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}
.contact-form textarea::placeholder { color: #6f7b8f; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #0a0d14;
  box-shadow: 0 0 0 3px rgba(232, 50, 74, 0.12);
}
.contact-form .form-wide { grid-column: 1 / -1; }
.form-scale[hidden],
.form-product[hidden],
.form-success[hidden],
.form-honey { display: none !important; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}
.form-submit p {
  max-width: 330px;
  color: var(--fog);
  font-size: 12px;
  line-height: 1.5;
}
.form-submit .button {
  flex: 0 0 auto;
  min-width: 154px;
  border: 0;
  cursor: pointer;
}
.form-success {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 2px solid var(--good);
  background: rgba(84, 199, 154, 0.08);
}
.form-success span {
  color: var(--fog);
  font-size: 14px;
}
.contact-details {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.4fr;
  border-top: 1px solid var(--line);
  padding-block: 34px 72px;
}
.contact-details > div {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-right: 28px;
}
.contact-details > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.contact-details span {
  color: var(--steel);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-details strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}
.article-list {
  display: grid;
  gap: 14px;
}
.article-row {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 25px;
}
.article-row span {
  color: var(--steel);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}
.article-row p {
  color: var(--fog);
  margin-top: 8px;
}
.insights-library {
  padding: 12px 0 110px;
}
.insights-featured,
.insight-card {
  text-decoration: none !important;
}
.insights-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 54px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(124, 147, 181, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 50, 74, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(19, 23, 34, 0.98), rgba(10, 13, 20, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  transition: border-color 220ms ease, transform 220ms ease;
}
.insights-featured:hover {
  border-color: rgba(232, 50, 74, 0.48);
  transform: translateY(-3px);
}
.insights-featured-copy > span,
.insight-card > span {
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.insights-featured h2 {
  max-width: 700px;
  margin: 20px 0 18px;
  font-size: clamp(34px, 4vw, 52px);
}
.insights-featured p,
.insight-card p {
  color: var(--fog);
}
.insights-featured p {
  max-width: 620px;
  font-size: 17px;
}
.insights-featured strong,
.insight-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #f2f5fa;
  font-size: 13px;
}
.insights-featured i,
.insight-card i {
  color: var(--accent);
  font-style: normal;
  transition: transform 180ms ease;
}
.insights-featured:hover i,
.insight-card:hover i { transform: translateX(4px); }
.stopwatch-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 350px;
  overflow: hidden;
}
.stopwatch-visual::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle, rgba(232, 50, 74, 0.12), transparent 32%),
    url("/assets/grid-pattern.svg") center / 520px auto no-repeat;
  opacity: 0.14;
  -webkit-mask-image: radial-gradient(circle, #000 0, transparent 67%);
  mask-image: radial-gradient(circle, #000 0, transparent 67%);
}
.stopwatch-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 430px;
  max-width: 110%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.42));
}
.insights-supporting {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.insight-card {
  min-height: 310px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(18, 22, 32, 0.76);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 147, 181, 0.42);
  background: rgba(21, 25, 37, 0.9);
}
.insight-card h3 {
  margin: 36px 0 14px;
  font-size: 25px;
  line-height: 1.18;
}
.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: url("/assets/grid-sentry-mark.png?v=20260819") center / cover
    no-repeat;
  color: transparent !important;
  font-size: 0;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -78px -70px 20px;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 15, 0.95),
      rgba(8, 10, 15, 0.75) 38%,
      rgba(8, 10, 15, 0.08) 80%
    ),
    linear-gradient(0deg, rgba(8, 10, 15, 0.96), transparent 38%),
    url("/assets/security-operations-hero.png?v=20260819") 58% center / cover
      no-repeat;
  border-radius: 22px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 16%,
    #000 100%
  );
  mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 100%);
}
.hero::after {
  content: none;
}
.hero h1 {
  max-width: 820px;
}
.hero .lede {
  max-width: 650px;
}
.operator-note {
  color: var(--fog);
  font-size: 18px;
  max-width: 440px;
  margin-top: 24px;
}
.wave-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(
      700px 320px at 50% 45%,
      rgba(124, 147, 181, 0.1),
      transparent 72%
    ),
    #090c12;
}
#bg3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}
.wave-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding-block: 90px;
}
.wave-copy h2 {
  margin: 13px auto 20px;
}
.wave-copy > p:last-child {
  color: var(--fog);
  font-size: 19px;
  max-width: 650px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .contact-intro,
  .contact-lead,
  .contact-route { max-width: 680px; }
}
@media (max-width: 760px) {
  .nav {
    height: 72px;
    padding: 0;
    align-items: center;
  }
  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 44px;
  }
  .nav nav {
    position: absolute;
    z-index: 1;
    top: 62px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line2);
    border-radius: 16px;
    background: rgba(8, 10, 15, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }
  .nav nav a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 15px;
  }
  .nav nav a:hover,
  .nav nav a:focus-visible {
    background: rgba(124, 147, 181, 0.1);
  }
  .nav.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav.menu-open .nav-toggle span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }
  .nav.menu-open .nav-toggle span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }
  .hero {
    padding: 72px 0 55px;
  }
  .contact-hero {
    gap: 42px;
    padding-block: 62px 58px;
  }
  .contact-hero::before {
    inset: 20px 0 auto 4%;
    opacity: 0.16;
  }
  .contact-intro { padding-top: 0; }
  .contact-intro h1 {
    font-size: clamp(43px, 12.5vw, 58px);
    line-height: 1.02;
  }
  .contact-lead {
    margin-top: 22px;
    font-size: 17px;
  }
  .contact-route { margin-top: 38px; }
  .contact-form-panel {
    margin-inline: -2px;
    padding: 28px 22px;
    border-radius: 14px;
  }
  .contact-form-heading {
    display: grid;
    gap: 3px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form .form-wide { grid-column: auto; }
  .form-submit {
    display: grid;
    gap: 18px;
  }
  .form-submit .button { width: 100%; }
  .contact-details {
    grid-template-columns: 1fr;
    padding-block: 28px 58px;
  }
  .contact-details > div {
    padding: 20px 0;
  }
  .contact-details > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .insight-article-page main::before {
    top: -40px;
    right: -250px;
    width: 620px;
    height: 560px;
    background-size: auto, 540px auto;
    opacity: 0.12;
  }
  .insight-article-page main::after { height: 560px; }
  .insight-article { padding-top: 72px; }
  .insight-article > h2::before { left: -12px; }
  .about-hero {
    min-height: auto;
    padding-top: 66px;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .operations-flow {
    padding: 17px;
    border-radius: 15px;
    transform: none;
  }
  .operations-flow::before { left: 39px; }
  .operations-pulse { left: 36px; }
  .about-story {
    grid-template-columns: 5px minmax(0, 1fr);
    gap: 16px;
  }
  h1 {
    font-size: 44px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }
  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .section {
    padding: 72px 0;
  }
  .section-head {
    display: block;
  }
  .section-head > p,
  .section-head > .text-link {
    margin-top: 20px;
  }
  .product-grid,
  .insight-grid,
  .insights-supporting,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 45px;
  }
  .product {
    min-height: 340px;
  }
  .insights-featured {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 27px;
  }
  .stopwatch-visual { min-height: 320px; }
  .stopwatch-visual img {
    width: auto;
    height: 380px;
    max-width: 100%;
    transform: none;
  }
  .insight-card { min-height: auto; padding: 27px; }
  .founder {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .founder-monogram {
    width: 130px;
  }
  .cta {
    display: block;
    padding: 34px 26px;
  }
  .cta h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.12;
  }
  .cta .button {
    margin-top: 25px;
    width: 100%;
    min-height: 54px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero {
    min-height: 720px;
  }
  .hero::before,
  .hero::after {
    inset: -78px -15px 8px;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 10, 15, 0.96), rgba(8, 10, 15, 0.66)),
      linear-gradient(0deg, rgba(8, 10, 15, 0.98), transparent 44%),
      url("/assets/security-operations-hero.png?v=20260819") 64% center / cover
        no-repeat;
  }
}
@media (max-width: 480px) {
  .shell,
  .nav {
    width: min(100% - 30px, var(--max));
  }
  .nav {
    display: flex;
  }
  .brand {
    min-height: 44px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .page-hero.content h1 {
    font-size: clamp(34px, 10.5vw, 39px);
    line-height: 1.08;
  }
  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }
  .product {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid a,
  .footer-bottom a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom > * {
    display: block;
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .scroll-progress {
    display: none;
  }
}
