:root {
  --cream: #fff8f0;
  --pink: #ff8fab;
  --pink-dark: #ff6b8a;
  --mint: #7dd3c0;
  --lavender: #c9b1ff;
  --text: #3d2c4d;
  --text-secondary: #7a6b8a;
  --surface: #ffffff;
  --radius: 24px;
  --radius-pill: 999px;
  --shadow: 0 8px 32px rgba(201, 177, 255, 0.25);
  --font-heading: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(135deg, var(--cream) 0%, #fff0f5 50%, #f0f8ff 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--pink-dark);
  font-weight: 600;
}

.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.blob-pink {
  width: 260px;
  height: 260px;
  top: -70px;
  right: -50px;
  background: rgba(255, 143, 171, 0.2);
}

.blob-blue {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: -60px;
  background: rgba(137, 207, 240, 0.2);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand img {
  border-radius: 10px;
}

.lang {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.card {
  background: var(--surface);
  border-radius: 32px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 143, 171, 0.2);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-dark);
  background: rgba(255, 143, 171, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  color: var(--pink-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.lead {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.steps {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 16px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.step strong {
  color: var(--text);
}

.step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.field input[type="email"] {
  width: 100%;
  border: 2px solid rgba(201, 177, 255, 0.45);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
}

.field input[type="email"]:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.25);
}

.hint {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--pink);
  flex-shrink: 0;
}

.submit {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--pink-dark), var(--lavender));
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 107, 138, 0.35);
}

.submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.status {
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.status.is-success {
  background: rgba(125, 211, 192, 0.25);
  color: #1f6f5f;
}

.status.is-error {
  background: rgba(255, 140, 105, 0.2);
  color: #8a3b2d;
}

.footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .card {
    padding: 1.5rem 1.15rem;
  }
}
