:root {
  --bg: #05070c;
  --panel: #0b1016;
  --panel-2: #111a24;
  --text: #f4fbff;
  --muted: #9cb1c0;
  --line: rgba(244, 251, 255, 0.13);
  --lime: #00c8ff;
  --lime-2: #65eeff;
  --violet: #7658ff;
  --aqua: #28ffd0;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(0, 200, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.055) 1px, transparent 1px),
    var(--bg);
  background-size: 96px 96px;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

/* Back to top floating arrow */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  background: rgba(5, 7, 12, 0.72);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(12px);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: rgba(0, 200, 255, 0.55);
  box-shadow: 0 18px 60px rgba(0, 200, 255, 0.14);
}

.back-to-top span {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Cursor follower */
.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0.75;
  box-shadow: 0 0 14px rgba(0, 200, 255, 0.38);
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 255, 0.45);
  opacity: 0.55;
  box-shadow: 0 0 22px rgba(0, 200, 255, 0.16);
  mix-blend-mode: screen;
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 46px;
  height: 46px;
  border-color: rgba(0, 200, 255, 0.85);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.26);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* Subtle hover polish (keep original theme) */
.service-card,
.metrics-grid div,
.signal-stack div {
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

.service-card:hover,
.metrics-grid div:hover,
.signal-stack div:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 255, 0.24);
  box-shadow: 0 18px 60px rgba(0, 200, 255, 0.08), var(--shadow);
}

.button,
.header-cta,
.nav a {
  transition: transform 140ms ease, color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

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

.button:active,
.header-cta:active {
  transform: translateY(0);
}

/* Typewriter caret */
[data-typewriter] {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  vertical-align: bottom;
  min-height: 1.05em;
  transition: opacity 220ms ease, filter 220ms ease;
}

[data-typewriter].is-deleting {
  opacity: 0.9;
  filter: saturate(0.98);
}

[data-typewriter]::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 0.95em;
  margin-left: 8px;
  background: var(--lime);
  border-radius: 2px;
  transform: translateY(2px);
  opacity: 0.85;
  animation: caretBlink 1.2s step-end infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-typewriter]::after {
    animation: none;
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 16px 7vw;
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 6, 0.72);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: auto;
  height: 42px;
  color: var(--text);
  display: block;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 255, 0.32);
  background: rgba(0, 200, 255, 0.1);
  color: rgba(244, 251, 255, 0.94);
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--lime);
  color: #05070c;
  font-size: 0.78rem;
  font-weight: 800;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--lime);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta,
.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.header-cta:hover,
.button.secondary:hover {
  border-color: rgba(182, 255, 0, 0.45);
  color: var(--lime);
}

.button.primary {
  background: var(--lime);
  color: #05070c;
  box-shadow: 0 12px 36px rgba(0, 200, 255, 0.26);
}

.button.primary:hover {
  background: var(--lime-2);
}

.button.dark {
  background: #05070c;
  color: var(--lime);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--text);
}

.section,
.hero {
  padding: clamp(56px, 7vw, 88px) clamp(18px, 7vw, 7vw);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.hero.section-grid {
  align-items: start;
}

.hero-copy {
  max-width: 720px;
}

.hero {
  min-height: calc(100vh - 76px);
  padding-top: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5.2vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.micro-proof,
.micro-disclaimer {
  letter-spacing: 0.01em;
}

.micro-proof {
  margin: 16px 0 0;
  color: rgba(244, 251, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-text {
  max-width: 620px;
  font-size: 1.1rem;
}

.hero-sub {
  margin-bottom: 16px;
}

.hero-proofline {
  margin: 0;
  color: rgba(244, 251, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-proofline.strong {
  margin-top: 8px;
  color: rgba(244, 251, 255, 0.84);
  font-weight: 800;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-badges span {
  border: 1px solid rgba(0, 200, 255, 0.2);
  background: rgba(0, 200, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  max-width: 560px;
}

.hero-metrics div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.micro-disclaimer {
  margin: 12px 0 0;
  color: rgba(244, 251, 255, 0.58);
  font-size: 0.84rem;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  color: var(--text);
}

.hero-proof span,
.contact-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 58vh, 620px);
}

.hero-3d {
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 58% 42%, rgba(0, 200, 255, 0.18), transparent 34%),
    radial-gradient(circle at 74% 66%, rgba(118, 88, 255, 0.16), transparent 28%);
}

.hero-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(0, 200, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 42%, transparent 82%);
}

.hero-3d canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-fallback {
  position: absolute;
  inset: 5% 3%;
  z-index: -1;
  width: 94%;
  height: 90%;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.24;
  filter: saturate(1.35) blur(1px);
}

.orbit-badge,
.orbit-stats {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 200, 255, 0.12);
}

.orbit-badge {
  right: 7%;
  bottom: 12%;
  display: grid;
  gap: 8px;
  min-width: 198px;
  padding: 18px;
}

.orbit-badge span,
.orbit-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.orbit-badge strong {
  color: var(--lime);
  font-size: 1.35rem;
  line-height: 1;
}

.orbit-stats {
  left: 5%;
  top: 12%;
  display: flex;
  gap: 8px;
  padding: 10px;
}

.orbit-stats span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 6px;
  padding: 0 10px;
  background: rgba(0, 200, 255, 0.1);
  color: var(--text);
}

.trust-layer {
  padding: 24px 7vw 0;
}

.trust-shell {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.methods {
  padding-top: 56px;
}

.methods-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 200, 255, 0.12), transparent 46%),
    radial-gradient(circle at 86% 26%, rgba(118, 88, 255, 0.08), transparent 44%),
    rgba(17, 19, 15, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.methods-head p {
  margin-bottom: 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.method-pill {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 255, 0.22);
  background: rgba(5, 7, 12, 0.46);
  color: rgba(244, 251, 255, 0.9);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.trust-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-note {
  margin: -6px 0 16px;
  color: rgba(244, 251, 255, 0.55);
  font-size: 0.86rem;
  font-weight: 700;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 251, 255, 0.12);
  background: rgba(5, 7, 12, 0.45);
  color: rgba(244, 251, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.84rem;
}

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

.trust-stats div {
  border: 1px solid rgba(0, 200, 255, 0.18);
  border-radius: 10px;
  padding: 14px;
  background: rgba(0, 200, 255, 0.04);
}

.trust-stats strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.trust-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.section-lead {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-lead p:last-child {
  margin-bottom: 0;
}

.section-lead.compact {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

/* Feature section: grouped layout removed (legacy cards used) */

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(244, 251, 255, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 200, 255, 0.12), transparent 42%),
    radial-gradient(circle at 82% 26%, rgba(118, 88, 255, 0.1), transparent 38%),
    rgba(11, 16, 22, 0.86);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

.service-card.featured {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 200, 255, 0.18), transparent 44%),
    radial-gradient(circle at 80% 24%, rgba(118, 88, 255, 0.14), transparent 40%),
    rgba(11, 16, 22, 0.92);
  border-color: rgba(0, 200, 255, 0.32);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0, 200, 255, 0.4);
  box-shadow: 0 28px 100px rgba(0, 200, 255, 0.08), 0 26px 90px rgba(0, 0, 0, 0.34);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  background: radial-gradient(circle at 20% 20%, rgba(0, 200, 255, 0.16), transparent 48%);
}

.service-card:hover::after {
  opacity: 1;
}

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

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.22);
  color: var(--lime);
  box-shadow: 0 14px 40px rgba(0, 200, 255, 0.12);
}

.card-svg {
  width: 24px;
  height: 24px;
  transition: transform 220ms ease, filter 220ms ease;
}

.service-card:hover .card-svg {
  transform: translateY(-1px) rotate(-2deg) scale(1.06);
  filter: drop-shadow(0 10px 18px rgba(0, 200, 255, 0.22));
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 251, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 251, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-card h3 {
  margin: 0;
}

.card-benefit {
  margin: 0;
  color: rgba(244, 251, 255, 0.74);
}

.service-card .micro-proof {
  margin-top: 10px;
  color: rgba(244, 251, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
}

.impact-line {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 251, 255, 0.12);
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
}

/* Legacy card layout (matches screenshot grid with separators) */
.service-grid.legacy-cards {
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.service-grid.legacy-cards .service-card {
  min-height: 238px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(17, 19, 15, 0.76);
  box-shadow: none;
  display: block;
  overflow: visible;
  transform: none;
  transition: none;
}

.service-grid.legacy-cards .service-card.featured {
  background: #22281b;
}

.service-grid.legacy-cards .service-card:hover,
.service-grid.legacy-cards .service-card:hover::after {
  transform: none;
  box-shadow: none;
}

/* Ensure hover never hides text in legacy cards */
.service-grid.legacy-cards .service-card::after,
.service-grid.legacy-cards .service-card:hover::after {
  display: none;
  opacity: 0;
}

.service-grid.legacy-cards .service-card:hover {
  border-color: rgba(0, 200, 255, 0.26);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 200, 255, 0.18), transparent 46%),
    radial-gradient(circle at 86% 28%, rgba(118, 88, 255, 0.14), transparent 44%),
    rgba(17, 19, 15, 0.86);
}

/* All legacy cards: same neon gradient background */
.service-grid.legacy-cards .service-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 200, 255, 0.14), transparent 46%),
    radial-gradient(circle at 86% 28%, rgba(118, 88, 255, 0.1), transparent 44%),
    rgba(17, 19, 15, 0.76);
}

.service-grid.legacy-cards .service-card.featured {
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 200, 255, 0.16), transparent 46%),
    radial-gradient(circle at 86% 28%, rgba(118, 88, 255, 0.14), transparent 44%),
    rgba(34, 40, 27, 0.92);
}

.service-grid.legacy-cards .service-card:nth-child(3n) {
  border-right: 0;
}

.service-grid.legacy-cards .service-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-grid.legacy-cards .card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 6px;
  background: var(--lime);
  color: #070806;
  font-size: 0.76rem;
  font-weight: 800;
}

.service-grid.legacy-cards .card-head,
.service-grid.legacy-cards .icon-bubble,
.service-grid.legacy-cards .card-tag,
.service-grid.legacy-cards .card-svg,
.service-grid.legacy-cards .card-benefit,
.service-grid.legacy-cards .micro-proof,
.service-grid.legacy-cards .impact-line {
  display: none !important;
}

@media (min-width: 1041px) {
  .service-card.primary-card {
    border-color: rgba(0, 200, 255, 0.26);
  }
}

.platform {
  background:
    linear-gradient(135deg, rgba(124, 69, 255, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(0, 214, 201, 0.1), transparent 34%);
}

.platform-panel {
  max-width: 660px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--text);
  font-weight: 800;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.why-different .section-lead {
  margin-bottom: 28px;
}

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

.compare-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 200, 255, 0.12), transparent 46%),
    radial-gradient(circle at 86% 26%, rgba(118, 88, 255, 0.08), transparent 44%),
    rgba(17, 19, 15, 0.62);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 255, 0.24);
  box-shadow: 0 26px 84px rgba(0, 200, 255, 0.06), 0 22px 70px rgba(0, 0, 0, 0.32);
}

.compare-card h3 {
  margin-bottom: 10px;
}

.metrics-grid div {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 15, 0.72);
}

.metrics-grid div:nth-child(2n) {
  border-right: 0;
}

.metrics-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metrics-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--lime);
  font-weight: 800;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.risk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 64px;
  align-items: center;
}

.risk-copy {
  max-width: 760px;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.security-badges span {
  border: 1px solid rgba(244, 251, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 251, 255, 0.86);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.84rem;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 6px;
  background: rgba(0, 200, 255, 0.13);
  color: var(--lime);
}

.signal-stack {
  display: grid;
  gap: 14px;
}

.signal-stack div {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.signal-stack span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.signal-stack strong {
  color: var(--lime);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 72px 7vw;
  background: var(--lime);
  color: #05070c;
}

.cta-strip .eyebrow,
.cta-strip p {
  color: #001d2b;
}

.cta-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: #05070c;
}

.contact {
  align-items: start;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-direct {
  margin: 14px 0 0;
  color: rgba(244, 251, 255, 0.72);
  font-weight: 700;
}

.contact-direct .text-link {
  margin-top: 0;
  color: var(--lime);
}

.footer-email {
  color: rgba(244, 251, 255, 0.78);
  font-weight: 800;
}

.footer-email:hover {
  color: var(--lime);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(6, 8, 24, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.4;
  outline: 0;
}

.lead-form input,
.lead-form textarea {
  font-family: Inter, Arial, sans-serif;
}

.lead-form input {
  min-height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
  padding: 14px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(182, 255, 0, 0.72);
}

.form-button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.88rem;
}

.form-trust {
  margin: 0;
  color: rgba(244, 251, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-note.is-success {
  color: var(--lime);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 7vw;
  border-top: 1px solid var(--line);
  background: #03050a;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .section-grid,
  .section-lead,
  .risk-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  /* Keep hero metrics compact on tablets/phones */
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-layer {
    padding: 10px 7vw 0;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .methods-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-pad: 16px;
    --mobile-gap: 14px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 12px var(--mobile-pad);
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-name {
    height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.menu-active .nav {
    position: fixed;
    top: 70px;
    right: var(--mobile-pad);
    left: var(--mobile-pad);
    display: grid;
    gap: 0;
    justify-self: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #080906;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 90px);
    overflow: auto;
  }

  .site-header.menu-active .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-active .nav a:last-child {
    border-bottom: 0;
  }

  .section,
  .hero {
    padding: 44px var(--mobile-pad);
  }

  .section-grid {
    gap: 22px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    margin-bottom: 14px;
    line-height: 1.04;
  }

  h2 {
    margin-bottom: 12px;
    line-height: 1.12;
  }

  p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-proofline {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

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

  .trust-badges span {
    justify-content: center;
    text-align: center;
    padding: 9px 10px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics div {
    padding: 10px 12px;
  }

  .hero-proofline {
    font-size: 0.94rem;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .hero-proof {
    display: grid;
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 12px;
  }

  .orbit-badge {
    right: 14px;
    bottom: 14px;
    min-width: 164px;
    padding: 12px;
  }

  .orbit-stats {
    left: 14px;
    top: 14px;
    flex-wrap: wrap;
    max-width: calc(100% - 28px);
  }

  .service-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .service-grid.legacy-cards {
    border: 0;
  }

  .service-grid.legacy-cards .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
    min-height: auto;
  }

  .service-card,
  .metrics-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child,
  .metrics-grid div:last-child {
    border-bottom: 0;
  }

  .signal-stack div,
  .cta-strip,
  .site-footer {
    display: grid;
  }

  .trust-shell {
    padding: 18px;
  }

  .trust-kicker {
    font-size: 0.9rem;
  }

  .trust-stats div {
    padding: 12px;
    border-radius: 12px;
  }

  .cta-strip {
    padding: 48px var(--mobile-pad);
  }

  .lead-form {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 26px var(--mobile-pad);
    gap: 14px;
  }

  .methods-shell {
    padding: 20px;
  }

  .methods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-pill {
    min-height: 44px;
    font-size: 0.84rem;
  }
}

@media (max-width: 430px) {
  :root {
    --mobile-pad: 14px;
  }

  /* Responsive fixes (mobile 320–480): logo sizing */
  .brand-logo {
    height: 34px;
  }

  .brand-name {
    height: 30px;
    padding: 0 9px;
    font-size: 0.76rem;
  }

  /* On very small screens, show the hero visual first */
  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  /* Responsive fixes (mobile 320–480): hero banner sizing + spacing */
  .hero.section-grid {
    gap: 14px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-visual.hero-3d {
    width: 100%;
    margin: 0;
    border-radius: 14px;
  }

  .hero-visual {
    margin-bottom: 6px;
  }

  .service-card,
  .metrics-grid div {
    padding: 18px;
  }

  .hero-metrics div {
    padding: 12px;
  }

  .trust-badges span,
  .hero-proof span,
  .contact-points span {
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  /* Make hero compact: horizontal badge & pill rows */
  .trust-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .trust-badges span {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .hero-proof {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-proof span {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  /* Metrics should not stack tall on small screens */
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-metrics div {
    padding: 10px;
  }

  .hero-metrics strong {
    font-size: 1.05rem;
  }

  .hero-visual {
    min-height: clamp(180px, 46vw, 240px);
  }

  /* Reduce hero height on small screens */
  .hero-proofline.strong {
    display: none;
  }

  .micro-disclaimer {
    display: none;
  }

  /* Banner overlays: keep readable and not oversized */
  .orbit-badge {
    min-width: 148px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: none;
    backdrop-filter: blur(10px);
  }

  .orbit-badge strong {
    font-size: 1.15rem;
  }

  .orbit-stats {
    padding: 8px;
    border-radius: 10px;
    box-shadow: none;
    backdrop-filter: blur(10px);
  }

  /* Performance: reduce heavy effects on small screens */
  .hero-fallback {
    filter: saturate(1.15);
  }
}

@media (max-width: 360px) {
  .brand-logo {
    height: 30px;
  }

  .brand-name {
    height: 28px;
    font-size: 0.72rem;
  }
}
