:root {
  --bg: #030605;
  --bg-soft: #07110d;
  --surface: rgba(8, 14, 12, 0.82);
  --surface-strong: rgba(10, 18, 15, 0.94);
  --line: rgba(124, 255, 174, 0.12);
  --line-strong: rgba(124, 255, 174, 0.2);
  --text: #f5f8f7;
  --muted: rgba(229, 236, 232, 0.72);
  --accent: #4ade80;
  --accent-strong: #16a34a;
  --accent-glow: rgba(74, 222, 128, 0.28);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(74, 222, 128, 0.1), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(52, 168, 83, 0.08), transparent 20%),
    linear-gradient(180deg, #020403 0%, #020705 42%, #010303 100%);
  font-family: "Sora", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(74, 222, 128, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
}

.matrixVeil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.06)),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0 14px,
      rgba(74, 222, 128, 0.02) 14px 15px,
      rgba(0, 0, 0, 0) 15px 28px
    );
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0 42%, #000 78%);
}

.matrixVeil::before,
.matrixVeil::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 120px 180px;
  opacity: 0.52;
}

.matrixVeil::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0 4%,
      rgba(98, 255, 165, 0.82) 4% 5%,
      rgba(0, 0, 0, 0) 5% 9%,
      rgba(98, 255, 165, 0.28) 9% 12%,
      rgba(0, 0, 0, 0) 12% 100%
    );
  animation: matrixDrop 14s linear infinite;
}

.matrixVeil::after {
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0 18%,
      rgba(220, 252, 231, 0.78) 18% 19%,
      rgba(0, 0, 0, 0) 19% 24%,
      rgba(74, 222, 128, 0.32) 24% 29%,
      rgba(0, 0, 0, 0) 29% 100%
    );
  background-position: 60px -40px;
  animation: matrixDrop 17s linear infinite reverse;
}

.pageGlow {
  position: fixed;
  width: 32vw;
  height: 32vw;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}

.pageGlowLeft {
  left: -10vw;
  top: 10vh;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.28), transparent 70%);
}

.pageGlowRight {
  right: -10vw;
  bottom: 6vh;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.22), transparent 72%);
}

.topbar,
main {
  position: relative;
  z-index: 1;
}

.topbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 28px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brandLockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0.08rem;
  color: inherit;
  text-decoration: none;
}

.brandWordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 0.9;
}

.brandX {
  margin-left: -0.04em;
  color: var(--accent);
  text-shadow:
    0 0 18px rgba(74, 222, 128, 0.42),
    0 0 36px rgba(74, 222, 128, 0.18);
}

.brandRadar {
  margin-left: 0.16rem;
  font-size: 0.95rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(245, 248, 247, 0.74);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topnav a {
  color: rgba(245, 248, 247, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

.navCta {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(124, 255, 174, 0.16);
  background: rgba(8, 14, 12, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 28px 48px;
}

.hero,
.section,
.ctaBand {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), rgba(6, 11, 10, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  border-radius: 36px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 420px);
  gap: 30px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(74, 222, 128, 0.08), transparent 20%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.03) 52%, transparent 64%);
  pointer-events: none;
}

.heroCopy,
.heroPanel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.sectionEyebrow,
.panelLabel,
.featureTag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(124, 255, 174, 0.12);
  color: rgba(190, 242, 207, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.94;
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.heroActions,
.ctaActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primaryBtn,
.ghostBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.primaryBtn {
  color: #041108;
  background: linear-gradient(135deg, #70f0a2, #31c96c);
  box-shadow:
    0 18px 40px rgba(49, 201, 108, 0.22),
    0 0 26px rgba(74, 222, 128, 0.18);
}

.ghostBtn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 255, 174, 0.14);
}

.primaryBtn:hover,
.ghostBtn:hover,
.navCta:hover {
  transform: translateY(-1px);
}

.signalRow {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signalRow li,
.bulletItem {
  padding: 11px 14px;
  border-radius: 16px;
  border: 1px solid rgba(124, 255, 174, 0.1);
  background: rgba(5, 12, 9, 0.8);
  color: rgba(245, 248, 247, 0.86);
}

.heroPanel {
  display: grid;
  gap: 14px;
}

.heroPanelCard,
.heroMiniCard,
.infoCard,
.faqItem,
.bulletPanel {
  border: 1px solid rgba(124, 255, 174, 0.1);
  background: rgba(6, 12, 10, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.heroPanelMain {
  padding: 22px;
  border-radius: 24px;
}

.heroPanelMain strong {
  display: block;
  margin-top: 14px;
  font-size: 1.35rem;
}

.heroPanelMain p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.heroPanelGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.heroMiniCard {
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
}

.miniValue {
  display: block;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05rem;
}

.heroMiniCard p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  margin-top: 18px;
  border-radius: 30px;
  padding: 32px;
}

.sectionAccent {
  background:
    linear-gradient(180deg, rgba(8, 16, 13, 0.92), rgba(7, 12, 11, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.08), transparent 24%);
}

.sectionHeading {
  max-width: 880px;
}

.sectionHeading h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
}

.cards {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

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

.infoCard {
  padding: 22px;
  border-radius: 24px;
}

.infoCard h3 {
  font-size: 1.3rem;
  line-height: 1.05;
}

.infoCard p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.featureTag {
  margin-bottom: 16px;
}

.contentSplit {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.copyBlock,
.bulletPanel {
  padding: 24px;
  border-radius: 24px;
}

.copyBlock p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.copyBlock p + p {
  margin-top: 14px;
}

.bulletPanel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.faqList {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.faqItem {
  padding: 22px;
  border-radius: 22px;
}

.faqItem p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.ctaBand {
  margin-top: 18px;
  border-radius: 30px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ctaBand h2 {
  margin-top: 12px;
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

@keyframes matrixDrop {
  from {
    transform: translateY(-10%);
  }
  to {
    transform: translateY(10%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .contentSplit,
  .threeCols,
  .ctaBand {
    grid-template-columns: 1fr;
    display: grid;
  }

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

@media (max-width: 780px) {
  .topbar,
  main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section,
  .ctaBand {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .heroPanelGrid,
  .threeCols,
  .contentSplit,
  .ctaBand {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  .lead,
  .copyBlock p,
  .faqItem p,
  .infoCard p {
    font-size: 0.95rem;
  }

  .signalRow {
    gap: 8px;
  }
}
