:root {
  --bg: #050b13;
  --bg-2: #08111d;
  --panel: rgba(13, 24, 38, 0.78);
  --panel-strong: rgba(16, 29, 45, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --text: #f5f8ff;
  --muted: #9fb0c8;
  --dim: #637289;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --blue: #32b6ff;
  --cyan: #5affdf;
  --gold: #ffd05c;
  --green: #75f0a7;
  --red: #ff5d73;
  --violet: #8a7cff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(50, 182, 255, 0.22), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(138, 124, 255, 0.17), transparent 32%),
    radial-gradient(circle at 50% 105%, rgba(90, 255, 223, 0.12), transparent 35%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 52%, #050912);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.grid-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  z-index: -2;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-left {
  left: -160px;
  top: 80px;
  background: rgba(50, 182, 255, 0.4);
}

.glow-right {
  right: -150px;
  top: 220px;
  background: rgba(138, 124, 255, 0.36);
}

.site-header,
.section-shell,
.site-footer {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 14, 23, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.trust-row,
.terminal-top,
.live-status,
.preview-header,
.site-footer,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 3px;
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(90, 255, 223, 0.72), rgba(50, 182, 255, 0.52)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(50, 182, 255, 0.26);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.brand strong,
.hero h1,
.section-heading h2,
.dashboard-copy h2,
.pro-card h2,
.final-cta h2 {
  font-family: "Sora", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--panel-soft);
}

.header-actions,
.hero-actions,
.footer-links {
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 17px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #04101a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(50, 182, 255, 0.25);
}

.button-muted,
.button-glass {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button-xl {
  padding: 15px 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: 56px 0 44px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.dashboard-copy h2,
.pro-card h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  line-height: 0.91;
}

.hero-text,
.section-heading p,
.dashboard-copy p,
.pro-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 700px;
  margin: 22px 0 26px;
  font-size: 1.08rem;
}

.trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row div {
  min-width: 152px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.trust-row strong {
  display: block;
  font-size: 1.25rem;
}

.trust-row span {
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.scanner-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ring-a {
  width: 470px;
  height: 470px;
  animation: pulse 4.5s ease-in-out infinite;
}

.ring-b {
  width: 330px;
  height: 330px;
  border-color: rgba(90, 255, 223, 0.24);
  animation: spin 16s linear infinite;
}

.terminal-card {
  position: relative;
  width: min(100%, 560px);
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(20, 37, 57, 0.96), rgba(8, 16, 26, 0.98)),
    radial-gradient(circle at top right, rgba(50, 182, 255, 0.2), transparent 45%);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
}

.terminal-top {
  gap: 8px;
  margin-bottom: 20px;
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.logo-showcase {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.logo-showcase img {
  width: 118px;
  aspect-ratio: 16 / 9;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.logo-showcase strong,
.logo-showcase small {
  display: block;
}

.logo-showcase strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.logo-showcase small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.live-status {
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.status-light {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(117, 240, 167, 0.8);
}

.live-status strong,
.live-status small {
  display: block;
}

.live-status small,
.signal-grid span,
.signal-grid small {
  color: var(--muted);
}

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

.signal-grid article {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.signal-grid small,
.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin: 7px 0 4px;
  font-size: 1.2rem;
}

.command-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(90, 255, 223, 0.2);
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(90, 255, 223, 0.06);
}

.command-line p {
  margin: 0;
  color: var(--text);
}

.ticker {
  display: flex;
  gap: 10px;
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.ticker span {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.section-shell {
  padding: 88px 0 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.dashboard-copy h2,
.pro-card h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.module-grid,
.originals-grid,
.roadmap-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.module-card,
.originals-grid article,
.roadmap-grid article,
.pro-card,
.dashboard-band,
.final-cta {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.module-card,
.originals-grid article,
.roadmap-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
}

.module-card::after,
.originals-grid article::after,
.roadmap-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(90, 255, 223, 0.15), rgba(50, 182, 255, 0.12));
}

.card-number {
  color: var(--cyan);
  font-weight: 800;
}

.module-card h3,
.originals-grid h3,
.roadmap-grid h3 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
}

.module-card p,
.originals-grid p,
.roadmap-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.dashboard-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 182, 255, 0.16), transparent 38%),
    rgba(13, 24, 38, 0.72);
}

.dashboard-copy {
  padding: 16px;
}

.dashboard-copy p {
  margin: 18px 0 24px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(5, 11, 19, 0.82);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.preview-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-sidebar .active {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.preview-main {
  padding: 22px;
}

.preview-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.preview-header small {
  display: block;
  color: var(--muted);
  margin-bottom: 5px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  color: #05111a;
  background: var(--green);
  font-weight: 800;
}

.preview-list {
  display: grid;
  gap: 12px;
}

.preview-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-list span {
  color: var(--muted);
}

.roadmap-grid article span {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #07121d;
  background: var(--gold);
  font-weight: 800;
}

.pro-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(138, 124, 255, 0.16), transparent 48%),
    rgba(13, 24, 38, 0.78);
}

.pro-list {
  display: grid;
  gap: 12px;
}

.pro-list span {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.final-cta {
  text-align: center;
  padding: 54px 24px;
  border-radius: 34px;
}

.center {
  justify-content: center;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 46px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.footer-mark img {
  border-radius: 12px;
}

.footer-links {
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

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

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

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

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

@media (max-width: 1060px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    order: 5;
    display: none;
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .dashboard-band,
  .pro-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 460px;
  }

  .terminal-card {
    transform: none;
  }

  .logo-showcase {
    grid-template-columns: 104px 1fr;
  }

  .logo-showcase img {
    width: 104px;
  }

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

@media (max-width: 720px) {
  .site-header,
  .section-shell,
  .ticker,
  .site-footer {
    width: min(100% - 20px, 100%);
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .button {
    flex: 1;
  }

  .logo-showcase {
    grid-template-columns: 1fr;
  }

  .logo-showcase img {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-row,
  .signal-grid,
  .module-grid,
  .originals-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .module-grid,
  .originals-grid,
  .roadmap-grid {
    display: grid;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    grid-template-columns: repeat(5, 34px);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-list div,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
