:root {
  --ink: #202b38;
  --paper: #fffdf7;
  --red: #ff2026;
  --blue: #35acd7;
  --green: #2fbd68;
  --gold: #f5b82e;
  --navy: #102a43;
  --line: rgba(32, 43, 56, .14);
  --shadow: 0 12px 0 rgba(0, 0, 0, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}
.site-header img { display: block; width: clamp(210px, 26vw, 360px); height: auto; }
.site-header nav { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.site-header nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: #858b92;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .16);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav .register, .button.red { background: var(--red); }
.site-header nav .home, .button.blue { background: var(--blue); }
.button.green { background: var(--green); }
.button.gold { color: #2d250d; background: var(--gold); }

.hero {
  position: relative;
  min-height: min(690px, 76vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 14, 27, .92) 0%, rgba(5, 14, 27, .78) 36%, rgba(5, 14, 27, .12) 68%, transparent 100%);
}
.hero-copy {
  width: min(660px, 90%);
  margin-left: clamp(20px, 7vw, 110px);
  padding: 70px 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .4);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent, var(--gold));
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .97;
  letter-spacing: -.04em;
}
.hero-copy > p:not(.eyebrow) { max-width: 590px; font-size: clamp(18px, 2vw, 24px); }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; text-shadow: none; }

.intro,
.section { padding: clamp(54px, 8vw, 105px) clamp(20px, 7vw, 110px); }
.intro { text-align: center; }
.intro > * { max-width: 930px; margin-left: auto; margin-right: auto; }
.intro h2, .section h2 { margin-top: 0; font-size: clamp(34px, 4.6vw, 62px); line-height: 1.06; letter-spacing: -.035em; }
.intro p, .section-heading p { color: #536170; font-size: 19px; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--accent, var(--blue));
  font-size: 24px;
}
.card h3 { margin: 18px 0 8px; font-size: 25px; }
.card p { margin-bottom: 0; color: #596674; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #eef6f8;
}
.path {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 28px;
  color: #fff;
  background: var(--path-bg, var(--navy));
}
.path.digital { --path-bg: #234c61; }
.path h3 { margin: 8px 0 12px; font-size: clamp(30px, 4vw, 50px); line-height: 1; }
.path ul { padding-left: 20px; }

.cta {
  text-align: center;
  color: #fff;
  background: var(--navy);
}
.cta p { max-width: 760px; margin: 0 auto 24px; font-size: 19px; color: rgba(255,255,255,.8); }
.site-footer { padding: 28px 20px; text-align: center; color: #68727d; background: #fff; }

@media (max-width: 800px) {
  .site-header { position: static; align-items: flex-start; }
  .site-header nav a:not(.home):not(.register) { display: none; }
  .site-header nav a { padding: 9px 11px; font-size: 12px; }
  .hero { min-height: 760px; align-items: start; }
  .hero::before { background-position: 64% center; }
  .hero::after { background: linear-gradient(180deg, rgba(5, 14, 27, .95) 0%, rgba(5, 14, 27, .82) 38%, rgba(5, 14, 27, .12) 74%, rgba(5, 14, 27, .28) 100%); }
  .hero-copy { width: auto; margin: 0; padding: 52px 22px 0; }
  .hero h1 { font-size: clamp(42px, 14vw, 70px); max-width: 570px; }
  .hero-copy > p:not(.eyebrow) { font-size: 18px; max-width: 520px; }
  .card-grid, .split { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-header img { width: 180px; }
  .site-header nav .home { display: none; }
  .hero { min-height: 720px; }
  .button { width: 100%; }
}
