@import url("https://theblackbook.xyz/wp-content/uploads/elementor/google-fonts/css/montserrat.css?ver=1756502951");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;600;700;800&family=Inter:wght@400;500;700&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --bg: #000;
  --panel: #111;
  --panel-2: #151515;
  --ink: #f1f4f3;
  --muted: #a1a7a4;
  --line: rgba(255,255,255,.1);
  --accent: #18c785;
  --accent-2: #73e7b4;
  --green-glow: rgba(0,255,120,.16);
  --container: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 10%, rgba(0,80,42,.25), transparent 28rem),
    #000;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr 150px;
  align-items: center;
  gap: 24px;
  min-height: 54px;
  padding: 10px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(0,0,0,.86);
  border-bottom: 1px solid rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.8vw, 34px);
  font-size: 11px;
  font-weight: 600;
}

.site-nav a {
  color: #f5f7f6;
  opacity: .9;
  transition: color .2s ease, opacity .2s ease;
}

.site-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.header-cta,
.btn,
.price-card a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.header-cta,
.btn-primary,
.contact-form button {
  color: #04110c;
  background: linear-gradient(180deg, #28d99a, #13be79);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 10px 28px rgba(24,199,133,.18);
}

.btn-ghost {
  color: var(--accent);
  background: rgba(0,0,0,.42);
  box-shadow: inset 0 0 0 1px rgba(24,199,133,.15);
}

.header-cta:hover,
.btn:hover,
.price-card a:hover,
.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(24,199,133,.22);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.field {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,255,120,.12), transparent 28rem),
    linear-gradient(180deg, #07100c, #000 92%);
}

.field::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: url("assets/grid.webp");
  background-size: 680px auto;
  pointer-events: none;
}

.field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(0,255,115,.95) 1.5px, transparent 2.7px),
    radial-gradient(circle, rgba(0,180,78,.7) 1px, transparent 2px);
  background-size: 175px 175px, 295px 295px;
  background-position: 16px 26px, 70px 100px;
  opacity: .72;
  animation: drift 35s linear infinite;
  pointer-events: none;
}

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

.hero {
  min-height: 460px;
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
}

.hero-copy {
  max-width: 520px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 4.7vw, 52px);
  line-height: .92;
  letter-spacing: 0;
  font-weight: 800;
}

.hero p {
  max-width: 510px;
  margin: 0 0 28px;
  color: #f2f5f4;
}

.hero-actions {
  display: flex;
  gap: 66px;
  align-items: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metrics article {
  min-height: 74px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(0,13,8,.54);
  box-shadow: inset 0 0 28px rgba(24,199,133,.035);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.metrics article:hover {
  transform: translateY(-4px);
  border-color: rgba(24,199,133,.38);
  box-shadow: 0 14px 34px rgba(0,0,0,.24), inset 0 0 22px rgba(0,255,120,.08);
}

.metrics span {
  display: block;
  color: #d6ddda;
  font-size: 11px;
}

.metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
  line-height: 1;
}

.metrics em {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--accent);
  font-style: normal;
}

.trusted {
  padding: 12px 0 42px;
  background: #000;
  text-align: center;
}

.trusted p {
  margin: 0 0 14px;
  color: #d8dcda;
  font-size: 11px;
}

.logo-track {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: slideLogos 32s linear infinite;
}

.logo-strip img {
  width: auto;
  max-width: 78px;
  height: 54px;
  object-fit: contain;
  filter: saturate(1.1);
}

.features {
  padding: 38px 0 44px;
  background: #000;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  transition: transform .28s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.icon {
  width: 27px;
  height: 27px;
  color: var(--accent);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.feature h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.why-section,
.trial,
.proof-section,
.faq-section,
.contact-section {
  background: #000;
}

.why-section {
  padding: 54px 0 38px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.copy-block h2,
.section-title h2,
.faq-section h2,
.contact-form h2,
.testimonial-wrap h2 {
  margin: 0 0 18px;
  color: #f4f6f5;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
}

.copy-block p {
  margin: 0 0 13px;
  color: #f2f2f2;
  font-size: 14px;
}

.media-panel {
  position: relative;
  transition: transform .28s ease, filter .28s ease;
}

.media-panel:hover {
  transform: translateY(-5px);
  filter: saturate(1.08);
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  z-index: 0;
  background: radial-gradient(circle, rgba(24,199,133,.18), transparent 68%);
  filter: blur(22px);
}

.media-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
}

.pricing-section {
  padding: 52px 0 44px;
  background: #000;
}

.pricing-head {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 26px;
}

.pricing-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.switcher {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  background: #151515;
}

.switcher button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: #f5f7f6;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.switcher button[aria-selected="true"] {
  color: #06130d;
  background: linear-gradient(180deg, #61c794, #38b578);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.17);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  min-height: 274px;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #151515;
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(24,199,133,.36);
  box-shadow: 0 24px 55px rgba(0,0,0,.36), 0 0 24px rgba(24,199,133,.08);
}

.price-card.is-popular {
  box-shadow: 0 0 0 1px rgba(24,199,133,.18), 0 16px 45px rgba(0,0,0,.38);
}

.price-card.is-popular:hover {
  box-shadow: 0 28px 64px rgba(0,0,0,.42), 0 0 34px rgba(24,199,133,.18);
}

.save-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  display: none;
  padding: 5px 10px;
  border-radius: 999px;
  color: #05120d;
  background: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.save-badge.is-visible {
  display: inline-flex;
}

.price-card h3 {
  margin: 0 0 5px;
  font-size: 21px;
  font-weight: 600;
}

.price-card h3 em {
  display: inline-flex;
  vertical-align: middle;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--accent);
  color: #06120d;
  font-size: 10px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.price span {
  color: #e8e9e8;
  font-size: 18px;
}

.price strong {
  display: inline-block;
  font-size: clamp(44px, 5vw, 52px);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 800;
}

.price strong.is-updated {
  animation: priceTick .42s ease;
}

.price small {
  color: var(--muted);
  font-size: 12px;
}

.price-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #f0f0f0;
  font-size: 12px;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before,
.boost-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-card a {
  width: max-content;
  min-height: 34px;
  margin-top: auto;
  padding: 0 14px;
  color: #fff;
  background: #343434;
}

.price-card.is-popular a {
  color: #05120d;
  background: var(--accent);
}

.boost-section {
  padding: 54px 0;
  background: #000;
}

.boost-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 42px;
  border: 1px solid rgba(76,255,146,.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(24,199,133,.24), transparent 28rem),
    linear-gradient(135deg, #082315, #062013 55%, #092d19);
  box-shadow:
    0 0 26px rgba(24,199,133,.18),
    inset 0 0 20px rgba(24,199,133,.08);
  animation: offerGlow 4.8s ease-in-out infinite;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.boost-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(115,231,180,.55);
  box-shadow:
    0 24px 70px rgba(0,0,0,.38),
    0 0 42px rgba(24,199,133,.24),
    inset 0 0 26px rgba(24,199,133,.12);
}

.boost-card::before,
.boost-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.boost-card::before {
  inset: -2px;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.2) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: offerSweep 5.6s ease-in-out infinite;
}

.boost-card::after {
  inset: 1px;
  border: 1px solid rgba(115,231,180,.28);
  border-radius: 7px;
  box-shadow: inset 0 0 28px rgba(115,231,180,.1);
}

.boost-card > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  width: max-content;
  margin: 0 0 10px;
  padding: 6px 10px;
  border: 1px solid rgba(115,231,180,.38);
  border-radius: 999px;
  color: #06120d;
  background: linear-gradient(180deg, #9ff1c7, var(--accent));
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 0 22px rgba(24,199,133,.28);
  animation: offerBadgePulse 2.4s ease-in-out infinite;
}

.boost-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.boost-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 22px;
  text-shadow: 0 0 20px rgba(24,199,133,.32);
}

.boost-card p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #d5dbd8;
}

.boost-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 13px;
}

.boost-card li {
  position: relative;
  padding-left: 24px;
}

.trial {
  padding: 44px 0 74px;
}

.trial-grid {
  gap: 68px;
}

.trial .copy-block {
  max-width: 530px;
}

.proof-section {
  padding: 56px 0 24px;
}

.section-title {
  margin-bottom: 26px;
  text-align: center;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.proof-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 16px;
}

.proof-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 2);
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.proof-track img {
  width: 100%;
  max-height: 245px;
  object-fit: contain;
  border-radius: 8px;
  background: #030303;
}

.carousel-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.carousel-btn:hover {
  color: var(--accent);
  background: rgba(255,255,255,.05);
}

.testimonials {
  margin-top: 24px;
  padding: 62px 0 76px;
  text-align: center;
}

.testimonial-wrap {
  position: relative;
  max-width: 820px;
}

.testimonial-track {
  min-height: 145px;
  display: grid;
  align-items: center;
}

.testimonial-track blockquote {
  display: none;
  margin: 0 auto;
  max-width: 680px;
  color: #f0f0f0;
  font-size: 15px;
  font-style: italic;
}

.testimonial-track blockquote.active {
  display: block;
}

.testimonial-wrap .prev,
.testimonial-wrap .next {
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
}

.testimonial-wrap .prev { left: 0; }
.testimonial-wrap .next { right: 0; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.testimonial-dots span.active {
  background: var(--accent);
}

.faq-section {
  padding: 66px 0 46px;
}

.faq-section h2 {
  margin-bottom: 22px;
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 13px 34px 13px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 11px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0 0 12px;
  color: #ececec;
}

.contact-section {
  padding: 38px 0 78px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
}

.contact-form {
  padding: 44px;
  border: 1px solid rgba(255,255,255,.22);
  background: #131313;
  box-shadow: 0 0 12px rgba(255,255,255,.24);
}

.contact-form h2 {
  margin-bottom: 22px;
  text-align: center;
  font-size: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px dotted rgba(255,255,255,.25);
  border-radius: 0;
  color: #f4f4f4;
  background: transparent;
  outline: none;
  padding: 10px 0;
  font-size: 12px;
}

.contact-form textarea {
  margin-top: 10px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--accent);
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--accent);
  font-size: 12px;
  text-align: center;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.home-page {
  --container: 1340px;
  background:
    radial-gradient(circle at 78% 6%, rgba(29,78,216,.14), transparent 34rem),
    radial-gradient(circle at 16% 18%, rgba(24,199,133,.12), transparent 30rem),
    #000;
}

.home-header {
  grid-template-columns: 210px 1fr 150px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 66px 0 72px;
  background:
    linear-gradient(180deg, rgba(4,8,7,.96), rgba(0,0,0,1) 92%),
    #000;
}

.home-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 68% 40%, #000, transparent 70%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, .9fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.home-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(255,255,255,.035);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(56px, 6.2vw, 104px);
  line-height: .88;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero-copy > p:not(.home-kicker) {
  max-width: 640px;
  margin: 0 0 30px;
  color: #d7ddda;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.compact-actions {
  gap: 18px;
}

.momentum-dashboard {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(59,130,246,.18), transparent 23rem),
    radial-gradient(circle at 18% 18%, rgba(24,199,133,.16), transparent 20rem),
    rgba(8,11,12,.88);
  box-shadow: 0 28px 80px rgba(0,0,0,.54), inset 0 0 0 1px rgba(255,255,255,.04);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #dfe6e3;
  font-size: 12px;
}

.dash-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #59615f;
}

.dash-topbar span:first-child { background: #ff7058; }
.dash-topbar span:nth-child(2) { background: #f5c451; }
.dash-topbar span:nth-child(3) { background: #43d18d; }
.dash-topbar strong { margin-left: auto; font-weight: 700; }

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 0;
}

.signal-row article {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.signal-row span,
.floating-post small {
  color: #9aa7a3;
  font-size: 11px;
}

.signal-row strong {
  display: block;
  margin-top: 7px;
  font-size: 25px;
}

.signal-row em {
  color: #73e7b4;
  font-size: 11px;
  font-style: normal;
}

.activity-stage {
  position: relative;
  min-height: 386px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(0,0,0,.2);
  background-size: 40px 40px;
}

.network-map {
  position: absolute;
  inset: 16px;
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  inset: 22% 8% 18%;
  border: 1px solid rgba(115,231,180,.14);
  border-radius: 50%;
  animation: mapPulse 5s ease-in-out infinite;
}

.network-map::after {
  inset: 10% 18% 30% 4%;
  border-color: rgba(96,165,250,.14);
  animation-delay: -1.4s;
}

.network-map span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(115,231,180,.55);
}

.network-map span:nth-child(1) { left: 18%; top: 28%; }
.network-map span:nth-child(2) { left: 58%; top: 18%; background: #93c5fd; }
.network-map span:nth-child(3) { left: 76%; top: 58%; }
.network-map span:nth-child(4) { left: 36%; top: 72%; background: #d9f99d; }
.network-map span:nth-child(5) { left: 52%; top: 48%; }

.floating-post {
  position: absolute;
  width: min(280px, 47%);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(13,17,18,.9);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  animation: floatCard 7s ease-in-out infinite;
}

.floating-post p {
  margin: 7px 0 12px;
  color: #eef4f1;
  font-size: 13px;
  line-height: 1.35;
}

.floating-post div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.floating-post div span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #cfe7dc;
  background: rgba(24,199,133,.1);
  font-size: 10px;
}

.post-one { left: 8%; top: 18%; }
.post-two { right: 6%; top: 36%; animation-delay: -1.8s; }
.post-three { left: 24%; bottom: 10%; animation-delay: -3s; }

.spike-chart {
  position: absolute;
  right: 7%;
  bottom: 9%;
  display: flex;
  align-items: end;
  gap: 7px;
  width: 150px;
  height: 84px;
}

.spike-chart i {
  flex: 1;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #93c5fd, var(--accent));
  animation: spike 1.7s ease-in-out infinite;
}

.spike-chart i:nth-child(1) { height: 24%; }
.spike-chart i:nth-child(2) { height: 36%; animation-delay: -.2s; }
.spike-chart i:nth-child(3) { height: 52%; animation-delay: -.4s; }
.spike-chart i:nth-child(4) { height: 86%; animation-delay: -.6s; }
.spike-chart i:nth-child(5) { height: 64%; animation-delay: -.8s; }
.spike-chart i:nth-child(6) { height: 72%; animation-delay: -1s; }
.spike-chart i:nth-child(7) { height: 92%; animation-delay: -1.2s; }

.home-trusted {
  padding-top: 18px;
}

.brand-rail {
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: brandRail 36s linear infinite;
}

.brand-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 66px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: #f4f7f6;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 20px rgba(255,255,255,.025);
}

.brand-strip img {
  max-width: 122px;
  max-height: 32px;
  object-fit: contain;
}

.brand-strip .wordmark {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.distribution-section,
.ecosystems-section,
.home-contact {
  padding: 74px 0;
  background: #000;
}

.distribution-grid,
.contact-home-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.section-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .98;
}

.section-copy p:not(.home-kicker) {
  margin: 0 0 24px;
  color: #cbd4d0;
  font-size: 16px;
}

.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 560px;
}

.vertical-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #dfe7e3;
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 800;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cred-grid article {
  min-height: 200px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #080a0a;
}

.cred-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .96;
}

.cred-grid span {
  color: #aab4b0;
  font-size: 13px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.audience-grid span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #eef4f1;
  background: rgba(255,255,255,.035);
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.audience-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(115,231,180,.34);
  background: rgba(24,199,133,.07);
}

.home-proof {
  padding-top: 74px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 28px;
}

.review-stack {
  display: grid;
  gap: 14px;
}

.review-stack blockquote {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #e8eeeb;
  background: #111;
  font-size: 15px;
  line-height: 1.55;
}

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.contact-panel[aria-hidden="false"] {
  display: block;
}

.contact-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}

.contact-panel__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, calc(100% - 32px));
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0,0,0,.55), 0 0 34px rgba(24,199,133,.1);
  transform: translate(-50%, -50%);
}

.contact-panel__dialog h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.contact-panel__dialog p:not(.home-kicker) {
  margin: 0 0 20px;
  color: #b7c1bd;
}

.contact-panel__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  min-height: 34px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.07);
}

.contact-options {
  display: grid;
  gap: 10px;
}

.contact-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

.contact-options a::after {
  content: "\2197";
  color: var(--accent-2);
}

.contact-options a:hover {
  border-color: rgba(115,231,180,.4);
  background: rgba(24,199,133,.09);
}

body.contact-panel-open {
  overflow: hidden;
}

.site-footer {
  padding: 44px 0 34px;
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-grid img {
  width: 150px;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: #a4a4a4;
  font-size: 11px;
}

.footer-grid a:last-child {
  justify-self: end;
}

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { background-position: 16px 26px, 70px 100px; }
  to { background-position: 191px 201px, 365px 395px; }
}

@keyframes slideLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes offerGlow {
  0%, 100% {
    box-shadow:
      0 0 26px rgba(24,199,133,.18),
      inset 0 0 20px rgba(24,199,133,.08);
  }
  50% {
    box-shadow:
      0 0 44px rgba(24,199,133,.32),
      0 0 86px rgba(24,199,133,.08),
      inset 0 0 26px rgba(24,199,133,.12);
  }
}

@keyframes offerSweep {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: .9; }
  68%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes offerBadgePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 18px rgba(24,199,133,.24);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(24,199,133,.42);
  }
}

@keyframes priceTick {
  0% { transform: translateY(0) scale(1); color: var(--ink); }
  45% { transform: translateY(-3px) scale(1.035); color: var(--accent-2); }
  100% { transform: translateY(0) scale(1); color: var(--ink); }
}

@keyframes brandRail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes mapPulse {
  0%, 100% {
    transform: scale(.98);
    opacity: .5;
  }
  50% {
    transform: scale(1.03);
    opacity: .95;
  }
}

@keyframes spike {
  0%, 100% { filter: brightness(.86); transform: scaleY(.92); }
  50% { filter: brightness(1.25); transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .home-page {
    --container: 1120px;
  }

  .home-hero {
    padding-top: 58px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .82fr);
    gap: 32px;
  }

  .home-hero h1 {
    font-size: clamp(52px, 7vw, 82px);
  }

  .momentum-dashboard {
    min-height: 480px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 9px 20px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(5,7,6,.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .hero-grid,
  .split,
  .home-hero-grid,
  .distribution-grid,
  .contact-home-grid,
  .proof-layout,
  .boost-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid {
    gap: 38px;
  }

  .home-header {
    grid-template-columns: 1fr auto;
  }

  .home-hero {
    min-height: auto;
    padding: 74px 0 56px;
  }

  .home-hero-grid,
  .distribution-grid,
  .contact-home-grid {
    gap: 36px;
  }

  .momentum-dashboard {
    min-height: 500px;
  }

  .cred-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cred-grid article {
    min-height: 150px;
  }

  .pricing-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 28px;
  }

  .proof-track {
    grid-auto-columns: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-grid a:last-child {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  body {
    font-size: 13px;
  }

  .brand img {
    width: 144px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 48px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions {
    gap: 12px;
    flex-wrap: wrap;
  }

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

  .metrics article {
    min-height: 64px;
  }

  .trusted {
    padding-bottom: 28px;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .home-kicker {
    width: auto;
  }

  .momentum-dashboard {
    min-height: 560px;
    padding: 12px;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .activity-stage {
    min-height: 360px;
  }

  .floating-post {
    width: min(270px, 82%);
  }

  .post-one { left: 6%; top: 8%; }
  .post-two { right: 5%; top: 37%; }
  .post-three { left: 8%; bottom: 8%; }

  .spike-chart {
    right: 8%;
    bottom: 31%;
    width: 112px;
    height: 58px;
  }

  .brand-strip span {
    min-width: 138px;
    height: 58px;
  }

  .distribution-section,
  .ecosystems-section,
  .home-contact,
  .home-proof {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .section-copy h2 {
    font-size: 34px;
  }

  .logo-strip {
    gap: 42px;
  }

  .logo-strip img {
    max-width: 62px;
    height: 42px;
  }

  .why-section,
  .pricing-section,
  .boost-section,
  .trial,
  .proof-section,
  .faq-section,
  .contact-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

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

  .price-card {
    min-height: 250px;
  }

  .boost-card {
    padding: 28px 24px;
  }

  .proof-carousel {
    grid-template-columns: 28px 1fr 28px;
    gap: 6px;
  }

  .testimonial-wrap .prev,
  .testimonial-wrap .next {
    position: static;
    transform: none;
    margin: 12px 6px 0;
  }

  .testimonial-track {
    min-height: 250px;
  }

  .testimonial-track blockquote {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 30px 24px;
  }
}

/* Infrastructure homepage redesign */
body.infrastructure-page {
  --infra-bg: #050505;
  --infra-surface: #121212;
  --infra-surface-low: #0e0e0e;
  --infra-surface-high: #1a1a1a;
  --infra-line: rgba(142,145,146,.32);
  --infra-line-strong: rgba(255,255,255,.14);
  --infra-text: #f2f0ef;
  --infra-muted: #b8bcbd;
  --infra-green: #62ff96;
  --infra-blue: #b1c5ff;
  --infra-error: #ffb4ab;
  --infra-container: 1440px;
  min-height: 100vh;
  color: var(--infra-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(98,255,150,.08), transparent 36rem),
    var(--infra-bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.infrastructure-page a {
  text-decoration: none;
}

.infra-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 max(20px, calc((100vw - var(--infra-container)) / 2 + 48px));
  border-bottom: 1px solid rgba(68,71,72,.5);
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(14px);
}

.infra-brand {
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.infra-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.infra-nav a {
  position: relative;
  color: var(--infra-muted);
  opacity: 1;
  transition: color .2s ease;
}

.infra-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--infra-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.infra-nav a:hover,
.infra-nav a.is-active {
  color: #fff;
}

.infra-nav a.is-active::after {
  transform: scaleX(1);
}

.infra-button,
.infrastructure-page .contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: max-content;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.infra-button:hover,
.infrastructure-page .contact-form button:hover {
  transform: translateY(-2px);
}

.infra-button--primary,
.infrastructure-page .contact-form button {
  color: #050505;
  background: #fff;
  box-shadow: none;
}

.infra-button--primary:hover,
.infrastructure-page .contact-form button:hover {
  background: var(--infra-green);
  color: #00210b;
  box-shadow: 0 0 24px rgba(98,255,150,.16);
}

.infra-button--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: transparent;
}

.infra-button--ghost:hover {
  border-color: var(--infra-green);
  color: var(--infra-green);
  background: rgba(98,255,150,.06);
}

.infra-button--dark {
  color: #fff;
  background: #050505;
}

.infra-menu-toggle {
  display: none;
  border-radius: 0;
}

.infra-main {
  background: var(--infra-bg);
}

.grid-bg-panel {
  background-size: 40px 40px;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5,5,5,.74), rgba(5,5,5,1));
}

.infra-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 112px 20px 70px;
  border-bottom: 1px solid rgba(68,71,72,.28);
  overflow: hidden;
}

.infra-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(98,255,150,.13), transparent 22rem),
    linear-gradient(180deg, transparent 0%, rgba(5,5,5,.52) 72%, #050505 100%);
  pointer-events: none;
}

.infra-hero__inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.infra-hero h1,
.infra-service__heading h2,
.infra-case-cta h2,
.infra-final-cta h2,
.infra-feedback__title h2 {
  margin: 0;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.infra-hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(50px, 7.6vw, 96px);
  font-weight: 800;
  line-height: .96;
  padding-bottom: .08em;
  text-transform: none;
  text-shadow: 0 0 34px rgba(255,255,255,.09);
}

.infra-hero h1 span {
  display: block;
  color: var(--infra-green);
}

.infra-hero p {
  width: min(720px, 100%);
  margin: 0 auto 28px;
  color: var(--infra-muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.72;
}

.infra-hero__actions,
.infra-final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.infra-signal-section {
  position: relative;
  padding: 86px 0;
  border-bottom: 1px solid rgba(68,71,72,.3);
  background:
    radial-gradient(circle at 78% 42%, rgba(98,255,150,.08), transparent 30rem),
    #050505;
  overflow: hidden;
}

.infra-signal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 72% 45%, #000, transparent 70%);
  pointer-events: none;
}

.infra-signal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(500px, .98fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: min(var(--infra-container), calc(100% - 96px));
  margin: 0 auto;
}

.infra-signal-copy h2 {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 800;
  line-height: .96;
  text-transform: uppercase;
  text-wrap: balance;
}

.infra-signal-copy > p {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--infra-muted);
  font-size: 16px;
  line-height: 1.72;
}

.infra-principles {
  display: grid;
  gap: 12px;
}

.infra-principles article {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-left: 2px solid var(--infra-green);
  background: rgba(18,18,18,.78);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.infra-principles article:hover {
  transform: translateY(-3px);
  border-color: rgba(98,255,150,.34);
  background: rgba(98,255,150,.055);
}

.infra-principles strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.infra-principles p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 13px;
  line-height: 1.55;
}

.infra-signal-visual {
  position: relative;
}

.infra-signal-visual figure,
.infra-inline-image,
.infra-proof-media {
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b0d0d;
  box-shadow: 0 26px 80px rgba(0,0,0,.42), 0 0 34px rgba(98,255,150,.07);
}

.infra-signal-visual figure {
  overflow: hidden;
}

.infra-signal-visual img,
.infra-inline-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.infra-live-metrics {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,5,.86);
  backdrop-filter: blur(14px);
}

.infra-live-metrics article {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.infra-live-metrics span {
  display: block;
  color: var(--infra-muted);
  font-size: 11px;
}

.infra-live-metrics strong {
  display: block;
  margin: 7px 0 4px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1;
}

.infra-live-metrics em {
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-style: normal;
}

.infra-service {
  border-bottom: 1px solid rgba(68,71,72,.3);
  background: #050505;
}

.infra-service--alternate {
  background: rgba(14,14,14,.72);
}

.infra-service--critical {
  border-left: 4px solid rgba(255,180,171,.44);
}

.infra-service__inner,
.infra-feedback__inner,
.infra-footer__inner {
  width: min(var(--infra-container), calc(100% - 96px));
  margin: 0 auto;
}

.infra-service__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 132px);
  align-items: start;
  min-height: 360px;
  padding: 86px 0;
}

.infra-service--alternate .infra-service__heading {
  grid-column: 2;
}

.infra-service--alternate .infra-service__body {
  grid-column: 1;
  grid-row: 1;
}

.infra-service__heading {
  position: sticky;
  top: 104px;
}

.infra-service__heading h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 800;
  line-height: .9;
  text-wrap: balance;
}

.infra-service__body {
  padding-top: 4px;
  color: var(--infra-muted);
}

.infra-service__body h3 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(21px, 2.3vw, 32px);
  line-height: 1.12;
}

.infra-service__body p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--infra-muted);
  font-size: 15px;
  line-height: 1.72;
}

.infra-service__body a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.infra-service__body a:hover {
  color: var(--infra-green);
}

.infra-inline-image {
  width: min(620px, 100%);
  margin-bottom: 26px;
  overflow: hidden;
}

.infra-inline-image img {
  aspect-ratio: 16 / 9;
}

.infra-terminal-card,
.infra-metric-tile {
  width: min(430px, 100%);
  padding: 24px;
  border: 1px solid var(--infra-line-strong);
  background: var(--infra-surface);
}

.infra-terminal-card span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  color: #050505;
  background: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
}

.infra-terminal-card strong,
.infra-data-line,
.infra-warning-row span,
.infra-metric-tile span,
.infra-sector-grid span,
.infra-split-tags span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.infra-terminal-card strong {
  display: block;
  color: var(--infra-muted);
}

.infra-data-line {
  padding-top: 22px;
  border-top: 1px solid var(--infra-line);
  color: var(--infra-green);
}

.infra-split-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 470px;
}

.infra-split-tags span,
.infra-sector-grid span {
  display: block;
  padding: 18px;
  border-left: 2px solid var(--infra-blue);
  background: var(--infra-surface);
  color: var(--infra-muted);
}

.infra-split-tags strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: none;
}

.infra-warning-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.infra-warning-row span {
  padding: 11px 13px;
  border: 1px solid rgba(255,180,171,.55);
  color: var(--infra-error);
}

.infra-metric-tile {
  border-color: rgba(177,197,255,.24);
  background: rgba(177,197,255,.08);
}

.infra-metric-tile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--infra-blue);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

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

.infra-sector-grid span {
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.1);
  border-left: 2px solid var(--infra-green);
  color: #fff;
}

.infra-case-cta {
  padding: 84px 20px;
  color: #050505;
  background: #fff;
  text-align: center;
}

.infra-case-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 5.4vw, 67px);
  font-weight: 800;
  line-height: .92;
}

.infra-feedback {
  padding: 86px 0;
  border-bottom: 1px solid rgba(68,71,72,.3);
  background: #050505;
}

.infra-feedback__title {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 64px;
}

.infra-feedback__title h2 {
  color: #fff;
  font-size: clamp(27px, 3.6vw, 43px);
  line-height: 1;
  white-space: nowrap;
}

.infra-feedback__title > span {
  height: 1px;
  flex: 1;
  background: var(--infra-line);
}

.infra-feedback__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.infra-proof-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 46px;
  padding: 10px;
}

.infra-proof-media img {
  width: 100%;
  min-height: 210px;
  max-height: 280px;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255,255,255,.08);
}

.infra-feedback article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.infra-feedback article p {
  flex: 1;
  margin: 0 0 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #e5e2e1;
  font-size: 15px;
  font-style: italic;
  line-height: 1.72;
}

.infra-feedback article strong {
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.infra-feedback article span {
  margin-top: 8px;
  color: var(--infra-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.infra-final-cta {
  padding: 78px 20px 86px;
  text-align: center;
  background: #050505;
}

.infra-final-cta h2 {
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: .95;
}

.infra-final-cta h2 span,
.infra-title-accent {
  color: var(--infra-green);
}

/* Infrastructure animation layer */
.infra-header {
  transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.infra-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98,255,150,.78), rgba(177,197,255,.6), transparent);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.infra-header.is-scrolled {
  border-color: rgba(98,255,150,.18);
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(18px);
}

.infra-button,
.infrastructure-page .contact-form button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.infra-button::after,
.infrastructure-page .contact-form button::after {
  content: "";
  position: absolute;
  inset: -45% -60%;
  z-index: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.24) 50%, transparent 65%);
  transform: translateX(-70%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.infra-button:hover::after,
.infra-button:focus-visible::after,
.infrastructure-page .contact-form button:hover::after,
.infrastructure-page .contact-form button:focus-visible::after {
  transform: translateX(70%) rotate(8deg);
  opacity: 1;
}

.infra-button:focus-visible,
.infra-nav a:focus-visible,
.infra-footer a:focus-visible,
.infrastructure-page .contact-options a:focus-visible,
.infrastructure-page .contact-panel__close:focus-visible,
.infrastructure-page .contact-form input:focus-visible,
.infrastructure-page .contact-form textarea:focus-visible {
  outline: 1px solid var(--infra-green);
  outline-offset: 4px;
}

.infra-hero.grid-bg-panel {
  background-position: 0 0, 0 0;
  animation: infraGridDrift 44s linear infinite;
}

.infra-hero::before {
  animation: infraHeroGlow 8s ease-in-out infinite;
}

.has-js .infrastructure-page .infra-hero__inner h1,
.has-js .infrastructure-page .infra-hero__inner p,
.has-js .infrastructure-page .infra-hero__actions {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 18px, 0);
}

.has-js .infrastructure-page .infra-hero__inner h1 {
  clip-path: inset(0 0 18% 0);
}

.has-js body.infrastructure-page.page-loaded .infra-hero__inner.is-visible h1,
.has-js body.infrastructure-page.page-loaded .infra-hero__inner.is-visible p,
.has-js body.infrastructure-page.page-loaded .infra-hero__inner.is-visible .infra-hero__actions {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  clip-path: inset(-8% -2% -14% -2%);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    filter .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1),
    clip-path 1s cubic-bezier(.22, 1, .36, 1);
}

.has-js body.infrastructure-page.page-loaded .infra-hero__inner.is-visible p {
  transition-delay: .14s;
}

.has-js body.infrastructure-page.page-loaded .infra-hero__inner.is-visible .infra-hero__actions {
  transition-delay: .24s;
}

.has-js .infrastructure-page .infra-service__heading.reveal {
  transform: translate3d(-28px, 0, 0);
}

.has-js .infrastructure-page .infra-service--alternate .infra-service__heading.reveal {
  transform: translate3d(28px, 0, 0);
}

.has-js .infrastructure-page .infra-service__body.reveal,
.has-js .infrastructure-page .infra-case-cta.reveal,
.has-js .infrastructure-page .infra-feedback__title.reveal,
.has-js .infrastructure-page .infra-feedback article.reveal,
.has-js .infrastructure-page .infra-final-cta__inner.reveal {
  transform: translate3d(0, 24px, 0);
}

.has-js .infrastructure-page .infra-service__heading.reveal,
.has-js .infrastructure-page .infra-service__body.reveal,
.has-js .infrastructure-page .infra-case-cta.reveal,
.has-js .infrastructure-page .infra-feedback__title.reveal,
.has-js .infrastructure-page .infra-feedback article.reveal,
.has-js .infrastructure-page .infra-final-cta__inner.reveal {
  filter: blur(8px);
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1),
    filter .82s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .infrastructure-page .infra-service__heading.reveal.is-visible,
.has-js .infrastructure-page .infra-service__body.reveal.is-visible,
.has-js .infrastructure-page .infra-case-cta.reveal.is-visible,
.has-js .infrastructure-page .infra-feedback__title.reveal.is-visible,
.has-js .infrastructure-page .infra-feedback article.reveal.is-visible,
.has-js .infrastructure-page .infra-final-cta__inner.reveal.is-visible {
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.has-js .infrastructure-page .infra-service__body:not(.is-visible) .infra-sector-grid span,
.has-js .infrastructure-page .infra-service__body:not(.is-visible) .infra-split-tags span,
.has-js .infrastructure-page .infra-service__body:not(.is-visible) .infra-warning-row span {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.has-js .infrastructure-page .infra-service__body.is-visible .infra-sector-grid span,
.has-js .infrastructure-page .infra-service__body.is-visible .infra-split-tags span,
.has-js .infrastructure-page .infra-service__body.is-visible .infra-warning-row span {
  animation: infraItemRise .62s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: calc(130ms + (var(--item-index, 0) * 48ms));
}

.infra-terminal-card,
.infra-metric-tile,
.infra-sector-grid span,
.infra-split-tags span,
.infra-warning-row span,
.infra-principles article,
.infra-signal-visual figure,
.infra-inline-image,
.infra-proof-media img,
.infra-feedback article,
.infrastructure-page .contact-options a {
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease, color .28s ease;
}

.infra-terminal-card,
.infra-metric-tile,
.infra-signal-visual figure,
.infra-inline-image,
.infra-feedback article {
  position: relative;
  overflow: hidden;
}

.infra-terminal-card::after,
.infra-metric-tile::after,
.infra-signal-visual figure::after,
.infra-inline-image::after,
.infra-feedback article::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(98,255,150,.1), transparent 38%, rgba(177,197,255,.08));
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.infra-terminal-card:hover,
.infra-metric-tile:hover,
.infra-signal-visual figure:hover,
.infra-inline-image:hover,
.infra-feedback article:hover {
  transform: translateY(-5px);
  border-color: rgba(98,255,150,.28);
  box-shadow: 0 22px 54px rgba(0,0,0,.32), 0 0 28px rgba(98,255,150,.07);
}

.infra-terminal-card:hover::after,
.infra-metric-tile:hover::after,
.infra-signal-visual figure:hover::after,
.infra-inline-image:hover::after,
.infra-feedback article:hover::after {
  opacity: 1;
}

.infra-sector-grid span:hover,
.infra-split-tags span:hover,
.infra-warning-row span:hover,
.infra-proof-media img:hover,
.infrastructure-page .contact-options a:hover {
  transform: translateY(-3px);
  border-color: rgba(98,255,150,.35);
  background: rgba(98,255,150,.055);
}

.contact-panel[aria-hidden="false"] .contact-panel__backdrop {
  animation: infraBackdropIn .22s ease both;
}

.contact-panel[aria-hidden="false"] .contact-panel__dialog {
  animation: infraDialogIn .34s cubic-bezier(.22, 1, .36, 1) both;
}

.infrastructure-page .contact-panel__dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: rgba(18,18,18,.98);
  box-shadow: 0 30px 100px rgba(0,0,0,.72), 0 0 34px rgba(98,255,150,.08);
}

.infrastructure-page .contact-panel__dialog h2 {
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.infrastructure-page .contact-panel__dialog p:not(.form-status) {
  color: var(--infra-muted);
}

.infrastructure-page .contact-panel__close {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
}

.infrastructure-page .contact-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.infrastructure-page .contact-options a {
  min-height: 56px;
  border-radius: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.infrastructure-page .contact-options a[hidden] {
  display: none;
}

.infrastructure-page .contact-form {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0e0e0e;
  box-shadow: none;
}

.infrastructure-page .contact-form h2 {
  margin: 0 0 20px;
  text-align: left;
  font-size: 24px;
}

.infrastructure-page .contact-form input,
.infrastructure-page .contact-form textarea {
  border-bottom: 1px solid rgba(255,255,255,.24);
  color: #fff;
  font-family: "Inter", sans-serif;
}

.infrastructure-page .contact-form input:focus,
.infrastructure-page .contact-form textarea:focus {
  border-bottom-color: var(--infra-green);
}

.infrastructure-page .form-status {
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
}

.infra-footer {
  border-top: 1px solid rgba(68,71,72,.36);
  background: #050505;
}

.infra-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 34px 0;
}

.infra-footer p {
  margin: 12px 0 0;
  color: var(--infra-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.infra-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.infra-footer nav a {
  color: var(--infra-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.infra-footer nav a:hover {
  color: var(--infra-green);
}

.infra-footer__inner > p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

@keyframes infraGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 40px 40px, 0 0; }
}

@keyframes infraHeroGlow {
  0%, 100% {
    opacity: .82;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes infraItemRise {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes infraBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes infraDialogIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes infraPulse {
  0%, 100% {
    transform: scale(.92);
    box-shadow: 0 0 0 0 rgba(98,255,150,.48);
  }
  60% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(98,255,150,0);
  }
}

@media (max-width: 1080px) {
  .infra-header {
    grid-template-columns: 180px 1fr 170px;
    padding-inline: 32px;
  }

  .infra-service__inner,
  .infra-signal-grid,
  .infra-feedback__inner,
  .infra-footer__inner {
    width: min(var(--infra-container), calc(100% - 64px));
  }

  .infra-signal-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .infra-live-metrics {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 10px;
  }

  .infra-service__inner {
    gap: 48px;
  }

  .infra-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .infra-header {
    grid-template-columns: 1fr auto;
    min-height: 60px;
    padding-inline: 20px;
  }

  .infra-header > .infra-button {
    display: none;
  }

  .infra-menu-toggle {
    display: block;
    grid-column: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.16);
    background: transparent;
  }

  .infra-menu-toggle span {
    background: #fff;
  }

  .infra-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--infra-line-strong);
    background: rgba(5,5,5,.96);
  }

  .infra-nav.is-open {
    display: flex;
  }

  .infra-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .infra-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .infra-hero h1 {
    font-size: clamp(48px, 15vw, 82px);
  }

  .infra-service__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0;
  }

  .infra-service--alternate .infra-service__heading,
  .infra-service--alternate .infra-service__body {
    grid-column: auto;
    grid-row: auto;
  }

  .infra-service__heading {
    position: static;
  }

  .has-js .infrastructure-page .infra-service__heading.reveal,
  .has-js .infrastructure-page .infra-service--alternate .infra-service__heading.reveal {
    transform: translate3d(0, 20px, 0);
  }

  .infra-service__heading h2 {
    font-size: clamp(38px, 12vw, 64px);
  }

  .infra-feedback__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .infra-feedback__title h2 {
    white-space: normal;
  }

  .infra-feedback__title > span {
    width: 100%;
    flex: none;
  }

  .infra-feedback__grid,
  .infra-proof-media,
  .infra-footer__inner {
    grid-template-columns: 1fr;
  }

  .infra-feedback article {
    min-height: 0;
  }

  .infra-footer nav {
    justify-content: flex-start;
  }

  .infra-footer__inner > p {
    justify-self: start;
    text-align: left;
  }

  .infrastructure-page .contact-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .infra-service__inner,
  .infra-signal-grid,
  .infra-feedback__inner,
  .infra-footer__inner {
    width: min(100% - 36px, var(--infra-container));
  }

  .infra-signal-section {
    padding: 60px 0;
  }

  .infra-signal-copy h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .infra-live-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-live-metrics article {
    min-height: 78px;
    padding: 12px;
  }

  .infra-proof-media img {
    min-height: 170px;
  }

  .infra-hero {
    padding-inline: 18px;
  }

  .infra-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
    line-height: .98;
  }

  .infra-hero__actions,
  .infra-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .infra-button,
  .infrastructure-page .contact-form button {
    width: 100%;
  }

  .infra-split-tags,
  .infra-sector-grid {
    grid-template-columns: 1fr;
  }

  .infra-case-cta {
    padding: 68px 18px;
  }

  .infrastructure-page .contact-panel__dialog {
    padding: 24px 18px;
  }

  .infrastructure-page .contact-form {
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .infra-hero.grid-bg-panel,
  .infra-hero::before,
  .contact-panel[aria-hidden="false"] .contact-panel__backdrop,
  .contact-panel[aria-hidden="false"] .contact-panel__dialog,
  .has-js .infrastructure-page .infra-service__body.is-visible .infra-sector-grid span,
  .has-js .infrastructure-page .infra-service__body.is-visible .infra-split-tags span,
  .has-js .infrastructure-page .infra-service__body.is-visible .infra-warning-row span {
    animation: none !important;
  }

  .has-js .infrastructure-page .infra-hero__inner h1,
  .has-js .infrastructure-page .infra-hero__inner p,
  .has-js .infrastructure-page .infra-hero__actions,
  .has-js .infrastructure-page .reveal,
  .has-js .infrastructure-page .infra-sector-grid span,
  .has-js .infrastructure-page .infra-split-tags span,
  .has-js .infrastructure-page .infra-warning-row span {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* Homepage redesign: cinematic hero, trusted rail, distribution band, service cards */
.infrastructure-page .infra-nav a[href="#intelligence"]::after {
  content: "";
}

.infra-hero--cinematic {
  min-height: 100svh;
  padding: 116px 24px 88px;
  isolation: isolate;
}

.infra-hero--cinematic::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  z-index: 0;
  background: linear-gradient(180deg, transparent, #050505 78%);
  pointer-events: none;
}

.infra-hero--cinematic .infra-hero__inner {
  z-index: 3;
  width: min(1180px, 100%);
}

.infra-hero--cinematic h1 {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
  font-size: clamp(66px, 10.6vw, 158px);
  line-height: .88;
  letter-spacing: 0;
  text-shadow: 0 0 42px rgba(255,255,255,.12), 0 20px 90px rgba(0,0,0,.88);
}

.infra-hero--cinematic h1 .infra-hero-accent {
  display: inline;
  color: var(--infra-green);
  text-shadow: 0 0 34px rgba(98,255,150,.2), 0 20px 90px rgba(0,0,0,.88);
}

.infra-hero--cinematic p {
  width: min(780px, 100%);
  margin-bottom: 34px;
  color: rgba(235,242,238,.86);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.62;
}

.infra-hero-orbit {
  --hero-mx: 0px;
  --hero-my: 0px;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: translate3d(var(--hero-mx), var(--hero-my), 0);
  transition: transform .18s ease-out;
  pointer-events: none;
}

.infra-hero-orbit::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8%;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(rgba(98,255,150,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177,197,255,.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0 45%, transparent 78%);
  opacity: .72;
}

.infra-hero-network {
  position: absolute;
  inset: 6% 0 0;
  width: 100%;
  height: 86%;
  opacity: .62;
}

.infra-hero-network path {
  fill: none;
  stroke: rgba(98,255,150,.24);
  stroke-width: 1;
  stroke-dasharray: 8 18;
  animation: infraNetworkFlow 18s linear infinite;
}

.infra-hero-network path:nth-child(2) {
  stroke: rgba(177,197,255,.18);
  animation-duration: 24s;
  animation-direction: reverse;
}

.infra-hero-network circle {
  fill: rgba(255,255,255,.92);
  filter: drop-shadow(0 0 10px rgba(98,255,150,.8));
  animation: infraNodePulse 4.8s ease-in-out infinite;
}

.infra-float-card {
  position: absolute;
  width: min(292px, 36vw);
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(135deg, rgba(16,20,19,.72), rgba(8,10,10,.5));
  box-shadow: 0 28px 80px rgba(0,0,0,.38), 0 0 28px rgba(98,255,150,.05);
  backdrop-filter: blur(16px);
  opacity: .58;
  animation: infraFloatCard 10s ease-in-out infinite;
}

.infra-float-card span,
.infra-float-card em {
  display: block;
  color: rgba(214,222,219,.62);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.infra-float-card strong {
  display: block;
  margin: 9px 0 12px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.15;
}

.infra-float-card--post {
  left: 5%;
  top: 24%;
}

.infra-float-card--mention {
  right: 5%;
  top: 18%;
  animation-delay: -2.5s;
}

.infra-float-card--mention strong {
  font-size: clamp(34px, 4vw, 54px);
  line-height: .9;
}

.infra-float-card--dm {
  left: 4%;
  bottom: 11%;
  animation-delay: -5s;
}

.infra-float-card--reply {
  right: 5%;
  bottom: 12%;
  animation-delay: -7.5s;
}

.infra-hero-graph {
  position: absolute;
  right: 14%;
  bottom: 8%;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 138px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,5,5,.48);
  backdrop-filter: blur(12px);
}

.infra-hero-graph span {
  width: 18px;
  min-height: 20px;
  background: linear-gradient(180deg, #d7f4ff, var(--infra-green));
  opacity: .84;
  animation: infraGraphSpike 2.8s ease-in-out infinite;
}

.infra-hero-graph span:nth-child(1) { height: 24px; animation-delay: -.3s; }
.infra-hero-graph span:nth-child(2) { height: 48px; animation-delay: -.6s; }
.infra-hero-graph span:nth-child(3) { height: 70px; animation-delay: -.9s; }
.infra-hero-graph span:nth-child(4) { height: 104px; animation-delay: -1.2s; }
.infra-hero-graph span:nth-child(5) { height: 82px; animation-delay: -1.5s; }
.infra-hero-graph span:nth-child(6) { height: 124px; animation-delay: -1.8s; }

.infra-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(98,255,150,.08), transparent);
  animation: infraScan 11s ease-in-out infinite;
}

.infra-hero-console {
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(680px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(7,9,9,.48);
  background-size: 34px 34px;
  box-shadow: 0 30px 120px rgba(0,0,0,.5), inset 0 0 80px rgba(98,255,150,.035);
  backdrop-filter: blur(14px);
  opacity: .52;
  transform: translate(-50%, -50%);
}

.infra-hero-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(98,255,150,.08), transparent 68%);
  animation: infraConsoleSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.infra-hero-console__top,
.infra-hero-console__metrics,
.infra-proof-chips,
.contact-brief-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.infra-hero-console__top {
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(235,242,238,.72);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.infra-hero-console__top strong {
  color: var(--infra-green);
}

.infra-hero-console__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.infra-hero-console__metrics article {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.infra-hero-console__metrics article > span {
  display: block;
  color: rgba(235,242,238,.58);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.infra-hero-console__metrics strong {
  display: block;
  margin-top: 13px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1;
}

.infra-hero-console__metrics strong span {
  display: inline;
  color: inherit;
  font: inherit;
  text-transform: none;
}

.infra-hero-console__chart {
  height: 130px;
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  overflow: hidden;
}

.infra-hero-console__chart svg {
  width: 100%;
  height: 100%;
}

.infra-hero-console__chart path {
  fill: none;
  stroke: rgba(98,255,150,.76);
  stroke-width: 3;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: infraConsoleLine 5.8s ease-in-out infinite;
}

.infra-hero-console__chart path:nth-child(2) {
  stroke: rgba(177,197,255,.34);
  stroke-width: 2;
  animation-delay: -1.8s;
}

.infra-hero-console__clusters {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 7px;
}

.infra-hero-console__clusters span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--infra-green);
  box-shadow: 0 0 0 0 rgba(98,255,150,.42);
  animation: infraClusterPulse 3.4s ease-out infinite;
}

.infra-hero-console__clusters span:nth-child(2) { animation-delay: -.4s; }
.infra-hero-console__clusters span:nth-child(3) { animation-delay: -.8s; }
.infra-hero-console__clusters span:nth-child(4) { animation-delay: -1.2s; }
.infra-hero-console__clusters span:nth-child(5) { animation-delay: -1.6s; }

.infra-hero-ping {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(98,255,150,.55), 0 0 18px rgba(98,255,150,.8);
  animation: infraPulse 4.2s ease-out infinite;
}

.infra-hero-ping--one { left: 24%; top: 32%; }
.infra-hero-ping--two { right: 28%; top: 34%; animation-delay: -1.4s; }
.infra-hero-ping--three { left: 56%; bottom: 26%; animation-delay: -2.8s; }

.infra-trusted-home,
.infra-agency-positioning,
.infra-distribution,
.infra-momentum-process,
.infra-service-cards {
  border-bottom: 1px solid rgba(68,71,72,.3);
  background: #050505;
}

.infra-trusted-home {
  padding: 54px 0 62px;
  overflow: hidden;
}

.infra-trusted-home__inner,
.infra-agency-positioning__inner,
.infra-distribution__inner,
.infra-momentum-process__inner,
.infra-service-cards__inner {
  width: min(var(--infra-container), calc(100% - 96px));
  margin: 0 auto;
}

.infra-trusted-home h2,
.infra-agency-positioning h2,
.infra-distribution h2,
.infra-momentum-process h2,
.infra-service-cards__header h2 {
  margin: 0;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.infra-title-accent {
  display: inline;
  color: var(--infra-green);
}

.infra-agency-positioning {
  padding: 86px 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(98,255,150,.07), transparent 30rem),
    linear-gradient(180deg, #050505, #070808);
}

.infra-agency-positioning__inner {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(560px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.infra-agency-positioning h2 {
  max-width: 720px;
  font-size: clamp(38px, 5.7vw, 79px);
  line-height: .9;
  text-wrap: balance;
}

.infra-agency-positioning p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--infra-muted);
  font-size: 16px;
  line-height: 1.75;
}

.infra-pillar-grid {
  display: grid;
  gap: 14px;
}

.infra-pillar-grid article {
  position: relative;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(20,22,22,.92), rgba(8,9,9,.96));
  overflow: hidden;
}

.infra-pillar-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--infra-green), transparent);
  opacity: .56;
}

.infra-pillar-grid span,
.infra-service-card small,
.infra-process-track span,
.infra-case-study-strip span {
  display: block;
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.infra-pillar-grid strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .95;
}

.infra-pillar-grid p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.62;
}

.infra-trusted-home h2 {
  margin-bottom: 28px;
  color: rgba(235,242,238,.76);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.infra-logo-rail {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.06), rgba(255,255,255,.03));
}

.infra-logo-rail::before,
.infra-logo-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 140px;
  pointer-events: none;
}

.infra-logo-rail::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}

.infra-logo-rail::after {
  right: 0;
  background: linear-gradient(270deg, #050505, transparent);
}

.infra-logo-strip {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  padding: 24px 54px;
  animation: infraLogoRail 34s linear infinite;
}

.infra-logo-strip img {
  width: 142px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .82;
}

.infra-distribution {
  padding: 74px 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(98,255,150,.08), transparent 32rem),
    #050505;
}

.infra-distribution__inner {
  display: grid;
  grid-template-columns: minmax(280px, .74fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.infra-distribution h2,
.infra-service-cards__header h2 {
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: .9;
}

.infra-distribution p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.9;
  text-transform: uppercase;
}

.infra-distribution__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.infra-distribution__metrics article,
.infra-service-card {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(150deg, rgba(20,22,22,.96), rgba(8,9,9,.96));
  box-shadow: 0 22px 80px rgba(0,0,0,.28);
}

.infra-distribution__metrics article {
  display: block;
  min-height: 244px;
  padding: 34px 30px 30px;
  overflow: hidden;
  min-width: 0;
}

.infra-distribution__metrics .infra-metric-label {
  display: block;
  margin-bottom: 46px;
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.infra-distribution__metrics strong {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 1.9vw, 36px);
  line-height: 1.03;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.infra-distribution__metrics b {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(18px, 1.32vw, 24px);
  line-height: 1.05;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.infra-distribution__metrics p {
  max-width: 230px;
  margin: 0;
  color: var(--infra-muted);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

.infra-service-cards {
  padding: 92px 0;
}

.infra-service-cards__header {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, .7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 46px;
}

.infra-service-cards__header p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 16px;
  line-height: 1.72;
}

.infra-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.infra-service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 40px);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.infra-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(98,255,150,.1), transparent 20rem),
    linear-gradient(120deg, transparent, rgba(255,255,255,.035), transparent);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.infra-service-card:nth-child(even) {
  transform: translateY(34px);
}

.infra-service-card:hover,
.infra-service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(98,255,150,.34);
  box-shadow: 0 30px 100px rgba(0,0,0,.36), 0 0 32px rgba(98,255,150,.08);
}

.infra-service-card:nth-child(even):hover,
.infra-service-card:nth-child(even):focus-within {
  transform: translateY(26px);
}

.infra-service-card:hover::before,
.infra-service-card:focus-within::before {
  opacity: 1;
}

.infra-service-card h3 {
  position: relative;
  margin: 20px 0 18px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(27px, 3.4vw, 49px);
  font-weight: 800;
  line-height: .92;
}

.infra-card-visual {
  position: relative;
  display: grid;
  min-height: 96px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(0,0,0,.2);
  background-size: 24px 24px;
  overflow: hidden;
  transition: border-color .28s ease, box-shadow .28s ease, opacity .28s ease;
}

.infra-card-visual::before,
.infra-card-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.infra-card-visual::before {
  inset: 0;
  background: radial-gradient(circle at var(--visual-x, 30%) 45%, rgba(98,255,150,.15), transparent 11rem);
  opacity: .7;
}

.infra-card-visual::after {
  left: -30%;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: skewX(-12deg);
  opacity: 0;
  transition: transform .7s ease, opacity .24s ease;
}

.infra-service-card:hover .infra-card-visual,
.infra-service-card:focus-within .infra-card-visual {
  border-color: rgba(98,255,150,.28);
  box-shadow: inset 0 0 30px rgba(98,255,150,.055);
}

.infra-service-card:hover .infra-card-visual::after,
.infra-service-card:focus-within .infra-card-visual::after {
  opacity: 1;
  transform: translateX(460%) skewX(-12deg);
}

.infra-card-visual span {
  position: absolute;
  display: block;
}

.infra-card-visual--radar {
  place-items: center;
}

.infra-card-visual--radar::before {
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  place-self: center;
  border: 1px solid rgba(98,255,150,.34);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98,255,150,.2) 0 3px, transparent 4px), conic-gradient(from 30deg, rgba(98,255,150,.22), transparent 32%);
  transform: translate(-50%, -50%) rotate(0);
  animation: infraRadarSpin 7s linear infinite;
}

.infra-card-visual--radar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(98,255,150,.8);
}

.infra-card-visual--radar span:nth-child(1) { left: 28%; top: 34%; }
.infra-card-visual--radar span:nth-child(2) { right: 24%; top: 40%; }
.infra-card-visual--radar span:nth-child(3) { left: 47%; bottom: 24%; }
.infra-card-visual--radar span:nth-child(4) { right: 37%; bottom: 38%; }

.infra-card-visual--matrix,
.infra-card-visual--experiments {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.infra-card-visual--matrix span,
.infra-card-visual--experiments span {
  position: static;
  min-height: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
}

.infra-card-visual--matrix span:nth-child(2),
.infra-card-visual--matrix span:nth-child(4),
.infra-card-visual--experiments span:nth-child(1),
.infra-card-visual--experiments span:nth-child(4) {
  border-color: rgba(98,255,150,.35);
  background: rgba(98,255,150,.09);
}

.infra-card-visual--timeline {
  padding: 0 18px;
}

.infra-card-visual--timeline::before {
  left: 24px;
  right: 24px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(98,255,150,.12), rgba(98,255,150,.76), rgba(98,255,150,.12));
}

.infra-card-visual--timeline span {
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border: 2px solid var(--infra-green);
  border-radius: 999px;
  background: #050505;
}

.infra-card-visual--timeline span:nth-child(1) { left: 12%; }
.infra-card-visual--timeline span:nth-child(2) { left: 36%; }
.infra-card-visual--timeline span:nth-child(3) { left: 61%; }
.infra-card-visual--timeline span:nth-child(4) { right: 12%; background: var(--infra-green); }

.infra-card-visual--queue {
  padding: 12px;
  gap: 8px;
}

.infra-card-visual--queue span,
.infra-card-visual--checklist span {
  position: static;
  height: 18px;
  border-left: 2px solid var(--infra-green);
  background: linear-gradient(90deg, rgba(98,255,150,.18), transparent);
}

.infra-card-visual--queue span:nth-child(2) { width: 76%; }
.infra-card-visual--queue span:nth-child(3) { width: 58%; }

.infra-card-visual--network,
.infra-card-visual--activation,
.infra-card-visual--compass {
  place-items: center;
}

.infra-card-visual--network::before,
.infra-card-visual--activation::before,
.infra-card-visual--compass::before {
  inset: 25% 20%;
  border: 1px solid rgba(98,255,150,.22);
  border-radius: 999px;
  background: transparent;
}

.infra-card-visual--network span,
.infra-card-visual--activation span,
.infra-card-visual--compass span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--infra-green);
  box-shadow: 0 0 18px rgba(98,255,150,.38);
}

.infra-card-visual--network span:nth-child(1),
.infra-card-visual--activation span:nth-child(1),
.infra-card-visual--compass span:nth-child(1) { left: 24%; top: 34%; }
.infra-card-visual--network span:nth-child(2),
.infra-card-visual--activation span:nth-child(2),
.infra-card-visual--compass span:nth-child(2) { right: 28%; top: 28%; }
.infra-card-visual--network span:nth-child(3),
.infra-card-visual--activation span:nth-child(3),
.infra-card-visual--compass span:nth-child(3) { left: 48%; bottom: 23%; }
.infra-card-visual--network span:nth-child(4),
.infra-card-visual--activation span:nth-child(4),
.infra-card-visual--compass span:nth-child(4) { right: 18%; bottom: 35%; }

.infra-card-visual--shield {
  place-items: center;
}

.infra-card-visual--shield span {
  left: 50%;
  top: 50%;
}

.infra-card-visual--shield span:nth-child(1) {
  width: 58px;
  height: 68px;
  clip-path: polygon(50% 0, 88% 15%, 80% 70%, 50% 100%, 20% 70%, 12% 15%);
  border: 1px solid rgba(98,255,150,.35);
  background: rgba(98,255,150,.08);
  transform: translate(-50%, -50%);
}

.infra-card-visual--shield span:nth-child(2),
.infra-card-visual--shield span:nth-child(3) {
  width: 90px;
  height: 1px;
  background: rgba(98,255,150,.46);
}

.infra-card-visual--shield span:nth-child(2) { transform: translate(-50%, -14px); }
.infra-card-visual--shield span:nth-child(3) { transform: translate(-50%, 14px); }

.infra-card-visual--bars {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px;
}

.infra-card-visual--bars span {
  position: static;
  width: 100%;
  min-height: 18px;
  background: linear-gradient(180deg, #d7f4ff, var(--infra-green));
  transform-origin: bottom;
  animation: infraCardBars 3.8s ease-in-out infinite;
}

.infra-card-visual--bars span:nth-child(1) { height: 30%; animation-delay: -.2s; }
.infra-card-visual--bars span:nth-child(2) { height: 44%; animation-delay: -.5s; }
.infra-card-visual--bars span:nth-child(3) { height: 72%; animation-delay: -.8s; }
.infra-card-visual--bars span:nth-child(4) { height: 58%; animation-delay: -1.1s; }
.infra-card-visual--bars span:nth-child(5) { height: 88%; animation-delay: -1.4s; }

.infra-card-visual--checklist {
  padding: 18px;
  gap: 10px;
}

.infra-card-visual--checklist span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 4px 10px 0 10px;
  border-radius: 999px;
  background: var(--infra-green);
}

.infra-card-visual--compass::after {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 1px;
  background: var(--infra-green);
  transform: translate(-4px, -50%) rotate(-28deg);
  transform-origin: left center;
}

.infra-service-card p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(229,226,225,.78);
  font-size: 14px;
  line-height: 1.68;
}

.infra-service-card > span {
  position: relative;
  display: block;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.infra-service-card a,
.infra-card-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 20px;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.infra-service-card i,
.infra-card-action i {
  font-style: normal;
  transition: transform .2s ease;
}

.infra-service-card a:hover,
.infra-card-action:hover {
  color: var(--infra-green);
}

.infra-service-card a:hover i,
.infra-card-action:hover i {
  transform: translateX(4px);
}

.infra-service-card--wide {
  grid-column: span 2;
  min-height: 230px;
}

.infra-momentum-process {
  padding: 94px 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #050505;
  background-size: 54px 54px;
}

.infra-momentum-process__header {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, .7fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  margin-bottom: 48px;
}

.infra-momentum-process h2 {
  font-size: clamp(40px, 5.75vw, 79px);
  line-height: .9;
}

.infra-momentum-process__header p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 16px;
  line-height: 1.75;
}

.infra-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,14,14,.78);
}

.infra-process-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98,255,150,.64), transparent);
  pointer-events: none;
}

.infra-process-track article {
  position: relative;
  min-height: 280px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
}

.infra-process-track article:last-child {
  border-right: 0;
}

.infra-process-track article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 74px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(98,255,150,.78);
  border-radius: 999px;
  background: #050505;
  box-shadow: 0 0 0 7px rgba(98,255,150,.06), 0 0 22px rgba(98,255,150,.22);
  opacity: .88;
}

.infra-process-track strong {
  display: block;
  margin: 38px 0 18px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1;
}

.infra-process-track p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 13px;
  line-height: 1.62;
}

.infra-process-signal {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  margin-top: 30px;
}

.infra-process-signal i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(98,255,150,.22);
  box-shadow: 0 0 18px rgba(98,255,150,.16);
}

.infra-process-signal i:nth-child(2) {
  width: 32px;
  height: 1px;
  border-radius: 0;
  background: rgba(98,255,150,.58);
}

.infra-process-signal--amplify i:nth-child(1),
.infra-process-signal--monitor i:nth-child(3) {
  background: var(--infra-green);
}

.has-js .infrastructure-page .infra-process-track article.is-visible::before {
  animation: infraProcessNode .9s ease both;
}

.has-js .infrastructure-page .infra-process-track article.is-visible .infra-process-signal i {
  animation: infraProcessSignal .9s ease both;
}

.has-js .infrastructure-page .infra-process-track article.is-visible .infra-process-signal i:nth-child(2) {
  animation-delay: .12s;
}

.has-js .infrastructure-page .infra-process-track article.is-visible .infra-process-signal i:nth-child(3) {
  animation-delay: .24s;
}

.infra-evidence-board {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(520px, 1.18fr);
  gap: 16px;
  margin-bottom: 48px;
}

.infra-case-study-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.infra-case-study-strip article {
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(20,22,22,.94), rgba(8,9,9,.98));
}

.infra-case-study-strip strong {
  display: block;
  margin: 18px 0 14px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.infra-case-study-strip p {
  margin: 0;
  color: var(--infra-muted);
  font-size: 14px;
  line-height: 1.62;
}

.infra-proof-console {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(20,22,22,.9), rgba(5,5,5,.98));
  box-shadow: 0 26px 90px rgba(0,0,0,.34), inset 0 0 60px rgba(98,255,150,.035);
}

.infra-proof-console .infra-proof-media {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.infra-proof-console .infra-proof-media img {
  min-height: 230px;
}

.infra-proof-chips {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.infra-proof-chips span,
.contact-brief-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(98,255,150,.22);
  padding: 0 10px;
  color: var(--infra-green);
  background: rgba(98,255,150,.055);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.infra-proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 14px 14px auto;
  border: 1px solid rgba(255,255,255,.18);
  padding: 13px 16px;
  color: #050505;
  background: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.infra-proof-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

.infra-proof-cta i {
  font-style: normal;
  transition: transform .2s ease;
}

.infra-proof-cta:hover i {
  transform: translateX(4px);
}

.infra-sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  padding: 0 18px;
  color: #050505;
  background: var(--infra-green);
  box-shadow: 0 18px 60px rgba(0,0,0,.34), 0 0 24px rgba(98,255,150,.18);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, background .2s ease;
}

.infra-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: infraStickySettle 1.2s ease both;
}

.contact-panel-open .infra-sticky-cta {
  opacity: 0;
  pointer-events: none;
}

.infra-sticky-cta:hover {
  background: #fff;
}

.infra-case-cta {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(98,255,150,.12), transparent 28rem),
    #050505;
}

.infra-case-cta h2 {
  color: #fff;
}

.infra-case-cta .infra-button--dark {
  color: #050505;
  background: var(--infra-green);
}

.infra-case-cta .infra-button--dark:hover {
  background: #fff;
}

.infrastructure-page .contact-panel__dialog {
  width: min(860px, calc(100% - 32px));
  padding: clamp(24px, 4vw, 42px);
}

.infrastructure-page .contact-panel__dialog h2 {
  max-width: 680px;
  margin-bottom: 14px;
}

.infrastructure-page .contact-panel__dialog p:not(.form-status) {
  max-width: 660px;
  line-height: 1.65;
}

.infrastructure-page .contact-options {
  gap: 10px;
  margin: 30px 0 26px;
}

.infrastructure-page .contact-options a {
  align-items: flex-start;
  justify-content: space-between;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(20,22,22,.96), rgba(8,9,9,.96));
  color: #fff;
  text-align: left;
}

.infrastructure-page .contact-options a::after {
  content: "->";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--infra-green);
  opacity: .8;
}

.infrastructure-page .contact-options a span {
  color: var(--infra-green);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.infrastructure-page .contact-options a strong {
  display: block;
  max-width: 150px;
  color: #fff;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 21px;
  line-height: 1;
  text-transform: none;
}

.infrastructure-page .contact-form {
  display: grid;
  gap: 18px;
}

.infrastructure-page .contact-form h2 {
  margin-bottom: 0;
}

.contact-form__intro {
  margin: -6px 0 2px;
  color: var(--infra-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-brief-strip {
  margin: 24px 0 -8px;
}

@keyframes infraNetworkFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -260; }
}

@keyframes infraNodePulse {
  0%, 100% { opacity: .35; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes infraFloatCard {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(1deg); }
}

@keyframes infraGraphSpike {
  0%, 100% { transform: scaleY(.72); opacity: .58; }
  50% { transform: scaleY(1); opacity: .95; }
}

@keyframes infraScan {
  0%, 46%, 100% { transform: translateY(-20%); opacity: 0; }
  56% { opacity: .9; }
  74% { transform: translateY(360%); opacity: 0; }
}

@keyframes infraLogoRail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes infraConsoleSweep {
  0%, 44%, 100% { transform: translateX(-80%); opacity: 0; }
  54% { opacity: 1; }
  74% { transform: translateX(130%); opacity: 0; }
}

@keyframes infraConsoleLine {
  0% { stroke-dashoffset: 560; opacity: .3; }
  42%, 70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -560; opacity: .38; }
}

@keyframes infraClusterPulse {
  0%, 100% { transform: scale(.82); box-shadow: 0 0 0 0 rgba(98,255,150,.34); opacity: .52; }
  50% { transform: scale(1); box-shadow: 0 0 0 8px rgba(98,255,150,0); opacity: 1; }
}

@keyframes infraRadarSpin {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes infraCardBars {
  0%, 100% { transform: scaleY(.72); opacity: .62; }
  50% { transform: scaleY(1); opacity: .96; }
}

@keyframes infraProcessNode {
  from { transform: scale(.7); opacity: .2; }
  to { transform: scale(1); opacity: .88; }
}

@keyframes infraProcessSignal {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes infraStickySettle {
  0% { box-shadow: 0 18px 60px rgba(0,0,0,.34), 0 0 0 0 rgba(98,255,150,.28); }
  60% { box-shadow: 0 18px 60px rgba(0,0,0,.34), 0 0 0 10px rgba(98,255,150,0); }
  100% { box-shadow: 0 18px 60px rgba(0,0,0,.34), 0 0 24px rgba(98,255,150,.18); }
}

@media (max-width: 1280px) {
  .infra-distribution__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .infra-distribution h2 {
    max-width: 760px;
  }

  .infra-distribution__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .infra-distribution__metrics article {
    min-height: 260px;
  }
}

@media (max-width: 1080px) {
  .infra-trusted-home__inner,
  .infra-agency-positioning__inner,
  .infra-distribution__inner,
  .infra-momentum-process__inner,
  .infra-service-cards__inner {
    width: min(var(--infra-container), calc(100% - 64px));
  }

  .infra-agency-positioning__inner,
  .infra-distribution__inner,
  .infra-service-cards__header,
  .infra-momentum-process__header {
    grid-template-columns: 1fr;
  }

  .infra-process-track {
    grid-template-columns: 1fr;
  }

  .infra-process-track::before {
    left: 31px;
    right: auto;
    top: 36px;
    bottom: 36px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(98,255,150,.64), transparent);
  }

  .infra-process-track article {
    min-height: 0;
    padding-left: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .infra-process-track article::before {
    left: 24px;
  }

  .infra-process-track article:last-child {
    border-bottom: 0;
  }

  .infra-evidence-board {
    grid-template-columns: 1fr;
  }

  .infra-distribution__metrics {
    grid-template-columns: 1fr;
  }

  .infra-distribution__metrics article {
    min-height: 140px;
  }

  .infra-float-card {
    width: min(250px, 42vw);
  }
}

@media (max-width: 860px) {
  .infra-hero--cinematic {
    min-height: 92svh;
    padding: 104px 20px 72px;
  }

  .infra-hero--cinematic h1 {
    font-size: clamp(56px, 17vw, 94px);
  }

  .infra-hero--cinematic p {
    font-size: 16px;
  }

  .infra-float-card {
    opacity: .48;
  }

  .infra-float-card--post,
  .infra-float-card--dm {
    left: -4%;
  }

  .infra-float-card--mention,
  .infra-float-card--reply {
    right: -5%;
  }

  .infra-hero-graph {
    right: 8%;
    bottom: 10%;
    opacity: .55;
  }

  .infra-hero-console {
    top: 56%;
    opacity: .34;
  }

  .infra-card-grid {
    grid-template-columns: 1fr;
  }

  .infra-case-study-strip {
    grid-template-columns: 1fr;
  }

  .infra-proof-media {
    grid-template-columns: 1fr;
  }

  .infra-service-card,
  .infra-service-card:nth-child(even),
  .infra-service-card:hover,
  .infra-service-card:nth-child(even):hover,
  .infra-service-card:focus-within,
  .infra-service-card:nth-child(even):focus-within {
    transform: none;
  }

  .infra-service-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .infra-trusted-home__inner,
  .infra-agency-positioning__inner,
  .infra-distribution__inner,
  .infra-momentum-process__inner,
  .infra-service-cards__inner {
    width: min(100% - 36px, var(--infra-container));
  }

  .infra-hero--cinematic h1 {
    font-size: clamp(48px, 15vw, 66px);
    line-height: .92;
  }

  .infra-float-card {
    width: 210px;
    padding: 12px 14px;
  }

  .infra-float-card strong {
    font-size: 15px;
  }

  .infra-float-card--mention strong {
    font-size: 30px;
  }

  .infra-hero-console {
    width: calc(100% - 28px);
    padding: 12px;
  }

  .infra-hero-console__metrics {
    grid-template-columns: 1fr;
  }

  .infra-hero-console__metrics article {
    min-height: 58px;
    padding: 10px;
  }

  .infra-hero-console__metrics strong {
    margin-top: 8px;
    font-size: 22px;
  }

  .infra-hero-console__chart {
    height: 82px;
  }

  .infra-logo-strip {
    gap: 34px;
    padding-inline: 34px;
  }

  .infra-logo-strip img {
    width: 116px;
  }

  .infra-service-card {
    min-height: 0;
  }

  .infra-agency-positioning,
  .infra-momentum-process,
  .infra-service-cards {
    padding-block: 64px;
  }

  .infra-agency-positioning h2,
  .infra-distribution h2,
  .infra-momentum-process h2,
  .infra-service-cards__header h2 {
    font-size: clamp(34px, 10.8vw, 52px);
  }

  .infra-pillar-grid article,
  .infra-case-study-strip article,
  .infra-process-track article {
    padding: 22px 18px;
  }

  .infra-sticky-cta {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .infra-proof-cta {
    width: calc(100% - 28px);
    justify-content: center;
    margin-inline: 14px;
  }

  .infrastructure-page .contact-options {
    grid-template-columns: 1fr;
  }

  .infrastructure-page .contact-options a {
    min-height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .infra-hero-orbit,
  .infra-hero-network path,
  .infra-hero-network circle,
  .infra-hero-console,
  .infra-hero-console::after,
  .infra-hero-console__chart path,
  .infra-hero-console__clusters span,
  .infra-float-card,
  .infra-card-visual,
  .infra-card-visual::before,
  .infra-card-visual::after,
  .infra-card-visual--bars span,
  .infra-card-visual--radar::before,
  .infra-process-track article::before,
  .infra-process-signal i,
  .infra-hero-graph span,
  .infra-scanline,
  .infra-hero-ping,
  .infra-logo-strip,
  .infra-sticky-cta.is-visible {
    animation: none !important;
    transition: none !important;
  }

  .infra-hero-orbit {
    transform: none !important;
  }
}
