:root {
  --accent: #E8607A;
  --bg: #FBF1E9;
  --ink: #3A2E2B;
  --muted: #6f615b;
}

* { box-sizing: border-box; }

html, body { margin: 0; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--bg);
}

input::placeholder { color: #bcaaa2; }

@keyframes bloeiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: var(--bg);
  overflow: hidden;
  padding: 34px 40px 40px;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob--green {
  top: -170px; right: -130px;
  width: 540px; height: 540px;
  background: rgba(79, 169, 140, .10);
}
.blob--peach {
  bottom: -140px; left: -120px;
  width: 380px; height: 380px;
  background: rgba(247, 181, 156, .20);
}
.blob--gold {
  top: 120px; left: 46%;
  width: 120px; height: 120px;
  background: rgba(242, 179, 60, .12);
  animation: bloeiFloat 7s ease-in-out infinite;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 74px);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo {
  position: relative;
  width: 38px;
  height: 38px;
}
.logo .petal {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 18px;
  border-radius: 50%;
  background: #E8607A;
}
.logo .petal:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-10px); }
.logo .petal:nth-child(2) { transform: translate(-50%, -50%) rotate(72deg) translateY(-10px); }
.logo .petal:nth-child(3) { transform: translate(-50%, -50%) rotate(144deg) translateY(-10px); }
.logo .petal:nth-child(4) { transform: translate(-50%, -50%) rotate(216deg) translateY(-10px); }
.logo .petal:nth-child(5) { transform: translate(-50%, -50%) rotate(288deg) translateY(-10px); }
.logo .logo-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #F2B33C;
  transform: translate(-50%, -50%);
}
.brand-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.beta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #EFE0D6;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #8a6f63;
}
.beta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4FA98C;
}

/* HERO */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 0;
}
.hero-inner { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #F0E2D8;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 800;
  color: #b04a64;
  letter-spacing: .02em;
}
.eyebrow-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.headline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 22px 0 0;
}
.headline .accent { color: var(--accent); }

.subhead {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 22px auto 0;
  max-width: 540px;
}

/* FORM */
.signup {
  margin: 34px auto 0;
  max-width: 470px;
}
.signup-label {
  font-size: 13.5px;
  font-weight: 800;
  color: #9b8a83;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.signup-form {
  display: flex;
  gap: 8px;
  background: #fff;
  border: 1px solid #EFE0D6;
  border-radius: 999px;
  padding: 7px 7px 7px 20px;
  box-shadow: 0 12px 30px -18px rgba(120, 70, 60, .4);
}
.signup-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}
.signup-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .15s ease, transform .15s ease;
}
.signup-form button:hover { filter: brightness(1.05); }
.signup-form button:active { transform: scale(.98); }
.signup-note {
  font-size: 13.5px;
  color: #a89488;
  margin-top: 11px;
  padding-left: 4px;
}

/* SUCCESS */
.success {
  margin: 34px auto 0;
  max-width: 470px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #D8ECE3;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px -18px rgba(60, 120, 100, .4);
}
.success[hidden] { display: none; }
.success-check {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex: none;
}
.success-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.success-body {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.45;
}

/* TRUST */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 26px;
}
.avatars { display: flex; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.avatar--1 { background: #F4DDE3; }
.avatar--2 { background: #D8F0E2; margin-left: -9px; }
.avatar--3 { background: #FBE9D9; margin-left: -9px; }
.avatar--4 { background: #EADCF2; margin-left: -9px; font-size: 15px; }
.trust-text {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 600;
}
.trust-text strong { color: var(--ink); }

/* FOOTER */
.footer {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EBDDD2;
  padding-top: 22px;
  font-size: 13.5px;
  color: #a89488;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .page { padding: 24px 20px 28px; }
  .headline { font-size: 40px; }
  .subhead { font-size: 16.5px; }
  .signup-form { flex-direction: column; border-radius: 22px; padding: 14px; }
  .signup-form input { text-align: center; padding: 6px 0; }
  .signup-form button { width: 100%; padding: 14px; }
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}
