@import url("https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700;800&display=swap");

:root {
  --color-navy: #153a5b;
  --color-blue: #1268b3;
  --color-blue-dark: #0b4f8d;
  --color-sky: #e8f4ff;
  --color-sky-strong: #cfe9ff;
  --color-teal: #0f766e;
  --color-gold: #f6bd3a;
  --color-cream: #fbf7ef;
  --color-white: #ffffff;
  --color-ink: #182431;
  --color-muted: #607080;
  --color-border: #d8e5ef;
  --color-placeholder: #f2f7fb;

  --shadow-soft: 0 18px 45px rgba(21, 58, 91, 0.12);
  --shadow-card: 0 10px 28px rgba(21, 58, 91, 0.10);

  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 28px;

  --container: 1180px;
  --font-main: "Google Sans", Arial, Helvetica, sans-serif;

  --focus-ring: 0 0 0 4px rgba(246, 189, 58, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-ink);
  background: var(--color-white);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-blue-dark);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-teal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

p {
  margin-top: 0;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--color-gold);
  color: var(--color-ink);
  padding: 12px 18px;
  border-radius: var(--radius-small);
}

.skip-link:focus {
  top: 16px;
}

/* Header */

.top-bar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 16px;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  padding: 10px 0;
}

.top-bar a {
  color: var(--color-white);
}

.top-bar a:hover {
  color: var(--color-gold);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-main {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-navy);
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 245px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav a {
  color: var(--color-ink);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

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

.menu-toggle,
.menu-button {
  display: none;
}

/* Hero */

.hero {
  background:
    radial-gradient(circle at 90% 12%, rgba(246, 189, 58, 0.24), transparent 28%),
    linear-gradient(120deg, rgba(21, 58, 91, 0.98), rgba(18, 104, 179, 0.88)),
    var(--color-navy);
  color: var(--color-white);
  padding: 66px 0 88px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero__lead {
  font-size: clamp(20px, 2.2vw, 24px);
  max-width: 680px;
  margin: 0 0 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 20px;
  font-weight: 800;
}

.hero .eyebrow,
.eyebrow--light {
  color: var(--color-gold);
}

.hero .eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.hero .eyebrow::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: var(--radius-medium);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  border: 2px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(21, 58, 91, 0.18);
}

.button--primary {
  background: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.button--primary:hover {
  background: #ffd25c;
  color: var(--color-ink);
}

.button--secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-border);
}

.button--secondary:hover {
  background: var(--color-sky);
  border-color: var(--color-blue);
  color: var(--color-navy);
}

.button--light {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.button--light:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-ink);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.section--blue .button--light,
.section--blue .button--light:visited {
  color: var(--color-navy);
}

.section--blue .button--light:hover {
  color: var(--color-ink);
}

.helper-text {
  font-size: 16px;
  opacity: 0.94;
  margin: 0;
}

/* Image placeholders */

.image-placeholder {
  min-height: 360px;
  width: 100%;
  border: 3px dashed rgba(18, 104, 179, 0.35);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(232, 244, 255, 0.92)),
    var(--color-placeholder);
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 28px 28px auto auto;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, var(--color-sky-strong), var(--color-white));
  border: 1px solid var(--color-border);
}

.image-placeholder::after {
  content: "Image Placeholder";
  position: absolute;
  top: 58px;
  right: 52px;
  color: var(--color-blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
}

.image-placeholder span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-placeholder strong {
  display: block;
  max-width: 520px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero .image-placeholder {
  min-height: 430px;
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.92)),
    var(--color-white);
}

/* Quick action cards */

.quick-actions {
  margin-top: -42px;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 42px,
      var(--color-cream) 42px,
      var(--color-cream) 100%
    );
  padding-bottom: 20px;
}

.quick-actions__grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.action-card,
.step-card,
.info-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.action-card--highlight {
  border-top: 6px solid var(--color-gold);
}

.action-card h2,
.step-card h3,
.info-panel h3 {
  margin-top: 0;
  color: var(--color-navy);
  line-height: 1.2;
}

.action-card p,
.step-card p {
  margin-bottom: 18px;
}

/* Sections */

.section {
  padding: 76px 0;
}

.section--light {
  background: var(--color-cream);
}

.section--blue {
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 189, 58, 0.18), transparent 32%),
    var(--color-navy);
  color: var(--color-white);
}

.section--blue a {
  color: var(--color-white);
}

.split-layout,
.support-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.section h2 {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section--blue h2 {
  color: var(--color-white);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin: 0 0 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-teal);
  font-weight: 900;
}

.section-heading {
  text-align: center;
  max-width: 760px;
}

/* Steps */

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-sky);
  color: var(--color-navy);
  font-weight: 900;
  margin-bottom: 18px;
}

/* CTA band */

.cta-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.cta-band .button {
  justify-self: end;
  white-space: nowrap;
}

.cta-band p:last-child {
  margin-bottom: 0;
}

/* Support section */

.support-grid .image-placeholder {
  min-height: 420px;
}

/* Footer */

.site-footer {
  background: #10253a;
  color: var(--color-white);
  padding: 54px 0 24px;
}

.site-footer a {
  color: var(--color-white);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Tablet */

@media (max-width: 1060px) {
  .top-bar {
    display: none;
  }
}

  .main-nav a {
    padding-inline: 10px;
    font-size: 15px;
  }

/* Mobile */

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  body {
    font-size: 17px;
  }
  .header-main {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 0;
  }

  .brand img {
    width: 220px;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-medium);
    font-weight: 800;
    cursor: pointer;
    background: var(--color-white);
    color: var(--color-navy);
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }

  .main-nav a {
    border-radius: var(--radius-small);
    background: var(--color-cream);
    padding: 14px 16px;
    font-size: 17px;
  }

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

  .hero__grid,
  .split-layout,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions__grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .hero .image-placeholder,
  .image-placeholder,
  .support-grid .image-placeholder {
    min-height: 300px;
  }
}

/* Small mobile */

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-bar__inner {
    justify-content: flex-start;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    padding: 52px 0 66px;
  }

  .button {
    width: 100%;
  }

  .cta-band .button {
    width: 100%;
    white-space: normal;
  }

  .section {
    padding: 56px 0;
  }

  .action-card,
  .step-card,
  .info-panel,
  .image-placeholder {
    padding: 22px;
  }

  .image-placeholder::before,
  .image-placeholder::after {
    display: none;
  }
}