:root {
  --bg: #f7f9fc;
  --paper: #ffffff;
  --ink: #080d1a;
  --soft-ink: #162033;
  --muted: #5d687d;
  --line: #dfe7f2;
  --line-strong: #c8d4e5;
  --blue: #2f5fd6;
  --cyan: #17b8d2;
  --teal: #22b89a;
  --lime: #94d82d;
  --amber: #f59f00;
  --dark: #090f1f;
  --dark-2: #10182a;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(8, 13, 26, .12);
  --container: 1240px;
  --font-base: "Segoe UI Variable Text", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(8, 13, 26, .18);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(21, 93, 252, .25);
  outline-offset: 2px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
}
h1 { max-width: 720px; font-size: 3.8rem; line-height: 1.04; font-weight: 700; }
h2 { font-size: 3rem; line-height: 1.1; font-weight: 690; }
h3 { font-size: 1.2rem; line-height: 1.2; font-weight: 650; }
ul, ol { margin: 0; padding: 0; }
ul { list-style: none; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.66)),
    rgba(255,255,255,.58);
  border-bottom: 1px solid rgba(210, 221, 236, .72);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 1px 0 rgba(255,255,255,.62) inset;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.28) 45%, rgba(255,255,255,.56)),
    radial-gradient(circle at 22% 0, rgba(255,255,255,.86), transparent 28%);
  opacity: .58;
  pointer-events: none;
}
.topbar.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.52)),
    rgba(255,255,255,.44);
  border-bottom-color: rgba(180, 195, 217, .7);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
  backdrop-filter: blur(24px) saturate(1.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,.78) inset,
    0 16px 34px rgba(8,13,26,.08);
}
.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 176px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 640;
}
.nav a { color: #20283a; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.nav a:hover, .nav a.is-active { color: var(--blue); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 660;
  cursor: pointer;
}
.nav-toggle:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.footer-link-button:focus-visible,
.scroll-top:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(21, 93, 252, .22);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 680;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn svg { flex: 0 0 auto; }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(21, 93, 252, .24);
}
.btn-primary:hover { background: #254fb8; }
.btn-secondary {
  color: var(--soft-ink);
  background: var(--paper);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--blue); }
.btn-light {
  color: var(--dark);
  background: #fff;
}
.btn-nav {
  min-height: 46px;
  color: #fff !important;
  background: var(--dark);
  padding: 12px 16px;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(118deg, rgba(47,95,214,.13) 0 18%, transparent 18.15% 100%),
    linear-gradient(62deg, transparent 0 46%, rgba(47,95,214,.075) 46.15% 58%, transparent 58.15%),
    linear-gradient(151deg, transparent 0 62%, rgba(23,184,210,.1) 62.2% 77%, transparent 77.2%),
    linear-gradient(36deg, transparent 0 28%, rgba(255,255,255,.78) 28.15% 38%, transparent 38.15%),
    linear-gradient(rgba(47, 95, 214, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 95, 214, .048) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f3f7fd 96%);
  background-size: auto, auto, auto, auto, 72px 72px, 72px 72px, auto;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(126deg, transparent 0 24%, rgba(255,255,255,.78) 24.15% 34%, transparent 34.15%),
    linear-gradient(54deg, transparent 0 36%, rgba(47,95,214,.07) 36.15% 48%, transparent 48.15%),
    linear-gradient(138deg, transparent 0 73%, rgba(23,184,210,.08) 73.15% 90%, transparent 90.15%),
    repeating-linear-gradient(124deg, transparent 0 48px, rgba(47,95,214,.052) 48px 49px, transparent 49px 96px);
  opacity: .96;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(247,249,252,.92));
}
.hero-plane {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
  opacity: .58;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.hero-plane-a {
  left: -8%;
  top: -8%;
  width: 42vw;
  min-width: 520px;
  height: 86%;
  clip-path: polygon(24% 0, 100% 0, 73% 100%, 0 100%);
  background: linear-gradient(132deg, rgba(226,232,255,.52), rgba(191,219,254,.2));
  animation: hero-plane-a 24s ease-in-out infinite;
  animation-delay: -7s;
}
.hero-plane-b {
  left: 30%;
  top: -16%;
  width: 32vw;
  min-width: 420px;
  height: 108%;
  clip-path: polygon(31% 0, 87% 0, 61% 100%, 0 100%);
  background: linear-gradient(150deg, rgba(255,255,255,.7), rgba(219,234,254,.28));
  animation: hero-plane-b 31s ease-in-out infinite;
  animation-delay: -18s;
}
.hero-plane-c {
  right: -12%;
  top: 3%;
  width: 48vw;
  min-width: 580px;
  height: 72%;
  clip-path: polygon(27% 0, 100% 0, 100% 72%, 0 100%);
  background: linear-gradient(151deg, rgba(207,250,254,.38), rgba(186,230,253,.2));
  animation: hero-plane-c 27s ease-in-out infinite;
  animation-delay: -11s;
}
.hero-plane-d {
  right: 12%;
  bottom: 0;
  width: 55vw;
  min-width: 620px;
  height: 48%;
  clip-path: polygon(18% 7%, 100% 0, 82% 100%, 0 86%);
  background: linear-gradient(118deg, rgba(224,231,255,.34), rgba(240,249,255,.22));
  animation: hero-plane-d 34s ease-in-out infinite;
  animation-delay: -24s;
}
.hero-plane {
  left: var(--plane-left, auto);
  top: var(--plane-top, auto);
  right: var(--plane-right, auto);
  bottom: var(--plane-bottom, auto);
  animation-name: hero-plane-drift;
  animation-duration: var(--plane-duration, 32s);
  animation-delay: var(--plane-delay, 0s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero-grid, .proof-band { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(470px, 1.02fr);
  gap: 40px;
  align-items: center;
  padding: 56px 0 34px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 22px;
  padding: .02em 0 .18em;
  line-height: 1.14;
  background: linear-gradient(105deg, #080d1a 0%, #080d1a 36%, #244aa6 43%, #4a92ff 49%, #17b8d2 53%, #244aa6 58%, #080d1a 66%, #080d1a 100%);
  background-size: 260% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: hero-title-shine 9.5s cubic-bezier(.42, 0, .18, 1) infinite;
}
.lead {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #465267;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.capability-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  color: #2c374c;
  font-size: .9rem;
  font-weight: 800;
}
.capability-row span {
  position: relative;
  padding-left: 18px;
}
.capability-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.hero-system {
  position: relative;
  min-height: 500px;
}
.browser-card,
.code-card,
.ai-flow-card,
.metric-card,
.integrations-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.browser-card {
  right: 0;
  top: 12px;
  width: 66%;
  overflow: hidden;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  color: #9fafc4;
  background: var(--dark);
  font-size: .8rem;
  font-weight: 800;
}
.browser-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7d1e1;
}
.browser-chrome span { margin-left: auto; }
.browser-content {
  display: grid;
  grid-template-columns: 1fr 142px;
  gap: 16px;
  padding: 24px;
  align-items: center;
  min-height: 218px;
  background: linear-gradient(135deg, #fff 0%, #eef6ff 100%);
}
.browser-content strong {
  display: block;
  max-width: 270px;
  margin-bottom: 12px;
  font-size: 1.62rem;
  line-height: 1.05;
  color: var(--ink);
}
.browser-content p { max-width: 320px; font-size: .96rem; }
.mock-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  border-radius: var(--radius);
  padding: 11px 14px;
  color: #fff;
  background: var(--blue);
  font-size: .86rem;
  font-weight: 850;
}
.mock-button svg { flex: 0 0 auto; }
.mini-visual {
  min-height: 132px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21,93,252,.16), transparent 58%),
    linear-gradient(155deg, #ffffff 0%, #dcecff 100%);
  border: 1px solid #d8e5f7;
  position: relative;
  overflow: hidden;
}
.mini-visual::before {
  content: "";
  position: absolute;
  inset: 30px 24px 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, #95d82d, #17b8d2);
  transform: skewX(-12deg);
  opacity: .84;
}
.browser-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: #fff;
}
.browser-services span {
  padding: 17px 18px;
  color: #263248;
  font-size: .87rem;
  font-weight: 850;
  border-right: 1px solid var(--line);
}
.browser-services span:last-child { border-right: 0; }

.code-card {
  left: 0;
  top: 50px;
  width: 210px;
  padding: 15px 16px;
  color: #cfe0ff;
  background: linear-gradient(160deg, #111827, #061226);
  border-color: rgba(255,255,255,.1);
  z-index: 2;
  height: 154px;
  overflow: hidden;
}
.code-card span { display: block; margin-bottom: 12px; color: var(--amber); font-weight: 850; }
.code-card code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: .78rem; line-height: 1.5; white-space: nowrap; }
.ai-flow-card {
  left: 0;
  bottom: 10px;
  width: 220px;
  padding: 18px;
  display: grid;
  gap: 10px;
  z-index: 3;
}
.ai-flow-card strong, .integrations-card strong { color: var(--ink); }
.ai-flow-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  color: #263248;
  font-size: .9rem;
  font-weight: 750;
  border-top: 1px solid var(--line);
}
.ai-flow-card span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}
.metric-card {
  right: 216px;
  bottom: 28px;
  width: 190px;
  min-height: 158px;
  padding: 20px;
  color: #d8e7ff;
  background: linear-gradient(160deg, #0a1020, #0d3264);
  border-color: rgba(255,255,255,.12);
  z-index: 4;
}
.metric-card strong { display: block; color: #37e0be; font-size: 2rem; line-height: 1; }
.metric-card span { display: block; margin: 7px 0 24px; color: #d8e7ff; font-size: .9rem; }
.metric-card i {
  display: inline-block;
  width: 20%;
  height: var(--h);
  min-height: 24px;
  margin-right: 4%;
  vertical-align: bottom;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}
.integrations-card {
  right: 0;
  bottom: 30px;
  width: 220px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.integrations-card strong { flex-basis: 100%; margin-bottom: 4px; }
.integrations-card span {
  padding: 7px 10px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: #354158;
  font-size: .82rem;
  font-weight: 850;
  background: #f7fbff;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 16px 40px rgba(8, 13, 26, .07);
}
.proof-band div {
  padding: 22px 26px;
  background: rgba(255,255,255,.94);
}
.proof-band strong { display: block; margin-bottom: 4px; font-size: 1.25rem; color: var(--ink); }
.proof-band span { color: var(--muted); font-size: .94rem; }

.section { padding: 92px 0; }
.section-compact { padding: 58px 0; }
.section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-head {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}
.section-head p { font-size: 1.05rem; }
.section-intro p { font-size: 1.04rem; }

.services-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-grid-six { grid-template-columns: repeat(3, 1fr); }
.service-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card,
.price-card,
.feature-panel,
.form-panel,
.reference {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(8, 13, 26, .06);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eef4ff;
}
.service-card:nth-child(2) .icon-box { color: var(--teal); background: #ecfbf7; }
.service-card:nth-child(3) .icon-box { color: #0ca6c7; background: #edfaff; }
.service-card:nth-child(4) .icon-box { color: #5c940d; background: #f3fbe8; }
.ui-icon { display: block; }
.service-card p { font-size: .96rem; }
.service-card ul,
.price-card ul {
  display: grid;
  gap: 9px;
  margin: 9px 0 22px;
  color: #334057;
  font-size: .92rem;
}
.service-card li,
.price-card li,
.signal-list li {
  position: relative;
  padding-left: 22px;
}
.service-card li::before,
.price-card li::before,
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.service-card a,
.price-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 850;
}
.signal-list {
  display: grid;
  gap: 12px;
  color: #344056;
  font-weight: 650;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, var(--dark) 0%, #10172a 100%);
  background-size: 64px 64px, 64px 64px, auto;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #c7d1e2; }
.section-dark .section-label { color: var(--lime); }
.build-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: start;
}
.build-layout .btn { margin-top: 18px; }
.section-audit {
  background:
    linear-gradient(rgba(21,93,252,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,93,252,.045) 1px, transparent 1px),
    #f7f9fc;
  background-size: 66px 66px;
}
.audit-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.audit-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}
.audit-board article {
  min-height: 274px;
  padding: 26px;
  background: #fff;
}
.audit-board strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--blue);
  background: #f2f6ff;
  font-weight: 900;
}
.audit-board h3 { margin-bottom: 10px; }

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.comparison-grid article {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.comparison-grid ul {
  display: grid;
  gap: 12px;
  color: #d8e2f2;
  font-size: .95rem;
}
.comparison-grid li {
  position: relative;
  padding-left: 28px;
}
.comparison-grid li::before {
  position: absolute;
  left: 0;
  top: .08em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
}
.minus-list li::before {
  content: "!";
  color: #111827;
  background: #ffc857;
}
.plus-list li::before {
  content: "+";
  color: #05261f;
  background: #37e0be;
}
.build-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.build-rail article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.build-rail span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23,184,210,.65);
  border-radius: var(--radius);
  color: var(--lime);
  font-size: 1.1rem;
  font-weight: 900;
}
.build-rail article > span {
  grid-row: 1 / span 2;
}
.build-rail article > h3,
.build-rail article > p {
  grid-column: 2;
}

.section-tech {
  background:
    linear-gradient(145deg, rgba(47,95,214,.06), transparent 36%),
    linear-gradient(35deg, transparent 0 62%, rgba(23,184,210,.08) 100%),
    #fff;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tech-grid article {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21,93,252,.06), transparent 58%),
    #fff;
  box-shadow: 0 16px 40px rgba(8, 13, 26, .06);
}
.tech-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .82rem;
  line-height: 1.45;
  font-weight: 800;
}
.tech-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.18rem;
}
.tech-grid p { font-size: .95rem; }
.tech-grid ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.tech-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--soft-ink);
  font-size: .9rem;
  font-weight: 650;
}
.tech-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.section-process { background: #fff; }
.process-layout,
.split,
.contact-grid,
.cta-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.media-frame {
  overflow: hidden;
  margin-top: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #eaf0f7;
  box-shadow: var(--shadow);
}
.media-frame img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}
.timeline {
  display: grid;
  list-style: none;
  border-top: 1px solid var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 900;
  background: #fff;
}
.timeline h3 { margin-bottom: 8px; }

.section-pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
  align-items: stretch;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
}
.price-card.is-featured {
  border-color: var(--teal);
  box-shadow: 0 18px 46px rgba(34, 184, 154, .16);
}
.tag {
  position: absolute;
  top: -13px;
  right: 18px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price {
  margin: 4px 0 4px;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}
.value-list {
  display: grid;
  gap: 0;
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.value-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.value-list article:last-child { border-bottom: 0; }
.value-list .ui-icon { color: var(--blue); }
.value-list h3 { margin-bottom: 7px; font-size: 1rem; }
.value-list p { font-size: .9rem; }

.section-faq {
  background: var(--bg);
}
.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 46px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 13, 26, .05);
}
.faq-item button {
  width: 100%;
  border: 0;
  padding: 20px 56px 20px 22px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
}
.faq-item.is-open button::after { content: "-"; }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
}
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 0; }

.section-references { background: #fff; }
.references {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.reference {
  position: relative;
  min-height: 168px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(21,93,252,.05), transparent 48%),
    #fff;
}
.reference-logo {
  min-height: 46px;
  display: flex;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(218,226,242,.72);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
}
.reference-logo-dark {
  background: #101828;
  border-color: rgba(16,24,40,.32);
}
.reference-logo img {
  display: block;
  max-width: 148px;
  max-height: 46px;
  object-fit: contain;
}
.reference-copy {
  display: block;
  margin-top: auto;
}
.reference-type {
  display: inline-flex !important;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #1f4fb4 !important;
  background: rgba(47, 95, 214, .08);
  font-size: .72rem !important;
  font-weight: 850;
}
.reference strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}
.reference-copy > span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}
.reference-link {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.reference-link:hover {
  transform: translateY(-2px);
  border-color: rgba(47,95,214,.42);
  box-shadow: 0 22px 46px rgba(47,95,214,.13);
}
.reference-link em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue);
  font-style: normal;
  font-size: .86rem;
  font-weight: 850;
}
.reference-link em svg { width: 16px; height: 16px; }

.section-case-intro { background: #fff; }
.case-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: start;
}
.case-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 850;
}
.case-client-intro {
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.case-client-intro h2 {
  max-width: 840px;
  font-size: 2.15rem;
  line-height: 1.12;
}
.case-client-intro p {
  max-width: 860px;
  font-size: 1.03rem;
}
.case-site-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
}
.case-site-link svg {
  width: 17px;
  height: 17px;
}
.case-facts dl {
  display: grid;
  gap: 0;
  margin: 0;
}
.case-facts div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.case-facts div:first-child { padding-top: 0; }
.case-facts div:last-child { padding-bottom: 0; border-bottom: 0; }
.case-facts dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
}
.case-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}
.case-card-grid { align-self: start; }
.case-timeline { max-width: 1080px; margin: 0 auto; }
.section-case-outcome .feature-panel {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
}
.section-case-outcome .signal-list { color: #d3deee; }
.section-case-outcome .signal-list li::before { background: var(--lime); }

.section-cta {
  color: #fff;
  background: linear-gradient(135deg, #0a1020, #12315c);
}
.section-cta h2, .section-cta h3 { color: #fff; }
.section-cta p, .section-cta .signal-list { color: #d3deee; }
.section-cta .section-label { color: var(--lime); }
.cta-layout {
  grid-template-columns: 1fr 420px;
  align-items: center;
}
.cta-copy h2 { max-width: 680px; }
.cta-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
}
.cta-panel h3 {
  margin-bottom: 12px;
}
.cta-panel p {
  margin-bottom: 20px;
}
.cta-panel .btn {
  width: 100%;
}
.cta-direct {
  margin: 16px 0 0;
  color: #c7d4e6;
  font-size: .94rem;
}
.cta-direct a {
  color: #fff;
  font-weight: 760;
}
.section-home-pricing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(147,197,253,.18), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(253,186,116,.13), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(196,181,253,.15), transparent 29%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, #090f1f 0%, #12315c 100%);
  background-size: auto, auto, auto, 64px 64px, 64px 64px, auto;
}
.section-home-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 60%);
  opacity: .75;
}
.section-home-pricing .container {
  position: relative;
  z-index: 1;
}
.home-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: end;
}
.section-home-pricing .cta-copy p {
  max-width: 760px;
}
.home-pricing-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    rgba(8,13,26,.2);
}
.home-budget-curtain {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  min-height: 340px;
  margin-top: 4px;
}
.home-budget-curtain-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-top: 5px solid var(--budget-accent);
  border-radius: 7px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, var(--budget-soft-dark), transparent 34%),
    linear-gradient(150deg, var(--budget-soft-dark), rgba(255,255,255,.04) 58%),
    rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: flex .28s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.home-budget-curtain-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--budget-accent);
  opacity: .9;
}
.home-budget-curtain-item::after {
  content: "";
  position: absolute;
  inset: -35% -85%;
  z-index: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.22) 48%, rgba(255,255,255,.08) 54%, transparent 64%);
  opacity: 0;
  transform: translateX(-42%) rotate(5deg);
  pointer-events: none;
  animation: budget-curtain-shine 8.2s ease-in-out infinite;
  animation-delay: calc(var(--budget-order, 0) * .34s);
}
.home-budget-curtain-item.is-open,
.home-budget-curtain-item:focus-within {
  flex: 3.15 1 0;
  border-color: var(--budget-accent);
  background:
    radial-gradient(circle at 92% 12%, var(--budget-soft-dark), transparent 35%),
    linear-gradient(150deg, var(--budget-soft-dark), rgba(255,255,255,.07) 58%),
    rgba(255,255,255,.06);
}
.home-budget-curtain-trigger {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 10px 18px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.home-budget-curtain-trigger:focus-visible {
  outline: 2px solid var(--budget-accent);
  outline-offset: -5px;
}
.home-budget-curtain-item.is-open .home-budget-curtain-trigger,
.home-budget-curtain-item:focus-within .home-budget-curtain-trigger {
  flex: 0 0 auto;
  padding: 19px 17px 17px;
}
.home-budget-curtain-range {
  color: var(--budget-accent);
  font-family: var(--font-display);
  font-size: 1.52rem;
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}
.home-budget-range-full {
  display: none;
}
.home-budget-range-compact {
  font-size: clamp(1.72rem, 1.45vw, 1.9rem);
}
.home-budget-curtain-item.is-open .home-budget-range-compact,
.home-budget-curtain-item:focus-within .home-budget-range-compact {
  display: none;
}
.home-budget-curtain-item.is-open .home-budget-range-full,
.home-budget-curtain-item:focus-within .home-budget-range-full {
  display: inline-block;
  font-size: clamp(1.72rem, 1.45vw, 1.9rem);
}
.home-budget-curtain-title {
  color: #dbe6f5;
  font-family: var(--font-display);
  font-size: 1.06rem;
  line-height: 1.08;
  font-weight: 760;
}
.home-budget-curtain-item.is-open .home-budget-curtain-title,
.home-budget-curtain-item:focus-within .home-budget-curtain-title {
  font-size: 1.04rem;
}
.home-budget-curtain-tag {
  display: none;
  align-self: flex-start;
  padding: 4px 6px;
  border-radius: 5px;
  color: #08111f;
  background: var(--budget-accent);
  font-size: .64rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}
.home-budget-curtain-item.is-open .home-budget-curtain-tag,
.home-budget-curtain-item:focus-within .home-budget-curtain-tag {
  display: inline-flex;
}
.home-budget-curtain-body {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  padding: 0 17px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, max-height .28s ease, padding .2s ease;
}
.home-budget-curtain-item.is-open .home-budget-curtain-body,
.home-budget-curtain-item:focus-within .home-budget-curtain-body {
  max-height: 260px;
  padding: 0 17px 20px;
  opacity: 1;
  transform: translateY(0);
}
.home-budget-curtain-body p {
  margin: 0 0 13px;
  color: #dbe6f5;
  font-size: .94rem;
  line-height: 1.52;
}
.home-budget-curtain-body ul {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  color: #e9f1fb;
  font-size: .88rem;
}
.home-budget-curtain-body li {
  position: relative;
  padding-left: 17px;
}
.home-budget-curtain-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--budget-accent);
}
.home-budget-curtain-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 850;
}
.home-budget-curtain-link svg {
  color: var(--budget-accent);
}
@media (hover: hover) and (pointer: fine) {
  .home-budget-curtain:hover .home-budget-curtain-item {
    flex: .78 1 0;
  }
  .home-budget-curtain .home-budget-curtain-item:hover,
  .home-budget-curtain .home-budget-curtain-item:focus-within {
    flex: 3.15 1 0;
    border-color: var(--budget-accent);
    transform: translateY(-3px);
  }
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-curtain-body,
  .home-budget-curtain .home-budget-curtain-item:focus-within .home-budget-curtain-body {
    max-height: 260px;
    padding: 0 17px 20px;
    opacity: 1;
    transform: translateY(0);
  }
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-curtain-trigger,
  .home-budget-curtain .home-budget-curtain-item:focus-within .home-budget-curtain-trigger {
    flex: 0 0 auto;
    padding: 19px 17px 17px;
  }
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-range-compact,
  .home-budget-curtain .home-budget-curtain-item:focus-within .home-budget-range-compact {
    display: none;
  }
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-range-full,
  .home-budget-curtain .home-budget-curtain-item:focus-within .home-budget-range-full {
    display: inline-block;
    font-size: clamp(1.72rem, 1.45vw, 1.9rem);
  }
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-curtain-title,
  .home-budget-curtain .home-budget-curtain-item:focus-within .home-budget-curtain-title {
    font-size: 1.04rem;
  }
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-curtain-tag,
  .home-budget-curtain .home-budget-curtain-item:focus-within .home-budget-curtain-tag {
    display: inline-flex;
  }
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-curtain-trigger {
    flex: 1;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 10px 18px;
  }
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-range-compact {
    display: inline-block;
  }
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-range-full {
    display: none;
  }
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-curtain-title {
    font-size: 1.06rem;
  }
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-curtain-tag {
    display: none;
  }
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-curtain-body {
    max-height: 0;
    padding: 0 17px;
    opacity: 0;
    transform: translateY(8px);
  }
}
@keyframes budget-curtain-shine {
  0%, 11%, 100% {
    opacity: 0;
    transform: translateX(-42%) rotate(5deg);
  }
  3% {
    opacity: .85;
  }
  9% {
    opacity: 0;
    transform: translateX(42%) rotate(5deg);
  }
}
@keyframes hero-plane-drift {
  0% {
    opacity: var(--plane-opacity-start, .44);
    transform: translate3d(var(--plane-x-start, -8%), var(--plane-y-start, 4%), 0) rotate(var(--plane-rotate-start, -7deg)) scale(var(--plane-scale-start, 1));
  }
  46% {
    opacity: var(--plane-opacity-mid, .64);
    transform: translate3d(var(--plane-x-mid, 14%), var(--plane-y-mid, -7%), 0) rotate(var(--plane-rotate-mid, 10deg)) scale(var(--plane-scale-mid, 1.08));
  }
  100% {
    opacity: var(--plane-opacity-end, .48);
    transform: translate3d(var(--plane-x-end, -3%), var(--plane-y-end, 7%), 0) rotate(var(--plane-rotate-end, -3deg)) scale(var(--plane-scale-end, 1.02));
  }
}
@keyframes hero-plane-a {
  0% {
    opacity: .48;
    transform: translate3d(-10%, 5%, 0) rotate(-9deg) scale(1);
  }
  43% {
    opacity: .65;
    transform: translate3d(18%, -8%, 0) rotate(10deg) scale(1.1);
  }
  100% {
    opacity: .5;
    transform: translate3d(-4%, 9%, 0) rotate(-4deg) scale(1.03);
  }
}
@keyframes hero-plane-b {
  0% {
    opacity: .42;
    transform: translate3d(8%, -8%, 0) rotate(11deg) scale(1.02);
  }
  57% {
    opacity: .62;
    transform: translate3d(-18%, 10%, 0) rotate(-12deg) scale(.96);
  }
  100% {
    opacity: .45;
    transform: translate3d(4%, 4%, 0) rotate(5deg) scale(1.05);
  }
}
@keyframes hero-plane-c {
  0% {
    opacity: .38;
    transform: translate3d(12%, 2%, 0) rotate(-7deg) scale(1);
  }
  46% {
    opacity: .6;
    transform: translate3d(-16%, 11%, 0) rotate(11deg) scale(1.08);
  }
  100% {
    opacity: .42;
    transform: translate3d(7%, -4%, 0) rotate(-3deg) scale(1.02);
  }
}
@keyframes hero-plane-d {
  0% {
    opacity: .34;
    transform: translate3d(-11%, 8%, 0) rotate(7deg) scale(1.05);
  }
  62% {
    opacity: .55;
    transform: translate3d(17%, -10%, 0) rotate(-11deg) scale(.97);
  }
  100% {
    opacity: .37;
    transform: translate3d(-5%, 5%, 0) rotate(3deg) scale(1.03);
  }
}
@keyframes hero-title-shine {
  0%, 18% {
    background-position: 120% 0;
  }
  52%, 100% {
    background-position: -55% 0;
  }
}
@keyframes page-hero-plane-a {
  0% {
    opacity: .48;
    transform: translate3d(-6%, 3%, 0) rotate(-5deg) scale(1);
  }
  47% {
    opacity: .68;
    transform: translate3d(9%, -5%, 0) rotate(8deg) scale(1.06);
  }
  100% {
    opacity: .52;
    transform: translate3d(-2%, 6%, 0) rotate(-2deg) scale(1.02);
  }
}
@keyframes page-hero-plane-b {
  0% {
    opacity: .38;
    transform: translate3d(7%, -3%, 0) rotate(6deg) scale(1.02);
  }
  54% {
    opacity: .62;
    transform: translate3d(-10%, 7%, 0) rotate(-9deg) scale(.98);
  }
  100% {
    opacity: .42;
    transform: translate3d(3%, 3%, 0) rotate(3deg) scale(1.04);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-budget-curtain-item::after,
  .hero-plane,
  .page-hero:not(.page-hero-case)::before,
  .page-hero:not(.page-hero-case)::after,
  .pricing-hero::before,
  .pricing-hero::after,
  .budget-detail-hero::before,
  .budget-detail-hero::after {
    animation: none;
  }
  .hero h1 {
    animation: none;
    background: linear-gradient(105deg, #080d1a, #080d1a);
  }
}
.form-panel {
  padding: 26px;
  background: #fff;
}
.section-cta .form-panel label,
.form-panel label { color: #29354b; }
.section-next-step {
  background: #fff;
}
.next-step {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47,95,214,.08), transparent 60%),
    linear-gradient(145deg, transparent 0 58%, rgba(23,184,210,.08)),
    #fff;
  box-shadow: var(--shadow);
}
.next-step h2 {
  max-width: 780px;
  font-size: 2.25rem;
}
.next-step p {
  max-width: 760px;
  margin-bottom: 0;
}
.next-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 76px 0 62px;
  background:
    linear-gradient(122deg, rgba(47,95,214,.12) 0 24%, transparent 24% 100%),
    linear-gradient(148deg, transparent 0 62%, rgba(23,184,210,.12) 100%),
    linear-gradient(rgba(47,95,214,.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,95,214,.052) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(125deg, transparent 0 48px, rgba(47,95,214,.055) 48px 49px, transparent 49px 96px),
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,0));
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 70% 100%);
}
.page-hero:not(.page-hero-case)::before {
  transform-origin: 72% 44%;
  animation: page-hero-plane-a 30s ease-in-out infinite;
  animation-delay: -10s;
  will-change: transform, opacity;
}
.page-hero:not(.page-hero-case)::after {
  content: "";
  position: absolute;
  inset: -18% -12% -8% 42%;
  z-index: -1;
  background: linear-gradient(128deg, rgba(207,250,254,.28), rgba(224,231,255,.26));
  clip-path: polygon(20% 0, 100% 8%, 78% 100%, 0 88%);
  opacity: .58;
  transform-origin: 52% 48%;
  animation: page-hero-plane-b 36s ease-in-out infinite;
  animation-delay: -21s;
  will-change: transform, opacity;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 { max-width: 980px; font-size: 4.2rem; }
.page-hero-case {
  min-height: 520px;
  padding: 70px 0;
  color: #fff;
  background: #0b1020;
}
.page-hero-case::before {
  inset: 0;
  z-index: -2;
  clip-path: none;
  background:
    linear-gradient(90deg, rgba(8,13,26,.94) 0%, rgba(8,13,26,.76) 48%, rgba(8,13,26,.34) 100%),
    linear-gradient(180deg, rgba(8,13,26,.08), rgba(8,13,26,.64)),
    var(--case-bg);
  background-size: cover;
  background-position: center top;
}
.page-hero-case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
}
.case-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 52px;
  align-items: center;
}
.case-hero-copy .section-label { color: #a8c4ff; }
.case-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-hero-case h1 {
  max-width: 860px;
  color: #fff;
}
.page-hero-case .lead {
  max-width: 780px;
  color: rgba(255,255,255,.82);
}
.case-hero-visual {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}
.case-hero-logo {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.case-hero-logo.reference-logo-dark {
  background: #101828;
  border-color: rgba(16,24,40,.32);
}
.case-hero-logo img {
  display: block;
  max-width: 220px;
  max-height: 52px;
  object-fit: contain;
}
.case-hero-shot {
  display: block;
  width: 100%;
  margin-top: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.reference-screenshot-frame img {
  object-position: top center;
}
.feature-panel {
  padding: 30px;
}
.feature-panel h3 { margin-bottom: 18px; }
.section-soft {
  background: var(--bg);
}
.section-page-detail {
  background: #fff;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.content-grid-six {
  grid-template-columns: repeat(3, 1fr);
}
.content-grid article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(47,95,214,.055), transparent 58%),
    #fff;
  box-shadow: 0 12px 30px rgba(8,13,26,.05);
}
.content-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}
.content-grid p {
  margin-bottom: 0;
  font-size: .94rem;
}
.section-ai-overview {
  background:
    radial-gradient(circle at 88% 8%, rgba(55, 224, 190, .16), transparent 30%),
    linear-gradient(rgba(21,93,252,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,93,252,.045) 1px, transparent 1px),
    #fff;
  background-size: auto, 70px 70px, 70px 70px;
}
.ai-hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}
.ai-hero h2 {
  max-width: 780px;
}
.ai-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(21,93,252,.18);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(21,93,252,.08), transparent 48%),
    linear-gradient(180deg, #fff, #f3f8ff);
  box-shadow: var(--shadow);
}
.ai-panel::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(23,184,210,.22);
  border-radius: 50%;
}
.ai-panel strong {
  position: relative;
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.25rem;
}
.ai-panel ol {
  position: relative;
  display: grid;
  gap: 14px;
  list-style: none;
}
.ai-panel li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #263248;
  background: rgba(255,255,255,.86);
  font-weight: 760;
}
.ai-panel li span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #05261f;
  background: var(--lime);
  font-size: .82rem;
  font-weight: 950;
}
.section-ai-capabilities {
  background: var(--bg);
}
.ai-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ai-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(55,224,190,.08), transparent 56%),
    #fff;
  box-shadow: 0 12px 30px rgba(8,13,26,.05);
}
.ai-card > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border: 1px solid rgba(21,93,252,.2);
  border-radius: var(--radius);
  color: var(--blue);
  background: #edf4ff;
  font-weight: 950;
}
.ai-card h3 {
  margin-bottom: 10px;
}
.section-ai-usecases {
  background:
    radial-gradient(circle at 18% 18%, rgba(23,184,210,.22), transparent 30%),
    linear-gradient(135deg, #081225, #132f5d);
}
.ai-usecases {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: start;
}
.ai-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ai-usecase-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.065);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.ai-usecase-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.08rem;
}
.ai-usecase-grid span {
  color: #d5e2f3;
  font-size: .95rem;
  line-height: 1.62;
}
.section-ai-workflow {
  background: #fff;
}
.ai-proof-list {
  margin-top: 24px;
}
.ai-workflow-list li span {
  color: #05261f;
  background: var(--lime);
  border-color: rgba(55,224,190,.5);
}
.contact-direct { margin-top: 28px; }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}
.table th, .table td {
  padding: 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table tr:last-child td { border-bottom: 0; }
.table th {
  color: var(--ink);
  background: #edf3fb;
  font-weight: 900;
}

.section-legal {
  background: #fff;
}
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}
.legal-nav h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}
.legal-nav a,
.text-button,
.footer-link-button {
  color: var(--blue);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.legal-nav a {
  padding: 9px 10px;
  border-radius: 6px;
}
.legal-nav a:hover {
  background: #eaf1ff;
}
.text-button,
.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
}
.legal-nav .text-button {
  margin-top: 12px;
  padding: 11px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--soft-ink);
  background: #fff;
}
.legal-content {
  display: grid;
  gap: 26px;
  max-width: 860px;
}
.legal-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}
.legal-notice {
  margin-bottom: 6px;
  padding: 18px 20px;
  border: 1px solid #bdd5ff;
  border-radius: var(--radius);
  color: #17376c;
  background: #eef5ff;
  font-weight: 750;
}

.form-intro {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid #bdd5ff;
  border-radius: var(--radius);
  color: #17376c;
  background: #eef5ff;
  font-size: .94rem;
  font-weight: 720;
}
.form { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}
.form-fieldset legend {
  padding: 0 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 850;
}
.form-help {
  margin: 0 0 12px;
  font-size: .88rem;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #344056;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.35;
}
.checkbox-grid input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--blue);
}
label {
  display: grid;
  gap: 7px;
  font-size: .9rem;
  font-weight: 850;
}
.check-label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #43506a;
  font-weight: 650;
  line-height: 1.45;
}
.check-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--blue);
}
.check-label a {
  color: var(--blue);
  font-weight: 850;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: .95rem;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(21, 93, 252, .16);
  border-color: var(--blue);
}
.notice {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-weight: 850;
}
.notice-ok { color: #087a51; background: #dff8ef; }
.notice-error { color: #a12222; background: #ffe7e7; }
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.section-thank-you {
  background:
    linear-gradient(135deg, rgba(47,95,214,.08), transparent 54%),
    linear-gradient(34deg, transparent 0 62%, rgba(23,184,210,.09)),
    #fff;
}
.thank-you-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: start;
}
.thank-you-main h2 {
  max-width: 840px;
  font-size: 3rem;
}
.thank-you-main p {
  max-width: 760px;
}
.thank-you-status {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid #bdd5ff;
  border-radius: var(--radius);
  color: #17376c;
  background: #eef5ff;
}
.thank-you-status strong {
  color: #0f2d5c;
  font-family: var(--font-display);
  font-size: 1.04rem;
}
.thank-you-status span {
  color: #355175;
  line-height: 1.58;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.thank-you-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.thank-you-card h3 {
  margin-bottom: 8px;
}
.thank-you-id {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 760;
}
.thank-you-summary {
  display: grid;
  gap: 0;
}
.thank-you-summary div {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.thank-you-summary div:last-child {
  border-bottom: 0;
}
.thank-you-summary dt {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
}
.thank-you-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 740;
  line-height: 1.45;
}
.section-thank-next {
  background: var(--bg);
}
.thank-you-timeline li {
  grid-template-columns: 58px 1fr;
  padding: 20px 0;
}
.thank-you-timeline h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.not-found-actions {
  display: grid;
  gap: 10px;
}
.not-found-actions .btn {
  width: 100%;
}

.footer {
  padding: 58px 0 28px;
  color: #dbe5f2;
  background: #070b14;
}
.footer-network {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
  align-items: stretch;
  padding-bottom: 38px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-network__intro {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21,93,252,.18), transparent 62%),
    rgba(255,255,255,.045);
}
.footer-network__intro span {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-network__intro h2 {
  max-width: 680px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.12;
}
.footer-network__intro p {
  margin-bottom: 0;
  color: #c9d5e5;
}
.footer-network__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.footer-network__grid a {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-network__grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(55,224,190,.62);
  background: rgba(255,255,255,.07);
}
.footer-network__grid strong {
  color: #fff;
  font-size: 1.08rem;
}
.footer-network__grid span {
  color: #c4cfdf;
  font-size: .92rem;
  line-height: 1.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 30px;
}
.footer img {
  width: 160px;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #fff;
}
.footer h3 { color: #fff; font-size: 1rem; }
.footer p, .footer a { color: #cad5e6; }
.footer a:hover { color: #fff; }
.footer-small {
  font-size: .9rem;
}
.footer-link-button { color: #cad5e6; }
.footer-link-button:hover { color: #fff; }
.footer small {
  display: block;
  margin-top: 38px;
  color: #8d99ad;
}

.cookie-bubble {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  width: min(440px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(200, 212, 229, .95);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(8, 13, 26, .18);
  backdrop-filter: blur(16px);
}
.cookie-bubble[hidden] { display: none; }
.cookie-bubble__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #edf4ff;
}
.cookie-bubble strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.cookie-bubble p {
  margin-bottom: 12px;
  font-size: .9rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.cookie-actions .btn {
  min-height: 40px;
  padding: 10px 12px;
  font-size: .86rem;
}
.cookie-bubble a {
  color: var(--blue);
  font-size: .88rem;
  font-weight: 850;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 58;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(21, 93, 252, .28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: #254fb8; }

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1120px) {
  h1 { font-size: 3.55rem; }
  h2 { font-size: 2.55rem; }
  .nav { gap: 14px; font-size: .86rem; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 58px; }
  .hero-system { min-height: 560px; max-width: 820px; width: 100%; margin: 0 auto; }
  .browser-card { width: 72%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-layout, .services-layout { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: repeat(3, 1fr); }
  .value-list article { border-bottom: 0; border-right: 1px solid var(--line); }
  .value-list article:last-child { border-right: 0; }
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.95)),
      rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(28px) saturate(1.08);
    backdrop-filter: blur(28px) saturate(1.08);
    box-shadow:
      0 1px 0 rgba(255,255,255,.9) inset,
      0 22px 60px rgba(8,13,26,.18);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 13px 12px;
    border-radius: 6px;
  }
  .nav a:hover, .nav a.is-active { background: #edf4ff; }
  .btn-nav { justify-content: center; margin-top: 8px; }
  .section-head,
  .audit-layout,
  .build-layout,
  .ai-hero,
  .ai-usecases,
  .process-layout,
  .split,
  .contact-grid,
  .cta-layout,
  .case-intro,
  .case-hero-layout,
  .faq-layout,
  .legal-layout,
  .next-step,
  .home-pricing-layout,
  .thank-you-layout { grid-template-columns: 1fr; }
  .case-hero-visual { max-width: 620px; }
  .next-step-actions { justify-content: flex-start; }
  .legal-nav { position: static; }
  .audit-board,
  .comparison-grid,
  .ai-capability-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .content-grid,
  .content-grid-six { grid-template-columns: repeat(2, 1fr); }
  .ai-card { min-height: auto; }
  .references { grid-template-columns: repeat(2, 1fr); }
  .proof-band { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards, .service-grid.three { grid-template-columns: 1fr; }
  .footer-network { grid-template-columns: 1fr; }
  .home-budget-curtain {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-budget-curtain-item,
  .home-budget-curtain:hover .home-budget-curtain-item,
  .home-budget-curtain .home-budget-curtain-item:hover,
  .home-budget-curtain .home-budget-curtain-item:focus-within {
    flex: initial;
    transform: none;
  }
  .home-budget-curtain-trigger {
    min-height: 84px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: normal;
    gap: 6px 14px;
    padding: 17px;
    text-align: left;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .home-budget-curtain-item.is-open .home-budget-curtain-trigger,
  .home-budget-curtain-item:focus-within .home-budget-curtain-trigger,
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-curtain-trigger,
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-curtain-trigger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: normal;
    gap: 6px 14px;
    padding: 17px;
    text-align: left;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .home-budget-curtain-range,
  .home-budget-curtain-title {
    white-space: normal;
  }
  .home-budget-range-compact {
    display: none;
  }
  .home-budget-range-full,
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-range-full {
    display: inline-block;
  }
  .home-budget-curtain-title {
    text-align: right;
  }
  .home-budget-curtain-tag {
    grid-column: 1 / -1;
  }
  .home-budget-curtain-item.is-open .home-budget-curtain-body,
  .home-budget-curtain-item:focus-within .home-budget-curtain-body,
  .home-budget-curtain .home-budget-curtain-item:hover .home-budget-curtain-body,
  .home-budget-curtain:hover .home-budget-curtain-item.is-open:not(:hover):not(:focus-within) .home-budget-curtain-body {
    max-height: 340px;
    padding: 0 17px 20px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  body { padding-bottom: 74px; }
  .container { width: min(100% - 28px, var(--container)); }
  .topbar-inner { min-height: 66px; }
  .brand img { width: 152px; }
  .nav { left: 14px; right: 14px; top: 66px; }
  h1, .page-hero h1 { font-size: 2.72rem; line-height: 1.08; }
  h2 { font-size: 2.05rem; }
  h3 { font-size: 1.12rem; }
  .lead { font-size: 1.05rem; line-height: 1.65; }
  .hero-grid { padding: 42px 0 28px; gap: 28px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; white-space: normal; text-align: center; }
  .capability-row { grid-template-columns: 1fr 1fr; gap: 11px; font-size: .82rem; }
  .hero-system { display: none; }
  .browser-card,
  .code-card,
  .ai-flow-card,
  .metric-card,
  .integrations-card {
    position: static;
    width: 100%;
  }
  .browser-content { grid-template-columns: 1fr; padding: 22px; }
  .browser-content strong { font-size: 1.5rem; }
  .browser-services { grid-template-columns: 1fr; }
  .browser-services span { border-right: 0; border-bottom: 1px solid var(--line); }
  .browser-services span:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .section-compact { padding: 42px 0; }
  .home-pricing-layout { gap: 24px; }
  .home-budget-curtain { gap: 8px; }
  .home-budget-curtain-trigger {
    min-height: 78px;
    padding: 16px 15px 15px;
  }
  .home-budget-curtain-range { font-size: 1.08rem; }
  .home-budget-curtain-title { font-size: .92rem; }
  .home-budget-curtain-body {
    padding-right: 15px;
    padding-left: 15px;
  }
  .page-hero-case {
    min-height: auto;
    padding: 54px 0 46px;
  }
  .case-hero-layout { gap: 30px; }
  .case-hero-visual { padding: 10px; }
  .case-hero-logo { min-height: 58px; }
  .case-hero-logo img { max-width: 190px; }
  .service-grid,
  .service-grid-six,
  .tech-grid,
  .content-grid,
  .content-grid-six,
  .ai-usecase-grid,
  .references,
  .proof-band,
  .value-list,
  .checkbox-grid,
  .form-row { grid-template-columns: 1fr; }
  .value-list article { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-list article:last-child { border-bottom: 0; }
  .proof-band div { padding: 18px; }
  .service-card, .price-card, .feature-panel, .form-panel, .next-step, .thank-you-card { padding: 22px; }
  .thank-you-main h2 { font-size: 2rem; }
  .thank-you-actions { flex-direction: column; }
  .thank-you-summary div { grid-template-columns: 1fr; gap: 4px; }
  .case-facts div { grid-template-columns: 1fr; gap: 4px; }
  .next-step h2 { font-size: 1.75rem; }
  .next-step-actions { flex-direction: column; }
  .timeline li, .build-rail article { grid-template-columns: 1fr; gap: 12px; }
  .build-rail article > span,
  .build-rail article > h3,
  .build-rail article > p {
    grid-column: auto;
    grid-row: auto;
  }
  .media-frame img { min-height: 220px; }
  .footer-network__intro { padding: 22px; }
  .footer-network__intro h2 { font-size: 1.45rem; }
  .footer-network__grid { grid-template-columns: 1fr; }
  .footer-network__grid a { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-bubble {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: auto;
    padding: 12px;
  }
  .cookie-bubble__icon { display: none; }
  .cookie-bubble strong { margin-bottom: 2px; }
  .cookie-bubble p {
    margin-bottom: 8px;
    font-size: .82rem;
    line-height: 1.45;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cookie-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 9px 8px;
    font-size: .82rem;
  }
  .cookie-bubble a { font-size: .82rem; }
  .scroll-top {
    right: 14px;
    bottom: 86px;
    width: 48px;
    height: 48px;
  }
  .has-cookie-bubble .scroll-top { bottom: 158px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(200, 212, 229, .92);
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 42px rgba(8,13,26,.18);
    backdrop-filter: blur(16px);
  }
  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--soft-ink);
    background: #fff;
    font-weight: 850;
  }
  .mobile-sticky-cta .mobile-sticky-primary {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
  }
  .has-cookie-bubble .mobile-sticky-cta { display: none; }
}

.pricing-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 78px 0 68px;
  background:
    linear-gradient(122deg, rgba(47,95,214,.1) 0 28%, transparent 28.2% 100%),
    linear-gradient(148deg, transparent 0 58%, rgba(23,184,210,.13) 58.2% 72%, transparent 72.2%),
    linear-gradient(rgba(47,95,214,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,95,214,.045) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  border-bottom: 1px solid var(--line);
}
.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(126deg, transparent 0 46px, rgba(47,95,214,.052) 46px 47px, transparent 47px 92px),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,0));
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 68% 100%);
  transform-origin: 73% 45%;
  animation: page-hero-plane-a 32s ease-in-out infinite;
  animation-delay: -15s;
  will-change: transform, opacity;
}
.pricing-hero::after {
  content: "";
  position: absolute;
  inset: -16% 42% -10% -12%;
  z-index: -1;
  background: linear-gradient(125deg, rgba(191,219,254,.3), rgba(207,250,254,.18));
  clip-path: polygon(0 7%, 88% 0, 100% 86%, 16% 100%);
  opacity: .52;
  transform-origin: 45% 50%;
  animation: page-hero-plane-b 38s ease-in-out infinite;
  animation-delay: -24s;
  will-change: transform, opacity;
}
.pricing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
}
.pricing-hero-copy h1 {
  max-width: 820px;
}
.pricing-hero-question {
  margin: -2px 0 18px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.16;
  font-weight: 760;
}
.pricing-hero .lead {
  max-width: 820px;
  font-size: 1.16rem;
}
.pricing-disclaimer,
.budget-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: #43516a;
  background: rgba(255,255,255,.86);
  font-size: .94rem;
}
.pricing-hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(200,212,229,.9);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 58px rgba(8,13,26,.1);
}
.pricing-hero-panel div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.pricing-hero-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 780;
}
.pricing-hero-panel span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}
.pricing-advice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 44px;
  align-items: center;
}
.pricing-emphasis {
  padding: 28px;
  border: 1px solid rgba(47,95,214,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47,95,214,.08), rgba(23,184,210,.07)),
    #fff;
  box-shadow: 0 18px 42px rgba(8,13,26,.07);
}
.pricing-emphasis strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.18;
}
.pricing-emphasis p {
  margin-bottom: 0;
  font-size: 1.02rem;
}
.section-pricing-budgets {
  background: #fff;
}
.budget-spectrum {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.pricing-budget-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-top-color: var(--budget-accent);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(140deg, var(--budget-soft), transparent 46%),
    #fff;
  box-shadow: 0 15px 34px rgba(8,13,26,.065);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pricing-budget-card:hover {
  transform: translateY(-4px);
  border-color: var(--budget-accent);
  box-shadow: 0 24px 54px rgba(8,13,26,.12);
}
.budget-card-top {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--budget-accent);
}
.budget-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--budget-soft);
  border-radius: var(--radius);
  color: var(--budget-accent);
  background: #fff;
  box-shadow: 0 12px 26px rgba(8,13,26,.07);
}
.budget-icon-svg {
  display: block;
}
.budget-badge {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--budget-accent);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.budget-range {
  margin-top: 2px;
  color: var(--budget-accent);
  font-family: var(--font-display);
  font-size: 1.74rem;
  line-height: 1;
  font-weight: 900;
}
.pricing-budget-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 780;
}
.budget-description {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.budget-list-title {
  display: block;
  margin-top: 4px;
  color: #202b40;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.budget-example-list {
  display: grid;
  gap: 7px;
  color: #334057;
  font-size: .86rem;
  line-height: 1.35;
}
.budget-example-list span {
  position: relative;
  padding-left: 18px;
}
.budget-example-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--budget-accent);
}
.budget-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--budget-accent);
  font-weight: 850;
}
.pricing-budget-card.is-highlighted {
  border-color: var(--budget-accent);
  box-shadow: 0 24px 56px rgba(8,13,26,.12);
}
.budget-note {
  max-width: 980px;
  margin-top: 26px;
  border-left-color: var(--teal);
  background: #fff;
}
.pricing-orientation-section {
  background: #fff;
}
.pricing-orientation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.pricing-orientation-grid article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47,95,214,.06), transparent 50%),
    #fff;
  box-shadow: 0 14px 34px rgba(8,13,26,.055);
}
.pricing-orientation-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.22;
}
.pricing-orientation-grid p {
  margin: 0;
  font-size: .92rem;
}
.pricing-token-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pricing-token-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: #25324a;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,13,26,.045);
  font-weight: 690;
  overflow-wrap: anywhere;
}
.pricing-token-grid-dense span {
  min-height: 50px;
  border-left-color: var(--teal);
  font-size: .94rem;
  font-weight: 650;
}
.pricing-addons-section,
.pricing-order-section {
  background: #fff;
}
.pricing-factor-grid,
.pricing-advice-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.pricing-factor-card,
.pricing-advice-cards article,
.budget-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(8,13,26,.055);
}
.pricing-factor-card,
.pricing-advice-cards article {
  padding: 22px;
}
.pricing-factor-card h3,
.pricing-advice-cards strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.03rem;
  line-height: 1.22;
  font-weight: 780;
}
.pricing-factor-card p,
.pricing-advice-cards p {
  margin-bottom: 0;
  font-size: .92rem;
}
.pricing-check-list {
  display: grid;
  gap: 9px;
  color: #334057;
  font-size: .94rem;
}
.pricing-check-list li {
  position: relative;
  padding-left: 22px;
}
.pricing-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.pricing-check-list.compact {
  font-size: .9rem;
}
.pricing-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #fff;
  font-weight: 820;
}
.budget-detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 76px 0 66px;
  background:
    linear-gradient(126deg, var(--budget-soft) 0 32%, transparent 32.2%),
    linear-gradient(154deg, transparent 0 58%, var(--budget-soft) 58.2% 78%, transparent 78.2%),
    linear-gradient(rgba(47,95,214,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,95,214,.045) 1px, transparent 1px),
    #fff;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  border-bottom: 1px solid var(--line);
}
.budget-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(126deg, transparent 0 52px, rgba(47,95,214,.055) 52px 53px, transparent 53px 104px);
  opacity: .7;
  transform-origin: 70% 45%;
  animation: page-hero-plane-a 34s ease-in-out infinite;
  animation-delay: -18s;
  will-change: transform, opacity;
}
.budget-detail-hero::after {
  content: "";
  position: absolute;
  inset: -18% -12% -8% 45%;
  z-index: -1;
  background: linear-gradient(132deg, var(--budget-soft), rgba(255,255,255,.18));
  clip-path: polygon(18% 0, 100% 10%, 82% 100%, 0 84%);
  opacity: .72;
  transform-origin: 48% 52%;
  animation: page-hero-plane-b 40s ease-in-out infinite;
  animation-delay: -27s;
  will-change: transform, opacity;
}
.budget-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
}
.budget-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--budget-accent);
  font-weight: 820;
}
.budget-detail-range {
  display: block;
  margin-bottom: 12px;
  color: var(--budget-accent);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}
.budget-detail-hero h1 {
  max-width: 900px;
}
.budget-detail-hero .lead {
  max-width: 780px;
  font-size: 1.14rem;
}
.budget-emphasis-line {
  max-width: 780px;
  padding: 14px 16px;
  border: 1px solid var(--budget-accent);
  border-left: 4px solid var(--budget-accent);
  border-radius: var(--radius);
  color: #29354b;
  background: rgba(255,255,255,.78);
  font-weight: 690;
}
.budget-detail-summary {
  padding: 26px;
  border: 1px solid var(--budget-accent);
  border-top: 5px solid var(--budget-accent);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--budget-soft), transparent 58%),
    #fff;
  box-shadow: 0 24px 58px rgba(8,13,26,.1);
}
.budget-detail-summary > strong {
  display: block;
  margin: 16px 0 9px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.18;
}
.budget-detail-summary p {
  font-size: .96rem;
}
.budget-detail-content {
  background: var(--bg);
}
.budget-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.budget-detail-card {
  padding: 28px;
}
.budget-detail-card h2 {
  font-size: 1.72rem;
}
.budget-recommendation {
  border-color: var(--budget-accent);
  background:
    linear-gradient(135deg, var(--budget-soft), transparent 55%),
    #fff;
}
.budget-recommendation .btn {
  margin-top: 8px;
}
.budget-detail-nav-section {
  padding-top: 0;
  background: var(--bg);
}
.budget-detail-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.budget-detail-nav a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft-ink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8,13,26,.05);
  font-weight: 800;
  text-align: center;
}
.budget-detail-nav a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 1120px) {
  .pricing-hero-grid,
  .budget-detail-hero-grid {
    grid-template-columns: 1fr;
  }
  .pricing-hero-panel,
  .budget-detail-summary {
    max-width: 720px;
  }
  .budget-spectrum,
  .pricing-orientation-grid,
  .pricing-factor-grid,
  .pricing-advice-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-token-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .pricing-advice-layout,
  .budget-detail-grid,
  .budget-detail-nav {
    grid-template-columns: 1fr;
  }
  .pricing-token-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pricing-hero,
  .budget-detail-hero {
    padding: 54px 0 48px;
  }
  .pricing-hero-question {
    font-size: 1.35rem;
  }
  .pricing-disclaimer,
  .budget-note,
  .budget-emphasis-line {
    font-size: .9rem;
  }
  .budget-spectrum,
  .pricing-orientation-grid,
  .pricing-token-grid,
  .pricing-factor-grid,
  .pricing-advice-cards {
    grid-template-columns: 1fr;
  }
  .pricing-budget-card {
    min-height: auto;
  }
  .budget-range {
    font-size: 1.55rem;
  }
  .budget-detail-card,
  .budget-detail-summary,
  .pricing-emphasis,
  .pricing-hero-panel {
    padding: 22px;
  }
  .budget-detail-card h2 {
    font-size: 1.48rem;
  }
  .budget-detail-range {
    font-size: 1.32rem;
  }
}
