:root {
  --bg-1: #1a0a00;
  --bg-2: #0d1a3a;
  --ink: #ffffff;
  --muted: #f5d9a8;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 165, 30, 0.3);
  --accent: #e07b00;
  --accent-hover: #ff9500;
  --accent-ink: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 20% 0%, #7a2800 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, #0d2a6e 0%, transparent 50%),
    linear-gradient(160deg, #1a0a00 0%, #0d1a3a 100%);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 14s ease-in-out infinite alternate;
}

.aurora-a {
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle, #e07b00, #b34f00);
  top: -18vmax;
  left: -10vmax;
}

.aurora-b {
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(circle, #1a4fd6, #0a2a7a);
  bottom: -16vmax;
  right: -8vmax;
  animation-delay: 2s;
}

.aurora-c {
  width: 30vmax;
  height: 30vmax;
  background: radial-gradient(circle, #c0340a, #7a1a00);
  bottom: 10%;
  left: 5%;
  animation-delay: 1s;
  opacity: 0.3;
}

.card {
  position: relative;
  width: min(720px, 100%);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 60px);
  box-shadow:
    0 0 0 1px rgba(255, 165, 30, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 200, 80, 0.15);
  animation: rise 700ms ease-out;
  text-align: center;
}

.khanda {
  margin: 0 0 8px;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, #ffb830, #ff7800, #ffdd80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(255, 140, 0, 0.6));
  animation: glow 3s ease-in-out infinite alternate;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #ffb830;
  font-weight: 700;
}

h1 {
  margin: 0 0 18px;
  font-family: "Archivo Black", sans-serif;
  line-height: 1.08;
  font-size: clamp(2rem, 7vw, 3.8rem);
  background: linear-gradient(135deg, #ffffff 0%, #ffe0a0 60%, #ffb830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtext {
  margin: 0 auto;
  max-width: 46ch;
  line-height: 1.6;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
}

.actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 14px;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  font-size: 0.95rem;
}

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

.primary {
  background: linear-gradient(135deg, #e07b00, #ff9500);
  color: #fff;
  box-shadow: 0 8px 24px rgba(224, 123, 0, 0.45);
}

.primary:hover {
  background: linear-gradient(135deg, #ff9500, #ffb830);
  box-shadow: 0 12px 32px rgba(255, 149, 0, 0.55);
}

.ghost {
  color: #ffe0a0;
  border: 1px solid rgba(255, 184, 48, 0.35);
  background: rgba(255, 184, 48, 0.08);
}

.ghost:hover {
  background: rgba(255, 184, 48, 0.16);
  border-color: rgba(255, 184, 48, 0.6);
}

@media (max-width: 520px) {
  .card {
    border-radius: 20px;
  }

  .actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    text-align: center;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -20px, 0) scale(1.08);
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
  }
  to {
    filter: drop-shadow(0 0 28px rgba(255, 180, 0, 0.9));
  }
}