:root {
  --bg: #0b1a1f;
  --bg-deep: #050d10;
  --accent: #ffb457;
  --accent-dark: #cc7c2b;
  --ink: #eef7f8;
  --muted: #b5c6c9;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, rgba(255, 180, 87, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(93, 198, 213, 0.2), transparent 35%),
    linear-gradient(160deg, var(--bg), var(--bg-deep));
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  pointer-events: none;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 80px 8vw 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-inner h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  margin: 12px 0 18px;
  line-height: 1.05;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  max-width: 520px;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  align-items: center;
}

.chip {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

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

.chip-value {
  font-weight: 600;
}

.button {
  background: var(--accent);
  color: #261607;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.hero-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px var(--shadow);
  align-self: center;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(24px);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #40d07d;
  box-shadow: 0 0 12px rgba(64, 208, 125, 0.8);
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.card-body {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.stat {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.stat:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 20px 8vw 80px;
}

.panel {
  padding: 24px;
  border-radius: 20px;
  background: rgba(5, 12, 14, 0.6);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
}

.float-in {
  animation: float-in 0.6s ease forwards;
}

.panel h2 {
  font-family: "Fraunces", Georgia, serif;
  margin-top: 0;
}

.panel li {
  margin: 12px 0;
  color: var(--muted);
}

.footer {
  text-align: center;
  padding: 24px 0 50px;
  color: var(--muted);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.6);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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