@font-face {
  font-family: "Garp Wide";
  src: url("./fonts/garp-sans-wide.otf") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto Blueprint";
  src: url("./fonts/roboto-medium.ttf") format("truetype");
  font-weight: 500;
}

:root {
  --ink: #07090b;
  --charcoal: #111315;
  --navy: #112240;
  --steel: #2d3941;
  --blue: #69a1c8;
  --blue-soft: #b8d8ec;
  --electric: #2d72ff;
  --paper: #f6f7f4;
  --off-white: #eef2ec;
  --muted: #65707a;
  --line: rgba(7, 9, 11, 0.12);
  --white-line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Roboto Blueprint", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 9, 11, 0.72);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.brand-menu {
  position: relative;
}

.brand-menu summary {
  list-style: none;
  cursor: pointer;
}

.brand-menu summary::-webkit-details-marker {
  display: none;
}

.brand img {
  width: 142px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand > span {
  display: none;
}

.brand > svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.brand-menu[open] .brand > svg {
  transform: rotate(180deg);
}

.brand-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  width: 270px;
  padding: 8px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.88);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.brand-dropdown a {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  text-transform: uppercase;
}

.brand-dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.brand-dropdown img,
.company-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-dropdown img {
  object-fit: contain;
}

.brand-dropdown a:first-child {
  min-height: 62px;
}

.brand-dropdown a:first-child img {
  width: 148px;
  height: auto;
}

.brand-dropdown a:first-child span {
  display: none;
}

.brand-dropdown a:nth-child(2) {
  min-height: 62px;
}

.brand-dropdown a:nth-child(2) img {
  width: 148px;
  height: auto;
}

.brand-dropdown a:nth-child(2) span {
  display: none;
}

.brand-dropdown a:nth-child(3) {
  min-height: 62px;
}

.brand-dropdown a:nth-child(3) img {
  width: 148px;
  height: auto;
}

.brand-dropdown a:nth-child(3) span {
  display: none;
}

.company-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 216, 236, 0.28);
  border-radius: 8px;
  color: #041016;
  background: var(--blue-soft);
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: 12px;
}

.company-mark.alt {
  color: #fff;
  background: rgba(95, 125, 89, 0.76);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.nav-links a:hover,
.secondary-action:hover,
.program-card a:hover {
  color: #fff;
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-size: 13px;
}

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

.nav-cta,
.primary-action {
  gap: 9px;
  padding: 0 18px;
  color: #041016;
  background: var(--blue-soft);
  box-shadow: 0 14px 30px rgba(105, 161, 200, 0.24);
}

.nav-cta svg,
.primary-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88vh;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 56px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.94) 0%, rgba(7, 9, 11, 0.72) 38%, rgba(7, 9, 11, 0.28) 72%),
    linear-gradient(180deg, rgba(7, 9, 11, 0.18), rgba(7, 9, 11, 0.92)),
    url("./assets/facility_hero.png") center / cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(120deg, #000 0 46%, transparent 82%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--blue-soft);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(105, 161, 200, 0.85);
}

.hero h1 {
  max-width: 830px;
  margin: 18px 0 0;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.45;
}

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

.secondary-action {
  padding: 0 18px;
  border: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 54px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(470px, 46vw);
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.hero-panel div {
  position: relative;
  padding: 18px;
  border-right: 1px solid var(--white-line);
  overflow: hidden;
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--blue-soft);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 6px 0 2px;
  color: #fff;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.programs,
.process,
.facility,
.contact {
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.facility-copy .eyebrow,
.contact .eyebrow {
  color: var(--blue-soft);
}

.section-heading h2,
.process h2,
.facility h2,
.contact h2 {
  margin: 0;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.98;
  text-transform: uppercase;
}

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

.program-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 9, 11, 0.08);
}

.program-card:nth-child(2) {
  background: var(--charcoal);
  color: #fff;
}

.program-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #041016;
  background: var(--blue-soft);
}

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

.program-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.program-card h3 {
  margin: 34px 0 12px;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.program-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.68);
}

.program-card-link {
  display: block;
}

.program-card-link:hover {
  border-color: rgba(105, 161, 200, 0.72);
  box-shadow: 0 22px 58px rgba(105, 161, 200, 0.16);
  transform: translateY(-2px);
}

.program-card a,
.program-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

.program-card:nth-child(2) a,
.program-card:nth-child(2) .program-link {
  color: var(--blue-soft);
}

.program-card:nth-child(3) .program-link {
  color: var(--navy);
}

.program-card:nth-child(1) .program-link {
  color: var(--navy);
}

.proof-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(184, 216, 236, 0.16);
}

.proof-band div {
  min-height: 148px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2 / 3));
  background: var(--navy);
}

.proof-band strong {
  display: block;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
}

.proof-band span {
  display: block;
  max-width: 310px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.process {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(105, 161, 200, 0.16), transparent 38%),
    var(--ink);
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
  overflow: hidden;
}

.app-copy {
  max-width: 760px;
}

.app-copy h2 {
  margin: 14px 0 0;
}

.app-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.55;
}

.app-store-action {
  width: fit-content;
  margin-top: 28px;
}

.app-visual {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  min-height: 430px;
  display: grid;
  place-items: center;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  min-height: 430px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: saturate(0.92) contrast(1.05);
}

.app-feature-list {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-feature-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  text-transform: uppercase;
}

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

.process-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.process-grid span {
  color: var(--blue-soft);
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: 18px;
}

.process-grid h3 {
  margin: 78px 0 12px;
  font-size: 24px;
  text-transform: uppercase;
}

.process-grid p,
.facility-copy p:not(.eyebrow),
.contact p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.facility {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  background: #fff;
}

.facility-copy p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
}

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

.facility-list article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(105, 161, 200, 0.12), transparent 42%),
    #f1f3ef;
  box-shadow: 0 18px 50px rgba(7, 9, 11, 0.06);
}

.facility-list article:nth-child(2) {
  background: #fff;
}

.facility-list article:nth-child(3) {
  border-color: rgba(182, 107, 67, 0.28);
  background: #f4ebe5;
}

.facility-list span {
  display: block;
  margin-bottom: 92px;
  color: var(--navy);
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.facility-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-section {
  background:
    linear-gradient(rgba(105, 161, 200, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 161, 200, 0.055) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px, 28px 28px, auto;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 1000px;
}

.faq-list details {
  border: 1px solid rgba(7, 9, 11, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 216, 236, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 9, 11, 0.055);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 58px 0 20px;
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(7, 9, 11, 0.12);
  border-radius: 8px;
  color: #041016;
  background: var(--blue-soft);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.94), rgba(7, 9, 11, 0.78)),
    var(--charcoal);
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact div {
  max-width: 650px;
}

.contact p:last-child {
  margin-top: 14px;
}

.placeholder-company-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.96), rgba(7, 9, 11, 0.66)),
    url("./assets/facility_hero.png") center / cover;
}

.placeholder-company-page h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
}

.placeholder-company-page > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.48;
}

.site-footer {
  padding: 56px max(24px, calc((100vw - 1180px) / 2)) 24px;
  color: #fff;
  background: #07090b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 38px;
}

.footer-grid div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-grid h2 {
  margin: 0 0 5px;
  color: var(--blue-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.legal-page {
  padding: 128px max(24px, calc((100vw - 880px) / 2)) 76px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(105, 161, 200, 0.14), transparent 36%),
    #07090b;
}

.legal-page section {
  max-width: 880px;
}

.legal-page h1 {
  margin: 16px 0 0;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
  text-transform: uppercase;
}

.legal-back {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 0 14px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.legal-back:hover {
  color: #041016;
  background: var(--blue-soft);
}

.legal-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-updated {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.legal-page article {
  display: grid;
  gap: 12px;
  margin-top: 38px;
  padding: 26px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(184, 216, 236, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 216, 236, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: 24px 24px, 24px 24px, auto;
}

.legal-page article h2 {
  margin: 16px 0 0;
  color: var(--blue-soft);
  font-size: 16px;
  text-transform: uppercase;
}

.legal-page article h2:first-child {
  margin-top: 0;
}

.legal-page article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.58;
}

.legal-page article ul {
  display: grid;
  gap: 9px;
  margin: 0 0 4px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.58;
}

.legal-page article li::marker {
  color: var(--blue-soft);
}

.program-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.98), rgba(238, 242, 236, 0.98)),
    var(--off-white);
}

.program-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-content: end;
  padding: 44px max(24px, calc((100vw - 1180px) / 2)) 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.97), rgba(7, 9, 11, 0.58)),
    linear-gradient(180deg, rgba(17, 34, 64, 0.16), rgba(7, 9, 11, 0.96)),
    url("./assets/facility_hero.png") center / cover;
}

.program-page-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 540px;
  height: 540px;
  background: url("./assets/blueprint-logo-w.png") center / contain no-repeat;
  opacity: 0.08;
}

.program-back,
.program-page-hero-copy {
  position: relative;
  z-index: 1;
}

.program-back {
  position: absolute;
  top: 28px;
  left: max(24px, calc((100vw - 1180px) / 2));
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  font-size: 12px;
}

.program-back:hover {
  color: #041016;
  background: var(--blue-soft);
}

.program-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-page-hero h1 {
  max-width: 980px;
  margin: 18px 0 0;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(58px, 8.4vw, 126px);
  line-height: 0.9;
  text-transform: uppercase;
}

.program-page-hero-copy > p:last-child {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.48;
}

.program-intro,
.program-menu,
.why-blueprint,
.program-cta {
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
}

.program-intro {
  display: grid;
  gap: 16px;
  padding-bottom: 28px;
}

.program-intro > p:last-child {
  max-width: 1040px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.program-menu {
  display: grid;
  gap: 16px;
  padding-top: 28px;
}

.program-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(184, 216, 236, 0.22), transparent 44%),
    #fff;
  box-shadow: 0 20px 52px rgba(7, 9, 11, 0.08);
}

.program-row:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(17, 34, 64, 0.06), transparent 48%),
    #fff;
}

.program-row-copy h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.program-row-copy p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.program-row-list {
  border-left: 1px solid rgba(7, 9, 11, 0.1);
  padding-left: 28px;
}

.program-row-list h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.program-row-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-row-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.program-row-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(105, 161, 200, 0.6);
}

.price-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  white-space: nowrap;
  border-radius: 8px;
  padding: 0 18px;
  color: #041016;
  background: var(--blue-soft);
  box-shadow: 0 14px 30px rgba(105, 161, 200, 0.24);
  font-size: 13px;
  text-transform: uppercase;
}

.why-blueprint {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) 1fr;
  gap: 42px;
  align-items: start;
  background: #fff;
  border-block: 1px solid rgba(7, 9, 11, 0.08);
}

.why-blueprint h2,
.program-cta h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(38px, 4.8vw, 70px);
  line-height: 0.94;
  text-transform: uppercase;
}

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

.why-grid span {
  min-height: 62px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(7, 9, 11, 0.1);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--navy);
  background: var(--off-white);
  font-size: 13px;
  text-transform: uppercase;
}

.program-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.96), rgba(7, 9, 11, 0.74)),
    var(--charcoal);
}

.program-cta div {
  max-width: 760px;
}

.program-cta h2 {
  color: #fff;
}

.program-cta p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: rgba(7, 9, 11, 0.74);
  backdrop-filter: blur(14px);
}

.coming-soon-overlay div {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.coming-soon-overlay h2 {
  margin: 0;
  font-family: "Garp Wide", Impact, sans-serif;
  font-size: clamp(58px, 11vw, 160px);
  line-height: 0.86;
  text-transform: uppercase;
}

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

  .nav-links {
    display: none;
  }

  .brand span {
    display: none;
  }

  .brand-dropdown span {
    display: inline;
  }

  .brand-dropdown {
    width: 244px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 120px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 40px;
  }

  .program-grid,
  .proof-band,
  .process-grid,
  .app-section,
  .footer-grid,
  .facility,
  .program-row,
  .why-blueprint {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    padding: 24px;
  }

  .facility-list {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
    background:
      linear-gradient(90deg, rgba(7, 9, 11, 0.95), rgba(7, 9, 11, 0.84)),
      var(--charcoal);
  }

  .footer-bottom {
    flex-direction: column;
  }
  .phone-mockup,
  .phone-mockup img {
    min-height: 390px;
  }

  .program-row-list {
    border-left: 0;
    border-top: 1px solid rgba(7, 9, 11, 0.1);
    padding: 22px 0 0;
  }

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

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 60px;
  }

  .header-actions {
    gap: 7px;
  }
  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
  }

  .nav-cta span {
    max-width: 126px;
    line-height: 1.05;
  }

  .hero {
    padding: 106px 18px 34px;
    background-position: 61% center;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .programs,
  .process,
  .facility,
  .contact,
  .site-footer,
  .legal-page,
  .program-intro,
  .program-menu,
  .why-blueprint,
  .program-cta {
    padding: 64px 18px;
  }

  .program-page-hero {
    min-height: 560px;
    padding: 92px 18px 56px;
  }

  .program-back {
    left: 18px;
  }

  .program-page-hero h1 {
    font-size: 40px;
  }

  .program-page-hero-copy > p:last-child,
  .program-intro > p:last-child {
    font-size: 16px;
  }

  .program-row {
    padding: 20px;
  }

  .program-row-list ul,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .program-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-card,
  .process-grid article {
    min-height: 260px;
  }

  .phone-mockup,
  .phone-mockup img {
    min-height: 320px;
  }

  .app-feature-list {
    grid-template-columns: 1fr;
  }

  .facility-list {
    grid-template-columns: 1fr;
  }
}
