:root {
  --eds-navy: #01285b;
  --eds-cyan: #02a3dc;
  --eds-gray: #878787;
  --ink: var(--eds-navy);
  --muted: #526273;
  --line: #dbe4ea;
  --paper: #f3f8fa;
  --accent-soft: #e7f6fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

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

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 9px 13px;
  color: var(--eds-navy);
  background: var(--eds-cyan);
  border-radius: 6px;
  font-weight: 700;
}

.hero {
  display: grid;
  min-height: calc(100svh - 148px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  border-bottom: 8px solid var(--eds-cyan);
  background: var(--eds-navy);
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--eds-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.7vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--eds-navy);
  background: var(--eds-cyan);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.hero-visual {
  width: min(560px, 100%);
  margin: 0;
  justify-self: end;
  border: 2px solid rgba(2, 163, 220, 0.72);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section,
.band,
.contact {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading::after {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 18px;
  background: var(--eds-cyan);
  content: "";
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

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

.outcomes article,
.module {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.band {
  background: var(--paper);
}

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

.module span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--eds-cyan);
  font-weight: 700;
}

.two-col,
.format,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

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

.check-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--eds-cyan);
  background: var(--paper);
  color: var(--ink);
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-list p {
  margin: 0;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact {
  align-items: center;
  color: var(--white);
  border-top: 8px solid var(--eds-cyan);
  background: var(--eds-navy);
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact .button {
  justify-self: end;
}

@media (max-width: 860px) {
  .topbar {
    position: static;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .two-col,
  .format,
  .contact,
  .outcomes,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 28px 20px 32px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    justify-self: start;
  }

  .hero-visual img {
    height: auto;
  }


  .contact .button {
    justify-self: start;
  }

}

@media (max-width: 1100px) and (min-width: 861px) {
  .outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

