:root {
  --buni-red: #c91414;
  --buni-red-dark: #9f0d13;
  --buni-blue: #003362;
  --buni-blue-deep: #00284d;
  --buni-blue-soft: #0b5d88;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --ink: #11243a;
  --muted: #667789;
  --line: #dce3eb;
  --success: #21a66d;
  --danger: #df3b5a;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shadow: 0 28px 80px rgba(0, 31, 61, .18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--buni-blue);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(255,255,255,.85); outline-offset: 3px; }
.button-primary { background: var(--buni-red); color: var(--white); box-shadow: 0 12px 28px rgba(201,20,20,.24); }
.button-primary:hover { background: var(--buni-red-dark); box-shadow: 0 16px 34px rgba(201,20,20,.32); }
.button-light { background: var(--white); color: var(--buni-blue); box-shadow: 0 12px 32px rgba(0,0,0,.14); }
.button-light:hover { color: var(--buni-red); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.18); }
.button-block { width: 100%; }

.section { position: relative; padding: 104px 0; overflow: hidden; }
.section-blue { background: var(--buni-blue); color: var(--white); }
.section-red { background: var(--buni-red); color: var(--white); }
.section-light { background: var(--off-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--buni-red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.eyebrow-light { color: var(--white); }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .about h2, .eligibility h2, .closing h2, .faq-intro h2, .legal h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.section-heading p, .faq-intro p { margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-heading-light p { color: rgba(255,255,255,.78); }

.check-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--buni-red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
}
.check-list-light li::before { background: var(--white); color: var(--buni-red); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-heading h2, .about h2, .eligibility h2, .closing h2, .faq-intro h2, .legal h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .button { width: 100%; }
}
