:root {
  --navy: #07123f;
  --navy-2: #0d1c5f;
  --blue: #1268d8;
  --red: #df0915;
  --ink: #0f172a;
  --muted: #667085;
  --line: #e3e8f3;
  --surface: #f7f9fc;
  --surface-2: #eef3fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 18, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(18, 104, 216, 0.08), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(14px, 3vw, 42px);
  right: clamp(14px, 3vw, 42px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 18, 63, 0.22);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(227, 232, 243, 0.9);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(7, 18, 63, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 3px solid currentColor;
  border-right-color: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.brand-mark::after {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 5px;
  height: 12px;
  border: 4px solid currentColor;
  border-bottom: 0;
  transform: rotate(45deg);
  content: "";
}

.tower {
  position: absolute;
  bottom: 15px;
  width: 6px;
  background: currentColor;
}

.tower-one {
  left: 11px;
  height: 15px;
}

.tower-two {
  left: 19px;
  height: 24px;
}

.tower-three {
  right: 10px;
  height: 17px;
  background: var(--red);
}

.brand strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1;
}

.brand strong span {
  color: var(--red);
}

.brand small {
  display: block;
  max-width: 190px;
  margin-top: 3px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  opacity: 0.92;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--red);
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus {
  background: rgba(223, 9, 21, 0.08);
}

.nav-cta {
  margin-left: 4px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(223, 9, 21, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  color: var(--white);
  background: #c80712;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  position: absolute;
  left: clamp(18px, 6vw, 86px);
  right: clamp(18px, 6vw, 86px);
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  content: "";
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 42, 0.96) 0%, rgba(7, 18, 63, 0.78) 43%, rgba(7, 18, 63, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 12, 42, 0.64) 0%, rgba(5, 12, 42, 0.08) 46%, rgba(5, 12, 42, 0.74) 100%);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 94px);
  padding-top: 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6.7vw, 5.8rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.03rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(223, 9, 21, 0.3);
}

.button.primary:hover,
.button.primary:focus {
  background: #c80712;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  gap: 5px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof strong {
  color: var(--white);
}

.intro,
.split-section,
.membership,
.programs,
.contact {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 84px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr) minmax(230px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.intro p:last-of-type,
.membership-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: 0 18px 52px rgba(7, 18, 63, 0.08);
}

.intro-panel strong,
.intro-panel span {
  display: block;
}

.intro-panel strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1rem;
}

.intro-panel span {
  color: var(--muted);
  font-size: 0.96rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.metrics article {
  min-height: 164px;
  padding: clamp(30px, 5vw, 56px);
  border-right: 1px solid var(--line);
  transition: background 160ms ease;
}

.metrics article:hover {
  background: #fbfcff;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
}

.split-section,
.programs {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.solution-grid,
.program-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card,
.program-list article {
  position: relative;
  min-height: 252px;
  padding: 28px;
  border: 1px solid rgba(227, 232, 243, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(7, 18, 63, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.solution-card::before,
.program-list article::before {
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.solution-card:hover,
.program-list article:hover {
  border-color: rgba(18, 104, 216, 0.25);
  box-shadow: 0 22px 54px rgba(7, 18, 63, 0.11);
  transform: translateY(-3px);
}

.solution-card:hover::before,
.program-list article:hover::before {
  border-top-color: var(--red);
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 6px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.solution-card:nth-child(even) .card-icon {
  background: linear-gradient(135deg, var(--red), #ff424d);
}

.solution-card p,
.program-list p,
.member-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.membership {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(223, 9, 21, 0.16), transparent 30%),
    linear-gradient(135deg, #050b2a 0%, var(--navy) 45%, #0f216b 100%);
}

.membership::after {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "";
}

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

.membership h2,
.membership h3 {
  color: var(--white);
}

.membership-copy p,
.membership .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

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

.member-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.member-list p {
  color: rgba(255, 255, 255, 0.73);
}

.program-list article {
  min-height: 190px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(227, 232, 243, 0.95);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 104, 216, 0.14);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.68);
  background: #050b28;
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

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

  .intro-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .nav-cta {
    margin-left: 0;
    color: var(--white);
  }

  .nav-toggle {
    display: block;
  }

  .intro,
  .membership,
  .contact {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .program-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    left: 12px;
    right: 12px;
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 12, 42, 0.94) 0%, rgba(7, 18, 63, 0.8) 56%, rgba(7, 18, 63, 0.58) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding-top: 94px;
  }

  .hero .eyebrow {
    display: block;
    font-size: 0.7rem;
  }

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

  .hero-proof {
    display: none;
  }

  .metrics,
  .solution-grid,
  .program-list {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }
}
