:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: rgba(18, 21, 48, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --text: #f8fbff;
  --muted: #cbd5eb;
  --brand: #18a957;
  --brand-dark: #0b7f3d;
  --accent: #ffb526;
  --orange: #f47618;
  --blue: #35a8dc;
  --page-deep: #171936;
  --page-deeper: #0e1028;
  --avatar-ring: #ffcf33;
  --border: rgba(255, 207, 51, 0.34);
  --shadow: 0 26px 90px rgba(5, 7, 20, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 181, 38, 0.2), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(53, 168, 220, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--page-deep) 0%, var(--page-deeper) 100%);
}

.page-shell {
  width: min(100%, 780px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 18px 28px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  padding: 34px 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 181, 38, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(25, 28, 64, 0.94) 0%, rgba(13, 15, 39, 0.92) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.avatar-shell {
  width: 150px;
  height: 150px;
  padding: 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--avatar-ring), var(--orange));
  box-shadow: 0 18px 42px rgba(244, 118, 24, 0.26);
}

.brand-avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid #151730;
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 8vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--text);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.hero-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 6px 0;
}

.trust-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 247, 222, 0.96);
  color: #8a3d05;
  border: 1px solid rgba(255, 216, 107, 0.95);
  font-size: 13px;
  font-weight: 800;
}

.primary-cta {
  width: min(100%, 440px);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(180deg, #1fbd64, var(--brand-dark));
  box-shadow: 0 14px 34px rgba(11, 127, 61, 0.28);
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(11, 127, 61, 0.34);
}

.primary-cta:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.whatsapp-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.status-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status-message.error {
  color: #ffb4a9;
}

.safety-note {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .page-shell {
    padding-top: 22px;
    align-content: start;
  }

  .hero {
    padding: 28px 16px;
    border-radius: 18px;
  }
}
