:root {
  --red: #0063c2;
  --red-dark: #c1141b;
  --bg-overlay: rgba(10, 12, 16, 0.55);
  --card: #ffffff;
  --muted: #cfd4da;
  --text: #fff;
  --pill: #1f232b;
  --pill-active: #ffffff;
  --pill-text: #b9c1ca;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Onest", sans-serif;
  line-height: 130%;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial;
  display: grid;
  place-items: center;
  background: #0b0d12;
}

/* Background image with blur & overlay */
.bg {
  position: fixed;
  inset: 0;
  background: url("../img/bg.jpg?v=5") center/cover no-repeat;
  filter: blur(3px) brightness(0.75);
  -webkit-filter: blur(3px) brightness(0.45);
  transform: scale(1.03);
  z-index: -2;
}

.container {
  width: 100%;
  max-width: 760px;
  padding: 28px 18px 52px;
  position: relative;
}

/* Header */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: saturate(120%);
  width: max-content;
  padding: 8px 12px;
  border-radius: 10px;
  margin: 0 auto;
}
.brand svg {
  width: 28px;
  height: 28px;
}
.brand-title {
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  margin-top: 10px;
  text-align: center;
}
.hero h1 {
  margin: 14px 0 8px;
  font-size: 36px;
  font-weight: 700;
}
.hero .accent {
}
.hero .accent b {
  background-color: var(--red);
  color: #fff;
  padding: 0 0.15em;
  border-radius: 6px;
}
.sub {
  margin: 6px 0 18px;
  opacity: 0.9;
  font-weight: 500;
}

/* Card */
.card {
  width: min(760px, 100%);
  margin: 18px auto 0;

  border-radius: 18px;
  padding: 18px 0;
}

p {
  font-size: 20px;
}

/* Age pills */
.pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 6px auto 16px;
}
.pill {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}
.pill.active {
  background: var(--pill-active);
  color: #0b0d12;
  border-color: transparent;
}

/* Form row */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.row-3 {
  margin-top: 12px;
}


.input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 0;
  background: transparent;

  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;

  font-size: 22px;
}
.input::placeholder {
  color: #fff;
}

.cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(229, 27, 35, 0.35);
}
.btn:hover {
  background: var(--red-dark);
}

.note {
  margin: 10px auto 0;
  max-width: 640px;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  font-weight: 400;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #e4e4e4;
}

/* Social proof pill */
.proof {
  width: 100%;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  color: #0b0d12;
  border-radius: 14px;
  padding: 20px 14px;
  box-shadow: var(--shadow);
}

.proof b {
  font-weight: 800;
}

/* Testimonial card */
.testimonial {
  margin: 12px auto 0;
  background: #fff;
  color: #0b0d12;
  border-radius: 16px;
  padding: 20px 14px;
  box-shadow: var(--shadow);
  width: 100%;
  display: flex;

  gap: 12px;
}
.testimonial img {
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.t-name {
  font-weight: 700;
  font-size: 18px;
}
.t-role {
  font-size: 14px;
  opacity: 0.7;
}
.quote {
  margin-top: 20px;
  line-height: 1.45;
  font-size: 18px;

}

/* Gov badge */
.gov {
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  background: #fff;
  color: #DC143C;
  border-radius: 6666px;
  padding: 8px 12px;
  font-weight: 400;
  box-shadow: var(--shadow);
}
.shield {
  width: 18px;
  height: 18px;
}



@media (max-width: 720px) {
  .row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 22px;
  }
  p {
    font-size: 18px;
  }
  .note {
    font-size: 13px;
  }
  .proof, .testimonial {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .t-name, .quote {
    font-size: 14px;
  }
.pill {
    padding: 10px;
    font-weight: 400;
    font-size: 20px;
}
.input {
    font-size: 20px;

}

}