:root {
  --navy-50: #eaebf2;
  --navy-100: #c9cce0;
  --navy-300: #818ab7;
  --navy-400: #6571a7;
  --navy-500: #495897;
  --navy-800: #2d386a;
  --navy-900: #222e5a;
  --navy-950: #161d3d;
  --orange-100: #ffedd5;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --radius: 0.75rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--gray-900);
  background: var(--navy-100);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, p { margin: 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.icon { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 1.1rem; height: 1.1rem; }
.icon--check { width: 1.25rem; height: 1.25rem; stroke: var(--orange-400); flex-shrink: 0; }

/* Header */
.header {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1rem;
}
.header__logo { height: 3.5rem; width: auto; }
@media (min-width: 768px) { .header__logo { height: 4.5rem; } }
.header__right { display: none; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .header__right { display: flex; } }
.header__city { font-size: 1rem; font-weight: 600; color: var(--navy-800); }
.header__badge-text { font-size: 0.85rem; color: var(--navy-500); margin-top: 2px; }
.header__mascot { height: 5.5rem; width: auto; }
.header__mascot--mobile { height: 4.5rem; display: block; }
@media (min-width: 768px) { .header__mascot--mobile { display: none; } }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, var(--navy-900), var(--navy-800), var(--navy-900));
}
.hero__glow {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(249,115,22,0.12), transparent);
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding: 3.5rem 1rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; padding: 6rem 2rem; }
}
.hero__content { color: #fff; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(to right, var(--orange-500), var(--orange-600));
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 10px 25px -5px rgba(249,115,22,0.3);
  margin-bottom: 1.5rem;
}
.hero__title { font-size: 2.25rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.5rem; } }
.hero__title-accent {
  display: block;
  background: linear-gradient(to right, var(--orange-400), #facc15);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: 1.1rem; color: #e5e7eb; margin-bottom: 2rem; line-height: 1.6; }
@media (min-width: 768px) { .hero__lead { font-size: 1.25rem; } }
.hero__checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.hero__check-item { display: flex; align-items: center; gap: 0.75rem; }
.hero__social { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: #d1d5db; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: linear-gradient(to bottom right, var(--orange-400), var(--orange-600));
  border: 2px solid var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 0.7rem;
  margin-left: -0.5rem;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__social strong { color: #fff; }

/* Form card */
.hero__form { position: relative; scroll-margin-top: 7rem; }
.card {
  background: #fff; border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
  padding: 2rem;
}
.card__header { text-align: center; margin-bottom: 1.5rem; }
.card__header h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.card__header p { color: var(--gray-500); margin-top: 0.25rem; }

.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 500; color: #374151; margin-bottom: 0.35rem; font-size: 0.92rem; }
.field input {
  width: 100%; height: 3rem; padding: 0 1rem;
  border: 1px solid var(--gray-200); border-radius: 0.5rem;
  font-size: 1rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  outline: none; border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.field input.uppercase { text-transform: uppercase; }
.field input:invalid.touched { border-color: #dc2626; }

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

.form-msg { border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.9rem; margin-bottom: 1rem; }
.form-msg--error { background: #fef2f2; color: #dc2626; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: none; cursor: pointer; font-family: inherit;
  font-weight: 600; border-radius: 0.75rem;
  transition: box-shadow .25s, transform .25s, opacity .2s;
}
.btn--primary {
  background: linear-gradient(to right, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: 0 10px 20px -6px rgba(249,115,22,0.4);
}
.btn--primary:hover { box-shadow: 0 15px 25px -6px rgba(249,115,22,0.55); }
.btn--primary:disabled { opacity: 0.7; cursor: not-allowed; }
.btn--block { width: 100%; height: 3.5rem; font-size: 1.1rem; margin-top: 0.25rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn--lg:hover { transform: scale(1.05); }
.btn--outline {
  background: transparent; border: 1.5px solid var(--orange-500); color: var(--orange-500);
  padding: 0.65rem 1.5rem;
}
.btn--outline:hover { background: var(--orange-500); color: #fff; }

.form-disclaimer { font-size: 0.75rem; color: #9ca3af; text-align: center; margin-top: 1rem; }

.card--success { text-align: center; }
.success-icon {
  width: 4rem; height: 4rem; border-radius: 999px; background: #dcfce7;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.success-icon .icon { stroke: #16a34a; width: 2rem; height: 2rem; }
.card--success h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.card--success p { color: var(--gray-600); margin-bottom: 1.5rem; }

/* Stats */
.stats { background: linear-gradient(to right, var(--orange-500), var(--orange-600)); padding: 3rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__value { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
@media (min-width: 768px) { .stat__value { font-size: 2.75rem; } }
.stat__label { color: var(--orange-100); font-size: 0.9rem; font-weight: 500; }

/* Benefits */
.benefits { padding: 5rem 0; background: var(--navy-100); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: 1.875rem; font-weight: 800; color: var(--navy-900); margin-bottom: 1rem; }
@media (min-width: 768px) { .section-head h2 { font-size: 2.25rem; } }
.section-head p { color: var(--navy-500); font-size: 1.1rem; }

.benefits__grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: #fff; border-radius: 0.9rem; padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
  transition: box-shadow .3s, border-color .3s;
}
.benefit-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12); border-color: rgba(249,115,22,0.2); }
.benefit-card__icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--orange-400), var(--orange-600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 15px -3px rgba(249,115,22,0.2);
}
.benefit-card__icon .icon { stroke: #fff; width: 1.75rem; height: 1.75rem; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.benefit-card p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; }

/* CTA */
.cta { padding: 5rem 0; background: var(--navy-900); position: relative; overflow: hidden; }
.cta__glow { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(249,115,22,0.1), transparent); }
.cta__inner { position: relative; max-width: 720px; text-align: center; }
.cta__inner h2 { font-size: 1.875rem; font-weight: 800; color: #fff; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta__inner h2 { font-size: 2.25rem; } }
.cta__inner p { color: var(--navy-300); font-size: 1.1rem; margin-bottom: 2rem; }

/* Footer */
.footer { background: var(--navy-900); border-top: 1px solid var(--navy-800); padding: 3rem 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__banner { height: 5.5rem; width: auto; }
.footer__text p { color: var(--navy-400); font-size: 0.9rem; }
.footer__text-strong { color: #fff; font-weight: 600; margin-top: 0.25rem; }
.footer__bottom { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--navy-800); text-align: center; color: var(--navy-500); font-size: 0.85rem; }
