:root {
  --bg: #07080d;
  --panel: rgba(16, 18, 28, 0.85);
  --panel-2: rgba(24, 27, 40, 0.72);
  --text: #f5f7ff;
  --muted: #a3accf;
  --pink: #ff5fb6;
  --pink-soft: rgba(255, 95, 182, 0.18);
  --blue: #68d5ff;
  --line: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #121528 0%, var(--bg) 48%);
  color: var(--text);
  min-height: 100vh;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-copy,
.hero-card,
.wl-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 44px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  margin: 18px 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin: 16px 0 10px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points span {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbe2ff;
  font-size: 14px;
}

.hero-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(24, 27, 40, 0.9), rgba(10, 12, 20, 0.96));
}

.orb-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}

.orb {
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #ff86c7 36%, #ff4da7 58%, #8d2eff 100%);
  box-shadow: 0 0 120px rgba(255, 95, 182, 0.45);
}

.ring,
.frame {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ring-1 {
  border: 4px solid rgba(255,255,255,0.22);
}

.ring-2 {
  inset: 28px;
  border: 2px solid rgba(104, 213, 255, 0.28);
}

.frame {
  inset: 54px;
  border-radius: 24px;
  border: 10px solid rgba(100, 103, 120, 0.5);
}

.wl-card {
  padding: 40px;
}

.wl-header {
  margin-bottom: 26px;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.task-box {
  border: 1px solid rgba(255,255,255,0.09);
  background: var(--panel-2);
  border-radius: 20px;
  padding: 18px 20px;
}

.task-box p {
  margin: 6px 0 0;
}

.task-label {
  color: #ffd0ea;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label span {
  color: #dce2ff;
  font-size: 14px;
  font-weight: 600;
}

a {
  color: #ff8ac9;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.09);
  background: var(--panel-2);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 95, 182, 0.5);
  box-shadow: 0 0 0 4px var(--pink-soft);
}

.checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

button {
  border: 0;
  border-radius: 18px;
  padding: 16px 22px;
  font: inherit;
  font-weight: 700;
  color: #081018;
  background: linear-gradient(90deg, var(--pink), #ff8fd0);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 14px 40px rgba(255, 95, 182, 0.28);
}

button:hover {
  transform: translateY(-1px);
}

.note,
.success {
  font-size: 14px;
}

.success {
  display: none;
  color: #7cffc1;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .wl-card {
    padding: 28px;
  }
}
