:root {
  --cream: #faf1de;
  --cream-2: #f2e3c4;
  --paper: #fffdf8;
  --navy: #123047;
  --navy-2: #0d2436;
  --ink-muted: #4d6579;
  --teal: #2f8f83;
  --teal-dark: #226a61;
  --orange: #e0993c;
  --orange-dark: #c97a22;
  --border: rgba(18, 48, 71, 0.16);
  --shadow: 0 16px 40px rgba(18, 48, 71, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-display: "Fredoka", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--paper);
  background: var(--orange);
  padding: 2px 8px;
  border-radius: 999px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 40px 0 48px;
}

.stamp {
  margin-bottom: 28px;
  filter: drop-shadow(0 6px 14px rgba(18, 48, 71, 0.15));
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 21ch;
  color: var(--navy);
}

.highlight {
  color: var(--navy-2);
  background-image: linear-gradient(rgba(224, 153, 60, 0.45), rgba(224, 153, 60, 0.45));
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 88%;
  padding: 0 2px;
}

.lede {
  margin: 0 0 28px;
  max-width: 44ch;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(224, 153, 60, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 153, 60, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(224, 153, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 153, 60, 0);
  }
}

.notify-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  gap: 10px;
  padding: 6px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
}

.notify-form input::placeholder {
  color: #93a3af;
}

.notify-form input:invalid.touched {
  outline: 1px solid #c1543a;
  border-radius: var(--radius-md);
}

.notify-form button {
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--paper);
  background: var(--orange);
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.notify-form button:active {
  transform: translateY(0);
}

.notify-form.success button {
  background: var(--teal);
}

.form-hint {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  min-height: 1.2em;
}

.form-hint.success {
  color: var(--teal-dark);
  font-weight: 600;
}

.form-hint.error {
  color: #c1543a;
  font-weight: 600;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

.feature-icon {
  font-size: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: currentColor;
}

.social-link.whatsapp {
  color: #1f9e56;
}

.social-link.instagram {
  color: #c1366d;
}

.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
}

.footer {
  text-align: center;
  padding: 18px 0 20px;
  background: var(--navy);
}

.footer p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(250, 241, 222, 0.7);
}

@media (max-width: 480px) {
  .notify-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .notify-form button {
    width: 100%;
  }
}
