:root {
  --navy-950: #031126;
  --navy-900: #061a35;
  --navy-800: #0b2a52;
  --blue: #2d7cff;
  --cyan: #16c7d9;
  --orange: #ffae27;
  --violet: #9a55f7;
  --white: #ffffff;
  --muted: #aabbd2;
  --line: rgba(190, 218, 255, 0.17);
  --glass: rgba(8, 27, 54, 0.68);
  --shadow: 0 28px 80px rgba(0, 5, 18, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(35, 103, 195, 0.18), transparent 31rem),
    linear-gradient(145deg, #020d20 0%, var(--navy-900) 53%, #04142b 100%);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: white;
  border-radius: 0.65rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 3vw, 3.5rem);
}

.site-header {
  top: 0;
  padding-top: clamp(1.25rem, 3vh, 2.25rem);
}

.wordmark {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  cursor: default;
  color: #eaf3ff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 2.35rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.65rem;
  color: white;
  background:
    linear-gradient(145deg, rgba(45, 124, 255, 0.86), rgba(22, 199, 217, 0.4));
  box-shadow: 0 8px 24px rgba(24, 109, 238, 0.24);
  font-size: 0.6rem;
  letter-spacing: -0.035em;
}

.launch-status {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c4d4e9;
  background: rgba(5, 22, 45, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #52dba1;
  box-shadow: 0 0 0 0 rgba(82, 219, 161, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

.landing-main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(6rem, 12vh, 8rem) 1.5rem clamp(8rem, 15vh, 10rem);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 58rem);
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: clamp(0.25rem, 1vh, 0.75rem);
  color: #c4d4e9;
  font-size: clamp(0.62rem, 0.8vw, 0.74rem);
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: clamp(1.2rem, 3vw, 2.75rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 185, 255, 0.74));
}

.eyebrow-line:last-child {
  transform: rotate(180deg);
}

.logo-stage {
  position: relative;
  width: min(68vw, 49rem);
  margin: clamp(-4.5rem, -6vw, -2rem) 0 clamp(-5rem, -6vw, -2.75rem);
  isolation: isolate;
}

.main-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 18px 28px rgba(0, 2, 12, 0.44))
    drop-shadow(0 0 28px rgba(58, 138, 255, 0.14));
}

.logo-halo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 74%;
  aspect-ratio: 1.9;
  border-radius: 50%;
  background: rgba(30, 101, 217, 0.22);
  filter: blur(62px);
  transform: translate(-50%, -50%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 42rem);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 38rem;
  margin: clamp(1rem, 2.5vh, 1.5rem) auto 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.72;
  text-wrap: balance;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: clamp(1.35rem, 3.3vh, 2.1rem);
  padding: 0.6rem 0.65rem 0.6rem 1rem;
  border: 1px solid rgba(130, 181, 247, 0.24);
  border-radius: 999px;
  color: #aebfd4;
  background: rgba(8, 30, 61, 0.68);
  box-shadow:
    0 16px 40px rgba(0, 7, 24, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon strong {
  padding: 0.52rem 0.7rem;
  border-radius: 999px;
  color: var(--navy-950);
  background: linear-gradient(120deg, #e9f5ff, #9cc9ff);
  font-size: 0.76rem;
  font-weight: 850;
}

.sparkles {
  display: inline-flex;
  gap: 0.22rem;
  padding-right: 0.3rem;
}

.sparkles i {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--orange);
  animation: shimmer 1.8s ease-in-out infinite;
}

.sparkles i:nth-child(2) {
  background: var(--violet);
  animation-delay: 0.2s;
}

.sparkles i:nth-child(3) {
  background: var(--cyan);
  animation-delay: 0.4s;
}

.wellesley-card {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3.5rem);
  bottom: clamp(4.5rem, 8vh, 6.25rem);
  z-index: 5;
  display: grid;
  width: clamp(14rem, 18vw, 18rem);
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(171, 209, 255, 0.23);
  border-radius: 1.5rem;
  color: white;
  background:
    linear-gradient(150deg, rgba(18, 51, 91, 0.92), rgba(6, 24, 52, 0.92));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  text-decoration: none;
  transform-origin: bottom right;
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wellesley-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 10%, rgba(46, 151, 255, 0.25), transparent 42%),
    linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.04));
}

.wellesley-card:hover,
.wellesley-card:focus-visible {
  border-color: rgba(145, 206, 255, 0.54);
  box-shadow:
    0 34px 90px rgba(0, 5, 18, 0.56),
    0 0 0 5px rgba(71, 145, 255, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.1);
  outline: none;
  transform: translateY(-0.45rem) rotate(-0.6deg);
}

.card-kicker,
.card-title,
.card-art,
.card-action {
  position: relative;
  z-index: 1;
}

.card-kicker {
  margin-bottom: 0.35rem;
  color: #88c9ff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.card-art {
  position: relative;
  display: grid;
  height: clamp(9.5rem, 11vw, 11rem);
  margin-block: 0.65rem 0.35rem;
  overflow: hidden;
  place-items: center;
}

.card-art::before {
  position: absolute;
  width: 92%;
  aspect-ratio: 1.45;
  border-radius: 50%;
  content: "";
  background: radial-gradient(
    circle,
    rgba(36, 139, 255, 0.19) 0%,
    rgba(20, 95, 177, 0.08) 44%,
    transparent 72%
  );
  filter: blur(3px);
}

.card-art img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 11px 17px rgba(0, 5, 17, 0.35));
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wellesley-card:hover .card-art img,
.wellesley-card:focus-visible .card-art img {
  transform: scale(1.045) rotate(1deg);
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(202, 222, 248, 0.15);
  color: #dae9fa;
  font-size: 0.74rem;
  font-weight: 750;
}

.arrow {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: white;
  font-size: 0.9rem;
  transition: transform 240ms ease;
}

.wellesley-card:hover .arrow,
.wellesley-card:focus-visible .arrow {
  transform: rotate(45deg);
}

.site-footer {
  bottom: 0;
  padding-bottom: clamp(1.25rem, 3vh, 2.25rem);
  color: rgba(189, 207, 231, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.site-footer p {
  margin: 0;
}

.ambient,
.cursor-light {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.ambient-one {
  top: 14%;
  left: 11%;
  width: 17rem;
  height: 17rem;
  background: rgba(86, 39, 183, 0.1);
  animation: float-one 15s ease-in-out infinite;
}

.ambient-two {
  top: 9%;
  right: 7%;
  width: 21rem;
  height: 21rem;
  background: rgba(10, 165, 195, 0.08);
  animation: float-two 18s ease-in-out infinite;
}

.ambient-three {
  bottom: 4%;
  left: 25%;
  width: 24rem;
  height: 14rem;
  background: rgba(243, 152, 31, 0.045);
  filter: blur(20px);
  animation: float-two 20s ease-in-out infinite reverse;
}

.cursor-light {
  top: var(--pointer-y, 50%);
  left: var(--pointer-x, 50%);
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(82, 153, 255, 0.075), transparent 67%);
  transform: translate(-50%, -50%);
  transition: top 700ms ease-out, left 700ms ease-out;
}

.reveal {
  opacity: 0;
  animation: reveal 760ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

.reveal-one { animation-delay: 100ms; }
.reveal-two { animation-delay: 190ms; }
.reveal-three { animation-delay: 360ms; }
.reveal-four { animation-delay: 500ms; }
.reveal-five { animation-delay: 650ms; }

/* Wellesley page */
.wellesley-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 38%, rgba(29, 125, 211, 0.24), transparent 29rem),
    radial-gradient(circle at 12% 80%, rgba(237, 50, 136, 0.1), transparent 20rem),
    radial-gradient(circle at 88% 84%, rgba(128, 204, 23, 0.09), transparent 20rem),
    linear-gradient(145deg, #031127, #071f40 58%, #06152e);
}

.subpage-header {
  position: relative;
}

.back-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: #dcecff;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link span {
  font-size: 1rem;
  transition: transform 200ms ease;
}

.back-link:hover span,
.back-link:focus-visible span {
  transform: translateX(-0.2rem);
}

.wellesley-main {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 7rem 1.5rem 6rem;
  overflow: hidden;
}

.wellesley-hero {
  display: grid;
  width: min(100%, 68rem);
  grid-template-columns: minmax(15rem, 0.88fr) minmax(19rem, 1.12fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.wellesley-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.wellesley-visual::before {
  position: absolute;
  width: 87%;
  aspect-ratio: 1;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 42% 58% 57% 43% / 47% 44% 56% 53%;
  content: "";
  background: rgba(10, 41, 83, 0.34);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 30px 90px rgba(0, 5, 20, 0.28);
  animation: organic-rotate 26s linear infinite;
}

.wellesley-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  filter:
    drop-shadow(0 30px 36px rgba(0, 7, 22, 0.46))
    drop-shadow(0 0 38px rgba(41, 136, 235, 0.13));
}

.sub-eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: #7dccff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sub-eyebrow::before {
  width: 1.75rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.wellesley-content h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 6vw, 6.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.wellesley-content h1 em {
  color: #8dd5ff;
  font-weight: 500;
}

.wellesley-lede {
  max-width: 34rem;
  margin: clamp(1.5rem, 3.5vh, 2.2rem) 0;
  color: #b5c8df;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.68;
}

.preparing-note {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  width: fit-content;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(139, 192, 255, 0.2);
  border-radius: 0.9rem;
  color: #e3efff;
  background: rgba(9, 36, 73, 0.55);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.preparing-note .mini-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4388a, #ffa319);
  box-shadow: 0 0 0 5px rgba(244, 56, 138, 0.08);
}

.wellesley-footer {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3.5rem);
  bottom: clamp(1.25rem, 3vh, 2.25rem);
  z-index: 2;
  color: rgba(187, 208, 233, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

/* 404 page */
.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.error-card {
  width: min(100%, 40rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.error-code {
  display: block;
  color: #80bdff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 15vw, 8rem);
  line-height: 0.8;
}

.error-card h1 {
  margin: 1.5rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.error-card p {
  margin: 0 auto 1.6rem;
  color: var(--muted);
  line-height: 1.65;
}

.home-button {
  display: inline-flex;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  color: #06162e;
  background: white;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1.25rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.5rem rgba(82, 219, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(82, 219, 161, 0);
  }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-0.15rem); }
}

@keyframes float-one {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3rem, 2rem); }
}

@keyframes float-two {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2rem, 3rem); }
}

@keyframes organic-rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .landing-main {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: visible;
  }

  .wellesley-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 26rem);
    margin-top: 3.5rem;
    transform-origin: center;
  }

  .card-art {
    height: clamp(10rem, 42vw, 12rem);
  }

  .site-header,
  .site-footer {
    position: absolute;
  }

  .site-footer {
    position: relative;
    padding-top: 1.25rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 1rem;
  }

  .wordmark > span:last-child {
    display: none;
  }

  .launch-status {
    font-size: 0.62rem;
  }

  .landing-main {
    padding-inline: 1rem;
  }

  .logo-stage {
    width: min(100%, 42rem);
    margin-block: -3rem -3.5rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-copy p {
    max-width: 32rem;
  }

  .site-footer {
    gap: 0.75rem;
    align-items: flex-end;
    padding-inline: 1rem;
  }

  .site-footer p:first-child {
    max-width: 14rem;
  }

  .wellesley-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .wellesley-main {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }

  .wellesley-visual img {
    width: min(79vw, 22rem);
  }

  .wellesley-visual::before {
    width: min(70vw, 20rem);
  }

  .wellesley-content {
    display: grid;
    justify-items: center;
  }

  .wellesley-content h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .wellesley-lede {
    margin-block: 1.2rem 1.5rem;
  }

  .wellesley-footer {
    right: 50%;
    width: max-content;
    transform: translateX(50%);
  }
}

@media (max-height: 760px) and (min-width: 1181px) {
  .landing-main {
    padding-block: 5rem 4.5rem;
  }

  .logo-stage {
    width: min(56vw, 42rem);
    margin-block: -4.2rem -4.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
  }

  .hero-copy p {
    margin-top: 0.8rem;
    line-height: 1.55;
  }

  .coming-soon {
    margin-top: 1rem;
  }

  .wellesley-card {
    width: 14.5rem;
    bottom: 3.8rem;
  }

  .card-art {
    height: 8.25rem;
  }
}

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

  .cursor-light {
    display: none;
  }
}
