:root {
  --ink: #06183f;
  --ink-2: #0c285d;
  --blue: #075cff;
  --blue-2: #1f73ff;
  --cyan: #5ce1ff;
  --paper: #f7f9ff;
  --white: #ffffff;
  --line: #dbe4f5;
  --muted: #586982;
  --navy: #031735;
  --navy-2: #061d42;
  --green: #49d87d;
  --shadow: 0 24px 70px rgba(10, 37, 93, 0.12);
  --radius: 22px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

code {
  padding: 0.15em 0.38em;
  color: var(--blue);
  border: 1px solid #cbdafd;
  border-radius: 5px;
  background: #f1f5ff;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.86em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(249, 251, 255, 0.9);
  border-bottom: 1px solid rgba(13, 49, 112, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(14, 45, 100, 0.08);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: rotate(30deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.brand-mark::after {
  inset: 10px 1px 1px 10px;
  border-width: 2px;
  opacity: 0.45;
}

.brand-mark i:nth-child(1) {
  inset: 7px;
  border-width: 2px;
  opacity: 0.75;
}

.brand-mark i:nth-child(n+2) {
  display: none;
}

.brand-name {
  font-size: 25px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-product {
  margin-left: 3px;
  padding-left: 13px;
  color: var(--blue);
  border-left: 1px solid #b9c9e8;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a,
.text-link {
  position: relative;
  color: #172847;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #0348d9);
  border: 1px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 92, 255, 0.23);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button span {
  font-size: 1.25em;
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 92, 255, 0.3);
}

.button:hover span {
  transform: translateX(3px);
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
  font-size: 11px;
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: #c6d5ed;
  box-shadow: none;
}

.button-ghost:hover {
  background: white;
  box-shadow: 0 10px 28px rgba(16, 47, 101, 0.12);
}

.button-light {
  color: var(--blue);
  background: white;
  border-color: white;
  box-shadow: 0 12px 30px rgba(0, 14, 42, 0.22);
}

.button-outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  background: white;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(to top, white, transparent);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, white 0%, rgba(255,255,255,0.94) 14%, rgba(255,255,255,0.4) 41%, rgba(255,255,255,0.03) 68%), linear-gradient(0deg, rgba(244,248,255,0.82) 0%, transparent 34%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scaleX(1.055);
  transform-origin: center;
}

.hero-grid,
.closing-grid,
.france-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(42, 107, 255, 0.45) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 107, 255, 0.45) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 50%, transparent 95%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max));
  min-height: 730px;
  margin: 0 auto;
  padding: 82px 0 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  width: min(650px, 52%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 23px;
  height: 2px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  background: currentColor;
}

.eyebrow-light {
  color: #70a5ff;
}

.hero h1,
.section-heading h2,
.console-heading h2,
.everywhere-copy h2,
.sovereignty-copy h2,
.pricing-copy h2,
.closing-content h2,
.page-hero h1,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 850;
}

.hero h1 span,
.section-heading h2 span,
.everywhere-copy h2 span,
.pricing-copy h2 span,
.closing-content h2 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #334765;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  margin: 27px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  list-style: none;
  color: #31445f;
  font-size: 12px;
  font-weight: 750;
}

.hero-proof span {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: #e9f0ff;
  border-radius: 50%;
  font-size: 10px;
}

.hero-card {
  position: absolute;
  z-index: 4;
  bottom: 44px;
  left: 0;
  width: min(600px, 48%);
  padding: 24px 27px;
  color: white;
  background: linear-gradient(135deg, rgba(2, 20, 54, 0.98), rgba(4, 45, 98, 0.96));
  border: 1px solid rgba(119, 177, 255, 0.42);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(2, 23, 61, 0.3);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -100px;
  background: #0b70ff;
  filter: blur(50px);
  opacity: 0.55;
}

.hero-card p {
  position: relative;
  z-index: 1;
  margin: 6px 0;
  color: #d9e6fa;
  font-size: 13px;
}

.hero-card .card-kicker {
  margin: 0 0 13px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-label {
  display: inline;
}

.hero-card .price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: white;
}

.hero-card .price strong {
  color: white;
  font-size: 34px;
  line-height: 1;
}

.hero-card .price span {
  color: #a9c9ff;
  font-weight: 800;
}

.hero-card-actions {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-card-actions > a:last-child {
  color: #bdd3f5;
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.signal-bar {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 48px), var(--max));
  margin: -42px auto 0;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: #233a5d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.signal-bar > div + div {
  border-left: 1px solid var(--line);
}

.signal-dot {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  display: inline-block;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #eaf1ff;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 128px 0;
}

.section-intro {
  padding-top: 155px;
}

.section-heading {
  max-width: 950px;
}

.section-heading h2,
.console-heading h2,
.everywhere-copy h2,
.sovereignty-copy h2,
.pricing-copy h2,
.faq-heading h2 {
  font-size: clamp(40px, 4.5vw, 66px);
}

.section-heading > p:last-child {
  max-width: 730px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.flow-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow-card {
  position: relative;
  min-height: 430px;
  padding: 29px 25px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.flow-card:hover {
  transform: translateY(-6px);
  border-color: #a9c3f5;
  box-shadow: 0 24px 54px rgba(18, 52, 113, 0.12);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #a4b4cc;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.flow-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf3ff;
  border: 1px solid #cadbfc;
  border-radius: 13px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.flow-card p {
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
}

.flow-card ul {
  margin: 18px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 14px;
  color: #334b70;
  font-size: 12px;
  font-weight: 700;
}

.flow-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.flow-card-accent {
  color: white;
  background: linear-gradient(145deg, #073575, #041932);
  border-color: #174b8e;
}

.flow-card-accent .flow-icon {
  color: white;
  background: rgba(21, 102, 255, 0.28);
  border-color: rgba(108, 172, 255, 0.38);
}

.flow-card-accent p,
.flow-card-accent li {
  color: #c3d5ee;
}

.flow-card-accent ul {
  border-color: rgba(255,255,255,0.13);
}

.flow-card-accent .step-number {
  color: #7194c1;
}

.capacity-strip {
  margin-top: 24px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(19, 55, 119, 0.08);
}

.capacity-copy .eyebrow { margin-bottom: 10px; }
.capacity-copy h3 { margin: 0; font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; }
.capacity-copy > p:last-child { margin: 15px 0 0; color: var(--muted); font-size: 14px; }
.capacity-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.capacity-options > div { min-height: 130px; padding: 16px; display: grid; align-content: space-between; color: #334b70; background: #f6f8fd; border: 1px solid #dfe7f4; border-radius: 10px; }
.capacity-options span { color: #8aa0bd; font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; font-weight: 900; }
.capacity-options strong { font-size: 13px; }
.capacity-options small { color: #8291a7; font-size: 9px; }
.capacity-options .capacity-active { color: white; background: linear-gradient(145deg, #0847a3, #072a60); border-color: #1767d2; box-shadow: 0 13px 25px rgba(8, 59, 135, 0.22); transform: translateY(-6px); }
.capacity-options .capacity-active span,
.capacity-options .capacity-active small { color: #9fc4f3; }

.scale-section {
  padding: 120px max(24px, calc((100% - var(--max)) / 2));
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 105, 255, 0.25), transparent 27%),
    linear-gradient(145deg, #03132e, #062b61);
}

.scale-shell { display: grid; gap: 54px; }
.scale-copy { max-width: 1040px; }
.scale-copy h2 { max-width: 1000px; font-size: clamp(43px, 5vw, 72px); }
.scale-copy h2 span { color: #73a5ff; }
.scale-copy > p:last-child { max-width: 860px; margin: 26px 0 0; color: #b7cbea; font-size: 18px; }

.scale-stages {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
}

.scale-stages article {
  min-height: 188px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  background: rgba(4, 26, 61, 0.72);
  border: 1px solid rgba(121, 169, 237, 0.28);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 8, 27, 0.22);
}

.scale-stages article:nth-of-type(3) {
  background: linear-gradient(145deg, #0b54bd, #063270);
  border-color: #3c86ee;
}

.scale-stages article > span { color: #6f9dd8; font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; font-weight: 900; }
.scale-stages article:nth-of-type(3) > span { color: #b8d4ff; }
.scale-stages strong { font-size: 23px; }
.scale-stages small { max-width: 250px; color: #a9bfdc; font-size: 12px; }
.scale-stages article:nth-of-type(3) small { color: #d1e2fa; }
.scale-stages > i { height: 1px; background: linear-gradient(90deg, #295d9d, #5d97e2); position: relative; }
.scale-stages > i::after { content: "›"; position: absolute; top: 50%; right: -2px; color: #77a9ec; transform: translateY(-54%); font-style: normal; font-size: 24px; }

.scale-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(127, 169, 227, 0.22);
}

.scale-proof > div { padding: 27px 24px 0; display: grid; gap: 4px; border-left: 1px solid rgba(127, 169, 227, 0.22); }
.scale-proof > div:first-child { border-left: 0; padding-left: 0; }
.scale-proof strong { color: #72a7ff; font-size: 25px; }
.scale-proof span { color: #aabedb; font-size: 12px; }

.console-section {
  width: 100%;
  max-width: none;
  padding: 120px max(24px, calc((100% - var(--max)) / 2));
  color: white;
  background: radial-gradient(circle at 78% 5%, rgba(7, 93, 255, 0.34), transparent 29%), linear-gradient(145deg, #020f27, #041c3f 72%, #03152f);
  overflow: hidden;
}

.console-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.console-heading > p {
  margin: 0 0 4px;
  color: #aec5e8;
  font-size: 17px;
}

.persona-tabs {
  margin: 50px 0 22px;
  padding: 6px;
  display: inline-flex;
  gap: 5px;
  background: rgba(4, 25, 58, 0.82);
  border: 1px solid rgba(132, 174, 240, 0.25);
  border-radius: 10px;
}

.persona-tab {
  padding: 12px 22px;
  color: #9eb5d8;
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.persona-tab.active {
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 88, 255, 0.28);
}

.console-window {
  max-width: 1340px;
  min-height: 660px;
  background: #f8faff;
  border: 1px solid #31598a;
  border-radius: 16px;
  box-shadow: 0 50px 100px rgba(0, 6, 22, 0.42);
  overflow: hidden;
}

.console-topbar {
  min-height: 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  color: #d6e6ff;
  background: #051934;
  border-bottom: 1px solid #19385f;
  font-size: 12px;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.mini-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
}

.console-search {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 9px 15px;
  color: #7391b8;
  background: #0b2447;
  border: 1px solid #18395f;
  border-radius: 7px;
}

.console-user {
  text-align: right;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(73, 216, 125, 0.12);
}

.console-body {
  min-height: 596px;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.console-sidebar {
  padding: 29px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #6b7d99;
  background: #f0f4fb;
  border-right: 1px solid #dae3f2;
  font-size: 12px;
  font-weight: 700;
}

.console-sidebar span {
  padding: 10px 12px;
  border-radius: 7px;
}

.console-sidebar .side-active {
  color: var(--blue);
  background: white;
  box-shadow: 0 4px 14px rgba(35, 71, 129, 0.07);
}

.console-content {
  padding: 34px;
  color: var(--ink);
}

.console-welcome {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.console-overline {
  color: var(--blue);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.console-welcome h3 {
  margin: 6px 0 5px;
  font-size: 27px;
  line-height: 1.2;
}

.console-welcome p {
  margin: 0;
  color: #71809a;
  font-size: 13px;
}

.ai-button {
  padding: 11px 15px;
  color: var(--blue);
  background: #edf3ff;
  border: 1px solid #c9d9fa;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.ai-button span {
  margin-right: 6px;
}

.metric-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row article,
.app-health,
.deploy-panel {
  padding: 19px;
  background: white;
  border: 1px solid #dce5f3;
  border-radius: 10px;
  box-shadow: 0 9px 24px rgba(30, 62, 111, 0.05);
}

.metric-row span,
.metric-row small {
  display: block;
  color: #74839a;
  font-size: 10px;
  font-weight: 750;
}

.metric-row strong {
  margin: 8px 0 3px;
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric-row .good {
  color: #16984f;
}

.console-lower {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 13px;
}

.panel-title {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #273d60;
  font-size: 11px;
  font-weight: 850;
}

.panel-title button {
  color: var(--blue);
  background: none;
  border: 0;
  font-size: 10px;
  font-weight: 800;
}

.health-row {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 11px;
  border-top: 1px solid #e9eef6;
}

.app-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.app-symbol.blue { background: #0b63ff; }
.app-symbol.violet { background: #7858ef; }
.app-symbol.cyan { background: #00a9c6; }

.health-row strong,
.health-row small {
  display: block;
}

.health-row strong {
  font-size: 11px;
}

.health-row small {
  color: #8491a5;
  font-size: 9px;
}

.health-pill {
  padding: 5px 8px;
  color: #118a47;
  background: #e9f8ef;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 800;
}

.health-pill.neutral {
  color: #3261a6;
  background: #edf3fd;
}

.live-label {
  color: #159b4f;
  font-size: 8px;
}

.deploy-line {
  min-height: 66px;
  padding: 6px 0 6px 10px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-left: 1px solid #cbd7e9;
}

.deploy-line i {
  width: 14px;
  height: 14px;
  margin-left: -17px;
  display: block;
  background: white;
  border: 3px solid #43c577;
  border-radius: 50%;
}

.deploy-line i.pulse {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(7, 92, 255, 0.12);
  animation: pulse 1.8s infinite;
}

.deploy-line strong,
.deploy-line small {
  display: block;
}

.deploy-line strong { font-size: 10px; }
.deploy-line small { color: #8491a5; font-size: 9px; }

.deploy-footer {
  margin-top: 9px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  color: #69809e;
  background: #f2f6fc;
  border-radius: 6px;
  font-size: 9px;
}

.deploy-footer strong { color: var(--ink); }

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(7, 92, 255, 0.03); }
}

.included-section {
  padding-bottom: 150px;
}

.included-layout {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.included-list article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.included-list article > span {
  color: var(--blue);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.included-list h3 {
  margin: 0;
  font-size: 21px;
}

.included-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.architecture-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  color: white;
  background: radial-gradient(circle at 50% 45%, rgba(10, 97, 255, 0.28), transparent 40%), #041a3a;
  border: 1px solid #174d8d;
  border-radius: 20px;
  box-shadow: 0 35px 70px rgba(2, 25, 63, 0.25);
  overflow: hidden;
}

.architecture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(#3c7ccd 1px, transparent 1px), linear-gradient(90deg, #3c7ccd 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.architecture-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #a7c5ea;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-status {
  color: #91e5b0;
}

.architecture-status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
}

.architecture-app {
  position: relative;
  width: 190px;
  margin: 58px auto 0;
  padding: 17px;
  display: grid;
  background: #0c3b7a;
  border: 1px solid #2d74d0;
  border-radius: 10px;
  text-align: center;
}

.architecture-app span,
.architecture-nodes span {
  color: #78a9ed;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.architecture-app strong { font-size: 16px; }
.architecture-app small { color: #a8c3e6; font-size: 10px; }

.architecture-lines {
  position: relative;
  width: 68%;
  height: 60px;
  margin: 0 auto;
  border-bottom: 1px solid #3479d5;
}

.architecture-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 60px;
  border-left: 1px solid #3479d5;
}

.architecture-lines i {
  position: absolute;
  bottom: -9px;
  width: 17px;
  height: 17px;
  background: #0b58c5;
  border: 4px solid #041a3a;
  border-radius: 50%;
}

.architecture-lines i:nth-child(1) { left: -8px; }
.architecture-lines i:nth-child(2) { left: calc(50% - 8px); }
.architecture-lines i:nth-child(3) { right: -8px; }

.architecture-nodes {
  position: relative;
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.architecture-nodes div {
  min-height: 92px;
  padding: 15px;
  display: grid;
  align-content: center;
  background: rgba(6, 43, 91, 0.95);
  border: 1px solid #235996;
  border-radius: 9px;
  text-align: center;
}

.architecture-nodes strong { font-size: 12px; }
.architecture-nodes small { color: #8daed5; font-size: 9px; }

.architecture-shield {
  position: relative;
  width: fit-content;
  margin: 38px auto 0;
  padding: 9px 14px;
  color: #8de2ac;
  background: rgba(31, 160, 84, 0.12);
  border: 1px solid rgba(80, 213, 134, 0.3);
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
}

.everywhere-section {
  position: relative;
  padding: 140px max(24px, calc((100% - var(--max)) / 2));
  color: white;
  background: #04152f;
  overflow: hidden;
}

.everywhere-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -200px;
  top: -150px;
  background: radial-gradient(circle, rgba(7, 92, 255, 0.33), transparent 65%);
}

.everywhere-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.everywhere-copy p:not(.eyebrow) {
  margin: 28px 0;
  color: #aec3df;
  font-size: 17px;
}

.everywhere-copy h2 span {
  color: #66a1ff;
}

.everywhere-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.everywhere-copy li {
  margin: 12px 0;
  color: #d5e3f5;
  font-size: 13px;
}

.everywhere-copy li span {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  color: #7ff0a8;
  background: rgba(65, 211, 120, 0.12);
  border-radius: 50%;
}

.device-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-device {
  position: relative;
  z-index: 4;
  width: 278px;
  height: 558px;
  padding: 29px 20px 17px;
  color: white;
  background: linear-gradient(160deg, #091e41, #041229);
  border: 7px solid #142b4d;
  border-radius: 40px;
  box-shadow: 0 55px 90px rgba(0, 0, 0, 0.5), inset 0 0 0 1px #335177;
  transform: rotate(-4deg);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 80px;
  height: 18px;
  background: #010816;
  border-radius: 10px;
  transform: translateX(-50%);
}

.device-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bfd1eb;
  font-size: 10px;
}

.device-header .mini-mark { width: 24px; height: 24px; font-size: 9px; }
.device-header i { width: 7px; height: 7px; margin-left: auto; background: var(--green); border-radius: 50%; }

.device-label {
  margin: 38px 0 4px;
  color: #6387b9;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.phone-device > strong {
  font-size: 22px;
}

.device-score {
  margin-top: 25px;
  padding: 18px;
  display: grid;
  background: linear-gradient(135deg, #0b3f88, #0b5ac9);
  border: 1px solid #3778d0;
  border-radius: 14px;
}

.device-score span { color: #a9c8ee; font-size: 9px; }
.device-score b { margin-top: 7px; font-size: 32px; }

.device-mini-grid {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.device-mini-grid span {
  padding: 14px;
  display: grid;
  color: #9cb4d3;
  background: #0b2348;
  border: 1px solid #1e3f69;
  border-radius: 11px;
  font-size: 8px;
}

.device-mini-grid b { color: white; font-size: 19px; }

.device-alert {
  margin-top: 19px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #081b37;
  border: 1px solid #193c68;
  border-radius: 11px;
}

.device-alert i {
  width: 29px;
  height: 29px;
  background: #1aa45a;
  border: 8px solid #0e5934;
  border-radius: 50%;
}

.device-alert b,
.device-alert small { display: block; }
.device-alert b { font-size: 9px; }
.device-alert small { color: #7d98ba; font-size: 7px; }

.device-nav {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  padding: 12px 17px 4px;
  display: flex;
  justify-content: space-between;
  color: #5f82ae;
  border-top: 1px solid #18385f;
  font-size: 14px;
}

.watch-device {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 88px;
  width: 155px;
  height: 155px;
}

.watch-face {
  position: relative;
  z-index: 2;
  width: 155px;
  height: 155px;
  padding: 26px 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  background: #05142c;
  border: 8px solid #173251;
  border-radius: 42px;
  box-shadow: 0 28px 50px rgba(0,0,0,0.5), inset 0 0 0 1px #3d5d7e;
}

.watch-face span { color: #7194be; font-size: 8px; font-weight: 900; letter-spacing: 0.13em; }
.watch-face i { width: 36px; height: 36px; margin: 8px; display: grid; place-items: center; color: #70f09d; background: rgba(63, 213, 119, 0.12); border: 1px solid rgba(81, 227, 135, 0.3); border-radius: 50%; font-style: normal; }
.watch-face strong { font-size: 13px; }
.watch-face small { color: #7895b7; font-size: 8px; }

.watch-strap {
  position: absolute;
  left: 50%;
  width: 74px;
  height: 110px;
  background: #102641;
  transform: translateX(-50%);
}

.watch-strap.top { top: -76px; border-radius: 20px 20px 0 0; }
.watch-strap.bottom { bottom: -76px; border-radius: 0 0 20px 20px; }

.device-orbit {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(78, 137, 219, 0.25);
  border-radius: 50%;
}

.device-orbit::after {
  content: "";
  position: absolute;
  top: 16%;
  right: 9%;
  width: 9px;
  height: 9px;
  background: var(--blue-2);
  border-radius: 50%;
  box-shadow: 0 0 18px #1f73ff;
}

.orbit-two { width: 610px; height: 610px; opacity: 0.5; }
.orbit-two::after { top: auto; right: auto; bottom: 20%; left: 7%; }

.mesh-banner {
  position: relative;
  margin-top: 90px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(7, 92, 255, 0.2), rgba(22, 108, 255, 0.08));
  border: 1px solid rgba(100, 157, 236, 0.31);
  border-radius: 16px;
}

.mesh-banner h3 { margin: 0; font-size: 28px; line-height: 1.15; }
.mesh-banner > p { margin: 0; color: #b7c9e1; font-size: 14px; }
.mesh-banner .eyebrow { margin-bottom: 11px; }

.sovereignty-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
}

.sovereignty-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
}

.sovereignty-copy blockquote {
  margin: 32px 0;
  padding: 17px 0 17px 25px;
  color: var(--ink-2);
  border-left: 3px solid var(--blue);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.text-arrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.text-arrow span { margin-left: 8px; }

.france-card {
  position: relative;
  min-height: 570px;
  padding: 56px;
  color: white;
  background: linear-gradient(145deg, #041b3d, #06295c);
  border: 1px solid #245da0;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(5, 37, 85, 0.22);
  overflow: hidden;
}

.france-card::before {
  content: "FR";
  position: absolute;
  top: -50px;
  right: 20px;
  color: rgba(65, 127, 215, 0.12);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
}

.france-grid {
  opacity: 0.12;
}

.france-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #68b4ff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(71, 153, 255, 0.09), 0 0 25px #2071e5;
}

.p1 { top: 22%; right: 25%; }
.p2 { top: 38%; right: 43%; }
.p3 { top: 26%; left: 22%; }
.p4 { top: 51%; right: 18%; }

.france-label {
  position: relative;
  color: #78a8e7;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.france-card h3 {
  position: relative;
  max-width: 400px;
  margin: 160px 0 33px;
  font-size: 32px;
  line-height: 1.1;
}

.france-card ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.france-card li {
  padding: 12px 0;
  color: #c9d9ed;
  border-top: 1px solid rgba(146, 181, 225, 0.18);
  font-size: 13px;
}

.france-card li span {
  margin-right: 16px;
  color: #5c91d9;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
}

.advantage-section {
  padding-top: 90px;
}

.advantage-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.advantage-grid article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255,255,255,0.55);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.advantage-grid article:hover { background: white; }
.advantage-index { color: var(--blue); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; font-weight: 900; }
.advantage-grid h3 { margin: 52px 0 10px; font-size: 21px; }
.advantage-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.cost-section {
  padding: 125px max(24px, calc((100% - var(--max)) / 2));
  color: white;
  background:
    radial-gradient(circle at 84% 8%, rgba(23, 105, 255, 0.28), transparent 25%),
    linear-gradient(145deg, #020d20, #041a3b 65%, #03132b);
}

.cost-shell { display: grid; gap: 34px; }
.cost-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: end; }
.cost-heading h2 { font-size: clamp(42px, 4.8vw, 70px); }
.cost-heading h2 span { color: #75a7ff; }
.cost-heading > p { margin: 0 0 5px; color: #b0c5e3; font-size: 17px; }

.comparison-scope {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  background: rgba(7, 27, 58, 0.7);
  border: 1px solid rgba(125, 168, 230, 0.25);
  border-radius: 16px;
}
.comparison-scope > div { padding: 18px 20px; display: grid; align-content: center; gap: 4px; background: rgba(255,255,255,0.035); border: 1px solid rgba(145, 179, 225, 0.15); border-radius: 11px; }
.comparison-scope > b { width: 38px; height: 38px; align-self: center; display: grid; place-items: center; color: #86a3ca; border: 1px solid #31557f; border-radius: 50%; font-size: 10px; }
.comparison-scope span { color: #88a4c7; font-size: 9px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.comparison-scope strong { font-size: 18px; }
.comparison-scope small { color: #9eb3d0; font-size: 11px; }
.comparison-scope .scope-nsam { background: linear-gradient(135deg, rgba(7,92,255,0.3), rgba(31,115,255,0.12)); border-color: #2a67b7; }
.comparison-scope .scope-nsam span { color: #8db8ff; }
.comparison-scope .scope-nsam small { color: #c3d8f6; }

.cost-controls {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.8fr;
  gap: 16px;
  background: rgba(9, 36, 77, 0.82);
  border: 1px solid rgba(125, 168, 230, 0.25);
  border-radius: 16px;
}

.cost-controls label,
.cost-controls fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.cost-controls label > span:first-child,
.cost-controls legend { margin-bottom: 9px; display: block; color: #90aaca; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

.machine-inputs { display: grid; grid-template-columns: 1fr 75px; gap: 13px; align-items: center; }
.machine-inputs input[type="number"],
.profile-control select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: white;
  background: #071a38;
  border: 1px solid #31557f;
  border-radius: 9px;
  outline: none;
}

.profile-control select { appearance: auto; }
.machine-inputs input:focus,
.profile-control select:focus { border-color: #71a7ff; box-shadow: 0 0 0 4px rgba(69, 136, 255, 0.14); }

.machine-inputs input[type="range"] {
  --range-progress: 11.5%;
  width: 100%;
  height: 5px;
  appearance: none;
  background: linear-gradient(90deg, #3f8cff var(--range-progress), #244467 var(--range-progress));
  border-radius: 10px;
  cursor: pointer;
}

.machine-inputs input[type="range"]::-webkit-slider-thumb { width: 19px; height: 19px; appearance: none; background: white; border: 5px solid var(--blue); border-radius: 50%; box-shadow: 0 3px 13px rgba(0,0,0,0.35); }
.machine-inputs input[type="range"]::-moz-range-thumb { width: 12px; height: 12px; background: white; border: 5px solid var(--blue); border-radius: 50%; box-shadow: 0 3px 13px rgba(0,0,0,0.35); }

.period-control > div { min-height: 46px; padding: 4px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: #071a38; border: 1px solid #31557f; border-radius: 9px; }
.period-control button { color: #9db3d0; background: transparent; border: 0; border-radius: 6px; font-size: 11px; font-weight: 800; cursor: pointer; }
.period-control button.active { color: white; background: var(--blue); box-shadow: 0 7px 18px rgba(0, 85, 255, 0.25); }
.period-control button:focus-visible { outline: 2px solid white; outline-offset: 1px; }

.cost-dashboard { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: 18px; align-items: stretch; }
.savings-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #0a60df, #07377d 70%, #052754);
  border: 1px solid #3d8fff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 10, 35, 0.28);
}

.savings-card > p { margin: 0; color: #c8dcfb; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.savings-card > strong { margin-top: 19px; font-size: clamp(43px, 4vw, 65px); line-height: 1; letter-spacing: -0.05em; }
.savings-card > span { margin-top: 7px; color: #b5cff5; font-size: 13px; }
.savings-rate { margin: 30px 0 20px; padding: 20px 0; display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: center; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
.savings-rate b { font-size: 30px; }
.savings-rate span { color: #c3d8f7; font-size: 11px; }
.savings-card ul { margin: 0 0 28px; padding: 0; list-style: none; }
.savings-card li { margin: 10px 0; color: #e3efff; font-size: 12px; }
.savings-card li span { margin-right: 7px; color: #70f3a2; }
.savings-card .button { width: 100%; margin-top: auto; }

.chart-card { padding: 28px; color: var(--ink); background: #f9fbff; border: 1px solid #234c7c; border-radius: 18px; overflow: hidden; }
.chart-head { display: grid; grid-template-columns: auto auto 1fr; gap: 17px; align-items: start; }
.chart-head > div:first-child { display: grid; }
.chart-head > div:first-child span { color: #71829b; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.chart-head > div:first-child strong { margin-top: 4px; font-size: 16px; }
.chart-replay { padding: 7px 10px; color: var(--blue); background: #edf3ff; border: 1px solid #c8d9f6; border-radius: 7px; font-size: 9px; font-weight: 900; cursor: pointer; }
.chart-replay:hover { background: #e1ebff; }
.chart-replay:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.chart-legend { max-width: 390px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 14px; color: #687992; font-size: 9px; font-weight: 800; }
.chart-legend span { display: inline-flex; align-items: center; gap: 5px; }
.chart-legend i { width: 15px; height: 3px; display: inline-block; background: #7d8aa0; border-radius: 2px; }
.chart-legend .legend-nsam i { height: 4px; background: var(--blue); }
.chart-legend .legend-aws i { background: #f29b38; }
.chart-legend .legend-azure i { background: #26a5d9; }
.chart-legend .legend-gcp i { background: #738097; }

.cost-chart { width: 100%; height: auto; min-height: 300px; margin-top: 18px; display: block; overflow: visible; }
.chart-grid-line { stroke: #dce5f2; stroke-width: 1; }
.chart-grid-line.vertical { stroke-dasharray: 3 7; }
.chart-axis-label { fill: #7889a1; font-size: 11px; font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif; }
.chart-area { fill: rgba(7, 92, 255, 0.08); }
.chart-line { fill: none; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.chart-line-nsam { stroke: var(--blue); stroke-width: 6; }
.chart-line-aws { stroke: #f29b38; }
.chart-line-azure { stroke: #26a5d9; }
.chart-line-gcp { stroke: #738097; }
.chart-end { stroke: white; stroke-width: 3; }
.chart-end-nsam { fill: var(--blue); }
.chart-end-aws { fill: #f29b38; }
.chart-end-azure { fill: #26a5d9; }
.chart-end-gcp { fill: #738097; }
.chart-end-label { fill: #304561; font-size: 11px; font-weight: 900; font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif; }

.cost-chart.is-animating .chart-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: chart-line-draw var(--chart-duration, 8s) linear forwards;
}
.cost-chart.is-animating .chart-end {
  opacity: 0;
  animation: chart-end-in 0.24s ease forwards;
  animation-delay: calc(var(--chart-duration, 8s) - 0.18s);
}

@keyframes chart-line-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes chart-end-in {
  to { opacity: 1; }
}

.provider-totals { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #dbe4f1; }
.provider-totals article { min-width: 0; padding: 17px 13px 0; display: grid; border-left: 1px solid #dbe4f1; }
.provider-totals article:first-child { border-left: 0; padding-left: 0; }
.provider-totals span { color: #718198; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.provider-totals strong { margin-top: 4px; font-size: 18px; white-space: nowrap; }
.provider-totals small { color: #8695a9; font-size: 9px; }
.provider-totals .provider-nsam strong { color: var(--blue); }

.cost-method { padding: 0 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cost-method p { margin: 0; color: #7f98b9; font-size: 10px; }
.cost-method strong { color: #abc3e3; }
.cost-method a { color: #a8c8ff; text-decoration: underline; text-underline-offset: 2px; }

.pricing-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.pricing-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); font-size: 17px; }
.pricing-copy ul { padding: 0; list-style: none; color: #344a69; font-size: 13px; font-weight: 700; }
.pricing-copy li { margin: 10px 0; padding-left: 20px; position: relative; }
.pricing-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); }

.price-card {
  padding: 38px;
  color: white;
  background: radial-gradient(circle at 90% 10%, rgba(20, 107, 255, 0.35), transparent 30%), #041a3a;
  border: 1px solid #1d579a;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(7, 37, 84, 0.23);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #84a8d6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.popular {
  padding: 7px 10px;
  color: #b8d0f2;
  background: #0a356f;
  border: 1px solid #1d5ba8;
  border-radius: 20px;
  letter-spacing: 0;
}

.price-main {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-main span,
.price-main small { color: #a9c1df; font-size: 12px; }
.price-main strong { font-size: 70px; line-height: 1; letter-spacing: -0.05em; }
.price-card > p { color: #c5d7ec; }

.price-columns {
  margin: 26px 0 30px;
  padding: 23px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #254a77;
  border-bottom: 1px solid #254a77;
}

.price-columns ul { margin: 0; padding: 0; list-style: none; }
.price-columns li { margin: 9px 0; color: #d9e5f5; font-size: 12px; }
.price-columns li::first-letter { color: var(--green); }
.price-card .button { width: 100%; }
.price-note { margin-top: 13px; display: block; color: #7d9aba; font-size: 9px; text-align: center; }

.faq-section {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: #eaf1ff; border-radius: 50%; font-size: 18px; transition: transform 0.2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -9px 45px 24px 0; color: var(--muted); font-size: 14px; }

.closing-cta {
  position: relative;
  margin: 30px 24px 0;
  padding: 110px 24px;
  color: white;
  background: radial-gradient(circle at 84% 50%, #0b53b9, transparent 30%), linear-gradient(135deg, #031530, #062b61);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.closing-grid { opacity: 0.1; mask-image: none; }
.closing-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; text-align: center; }
.closing-content h2 { font-size: clamp(43px, 5.2vw, 76px); }
.closing-content h2 span { color: #79aaff; }
.closing-content > p:not(.eyebrow) { max-width: 680px; margin: 27px auto 0; color: #bfd0e7; font-size: 17px; }
.closing-content .hero-actions { justify-content: center; }

.site-footer {
  padding: 70px max(24px, calc((100% - var(--max)) / 2)) 24px;
  color: #c2d1e4;
  background: #020d20;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 50px;
}

.brand-light { color: white; }
.footer-brand p { color: #748da9; font-size: 13px; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h2 { margin: 0 0 10px; color: white; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a { color: #8ba0bb; font-size: 12px; }
.footer-column a:hover { color: white; }

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #5f7692;
  border-top: 1px solid #14253c;
  font-size: 10px;
}

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

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

.page-hero {
  padding: 105px max(24px, calc((100% - 1120px) / 2)) 75px;
  background: radial-gradient(circle at 82% 20%, rgba(21, 102, 255, 0.15), transparent 30%), white;
  border-bottom: 1px solid var(--line);
}

.page-hero > div { max-width: 880px; }
.page-hero h1 { font-size: clamp(46px, 6vw, 80px); }
.page-hero > div > p:last-child { max-width: 680px; margin-top: 27px; color: var(--muted); font-size: 18px; }

.contact-layout {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: 90px 0 130px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.contact-aside ol { margin: 36px 0 45px; padding: 0; list-style: none; }
.contact-aside li { padding: 19px 0; display: grid; grid-template-columns: 43px 1fr; gap: 12px; border-top: 1px solid var(--line); }
.contact-aside li > span { color: var(--blue); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; font-weight: 900; }
.contact-aside strong { font-size: 15px; }
.contact-aside p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.contact-direct { padding: 20px; display: grid; background: #eaf1ff; border-radius: 10px; font-size: 11px; }
.contact-direct a { margin-top: 4px; color: var(--blue); font-size: 14px; font-weight: 800; }

.contact-form-card {
  min-height: 610px;
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-head { margin-bottom: 27px; display: flex; justify-content: space-between; color: #8493a9; font-size: 9px; font-weight: 900; letter-spacing: 0.1em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-card label { margin-bottom: 20px; display: grid; gap: 8px; color: #283e60; font-size: 11px; font-weight: 800; }
.contact-form-card input,
.contact-form-card textarea { width: 100%; padding: 14px 15px; color: var(--ink); background: #f8faff; border: 1px solid #ced9eb; border-radius: 8px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.contact-form-card textarea { resize: vertical; }
.contact-form-card input:focus,
.contact-form-card textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7, 92, 255, 0.1); }
.consent-row { grid-template-columns: 19px 1fr !important; align-items: start; font-weight: 600 !important; }
.consent-row input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--blue); }
.honeypot { position: absolute !important; left: -9999px; }
.human-check {
  margin: 2px 0 22px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 145px;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #edf3ff, #f8fbff);
  border: 1px solid #cbdafb;
  border-radius: 10px;
}
.human-check > div { display: grid; gap: 2px; }
.human-check > div > span { color: #5d7190; font-size: 9px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.human-check > div > strong { color: var(--blue); font-size: 26px; letter-spacing: -0.03em; }
.human-check > div > small { color: #8494aa; font-size: 9px; }
.contact-form-card .human-check label { margin: 0; }
.human-check input { min-height: 48px; background: white; font-size: 18px; font-weight: 850; text-align: center; }
.field-error { color: #c3314c; font-size: 10px; }
.consent-error { margin-top: -13px; margin-bottom: 16px; display: block; }
.math-error { margin: -13px 0 19px; display: block; }
.form-submit { width: 100%; }
.form-privacy { margin-top: 13px; display: block; color: #8392a7; font-size: 9px; text-align: center; }
.form-alert { margin-bottom: 25px; padding: 15px; color: #8c263b; background: #fff0f3; border: 1px solid #f4c6d0; border-radius: 8px; font-size: 12px; }
.form-alert a { text-decoration: underline; }

.form-state { min-height: 520px; display: grid; align-content: center; justify-items: center; text-align: center; }
.success-state > span { width: 70px; height: 70px; display: grid; place-items: center; color: white; background: #17a257; border-radius: 50%; font-size: 32px; box-shadow: 0 0 0 13px #e9f8ef; }
.form-state h2 { margin: 35px 0 7px; font-size: 32px; }
.form-state p { margin: 0 0 28px; color: var(--muted); }

.legal-page {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
  padding: 110px 0 140px;
}

.legal-page header { padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.legal-page h1 { margin: 0; font-size: clamp(50px, 7vw, 86px); letter-spacing: -0.05em; line-height: 1; }
.legal-page header > p:last-child { color: var(--muted); }
.legal-page section { padding: 33px 0; border-bottom: 1px solid var(--line); }
.legal-page h2 { margin: 0 0 12px; font-size: 21px; }
.legal-page section p { color: var(--muted); }
.legal-page section a { color: var(--blue); text-decoration: underline; }

.error-page {
  min-height: 720px;
  padding: 130px 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  background: radial-gradient(circle at center, #eaf1ff, transparent 40%);
  text-align: center;
}
.error-page > span { color: #dbe6fb; font-size: 180px; font-weight: 900; line-height: 0.8; }
.error-page h1 { margin: 0; font-size: 52px; }
.error-page > p:not(.eyebrow) { color: var(--muted); }

.included-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.included-button {
  min-height: 55px;
  padding-inline: 24px;
  border-color: #cbd9ef;
  box-shadow: 0 14px 34px rgba(9, 45, 104, 0.13);
}
.included-button:first-child {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0348d9);
  border-color: var(--blue);
}

.capability-page { background: var(--paper); }
.capability-hero,
.capability-section,
.capability-dark,
.capability-trust,
.capability-cta {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.capability-hero {
  min-height: 700px;
  padding: 112px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: 80px;
  align-items: center;
}
.capability-hero h1,
.capability-heading h2,
.capability-dark h2,
.capability-trust h2,
.capability-cta h2 {
  margin: 16px 0 24px;
  font-size: clamp(44px, 5.7vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.capability-hero-copy > p:last-of-type,
.capability-heading > p,
.capability-trust > header p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
}
.capability-hero-panel,
.availability-panel {
  padding: 42px;
  color: white;
  background: linear-gradient(145deg, #031735, #0a3778);
  border: 1px solid rgba(92, 225, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(3, 23, 53, 0.22);
}
.panel-label { color: #78b5ff; font-size: 11px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.capability-hero-panel h2 { margin: 18px 0 28px; font-size: 31px; line-height: 1.1; }
.capability-checks { margin: 0; padding: 0; display: grid; gap: 15px; list-style: none; }
.capability-checks li { position: relative; padding-left: 24px; color: #d8e7ff; }
.capability-checks li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 900; }
.capability-section { padding: 110px 0 130px; }
.capability-heading { max-width: 920px; margin-bottom: 58px; }
.capability-heading h2,
.capability-dark h2,
.capability-trust h2,
.capability-cta h2 { font-size: clamp(40px, 4.5vw, 68px); }
.capability-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.capability-card {
  min-height: 270px;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.capability-card > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.capability-card h3 { margin: 55px 0 12px; font-size: 22px; }
.capability-card p { margin: 0; color: var(--muted); }
.capability-dark {
  margin-bottom: 120px;
  padding: 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 70px;
  align-items: center;
  color: white;
  background: radial-gradient(circle at 85% 20%, #164f9e, transparent 33%), var(--navy);
  border-radius: 28px;
  overflow: hidden;
}
.capability-dark-copy > p { color: #c2d2eb; font-size: 18px; }
.dat-card,
.git-pipeline { padding: 28px; background: rgba(3, 17, 41, 0.68); border: 1px solid rgba(119, 176, 255, 0.35); border-radius: 18px; }
.dat-head,
.dat-footer { display: flex; justify-content: space-between; gap: 20px; color: #93b8ee; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.dat-environment { margin: 26px 0; padding: 13px 16px; color: white; background: rgba(7, 92, 255, 0.25); border: 1px solid #2677ff; border-radius: 8px; font-weight: 800; text-align: center; }
.dat-connectors { height: 28px; margin: -26px auto 0; width: 70%; border-right: 1px solid #3e8cff; border-bottom: 1px solid #3e8cff; border-left: 1px solid #3e8cff; }
.dat-nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dat-node { min-height: 100px; padding: 17px 12px; display: grid; place-items: center; color: #d9e8ff; background: #071f48; border: 1px solid #1e579b; border-radius: 10px; text-align: center; }
.dat-node strong { display: block; color: white; }
.dat-footer { margin-top: 22px; padding-top: 19px; border-top: 1px solid rgba(119, 176, 255, 0.22); }
.capability-trust { padding: 15px 0 130px; }
.capability-trust > header { max-width: 880px; }
.outcome-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.outcome-grid-four { grid-template-columns: repeat(4, 1fr); }
.outcome-card { min-height: 215px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.outcome-card strong { color: var(--blue); font-size: 36px; letter-spacing: -0.04em; }
.outcome-card h3 { margin: 25px 0 8px; font-size: 19px; }
.outcome-card p { margin: 0; color: var(--muted); }
.capability-cta { margin-bottom: 120px; padding: 65px 70px; display: flex; justify-content: space-between; gap: 50px; align-items: center; color: white; background: linear-gradient(120deg, #052453, #075cff); border-radius: 24px; }
.capability-cta h2 { max-width: 850px; margin: 0; }
.capability-cta .button-primary { flex: 0 0 auto; background: white; color: var(--blue); }
.availability-main { margin: 18px 0 32px; display: flex; gap: 18px; align-items: baseline; }
.availability-main strong { font-size: clamp(54px, 6vw, 84px); letter-spacing: -0.06em; line-height: 1; }
.availability-main span { max-width: 180px; color: #a9c8f4; font-weight: 750; }
.availability-grid { padding-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid rgba(119, 176, 255, 0.25); }
.availability-grid div { color: #d9e8ff; }
.availability-grid strong { display: block; color: white; }
.availability-panel small { margin-top: 28px; display: block; color: #8eadde; }
.operations-cycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cycle-step { position: relative; min-height: 245px; padding: 30px; color: white; background: var(--navy-2); border-radius: 16px; }
.cycle-step:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -26px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); background: white; border: 1px solid var(--line); border-radius: 50%; content: "→"; }
.cycle-step > span { color: #69a6ff; font-size: 11px; font-weight: 900; }
.cycle-step h3 { margin: 60px 0 10px; }
.cycle-step p { margin: 0; color: #adc2df; }
.git-section { grid-template-columns: 0.85fr 1.15fr; }
.git-branch { margin-bottom: 23px; padding: 14px 17px; display: flex; justify-content: space-between; color: #d8e8ff; background: #0b2d61; border: 1px solid #2166ba; border-radius: 9px; }
.git-branch code { color: white; background: transparent; border: 0; }
.pipeline-live { color: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.pipeline-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pipeline-step { position: relative; padding: 19px 8px; color: #c8dcf8; background: #071f48; border: 1px solid #1e579b; border-radius: 8px; text-align: center; }
.pipeline-step:not(:last-child)::after { position: absolute; right: -9px; z-index: 2; content: "→"; color: #5ce1ff; }
.git-pipeline > p { margin: 22px 0 0; color: #9ab6dc; font-size: 13px; }

@media (max-width: 1180px) {
  .nav-shell { gap: 20px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 10px; }
  .nav-actions .text-link { display: none; }
  .brand-product { display: none; }
  .hero-visual { width: 78%; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-card { min-height: 390px; }
  .capacity-strip { grid-template-columns: 1fr; }
  .scale-stages { grid-template-columns: 1fr 45px 1fr 45px 1fr; }
  .cost-controls { grid-template-columns: 1fr 1.2fr; }
  .period-control { grid-column: 1 / -1; }
  .cost-dashboard { grid-template-columns: 0.75fr 1.25fr; }
  .everywhere-shell { gap: 30px; }
  .watch-device { right: 0; }
  .device-orbit { width: 450px; height: 450px; }
  .orbit-two { width: 530px; height: 530px; }
}

@media (max-width: 920px) {
  .capability-hero,
  .capability-dark { grid-template-columns: 1fr; }
  .capability-hero { gap: 45px; }
  .capability-card-grid,
  .operations-cycle,
  .outcome-grid-four { grid-template-columns: repeat(2, 1fr); }
  .capability-dark { padding: 48px; }
  .cycle-step:not(:last-child)::after { display: none; }
  .capability-cta { align-items: flex-start; flex-direction: column; }
  .nav-shell { min-height: 70px; }
  .nav-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .nav-toggle span:not(.sr-only) { width: 19px; height: 2px; display: block; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    padding: 120px 30px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    background: rgba(249, 251, 255, 0.98);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
  }
  .main-nav.open {
    clip-path: inset(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: clip-path 0.28s ease, opacity 0.2s ease;
  }
  .main-nav a { font-size: 26px; text-transform: none; }
  .nav-actions { display: none; }
  .hero { min-height: auto; }
  .hero-visual { top: 430px; width: 100%; height: 500px; }
  .hero-visual::before { background: linear-gradient(180deg, white 0%, rgba(255,255,255,0.25) 25%, transparent 55%), linear-gradient(0deg, white, transparent 35%); }
  .hero-shell { min-height: 970px; padding: 75px 0 100px; justify-content: flex-start; }
  .hero-copy { width: 100%; max-width: 650px; }
  .hero-card { bottom: 45px; width: min(620px, 100%); }
  .signal-bar { grid-template-columns: 1fr 1fr; }
  .signal-bar > div + div { border-left: 0; }
  .signal-bar > div:nth-child(even) { border-left: 1px solid var(--line); }
  .console-heading { grid-template-columns: 1fr; gap: 25px; }
  .console-body { grid-template-columns: 1fr; }
  .console-sidebar { display: none; }
  .console-window { min-height: auto; }
  .console-topbar { grid-template-columns: 1fr 1fr; }
  .console-search { display: none; }
  .included-layout,
  .everywhere-shell,
  .sovereignty-section,
  .pricing-section,
  .faq-section,
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .scale-stages { grid-template-columns: 1fr; gap: 0; }
  .scale-stages > i { width: 1px; height: 38px; margin-left: 40px; background: linear-gradient(180deg, #295d9d, #5d97e2); }
  .scale-stages > i::after { top: auto; right: auto; bottom: -8px; left: -5px; transform: rotate(90deg); }
  .scale-stages article { min-height: 150px; }
  .scale-proof { grid-template-columns: 1fr 1fr; }
  .scale-proof > div:nth-child(3) { border-left: 0; }
  .cost-heading,
  .cost-dashboard { grid-template-columns: 1fr; gap: 32px; }
  .cost-heading > p { max-width: 720px; }
  .cost-controls { grid-template-columns: 1fr 1fr; }
  .comparison-scope { grid-template-columns: 1fr; }
  .comparison-scope > b { margin: -4px auto; }
  .savings-card { min-height: 480px; }
  .included-list { order: 2; }
  .architecture-card { order: 1; }
  .everywhere-copy { max-width: 660px; }
  .mesh-banner { grid-template-columns: 1fr; gap: 20px; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .capability-hero,
  .capability-section,
  .capability-dark,
  .capability-trust,
  .capability-cta { width: min(calc(100% - 28px), var(--max)); }
  .capability-hero { min-height: auto; padding: 76px 0 70px; }
  .capability-hero-panel,
  .availability-panel,
  .capability-dark,
  .capability-cta { padding: 28px; }
  .capability-section { padding: 80px 0; }
  .capability-card-grid,
  .operations-cycle,
  .outcome-grid,
  .outcome-grid-four { grid-template-columns: 1fr; }
  .capability-card { min-height: 220px; }
  .capability-card h3 { margin-top: 34px; }
  .capability-dark { margin-bottom: 80px; gap: 45px; }
  .dat-nodes { grid-template-columns: 1fr; }
  .dat-connectors { display: none; }
  .dat-footer { flex-direction: column; }
  .availability-grid { grid-template-columns: 1fr; }
  .pipeline-steps { grid-template-columns: 1fr 1fr; }
  .pipeline-step:not(:last-child)::after { display: none; }
  .capability-trust { padding-bottom: 85px; }
  .capability-cta { margin-bottom: 80px; }
  .nav-shell,
  .hero-shell,
  .signal-bar,
  .section,
  .contact-layout,
  .legal-page { width: min(calc(100% - 30px), var(--max)); }
  .brand-name { font-size: 21px; }
  .brand-mark { width: 29px; height: 29px; }
  .hero-shell { min-height: 970px; padding-top: 50px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 9px 16px; }
  .hero-visual { top: 495px; height: 430px; }
  .hero-card { bottom: 25px; padding: 22px; }
  .hero-card-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-card-actions .button { width: 100%; }
  .signal-bar { margin-top: -4px; padding: 20px 12px; font-size: 9px; }
  .section { padding: 92px 0; }
  .section-intro { padding-top: 110px; }
  .section-heading h2,
  .console-heading h2,
  .everywhere-copy h2,
  .sovereignty-copy h2,
  .pricing-copy h2,
  .faq-heading h2 { font-size: 41px; }
  .section-heading > p:last-child { font-size: 16px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-card { min-height: 360px; }
  .capacity-strip { padding: 24px; gap: 30px; }
  .capacity-options { grid-template-columns: 1fr; }
  .capacity-options > div { min-height: 95px; }
  .capacity-options .capacity-active { transform: none; }
  .scale-section,
  .cost-section { padding: 90px 15px; }
  .scale-copy h2,
  .cost-heading h2 { font-size: 41px; }
  .scale-copy > p:last-child,
  .cost-heading > p { font-size: 16px; }
  .scale-stages article { padding: 22px; }
  .scale-proof > div { padding: 22px 14px 0; }
  .scale-proof > div:nth-child(odd) { padding-left: 0; }
  .scale-proof strong { font-size: 21px; }
  .cost-controls { padding: 16px; grid-template-columns: 1fr; }
  .period-control { grid-column: auto; }
  .machine-inputs { grid-template-columns: 1fr 68px; }
  .savings-card { min-height: 430px; padding: 26px 22px; }
  .chart-card { padding: 20px 12px; }
  .chart-head { display: grid; }
  .chart-head { grid-template-columns: 1fr auto; }
  .chart-legend { grid-column: 1 / -1; }
  .chart-legend { justify-content: flex-start; }
  .cost-chart { min-height: 230px; margin-top: 5px; }
  .provider-totals { grid-template-columns: 1fr 1fr; }
  .provider-totals article { padding: 15px 9px; border-bottom: 1px solid #dbe4f1; }
  .provider-totals article:nth-child(odd) { border-left: 0; }
  .provider-totals article:first-child { padding-left: 9px; }
  .provider-totals strong { font-size: 16px; }
  .cost-method { grid-template-columns: 1fr; gap: 12px; }
  .console-section,
  .everywhere-section { padding: 90px 15px; }
  .persona-tabs { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
  .persona-tab { padding: 11px 6px; font-size: 9px; }
  .console-topbar { min-height: 55px; padding: 0 14px; }
  .console-user { font-size: 9px; }
  .console-content { padding: 18px; }
  .console-welcome { display: grid; }
  .ai-button { width: 100%; }
  .metric-row { grid-template-columns: 1fr; }
  .console-lower { grid-template-columns: 1fr; }
  .console-window { border-radius: 11px; }
  .included-layout { margin-top: 45px; gap: 35px; }
  .architecture-card { min-height: 430px; padding: 18px; }
  .architecture-app { margin-top: 45px; }
  .architecture-lines { width: 80%; }
  .architecture-nodes { gap: 6px; }
  .architecture-nodes div { padding: 8px 4px; }
  .architecture-nodes strong { font-size: 9px; }
  .device-stage { min-height: 560px; transform: scale(0.86); margin: -25px -35px; }
  .watch-device { right: 0; }
  .mesh-banner { margin-top: 55px; padding: 25px; }
  .mesh-banner h3 { font-size: 23px; }
  .france-card { min-height: 540px; padding: 32px 24px; }
  .france-card h3 { margin-top: 175px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid article { min-height: 220px; }
  .price-card { padding: 26px 20px; }
  .price-main { flex-wrap: wrap; }
  .price-main strong { font-size: 58px; }
  .price-columns { grid-template-columns: 1fr; }
  .price-columns ul + ul { margin-top: 0; }
  .closing-cta { margin: 0 8px; padding: 85px 15px; }
  .closing-content h2 { font-size: 43px; }
  .closing-content .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { padding-top: 75px; }
  .page-hero h1 { font-size: 50px; }
  .contact-layout { padding: 65px 0 95px; }
  .contact-form-card { padding: 23px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-head { gap: 15px; }
  .human-check { grid-template-columns: 1fr 105px; gap: 12px; padding: 15px; }
  .error-page > span { font-size: 120px; }
  .error-page h1 { font-size: 40px; }
}

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