:root {
  --bg: #05070c;
  --bg-2: #080b12;
  --panel: #0c111c;
  --panel-2: #101725;
  --panel-3: #151d2d;
  --text: #f4f7fc;
  --muted: #929caf;
  --muted-2: #687387;
  --line: rgba(133, 158, 207, 0.15);
  --line-strong: rgba(133, 158, 207, 0.27);
  --blue: #4e86ff;
  --blue-2: #71a5ff;
  --cyan: #45d8ff;
  --wine: #d83a72;
  --pink: #f05b91;
  --violet: #936cff;
  --green: #4be0aa;
  --yellow: #f5bd5a;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 55% -12%, rgba(45, 93, 194, 0.16), transparent 33%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  content: "";
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  color: #fff;
  background: rgba(65, 123, 240, 0.8);
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 108px;
}

.section-compact {
  padding-block: 74px;
}

.section-muted {
  border-block: 1px solid rgba(128, 154, 204, 0.08);
  background: rgba(8, 11, 18, 0.7);
}

.grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(102, 136, 200, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 136, 200, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 8px;
  background: #245ed1;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(130, 156, 207, 0.09);
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(22px) saturate(125%);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(100, 157, 255, 0.37);
  border-radius: 13px;
  background: #090c13;
  box-shadow: 0 0 30px rgba(50, 111, 239, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: #6f7b91;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #929caf;
  font-size: 12px;
  font-weight: 580;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 42px !important;
  padding-inline: 16px !important;
  font-size: 11px !important;
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(15, 20, 32, 0.95);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: #d9deea;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Shared elements */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9ca8bc;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-code {
  display: inline-grid;
  min-width: 30px;
  height: 23px;
  place-items: center;
  color: #79a7ff;
  border: 1px solid rgba(92, 147, 255, 0.28);
  border-radius: 6px;
  background: rgba(44, 90, 185, 0.11);
  font-size: 8px;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(75, 224, 170, 0.66);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid rgba(75, 224, 170, 0.28);
  border-radius: inherit;
  animation: ping 2.2s ease-out infinite;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(95deg, #79abff, #4a82f2 43%, #d64c82 108%);
  background-clip: text;
  -webkit-background-clip: text;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  border-color: rgba(105, 158, 255, 0.56);
  background: linear-gradient(110deg, #285dd4, #477ef2 56%, #773db9 145%);
  box-shadow: 0 16px 42px rgba(34, 86, 198, 0.28), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  box-shadow: 0 20px 58px rgba(34, 86, 198, 0.42), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-secondary {
  color: #e4e9f2;
  border-color: var(--line-strong);
  background: rgba(16, 22, 35, 0.78);
}

.button-secondary:hover {
  border-color: rgba(105, 158, 255, 0.48);
  background: rgba(23, 31, 50, 0.92);
}

.button-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #83aeff;
  font-size: 11px;
  font-weight: 700;
}

.button-text::after {
  content: "→";
  transition: transform 160ms ease;
}

.button-text:hover::after {
  transform: translateX(4px);
}

.consult-pill {
  display: inline-flex;
  min-height: 35px;
  padding: 0 11px;
  align-items: center;
  gap: 8px;
  color: #8692a8;
  border: 1px solid rgba(75, 224, 170, 0.2);
  border-radius: 9px;
  background: rgba(36, 113, 87, 0.09);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.consult-pill b {
  color: #6de0b6;
  letter-spacing: 0.08em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  display: inline-flex;
  min-height: 28px;
  padding: 0 9px;
  align-items: center;
  color: #8894a9;
  border: 1px solid rgba(132, 158, 208, 0.14);
  border-radius: 7px;
  background: rgba(7, 10, 16, 0.42);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.03em;
}

.section-heading {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.section-heading h2,
.simple-heading h2 {
  max-width: 760px;
  margin: 17px 0 0;
  font-size: clamp(37px, 4.2vw, 58px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading > p,
.simple-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.simple-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.simple-heading > p {
  max-width: 660px;
  margin-top: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 22, 36, 0.9), rgba(9, 12, 20, 0.9));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

/* Homepage */
.home-hero {
  position: relative;
  display: flex;
  min-height: 790px;
  padding-block: 92px 105px;
  align-items: center;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(102, 136, 200, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 136, 200, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(#000, transparent 96%);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  top: -230px;
  left: 57%;
  width: 780px;
  height: 780px;
  content: "";
  border: 1px solid rgba(67, 126, 248, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 96, 204, 0.17), transparent 65%);
  box-shadow: 0 0 0 110px rgba(45, 96, 204, 0.025), 0 0 0 220px rgba(45, 96, 204, 0.015);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.home-hero h1 {
  max-width: 720px;
  margin: 21px 0 23px;
  font-size: clamp(55px, 6.2vw, 84px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #9ca5b7;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 11px;
}

.home-hero .consult-pill {
  margin-top: 24px;
}

.hero-stats {
  display: flex;
  margin-top: 39px;
  align-items: center;
  gap: 22px;
}

.hero-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-stat strong {
  color: #edf1fa;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.hero-stat span {
  margin-top: 3px;
  color: #697489;
  font-size: 9px;
}

.hero-divider {
  width: 1px;
  height: 28px;
  background: var(--line-strong);
}

.command-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(130, 157, 211, 0.24);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(16, 22, 36, 0.98), rgba(7, 10, 16, 0.98));
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.53), inset 0 1px rgba(255, 255, 255, 0.045);
  transform: rotateY(-3deg);
}

.command-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 24%, transparent 72%, rgba(64, 114, 218, 0.05));
}

.command-top {
  display: flex;
  min-height: 50px;
  padding: 0 17px;
  align-items: center;
  border-bottom: 1px solid rgba(133, 158, 207, 0.13);
}

.command-dots {
  display: flex;
  gap: 6px;
}

.command-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5b2d3c;
}

.command-dots i:nth-child(2) { background: #6b5830; }
.command-dots i:nth-child(3) { background: #27624c; }

.command-path {
  margin-left: 15px;
  color: #5f6a7e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.command-live {
  display: inline-flex;
  margin-left: auto;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.command-body {
  padding: 26px;
}

.command-brand {
  display: grid;
  padding: 16px;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(130, 157, 211, 0.13);
  border-radius: 17px;
  background: linear-gradient(120deg, rgba(27, 38, 65, 0.65), rgba(15, 18, 29, 0.45));
}

.command-logo {
  width: 86px;
  height: 86px;
  overflow: hidden;
  border: 1px solid rgba(92, 148, 255, 0.43);
  border-radius: 21px;
  box-shadow: 0 0 34px rgba(49, 109, 235, 0.17);
}

.command-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.command-brand small,
.module-label,
.command-footer {
  color: #606b80;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.command-brand strong {
  display: block;
  margin: 5px 0 7px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.module-label {
  display: flex;
  margin: 23px 2px 10px;
  justify-content: space-between;
}

.module-stack {
  display: grid;
  gap: 8px;
}

.module-item {
  display: grid;
  min-height: 61px;
  padding: 9px 11px;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(130, 157, 211, 0.12);
  border-radius: 12px;
  background: rgba(15, 19, 30, 0.78);
}

.module-item:first-child {
  border-color: rgba(77, 137, 255, 0.28);
  background: linear-gradient(90deg, rgba(42, 84, 169, 0.16), rgba(15, 19, 30, 0.78));
}

.module-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #78a8ff;
  border: 1px solid rgba(78, 137, 255, 0.24);
  border-radius: 10px;
  background: rgba(44, 91, 190, 0.11);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
}

.module-item:nth-child(2) .module-icon {
  color: #f2649b;
  border-color: rgba(228, 63, 125, 0.23);
  background: rgba(177, 37, 90, 0.1);
}

.module-item:nth-child(3) .module-icon {
  color: #a187ff;
  border-color: rgba(146, 108, 255, 0.23);
  background: rgba(106, 72, 196, 0.1);
}

.module-item strong {
  display: block;
  color: #dbe1ed;
  font-size: 10px;
  font-weight: 650;
}

.module-item small {
  color: #626d81;
  font-size: 7px;
}

.module-state {
  padding: 4px 6px;
  color: #7083a7;
  border: 1px solid rgba(111, 140, 194, 0.18);
  border-radius: 5px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 6px;
}

.command-footer {
  margin-top: 17px;
}

.trust-bar {
  border-block: 1px solid rgba(128, 153, 202, 0.1);
  background: rgba(8, 11, 17, 0.8);
}

.trust-row {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #687389;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.trust-row > span {
  color: #424b5e;
}

.trust-row b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}

.trust-row b::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

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

.product-card {
  --accent: #6fa3ff;
  position: relative;
  display: flex;
  min-height: 385px;
  padding: 25px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 22, 36, 0.88), rgba(9, 12, 20, 0.88));
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.product-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 68%);
  opacity: 0;
  transition: opacity 190ms ease;
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, transparent);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card[data-accent="wine"] { --accent: #ee5d95; }
.product-card[data-accent="violet"] { --accent: #9b7cff; }
.product-card[data-accent="cyan"] { --accent: #4ed4f2; }
.product-card[data-accent="pink"] { --accent: #f3659d; }
.product-card[data-accent="indigo"] { --accent: #758cff; }

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-glyph {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent) 11%, transparent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.product-number {
  color: #485266;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.product-audience {
  margin-top: 25px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 9px 0 10px;
  font-size: 20px;
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.product-card > p {
  margin: 0;
  color: #8d97aa;
  font-size: 12px;
  line-height: 1.72;
}

.product-card .chip-row {
  margin-block: 21px 26px;
}

.product-card .button-text {
  margin-top: auto;
}

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

.market-card {
  position: relative;
  min-height: 360px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 24, 40, 0.9), rgba(9, 12, 20, 0.92));
}

.market-card::after {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 340px;
  height: 340px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 106, 229, 0.18), transparent 70%);
}

.market-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(199, 46, 103, 0.17), transparent 70%);
}

.market-icon {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  color: #78a8ff;
  border: 1px solid rgba(92, 148, 255, 0.28);
  border-radius: 15px;
  background: rgba(48, 99, 205, 0.11);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.market-card:nth-child(2) .market-icon {
  color: #ef659a;
  border-color: rgba(226, 65, 126, 0.26);
  background: rgba(176, 38, 91, 0.1);
}

.market-card h3 {
  max-width: 460px;
  margin: 35px 0 12px;
  font-size: 27px;
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.market-card p {
  max-width: 480px;
  margin: 0;
  color: #8e98aa;
  font-size: 13px;
}

.market-card ul {
  display: flex;
  margin: 25px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px 18px;
  list-style: none;
}

.market-card li {
  color: #aab2c1;
  font-size: 10px;
}

.market-card li::before {
  margin-right: 7px;
  color: #72a5ff;
  content: "✓";
}

.market-card:nth-child(2) li::before {
  color: #ef659a;
}

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

.step-card {
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 21, 34, 0.84), rgba(9, 12, 20, 0.82));
}

.step-number {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
  place-items: center;
  color: #7ba8ff;
  border: 1px solid rgba(91, 147, 255, 0.3);
  border-radius: 50%;
  background: rgba(44, 91, 187, 0.1);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.step-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
}

.step-card p {
  margin: 0;
  color: #7f899c;
  font-size: 11px;
  line-height: 1.7;
}

.price-band {
  display: grid;
  padding: 43px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(500px, 1.25fr);
  align-items: center;
  gap: 45px;
  border: 1px solid rgba(93, 148, 255, 0.24);
  border-radius: 27px;
  background:
    radial-gradient(circle at 80% 35%, rgba(55, 107, 221, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(18, 27, 46, 0.95), rgba(9, 12, 20, 0.96));
  box-shadow: var(--shadow);
}

.price-band h2 {
  margin: 15px 0 18px;
  font-size: clamp(37px, 4.4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.price-band-copy > p {
  margin: 0;
  color: #8f99ac;
  font-size: 13px;
}

.payment-tags {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 8px;
  color: #586276;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.payment-tags b {
  padding: 5px 7px;
  color: #a6b0c2;
  border: 1px solid rgba(131, 157, 207, 0.17);
  border-radius: 6px;
  font-size: 8px;
}

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

.price-option {
  min-height: 310px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(10, 14, 23, 0.84);
}

.price-option.featured {
  border-color: rgba(91, 147, 255, 0.38);
  background: linear-gradient(145deg, rgba(23, 34, 57, 0.95), rgba(10, 14, 23, 0.92));
}

.price-option > small {
  color: #667188;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.price-option strong {
  display: block;
  margin: 17px 0 2px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 47px;
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price-option strong sup {
  margin-right: 3px;
  color: #79a8ff;
  font-size: 16px;
  vertical-align: super;
}

.price-option > span {
  color: #5f6a7e;
  font-size: 8px;
}

.price-option p {
  margin: 23px 0 0;
  color: #8791a4;
  font-size: 10px;
  line-height: 1.65;
}

/* Subpages */
.subhero {
  position: relative;
  padding-block: 86px 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(128, 153, 202, 0.08);
}

.subhero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(102, 136, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 136, 200, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(#000, transparent 95%);
}

.breadcrumb {
  display: flex;
  margin-bottom: 31px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #667288;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: #8fb5ff;
}

.breadcrumb i {
  color: #3f485b;
  font-style: normal;
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
  align-items: center;
  gap: 76px;
}

.subhero h1 {
  max-width: 780px;
  margin: 19px 0 21px;
  font-size: clamp(49px, 6vw, 78px);
  font-weight: 650;
  letter-spacing: -0.067em;
  line-height: 0.99;
}

.subhero-lead {
  max-width: 710px;
  margin: 0;
  color: #9aa4b6;
  font-size: 16px;
  line-height: 1.82;
}

.subhero-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 11px;
}

.spec-panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(115, 153, 226, 0.25);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(17, 24, 40, 0.96), rgba(9, 12, 20, 0.96));
  box-shadow: var(--shadow);
}

.spec-panel::before {
  position: absolute;
  top: -120px;
  right: -110px;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 127, 251, 0.18), transparent 68%);
}

.spec-code {
  color: #71809c;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.spec-title {
  display: flex;
  margin: 20px 0 25px;
  align-items: center;
  gap: 15px;
}

.spec-title .product-glyph {
  flex: 0 0 49px;
}

.spec-title strong {
  display: block;
  font-size: 16px;
}

.spec-title small {
  color: #687489;
  font-size: 8px;
}

.metric-stack {
  display: grid;
  gap: 8px;
}

.metric-row {
  display: grid;
  min-height: 57px;
  padding: 10px 13px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(128, 155, 205, 0.11);
  border-radius: 11px;
  background: rgba(10, 14, 23, 0.7);
}

.metric-row span {
  color: #7d889e;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-row strong {
  color: #cad2e1;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 650;
  text-align: right;
}

.metric-row strong.ok {
  color: var(--green);
}

.spec-price {
  display: flex;
  margin-top: 19px;
  padding-top: 18px;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(128, 155, 205, 0.11);
}

.spec-price span {
  color: #606c81;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.spec-price strong {
  color: #f2f5fa;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 27px;
  font-weight: 580;
  letter-spacing: -0.06em;
}

.spec-price strong small {
  color: #738098;
  font-size: 8px;
}

.page-nav {
  border-bottom: 1px solid rgba(128, 153, 202, 0.09);
  background: rgba(8, 11, 17, 0.86);
}

.page-nav-inner {
  display: flex;
  min-height: 59px;
  align-items: center;
  gap: 27px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-nav-inner::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  flex: 0 0 auto;
  color: #748096;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.page-nav a:hover {
  color: #93b8ff;
}

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

.tech-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 21, 34, 0.86), rgba(9, 12, 20, 0.84));
}

.tech-card-index {
  display: grid;
  width: 37px;
  height: 37px;
  margin-bottom: 31px;
  place-items: center;
  color: #7daaff;
  border: 1px solid rgba(91, 146, 255, 0.27);
  border-radius: 10px;
  background: rgba(46, 95, 195, 0.1);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.tech-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.tech-card p {
  margin: 0;
  color: #808a9e;
  font-size: 11px;
  line-height: 1.72;
}

.tech-card .chip-row {
  margin-top: 19px;
}

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

.arch-node {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(12, 17, 28, 0.85);
}

.arch-node:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -18px;
  width: 23px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, #527fd0, rgba(82, 127, 208, 0.2));
}

.arch-node > span {
  color: #6f9eff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.arch-node h3 {
  margin: 31px 0 9px;
  font-size: 15px;
}

.arch-node p {
  margin: 0;
  color: #7d879b;
  font-size: 10px;
  line-height: 1.68;
}

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

.deliverable-card {
  display: grid;
  min-height: 145px;
  padding: 23px;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 18, 30, 0.75);
}

.deliverable-check {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(75, 224, 170, 0.22);
  border-radius: 10px;
  background: rgba(38, 127, 96, 0.09);
  font-size: 13px;
}

.deliverable-card h3 {
  margin: 0 0 7px;
  font-size: 13px;
}

.deliverable-card p {
  margin: 0;
  color: #7d879b;
  font-size: 10px;
  line-height: 1.68;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 14, 23, 0.72);
}

.table-scroll {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 18px 21px;
  border-bottom: 1px solid rgba(128, 155, 205, 0.1);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: #738198;
  background: rgba(20, 27, 44, 0.7);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.spec-table td {
  color: #8c96a9;
  font-size: 10px;
  line-height: 1.65;
}

.spec-table td:first-child {
  color: #d7dde8;
  font-weight: 650;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

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

.scope-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 18, 30, 0.76);
}

.scope-card.scope-extra {
  border-color: rgba(216, 58, 114, 0.2);
}

.scope-card h3 {
  margin: 0 0 20px;
  font-size: 16px;
}

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

.scope-card li {
  position: relative;
  padding-left: 22px;
  color: #8791a4;
  font-size: 11px;
}

.scope-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #6da1ff;
  content: "✓";
}

.scope-extra li::before {
  color: #ee6398;
  content: "+";
}

.note-panel {
  display: grid;
  padding: 24px;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 16px;
  border: 1px dashed rgba(130, 157, 207, 0.22);
  border-radius: 16px;
  background: rgba(12, 17, 28, 0.56);
}

.note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #7eaaff;
  border-radius: 11px;
  background: rgba(51, 101, 205, 0.12);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.note-panel strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.note-panel p {
  margin: 0;
  color: #778195;
  font-size: 10px;
  line-height: 1.68;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 9px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(13, 18, 29, 0.74);
}

.faq-list details[open] {
  border-color: rgba(84, 141, 255, 0.3);
  background: rgba(16, 22, 36, 0.86);
}

.faq-list summary {
  position: relative;
  min-height: 73px;
  padding: 24px 55px 19px 22px;
  cursor: pointer;
  list-style: none;
  color: #d7dde8;
  font-size: 12px;
  font-weight: 650;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 35px;
  right: 24px;
  width: 12px;
  height: 1px;
  content: "";
  background: #7f8da8;
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -3px 55px 24px 22px;
  color: #838da0;
  font-size: 11px;
  line-height: 1.75;
}

/* Product catalogue */
.catalog-hero {
  padding-block: 94px 83px;
  text-align: center;
}

.catalog-hero .eyebrow {
  justify-content: center;
}

.catalog-hero h1 {
  max-width: 880px;
  margin: 20px auto 23px;
  font-size: clamp(50px, 6.2vw, 78px);
  letter-spacing: -0.067em;
  line-height: 1;
}

.catalog-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #97a1b3;
  font-size: 15px;
}

.filter-bar {
  display: flex;
  margin: 39px auto 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  cursor: pointer;
  color: #7f8a9e;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(14, 19, 31, 0.75);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(88, 145, 255, 0.38);
  background: rgba(45, 92, 188, 0.18);
}

.catalog-grid .product-card[hidden] {
  display: none;
}

.comparison-intro {
  display: flex;
  margin-bottom: 24px;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.comparison-intro h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.comparison-intro p {
  max-width: 500px;
  margin: 0;
  color: #7f899c;
  font-size: 11px;
}

/* About and contact */
.content-hero {
  padding-block: 92px;
  text-align: center;
}

.content-hero .eyebrow {
  justify-content: center;
}

.content-hero h1 {
  max-width: 850px;
  margin: 20px auto 22px;
  font-size: clamp(49px, 6vw, 76px);
  letter-spacing: -0.067em;
  line-height: 1;
}

.content-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #98a2b4;
  font-size: 15px;
}

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

.principle-card {
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 18, 30, 0.76);
}

.principle-card span {
  color: #70a2ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.principle-card h3 {
  margin: 42px 0 10px;
  font-size: 18px;
}

.principle-card p {
  margin: 0;
  color: #7e899c;
  font-size: 11px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 70px;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(93, 148, 255, 0.26);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(18, 27, 45, 0.94), rgba(9, 12, 20, 0.94));
  box-shadow: var(--shadow);
}

.contact-card > small {
  color: #6c7890;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.contact-email {
  display: block;
  margin: 18px 0 10px;
  overflow-wrap: anywhere;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 680;
  letter-spacing: -0.045em;
}

.contact-card > p {
  margin: 0;
  color: #8590a3;
  font-size: 11px;
}

.contact-card .hero-actions {
  margin-top: 28px;
}

.brief-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
  counter-reset: brief;
}

.brief-list li {
  display: grid;
  min-height: 78px;
  padding: 17px 19px;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(13, 18, 30, 0.7);
  color: #8792a5;
  font-size: 11px;
  counter-increment: brief;
}

.brief-list li::before {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #78a7ff;
  border: 1px solid rgba(90, 146, 255, 0.25);
  border-radius: 9px;
  background: rgba(47, 97, 198, 0.1);
  content: counter(brief, decimal-leading-zero);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.copy-status {
  min-height: 18px;
  margin-top: 11px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

/* Product request and sales form */
.catalog-actions {
  margin-top: 29px;
  justify-content: center;
}

.product-card-actions {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.product-card .product-card-actions .button-text {
  margin-top: 0;
}

.apply-link {
  color: #77d9b5;
}

.request-section {
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(92, 147, 255, 0.12);
  background:
    radial-gradient(circle at 78% 18%, rgba(68, 116, 224, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(9, 13, 22, 0.97), rgba(5, 7, 12, 0.97));
}

.request-heading {
  margin-bottom: 42px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(310px, 0.72fr);
  align-items: start;
  gap: 22px;
}

.sales-form,
.request-summary,
.request-help {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 21, 35, 0.96), rgba(8, 11, 19, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.sales-form {
  padding: 35px;
  border-radius: 24px;
}

.form-section-head {
  display: grid;
  margin: 0 0 24px;
  grid-template-columns: 45px 1fr;
  align-items: start;
  gap: 15px;
}

.form-section-head:not(:first-of-type) {
  margin-top: 41px;
  padding-top: 34px;
  border-top: 1px solid rgba(131, 157, 207, 0.12);
}

.form-section-head > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #7daaff;
  border: 1px solid rgba(93, 149, 255, 0.25);
  border-radius: 11px;
  background: rgba(45, 91, 184, 0.12);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
}

.form-section-head h3 {
  margin: 0 0 3px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.form-section-head p {
  margin: 0;
  color: #737f93;
  font-size: 10px;
}

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

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.label-row {
  color: #b9c2d1;
  font-size: 10px;
  font-weight: 680;
}

.form-field label b,
.consent-field b {
  color: #f173a2;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.label-row > span {
  color: #59667b;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 51px;
  padding: 0 14px;
  color: #eef2f8;
  border: 1px solid rgba(132, 158, 207, 0.19);
  border-radius: 12px;
  outline: none;
  background: rgba(6, 9, 15, 0.78);
  font-size: 11px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  color: #eef2f8;
  background: #0a0e17;
}

.form-field textarea {
  min-height: 174px;
  padding-block: 13px;
  line-height: 1.7;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #505b6e;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(132, 158, 207, 0.32);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(91, 148, 255, 0.72);
  background: rgba(8, 12, 20, 0.96);
  box-shadow: 0 0 0 3px rgba(67, 119, 225, 0.13);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 95, 144, 0.45);
}

.form-field small {
  color: #59667a;
  font-size: 8px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #7f899c;
  cursor: pointer;
  font-size: 9px;
  line-height: 1.6;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #4e86ff;
}

.form-submit-row {
  display: flex;
  margin-top: 27px;
  align-items: center;
  gap: 18px;
}

.submit-button {
  min-width: 190px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-submit-row p {
  margin: 0;
  color: #657186;
  font-size: 8px;
}

.form-status {
  margin-top: 20px;
  padding: 15px 17px;
  color: #c6cedb;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 13, 21, 0.8);
  font-size: 10px;
  line-height: 1.65;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  color: #8be8c4;
  border-color: rgba(75, 224, 170, 0.3);
  background: rgba(29, 105, 78, 0.12);
}

.form-status.is-error {
  color: #ff9ebf;
  border-color: rgba(240, 91, 145, 0.34);
  background: rgba(127, 32, 68, 0.12);
}

.form-status a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-sidebar {
  position: sticky;
  top: 101px;
  display: grid;
  gap: 14px;
}

.request-summary,
.request-help {
  padding: 25px;
  border-radius: 19px;
}

.request-summary {
  border-color: rgba(92, 148, 255, 0.25);
}

.summary-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #71809a;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.summary-top b {
  margin-left: auto;
  color: #65ddb2;
  font-size: 7px;
}

.request-summary h3 {
  margin: 23px 0 18px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.request-summary dl {
  display: grid;
  margin: 0;
  gap: 8px;
}

.request-summary dl div {
  display: grid;
  min-height: 58px;
  padding: 11px 13px;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(130, 156, 204, 0.11);
  border-radius: 10px;
  background: rgba(6, 9, 15, 0.58);
}

.request-summary dt {
  color: #59667a;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.request-summary dd {
  margin: 0;
  color: #c6cedb;
  font-size: 9px;
  text-align: right;
}

.summary-state {
  display: flex;
  margin-top: 16px;
  padding-top: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(130, 156, 204, 0.11);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.summary-state span {
  color: #59667a;
}

.summary-state strong {
  color: #70a4ff;
  letter-spacing: 0.05em;
}

.request-help .eyebrow {
  margin-bottom: 18px;
}

.request-help ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.request-help li {
  display: grid;
  padding: 10px;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(130, 156, 204, 0.1);
  border-radius: 10px;
  background: rgba(6, 9, 15, 0.5);
}

.request-help li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #74a5ff;
  border: 1px solid rgba(91, 147, 255, 0.2);
  border-radius: 8px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
}

.request-help li div {
  display: grid;
}

.request-help li b {
  color: #bdc6d5;
  font-size: 9px;
}

.request-help li small {
  color: #5f6b7f;
  font-size: 7px;
}

.request-help > p {
  margin: 18px 0 0;
  color: #657186;
  font-size: 8px;
}

.request-help > p a {
  color: #86b0ff;
}

/* CTA and footer */
.cta-panel {
  position: relative;
  display: flex;
  min-height: 480px;
  padding: 65px 30px;
  overflow: hidden;
  align-items: center;
  text-align: center;
  flex-direction: column;
  border: 1px solid rgba(92, 146, 255, 0.26);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(18, 27, 46, 0.96), rgba(9, 12, 20, 0.97));
  box-shadow: var(--shadow);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(105, 143, 207, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 143, 207, 0.07) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle, #000, transparent 74%);
}

.cta-panel::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 101, 215, 0.2), rgba(177, 44, 97, 0.04) 45%, transparent 70%);
  transform: translate(-50%, -50%);
}

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

.cta-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 23px;
  overflow: hidden;
  border: 1px solid rgba(101, 158, 255, 0.38);
  border-radius: 17px;
  box-shadow: 0 0 45px rgba(51, 110, 235, 0.22);
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-panel h2 {
  max-width: 800px;
  margin: 18px 0 20px;
  font-size: clamp(40px, 5.3vw, 67px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.cta-panel p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #909bad;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid rgba(128, 153, 202, 0.09);
  background: #06080d;
}

.footer-main {
  display: grid;
  min-height: 190px;
  grid-template-columns: 250px minmax(270px, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.footer-main .brand {
  min-width: 0;
}

.footer-main > p {
  max-width: 480px;
  margin: 0;
  color: #6e788b;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #818b9f;
  font-size: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(128, 153, 202, 0.08);
  color: #505a6d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.04em;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-payments b {
  padding: 4px 6px;
  color: #748096;
  border: 1px solid rgba(128, 154, 204, 0.13);
  border-radius: 5px;
  font-size: 7px;
}

.not-found {
  display: flex;
  min-height: calc(100vh - 78px);
  padding-block: 80px;
  align-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 720px;
  margin-inline: auto;
}

.not-found-code {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(90px, 17vw, 190px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 40px 0 14px;
  font-size: 36px;
  letter-spacing: -0.045em;
}

.not-found p {
  margin: 0 0 27px;
  color: #8b96a9;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes ping {
  0% { opacity: 0.75; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.7); }
}

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .home-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr); gap: 42px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-band { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .architecture { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arch-node:nth-child(2)::after { display: none; }
  .request-layout { grid-template-columns: minmax(0, 1fr) 320px; }
}

@media (max-width: 900px) {
  .section { padding-block: 88px; }
  .nav { min-height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 24px;
    left: 24px;
    display: none;
    margin: 0;
    padding: 13px;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--line-strong);
    border-radius: 17px;
    background: rgba(9, 13, 22, 0.98);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 12px; border-radius: 9px; }
  .nav-links a:hover { background: rgba(51, 100, 202, 0.1); }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin-top: 6px; }
  .home-hero { padding-block: 74px 92px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 62px; }
  .home-hero-copy { max-width: 720px; }
  .command-panel { width: min(580px, 100%); margin-inline: auto; transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 650px; }
  .trust-row { flex-wrap: wrap; justify-content: center; padding-block: 19px; }
  .trust-row > span { width: 100%; text-align: center; }
  .subhero-grid { grid-template-columns: 1fr; gap: 52px; }
  .spec-panel { width: min(560px, 100%); }
  .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .request-layout { grid-template-columns: 1fr; }
  .request-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { padding-block: 48px; grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-links { justify-content: flex-end; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding-block: 72px; }
  .section-compact { padding-block: 55px; }
  .brand { min-width: 0; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 11px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 7px; }
  .home-hero { min-height: 0; padding-block: 61px 74px; }
  .home-hero::before { background-size: 42px 42px; }
  .home-hero h1 { font-size: clamp(44px, 14.4vw, 65px); }
  .hero-lead, .subhero-lead { font-size: 14px; }
  .consult-pill { width: 100%; padding: 9px 10px; flex-wrap: wrap; }
  .hero-actions, .subhero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button, .subhero-actions .button { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .hero-divider { display: none; }
  .hero-stat { padding-right: 10px; border-right: 1px solid var(--line); }
  .hero-stat:nth-of-type(2n) { border-right: 0; }
  .command-body { padding: 15px; }
  .command-brand { grid-template-columns: 68px 1fr; padding: 12px; gap: 12px; }
  .command-logo { width: 68px; height: 68px; border-radius: 16px; }
  .command-brand strong { font-size: 15px; }
  .command-brand small { font-size: 6px; }
  .command-path { display: none; }
  .module-item { grid-template-columns: 38px 1fr; padding-inline: 8px; }
  .module-state { display: none; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; justify-items: start; font-size: 7px; }
  .trust-row > span { grid-column: 1 / -1; text-align: left; }
  .section-heading h2, .simple-heading h2 { font-size: 38px; }
  .section-heading > p, .simple-heading > p { font-size: 13px; }
  .product-grid, .market-grid, .price-options, .tech-grid, .deliverable-grid, .scope-grid, .principle-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 360px; }
  .market-card { min-height: 330px; padding: 29px; }
  .process-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 210px; }
  .step-number { margin-bottom: 31px; }
  .price-band { padding: 27px 20px; }
  .price-band h2 { font-size: 39px; }
  .subhero { padding-block: 63px 70px; }
  .subhero h1, .catalog-hero h1, .content-hero h1 { font-size: clamp(43px, 13.2vw, 62px); }
  .spec-panel { padding: 21px; }
  .spec-title { align-items: flex-start; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row strong { text-align: left; }
  .page-nav-inner { gap: 20px; }
  .architecture { grid-template-columns: 1fr; }
  .arch-node:not(:last-child)::after { top: auto; right: auto; bottom: -18px; left: 50%; width: 1px; height: 23px; }
  .arch-node:nth-child(2)::after { display: block; }
  .comparison-intro { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 25px; }
  .catalog-actions { display: grid; grid-template-columns: 1fr; }
  .catalog-actions .button { width: 100%; }
  .sales-form { padding: 24px 18px; border-radius: 19px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .request-sidebar { grid-template-columns: 1fr; }
  .request-summary, .request-help { padding: 21px; }
  .cta-panel { min-height: 500px; padding: 52px 20px; border-radius: 23px; }
  .cta-panel h2 { font-size: 41px; }
  .footer-main { display: flex; padding-block: 46px; align-items: flex-start; flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: flex-start; }
  .footer-bottom { min-height: 128px; padding-block: 24px; align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .home-hero h1 { font-size: 42px; }
  .module-item { grid-template-columns: 36px 1fr; }
  .command-brand { grid-template-columns: 58px 1fr; }
  .command-logo { width: 58px; height: 58px; }
  .faq-list details p { margin-right: 22px; }
}

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