:root {
  --orange-a: #ff9600;
  --orange-b: #ff6f00;
  --cream: #fff9f0;
  --ink: #4b4b4b;
  --muted: #6a6a6a;
  --green: #58cc02;
  --red: #ff4b4b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: radial-gradient(circle at top, #fff5e5 0%, var(--cream) 62%);
}

body {
  margin: 0;
  font-family: 'Fredoka', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff5e5 0%, var(--cream) 62%);
  min-height: 100vh;
  min-height: 100dvh;
}

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 20px 36px;
}

.hero {
  text-align: center;
  margin-bottom: 22px;
}

.logo-wrap {
  width: min(240px, 62vw);
  margin: 0 auto 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgb(255 130 0 / 0.45))
    drop-shadow(0 0 30px rgb(255 130 0 / 0.35))
    drop-shadow(0 12px 24px rgb(255 130 0 / 0.26));
}

.brand {
  margin: 0;
  font-size: clamp(42px, 8vw, 62px);
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(145deg, var(--orange-a), var(--orange-b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.card {
  background: #fffefb;
  border: 2px solid #f2f2f2;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 8px 22px rgb(0 0 0 / 0.06);
}

.card h2 {
  margin: 0 0 6px;
  font-size: 34px;
  text-align: center;
}

.copy {
  margin: 0 0 18px;
  color: var(--muted);
  text-align: center;
}

form {
  display: grid;
  gap: 12px;
}

input[type='email'] {
  width: 100%;
  border: 2px solid #ececec;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-family: inherit;
  font-size: 18px;
  padding: 14px 16px;
  outline: none;
}

input[type='email']:focus {
  border-color: var(--orange-a);
}

button {
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--orange-a), var(--orange-b));
  color: white;
  font-family: inherit;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 16px;
  cursor: pointer;
  box-shadow: 0 7px 0 #cf6f00;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.status {
  min-height: 22px;
  margin: 2px 0 0;
  font-size: 15px;
}

.status.success {
  color: #1f7a1f;
}

.status.error {
  color: var(--red);
}

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

.honeypot {
  display: none;
}

@media (max-width: 520px) {
  .logo-wrap {
    width: min(210px, 72vw);
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 18px;
  }
}

.powered-by {
  margin: 18px auto 0;
  text-align: center;
  max-width: 500px;
}

.powered-line {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
}

.powered-cathchat {
  background: linear-gradient(145deg, var(--orange-a), var(--orange-b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.powered-lumen {
  color: #f4bd3b;
}

.lumen-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.lumen-cta-wrap {
  margin: 12px 0 0;
}

.lumen-link {
  color: #f4bd3b;
  font-weight: 700;
  text-decoration: none;
}

.lumen-link:hover {
  text-decoration: underline;
}

.lumen-cta {
  display: inline-block;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #6a4700;
  background: linear-gradient(145deg, #ffd870, #f4bd3b);
  box-shadow: 0 4px 0 #d59a18;
}

.lumen-cta:hover {
  filter: brightness(1.03);
}
