:root {
  --bg: #05050f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f6ff;
  --muted: rgba(245, 246, 255, 0.75);
  --accent: #ffd057;
  --accent-2: #ff4dd8;
  --accent-3: #4df4ff;
  --font: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(255, 77, 216, 0.25), transparent 45%),
    radial-gradient(circle at 80% -10%, rgba(77, 244, 255, 0.35), transparent 40%),
    linear-gradient(135deg, #05050f, #0e0824 60%, #0b1b2f);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1200px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  padding-block: 1rem 3rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.logo {
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

.logo.small {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 500;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding-top: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.hero-copy p {
  line-height: 1.6;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 77, 216, 0.15);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.hero-points li::before {
  content: '✦';
  color: var(--accent-2);
  margin-right: 0.65rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent-3), var(--accent-2));
  color: #05050f;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-visual {
  position: relative;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.floating-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  padding: 2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.floating-card h3 {
  margin-top: 0.35rem;
}

.floating-card ul {
  padding-left: 1rem;
  color: var(--muted);
}

.card-badge {
  display: inline-flex;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 208, 87, 0.15);
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.7;
}

.orb-one {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 77, 216, 0.6), transparent 65%);
  top: 10%;
  right: -30px;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(77, 244, 255, 0.6), transparent 60%);
  bottom: -40px;
  left: 10%;
}

.highlight {
  margin-top: 3rem;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.stat-value {
  font-size: 1.8rem;
  font-weight: 600;
}

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

.steps {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-heading {
  text-align: center;
}

.section-heading > p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent-3);
}

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

.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-index {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 216, 0.15);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 1rem;
}

.register-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(120deg, rgba(77, 244, 255, 0.06), rgba(255, 77, 216, 0.06));
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.register-text {
  flex: 1 1 240px;
}

.bonus {
  margin-top: 4rem;
}

.bonus-card {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: radial-gradient(circle at top right, rgba(255, 77, 216, 0.3), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

.micro-text {
  font-size: 0.85rem;
  color: rgba(245, 246, 255, 0.6);
}

.site-footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--text);
}

@media (max-width: 600px) {
  .nav-links {
    width: 100%;
    justify-content: flex-end;
  }

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

  .register-card,
  .bonus-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
