:root {
  --bg: #07111f;
  --card: rgba(15, 28, 48, 0.88);
  --text: #f6f8fb;
  --muted: #a9b5c6;
  --line: rgba(255,255,255,.11);
  --accent: #7c5cff;
  --accent2: #19c7b1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(124,92,255,.22), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(25,199,177,.14), transparent 28%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page {
  width: min(1100px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0 28px;
}

.hero {
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge, .eyebrow {
  display: inline-flex;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  color: #c9c1ff;
}

.badge {
  padding: 9px 14px;
  border: 1px solid rgba(124,92,255,.38);
  border-radius: 999px;
  background: rgba(124,92,255,.09);
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(46px, 9vw, 100px);
  line-height: .98;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}

.headline {
  margin: 26px 0 10px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
}

.subtext {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.cta {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding: 15px 22px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #5a42db);
  box-shadow: 0 15px 45px rgba(80,60,190,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(80,60,190,.38);
}

.form-card {
  max-width: 650px;
  margin: 0 auto 70px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 100px rgba(0,0,0,.25);
}

.form-heading h2 {
  margin: 8px 0 8px;
  font-size: 32px;
  letter-spacing: -.035em;
}

.form-heading p {
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

.field { margin-bottom: 19px; }

label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #dce3ed;
}

label span { color: #718096; font-weight: 400; }

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255,255,255,.045);
  font: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}

textarea { resize: vertical; min-height: 110px; }

input::placeholder, textarea::placeholder { color: #69788d; }

input:focus, textarea:focus {
  border-color: rgba(124,92,255,.75);
  background: rgba(255,255,255,.065);
}

button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 15px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #5a42db);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

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

button span { margin-left: 8px; }

.privacy {
  margin: 15px 0 0;
  color: #718096;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 4px;
  border-top: 1px solid var(--line);
  color: #718096;
  font-size: 12px;
}

.success {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(25,199,177,.35);
  border-radius: 50%;
  background: rgba(25,199,177,.1);
  color: var(--accent2);
  font-size: 28px;
}

@media (max-width: 600px) {
  .page { width: min(100% - 24px, 1100px); padding-top: 30px; }
  .hero { min-height: 58vh; }
  footer { flex-direction: column; text-align: center; }
}
