@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800&display=swap");

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  background: #080b0e;
  color: #fff;
  font-family: "Cabinet Grotesk", Arial, sans-serif;
}

button { font: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111 url("college-jules-verne.png") center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,11,.9) 0%, rgba(5,8,11,.67) 48%, rgba(5,8,11,.25) 100%), linear-gradient(0deg, rgba(5,8,11,.42), transparent 52%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(740px, calc(100% - 48px));
  min-height: 100svh;
  padding: clamp(34px, 5vw, 70px) 0 clamp(46px, 7vw, 82px) clamp(24px, 7vw, 110px);
}

.location {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 11vw, 9rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.075em;
}

.tagline {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlights li {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(9,12,15,.32);
  backdrop-filter: blur(10px);
  font-size: .95rem;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: .96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--light { background: #fff; color: #111; }
.button--light:hover { background: #e9f7ff; }
.button--glass { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); color: #fff; backdrop-filter: blur(10px); }
.button--glass:hover { background: rgba(255,255,255,.18); }

.notice {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 20;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(7,10,13,.9);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.notice--visible { opacity: 1; transform: translate(-50%, 0); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  background: #07090c;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.loader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo { display: block; width: min(500px, 78vw); height: auto; filter: brightness(1.18) saturate(1.2); }
.loader__line { display: block; width: 100%; height: 2px; margin-top: 24px; overflow: hidden; background: rgba(255,255,255,.12); }
.loader__line::after { content: ""; display: block; width: 48%; height: 100%; background: #0396d6; animation: loading-line 680ms ease forwards; }

@keyframes loading-line { from { transform: translateX(-100%); } to { transform: translateX(210%); } }

@media (max-width: 680px) {
  .hero { background-position: 58% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(5,8,11,.94) 0%, rgba(5,8,11,.72) 66%, rgba(5,8,11,.48) 100%); }
  .hero__content { width: min(calc(100% - 28px), 740px); padding: 28px 0 42px; margin-inline: auto; }
  h1 { font-size: clamp(4.2rem, 24vw, 6.7rem); }
  .tagline { font-size: 1.55rem; }
  .highlights { gap: 8px; }
  .highlights li { font-size: .88rem; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .notice { width: calc(100% - 28px); text-align: center; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
}
