
:root {
  --navy-950: #020b17;
  --navy-900: #06172d;
  --navy-850: #0a203a;
  --navy-800: #0c2948;
  --navy-700: #153a60;
  --blue-500: #138cf4;
  --blue-400: #32a2ff;
  --blue-100: #d9efff;
  --red-500: #f5222d;
  --green-500: #17a673;
  --slate-950: #152033;
  --slate-700: #45546b;
  --slate-500: #718096;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(4, 24, 48, 0.08);
  --shadow-lg: 0 30px 80px rgba(1, 12, 25, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-950);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(3, 15, 31, .92);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 218px;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav > a:not(.button) {
  color: rgba(255,255,255,.78);
  font-size: .93rem;
  font-weight: 600;
  transition: color .2s ease;
}
.primary-nav > a:hover { color: var(--white); }
.menu-toggle {
  display: none;
  border: 0;
  padding: 8px;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  width: 26px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 750;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-500), #0668d9);
  box-shadow: 0 14px 30px rgba(19, 140, 244, .25);
}
.button-primary:hover { box-shadow: 0 18px 34px rgba(19, 140, 244, .34); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
}
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-outline {
  color: white;
  border-color: rgba(255,255,255,.34);
  background: transparent;
}
.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: .9rem;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 28%, rgba(19,140,244,.20), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(245,34,45,.08), transparent 30%),
    linear-gradient(145deg, #020b17 0%, #06172d 48%, #0a203a 100%);
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(to top, rgba(2, 11, 23, .45), transparent);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 820px;
  padding-top: 128px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: .93fr 1.2fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 850;
}

.launch-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(50,162,255,.28);
  border-radius: 999px;
  color: #bfe4ff;
  background: rgba(19,140,244,.10);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 850;
}
.launch-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 5px rgba(50,162,255,.12);
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-lead {
  margin: 26px 0 0;
  max-width: 650px;
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(255,255,255,.73);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: rgba(255,255,255,.67);
  font-size: .9rem;
  font-weight: 600;
}
.hero-proof li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue-400);
}

.product-window {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
}
.window-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.07);
}
.window-bar > span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.window-bar > span:nth-child(1) { background: #ff5f57; }
.window-bar > span:nth-child(2) { background: #febc2e; }
.window-bar > span:nth-child(3) { background: #28c840; }
.window-address {
  margin-left: 10px;
  flex: 1;
  padding: 5px 12px;
  border-radius: 7px;
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.45);
  font-size: .66rem;
}
.window-body {
  height: 465px;
  display: grid;
  grid-template-columns: 118px 1fr;
  background: #eef3f8;
}
.mock-sidebar {
  padding: 18px 13px;
  background: var(--navy-900);
}
.mock-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
  color: white;
  font-size: .68rem;
  font-weight: 800;
}
.mock-logo img { width: 25px; height: 25px; }
.mock-nav {
  width: 88%;
  height: 7px;
  margin: 16px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
}
.mock-nav.active {
  width: 100%;
  height: 30px;
  margin-left: -3px;
  border-radius: 7px;
  background: rgba(19,140,244,.24);
  box-shadow: inset 3px 0 0 var(--blue-400);
}
.mock-nav.short { width: 58%; }
.mock-main {
  padding: 24px;
  color: var(--slate-950);
}
.mock-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-topline > div:first-child {
  display: flex;
  flex-direction: column;
}
.mock-kicker {
  color: var(--slate-500);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.mock-topline strong { font-size: 1.02rem; }
.mock-avatar {
  width: 31px; height: 31px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue-500);
  font-size: .58rem;
  font-weight: 850;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 20px;
}
.metric {
  position: relative;
  min-height: 117px;
  padding: 13px;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: white;
}
.metric-icon {
  display: block;
  width: 22px; height: 22px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #d9efff;
}
.metric-icon.red { background: #ffe0e3; }
.metric-icon.green { background: #d8f6ec; }
.metric small, .metric em { display: block; }
.metric small { color: var(--slate-500); font-size: .55rem; font-weight: 700; }
.metric strong { font-size: 1.35rem; line-height: 1.1; }
.metric em { color: var(--slate-500); font-size: .49rem; font-style: normal; }
.mock-content-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr;
  gap: 12px;
  margin-top: 14px;
}
.mock-panel {
  min-height: 214px;
  padding: 14px;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: white;
}
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-700);
  font-size: .6rem;
  font-weight: 800;
}
.panel-title i {
  width: 25px;
  height: 6px;
  border-radius: 999px;
  background: var(--slate-200);
}
.activity-row {
  display: grid;
  grid-template-columns: 18px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
}
.activity-row b {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: #d9efff;
}
.activity-row b.red { background: #ffe0e3; }
.activity-row b.green { background: #d8f6ec; }
.activity-row span, .activity-row em {
  height: 6px;
  border-radius: 999px;
  background: var(--slate-200);
}
.activity-row em { opacity: .7; }
.bars {
  height: 155px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  padding: 18px 5px 0;
}
.bars span {
  flex: 1;
  min-width: 8px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, #0872df, var(--blue-400));
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #041326;
  border-top: 1px solid rgba(255,255,255,.07);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid > div {
  padding: 27px 26px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.trust-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.08); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: .95rem; }
.trust-grid span { margin-top: 4px; color: rgba(255,255,255,.55); font-size: .77rem; }

.section { padding: 110px 0; }
.section-light { background: var(--white); }
.section-dark {
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(19,140,244,.11), transparent 32%),
    linear-gradient(145deg, #031020, #071c34);
}
.two-column {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 90px;
  align-items: center;
}
.section-copy h2,
.section-heading h2,
.security-copy h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.security-copy > p:not(.eyebrow),
.cta-card > div > p:not(.eyebrow) {
  color: var(--slate-700);
  font-size: 1.05rem;
}
.check-list { margin-top: 34px; }
.check-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-top: 1px solid var(--slate-200);
}
.check-list > div:last-child { border-bottom: 1px solid var(--slate-200); }
.check-list span {
  color: var(--blue-500);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.check-list p { margin: 0; color: var(--slate-700); }
.check-list strong { color: var(--slate-950); }

.workflow-card {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}
.workflow-header,
.workflow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workflow-header {
  padding: 23px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.workflow-header div { display: flex; flex-direction: column; }
.workflow-header small { color: var(--slate-500); font-size: .67rem; font-weight: 850; letter-spacing: .12em; }
.workflow-header strong { font-size: 1.15rem; }
.workflow-header > span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #0568c7;
  background: #e1f2ff;
  font-size: .67rem;
  font-weight: 800;
}
.workflow-steps { padding: 14px 26px 10px; }
.workflow-steps > div {
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  padding: 16px 0;
}
.workflow-steps > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 17px;
  bottom: -9px;
  width: 1px;
  background: var(--slate-200);
}
.workflow-steps i {
  position: relative;
  z-index: 1;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  color: var(--slate-500);
  background: white;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
}
.workflow-steps .done i { color: white; border-color: var(--green-500); background: var(--green-500); }
.workflow-steps .current i { color: white; border-color: var(--blue-500); background: var(--blue-500); box-shadow: 0 0 0 5px #e2f2ff; }
.workflow-steps span { display: flex; flex-direction: column; }
.workflow-steps strong { font-size: .88rem; }
.workflow-steps small { color: var(--slate-500); font-size: .72rem; }
.workflow-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
}
.workflow-footer span { color: var(--slate-500); font-size: .72rem; }
.workflow-footer button {
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  background: var(--blue-500);
  font-size: .72rem;
  font-weight: 750;
}

.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-dark .section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.6); }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.capability-card {
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.capability-card:hover {
  transform: translateY(-7px);
  border-color: rgba(50,162,255,.4);
  background: rgba(255,255,255,.07);
}
.card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin-bottom: 23px;
  border: 1px solid rgba(50,162,255,.34);
  border-radius: 14px;
  color: var(--blue-400);
  background: rgba(19,140,244,.12);
}
.card-icon span { font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.capability-card h3 { margin: 0; font-size: 1.25rem; }
.capability-card > p { color: rgba(255,255,255,.62); font-size: .91rem; }
.capability-card ul {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}
.capability-card li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.74);
  font-size: .8rem;
}
.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}

.operations-section {
  background: linear-gradient(180deg, #fff, #f5f8fc);
}
.operations-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.operations-visual {
  min-height: 600px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(19,140,244,.15), transparent 54%),
    linear-gradient(145deg, #06172d, #0b2d4f);
  overflow: hidden;
}
.mobile-device {
  width: 290px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 40px;
  background: #01070e;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  transform: rotate(-3deg);
}
.mobile-speaker {
  width: 70px; height: 5px;
  margin: 4px auto 10px;
  border-radius: 999px;
  background: #253444;
}
.mobile-screen {
  min-height: 520px;
  padding: 18px;
  border-radius: 28px;
  background: #f5f8fc;
}
.mobile-header {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-weight: 850;
  font-size: .86rem;
}
.mobile-header img { width: 28px; height: 28px; }
.mobile-field {
  margin-top: 18px;
  padding: 13px 12px;
  border: 1px solid #dfe7f0;
  border-radius: 11px;
  background: white;
}
.mobile-field small, .mobile-field strong { display: block; }
.mobile-field small { color: var(--slate-500); font-size: .54rem; letter-spacing: .08em; font-weight: 850; }
.mobile-field strong { margin-top: 4px; font-size: .72rem; }
.mobile-field.accent { border-color: #9ed5ff; background: #edf8ff; }
.mobile-pills { display: flex; gap: 7px; margin-top: 18px; }
.mobile-pills span {
  flex: 1;
  padding: 9px 0;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #dfe7f0;
  background: white;
  color: var(--slate-500);
  font-size: .61rem;
  font-weight: 800;
}
.mobile-pills span:first-child { color: #0a7b58; border-color: #9ddfca; background: #ecfbf6; }
.mobile-signature {
  margin-top: 20px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px dashed #b9c7d6;
  border-radius: 11px;
  color: #96a4b5;
  background: white;
  font-size: .68rem;
}
.mobile-button {
  margin-top: 18px;
  padding: 12px;
  border-radius: 10px;
  color: white;
  background: var(--blue-500);
  text-align: center;
  font-size: .72rem;
  font-weight: 850;
}
.operations-points { display: grid; gap: 4px; }
.feature-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--slate-200);
}
.feature-row > span {
  color: var(--blue-500);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.feature-row h3 { margin: 0; font-size: 1.12rem; }
.feature-row p { margin: 8px 0 0; color: var(--slate-700); font-size: .92rem; }

.security-section {
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    #041326;
  background-size: 48px 48px;
}
.security-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 95px;
  align-items: start;
}
.security-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.security-item {
  min-height: 215px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.security-item > span {
  color: var(--blue-400);
  font-size: .68rem;
  font-weight: 850;
}
.security-item strong { display: block; margin-top: 28px; font-size: 1rem; }
.security-item p { color: rgba(255,255,255,.58); font-size: .84rem; }

.cta-section { background: var(--slate-100); }
.cta-card {
  padding: 64px;
  display: grid;
  grid-template-columns: 1.5fr .55fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(50,162,255,.26), transparent 30%),
    linear-gradient(135deg, #041326, #0a2e52);
  box-shadow: var(--shadow-lg);
}
.cta-card > div > p:not(.eyebrow) { color: rgba(255,255,255,.63); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.text-link {
  color: rgba(255,255,255,.72);
  text-align: center;
  font-size: .86rem;
  font-weight: 650;
}
.text-link span { color: var(--blue-400); }

.site-footer {
  padding: 54px 0 22px;
  color: white;
  background: var(--navy-950);
}
.footer-main {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand img { width: 210px; }
.footer-main p { color: rgba(255,255,255,.52); font-size: .88rem; }
.footer-main nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.footer-main nav a { color: rgba(255,255,255,.67); font-size: .83rem; font-weight: 650; }
.footer-main nav a:hover { color: white; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.38);
  font-size: .74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

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

@media (max-width: 1050px) {
  .primary-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .product-window { max-width: 760px; width: 100%; margin-inline: auto; transform: none; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .two-column, .operations-grid, .security-layout { gap: 55px; }
}

@media (max-width: 820px) {
  .site-header { background: rgba(3,15,31,.92); backdrop-filter: blur(18px); }
  .menu-toggle { display: block; z-index: 2; }
  .primary-nav {
    position: fixed;
    inset: 0;
    padding: 110px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(2,11,23,.98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > a:not(.button) { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero, .hero-layout { min-height: auto; }
  .hero-layout { padding-bottom: 70px; gap: 46px; }
  
.launch-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(50,162,255,.28);
  border-radius: 999px;
  color: #bfe4ff;
  background: rgba(19,140,244,.10);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 850;
}
.launch-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 5px rgba(50,162,255,.12);
}

.hero h1 { font-size: clamp(3rem, 12vw, 4.8rem); }
  .window-body { grid-template-columns: 90px 1fr; height: 420px; }
  .mock-main { padding: 18px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric:last-child { display: none; }
  .mock-content-grid { grid-template-columns: 1fr; }
  .chart-panel { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .two-column, .operations-grid, .security-layout, .cta-card { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .operations-visual { min-height: 560px; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 46px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { justify-content: flex-start; }
}

@media (max-width: 580px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand img { width: 180px; }
  .header-inner { min-height: 72px; }
  .hero-layout { padding-top: 124px; }
  
.launch-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(50,162,255,.28);
  border-radius: 999px;
  color: #bfe4ff;
  background: rgba(19,140,244,.10);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 850;
}
.launch-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 5px rgba(50,162,255,.12);
}

.hero h1 { font-size: 3.1rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .product-window { border-radius: 15px; }
  .window-body { height: 360px; grid-template-columns: 68px 1fr; }
  .mock-sidebar { padding: 12px 8px; }
  .mock-logo span { display: none; }
  .mock-nav { margin: 13px 0; }
  .mock-main { padding: 13px; }
  .metric-grid { gap: 7px; }
  .metric { min-height: 102px; padding: 10px; }
  .mock-panel { min-height: 185px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .section { padding: 82px 0; }
  .two-column, .operations-grid, .security-layout { gap: 46px; }
  .capability-grid, .security-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; }
  .section-heading { margin-bottom: 38px; }
  .mobile-device { width: 252px; }
  .operations-visual { min-height: 520px; }
  .cta-card { padding: 34px 24px; }
  .footer-main nav { flex-wrap: wrap; gap: 14px 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

.bar-34 { height: 34%; }
.bar-52 { height: 52%; }
.bar-41 { height: 41%; }
.bar-72 { height: 72%; }
.bar-64 { height: 64%; }
.bar-86 { height: 86%; }
.bar-76 { height: 76%; }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  text-align: center;
  color: white;
  background: var(--navy-900);
}
.error-page main { padding: 32px; }
.error-page img {
  width: 280px;
  max-width: 80vw;
  margin: 0 auto 30px;
}
.error-page h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -.04em;
}
.error-page p { color: #b8c6d8; }
.error-page .button { margin-top: 20px; }
