@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --navy: #071b3b;
  --blue: #1268ff;
  --light-blue: #dff4ff;
  --red: #d40000;
  --orange: #ff8a00;
  --yellow: #ffc928;
  --green: #28a85b;
  --ink: #0b2447;
  --muted: #53687f;
  --card: #ffffff;
  --shadow: 0 22px 55px rgba(5, 27, 62, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f3f9ff;
}

a { color: inherit; }

.top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #071b3b 0%, #051532 100%);
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: clamp(18px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.top-banner span:not(.star) {
  color: #fff;
}

.top-banner span:not(.star)::first-letter {
  color: #fff;
}

.top-banner .star,
.top-banner span:not(.star) {
  line-height: 1.1;
}

.top-banner .star {
  color: var(--yellow);
  font-size: 1.3em;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.4));
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  padding: 20px 18px 42px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.78), rgba(255,255,255,0) 20%),
    linear-gradient(180deg, #67c9ff 0%, #bdeeff 38%, #f9ffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -90px;
  height: 230px;
  background: linear-gradient(180deg, #a7e45e 0%, #6fc13f 100%);
  clip-path: ellipse(70% 75% at 50% 100%);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 18%;
  width: 360px;
  height: 210px;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,0.95) 46% 49%, transparent 49% 100%),
    linear-gradient(105deg, #6b6f78 0%, #9aa1aa 50%, #6b6f78 100%);
  border-radius: 100% 20% 0 0;
  transform: perspective(420px) rotateX(58deg) rotateZ(-12deg);
  opacity: 0.34;
}

.sky-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(25deg, transparent 0 48%, rgba(255,255,255,0.28) 49%, transparent 50%) 0 0 / 260px 260px,
    radial-gradient(circle at 68% 10%, rgba(255, 236, 122, 0.55), transparent 22%);
  pointer-events: none;
}

.brand-row,
.hero-grid,
.steps,
.disclaimer-strip,
.footer {
  position: relative;
  z-index: 1;
}

.brand-row {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.05em;
  color: var(--navy);
  line-height: 1;
}

.brand img {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(5, 27, 62, 0.14);
}

.brand span span {
  color: var(--blue);
}

.brand small {
  font-size: 0.42em;
  letter-spacing: -0.02em;
}

.trust-tag {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,0.74);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(5,27,62,0.08);
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 26px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 27, 62, 0.12);
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  margin: 0 0 14px;
  color: #061a3a;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 0 rgba(255,255,255,0.65);
}

h1 span {
  display: block;
  color: var(--red);
}

.subhead {
  max-width: 650px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: #314f70;
  margin: 0 0 18px;
  font-weight: 700;
}

.signup-card {
  position: relative;
  max-width: 660px;
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(18,104,255,0.12);
}

.signup-card .arrow {
  position: absolute;
  left: -36px;
  top: 44%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(18,104,255,0.32);
}

.signup-card h2 {
  margin: 0 0 4px;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 38px);
  text-transform: uppercase;
}

.signup-card p {
  margin: 0 0 14px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input {
  width: 100%;
  min-height: 64px;
  border: 3px solid #113c86;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #263b52;
  outline: none;
}

.lead-form input:focus {
  box-shadow: 0 0 0 5px rgba(18,104,255,0.12);
}

.lead-form button {
  width: 100%;
  min-height: 72px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff9e19 0%, #ff6a00 45%, #e33000 100%);
  color: #fff;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 0 #b92300, 0 18px 30px rgba(227,48,0,0.28);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.lead-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.lead-form button:active {
  transform: translateY(4px);
  box-shadow: 0 6px 0 #b92300, 0 12px 22px rgba(227,48,0,0.2);
}

.form-message {
  min-height: 24px;
  margin-top: 12px;
  text-align: center;
  font-weight: 900;
}

.form-message.success { color: #167a3c; }
.form-message.error { color: #bf2f2f; }

.privacy-note {
  margin-top: 10px;
  text-align: center;
  color: #384f67;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,0.86);
}

.road-sign {
  position: absolute;
  right: -14px;
  bottom: 24px;
  transform: rotate(-4deg);
  background: linear-gradient(180deg, #9b5c21, #6a3816);
  color: #fff;
  border: 4px solid #5b2e13;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.06;
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
  text-align: center;
}

.container {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.steps {
  padding: 34px 0;
  background: #ffffff;
}

.steps h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 46px);
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-grid article {
  background: #f6fbff;
  border: 1px solid rgba(11,36,71,0.08);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 12px 26px rgba(5,27,62,0.06);
}

.step-grid .icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
}

.step-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.step-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.disclaimer-strip {
  background: #f8fbff;
  padding: 18px 0;
  border-top: 1px solid rgba(11,36,71,0.08);
  color: #4b627d;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  background: #ffffff;
  border-top: 1px solid rgba(11,36,71,0.1);
  padding: 22px 18px 28px;
  text-align: center;
  color: #455b75;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer a {
  font-weight: 900;
  text-decoration: none;
  color: var(--navy);
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  margin: 6px auto 0;
  max-width: 1000px;
  font-size: 13px;
  line-height: 1.5;
}

.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;
}

.legal-page {
  width: min(920px, calc(100% - 28px));
  margin: 28px auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.12);
}

.legal-page h1 {
  margin-top: 0;
  color: #102c52;
}

.legal-page p,
.legal-page li {
  line-height: 1.7;
  color: #465c76;
}

.back-link {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #102c52;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 720px;
    margin: 0 auto;
  }

  .signup-card {
    max-width: none;
  }

  .signup-card .arrow {
    left: 18px;
    top: -28px;
    transform: rotate(90deg);
  }

  .step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-banner {
    font-size: 15px;
  }

  .brand-row {
    justify-content: center;
    text-align: center;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .trust-tag {
    font-size: 12px;
  }

  .hero {
    padding: 16px 12px 28px;
  }

  .signup-card {
    padding: 18px;
  }

  .lead-form button {
    font-size: 24px;
  }

  .road-sign {
    display: none;
  }
}
