:root {
  --navy: #071a33;
  --navy-2: #0b274a;
  --blue: #1565c0;
  --blue-2: #2f80ed;
  --green: #16a34a;
  --amber: #f59e0b;
  --red: #dc2626;
  --ink: #0b1f3a;
  --muted: #607089;
  --canvas: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #edf3fa;
  --line: #dfe7f1;
  --shadow: 0 20px 60px rgba(10,31,58,.1);
  --shadow-soft: 0 10px 32px rgba(10,31,58,.07);
}

[data-theme="dark"] {
  --ink: #f8fafc;
  --muted: #aab8ca;
  --canvas: #081321;
  --surface: #101e30;
  --surface-soft: #14263a;
  --line: rgba(255,255,255,.08);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --shadow-soft: 0 12px 38px rgba(0,0,0,.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

.landing-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--canvas);
  transition: .4s;
}

.landing-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.landing-loader span {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(21,101,192,.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  color: #fff;
  transition: .3s;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(7,26,51,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.public-brand {
  width: 180px;
  height: 62px;
  overflow: hidden;
  flex: none;
}

.brand-viewport {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
}

.brand-light {
  display: none;
}

.brand-dark {
  display: block;
}

[data-theme="light"] .public-footer .brand-light {
  display: block;
}

[data-theme="light"] .public-footer .brand-dark {
  display: none;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #c9d6e7;
  font-size: .78rem;
  font-weight: 600;
  transition: .2s;
}

.desktop-nav a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.theme-switch,
.mobile-menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
  transition: .2s;
}

.theme-switch:hover,
.mobile-menu-button:hover {
  background: rgba(255,255,255,.15);
}

.theme-sun {
  display: none;
}

[data-theme="dark"] .theme-moon {
  display: none;
}

[data-theme="dark"] .theme-sun {
  display: block;
}

.button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .78rem;
  font-weight: 750;
  transition: transform .2s, box-shadow .2s, background .2s;
}

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

.button-primary {
  background: linear-gradient(135deg, #2479db, #1565c0);
  color: #fff;
  box-shadow: 0 10px 25px rgba(21,101,192,.3);
}

.button-primary:hover {
  box-shadow: 0 15px 32px rgba(21,101,192,.4);
}

.button-ghost {
  border-color: rgba(255,255,255,.14);
  color: #dbe6f4;
}

.button-soft {
  color: #fff;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
}

.button-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 13px;
  font-size: .86rem;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 40%, #123b69 0, #0a2545 32%, #071a33 68%);
  color: #fff;
  padding: 130px 0 90px;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  top: -250px;
  left: 20%;
  background: rgba(21,101,192,.24);
}

.hero-glow-two {
  width: 500px;
  height: 500px;
  right: -250px;
  bottom: -250px;
  border: 1px solid rgba(96,165,250,.16);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 65px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #60a5fa;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: #60a5fa;
}

.hero h1 {
  margin: 22px 0;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.01;
  letter-spacing: -.06em;
  font-weight: 800;
}

.hero h1 em {
  color: #63a9fa;
  font-style: normal;
}

.hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #b8c8dc;
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: #a9bdd5;
  font-size: .7rem;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  color: #60a5fa;
}

.hero-visual {
  position: relative;
  min-width: 670px;
  margin-right: -115px;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: #f6f8fb;
  box-shadow: 0 45px 100px rgba(0,0,0,.38);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

.window-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 15px;
  border-bottom: 1px solid #dfe7f1;
  background: #fff;
  color: #607089;
  font-size: .62rem;
}

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

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8d2df;
}

.window-address {
  flex: 1;
  max-width: 220px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f3f6fa;
}

.online-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #15803d;
}

.online-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.window-body {
  min-height: 420px;
  display: flex;
}

.mock-sidebar {
  width: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 14px 10px;
  background: var(--navy);
}

.mock-brand img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 8px;
}

.mock-nav {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #7f98b8;
}

.mock-nav.active {
  color: #fff;
  background: var(--blue);
}

.mock-content {
  flex: 1;
  padding: 22px;
  color: #0b1f3a;
}

.mock-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.mock-heading small,
.mock-heading strong {
  display: block;
}

.mock-heading small {
  margin-bottom: 5px;
  color: #7a8ba1;
  font-size: .48rem;
  letter-spacing: .12em;
}

.mock-heading strong {
  font-size: .82rem;
}

.mock-heading > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
}

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

.mock-metrics article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid #e6ecf3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15,23,42,.05);
}

.mock-metrics article > i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
  color: #1565c0;
  background: #e8f1fc;
}

.mock-metrics article.success > i {
  color: #16a34a;
  background: #e9f8ef;
}

.mock-metrics article.warning > i {
  color: #f59e0b;
  background: #fff5dd;
}

.mock-metrics small,
.mock-metrics strong {
  display: block;
}

.mock-metrics small {
  color: #718096;
  font-size: .47rem;
}

.mock-metrics strong {
  margin-top: 4px;
  font-size: .62rem;
}

.mock-panels {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  gap: 12px;
  margin-top: 12px;
}

.mock-panels article {
  min-height: 230px;
  padding: 16px;
  border: 1px solid #e6ecf3;
  border-radius: 11px;
  background: #fff;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  color: #172033;
  font-size: .6rem;
}

.panel-title span {
  color: #94a3b8;
}

.bars {
  height: 165px;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 11px;
  padding: 25px 10px 0;
  border-bottom: 1px solid #dce5ef;
  background-image: linear-gradient(#eef2f7 1px, transparent 1px);
  background-size: 100% 38px;
}

.bars > i {
  width: 20px;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(#4f9aef, #1565c0);
}

.bars svg {
  position: absolute;
  inset: 20px 5px 8px;
  width: calc(100% - 10px);
  height: calc(100% - 28px);
  overflow: visible;
}

.bars path {
  fill: none;
  stroke: #16a34a;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.donut {
  width: 112px;
  height: 112px;
  margin: 24px auto 16px;
  border-radius: 50%;
  background: conic-gradient(#16a34a 0 58%, #1565c0 58% 78%, #f59e0b 78% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 23px;
  border-radius: 50%;
  background: #fff;
}

.donut-legend {
  display: grid;
  gap: 6px;
  color: #64748b;
  font-size: .45rem;
}

.donut-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.donut-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

.donut-legend span:nth-child(2) i {
  background: #1565c0;
}

.donut-legend span:nth-child(3) i {
  background: #f59e0b;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(13,37,66,.92);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite;
}

.floating-card > i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fbbf24;
  background: rgba(245,158,11,.15);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #9eb1c8;
  font-size: .48rem;
}

.floating-card strong {
  margin-top: 3px;
  font-size: .62rem;
}

.float-alert {
  top: 70px;
  left: -55px;
}

.float-mobile {
  right: 25px;
  bottom: -32px;
  animation-delay: -2s;
}

.float-mobile > i {
  color: #4ade80;
  background: rgba(22,163,74,.16);
}

@keyframes float {
  50% { transform: translateY(-8px); }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(96,165,250,.15);
  border-radius: 50%;
}

.orbit-one {
  width: 620px;
  height: 620px;
  inset: -100px auto auto -70px;
}

.orbit-two {
  width: 450px;
  height: 450px;
  inset: -15px auto auto 10px;
}

.hero-bottom-fade {
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(2,12,24,.2));
}

.proof-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: center;
}

.proof-grid > div {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
}

.proof-grid > div:first-child {
  align-items: flex-start;
  flex-direction: column;
  border-left: 0;
}

.proof-grid strong {
  color: var(--ink);
  font-size: .8rem;
}

.proof-grid i {
  color: var(--blue);
  font-size: 1rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.workflow-copy h2,
.security-copy h2,
.final-cta h2 {
  margin: 13px 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.workflow-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card,
.module-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: .25s;
}

.benefit-card {
  min-height: 330px;
  padding: 34px;
}

.benefit-card:hover,
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21,101,192,.3);
  box-shadow: var(--shadow);
}

.benefit-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #16a34a, #4ade80);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 1.25rem;
}

.feature-icon.blue { color: #1565c0; background: #e8f1fc; }
.feature-icon.green { color: #16a34a; background: #e9f8ef; }
.feature-icon.amber { color: #d97706; background: #fff3d6; }
.feature-icon.cyan { color: #0891b2; background: #e2f8fc; }
.feature-icon.violet { color: #7c3aed; background: #f1eafe; }
.feature-icon.red { color: #dc2626; background: #fdecec; }

[data-theme="dark"] .feature-icon.blue { background: rgba(21,101,192,.18); }
[data-theme="dark"] .feature-icon.green { background: rgba(22,163,74,.16); }
[data-theme="dark"] .feature-icon.amber { background: rgba(245,158,11,.15); }
[data-theme="dark"] .feature-icon.cyan { background: rgba(8,145,178,.16); }
[data-theme="dark"] .feature-icon.violet { background: rgba(124,58,237,.17); }
[data-theme="dark"] .feature-icon.red { background: rgba(220,38,38,.15); }

.benefit-card h3,
.module-card h3,
.workflow-step h3 {
  margin: 26px 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
}

.benefit-card p,
.module-card p,
.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.75;
}

.benefit-card a {
  position: absolute;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 700;
}

.section-features {
  background: var(--surface-soft);
}

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

.module-card {
  min-height: 285px;
  padding: 30px;
}

.module-card.large {
  grid-row: span 2;
  min-height: 588px;
  background: linear-gradient(155deg, var(--surface), var(--surface-soft));
}

.module-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.module-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--line);
  font-size: 2.4rem;
  font-weight: 800;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.mini-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: .65rem;
}

.report-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 25px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), #103b69);
}

.report-preview span {
  width: var(--w);
  height: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.15);
}

.report-preview i {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255,255,255,.3);
  font-size: 3rem;
}

.workflow-section {
  position: relative;
  overflow: hidden;
}

.workflow-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.workflow-copy .button {
  margin-top: 30px;
}

.workflow-steps {
  position: relative;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 35px;
  bottom: 35px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--green));
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 24px 0;
}

.workflow-step > span {
  width: 58px;
  height: 58px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 6px solid var(--canvas);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(21,101,192,.25);
}

.workflow-step:nth-child(2) > span {
  background: #0891b2;
}

.workflow-step:nth-child(3) > span {
  background: var(--green);
}

.workflow-step small {
  color: var(--blue);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.workflow-step h3 {
  margin: 6px 0 8px;
}

.security-section {
  padding-top: 40px;
}

.security-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: .65fr 1.15fr .8fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 55px;
  border-radius: 26px;
  background: radial-gradient(circle at left, #164f88, #0a2b50 40%, #071a33 78%);
  color: #fff;
  box-shadow: 0 35px 80px rgba(7,26,51,.26);
}

.shield-rings {
  width: 200px;
  height: 200px;
  position: relative;
  display: grid;
  place-items: center;
  margin: auto;
}

.shield-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(96,165,250,.28);
  border-radius: 50%;
  animation: ring 3s ease-out infinite;
}

.shield-rings span:nth-child(2) {
  inset: 25px;
  animation-delay: -1.5s;
}

@keyframes ring {
  50% { transform: scale(1.08); opacity: .45; }
}

.shield-rings i {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  background: linear-gradient(145deg, #2f80ed, #1565c0);
  box-shadow: 0 18px 45px rgba(21,101,192,.45);
  font-size: 2.5rem;
}

.light-kicker {
  color: #6fb1ff;
}

.security-copy h2 {
  color: #fff;
}

.security-copy > p,
.offline-copy p {
  color: #b9c9dc;
  line-height: 1.75;
}

.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 25px;
  color: #dce8f5;
  font-size: .72rem;
}

.security-list span {
  display: flex;
  gap: 8px;
}

.security-list i {
  color: #4ade80;
}

.offline-copy {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.offline-copy > i {
  margin-bottom: 28px;
  color: #60a5fa;
  font-size: 2rem;
}

.offline-copy small,
.offline-copy strong {
  display: block;
}

.offline-copy small {
  margin-top: 25px;
  color: #6fb1ff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.offline-copy strong {
  margin: 7px 0;
  font-size: 1rem;
}

.offline-copy p {
  margin-bottom: 0;
  font-size: .72rem;
}

.final-cta {
  min-height: 550px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 110px;
  background: linear-gradient(135deg, #0b3260, #071a33 60%, #0e4075);
  color: #fff;
}

.cta-grid {
  mask-image: radial-gradient(circle, #000, transparent 75%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-block: 90px;
  text-align: center;
}

.final-cta .section-kicker {
  justify-content: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #b8c8dc;
  line-height: 1.8;
}

.final-cta small {
  display: block;
  margin-top: 20px;
  color: #8fa5be;
}

.public-footer {
  padding: 65px 0 25px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 70px;
  padding-bottom: 45px;
}

.footer-brand .brand-viewport {
  width: 180px;
  height: 60px;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: .72rem;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.delay-one {
  transition-delay: .12s;
}

.delay-two {
  transition-delay: .24s;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin: auto;
  }

  .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-copy > p {
    margin: auto;
  }

  .hero-visual {
    min-width: 760px;
    width: 760px;
    margin: 40px auto -200px;
  }

  .hero {
    padding-bottom: 250px;
  }

  .security-card {
    grid-template-columns: .7fr 1.3fr;
  }

  .offline-copy {
    grid-column: span 2;
  }
}

@media (max-width: 850px) {
  .desktop-login {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    inset: 72px 20px auto;
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(7,26,51,.96);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu a {
    padding: 12px;
    border-radius: 9px;
    color: #dbe6f4;
    font-size: .8rem;
  }

  .mobile-menu a:hover {
    background: rgba(255,255,255,.08);
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 18px;
  }

  .proof-grid > div {
    border: 0;
  }

  .proof-grid > div:first-child {
    grid-column: span 2;
    align-items: center;
    margin-bottom: 10px;
  }

  .benefit-grid,
  .feature-board {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card:last-child {
    grid-column: span 2;
  }

  .module-card.large {
    grid-row: auto;
    min-height: 285px;
  }

  .module-card.wide {
    grid-column: span 2;
  }

  .section-heading.split,
  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .security-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offline-copy {
    grid-column: auto;
  }

  .security-list {
    text-align: left;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - 28px);
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .site-header {
    height: 70px;
  }

  .public-brand {
    width: 138px;
    height: 54px;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 115px 0 85px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 2.65rem);
    line-height: 1.06;
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    font-size: .9rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-row {
    justify-content: center;
    gap: 12px;
    font-size: .64rem;
  }

  .hero-visual {
    left: auto;
    width: 100%;
    min-width: 0;
    margin: 45px 0 0;
    transform: none;
  }

  .product-window {
    width: 100%;
    border-radius: 14px;
    transform: none;
  }

  .window-top {
    height: 36px;
    gap: 8px;
    padding-inline: 10px;
  }

  .window-dots {
    display: none;
  }

  .window-address {
    max-width: none;
    padding: 5px 8px;
  }

  .online-chip {
    font-size: .52rem;
  }

  .window-body {
    min-height: 310px;
  }

  .mock-sidebar {
    width: 38px;
    gap: 8px;
    padding: 10px 5px;
  }

  .mock-brand img {
    width: 27px;
    height: 27px;
  }

  .mock-nav {
    width: 27px;
    height: 27px;
    font-size: .72rem;
  }

  .mock-nav:nth-of-type(n+4) {
    display: none;
  }

  .mock-content {
    min-width: 0;
    padding: 12px 9px;
  }

  .mock-heading {
    gap: 8px;
    margin-bottom: 10px;
  }

  .mock-heading strong {
    font-size: .58rem;
  }

  .mock-heading > span {
    width: 26px;
    height: 26px;
    flex: none;
  }

  .mock-metrics {
    gap: 5px;
  }

  .mock-metrics article {
    min-width: 0;
    padding: 8px 5px;
  }

  .mock-metrics article > i {
    display: none;
  }

  .mock-metrics small {
    font-size: .38rem;
  }

  .mock-metrics strong {
    font-size: .48rem;
  }

  .mock-panels {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 7px;
  }

  .mock-panels article {
    min-height: 170px;
    padding: 10px;
  }

  .status-panel {
    display: none;
  }

  .bars {
    height: 130px;
    gap: 5px;
    padding-inline: 3px;
  }

  .bars > i {
    width: 12px;
  }

  .float-alert,
  .float-mobile {
    display: none;
  }

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

  .proof-grid > div:first-child {
    grid-column: auto;
  }

  .section {
    padding: 78px 0;
  }

  .benefit-grid,
  .feature-board {
    grid-template-columns: 1fr;
  }

  .benefit-card:last-child,
  .module-card.wide {
    grid-column: auto;
  }

  .module-card.wide {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .workflow-step {
    grid-template-columns: 52px 1fr;
  }

  .workflow-step > span {
    width: 50px;
    height: 50px;
  }

  .workflow-steps::before {
    left: 24px;
  }

  .security-card {
    padding: 34px 22px;
  }

  .security-list {
    grid-template-columns: 1fr;
  }

  .shield-rings {
    width: 160px;
    height: 160px;
  }

  .final-cta {
    margin-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .shell,
  .hero-layout {
    width: calc(100% - 24px);
  }

  .public-brand {
    width: 124px;
  }

  .nav-shell {
    gap: 8px;
  }

  .nav-actions {
    gap: 6px;
  }

  .theme-switch,
  .mobile-menu-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.25rem);
  }

  .eyebrow {
    font-size: .58rem;
    letter-spacing: .1em;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

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