:root {
  --bg-1: #04111d;
  --bg-2: #071a2a;
  --panel: rgba(11, 35, 53, 0.76);
  --panel-strong: rgba(10, 32, 49, 0.9);
  --line: rgba(133, 218, 247, 0.23);
  --text: #eff9ff;
  --muted: #b7d3e3;
  --brand: #4ce3ff;
  --accent: #63ffb6;
  --warning: #ff7a93;
  --ink: #041526;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(86, 228, 255, 0.17), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(92, 255, 181, 0.13), transparent 22%),
    linear-gradient(156deg, var(--bg-1) 0%, var(--bg-2) 45%, #092235 100%);
  background-position: 0 0, 0 0, 0 0;
  animation: pageAtmosphere 24s ease-in-out infinite;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #e8fff5;
  color: #04263f;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 10px;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(99, 255, 182, 0.95);
  outline-offset: 3px;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(128, 214, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 214, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: -35% -25% -25%;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(91, 227, 255, 0.18), transparent 46%),
    radial-gradient(circle at 78% 64%, rgba(99, 255, 182, 0.14), transparent 44%);
  filter: blur(22px);
  opacity: 0.65;
  animation: ambientShift 32s ease-in-out infinite;
}

.aurora {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.44;
  pointer-events: none;
  z-index: -2;
}

.aurora-left {
  top: -170px;
  left: -110px;
  background: radial-gradient(circle at 28% 32%, rgba(84, 235, 255, 0.86), transparent 68%);
  animation: auroraDrift 18s ease-in-out infinite;
}

.aurora-right {
  right: -190px;
  bottom: -240px;
  background: radial-gradient(circle at 60% 40%, rgba(102, 255, 188, 0.72), transparent 72%);
  animation: auroraDrift 22s ease-in-out infinite reverse;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(137, 215, 243, 0.14);
  backdrop-filter: blur(10px);
  background: rgba(3, 16, 27, 0.7);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.topbar.scrolled {
  background: rgba(3, 16, 27, 0.9);
  border-bottom-color: rgba(149, 222, 248, 0.25);
  box-shadow: var(--shadow-soft);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(153, 228, 255, 0.3);
  background: linear-gradient(145deg, rgba(14, 50, 74, 0.84), rgba(8, 24, 39, 0.96));
  box-shadow: inset 0 0 0 1px rgba(187, 239, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(187, 239, 255, 0.14), 0 14px 28px rgba(8, 44, 63, 0.45);
}

.brand-svg {
  width: 30px;
  height: 30px;
}

.shield {
  fill: url(#brandShieldGradient);
  stroke: rgba(232, 249, 255, 0.72);
  stroke-width: 1.1;
}

.eye {
  fill: none;
  stroke: #f4fcff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pupil,
.sweep {
  transform-origin: center;
  transform-box: fill-box;
}

.pupil {
  fill: #62ffc4;
  filter: drop-shadow(0 0 8px rgba(98, 255, 196, 0.6));
  animation: pupilPulse 2.1s ease-in-out infinite;
}

.sweep {
  fill: none;
  stroke: #56dfff;
  stroke-width: 2;
  stroke-linecap: round;
  animation: sweepArc 2.1s ease-in-out infinite;
}

.brand-name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  line-height: 1;
}

.nav-links {
  display: inline-flex;
  gap: 24px;
}

.nav-links a,
.footer a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--accent), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  background: linear-gradient(95deg, var(--accent), var(--brand));
  box-shadow: 0 12px 22px rgba(45, 208, 237, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(45, 208, 237, 0.4);
}

.section {
  padding: 92px 0;
}

.hero {
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 3.25vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.hero-text {
  margin: 18px 0 26px;
  color: var(--muted);
  line-height: 1.66;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  max-width: 64ch;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -130%;
  bottom: -130%;
  left: -120%;
  width: 40%;
  pointer-events: none;
  transform: rotate(16deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: left 650ms ease, opacity 220ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  left: 135%;
  opacity: 0.95;
}

.btn:disabled {
  opacity: 0.84;
  cursor: not-allowed;
  transform: none;
}

.btn:disabled::after {
  display: none;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(95deg, var(--accent), var(--brand));
  box-shadow: 0 12px 24px rgba(43, 213, 243, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(43, 213, 243, 0.4);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(132, 212, 239, 0.32);
  background: rgba(10, 35, 54, 0.58);
}

.btn-ghost:hover {
  border-color: rgba(164, 228, 251, 0.46);
  background: rgba(15, 47, 71, 0.85);
}

.btn.full {
  width: 100%;
}

.hero-points {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  border-radius: 12px;
  border: 1px solid rgba(149, 222, 248, 0.24);
  padding: 11px 13px;
  background: rgba(9, 31, 48, 0.48);
  color: #dbf2ff;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 455px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(145, 221, 247, 0.24);
  overflow: hidden;
  background:
    linear-gradient(156deg, rgba(11, 41, 63, 0.85), rgba(6, 20, 33, 0.95)),
    radial-gradient(circle at 30% 24%, rgba(52, 222, 255, 0.18), transparent 48%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  animation: heroPanelBreathe 8.4s ease-in-out infinite;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.64;
  z-index: 1;
  background-image:
    linear-gradient(rgba(123, 213, 243, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 213, 243, 0.14) 1px, transparent 1px),
    linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.09) 48%, transparent 70%);
  background-size: 44px 44px, 44px 44px, 180% 180%;
  animation: scanningGrid 7s linear infinite;
}

.hero-radar-sweep {
  position: absolute;
  inset: -34%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background: conic-gradient(
    from 0deg,
    rgba(100, 255, 193, 0.26) 0deg,
    rgba(100, 255, 193, 0.14) 26deg,
    rgba(100, 255, 193, 0) 48deg,
    transparent 360deg
  );
  mix-blend-mode: screen;
  animation: radarSweep 6.8s linear infinite;
}

.status-pill {
  position: absolute;
  left: 20px;
  z-index: 5;
  border-radius: 999px;
  border: 1px solid rgba(164, 231, 252, 0.34);
  background: rgba(8, 33, 50, 0.82);
  color: #dcf3ff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 12px;
}

.live-status {
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.leak-status {
  top: 64px;
  width: fit-content;
  max-width: calc(100% - 40px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 200ms ease;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #63ffb8;
  box-shadow: 0 0 0 0 rgba(99, 255, 184, 0.72);
  animation: livePulse 1.9s ease-out infinite;
}

.hero-logo-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -48%);
  width: 210px;
  height: 240px;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 160px;
  height: 184px;
  filter: drop-shadow(0 20px 30px rgba(30, 201, 232, 0.32));
  animation: logoHover 4.6s ease-in-out infinite;
}

.scan-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(97, 255, 187, 0.44);
  animation: ringPulse 2.8s ease-out infinite;
}

.ring-one {
  width: 180px;
  aspect-ratio: 1;
}

.ring-two {
  width: 245px;
  aspect-ratio: 1;
  border-color: rgba(82, 226, 255, 0.36);
  animation-delay: 0.8s;
}

.ring-three {
  width: 320px;
  aspect-ratio: 1;
  border-color: rgba(121, 255, 204, 0.28);
  animation-delay: 1.55s;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0.7;
  fill: none;
  stroke: rgba(126, 214, 247, 0.5);
  stroke-width: 1.3;
  transform-origin: center;
  animation: orbitSpin 28s linear infinite;
}

.hero-orbit .orbit-node {
  fill: #68ffd1;
  stroke: none;
  transform-origin: center;
  transform-box: fill-box;
  filter: drop-shadow(0 0 8px rgba(104, 255, 209, 0.65));
  animation: nodePulse 2.4s ease-in-out infinite;
}

.hero-orbit .orbit-node-b {
  animation-delay: 0.45s;
}

.hero-orbit .orbit-node-c {
  animation-delay: 0.9s;
}

.hero-orbit .orbit-node-d {
  animation-delay: 1.35s;
}

.signal-card {
  position: absolute;
  z-index: 5;
  width: 218px;
  max-width: calc(100% - 34px);
  padding: 15px;
  border-radius: 14px;
  border: 1px solid rgba(160, 229, 249, 0.27);
  background: rgba(7, 28, 44, 0.84);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.signal-card p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #92d5ef;
}

.signal-card h3 {
  margin: 8px 0 8px;
  font-size: 1rem;
}

.signal-card span {
  font-size: 0.84rem;
  color: #b8d8e9;
}

.card-a {
  top: 108px;
  left: 18px;
  animation: drift 5.2s ease-in-out infinite;
}

.card-b {
  right: 18px;
  bottom: 22px;
  animation: drift 5.6s ease-in-out infinite reverse;
}

.signal-strip {
  border-block: 1px solid rgba(131, 214, 244, 0.18);
  background: rgba(4, 20, 32, 0.78);
  overflow: hidden;
}

.impact-strip {
  padding: 56px 0 8px;
}

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

.impact-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(132, 214, 245, 0.24);
  background: linear-gradient(180deg, rgba(11, 38, 57, 0.82), rgba(8, 27, 41, 0.92));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.impact-card p {
  margin: 0 0 8px;
  color: #74fbd0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.impact-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.impact-card span {
  color: #b7d6e6;
  line-height: 1.58;
  font-size: 0.95rem;
}

.proof-section {
  padding-top: 34px;
}

.proof-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.proof-metric-card {
  border-radius: 14px;
  border: 1px solid rgba(144, 218, 245, 0.25);
  background: linear-gradient(180deg, rgba(10, 35, 53, 0.82), rgba(8, 26, 41, 0.9));
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.proof-metric-card p {
  margin: 0;
  color: #9cc6d9;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.proof-metric-card h3 {
  margin: 8px 0 8px;
  font-size: 1.45rem;
}

.proof-metric-card span {
  color: #b6d4e5;
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.proof-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(139, 216, 244, 0.25);
  background: linear-gradient(180deg, rgba(10, 35, 52, 0.84), rgba(8, 27, 42, 0.94));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  padding: 20px;
  overflow: hidden;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -84px;
  height: 150px;
  background: radial-gradient(ellipse at center, rgba(83, 233, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease;
}

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

.proof-sector {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(122, 235, 255, 0.36);
  background: rgba(9, 43, 64, 0.66);
  color: #84e8ff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 4px 10px;
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.proof-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.proof-card li {
  position: relative;
  padding-left: 18px;
  color: #b9d7e7;
  line-height: 1.52;
  font-size: 0.92rem;
}

.proof-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #63ffbc;
  box-shadow: 0 0 10px rgba(99, 255, 188, 0.48);
}

.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 13px 0;
  animation: ticker 22s linear infinite;
}

.signal-track span {
  position: relative;
  padding-left: 14px;
  color: #9bd8ee;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.signal-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #62ffc4;
  box-shadow: 0 0 12px rgba(98, 255, 196, 0.5);
}

.section-head {
  max-width: 770px;
  margin: 0 auto 36px;
  text-align: center;
}

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

.feature-card,
.step-card,
.price-card,
.scan-form {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.impact-card,
.feature-card,
.step-card,
.price-card,
.proof-card,
.proof-metric-card,
.trust-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.impact-card:hover,
.feature-card:hover,
.step-card:hover,
.price-card:hover,
.proof-card:hover,
.proof-metric-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 225, 250, 0.4);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.feature-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 238px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -70px;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(83, 233, 255, 0.24), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  position: relative;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(164, 230, 250, 0.28);
  background: rgba(15, 52, 76, 0.8);
}

.icon-monitor,
.icon-alert-bell,
.icon-menu-guide {
  width: 30px;
  height: 30px;
  position: relative;
}

.icon-monitor {
  display: grid;
  place-items: center;
}

.monitor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #66ffbc;
  box-shadow: 0 0 12px rgba(102, 255, 188, 0.78);
  animation: monitorBlink 1.1s ease-in-out infinite;
}

.monitor-ring {
  position: absolute;
  inset: 1px;
  border: 2px solid rgba(102, 255, 188, 0.44);
  border-radius: 50%;
  animation: monitorRing 1.9s ease-out infinite;
}

.icon-alert-bell {
  display: grid;
  place-items: center;
}

.bell-svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(71, 221, 255, 0.34));
}

.bell-motion {
  transform-box: fill-box;
  transform-origin: 50% 22%;
  animation: bellSwing 2.2s ease-in-out infinite;
}

.bell-svg-handle,
.bell-svg-rim {
  fill: none;
  stroke: #66e0ff;
  stroke-width: 2;
  stroke-linecap: round;
}

.bell-svg-shell {
  fill: rgba(72, 219, 255, 0.19);
  stroke: #4cd7ff;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.bell-svg-clapper {
  fill: #7fe9ff;
  transform-box: fill-box;
  transform-origin: center;
  animation: bellClapperSwing 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(102, 224, 255, 0.6));
}

.icon-menu-guide {
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 4px;
}

.menu-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #6dffc6;
  box-shadow: 0 0 6px rgba(109, 255, 198, 0.52);
  animation: menuBreath 2.3s ease-in-out infinite;
}

.menu-line:nth-child(2) {
  width: 22px;
  animation-delay: 0.25s;
}

.menu-line:nth-child(3) {
  width: 14px;
  animation-delay: 0.5s;
}

.feature-card h3,
.step-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.feature-card p,
.step-card p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.step-card {
  padding: 22px;
}

.step-num {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #072132;
  background: linear-gradient(100deg, #63ffb8, #49dcff);
}

.price-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6dffc7;
  box-shadow: 0 0 12px rgba(109, 255, 199, 0.48);
}

.price-card .btn {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(107, 255, 198, 0.56);
  background: linear-gradient(180deg, rgba(13, 44, 66, 0.9), rgba(8, 27, 42, 0.96));
  box-shadow: 0 20px 44px rgba(2, 27, 42, 0.56);
  transform: translateY(-8px);
}

.trust-section {
  padding-top: 34px;
  padding-bottom: 82px;
}

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

.trust-card {
  border-radius: 16px;
  border: 1px solid rgba(145, 218, 245, 0.26);
  background: linear-gradient(180deg, rgba(10, 35, 53, 0.84), rgba(8, 27, 43, 0.94));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  padding: 20px;
}

.trust-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.trust-list li {
  border-radius: 12px;
  border: 1px solid rgba(140, 214, 243, 0.2);
  background: rgba(8, 32, 49, 0.58);
  padding: 10px;
  display: grid;
  gap: 4px;
}

.trust-list strong {
  color: #e5f7ff;
  font-size: 0.94rem;
}

.trust-list span {
  color: #b4d3e5;
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.popular {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #06293d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(95deg, #78ffbe, #57dcff);
}

.cta-section {
  padding-bottom: 104px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.cta-copy {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.cta-copy h2 {
  margin-bottom: 12px;
}

.scan-form {
  padding: 22px;
  display: grid;
  gap: 9px;
  background: rgba(8, 28, 43, 0.93);
}

.scan-form label {
  margin-top: 6px;
  font-weight: 600;
}

.scan-form input {
  width: 100%;
  padding: 12px 11px;
  border-radius: 10px;
  border: 1px solid rgba(151, 223, 249, 0.34);
  color: var(--text);
  font: inherit;
  background: rgba(5, 20, 33, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.scan-form input::placeholder {
  color: rgba(190, 216, 230, 0.65);
}

.scan-form input:focus {
  outline: none;
  border-color: #5be3ff;
  box-shadow: 0 0 0 3px rgba(91, 227, 255, 0.18);
}

.form-note {
  min-height: 1.3em;
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: #a8ecff;
  transition: color 180ms ease;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.form-helper {
  margin: 2px 0 0;
  font-size: 0.84rem;
  color: #9cc6d9;
}

.form-note.pending {
  color: #8bdfff;
}

.form-note.success {
  color: #83ffc9;
}

.form-note.error {
  color: #ff9cb0;
}

.dashboard-section {
  padding-top: 26px;
  padding-bottom: 104px;
}

.dashboard-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 34, 51, 0.86), rgba(6, 24, 38, 0.94));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  padding: 22px;
}

.dashboard-controls label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.dashboard-control-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dashboard-control-row input {
  width: 100%;
  padding: 12px 11px;
  border-radius: 10px;
  border: 1px solid rgba(151, 223, 249, 0.34);
  color: var(--text);
  font: inherit;
  background: rgba(5, 20, 33, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.dashboard-control-row input::placeholder {
  color: rgba(190, 216, 230, 0.65);
}

.dashboard-control-row input:focus {
  outline: none;
  border-color: #5be3ff;
  box-shadow: 0 0 0 3px rgba(91, 227, 255, 0.18);
}

.dashboard-status {
  min-height: 1.3em;
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: #a8ecff;
  transition: color 180ms ease;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.dashboard-status.pending {
  color: #8bdfff;
}

.dashboard-status.success {
  color: #83ffc9;
}

.dashboard-status.error {
  color: #ff9cb0;
}

.dashboard-meta-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dashboard-meta {
  margin: 0;
  color: #9cc6d9;
  font-size: 0.84rem;
}

.dashboard-auto-refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-auto-refresh label {
  font-size: 0.84rem;
  color: #9cc6d9;
}

.dashboard-auto-refresh select {
  min-width: 130px;
  width: auto;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid rgba(151, 223, 249, 0.34);
  color: var(--text);
  font: inherit;
  background: rgba(5, 20, 33, 0.82);
}

.dashboard-metrics {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  border-radius: 12px;
  border: 1px solid rgba(152, 226, 250, 0.24);
  background: rgba(8, 30, 46, 0.82);
  padding: 14px;
}

.metric-card p {
  margin: 0 0 6px;
  color: #9cc6d9;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card h3 {
  font-size: 1.86rem;
}

.dashboard-results-grid {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-panel {
  border-radius: 14px;
  border: 1px solid rgba(152, 226, 250, 0.24);
  background: rgba(8, 30, 46, 0.74);
  padding: 14px;
  min-height: 280px;
}

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

.panel-head h3 {
  font-size: 1.08rem;
}

.panel-head span {
  font-size: 0.84rem;
  color: #9cc6d9;
}

.dashboard-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-height: 300px;
  overflow: auto;
}

.dashboard-item {
  border-radius: 10px;
  border: 1px solid rgba(143, 217, 243, 0.24);
  background: rgba(10, 34, 52, 0.86);
  padding: 10px;
}

.item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.item-title {
  font-weight: 700;
  color: #e7f8ff;
}

.item-meta {
  margin-top: 6px;
  font-size: 0.86rem;
  color: #aaccde;
  line-height: 1.4;
}

.item-tags {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.item-summary {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #bed7e5;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.pill.type {
  color: #79e9ff;
  background: rgba(68, 204, 238, 0.18);
}

.pill.severity-low {
  color: #99e1ff;
  background: rgba(71, 180, 229, 0.2);
}

.pill.severity-medium {
  color: #ffe18d;
  background: rgba(223, 176, 68, 0.22);
}

.pill.severity-high {
  color: #ffba78;
  background: rgba(221, 125, 71, 0.23);
}

.pill.severity-critical {
  color: #ff9cab;
  background: rgba(227, 86, 110, 0.24);
}

.pill.status-open {
  color: #8fead4;
  background: rgba(79, 204, 170, 0.22);
}

.pill.status-acknowledged {
  color: #ffd58f;
  background: rgba(204, 162, 79, 0.24);
}

.pill.status-resolved {
  color: #9fe6aa;
  background: rgba(88, 178, 108, 0.24);
}

.dashboard-list .empty {
  border-radius: 10px;
  border: 1px dashed rgba(143, 217, 243, 0.28);
  background: rgba(10, 34, 52, 0.45);
  padding: 12px;
  color: #a9c8d8;
  font-size: 0.9rem;
}

.dashboard-alert-guide {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #a7c8da;
}

.footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(136, 219, 248, 0.2);
  background: rgba(3, 16, 27, 0.82);
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer p {
  margin: 0;
  color: #a7c8da;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  transition: opacity 640ms ease, transform 640ms ease, filter 640ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 120;
  pointer-events: none;
  background: linear-gradient(95deg, var(--accent), var(--brand));
  box-shadow: 0 0 14px rgba(76, 227, 255, 0.5);
  transition: width 90ms linear, opacity 180ms ease;
}

@keyframes pupilPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes sweepArc {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-1px);
    opacity: 1;
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 255, 184, 0.72);
  }
  100% {
    box-shadow: 0 0 0 11px rgba(99, 255, 184, 0);
  }
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.13);
    opacity: 0;
  }
}

@keyframes logoHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scanningGrid {
  0% {
    background-position: 0 0, 0 0, -160% 0;
  }
  100% {
    background-position: 0 0, 0 0, 170% 0;
  }
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.24);
  }
}

@keyframes auroraDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(22px, -16px, 0);
  }
}

@keyframes pageAtmosphere {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 12px -10px, -10px 12px, 0 0;
  }
}

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

@keyframes heroPanelBreathe {
  0%,
  100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.44);
  }
}

@keyframes monitorBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

@keyframes monitorRing {
  0% {
    transform: scale(0.7);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes bellSwing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-11deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-7deg);
  }
  80% {
    transform: rotate(6deg);
  }
}

@keyframes bellClapperSwing {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0.7px);
  }
  40% {
    transform: translateX(-0.7px);
  }
  60% {
    transform: translateX(0.45px);
  }
  80% {
    transform: translateX(-0.45px);
  }
}

@keyframes menuBreath {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(1px);
  }
}

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

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

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

  .hero-grid {
    gap: 24px;
  }

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

  .hero-logo-shell {
    top: 52%;
  }

  .hero-orbit {
    width: 280px;
    height: 280px;
  }

  .signal-card {
    width: 200px;
  }

  .card-a {
    top: 104px;
    left: 14px;
  }

  .card-b {
    right: 14px;
    bottom: 16px;
  }
}

@media (max-width: 880px) {
  .impact-grid,
  .proof-metrics,
  .proof-grid,
  .trust-grid,
  .feature-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: none;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1140px, calc(100% - 24px));
  }

  .topbar {
    position: static;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-cta {
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .hero {
    padding-top: 56px;
  }

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

  .status-pill {
    left: 14px;
  }

  .live-status {
    top: 14px;
  }

  .leak-status {
    top: 56px;
    font-size: 0.74rem;
  }

  .hero-logo-shell {
    width: 170px;
    height: 200px;
  }

  .hero-logo {
    width: 130px;
    height: 151px;
  }

  .hero-orbit {
    width: 230px;
    height: 230px;
  }

  .ring-one {
    width: 145px;
  }

  .ring-two {
    width: 195px;
  }

  .ring-three {
    width: 246px;
  }

  .signal-card {
    width: 172px;
    padding: 12px;
  }

  .card-a {
    top: 112px;
    left: 12px;
  }

  .card-b {
    right: 12px;
    bottom: 14px;
  }

  .signal-card h3 {
    font-size: 0.88rem;
  }

  .signal-card span {
    font-size: 0.76rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .dashboard-shell {
    padding: 14px;
  }

  .dashboard-control-row {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-auto-refresh {
    width: 100%;
    justify-content: space-between;
  }

  #dashboard-refresh-btn {
    width: 100%;
  }
}

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

  .scroll-progress {
    display: none !important;
  }
}
