
:root {
  --navy: #081a44;
  --navy-2: #11295c;
  --red: #d20d2f;
  --red-dark: #ad0926;
  --white: #ffffff;
  --ink: #17223b;
  --muted: #657087;
  --line: #e5e9f0;
  --soft: #f5f6f8;
  --shadow: 0 24px 60px rgba(8, 26, 68, .12);
  --shadow-soft: 0 12px 34px rgba(8, 26, 68, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(8,26,68,.09);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  letter-spacing: .045em;
  color: var(--navy);
  font-weight: 900;
}

.brand-copy span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #f2f3f6;
  color: var(--red);
}

.nav-links .nav-cta {
  background: var(--red);
  color: white;
  padding-inline: 22px;
  box-shadow: 0 8px 22px rgba(210,13,47,.15);
}

.nav-links .nav-cta:hover {
  background: var(--red-dark);
  color: white;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--soft);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 86px 0 80px;
  background:
    radial-gradient(circle at 80% 18%, rgba(210,13,47,.105), transparent 27%),
    radial-gradient(circle at 82% 74%, rgba(8,26,68,.095), transparent 32%),
    linear-gradient(115deg, #fff 0%, #fff 46%, #f8f9fb 72%, #edf2f8 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  right: -270px;
  bottom: -350px;
  width: 760px;
  height: 760px;
  border: 62px solid rgba(8,26,68,.035);
  box-shadow:
    0 0 0 76px rgba(210,13,47,.025),
    0 0 0 148px rgba(8,26,68,.018);
}

.hero::after {
  right: 40px;
  top: 70px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(210,13,47,.055), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 74px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.hero h1,
.page-hero h1 {
  margin: 17px 0 20px;
  color: var(--navy);
  font-size: clamp(52px, 5.25vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
  max-width: 820px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--red);
  display: block;
}

.hero .lead {
  max-width: 720px;
  color: #546178;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 26px rgba(210,13,47,.18);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  border-color: rgba(8,26,68,.22);
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.menu-btn:focus-visible {
  outline: 3px solid rgba(210,13,47,.22);
  outline-offset: 3px;
}

/* Hero card */
.hero-card {
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(8,26,68,.07);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px 32px 30px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(var(--red) 0%, var(--red) 42%, var(--navy) 100%);
}

.hero-logo {
  width: 162px;
  height: 162px;
  object-fit: contain;
  margin: 0 auto 30px;
  filter: drop-shadow(0 12px 18px rgba(8,26,68,.12));
}

.hero-card h3 {
  color: var(--navy);
  font-size: 27px;
  line-height: 1.12;
  margin: 0 0 7px;
  text-align: center;
  letter-spacing: -.025em;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.hero-pill {
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 12px 10px;
  text-align: center;
  font-weight: 850;
  color: var(--navy);
  font-size: 12px;
}

.hero-pill span {
  display: block;
  color: var(--red);
  font-size: 18px;
  margin-bottom: 1px;
}

/* Sections */
.section {
  padding: 84px 0;
}

.section-soft {
  background: #f6f7f9;
}

.section-head {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 9px 0 12px;
  color: var(--navy);
  font-size: clamp(38px, 4.3vw, 55px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.benefit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 23px;
  min-height: 205px;
  box-shadow: 0 4px 18px rgba(8,26,68,.025);
  transition: .22s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(210,13,47,.075);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 17px;
}

.benefit-card h3 {
  color: var(--navy);
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.28;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
  font-size: 13.5px;
}

.stats-strip {
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
  position: relative;
  overflow: hidden;
}

.stats-strip::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 32px solid rgba(255,255,255,.035);
  border-radius: 50%;
  right: -90px;
  top: -108px;
}

.stat {
  position: relative;
  z-index: 2;
}

.stat strong {
  display: block;
  color: white;
  font-size: 22px;
  line-height: 1.1;
}

.stat span {
  color: rgba(255,255,255,.67);
  font-size: 12.5px;
}

/* Secondary page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 62px;
  background:
    radial-gradient(circle at 86% 30%, rgba(210,13,47,.08), transparent 23%),
    linear-gradient(120deg, #fff, #f2f5f9);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(46px, 5vw, 67px);
}

.page-hero p {
  max-width: 730px;
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

/* Majors */
.major-jump-wrap {
  margin: -22px auto 32px;
  position: relative;
  z-index: 3;
}

.major-jump {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 5px 2px 8px;
}

.major-jump::-webkit-scrollbar { display: none; }

.major-jump a {
  flex: 0 0 auto;
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 6px 18px rgba(8,26,68,.05);
}

.major-jump a:hover {
  color: var(--red);
  border-color: rgba(210,13,47,.24);
}

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

.major-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: white;
  box-shadow: 0 10px 30px rgba(8,26,68,.045);
  padding: 30px;
  scroll-margin-top: 118px;
}

.major-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  right:0;
  height:5px;
  background: linear-gradient(90deg,var(--red),var(--navy));
}

.major-card:last-child { grid-column: 1 / -1; }

.major-card:last-child .feature-list {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.major-number {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.major-card h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.06;
  margin: 8px 0 12px;
  letter-spacing: -.03em;
}

.major-card > p {
  color: var(--muted);
  margin: 0 0 20px;
  min-height: 52px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.feature-list li {
  background: var(--soft);
  border-radius: 11px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 750;
}

.feature-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 950;
  margin-right: 7px;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 23px;
  background: white;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(8,26,68,.045);
}

.contact-card h2,
.contact-form h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -.025em;
}

.contact-card p,
.contact-form p {
  color: var(--muted);
  margin-top: 0;
}

.contact-items {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfcfe;
}

.contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(210,13,47,.075);
  color: var(--red);
  font-weight: 950;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8dee9;
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(210,13,47,.08);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* CTA */
.cta-band {
  background: linear-gradient(120deg, var(--red), #e51b3c 50%, var(--navy) 50%, var(--navy));
  color: white;
  border-radius: 25px;
  padding: 35px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0 0 5px;
  font-size: 29px;
  line-height: 1.1;
}

.cta-band p {
  margin: 0;
  color: rgba(255,255,255,.80);
}

.cta-band .btn-secondary { border: none; }

/* Footer */
.site-footer {
  background: #071431;
  color: white;
  padding: 45px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.footer-brand strong {
  display: block;
  font-size: 15px;
}

.footer-brand span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  color: white;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  margin: 6px 0;
}

.footer-col a:hover { color: white; }

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

/* Tablet */
@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding-top: 70px;
  }

  .hero-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 650px;
  }

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

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

  .major-card:last-child {
    grid-column: auto;
  }

  .major-card:last-child .feature-list {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .nav {
    min-height: 82px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand-copy strong {
    font-size: 10.5px;
    letter-spacing: .025em;
  }

  .brand-copy span {
    font-size: 8.5px;
    letter-spacing: .1em;
    margin-top: 4px;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 88px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 60;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    border-radius: 12px;
    padding: 12px 14px;
  }

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

  .hero-grid {
    gap: 34px;
  }

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

  .hero h1 span,
  .page-hero h1 span {
    display: inline;
  }

  .hero .lead,
  .page-hero p {
    font-size: 16.5px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 24px 19px 20px;
    border-radius: 24px;
  }

  .hero-logo {
    width: 124px;
    height: 124px;
    margin-bottom: 14px;
  }

  .hero-card h3 {
    font-size: 23px;
  }

  .hero-pills {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-pill {
    padding: 10px 7px;
    font-size: 11.5px;
  }

  .hero-pill span {
    font-size: 16px;
  }

  .page-hero {
    padding: 49px 0 40px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 27px;
  }

  .section-head h2 {
    font-size: 37px;
  }

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

  .benefit-card {
    min-height: 0;
    padding: 20px;
  }

  .stats-strip {
    grid-template-columns: repeat(2,1fr);
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .major-card:last-child .feature-list {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .feature-list li {
    padding: 10px;
    font-size: 12px;
  }

  .major-card {
    padding: 24px 20px;
  }

  .major-card h2 {
    font-size: 27px;
  }

  .major-card > p {
    min-height: 0;
    margin-bottom: 18px;
  }

  .major-jump-wrap {
    margin: -14px auto 22px;
  }

  .contact-card,
  .contact-form {
    padding: 24px 20px;
  }

  .contact-wrap {
    gap: 22px;
  }

  .contact-card .btn {
    width: 100%;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
    background: linear-gradient(145deg, var(--red) 0 52%, var(--navy) 52% 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .site-footer {
    padding: 34px 0 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    margin-top: 24px;
    padding-top: 14px;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 82px 0 0;
    background: rgba(7,20,49,.32);
    backdrop-filter: blur(2px);
    z-index: 40;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-copy strong {
    font-size: 9.5px;
  }

  .brand-copy span {
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .brand-copy {
    display: none;
  }

  .feature-list,
  .major-card:last-child .feature-list {
    grid-template-columns: 1fr;
  }
}
