:root {
  color-scheme: dark;
  --page-bg: #04080f;
  --surface-dark: rgba(7, 13, 25, 0.85);
  --surface-light: rgba(255, 255, 255, 0.04);
  --surface-muted: rgba(255, 255, 255, 0.08);
  --text-primary: #f4f6fb;
  --text-secondary: rgba(244, 246, 251, 0.72);
  --accent: #66f7c2;
  --accent-soft: #3fc6f0;
  --accent-warm: #f4c56a;
  --border-color: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-size: 16px;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #07182f 0%, #03070e 45%, #000 90%)
      fixed,
    var(--page-bg);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 247, 194, 0.12), rgba(61, 142, 255, 0.08));
  pointer-events: none;
  z-index: -1;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem) 4rem;
}

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

p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  background: var(--surface-dark);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 1rem;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface-light);
  padding: 0.3rem;
  object-fit: contain;
  display: block;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-tag {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.ghost-button {
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 3rem;
  background: var(--surface-dark);
  border-radius: 28px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 3.7rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero .lede {
  font-size: 1.1rem;
  max-width: 38ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.primary-button,
.secondary-button {
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-button {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  color: #031017;
}

.secondary-button {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.hero-highlights li {
  background: var(--surface-light);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 16px;
}

.stat {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}

.label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-card {
  background: var(--surface-light);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 22px;
}

.panel-card.muted {
  background: var(--surface-muted);
}

.panel-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.panel-badges span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
}

.panel-detail {
  margin-bottom: 1.2rem;
}

.status-dot {
  font-size: 0.85rem;
  font-weight: 600;
}

.status-dot::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.35rem;
  background: currentColor;
}

.status-dot.live {
  color: var(--accent);
}

.status-dot.soon {
  color: var(--accent-warm);
}

.products,
.about {
  margin-top: 4rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.section-heading p {
  max-width: 60ch;
}

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  border-radius: 22px;
  padding: 1.8rem;
  border: 1px solid var(--border-color);
  background: var(--surface-light);
}

.product-card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.4rem;
}

.product-card ul {
  padding-left: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.product-card li + li {
  margin-top: 0.4rem;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border-color);
}

.status-pill .dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
}

.status-pill.live {
  color: var(--accent);
}

.status-pill.soon {
  color: var(--accent-warm);
}

.about-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.about-grid article {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: var(--surface-light);
}

.callout {
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  background: linear-gradient(135deg, rgba(102, 247, 194, 0.15), rgba(79, 156, 255, 0.15));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.callout h2 {
  margin: 0 0 0.8rem;
}

.callout-actions .primary-button {
  width: 100%;
  text-align: center;
}

.callout-hint {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.site-footer {
  margin-top: 4rem;
  padding: 2rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

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

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    position: static;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .ghost-button {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 2rem;
  }
}
