:root {
  --bg: #030308;
  --bg-elevated: #0a0f18;
  --bg-card: rgba(12, 18, 30, 0.82);
  --text: #eef4ff;
  --muted: #94a3b8;
  --green: #7cfc00;
  --green-dim: rgba(124, 252, 0, 0.14);
  --blue: #00bfff;
  --blue-dim: rgba(0, 191, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(3, 3, 8, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 191, 255, 0.25);
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #39d353);
  color: #041105;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(124, 252, 0, 0.25);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: grid;
  gap: 0.75rem;
}

.mobile-nav a {
  padding: 0.75rem 0.5rem;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 191, 255, 0.16), transparent 42%),
    radial-gradient(circle at 80% 0%, rgba(124, 252, 0, 0.08), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 80px 120px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 160px 60px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 240px 180px, #fff, transparent),
    radial-gradient(1px 1px at 320px 40px, rgba(255, 255, 255, 0.6), transparent);
  background-size: 360px 220px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #39d353);
  color: #041105;
  box-shadow: 0 12px 40px rgba(124, 252, 0, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text);
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-logo-wrap img {
  width: min(100%, 420px);
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 80px rgba(0, 191, 255, 0.18);
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.18), transparent 70%);
  filter: blur(24px);
  z-index: -1;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.78rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.product-card.live {
  border-color: rgba(124, 252, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(124, 252, 0, 0.06), rgba(255, 255, 255, 0.015)),
    var(--bg-card);
}

.product-card.soon {
  opacity: 0.88;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-top h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.product-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-live {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(124, 252, 0, 0.25);
}

.badge-soon {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(0, 191, 255, 0.22);
}

.feature-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  color: var(--blue);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #020205;
  padding: 2rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-card {
  max-width: 760px;
  margin-inline: auto;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.legal-card h1 {
  margin-top: 0;
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
