@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/Barlow-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --force-white: #f5f5f7;
  --force-navy: #2f5061;
  --force-teal: #4297a0;
  --force-coral: #e57f80;
  --force-line: rgba(47, 80, 97, 0.12);
  --force-panel: rgba(255, 255, 255, 0.82);
  --force-shadow: 0 24px 80px rgba(47, 80, 97, 0.12);
  --force-radius: 20px;
  --force-edge: 5px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--force-navy);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(66, 151, 160, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(229, 127, 128, 0.14), transparent 20%),
    linear-gradient(135deg, #fbfbfc 0%, var(--force-white) 44%, #edf5f6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -12rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 151, 160, 0.26), rgba(66, 151, 160, 0));
  filter: blur(12px);
}

body::after {
  bottom: -10rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 127, 128, 0.18), rgba(229, 127, 128, 0));
  filter: blur(8px);
}

.splash-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero-panel {
  width: min(100%, 64rem);
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  border: 1px solid rgba(47, 80, 97, 0.08);
  border-radius: var(--force-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 247, 0.9)),
    var(--force-panel);
  box-shadow: var(--force-shadow);
  text-align: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 14%, rgba(66, 151, 160, 0.08) 14.4% 15.1%, transparent 15.5% 100%),
    linear-gradient(180deg, transparent 0 72%, rgba(47, 80, 97, 0.05) 72.3% 72.8%, transparent 73.2% 100%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 80, 97, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 80, 97, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.status-pill,
.brand-frame,
.brand-lockup,
.hero-copy,
.primary-cta {
  position: relative;
  z-index: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(47, 80, 97, 0.12);
  border-radius: var(--force-edge);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(47, 80, 97, 0.82);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--force-coral);
  box-shadow: 0 0 0 6px rgba(229, 127, 128, 0.15);
}

.brand-frame {
  width: min(100%, 40rem);
  aspect-ratio: 3.1 / 1;
  margin: 1rem auto 0;
  overflow: hidden;
  border-radius: 8px;
}

.brand-lockup {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.hero-copy {
  max-width: 44rem;
  margin: 1rem auto 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: rgba(47, 80, 97, 0.62);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.support-copy {
  width: min(100%, 32rem);
  margin: 1rem auto 0;
  color: rgba(47, 80, 97, 0.86);
  font-size: 1rem;
  line-height: 1.62;
  letter-spacing: 0.005em;
  text-wrap: pretty;
}

.meta-copy {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.grade-line,
.admissions-line {
  margin: 0;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(47, 80, 97, 0.12);
  border-radius: var(--force-edge);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(47, 80, 97, 0.88);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admissions-line {
  color: var(--force-navy);
  border-color: rgba(47, 80, 97, 0.12);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  margin-top: 1.5rem;
  padding: 0.94rem 1.45rem;
  border: 1px solid rgba(66, 151, 160, 0.16);
  border-radius: var(--force-edge);
  background:
    linear-gradient(180deg, #4fa7b0 0%, var(--force-teal) 100%);
  color: var(--force-white);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(66, 151, 160, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #438f97 0%, #3a8088 100%);
  box-shadow: 0 18px 38px rgba(58, 128, 136, 0.28);
}

.primary-cta:focus-visible {
  outline: 3px solid rgba(66, 151, 160, 0.45);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .splash-shell {
    padding: 1rem;
  }

  .hero-panel {
    border-radius: 24px;
    padding: 1.2rem 1.05rem 1.3rem;
  }

  .brand-frame {
    width: min(100%, 24rem);
    aspect-ratio: 3 / 1;
    margin-top: 0.85rem;
  }

  .hero-copy {
    margin-top: 0.85rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .support-copy {
    font-size: 0.92rem;
  }

  .meta-copy {
    gap: 0.65rem;
  }

  .grade-line,
  .admissions-line {
    width: 100%;
    max-width: 17rem;
    font-size: 0.82rem;
  }

  .primary-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-cta {
    transition: none;
  }
}
