:root {
  --navy: #061743;
  --blue: #0047b3;
  --blue-2: #0a5fe8;
  --red: #e3202a;
  --ink: #07183d;
  --muted: #586a8c;
  --line: #d8e2f0;
  --white: #ffffff;
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 71, 179, .10), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(10, 95, 232, .08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 23, 67, .96);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--content-max), calc(100% - 36px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.brand img {
  width: 214px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav a,
.header-panel-link {
  text-decoration: none;
}

.nav .is-active {
  color: #9ec4ff;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 44px;
  border: 2px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(227, 32, 42, .92);
  box-shadow: 0 16px 34px rgba(227, 32, 42, .24);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.nav-mobile-links,
.nav-mobile-link {
  display: none;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 23, 67, .96);
  backdrop-filter: blur(18px);
}

.page-header-inner {
  width: min(var(--content-max), calc(100% - 36px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.page-brand img {
  width: 244px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.page-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.page-nav a,
.page-cta {
  text-decoration: none;
}

.page-nav .is-active {
  color: #9ec4ff;
}

.page-cta {
  min-width: 218px;
  border: 2px solid var(--white);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(0, 71, 179, .92);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

main {
  padding-top: 84px;
  padding-bottom: 72px;
}

.requirements-hero,
.requirements-grid,
.downloads-section,
.compliance-section,
.cta-section {
  width: min(var(--content-max), calc(100% - 40px));
  margin-inline: auto;
}

.requirements-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: 26px;
  align-items: stretch;
  padding: 54px 0 30px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.hero-text,
.section-heading p,
.cta-card p {
  margin: 16px 0 0;
  color: #243b6c;
  font-size: 18px;
  line-height: 1.55;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(0, 71, 179, .12);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 24px rgba(6, 23, 67, .06);
  font-size: 14px;
  font-weight: 500;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-panel-card,
.hero-panel-grid article,
.requirement-card,
.download-card,
.compliance-grid article,
.cta-card {
  border: 1px solid rgba(0, 71, 179, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 50px rgba(6, 23, 67, .08);
}

.hero-panel-card {
  padding: 24px;
}

.hero-panel-card strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}

.hero-panel-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-panel-grid {
  display: grid;
  gap: 14px;
}

.hero-panel-grid article {
  padding: 18px 20px;
}

.hero-panel-grid span {
  display: block;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
}

.hero-panel-grid p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 8px 0 56px;
}

.requirement-card {
  padding: 28px;
}

.accent-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 71, 179, .08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,255,.98));
}

.card-head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.card-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.card-note {
  margin: 14px 0 0;
  color: #4b5f84;
  font-size: 16px;
  line-height: 1.5;
}

.requirement-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.requirement-card li {
  margin-bottom: 10px;
  color: #223a68;
  font-size: 17px;
  line-height: 1.5;
}

.downloads-section {
  padding: 0 0 56px;
}

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

.section-heading h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}

.section-heading p {
  margin-top: 14px;
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
}

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

.downloads-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.download-card,
.compliance-grid article {
  padding: 24px;
}

.download-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.download-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #ffffff, #edf4ff);
  box-shadow: 0 14px 28px rgba(0, 71, 179, .10);
}

.download-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-card h3,
.compliance-grid strong {
  display: block;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.download-card p,
.compliance-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.download-card a,
.cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  border-radius: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 30px rgba(0, 71, 179, .18);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.download-card a {
  align-self: flex-start;
  margin-top: auto;
}

.compliance-section {
  padding: 0 0 56px;
}

.section-heading.narrow {
  max-width: 700px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 71, 179, .12), transparent 34%),
    linear-gradient(135deg, #f7faff, #ffffff);
}

footer {
  display: grid;
  gap: 28px;
  padding: 30px max(30px, calc((100% - var(--content-max)) / 2)) 24px;
  color: var(--white);
  background: #061b4a;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand-row {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-brand-row img {
  width: 178px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-row p {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 82px);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-block h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
}

.footer-block p,
.footer-block strong {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: #8db6ff;
  flex: 0 0 auto;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.footer-social > span {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}

.footer-social-list svg {
  width: 22px;
  height: 22px;
}

.footer-social-list .instagram-pill svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-list .facebook-pill svg,
.footer-social-list .tiktok-pill svg {
  fill: currentColor;
}

.instagram-pill {
  color: #ff287e;
}

.facebook-pill {
  color: #1977f3;
}

.tiktok-pill {
  color: var(--white);
}

.footer-branch-list {
  display: grid;
  gap: 14px;
}

footer a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.4;
}

.page-footer {
  padding: 40px max(18px, calc((100% - var(--content-max)) / 2)) 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(10, 95, 232, .18), transparent 30%),
    linear-gradient(180deg, #07183d 0%, #061743 100%);
}

.page-footer-brand {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.page-footer-brand img {
  width: 180px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.page-footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
}

.page-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.page-footer-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 18px;
}

.page-footer-grid p,
.page-footer-grid strong {
  margin: 0 0 8px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.55;
}

.page-footer-grid a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .page-header-inner {
    grid-template-columns: 1fr auto;
  }

  .page-brand img {
    width: 168px;
  }

  .page-nav {
    display: none;
  }

  .requirements-hero,
  .requirements-grid,
  .compliance-grid,
  .cta-card,
  .page-footer-grid {
    grid-template-columns: 1fr;
  }

  .downloads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-card h2 {
    font-size: 36px;
  }

  .page-cta {
    min-width: 144px;
    padding-inline: 12px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .requirements-hero,
  .requirements-grid,
  .downloads-section,
  .compliance-section,
  .cta-section {
    width: min(100% - 32px, var(--content-max));
  }

  .requirements-hero {
    padding-top: 36px;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-card h2 {
    font-size: 31px;
  }

  .hero-text,
  .section-heading p,
  .cta-card p {
    font-size: 16px;
  }

  .requirement-card,
  .download-card,
  .compliance-grid article,
  .cta-card,
  .hero-panel-card,
  .hero-panel-grid article {
    padding: 20px;
  }

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

  .card-head h2 {
    font-size: 24px;
  }

  .requirement-card li,
  .download-card p,
  .compliance-grid p {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .brand img {
    width: 154px;
    max-height: 48px;
  }

  .header-panel-link {
    min-width: 148px;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 28px, var(--content-max));
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    gap: 10px 12px;
    padding: 12px 0;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .brand img {
    width: min(100%, 148px);
    max-height: 38px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
    width: 46px;
    height: 46px;
  }

  .nav {
    display: none;
    grid-area: nav;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(214, 224, 238, .95);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    color: var(--navy);
    box-shadow: 0 20px 42px rgba(6, 23, 67, .18);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    background: rgba(245, 248, 253, .96);
    color: var(--navy);
  }

  .nav .is-active {
    color: var(--blue);
  }

  .nav-mobile-links {
    display: grid;
    gap: 10px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(214, 224, 238, .95);
  }

  .nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
  }

  .nav-mobile-link.panel {
    border: 1px solid rgba(227, 32, 42, .22);
    color: var(--white);
    background: rgba(227, 32, 42, .94);
    box-shadow: 0 14px 28px rgba(227, 32, 42, .22);
  }

  .header-actions {
    display: none;
  }

  main {
    padding-top: 70px;
  }
}

@media (max-width: 560px) {
  footer {
    padding-inline: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand-row img {
    width: 158px;
  }
}
