/* Shared reset — included by every page */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; -webkit-font-smoothing: antialiased; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

:root {
  --pink:         #ff2d78;
  --pink-dark:    #d91f62;
  --bg:           #080808;
  --surface:      #0f0f0f;
  --surface-2:    #141414;
  --surface-3:    #1c1c1c;
  --border:       rgba(255, 255, 255, 0.06);
  --border-input: rgba(255, 255, 255, 0.1);
  --text:         #ffffff;
  --text-2:       #ababab;   /* readable secondary text */
  --text-3:       #6d6d6d;   /* placeholders, hints, muted */
  --radius:       10px;
  --radius-sm:    7px;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar-thumb { background: #2a2a2a; }

/* ─── PAGE WRAPPER ─── */
.page {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 16px 52px;
}

/* ─── CARD ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  padding: 44px 44px 40px;
  box-shadow: 0 0 80px rgba(255,45,120,0.04);
}

/* ─── LOGO ─── */
.card-logo {
  font-size: 16px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--text); text-decoration: none; display: inline-block;
  margin-bottom: 36px;
}
.card-logo span { color: var(--pink); }

/* ─── HEADER ─── */
.card-header { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 14px; height: 1px; background: var(--pink); }

.card-title {
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 12px;
}

.card-subtitle {
  font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.7;
}

/* ─── FORM ─── */
.form-group { margin-bottom: 20px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: block;
  font-size: 12px; font-weight: 500; color: #bbb;
  margin-bottom: 7px; letter-spacing: 0.01em;
}
.req      { color: var(--pink); margin-left: 2px; }
.optional { font-size: 11px; color: var(--text-3); font-weight: 400; }

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-input);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(255, 45, 120, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.07);
  background: #181818;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }

textarea { resize: vertical; min-height: 88px; line-height: 1.65; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
select option { background: var(--surface-2); color: var(--text); }

.char-counter { font-size: 11px; color: var(--text-3); text-align: right; margin-top: 5px; }

/* ─── SUBMIT ─── */
.btn-submit {
  width: 100%; margin-top: 8px;
  padding: 14px 24px;
  background: var(--pink); color: #fff; border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-submit:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 45, 120, 0.32);
}

/* ─── SUCCESS ─── */
.success-state { text-align: center; padding: 12px 0 4px; }

.success-icon {
  width: 60px; height: 60px;
  background: rgba(255, 45, 120, 0.07);
  border: 1px solid rgba(255, 45, 120, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--pink);
}
.success-icon svg { width: 26px; height: 26px; }

.success-state h2 { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 10px; }
.success-state p  { font-size: 14px; color: var(--text-2); line-height: 1.7; font-weight: 300; margin-bottom: 28px; }

.btn-reset {
  font-size: 13px; color: var(--text-3); background: none; border: none;
  cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.btn-reset:hover { color: var(--text-2); }

/* ─── FOOTER ─── */
.page-footer {
  text-align: center; padding: 20px 16px 36px;
  font-size: 12px; color: var(--text-3);
}
.page-footer a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.page-footer a:hover { color: var(--text-2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 540px) {
  .card { padding: 28px 22px 26px; }
  .form-row { grid-template-columns: 1fr; }
}

