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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--page);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #fff;
  background: var(--accent);
}

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

svg {
  overflow: visible;
}

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

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

button {
  border: 0;
}

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

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 74%, transparent);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: calc(8px + env(safe-area-inset-top));
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 690px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.security-intro h2,
.contact-copy h2,
.closing-inner h2 {
  max-width: 18ch;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.security-intro > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 660;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg,
.text-link svg,
.contact-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 20%, transparent);
}

.button-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 26%, transparent);
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--glass-strong);
  box-shadow: var(--shadow-xs);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
}

.button-inverse {
  color: #111315;
  background: #f2f4f6;
}

.button-inverse:hover {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.button-large {
  min-height: 50px;
  padding-inline: 21px;
  font-size: 15px;
}

.button-block {
  width: 100%;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  min-width: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-soft);
  background: var(--glass);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--surface-raised);
}

.icon-button:active {
  transform: scale(0.96);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 650;
}

.text-link:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: color-mix(in srgb, var(--line) 88%, transparent);
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(12, 17, 22, 0.02);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

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

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 12px;
  border-radius: 9px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 570;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  visibility: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 88vw);
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 260ms, opacity 220ms ease;
}

.mobile-menu[data-open="true"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu-backdrop {
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 7, 10, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.mobile-menu-panel {
  display: flex;
  min-width: 0;
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  padding: calc(14px + env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) 22px;
  border-left: 1px solid var(--line);
  background: var(--surface-raised);
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu[data-open="true"] .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav {
  display: grid;
  margin-block: 36px auto;
}

.mobile-nav a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 640;
  letter-spacing: -0.02em;
}

.mobile-nav a:first-child {
  border-top: 1px solid var(--line);
}

.mobile-nav a span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mobile-menu-foot {
  padding-top: 28px;
}

.mobile-menu-foot p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(80px, 9vw, 128px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(color-mix(in srgb, var(--line) 32%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--line) 32%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 82%);
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -140px;
  width: min(760px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 13%, transparent) 0, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(48px, 5.5vw, 70px);
  font-weight: 690;
  letter-spacing: -0.058em;
  line-height: 1.04;
}

.hero-copy h1 span {
  color: var(--muted-strong);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 570;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-facts svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--success);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Product preview */
.product-preview {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-block: 50px;
}

.preview-aura {
  position: absolute;
  inset: 2% -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.app-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #111418;
  box-shadow: 0 45px 100px rgba(5, 10, 16, 0.27), 0 8px 26px rgba(5, 10, 16, 0.2);
  transform: perspective(1200px) rotateY(-1.5deg) rotateX(0.5deg);
  transform-origin: center;
}

.window-bar {
  display: grid;
  height: 42px;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 8px;
  padding-inline: 14px;
  border-bottom: 1px solid #262b31;
  color: #8c959e;
  background: #171b1f;
  font-size: 9px;
}

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

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a4046;
}

.window-dots span:first-child {
  background: #cb6870;
}

.window-dots span:nth-child(2) {
  background: #c99b52;
}

.window-dots span:last-child {
  background: #5c9d78;
}

.window-address {
  display: flex;
  width: min(270px, 100%);
  min-width: 0;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #292f35;
  border-radius: 6px;
  background: #121519;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secure-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #65c69c;
}

.window-label {
  justify-self: end;
  white-space: nowrap;
}

.app-layout {
  display: grid;
  min-height: 430px;
  grid-template-columns: 108px minmax(0, 1fr);
}

.preview-sidebar {
  padding: 16px 10px;
  border-right: 1px solid #252a30;
  background: #13171b;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 5px 15px;
  color: #f2f4f6;
  font-size: 11px;
  font-weight: 700;
}

.preview-brand img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.preview-nav-item {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding-inline: 8px;
  border-radius: 7px;
  color: #78828c;
  font-size: 8px;
  font-weight: 600;
}

.preview-nav-item.active {
  color: #e9edf1;
  background: #22272d;
}

.preview-nav-item svg,
.preview-kpi svg,
.security-orbit svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-main {
  min-width: 0;
  background: #101317;
}

.preview-topbar {
  display: flex;
  height: 61px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-inline: 16px;
  border-bottom: 1px solid #24292e;
}

.preview-topbar > div {
  display: grid;
}

.preview-topbar strong {
  color: #edf0f2;
  font-size: 12px;
}

.preview-topbar span,
.preview-card-head span {
  color: #7d8790;
  font-size: 8px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid #2e4239;
  border-radius: 999px;
  color: #9ac8b4 !important;
  background: #17231e;
  white-space: nowrap;
}

.status-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #65c69c;
}

.preview-content {
  padding: 14px;
}

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

.preview-kpi {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #272d33;
  border-radius: 9px;
  background: #171b1f;
}

.kpi-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #303740;
  border-radius: 8px;
  color: #9bb7f8;
  background: #1b2230;
}

.preview-kpi div {
  display: grid;
  min-width: 0;
}

.preview-kpi small {
  color: #7d8790;
  font-size: 7px;
}

.preview-kpi strong {
  overflow: hidden;
  color: #e8ecef;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  gap: 8px;
  margin-top: 8px;
}

.preview-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid #272d33;
  border-radius: 9px;
  background: #171b1f;
}

.preview-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.preview-card-head strong {
  color: #e9edf0;
  font-size: 9px;
}

.service-row {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding-block: 9px;
  border-top: 1px solid #252a30;
}

.service-mark {
  width: 6px;
  height: 22px;
  border-radius: 4px;
  background: #567fe2;
}

.service-mark.cyan {
  background: #46a8c7;
}

.service-mark.slate {
  background: #69737c;
}

.service-row div {
  display: grid;
  min-width: 0;
}

.service-row b {
  color: #dfe4e8;
  font-size: 8px;
}

.service-row small {
  overflow: hidden;
  color: #707a83;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-action {
  padding: 3px 6px;
  border: 1px solid #30363d;
  border-radius: 5px;
  color: #a8b0b8;
  font-size: 7px;
}

.task-list {
  display: grid;
  gap: 12px;
  padding: 2px 0 0;
  margin: 0;
  color: #717b84;
  font-size: 7px;
  list-style: none;
}

.task-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.task-list li:not(:last-child)::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 1px;
  height: 12px;
  background: #31373d;
  content: "";
}

.task-list span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid #454d55;
  border-radius: 50%;
}

.task-list .done {
  color: #a9b1b8;
}

.task-list .done span {
  border-color: #4e9e79;
  background: #4e9e79;
}

.task-list .current {
  color: #c3d0f1;
}

.task-list .current span {
  border-color: #6f96ed;
  box-shadow: 0 0 0 3px rgba(111, 150, 237, 0.14);
}

.preview-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 144px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--glass-strong);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.preview-note span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-note strong {
  margin-top: 2px;
  color: var(--text);
  font-size: 11px;
}

.preview-note-top {
  top: 22px;
  right: -20px;
}

.preview-note-bottom {
  bottom: 13px;
  left: -24px;
}

/* Proof strip */
.proof-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 58%, transparent);
}

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

.proof-grid > div {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.proof-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  font-size: 15px;
  font-weight: 670;
}

.proof-grid span {
  color: var(--muted);
  font-size: 12px;
}

/* Features */
.feature-section {
  background: var(--surface);
}

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

.feature-card {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-xs);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-card-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  column-gap: 16px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--accent);
  background: var(--accent-soft);
}

.feature-card-wide .feature-icon {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.feature-icon svg,
.deploy-notes svg,
.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 670;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.feature-card p {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.mini-console {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 82px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.mini-console > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 10px;
  padding: 12px 14px;
}

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

.mini-console span {
  color: var(--muted);
  font-size: 10px;
}

.mini-console b {
  font-size: 12px;
  font-weight: 640;
}

.state-dot {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px var(--success-soft);
}

/* Advantages */
.advantages-section {
  background: var(--page);
}

.advantages-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  margin-bottom: 0;
}

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

.advantage-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.advantage-number {
  padding-top: 3px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.advantage-item h3 {
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.advantage-item p {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Deployment */
.deploy-section {
  color: #d8dde2;
  background: #101317;
  overflow: hidden;
}

.deploy-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 22%, rgba(58, 105, 208, 0.16), transparent 34%), linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  content: "";
  pointer-events: none;
}

.deploy-section .shell {
  position: relative;
}

.section-heading-light h2 {
  color: #f1f3f5;
}

.section-heading-light p:not(.eyebrow) {
  color: #9ba4ad;
}

.section-heading-light .eyebrow {
  color: #9db9ff;
}

.deploy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.steps-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 27px 0;
  border-top: 1px solid #2a3036;
}

.step-item:last-child {
  border-bottom: 1px solid #2a3036;
}

.step-number {
  color: #7397ed;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.step-item h3 {
  margin-bottom: 7px;
  color: #eef1f3;
  font-size: 19px;
  font-weight: 640;
}

.step-item p {
  margin-bottom: 0;
  color: #929ca5;
  font-size: 14px;
}

.command-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid #2b3239;
  border-radius: var(--radius-lg);
  background: rgba(22, 26, 30, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.command-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: #f1f3f5;
  font-size: 14px;
  font-weight: 650;
}

.command-platform {
  color: #7f8992;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.terminal {
  position: relative;
  overflow: hidden;
  border: 1px solid #303840;
  border-radius: 12px;
  background: #0b0e11;
}

.terminal-bar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding-inline: 13px;
  border-bottom: 1px solid #242a30;
}

.terminal-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #444c54;
}

.terminal-bar b {
  margin-left: 6px;
  color: #67717a;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
}

.terminal-code {
  display: grid;
  min-height: 120px;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  gap: 10px;
  padding: 24px 20px 42px;
}

.terminal-code .prompt {
  color: #65c69c;
  font-family: var(--font-mono);
  font-size: 13px;
}

.terminal-code code {
  min-width: 0;
  color: #d8dde2;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  user-select: all;
}

.copy-button {
  position: absolute;
  right: 10px;
  bottom: 9px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding-inline: 10px;
  border: 1px solid #303840;
  border-radius: 8px;
  color: #a7b0b8;
  background: #15191d;
  font-size: 10px;
  cursor: pointer;
}

.copy-button:hover {
  color: #fff;
  border-color: #46515b;
}

.copy-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deploy-notes {
  display: grid;
  gap: 10px;
  margin-block: 18px;
}

.deploy-notes > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #2a3036;
  border-radius: 10px;
  background: #12161a;
}

.deploy-notes svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #7ea1f1;
}

.deploy-notes p {
  display: grid;
  margin-bottom: 0;
}

.deploy-notes strong {
  color: #dce1e5;
  font-size: 12px;
}

.deploy-notes span {
  color: #89939d;
  font-size: 11px;
}

/* Responsive showcase */
.responsive-section {
  background: var(--surface);
  overflow: hidden;
}

.device-stage {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 40px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-soft);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--surface) 80%, transparent);
}

.device-stage::before {
  position: absolute;
  inset: 8% 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 10%, transparent), transparent 66%);
  content: "";
  pointer-events: none;
}

.device-desktop,
.device-tablet,
.device-phone {
  position: relative;
  z-index: 1;
  border: 2px solid var(--text);
  background: var(--text);
  box-shadow: var(--shadow-lg);
}

.device-desktop {
  width: min(72%, 760px);
  padding: 9px;
  border-radius: 17px;
}

.device-tablet {
  width: 190px;
  margin-left: -72px;
  padding: 8px;
  border-radius: 19px;
}

.device-phone {
  width: 126px;
  margin-left: -38px;
  padding: 7px;
  border-radius: 22px;
}

.device-camera {
  position: absolute;
  top: 4px;
  left: 50%;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4a5159;
  transform: translateX(-50%);
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 38px;
  height: 9px;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
}

.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: #f4f5f6;
}

.desktop-screen {
  display: grid;
  aspect-ratio: 16 / 9;
  grid-template-columns: 18% 1fr;
}

.tablet-screen {
  aspect-ratio: 3 / 4;
  padding: 15px 10px;
  border-radius: 12px;
}

.phone-screen {
  aspect-ratio: 9 / 19.5;
  padding: 22px 7px 30px;
  border-radius: 16px;
}

.mock-side {
  border-right: 1px solid #dfe2e5;
  background: #fff;
}

.mock-side::before,
.mock-side::after {
  display: block;
  width: 56%;
  height: 5px;
  margin: 18px auto;
  border-radius: 4px;
  background: #c8cdd2;
  box-shadow: 0 15px #e2e5e8, 0 30px #e2e5e8, 0 45px #e2e5e8;
  content: "";
}

.mock-side::after {
  margin-top: 54px;
  background: #e2e5e8;
  box-shadow: 0 15px #e2e5e8;
}

.mock-area {
  padding: 9% 6%;
}

.mock-area > span,
.mock-mobile-head {
  display: block;
  width: 28%;
  height: 7px;
  margin-bottom: 8%;
  border-radius: 5px;
  background: #aeb5bc;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
}

.mock-cards i,
.mock-mobile-cards i {
  display: block;
  aspect-ratio: 1.8;
  border: 1px solid #dde1e4;
  border-radius: 5px;
  background: #fff;
}

.mock-table {
  display: grid;
  gap: 8px;
  margin-top: 7%;
  padding: 6%;
  border: 1px solid #dde1e4;
  border-radius: 6px;
  background: #fff;
}

.mock-table b {
  height: 5px;
  border-radius: 4px;
  background: #e0e3e6;
}

.mock-table b:first-child {
  width: 74%;
  background: #b9c0c6;
}

.mock-mobile-head {
  width: 44%;
  height: 5px;
  margin-bottom: 14px;
}

.mock-mobile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.phone-screen .mock-mobile-cards {
  grid-template-columns: 1fr;
  gap: 6px;
}

.phone-screen .mock-mobile-cards i {
  aspect-ratio: 2.8;
}

.mock-bottom-nav {
  position: absolute;
  right: 6px;
  bottom: 6px;
  left: 6px;
  display: grid;
  height: 21px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 4px;
  padding-inline: 5px;
  border: 1px solid #dfe2e5;
  border-radius: 999px;
  background: #fff;
}

.mock-bottom-nav b {
  width: 6px;
  height: 6px;
  margin-inline: auto;
  border-radius: 50%;
  background: #ccd1d5;
}

.mock-bottom-nav b:first-child {
  background: #2f66df;
}

.device-stand {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 26%;
  height: 45px;
  border-bottom: 9px solid var(--text);
  transform: translateX(-50%);
}

.device-stand::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 32%;
  height: 38px;
  background: var(--text);
  content: "";
  transform: translateX(-50%);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 52px 0 0;
  list-style: none;
}

.platform-list li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: var(--surface-raised);
  font-size: 12px;
  font-weight: 600;
}

.responsive-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.detail-card {
  padding: 24px 2px 8px;
  border-top: 1px solid var(--line);
}

.detail-card > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.detail-card h3 {
  margin: 28px 0 9px;
  font-size: 18px;
  font-weight: 660;
}

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

/* Security */
.security-section {
  background: var(--page-deep);
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 130px);
}

.security-intro h2 {
  max-width: 13ch;
}

.security-orbit {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.security-orbit::before {
  position: absolute;
  inset: -14px;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  border-radius: 50%;
  content: "";
}

.security-orbit svg {
  width: 29px;
  height: 29px;
}

.security-orbit span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.security-orbit span:nth-of-type(1) {
  top: -17px;
  left: 34px;
}

.security-orbit span:nth-of-type(2) {
  right: -12px;
  bottom: 10px;
}

.security-orbit span:nth-of-type(3) {
  bottom: -10px;
  left: 4px;
}

.security-note {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.security-note strong {
  font-size: 12px;
}

.security-note span {
  color: var(--muted);
  font-size: 12px;
}

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

.security-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.security-index {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.security-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 660;
}

.security-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.015em;
}

.faq-item button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease);
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 64ch;
  padding: 0 48px 23px 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Contact */
.contact-section {
  background: var(--page);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 230px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-xs);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.contact-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--accent);
  background: var(--accent-soft);
}

.contact-card div {
  display: grid;
  min-width: 0;
  align-content: start;
}

.contact-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 670;
}

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

.contact-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--muted);
}

.contact-card:hover .contact-arrow {
  color: var(--accent);
}

/* Closing CTA and footer */
.closing-cta {
  padding-block: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.closing-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.closing-inner h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 6px;
}

.site-footer {
  padding: 70px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--page-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 70px;
}

.footer-brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 680;
}

.footer-links a {
  width: fit-content;
  min-height: 30px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Legal pages */
.legal-page {
  background: var(--page);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.legal-header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 620;
}

.back-link:hover {
  color: var(--text);
}

.back-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-main {
  padding-block: clamp(70px, 9vw, 120px);
}

.legal-hero {
  max-width: 760px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.legal-content {
  display: grid;
  max-width: 760px;
  gap: 42px;
  padding-top: 54px;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 670;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin-bottom: 0;
}

.legal-content code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text-soft);
  background: var(--surface-soft);
  font-family: var(--font-mono);
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.legal-footer-bottom {
  margin-top: 0;
}

/* Progressive motion */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.reveal-ready .reveal[data-reveal-delay="1"] {
  transition-delay: 70ms;
}

.reveal-ready .reveal[data-reveal-delay="2"] {
  transition-delay: 140ms;
}

.reveal-ready .reveal[data-reveal-delay="3"] {
  transition-delay: 210ms;
}

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

.toast {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  z-index: 500;
  max-width: min(360px, calc(100vw - 36px));
  padding: 11px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  background: var(--glass-strong);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
