:root {
  --night: #02050d;
  --deep: #071225;
  --panel: #08172d;
  --panel-strong: #0b1f3e;
  --ink: #f3f8ff;
  --muted: #a9b8ca;
  --paper: #f4f8fd;
  --white: #ffffff;
  --blue: #267dff;
  --blue-strong: #0b5cff;
  --cyan: #22e7ff;
  --violet: #7567ff;
  --line: rgba(129, 190, 255, 0.22);
  --line-dark: rgba(8, 24, 48, 0.14);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.hero {
  background:
    radial-gradient(circle at 86% 26%, rgba(38, 125, 255, 0.42), transparent 33%),
    radial-gradient(circle at 24% 100%, rgba(34, 231, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #061b3f 0%, #040817 46%, #02040b 100%);
  isolation: isolate;
  min-height: 92svh;
  overflow: hidden;
  padding: 22px clamp(18px, 4vw, 72px) 54px;
  perspective: 1300px;
  position: relative;
  --eye-x: 0px;
  --eye-y: 0px;
  --lens-r: 0deg;
  --lens-x: 0px;
  --lens-y: 0px;
  --scene-rx: 0deg;
  --scene-ry: 0deg;
  --scene-x: 0px;
  --scene-y: 0px;
}

.hero-robot,
.hero-lens-motion,
.hero-scan-line,
.robot-face-motion,
.hero-shade,
.hero-grid,
.hero-wave {
  position: absolute;
}

.hero-robot {
  filter: saturate(0.95) blur(0.4px);
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) rotateX(var(--scene-rx)) rotateY(var(--scene-ry)) scale(1.025);
  transform-origin: 78% 28%;
  transition: transform 90ms linear;
  will-change: transform;
  width: 100%;
  z-index: -4;
}

.hero-robot img {
  animation: robotIdle 8s ease-in-out infinite;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  width: 100%;
}

.robot-face-motion,
.hero-lens-motion {
  display: none;
}

.bot-actor {
  aspect-ratio: 1494 / 1600;
  pointer-events: none;
  position: absolute;
  right: clamp(-52px, 3.8vw, 74px);
  top: clamp(62px, 8vh, 100px);
  transform:
    translate3d(calc(var(--scene-x) * 0.85), calc(var(--scene-y) * 0.7), 0)
    rotateX(calc(var(--scene-rx) * 1.4))
    rotateY(calc(var(--scene-ry) * 1.6));
  transform-origin: 56% 46%;
  width: clamp(430px, 40vw, 720px);
  will-change: transform;
  z-index: 1;
}

.bot-flight {
  animation: botFlight 4.8s ease-in-out infinite;
  height: 100%;
  position: relative;
  transform-origin: 56% 46%;
  width: 100%;
  will-change: transform;
}

.bot-flight img {
  display: block;
  filter:
    drop-shadow(0 34px 64px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 36px rgba(34, 231, 255, 0.28));
  height: 100%;
  object-fit: contain;
  width: 100%;
}

@keyframes botFlight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }
  25% {
    transform: translate3d(-34px, -26px, 0) rotate(3.5deg) scale(1.025);
  }
  52% {
    transform: translate3d(18px, -42px, 0) rotate(-3deg) scale(1.015);
  }
  78% {
    transform: translate3d(30px, -10px, 0) rotate(2deg) scale(1.01);
  }
}

.bot-eye {
  animation: botBlink 5.2s ease-in-out infinite;
  border-radius: 999px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(34, 231, 255, 0.95));
  height: 7.1%;
  position: absolute;
  top: 30.6%;
  width: 4.55%;
  z-index: 2;
}

.bot-eye-left {
  left: 36.9%;
}

.bot-eye-right {
  left: 54.6%;
}

.bot-eye i {
  background: radial-gradient(ellipse at 50% 45%, #ffffff 0 14%, #c6fbff 44%, rgba(34, 231, 255, 0.72) 70%, transparent 76%);
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(34, 231, 255, 0.72);
  display: block;
  height: 100%;
  transform: translate3d(calc(var(--eye-x) * 0.9), calc(var(--eye-y) * 0.8), 0);
  transition: transform 80ms linear;
  width: 100%;
}

@keyframes botBlink {
  0%,
  45%,
  50%,
  100% {
    transform: scaleY(1);
  }
  47% {
    transform: scaleY(0.12);
  }
}

.bot-mouth {
  animation: botSmile 6.8s ease-in-out infinite;
  border-bottom: 5px solid rgba(168, 248, 255, 0.95);
  border-radius: 0 0 30px 30px;
  filter: drop-shadow(0 0 8px rgba(34, 231, 255, 0.9));
  height: 3.2%;
  left: 44.2%;
  position: absolute;
  top: 38.5%;
  transform: translate3d(calc(var(--eye-x) * 0.5), calc(var(--eye-y) * 0.35), 0);
  width: 9.2%;
  z-index: 2;
}

@keyframes botSmile {
  0%,
  100% {
    width: 9.2%;
  }
  52% {
    width: 11.6%;
  }
}

.bot-lens-glow {
  animation: lensPulse 2.8s ease-in-out infinite;
  border: 2px solid rgba(176, 239, 255, 0.78);
  border-radius: 50%;
  box-shadow:
    inset 0 0 22px rgba(34, 231, 255, 0.32),
    0 0 28px rgba(34, 231, 255, 0.5),
    0 0 62px rgba(38, 125, 255, 0.28);
  height: 22%;
  left: 0.9%;
  position: absolute;
  top: 37.9%;
  transform: translate3d(calc(var(--lens-x) * 0.35), calc(var(--lens-y) * 0.28), 0) rotate(var(--lens-r));
  width: 23.6%;
  z-index: 2;
}

.bot-lens-glow::after {
  animation: lensRay 3.2s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(34, 231, 255, 0.34), transparent);
  content: "";
  height: 2px;
  left: 72%;
  position: absolute;
  top: 42%;
  transform: rotate(-12deg);
  transform-origin: left center;
  width: 190px;
}

@keyframes lensPulse {
  0%,
  100% {
    transform: translate3d(calc(var(--lens-x) * 0.35), calc(var(--lens-y) * 0.28), 0) rotate(var(--lens-r)) scale(1);
  }
  50% {
    transform: translate3d(calc(var(--lens-x) * 0.35), calc(var(--lens-y) * 0.28), 0) rotate(var(--lens-r)) scale(1.06);
  }
}

@keyframes lensRay {
  0%,
  100% {
    opacity: 0.12;
    width: 120px;
  }
  50% {
    opacity: 0.72;
    width: 220px;
  }
}

.bot-thruster {
  bottom: -7%;
  display: flex;
  filter: blur(0.2px) drop-shadow(0 0 20px rgba(34, 231, 255, 0.7));
  gap: 7px;
  justify-content: center;
  left: 43.6%;
  position: absolute;
  width: 17%;
  z-index: -1;
}

.bot-thruster i {
  animation: thrustFire 0.74s ease-in-out infinite;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(34, 231, 255, 0.86), rgba(38, 125, 255, 0));
  border-radius: 999px 999px 52% 52%;
  display: block;
  height: 74px;
  opacity: 0.78;
  width: 18px;
}

.bot-thruster i:nth-child(2) {
  animation-delay: -0.18s;
  height: 96px;
}

.bot-thruster i:nth-child(3) {
  animation-delay: -0.34s;
}

@keyframes thrustFire {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.86, 0.82);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.08, 1.18);
  }
}

.bot-pointer {
  animation: targetPing 2.8s ease-in-out infinite;
  border: 1px solid rgba(34, 231, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(34, 231, 255, 0.25);
  display: block;
  height: 56px;
  position: absolute;
  width: 88px;
  z-index: 2;
}

.bot-pointer::before,
.bot-pointer::after {
  background: rgba(34, 231, 255, 0.8);
  content: "";
  position: absolute;
}

.bot-pointer::before {
  height: 1px;
  left: 12px;
  right: 12px;
  top: 50%;
}

.bot-pointer::after {
  bottom: 10px;
  left: 50%;
  top: 10px;
  width: 1px;
}

.bot-pointer-a {
  right: 8%;
  top: 20%;
}

.bot-pointer-b {
  animation-delay: -1.2s;
  bottom: 22%;
  left: 8%;
}

@keyframes targetPing {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }
  46%,
  62% {
    opacity: 0.68;
    transform: scale(1);
  }
}

@keyframes robotIdle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.012);
  }
}

.robot-face-motion {
  height: 94px;
  left: 70.2%;
  pointer-events: none;
  top: 10.4%;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) rotateX(var(--scene-rx)) rotateY(var(--scene-ry));
  transform-origin: center;
  width: 232px;
  z-index: -1;
}

.robot-eye {
  animation: eyeGlow 3.4s ease-in-out infinite;
  border-radius: 999px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(34, 231, 255, 0.9));
  height: 54px;
  opacity: 0.82;
  position: absolute;
  top: 16px;
  width: 42px;
}

.robot-eye-left {
  left: 40px;
}

.robot-eye-right {
  right: 44px;
}

.robot-eye i {
  background: radial-gradient(circle, #ffffff 0 18%, #baf8ff 42%, rgba(34, 231, 255, 0.58) 72%, transparent 74%);
  border-radius: inherit;
  display: block;
  height: 100%;
  transform: translate3d(var(--eye-x), var(--eye-y), 0);
  transition: transform 80ms linear;
  width: 100%;
}

.robot-smile {
  border-bottom: 5px solid rgba(146, 246, 255, 0.92);
  border-radius: 0 0 32px 32px;
  filter: drop-shadow(0 0 8px rgba(34, 231, 255, 0.78));
  height: 25px;
  left: 94px;
  position: absolute;
  top: 57px;
  transform: translate3d(calc(var(--eye-x) * 0.5), calc(var(--eye-y) * 0.35), 0);
  transition: transform 80ms linear;
  width: 44px;
}

@keyframes eyeGlow {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 0.95;
  }
}

.hero-lens-motion {
  animation: lensFloat 4.6s ease-in-out infinite;
  aspect-ratio: 1;
  border: 3px solid rgba(137, 225, 255, 0.88);
  border-radius: 50%;
  box-shadow:
    inset 0 0 24px rgba(34, 231, 255, 0.28),
    0 0 24px rgba(38, 125, 255, 0.48),
    0 0 70px rgba(34, 231, 255, 0.22);
  left: 49.5%;
  pointer-events: none;
  top: 22.5%;
  transform: translate3d(var(--lens-x), var(--lens-y), 0) rotate(var(--lens-r));
  transform-origin: 62% 72%;
  transition: transform 120ms linear;
  width: clamp(76px, 8.2vw, 128px);
  z-index: -1;
}

.hero-lens-motion::after {
  background: linear-gradient(180deg, rgba(116, 190, 255, 0.55), rgba(11, 92, 255, 0.28));
  border-radius: 999px;
  bottom: -54%;
  content: "";
  height: 58%;
  left: 58%;
  position: absolute;
  transform: rotate(34deg);
  width: 12%;
}

.hero-lens-motion span {
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.82), transparent 12%),
    radial-gradient(circle at 66% 74%, rgba(34, 231, 255, 0.58), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(38, 125, 255, 0.2), rgba(4, 18, 43, 0.42));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 100%;
}

@keyframes lensFloat {
  0%,
  100% {
    transform: translate3d(var(--lens-x), var(--lens-y), 0) rotate(var(--lens-r));
  }
  50% {
    transform: translate3d(var(--lens-x), calc(var(--lens-y) - 12px), 0) rotate(var(--lens-r));
  }
}

.hero-scan-line {
  animation: scanSweep 5.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(34, 231, 255, 0.34), transparent);
  height: 1px;
  inset: 18% -20% auto;
  opacity: 0.64;
  transform: rotate(-10deg);
  z-index: -1;
}

@keyframes scanSweep {
  0% {
    opacity: 0;
    transform: translate3d(-18%, 0, 0) rotate(-10deg);
  }
  45%,
  55% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate3d(18%, 28svh, 0) rotate(-10deg);
  }
}

.hero-shade {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 13, 0.96) 0%, rgba(3, 8, 20, 0.86) 43%, rgba(3, 8, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 5, 13, 0.04) 0%, rgba(2, 5, 13, 0.74) 100%);
  z-index: -3;
}

.hero-grid {
  inset: 0;
  background:
    linear-gradient(rgba(34, 231, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 231, 255, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.12;
  transform: perspective(900px) rotateX(62deg) translateY(36%);
  transform-origin: center bottom;
  z-index: -2;
}

.hero-wave {
  animation: waveDrift 9s ease-in-out infinite;
  background:
    radial-gradient(ellipse at 72% 100%, rgba(34, 231, 255, 0.22), transparent 42%),
    linear-gradient(90deg, transparent, rgba(38, 125, 255, 0.22), transparent);
  bottom: -12%;
  filter: blur(2px);
  height: 36%;
  inset: auto -10% -12%;
  z-index: -1;
}

@keyframes waveDrift {
  0%,
  100% {
    transform: translate3d(-2%, 0, 0);
  }
  50% {
    transform: translate3d(2%, -4%, 0);
  }
}

.topbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 58px;
  position: relative;
  z-index: 3;
}

.brand img {
  display: block;
  height: clamp(36px, 4vw, 46px);
  width: auto;
}

.nav {
  align-items: center;
  background: rgba(2, 5, 13, 0.42);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 4px;
  padding: 5px;
}

.nav a,
.header-action {
  border-radius: 6px;
  color: #dbe9ff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 13px;
}

.nav a:hover,
.header-action:hover {
  background: rgba(38, 125, 255, 0.14);
}

.header-action {
  background: rgba(2, 5, 13, 0.42);
  border: 1px solid rgba(34, 231, 255, 0.38);
  color: #dcfbff;
}

.hero-content {
  align-items: center;
  display: flex;
  margin: clamp(34px, 8vh, 92px) auto 0;
  max-width: 1440px;
  min-height: calc(92svh - 170px);
  position: relative;
  z-index: 2;
}

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

.eyebrow,
.panel-kicker {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(3.4rem, 10.6vw, 9rem);
  line-height: 0.86;
  margin: 12px 0 22px;
  max-width: 820px;
  text-shadow: 0 0 34px rgba(38, 125, 255, 0.34), 0 0 78px rgba(34, 231, 255, 0.2);
}

.hero h1 span {
  display: inline;
}

.lead {
  color: #d9e7fb;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  max-width: 630px;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.primary-button {
  background: var(--white);
  border: 0;
  color: #06101e;
  box-shadow: 0 18px 42px rgba(96, 178, 255, 0.15);
}

.secondary-button {
  background: rgba(2, 5, 13, 0.62);
  border: 1px solid rgba(180, 216, 255, 0.28);
  color: #ecf8ff;
}

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

.trust-strip {
  margin-top: 26px;
}

.trust-strip span {
  background: rgba(2, 8, 20, 0.68);
  border: 1px solid rgba(34, 231, 255, 0.24);
  border-radius: 999px;
  color: #e9f4ff;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 9px 12px;
}

.scroll-cue {
  align-items: center;
  border: 1px solid rgba(180, 216, 255, 0.26);
  border-radius: 999px;
  bottom: 18px;
  display: flex;
  height: 38px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 38px;
  z-index: 4;
}

.scroll-cue span {
  animation: cue 1.5s ease-in-out infinite;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  display: block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }
  50% {
    transform: translateY(4px) rotate(45deg);
  }
}

.section {
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.signup-section {
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(38, 125, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #020814, #061227 56%, #041023);
  border-top: 1px solid rgba(34, 231, 255, 0.16);
  color: var(--ink);
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.72fr);
}

.signup-copy h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 0.94;
  margin: 8px 0 18px;
  max-width: 760px;
}

.signup-copy p:not(.eyebrow) {
  color: #c9d8ed;
  font-size: 1.08rem;
  max-width: 700px;
}

.signup-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signup-points span {
  background: rgba(38, 125, 255, 0.12);
  border: 1px solid rgba(34, 231, 255, 0.24);
  border-radius: 999px;
  color: #e9f4ff;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 9px 12px;
}

.scan-panel {
  background:
    linear-gradient(180deg, rgba(8, 21, 41, 0.94), rgba(4, 10, 21, 0.98)),
    linear-gradient(135deg, rgba(38, 125, 255, 0.12), rgba(34, 231, 255, 0.08));
  border: 1px solid rgba(80, 167, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 48px rgba(38, 125, 255, 0.12);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.7vw, 28px);
}

.signup-card {
  width: 100%;
}

.form-head {
  align-items: center;
  display: flex;
  gap: 13px;
}

.form-icon {
  align-items: center;
  background: rgba(38, 125, 255, 0.16);
  border: 1px solid rgba(34, 231, 255, 0.38);
  border-radius: 8px;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  min-width: 46px;
}

.form-icon img {
  display: block;
  height: 36px;
  width: 36px;
}

.form-head h2 {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 0;
}

label {
  color: #e6f5ff;
  display: grid;
  font-size: 0.88rem;
  font-weight: 850;
  gap: 7px;
}

input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(180, 216, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  min-height: 46px;
  outline: none;
  padding: 0 12px;
  width: 100%;
}

input::placeholder {
  color: #7f93ab;
}

input:focus {
  border-color: rgba(34, 231, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(38, 125, 255, 0.16);
}

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

.field-help {
  color: #8fa5bd;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.hp-field {
  height: 0;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.scan-button {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 26px;
  max-width: 840px;
}

.section-head h2,
.report-copy h2 {
  font-size: clamp(2rem, 4.8vw, 5rem);
  line-height: 0.95;
  margin: 8px 0 14px;
}

.section-head p:not(.eyebrow),
.report-copy p {
  color: #c2d1db;
  font-size: 1.05rem;
  max-width: 760px;
}

.signal-section {
  background: linear-gradient(180deg, #061125, #08142d);
  border-top: 1px solid rgba(180, 216, 255, 0.1);
}

.metrics-grid,
.signals-grid,
.plans-grid {
  display: grid;
  gap: 16px;
}

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

.metrics-grid article,
.signals-grid article,
.plans-grid article,
.report-panel {
  border-radius: 8px;
}

.metrics-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(180, 216, 255, 0.16);
  min-height: 230px;
  padding: 20px;
}

.metrics-grid span,
.plans-grid span,
.report-panel span {
  color: var(--cyan);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.metrics-grid strong,
.signals-grid strong,
.plans-grid strong {
  color: var(--white);
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.metrics-grid p,
.signals-grid p,
.plans-grid p {
  color: #c3d0da;
  margin-bottom: 0;
}

.meter {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  height: 8px;
  margin: 18px 0;
  overflow: hidden;
}

.meter::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  width: var(--value);
}

.report-section {
  align-items: center;
  background: var(--paper);
  color: var(--deep);
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.report-section .eyebrow,
.light-section .eyebrow,
.plan-section .eyebrow {
  color: var(--blue-strong);
}

.report-copy p,
.light-section .section-head p,
.plan-section .section-head p {
  color: #526371;
}

.light-button {
  background: #eaf4ff;
  border: 1px solid #cfe1ff;
  color: #123047;
}

.report-stage {
  min-height: 430px;
  position: relative;
}

.report-panel {
  box-shadow: 0 26px 70px rgba(8, 24, 48, 0.16);
  padding: clamp(20px, 3vw, 30px);
  position: absolute;
}

.main-panel {
  background: var(--white);
  border: 1px solid var(--line-dark);
  left: 0;
  top: 22px;
  width: min(74%, 520px);
}

.main-panel strong {
  color: var(--deep);
  display: block;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.85;
}

.main-panel p {
  color: #526371;
  font-weight: 850;
  margin: 10px 0 24px;
}

.score-bars {
  display: grid;
  gap: 12px;
}

.score-bars i {
  background: #e6edf3;
  border-radius: 999px;
  display: block;
  height: 12px;
  overflow: hidden;
}

.score-bars i::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  width: var(--bar);
}

.side-panel {
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  right: 0;
  top: 128px;
  width: min(45%, 330px);
}

.side-panel ul {
  color: #d9e7ee;
  font-weight: 780;
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-panel li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 12px;
  padding-top: 12px;
}

.light-section {
  background: var(--white);
  color: var(--deep);
}

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

.signals-grid article {
  background: #f5f8fb;
  border: 1px solid var(--line-dark);
  min-height: 190px;
  padding: 22px;
}

.signals-grid strong {
  color: var(--deep);
}

.signals-grid p {
  color: #526371;
}

.plan-section {
  background: linear-gradient(180deg, #f5f8fb, #e9eff5);
  color: var(--deep);
}

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

.plans-grid article {
  background: var(--white);
  border: 1px solid var(--line-dark);
  display: grid;
  gap: 12px;
  padding: 24px;
}

.plans-grid strong {
  color: var(--deep);
}

.plans-grid p {
  color: #526371;
  min-height: 72px;
}

.plans-grid .secondary-button {
  background: #eef6ff;
  border-color: #cfe1f2;
  color: #123047;
}

.plans-grid .primary-button {
  background: var(--deep);
  color: var(--white);
  box-shadow: none;
}

.featured-plan {
  box-shadow: 0 22px 64px rgba(38, 125, 255, 0.16);
  outline: 2px solid rgba(34, 231, 255, 0.28);
}

.footer {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line-dark);
  color: #526371;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 76px);
}

.footer img {
  display: block;
  height: 42px;
  width: auto;
}

.footer p {
  margin-bottom: 0;
  max-width: 760px;
}

.footer a {
  color: var(--blue-strong);
  font-weight: 850;
}

.notice-modal {
  align-items: center;
  background: rgba(2, 5, 13, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 20;
}

.notice-modal[hidden] {
  display: none;
}

.notice-card {
  background: var(--white);
  border-radius: 8px;
  color: var(--deep);
  max-width: 520px;
  padding: 28px;
  position: relative;
  width: min(100%, 520px);
}

.notice-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  margin: 8px 0 12px;
}

.notice-card p:not(.eyebrow) {
  color: #526371;
}

.notice-close {
  align-items: center;
  background: #eef6ff;
  border: 0;
  border-radius: 999px;
  color: var(--deep);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
}

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

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

  .report-stage {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 92svh;
    padding-bottom: 58px;
  }

  .hero-robot {
    filter: saturate(0.9) blur(0.4px);
    opacity: 0.34;
    transform: translate3d(calc(var(--scene-x) * 0.45), calc(var(--scene-y) * 0.45), 0) scale(1.02);
  }

  .hero-robot img {
    height: 100%;
    object-position: 63% center;
    width: 100%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 5, 13, 0.96) 0%, rgba(2, 5, 13, 0.86) 58%, rgba(2, 5, 13, 0.42) 100%),
      linear-gradient(180deg, rgba(2, 5, 13, 0.2) 0%, rgba(2, 5, 13, 0.88) 100%);
  }

  .bot-actor {
    opacity: 0.62;
    right: -122px;
    top: 72px;
    transform:
      translate3d(calc(var(--scene-x) * 0.34), calc(var(--scene-y) * 0.3), 0)
      rotateX(0)
      rotateY(0);
    width: 236px;
  }

  .bot-flight {
    animation-duration: 4.2s;
  }

  .bot-pointer,
  .bot-lens-glow::after {
    display: none;
  }

  .bot-thruster {
    bottom: -3%;
  }

  .bot-thruster i {
    height: 44px;
    width: 11px;
  }

  .topbar {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.8rem);
    margin-bottom: 16px;
  }

  .hero h1 span {
    display: block;
  }

  .hero-content {
    margin-top: 24px;
    min-height: calc(92svh - 154px);
  }

  .hero-actions {
    margin-top: 18px;
  }

  .trust-strip {
    gap: 8px;
  }

  .field-grid,
  .signup-section,
  .metrics-grid,
  .signals-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .scan-panel {
    gap: 12px;
    padding: 16px;
  }

  .report-stage {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .report-panel {
    position: static;
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
