:root {
  color-scheme: dark;
  --bg: #05060c;
  --bg-secondary: #0b0d17;
  --accent-one: #72f5d6;
  --accent-two: #ff7ad0;
  --text-primary: #f5f7fb;
  --text-muted: #99a0b8;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, #10122b 0%, #05060c 55%);
  color: var(--text-primary);
  line-height: 1.6;
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 5vw, 3.5rem) 3rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(2rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, rgba(13, 15, 30, 0.9), rgba(5, 5, 12, 0.85));
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.orb {
  position: absolute;
  width: clamp(200px, 30vw, 360px);
  height: clamp(200px, 30vw, 360px);
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.55;
}

.orb-primary {
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(114, 245, 214, 0.8), transparent 70%);
}

.orb-secondary {
  bottom: -80px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 122, 208, 0.8), transparent 70%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  z-index: 1;
  position: relative;
}

.logomark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

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

.hero h1 {
  font-family: "Newsreader", "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

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

.cta {
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta.primary {
  background: linear-gradient(135deg, var(--accent-one), var(--accent-two));
  color: #040404;
  box-shadow: 0 15px 40px rgba(114, 245, 214, 0.25);
}

.cta.ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta:focus-visible {
  outline: 2px solid var(--accent-one);
  outline-offset: 3px;
}

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

.glass-panel {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  max-width: 380px;
  position: relative;
  z-index: 1;
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.panel-rows div {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-rows div:last-child {
  border-bottom: none;
}

.panel-rows span {
  font-size: 0.85rem;
  color: var(--accent-two);
  min-width: 52px;
}

main {
  position: relative;
  z-index: 1;
}

.highlights {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  box-shadow: 0 20px 45px rgba(4, 5, 10, 0.6);
}

.section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.status-text {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

footer {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .hero {
    padding: 2rem;
  }

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

  .glass-panel {
    max-width: 100%;
  }

  .highlights {
    padding: 1.75rem;
  }
}
