:root {
  --bg: #f7f9f7;
  --paper: #ffffff;
  --paper-soft: #f1f5f2;
  --ink: #111c19;
  --ink-soft: #2f403b;
  --muted: #6f7d78;
  --faint: #9aa6a1;
  --line: #dde6e0;
  --line-strong: #c6d3cd;
  --accent: #0a6b55;
  --accent-soft: #e4f1ed;
  --accent-line: #bddbd1;
  --danger: #b64239;
  --shadow: 0 32px 90px -62px rgba(17, 28, 25, 0.72);
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --page-max: 1320px;
  --page-gutter: clamp(72px, 9vw, 160px);
  --section-y: clamp(30px, 3.4vw, 44px);
  --section-y-tight: clamp(18px, 2.4vw, 28px);
  --section-head-gap: clamp(18px, 2vw, 24px);
  --grid-gap: 18px;
  --panel-pad: clamp(22px, 3vw, 38px);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 8%, rgba(10, 107, 85, 0.052), transparent 33rem),
    radial-gradient(circle at 9% 34%, rgba(17, 28, 25, 0.035), transparent 24rem),
    linear-gradient(180deg, #fbfcfb 0%, var(--bg) 45%, #f4f7f5 100%);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 35, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 31, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 20;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px 14px;
  color: var(--ink);
  transition: transform 0.2s var(--ease);
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 12px 9px, rgba(16, 35, 31, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 8px 14px, rgba(16, 35, 31, 0.08) 0 1px, transparent 1px);
  background-size: 28px 28px, 34px 34px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - var(--page-gutter)), var(--page-max));
  margin: 12px auto 0;
  border: 1px solid rgba(220, 229, 224, 0.64);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px -40px rgba(16, 35, 31, 0.42);
  backdrop-filter: blur(18px) saturate(150%);
  padding: 10px 10px 10px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 21px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: var(--radius);
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.nav-link {
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--paper-soft);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button,
.solid-button,
.ghost-button,
.outline-button {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.button::after,
.solid-button::after,
.ghost-button::after,
.outline-button::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  transform: translateX(-115%);
  background: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, 0.32), transparent 80%);
  transition: transform 0.52s var(--ease);
}

.button:hover::after,
.solid-button:hover::after,
.ghost-button:hover::after,
.outline-button:hover::after {
  transform: translateX(115%);
}

.button > *,
.solid-button > *,
.ghost-button > *,
.outline-button > * {
  position: relative;
  z-index: 1;
}

.button:active,
.solid-button:active,
.ghost-button:active,
.outline-button:active,
.nav-link:active {
  transform: translateY(1px) scale(0.99);
}

.primary,
.solid-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 34px -26px rgba(16, 35, 31, 0.78);
}

.primary:hover,
.solid-button:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.secondary,
.ghost-button,
.outline-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.secondary:hover,
.ghost-button:hover,
.outline-button:hover {
  border-color: var(--line-strong);
  background: var(--paper);
}

.secondary.light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.icon {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  flex: 0 0 auto;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.page {
  min-height: 100dvh;
}

.hero-shell,
.section,
.masthead,
.proof-strip,
.trusted-rail,
.scale-band,
.site-footer {
  width: min(calc(100% - var(--page-gutter)), var(--page-max));
  margin-inline: auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(46px, 5vw, 72px);
  align-items: start;
  min-height: auto;
  padding: clamp(38px, 4.4vw, 58px) 0 var(--section-y-tight);
}

.hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  padding-top: clamp(6px, 1.6vw, 18px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 660px;
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(50px, 3.7vw, 54px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: 38px;
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.07;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 740;
  letter-spacing: 0;
  line-height: 1.16;
}

.hero-lede,
.lede {
  max-width: 66ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.hero-lede {
  margin-bottom: 0;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
}

.trial-line {
  margin: 14px 0 0;
  color: var(--faint);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(20px, 2.3vw, 28px);
  padding-top: 0;
}

.hero-proof-row span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}

.hero-proof-row .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.depth-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
  transform-style: preserve-3d;
}

.depth-scene::before {
  position: absolute;
  inset: 14% 7% 6% 4%;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(10, 107, 85, 0.12), transparent 56%),
    radial-gradient(circle at 70% 36%, rgba(17, 28, 25, 0.08), transparent 32%);
  filter: blur(18px);
  transform: rotateX(62deg) rotateZ(-10deg) translateZ(-70px);
}

.depth-ring {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 48%;
  width: 76%;
  aspect-ratio: 1 / 0.42;
  border: 1px solid rgba(10, 107, 85, 0.18);
  border-radius: 999px;
  transform: translate3d(-50%, -50%, -80px) rotateX(64deg) rotateZ(-8deg);
}

.depth-ring-two {
  width: 58%;
  border-style: dashed;
  border-color: rgba(10, 107, 85, 0.24);
  transform: translate3d(-45%, -42%, -38px) rotateX(64deg) rotateZ(10deg);
}

.depth-cube,
.depth-beam {
  --float-x: 0px;
  --float-y: 0px;
  --float-z: 0px;
  --float-rx: 0deg;
  --float-ry: 0deg;
  position: absolute;
  transform:
    translate3d(calc(var(--base-x) + var(--float-x)), calc(var(--base-y) + var(--float-y)), calc(var(--base-z) + var(--float-z)))
    rotateX(calc(var(--base-rx) + var(--float-rx)))
    rotateY(calc(var(--base-ry) + var(--float-ry)))
    rotateZ(var(--base-rz));
  transform-style: preserve-3d;
  will-change: transform;
}

.depth-cube {
  z-index: 2;
}

.depth-beam {
  z-index: 0;
}

.depth-cube {
  display: grid;
  width: 96px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(188, 217, 207, 0.84);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 240, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 30px 58px -36px rgba(16, 35, 31, 0.54);
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.depth-cube::after {
  position: absolute;
  inset: auto 9px -12px 9px;
  height: 18px;
  content: "";
  border: 1px solid rgba(188, 217, 207, 0.58);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(221, 236, 231, 0.48);
  transform: translateZ(-24px) rotateX(-62deg);
  transform-origin: top;
}

.depth-cube i {
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: 0 8px 0 -4px currentColor;
}

.depth-cube-primary {
  --base-x: 78px;
  --base-y: 38px;
  --base-z: 52px;
  --base-rx: 12deg;
  --base-ry: -18deg;
  --base-rz: -4deg;
  right: 0;
  top: 0;
}

.depth-beam {
  --base-x: 112px;
  --base-y: 316px;
  --base-z: -30px;
  --base-rx: 64deg;
  --base-ry: 0deg;
  --base-rz: -12deg;
  right: 6%;
  top: 0;
  width: 210px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(10, 107, 85, 0.2), transparent);
  filter: blur(1px);
}

.dashboard-mock {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  min-height: clamp(430px, 40vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(198, 211, 205, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 46px 110px -70px rgba(16, 35, 31, 0.68);
  transform: rotateX(2.4deg) rotateY(-3deg) translateZ(0);
  transform-origin: center center;
  transform-style: preserve-3d;
}

.dashboard-mock::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 16%, rgba(10, 107, 85, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 246, 0.74));
}

.mock-sidebar,
.mock-main {
  position: relative;
  z-index: 1;
}

.mock-sidebar {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 243, 0.78));
  padding: 14px 12px;
}

.mock-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 740;
}

.mock-brand span {
  display: inline-grid;
  width: 22px;
  color: var(--accent);
}

.mock-brand svg {
  fill: currentColor;
}

.mock-sidebar nav {
  display: grid;
  align-content: start;
  gap: 3px;
}

.mock-sidebar nav span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  border-radius: var(--radius);
  padding: 7px 9px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.mock-sidebar nav span.selected {
  background: var(--accent-soft);
  color: var(--accent);
}

.mock-sidebar .icon {
  width: 15px;
  height: 15px;
}

.mock-region {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
}

.mock-region strong {
  color: var(--ink);
  font-size: 12px;
}

.mock-region small {
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.mock-main {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  gap: 10px;
  padding: clamp(14px, 1.6vw, 20px);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mock-topbar span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 740;
}

.mock-topbar button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 8px 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
}

.mock-title {
  display: grid;
  gap: 5px;
  min-height: 76px;
  align-content: start;
}

.mock-title h3 {
  margin: 0;
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 640;
}

.mock-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  min-height: calc(2em * 1.42);
}

.mock-flow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 10px;
}

.mock-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  min-height: 62px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
  transition: border-color 0.38s var(--ease), box-shadow 0.38s var(--ease), transform 0.38s var(--ease);
}

.mock-flow article.current,
.mock-flow article.active {
  border-color: rgba(10, 107, 85, 0.32);
  box-shadow: 0 20px 34px -30px rgba(10, 107, 85, 0.54);
}

.mock-flow article.current {
  transform: translateY(-3px);
}

.mock-flow .icon {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.mock-flow strong {
  color: var(--ink);
  font-size: 13px;
}

.mock-flow small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.mock-flow > i {
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 107, 85, 0.15), rgba(10, 107, 85, 0.8));
}

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

.mock-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 11px;
  overflow: hidden;
  transition: border-color 0.38s var(--ease), transform 0.38s var(--ease), background 0.38s var(--ease);
}

.mock-card.current,
.mock-card.active {
  border-color: rgba(10, 107, 85, 0.32);
  background: rgba(255, 255, 255, 0.94);
}

.mock-card.current {
  transform: translateY(-2px);
}

.mock-card > span,
.mock-activity > span,
.orbit-card span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.mock-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.mock-card p b {
  color: var(--muted);
  font-weight: 560;
}

.mock-card p strong {
  color: var(--ink-soft);
  max-width: 92px;
  overflow-wrap: anywhere;
  text-align: right;
  font-weight: 650;
}

.mock-card p em {
  color: var(--accent);
  font-style: normal;
  font-weight: 720;
}

.orbit-card {
  grid-column: span 3;
  min-height: 128px;
  padding: 0;
}

.orbit-card canvas {
  display: block;
  width: 100%;
  height: 128px;
}

.orbit-card > div {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: grid;
  gap: 3px;
}

.orbit-card strong {
  color: var(--ink);
  font-size: 13px;
}

.mock-activity {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.mock-activity > span {
  padding: 9px 12px;
}

.mock-activity p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.mock-activity p i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

.mock-activity p small {
  color: var(--faint);
  font-size: 11px;
}

.dashboard-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 107, 85, 0.12);
}

.dashboard-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.08);
  transform-origin: left center;
  background: var(--accent);
}

.trusted-rail {
  display: grid;
  gap: var(--section-head-gap);
  padding: var(--section-y-tight) 0 var(--section-y-tight);
}

.trusted-rail .eyebrow {
  margin: 0;
  font-size: 11px;
}

.trusted-rail > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: center;
}

.trusted-rail span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 620;
}

.trusted-rail i {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.scale-band {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 22%, rgba(21, 132, 104, 0.28), transparent 28rem),
    linear-gradient(135deg, #082f29 0%, #0b221f 52%, #061816 100%);
  color: var(--paper);
  padding: var(--panel-pad) var(--panel-pad) clamp(22px, 2.4vw, 30px);
}

.scale-band + .section {
  padding-top: var(--section-y-tight);
}

.scale-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.scale-head h2 {
  color: var(--paper);
}

.scale-head p,
.scale-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scale-grid article {
  display: grid;
  gap: 11px;
  min-height: 178px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 clamp(20px, 3vw, 42px);
}

.scale-grid article:first-child {
  padding-left: 0;
}

.scale-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.scale-grid .icon {
  width: 44px;
  height: 44px;
  color: var(--paper);
}

.scale-grid h3 {
  margin-top: 8px;
  color: var(--paper);
  font-family: "Sora", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 620;
}

.motion-steps {
  display: grid;
  gap: var(--section-head-gap);
}

.motion-steps-section {
  padding-bottom: var(--section-y-tight);
}

.motion-steps-section + .logo-section {
  padding-top: var(--section-y-tight);
}

.motion-steps > h2 {
  max-width: 700px;
}

.motion-steps > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
  align-items: start;
}

.motion-steps article {
  display: grid;
  gap: 10px;
  text-align: center;
}

.motion-steps article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: center;
  color: var(--accent);
}

.motion-steps article .icon {
  width: 32px;
  height: 32px;
}

.motion-steps article > i {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(10, 107, 85, 0.65) 0 5px, transparent 5px 12px);
}

.motion-steps h3 {
  margin: 0;
  font-size: 14px;
}

.motion-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.logo-section {
  padding-bottom: clamp(14px, 1.7vw, 22px);
}

.logo-section + .section {
  padding-top: clamp(18px, 2vw, 24px);
}

.logo-tile {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  box-shadow: 0 18px 34px -32px rgba(17, 28, 25, 0.4);
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.logo-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 107, 85, 0.28);
  box-shadow: 0 22px 42px -34px rgba(10, 107, 85, 0.42);
}

.logo-tile i {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  flex: 0 0 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  transition: transform 0.32s var(--ease);
}

.logo-tile:hover i {
  transform: rotate(-4deg) scale(1.06);
}

.logo-tile i span {
  position: relative;
  z-index: 1;
}

.logo-tile i::before,
.logo-tile i::after {
  position: absolute;
  content: "";
}

.tone-blue i::after {
  width: 8px;
  height: 15px;
  border-radius: 2px;
  background: currentColor;
  clip-path: polygon(52% 0, 100% 0, 62% 48%, 100% 48%, 34% 100%, 46% 58%, 8% 58%);
}

.tone-blue i span,
.tone-steel i span,
.tone-orange i span,
.tone-sky i span,
.tone-teal i span,
.tone-gold i span {
  opacity: 0;
}

.tone-violet i::before,
.tone-violet i::after {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
}

.tone-violet i::before {
  transform: translate(-3px, -3px);
  box-shadow: 9px 0 0 currentColor;
}

.tone-violet i::after {
  transform: translate(-3px, 6px);
  box-shadow: 9px 0 0 currentColor;
  opacity: 0.58;
}

.tone-steel i::before {
  width: 15px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-16deg);
}

.tone-steel i::after {
  width: 15px;
  height: 2px;
  background: currentColor;
  transform: skewX(-16deg);
}

.tone-orange i::before {
  width: 15px;
  height: 15px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.92;
}

.tone-orange i::after {
  right: 5px;
  bottom: 5px;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #ffffff;
}

.tone-sky i::before {
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.tone-teal i::before,
.tone-teal i::after {
  width: 6px;
  height: 16px;
  border-radius: 4px;
  background: currentColor;
}

.tone-teal i::before {
  transform: translateX(-4px) rotate(-18deg);
}

.tone-teal i::after {
  transform: translateX(4px) rotate(18deg);
  opacity: 0.7;
}

.tone-gold i::before {
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 99px;
}

.tone-gold i::after {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: currentColor;
}

.logo-tile i {
  border: 1px solid rgba(221, 230, 224, 0.92);
  background: rgba(255, 255, 255, 0.92);
}

.logo-tile i::before,
.logo-tile i::after {
  content: none;
}

.logo-tile img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  object-fit: contain;
}

.logo-fallback,
.logo-tile i .logo-fallback {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 850;
  opacity: 1;
}

.logo-tile i img + .logo-fallback {
  display: none;
}

.tone-blue i { background: #e8f1ff; color: #2563eb; }
.tone-violet i { background: #eee9ff; color: #6d5bd0; }
.tone-indigo i { background: #e9edff; color: #3154c8; }
.tone-steel i { background: #eef3f7; color: #476172; }
.tone-orange i { background: #fff0df; color: #d1731f; }
.tone-sky i { background: #e9f6ff; color: #1682c2; }
.tone-teal i { background: #e3f5f1; color: #008069; }
.tone-gold i { background: #fff5d6; color: #b07a00; }
.tone-ink i { background: #111c19; color: #ffffff; }
.tone-plain i { background: #f2f5f3; color: #4a5b55; }

.motion-card {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  overflow: hidden;
  min-height: clamp(420px, 38vw, 500px);
  border: 1px solid rgba(198, 211, 205, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 242, 0.78)),
    var(--paper);
  box-shadow: var(--shadow);
}

.motion-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(10, 107, 85, 0.13), transparent 17rem),
    linear-gradient(90deg, rgba(17, 28, 25, 0.035), transparent 34%);
}

.infra-sidebar,
.infra-main {
  position: relative;
  z-index: 1;
}

.infra-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid rgba(198, 211, 205, 0.76);
  background: rgba(17, 28, 25, 0.96);
  padding: 22px 16px;
  color: var(--paper);
}

.infra-sidebar strong {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0;
}

.infra-sidebar span {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.sidebar-dot {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent),
    var(--accent);
}

.sidebar-stack {
  display: grid;
  gap: 9px;
  margin-top: 32px;
}

.sidebar-stack i {
  display: block;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.infra-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(16px, 2.2vw, 24px);
}

.infra-toolbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(221, 230, 224, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  backdrop-filter: blur(16px) saturate(140%);
}

.infra-toolbar span,
.infra-stage span {
  color: var(--faint);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}

.infra-toolbar strong,
.infra-stage strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
}

.infra-canvas {
  position: relative;
  min-height: 276px;
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 224, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(17, 28, 25, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 25, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 246, 0.82));
  background-size: 44px 44px, 44px 44px, auto;
}

.flow-lines {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  overflow: visible;
}

.flow-path {
  fill: none;
  stroke: rgba(10, 107, 85, 0.34);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  animation: flowDash 18s linear infinite;
}

.flow-packet {
  fill: var(--accent);
  filter: drop-shadow(0 6px 10px rgba(10, 107, 85, 0.25));
}

.flow-node {
  position: absolute;
  display: grid;
  gap: 4px;
  width: clamp(122px, 10.4vw, 148px);
  border: 1px solid rgba(221, 230, 224, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 42px -36px rgba(17, 28, 25, 0.62);
  padding: 11px 12px;
  opacity: 0.7;
  transform: translateY(0) scale(0.985);
  backdrop-filter: blur(16px) saturate(150%);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}

.flow-node::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--line-strong);
  content: "";
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.flow-node span {
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.flow-node strong {
  color: var(--ink);
  font-size: 13px;
}

.flow-node small,
.credential-card p,
.infra-stage small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.42;
}

.flow-node.active {
  opacity: 1;
  border-color: rgba(10, 107, 85, 0.22);
  background: rgba(255, 255, 255, 0.94);
}

.flow-node.current {
  transform: translateY(-4px) scale(1);
}

.flow-node.active::after {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(10, 107, 85, 0.12);
  animation: pulseRing 1.8s var(--ease) infinite;
}

.node-vps {
  left: 5%;
  top: 9%;
}

.node-dns {
  right: 5%;
  top: 9%;
}

.node-ip {
  right: 6%;
  bottom: 16%;
}

.node-smtp {
  left: 5%;
  bottom: 16%;
}

.node-tools {
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%) scale(0.985);
}

.node-tools.current {
  transform: translateX(-50%) translateY(-4px) scale(1);
}

.credential-card {
  position: absolute;
  left: 45%;
  top: 43%;
  width: min(190px, 38%);
  transform: translate(-50%, -50%) scale(0.985);
  border: 1px solid rgba(198, 211, 205, 0.88);
  border-radius: var(--radius);
  background: rgba(17, 28, 25, 0.95);
  box-shadow: 0 30px 58px -38px rgba(17, 28, 25, 0.86);
  padding: 13px;
  color: var(--paper);
  opacity: 0.8;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.credential-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.credential-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.credential-card-head span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(10, 107, 85, 0.16);
}

.credential-card-head strong {
  font-size: 13px;
}

.credential-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.credential-lines {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.credential-lines i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.credential-lines i::after {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  animation: lineShimmer 2.4s var(--ease) infinite;
}

.credential-lines i:nth-child(2)::after {
  width: 64%;
  animation-delay: 0.28s;
}

.credential-lines i:nth-child(3)::after {
  width: 38%;
  animation-delay: 0.5s;
}

.infra-stage {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(221, 230, 224, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  padding: 13px;
}

.infra-stage-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: center;
}

.infra-stage small {
  grid-column: 2;
}

.infra-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 107, 85, 0.12);
}

.infra-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.08);
  transform-origin: left center;
  background: var(--accent);
  transition: transform 0.08s linear;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px -48px rgba(16, 35, 31, 0.52);
}

.proof-strip span {
  min-height: 74px;
  border-right: 1px solid var(--line);
  padding: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  padding: var(--section-y) 0;
}

.section.narrow {
  width: min(calc(100% - var(--page-gutter)), 850px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.64fr);
  column-gap: clamp(26px, 4vw, 64px);
  row-gap: 14px;
  align-items: end;
  margin-bottom: var(--section-head-gap);
}

.section-head > .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.section-head > h2 {
  grid-column: 1;
}

.section-head > .lede {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.section-head.compact {
  display: block;
  max-width: 920px;
}

.section-head.compact > h2 {
  max-width: 920px;
}

.section-head.compact > .eyebrow {
  margin-bottom: 14px;
}

.section-head.compact > .eyebrow,
.section-head.compact > h2,
.section-head.compact > .lede {
  grid-column: auto;
  grid-row: auto;
}

.two-up,
.masthead,
.dns-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

.masthead {
  padding: clamp(48px, 6vw, 82px) 0 clamp(30px, 4vw, 52px);
  align-items: end;
}

.masthead + .section {
  padding-top: clamp(28px, 3.6vw, 48px);
}

.quiet-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.quiet-list p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 650;
}

.quiet-list .icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-rail article {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
}

.process-rail article::after {
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  animation: railGrow 5.8s var(--ease) infinite;
}

.process-rail article:nth-child(2)::after {
  animation-delay: 0.55s;
}

.process-rail article:nth-child(3)::after {
  animation-delay: 1.1s;
}

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

.process-rail span,
.principles span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.process-rail p,
.benefit-layout p,
.case-grid p,
.integration-grid p,
.contact-notes p,
.principles p,
.custom-plan p,
.bottom-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.benefit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.benefit-layout article {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(22px, 3vw, 34px);
}

.benefit-layout article.wide {
  background:
    linear-gradient(145deg, rgba(229, 242, 238, 0.68), rgba(255, 255, 255, 0.86)),
    var(--paper);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(24px, 4vw, 52px);
}

.integration-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.integration-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 11px 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.integration-marquee {
  display: grid;
  align-content: center;
  min-height: 278px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 12%, transparent 88%, var(--paper) 100%),
    rgba(255, 255, 255, 0.72);
}

.integration-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 16px;
  animation: marquee 32s linear infinite;
}

.integration-track span {
  display: inline-flex;
  min-width: 132px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 730;
  box-shadow: 0 18px 34px -30px rgba(17, 28, 25, 0.46);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.before-after div {
  padding: clamp(22px, 3vw, 34px);
}

.before-after div:first-child {
  border-right: 1px solid var(--line);
  background: rgba(242, 246, 243, 0.62);
}

.before-after p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 15px 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
}

.billing-row p {
  margin: 0 0 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 4px;
}

.billing-toggle button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.billing-toggle button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 14px 28px -24px rgba(16, 35, 31, 0.72);
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(22px, 3vw, 34px);
}

.plan-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.plan-badge {
  align-self: flex-start;
  margin: 0 0 24px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: var(--accent-soft);
  padding: 7px 9px;
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card.featured .plan-badge {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.plan-card > p:not(.plan-badge) {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card.featured > p:not(.plan-badge),
.plan-card.featured li,
.plan-card.featured small,
.plan-card.featured .price span {
  color: rgba(255, 255, 255, 0.72);
}

.price {
  margin: 28px 0 6px;
  font-size: 48px;
  font-weight: 780;
  letter-spacing: 0;
}

.price span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.plan-card small,
.bottom-cta small {
  color: var(--faint);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.plan-card li .icon {
  color: var(--accent);
}

.plan-card .button {
  margin-top: auto;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.custom-plan,
.bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(26px, 4vw, 52px);
}

.custom-plan p,
.bottom-cta p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.73);
}

.custom-plan h2,
.bottom-cta h2 {
  color: var(--paper);
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  color: var(--ink);
  text-align: left;
  font-weight: 740;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.open p {
  display: block;
}

.case-grid,
.integration-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.case-grid article,
.integration-grid article,
.principles article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(22px, 3vw, 34px);
}

.case-grid h3,
.integration-grid h3,
.principles h3,
.contact-notes h3 {
  max-width: 580px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.case-grid span,
.integration-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: var(--accent-soft);
  letter-spacing: 0;
}

.specific-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  counter-reset: usecase;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  padding: 0;
}

.specific-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
  color: var(--ink-soft);
  line-height: 1.42;
  list-style: none;
}

.specific-grid li::before {
  counter-increment: usecase;
  content: counter(usecase, decimal-leading-zero);
  color: var(--accent);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.provider-grid span {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  background: rgba(255, 255, 255, 0.76);
  padding: 15px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(20px, 3vw, 30px);
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 740;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 79, 0.11);
}

.field small {
  min-height: 16px;
  color: var(--faint);
  font-size: 12px;
}

.field em {
  min-height: 16px;
  color: var(--danger);
  font-size: 12px;
  font-style: normal;
}

.success {
  display: none;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: var(--accent-soft);
  padding: 12px 14px;
  color: var(--accent);
  font-weight: 720;
}

.success.show {
  display: block;
}

.contact-notes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contact-notes article {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(22px, 3vw, 30px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 34px 0 48px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 36px));
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 14px 15px;
  color: var(--ink);
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

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

.reveal {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.58s var(--ease) var(--delay, 0ms), opacity 0.58s var(--ease) var(--delay, 0ms);
}

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

[data-spotlight] {
  --mx: 50%;
  --my: 50%;
  isolation: isolate;
}

[data-spotlight]::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(10, 107, 85, 0.11), transparent 16rem);
  transition: opacity 0.28s var(--ease);
}

[data-spotlight].spotlight-on::before {
  opacity: 1;
}

[data-spotlight] > * {
  position: relative;
  z-index: 1;
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -168;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(10, 107, 85, 0.11);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(10, 107, 85, 0.04);
  }
}

@keyframes lineShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(240%);
  }
}

@keyframes railGrow {
  0%,
  18% {
    transform: scaleX(0);
    opacity: 0.45;
  }
  38%,
  72% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.2;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

  .integration-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

@media (max-width: 1040px) {
  :root {
    --page-gutter: clamp(48px, 6vw, 72px);
    --section-y: clamp(30px, 4.6vw, 42px);
    --section-y-tight: clamp(18px, 3.6vw, 28px);
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

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

  .menu-button {
    display: inline-flex;
  }

  .hero-shell,
  .section-head,
  .two-up,
  .masthead,
  .dns-layout,
  .contact-layout,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-shell {
    min-height: auto;
  }

  .section-head > .eyebrow,
  .section-head > h2,
  .section-head > .lede {
    grid-column: 1;
    grid-row: auto;
  }

  .section-head > .eyebrow {
    margin-bottom: 0;
  }

  .proof-strip,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .process-rail,
  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-rail > div,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    max-width: 860px;
  }

  .depth-scene {
    inset: -36px -22px -42px -22px;
  }

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

  .scale-grid article:nth-child(2) {
    border-right: 0;
  }

  .scale-grid article:nth-child(n + 3) {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .motion-steps > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-rail article:nth-child(2) {
    border-right: 0;
  }

  .process-rail article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 36px;
    --section-y: 30px;
    --section-y-tight: 18px;
    --section-head-gap: 18px;
    --grid-gap: 12px;
    --panel-pad: 28px;
  }

  .site-header,
  .hero-shell,
  .section,
  .masthead,
  .proof-strip,
  .trusted-rail,
  .scale-band,
  .site-footer,
  .section.narrow {
    width: min(calc(100% - var(--page-gutter)), 1220px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .brand {
    font-size: 17px;
  }

  .header-actions .ghost-button {
    display: none;
  }

  .solid-button {
    padding-inline: 13px;
  }

  .hero-shell {
    padding: 34px 0 24px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: 0;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .billing-row,
  .site-footer,
  .custom-plan,
  .bottom-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions,
  .billing-row {
    display: flex;
  }

  .button,
  .ghost-button,
  .outline-button {
    width: 100%;
  }

  .hero-actions .solid-button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof-row,
  .trusted-rail > div,
  .scale-head,
  .scale-grid,
  .motion-steps > div,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
    min-height: auto;
    transform: none;
  }

  .depth-scene {
    display: none;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-main {
    padding: 12px;
  }

  .mock-flow {
    grid-template-columns: 1fr;
  }

  .mock-flow > i {
    display: none;
  }

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

  .orbit-card {
    grid-column: auto;
  }

  .mock-activity p {
    grid-template-columns: auto 1fr;
  }

  .mock-activity p small {
    display: none;
  }

  .scale-band {
    padding: 28px;
  }

  .scale-grid article,
  .scale-grid article:first-child,
  .scale-grid article:last-child {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 24px 0 0;
  }

  .scale-grid article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .motion-steps article {
    text-align: left;
  }

  .motion-steps article > span {
    justify-self: start;
  }

  .motion-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .infra-sidebar {
    display: none;
  }

  .infra-main {
    padding: 12px;
  }

  .infra-toolbar {
    display: grid;
    align-items: start;
    gap: 5px;
  }

  .infra-canvas {
    display: grid;
    min-height: auto;
    gap: 10px;
    padding: 10px;
  }

  .flow-lines {
    display: none;
  }

  .flow-node,
  .credential-card,
  .node-tools,
  .node-tools.current {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .flow-node.current,
  .credential-card.active {
    transform: none;
  }

  .credential-card {
    order: 4;
  }

  .node-tools {
    order: 5;
  }

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

  .infra-stage small {
    grid-column: auto;
  }

  .integration-marquee {
    min-height: auto;
  }

  .integration-track {
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }

  .process-rail,
  .benefit-layout,
  .before-after,
  .case-grid,
  .integration-grid,
  .specific-grid,
  .principles,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .process-rail article,
  .process-rail article:nth-child(2),
  .before-after div:first-child {
    border-right: 0;
  }

  .process-rail article:not(:last-child),
  .before-after div:first-child {
    border-bottom: 1px solid var(--line);
  }

  .process-rail article:last-child {
    grid-column: auto;
  }

  .benefit-layout article.wide {
    grid-row: auto;
  }

  .billing-toggle {
    width: 100%;
  }
}
