:root {
  --bg-base: #0A0E1A;
  --bg-elevated: #121A2E;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --accent: #4FC8F0;
  --accent-tint: rgba(79, 200, 240, 0.14);
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Soft cyan glow bleeding in from the top-right, matching the reference hero */
.bg-glow {
  position: fixed;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(79, 200, 240, 0.16) 0%, rgba(79, 200, 240, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
.content {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.wordmark {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.product-label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 48px 120px;
}

.hero {
  max-width: 680px;
  margin-bottom: 88px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 560px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #071018;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 10px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.tile {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tile.active {
  cursor: pointer;
}

.tile.active:hover {
  border-color: rgba(79, 200, 240, 0.4);
  box-shadow: 0 0 0 1px var(--accent-tint), 0 0 32px -8px var(--accent-tint);
}

.tile.coming-soon {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.tile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
}

.tile-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.tile-desc {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.pill {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 4px 10px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

@media (max-width: 640px) {
  .site-header { padding: 20px 24px; }
  .content { padding: 56px 24px 80px; }
  .hero-title { font-size: 36px; }
}
