:root {
  --bg: #07111d;
  --bg-2: #0d1c2e;
  --panel: rgba(10, 20, 35, 0.78);
  --text: #edf3ff;
  --muted: #9db0ca;
  --accent: #ff7a18;
  --accent-2: #ffb44c;
  --border: rgba(255, 255, 255, 0.1);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.18), transparent 28%),
    radial-gradient(circle at right 18%, rgba(72, 143, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #08111d 0%, #0b1625 42%, #0a1320 100%);
  color: var(--text);
}

a {
  color: inherit;
}

button,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 28px 20px 40px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.ambient-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.35), transparent 68%);
}

.ambient-2 {
  width: 360px;
  height: 360px;
  bottom: 100px;
  left: -120px;
  background: radial-gradient(circle, rgba(69, 132, 255, 0.28), transparent 66%);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 122, 24, 0.1), rgba(63, 123, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-topbar {
  margin-bottom: 18px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.back-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 24, 0.35);
  background: rgba(255, 122, 24, 0.1);
}

.hero-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  padding: 14px;
  background: radial-gradient(circle at top left, rgba(255, 122, 24, 0.28), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  margin: 0 0 8px;
  color: #ffc489;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.hero-subhead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat-card {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.stat-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card strong {
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 860px) {
  .page-shell {
    padding: 16px 14px 28px;
  }

  .hero {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-brand {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 88px;
    height: 88px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
