* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
  background: #08080f;
}

.hero-shell {
  min-height: calc(100vh - 72px);
  background:
    radial-gradient(circle at top left, rgba(255,99,71,0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0,255,255,0.18), transparent 22%),
    linear-gradient(135deg, #09090f 0%, #1b1024 42%, #2a0d2f 100%);
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 1.5rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #9efcff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-copy h2 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: #f7cadc;
  margin-bottom: 1rem;
}

.lead {
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.highlight {
  color: tomato;
}

.highlight-accent {
  color: #8ff6ff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, tomato, #f7b42c);
  color: #111;
  box-shadow: 0 16px 32px rgba(255,99,71,0.25);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-card,
.panel-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 1.1rem;
  backdrop-filter: blur(10px);
}

.metric-card strong,
.panel-title {
  display: block;
  color: #9efcff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.metric-card span,
.panel-card li,
.panel-card a {
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  text-decoration: none;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card ul {
  padding-left: 1.2rem;
}

.panel-card a {
  display: block;
  margin-bottom: 0.7rem;
}

.panel-card a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .lead {
    font-size: 1rem;
  }
}
