:root {
  --navy: #061a33;
  --navy-soft: #102b50;
  --red: #e3333d;
  --red-dark: #bd1f2e;
  --text: #132238;
  --muted: #607086;
  --line: #dde5ef;
  --surface: #ffffff;
  --soft: #f5f7fb;
  --soft-blue: #eaf1fb;
  --shadow: 0 18px 45px rgba(6, 26, 51, 0.10);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 58%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(190px, 19vw, 260px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  color: #34465d;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 9px 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--soft-blue);
  color: var(--navy);
}

.site-nav .nav-cta {
  background: var(--red);
  color: #ffffff;
  margin-left: 4px;
}

.site-nav .nav-cta:hover {
  background: var(--red-dark);
  color: #ffffff;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 34px 0 56px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.lead,
.section-heading p,
.page-hero p,
.contact-panel p,
.campaign-band p,
.notice p,
.policy p,
.policy li {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  padding: 13px 20px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  box-shadow: 0 12px 28px rgba(227, 51, 61, 0.22);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-light {
  background: #ffffff;
  color: var(--navy);
}

.small-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 51, 61, 0.14), transparent 28%),
    radial-gradient(circle at 76% 32%, rgba(16, 43, 80, 0.16), transparent 26%),
    linear-gradient(135deg, #eef4fc, #ffffff);
}

.hero-media img {
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(6, 26, 51, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.align-left {
  margin: 0;
  text-align: left;
}

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

.card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(6, 26, 51, 0.06);
  padding: 26px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef4fc, #ffffff);
  color: var(--red);
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(6, 26, 51, 0.08);
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.campaign-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 16px;
  background:
    linear-gradient(130deg, rgba(227, 51, 61, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  padding: 36px;
}

.campaign-band h2,
.campaign-band p {
  color: #ffffff;
}

.campaign-band p {
  max-width: 770px;
  margin-bottom: 0;
  opacity: 0.86;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #293b52;
  font-weight: 750;
  padding: 17px 18px 17px 50px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(227, 51, 61, 0.12);
}

.notice {
  border: 1px solid #f0c9cd;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fff8f9;
  margin: 28px 0 82px;
  padding: 26px;
}

.notice h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.notice p {
  margin-bottom: 0;
}

.page-hero,
.contact-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: 92px 0 72px;
}

.page-hero h1,
.contact-panel h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.policy {
  max-width: 860px;
}

.policy h2 {
  font-size: 1.5rem;
  margin: 34px 0 10px;
}

.policy ul {
  color: var(--muted);
  padding-left: 22px;
}

.text-link {
  color: var(--red-dark);
  font-weight: 800;
}

.contact-panel {
  min-height: 58vh;
  text-align: center;
}

.contact-panel .button {
  margin: 16px 0 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  padding: 34px max(16px, calc((100% - 1180px) / 2));
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 14px;
}

.site-footer a {
  color: #34465d;
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red-dark);
}

.site-footer p {
  max-width: 820px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 168px;
  }

  .nav-toggle-label {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
  }

  .nav-toggle-label span {
    position: relative;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-label span::before {
    top: -6px;
  }

  .nav-toggle-label span::after {
    top: 6px;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-media {
    order: -1;
  }

  .card-grid,
  .split-section,
  .campaign-band {
    grid-template-columns: 1fr;
  }

  .campaign-band .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-bottom: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .hero-media::before {
    inset: -8px;
    border-radius: 18px;
  }

  .hero-media img {
    border-radius: 12px;
  }

  .section {
    padding: 56px 0;
  }

  .campaign-band {
    border-radius: 12px;
    padding: 26px;
  }

  .campaign-band .button {
    justify-self: stretch;
  }

  .page-hero,
  .contact-panel {
    padding: 70px 0 54px;
  }
}
