:root {
  --bg: #05020b;
  --panel: rgba(12, 8, 18, 0.84);
  --panel-soft: rgba(19, 13, 28, 0.74);
  --text: #fff6ef;
  --muted: rgba(255, 246, 239, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --hot-pink: #ff2f7a;
  --electric: #31e6c6;
  --gold: #ffcf56;
  --blue: #6aa8ff;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 47, 122, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(49, 230, 198, 0.14), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(106, 168, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #09040f 0%, #040208 100%);
  color: var(--text);
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: 100%;
  overflow: clip;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 44px) 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  max-width: 28rem;
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-summary {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer span {
  color: var(--muted);
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--electric), #5c9dff 72%);
  color: #08111a;
  font-weight: 800;
}

.footer-cta-soft {
  background: rgba(10, 8, 15, 0.5);
  border: 1px solid var(--line);
  color: var(--text);
}

.footer-nav {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a:hover,
.legal-back:hover {
  color: var(--text);
}

.legal-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: 24px 18px 64px;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 8, 15, 0.5);
  font-weight: 700;
}

.legal-card {
  background: rgba(12, 8, 18, 0.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.legal-title {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 0.95;
}

.legal-meta {
  margin: 0 0 18px;
  color: var(--muted);
}

.legal-lede,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.66;
}

.legal-card h2 {
  margin-top: 28px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card code {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.legal-notice {
  margin-top: 26px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 47, 122, 0.08);
  border: 1px solid rgba(255, 47, 122, 0.18);
  color: var(--text);
}

.hero,
.support-band,
.showcase,
.split-detail,
.launch-band {
  position: relative;
}

.hero {
  min-height: 100vh;
  padding: 24px clamp(18px, 3vw, 44px) 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(4, 2, 8, 0.92) 16%, rgba(4, 2, 8, 0.42) 52%, rgba(4, 2, 8, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 2, 8, 0.24) 0%, rgba(4, 2, 8, 0.8) 100%),
    url("/assets/lit-social-teaser.png") center/cover no-repeat;
  opacity: 0.96;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 130px 130px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 0;
}

.topbar,
.hero-copy {
  position: relative;
  z-index: 1;
}

.topbar {
  grid-column: 1 / -1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.top-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(9, 7, 13, 0.58);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--hot-pink));
  box-shadow: 0 0 0 8px rgba(255,255,255,0.04), 0 0 28px rgba(49, 230, 198, 0.3);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.topnav {
  justify-self: center;
  display: inline-flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--electric));
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.topnav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-cta,
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.top-cta,
.cta-secondary {
  background: rgba(10, 8, 15, 0.5);
  border-color: var(--line);
}

.cta-primary {
  color: #08111a;
  background: linear-gradient(120deg, var(--electric), #5c9dff 72%);
  box-shadow: 0 16px 44px rgba(49, 230, 198, 0.2);
}

.top-cta:hover,
.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-1px);
}

.hero-copy {
  max-width: var(--max);
  width: 100%;
}

.hero-copy {
  margin: 0 auto 0 0;
  align-self: center;
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  line-height: 0.93;
}

.lede {
  margin: 22px 0 0;
  max-width: 32rem;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.58;
  color: var(--muted);
}

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

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

.hero-proof li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(9, 7, 13, 0.58);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px);
}

.hero-points {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.hero-points div {
  display: grid;
  gap: 5px;
  max-width: 29rem;
}

.hero-points dt {
  font-weight: 700;
  font-size: 0.96rem;
}

.hero-points dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-band,
.showcase,
.split-detail,
.launch-band {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(18px, 3vw, 44px);
}

.support-band {
  padding-top: 34px;
}

.trust-band {
  padding-top: 52px;
}

.support-intro {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.support-intro h2,
.showcase h2,
.detail-panel h2,
.launch-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.support-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.support-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.support-grid span {
  color: var(--hot-pink);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

.support-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.support-grid p,
.showcase p,
.detail-panel p,
.launch-copy p,
.feature-list li {
  color: var(--muted);
  line-height: 1.62;
}

.showcase {
  padding-top: 68px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--electric));
  box-shadow: 0 0 18px rgba(49, 230, 198, 0.3);
}

.showcase-visual {
  display: flex;
  justify-content: flex-end;
}

.showcase-image {
  width: min(100%, 540px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.waitlist-shell {
  width: 100%;
  overflow: clip;
}

.waitlist-hero,
.waitlist-detail {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(18px, 3vw, 44px);
}

.waitlist-hero {
  min-height: 100vh;
  padding-top: 24px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(320px, 640px);
  justify-content: center;
  align-items: center;
}

.waitlist-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(4, 2, 8, 0.94) 18%, rgba(4, 2, 8, 0.52) 54%, rgba(4, 2, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(4, 2, 8, 0.2) 0%, rgba(4, 2, 8, 0.82) 100%),
    url("/assets/lit-freshman-roommate-flyer.png") right center/cover no-repeat;
  opacity: 0.94;
}

.waitlist-form-wrap {
  position: relative;
  z-index: 1;
}

.waitlist-form-wrap {
  display: grid;
  gap: 16px;
}

.waitlist-status {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(49, 230, 198, 0.26);
  background: rgba(14, 27, 24, 0.78);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hidden {
  display: none !important;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 8, 18, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.waitlist-form label,
.waitlist-checks {
  display: grid;
  gap: 8px;
}

.waitlist-form label > span,
.waitlist-checks legend {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
  outline: none;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(49, 230, 198, 0.6);
  box-shadow: 0 0 0 3px rgba(49, 230, 198, 0.15);
}

.waitlist-form option {
  color: #09040f;
}

.waitlist-grid {
  display: grid;
  gap: 14px;
}

.waitlist-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.waitlist-checks {
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.waitlist-checks label,
.waitlist-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.waitlist-checks input,
.waitlist-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--electric);
}

.waitlist-checks span,
.waitlist-consent span,
.waitlist-legal {
  color: var(--muted);
  line-height: 1.55;
}

.waitlist-submit {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
}

.waitlist-legal a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(49, 230, 198, 0.5);
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-detail {
  padding-top: 24px;
  padding-bottom: 44px;
  display: grid;
  gap: 28px;
}

.waitlist-faq {
  padding-top: 8px;
}

.waitlist-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.waitlist-steps article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.waitlist-steps span {
  color: var(--electric);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

.waitlist-steps h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.waitlist-steps p {
  color: var(--muted);
  line-height: 1.62;
}

.waitlist-footer {
  padding-top: 0;
  padding-bottom: 28px;
}

.split-detail {
  padding-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-panel {
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.detail-panel.alt {
  border-color: rgba(49, 230, 198, 0.24);
}

.launch-band {
  margin-top: 84px;
  margin-bottom: 44px;
  padding-top: 28px;
  padding-bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.launch-copy p:last-child,
.detail-panel p:last-child,
.support-grid article p:last-child {
  margin-bottom: 0;
}

.launch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.support-band,
.showcase,
.split-detail,
.launch-band {
  animation: fadeUp 600ms ease both;
}

.support-band {
  animation-delay: 120ms;
}

.showcase {
  animation-delay: 150ms;
}

@media (max-width: 1080px) {
  .hero,
  .showcase,
  .split-detail,
  .launch-band,
  .waitlist-hero {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .top-status {
    order: 3;
  }

  .topnav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-bottom: 30px;
  }

  .showcase-visual {
    justify-content: flex-start;
    margin: 0;
  }

  .launch-actions {
    justify-content: flex-start;
  }

  .waitlist-hero {
    min-height: auto;
    align-items: start;
    padding-bottom: 32px;
  }

  .waitlist-steps {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 24px;
  }

  .footer-actions {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 18px 16px 26px;
    gap: 24px;
  }

  .support-band,
  .showcase,
  .split-detail,
  .launch-band,
  .waitlist-hero,
  .waitlist-detail {
    padding-inline: 16px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-grid,
  .split-detail {
    grid-template-columns: 1fr;
  }

  .waitlist-grid.two-up {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
    max-width: 9ch;
  }

  .waitlist-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .waitlist-form {
    padding: 22px;
  }

}
