:root {
  --landing-max: 1180px;
  --landing-purple: #6355aa;
  --landing-purple-dark: #33276b;
  --landing-green: #2f9a78;
  --landing-paper: #fbfaf5;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.landing-shell {
  min-height: 100vh;
}

.landing-nav,
.landing-hero,
.landing-section,
.audience-section,
.final-cta,
.landing-footer {
  width: min(calc(100% - 40px), var(--landing-max));
  margin-inline: auto;
}

.landing-nav {
  position: relative;
  z-index: 5;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  text-decoration: none;
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.landing-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.landing-nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-nav-links a,
.footer-links a {
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.landing-nav-links a:hover,
.footer-links a:hover,
.audience-copy a:hover {
  color: var(--brand-green);
}

.landing-nav-links .nav-pill {
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.landing-hero {
  position: relative;
  z-index: 1;
  min-height: 700px;
  padding: 76px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.launch-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--landing-green) 14%, transparent);
}

.landing-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: clamp(3.5rem, 7.2vw, 6.6rem);
  font-weight: 250;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.landing-hero h1 em {
  color: var(--landing-purple);
  font-weight: 250;
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.landing-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--landing-purple);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.landing-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.landing-button-primary {
  background: var(--landing-purple);
  color: #fff;
}

.landing-button-secondary {
  background: var(--surface);
  color: var(--text-strong);
  border-color: var(--border);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.ticket-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--landing-purple) 28%, transparent);
  border-radius: 50%;
}

.ticket-orbit-one {
  width: 470px;
  height: 470px;
}

.ticket-orbit-two {
  width: 350px;
  height: 350px;
  border-style: dashed;
  transform: rotate(18deg);
}

.hero-ticket {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  padding: 26px 26px 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: linear-gradient(155deg, #51448f, #322760 64%, #201944);
  color: #fff;
  box-shadow: 0 40px 80px rgba(51, 39, 107, 0.32);
  transform: rotate(3deg);
}

.ticket-topline,
.ticket-details,
.ticket-stub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.ticket-topline {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
}

.ticket-status {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.ticket-leaf-wrap {
  height: 134px;
  display: grid;
  place-items: center;
}

.ticket-leaf-wrap img {
  width: 105px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.25));
}

.ticket-eyebrow,
.section-kicker {
  margin: 0;
  color: var(--landing-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-ticket .ticket-eyebrow {
  color: #8ee3be;
}

.hero-ticket h2 {
  margin: 10px 0 28px;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.ticket-details {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.ticket-stub {
  margin: 0 -26px;
  padding: 18px 26px;
  border-radius: 0 0 18px 18px;
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.72rem;
}

.landing-section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.audience-section h2,
.final-cta h2 {
  margin: 14px 0 0;
  color: var(--text-strong);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.value-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.value-card-lilac { background: color-mix(in srgb, var(--accent-soft) 66%, var(--surface)); }
.value-card-blue { background: color-mix(in srgb, var(--accent-cool) 74%, var(--surface)); }
.value-card-mint { background: color-mix(in srgb, var(--accent-mint) 72%, var(--surface)); }

.value-number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.value-card h3 {
  margin: auto 0 12px;
  color: var(--text-strong);
  font-size: 1.7rem;
}

.value-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.audience-section {
  position: relative;
  z-index: 1;
  padding: 86px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 9vw, 130px);
  border-top: 1px solid var(--border);
}

.audience-copy p {
  margin: 0 0 24px;
  color: var(--muted-strong);
  font-size: 1.18rem;
  line-height: 1.75;
}

.audience-copy a {
  color: var(--landing-purple);
  font-weight: 700;
  text-decoration: none;
}

.final-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 50px;
  padding: 76px clamp(28px, 7vw, 84px);
  border-radius: 22px;
  background: var(--landing-purple-dark);
  color: #fff;
  text-align: center;
}

.final-cta > img {
  width: 70px;
  margin-bottom: 24px;
}

.final-cta .section-kicker {
  color: #8ee3be;
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
  color: #fff;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .landing-button-primary {
  background: #8ee3be;
  border-color: #8ee3be;
  color: #17251f;
}

.final-cta .landing-button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.landing-footer {
  min-height: 120px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.landing-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  justify-content: flex-end;
}

.landing-footer .theme-toggle {
  grid-column: 1 / -1;
  justify-self: center;
}

@media (max-width: 880px) {
  .landing-nav-links > a:not(.nav-pill) {
    display: none;
  }

  .landing-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 54px;
  }

  .hero-copy {
    text-align: center;
  }

  .launch-pill,
  .hero-actions {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-art {
    min-height: 470px;
  }

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

  .value-card {
    min-height: 230px;
  }

  .audience-section {
    grid-template-columns: 1fr;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  .landing-nav,
  .landing-hero,
  .landing-section,
  .audience-section,
  .final-cta,
  .landing-footer {
    width: min(calc(100% - 28px), var(--landing-max));
  }

  .landing-nav {
    min-height: 72px;
  }

  .landing-nav-links {
    gap: 10px;
  }

  .landing-nav-links .nav-pill {
    display: none;
  }

  .landing-hero {
    min-height: 0;
    padding: 42px 0 70px;
  }

  .landing-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
    letter-spacing: -0.065em;
  }

  .hero-lede {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .launch-pill {
    max-width: 100%;
    font-size: 0.66rem;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
  }

  .landing-button {
    width: 100%;
  }

  .hero-art {
    min-height: 410px;
  }

  .ticket-orbit-one {
    width: 380px;
    height: 380px;
  }

  .ticket-orbit-two {
    width: 290px;
    height: 290px;
  }

  .hero-ticket {
    width: min(90%, 340px);
    transform: rotate(2deg);
  }

  .landing-section,
  .audience-section {
    padding: 70px 0;
  }

  .final-cta {
    padding: 58px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .landing-button { transition: none; }
}
