:root {
  color-scheme: dark;
  --bg: #07070b;
  --bg-elevated: #0d0e16;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.13);
  --border-bright: rgba(255, 255, 255, 0.24);
  --text: #f7f7fb;
  --muted: #b7b8c5;
  --accent: #b73cff;
  --accent-2: #22d3ee;
  --accent-warm: #ff5da2;
  --success: #5ee6b2;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 3%, rgba(183, 60, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(34, 211, 238, 0.13), transparent 30rem),
    linear-gradient(180deg, #06060a 0%, #090a12 55%, #06070b 100%);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: #09090d;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  gap: 6px;
}

.brand-logo {
  width: min(290px, 42vw);
  height: auto;
}

.brand span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-warm) 56%, var(--accent-2));
  box-shadow: 0 14px 36px rgba(183, 60, 255, 0.25);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  box-shadow: 0 18px 44px rgba(183, 60, 255, 0.36);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button--outline {
  border-color: var(--border-bright);
  background: rgba(255,255,255,0.035);
  box-shadow: none;
}

.button--outline:hover {
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(780px, calc(100vh - 110px));
  padding: clamp(52px, 8vw, 104px) 0 72px;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: #d4a7ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 24px;
  color: #dadbe5;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.62;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(94, 230, 178, 0.32);
  border-radius: 999px;
  background: rgba(94, 230, 178, 0.07);
  color: #dffbed;
  font-size: 0.9rem;
  font-weight: 750;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(94, 230, 178, 0.75);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: -10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 60, 255, 0.24), transparent 66%);
  content: "";
  filter: blur(28px);
}

.hero-media picture,
.hero-media img {
  width: 100%;
}

.hero-media img {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: clamp(72px, 10vw, 132px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.fact-strip div {
  min-width: 0;
  padding: 22px 26px;
}

.fact-strip div + div {
  border-left: 1px solid var(--border);
}

.fact-strip span,
.fact-strip strong {
  display: block;
}

.fact-strip span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-strip strong {
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

.status-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 96px);
  margin-bottom: 32px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(94, 230, 178, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 15%, rgba(94, 230, 178, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.status-panel h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.status-copy p:first-child {
  margin-top: 2px;
  color: #e6e7ee;
  font-size: 1.08rem;
}

.text-link {
  display: inline;
  color: #f4dfff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(183, 60, 255, 0.65);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: #fff;
  text-decoration-color: var(--accent-2);
}

.answer-block {
  max-width: 920px;
  margin: 0 auto clamp(88px, 12vw, 160px);
  padding: clamp(36px, 6vw, 74px) 0;
  text-align: center;
}

.answer-block h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.answer-block p:last-child {
  margin-bottom: 0;
  color: #d5d6e1;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.section {
  margin-bottom: clamp(92px, 13vw, 172px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading--wide {
  max-width: 960px;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

.feature-card,
.date-card,
.memory-card,
.faq-list details {
  border: 1px solid var(--border);
  background: linear-gradient(150deg, var(--panel-strong), var(--panel));
}

.feature-card {
  min-width: 0;
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.feature-number {
  display: block;
  margin-bottom: 62px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-card p {
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  gap: 26px;
  margin-bottom: clamp(92px, 13vw, 172px);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.image-story--djs {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.image-story--djs picture {
  order: 2;
}

.image-story picture,
.image-story img {
  width: 100%;
  height: 100%;
}

.image-story img {
  min-height: 430px;
  object-fit: cover;
}

.image-story__copy {
  align-self: center;
  padding: clamp(30px, 5vw, 64px);
}

.image-story__copy h2 {
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.date-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-md);
}

.date-card time {
  display: block;
  margin: 44px 0 18px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.date-card p {
  margin-bottom: 0;
}

.past-label {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.memory-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: 20px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.1), transparent 35%),
    linear-gradient(150deg, var(--panel-strong), var(--panel));
}

.memory-card h3 {
  max-width: 10ch;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.memory-card p {
  margin-top: 0;
}

.retrospective-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
}

.retrospective-note p {
  max-width: 760px;
  margin-bottom: 0;
}

.retrospective-note .button {
  flex: 0 0 auto;
}

.quote-section {
  margin-bottom: clamp(92px, 13vw, 172px);
  padding: clamp(72px, 12vw, 150px) 20px;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 45%, rgba(183, 60, 255, 0.2), transparent 38%),
    radial-gradient(circle at 65% 50%, rgba(34, 211, 238, 0.1), transparent 42%);
  text-align: center;
}

.quote-section p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.quote-section span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 18px;
}

.faq-list summary {
  position: relative;
  padding: 24px 66px 24px 24px;
  color: var(--text);
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--accent-2);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  transform: translateY(-53%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 860px;
  margin: 0;
  padding: 0 66px 26px 24px;
}

.faq-list details a {
  color: #f4dfff;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 58px;
  padding: clamp(34px, 7vw, 82px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(183, 60, 255, 0.23), rgba(34, 211, 238, 0.08)),
    var(--bg-elevated);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.final-cta .button-row {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 30px 0 50px;
  border-top: 1px solid var(--border);
}

.brand--footer .brand-logo {
  width: min(220px, 48vw);
}

.tracking-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 64px;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-media {
    max-width: 880px;
  }

  .status-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .status-panel h2 {
    max-width: 14ch;
  }

  .final-cta .button-row {
    justify-content: flex-start;
  }

  .retrospective-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .fact-strip,
  .feature-grid,
  .date-grid,
  .memory-card {
    grid-template-columns: 1fr;
  }

  .fact-strip div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 38px;
  }

  .image-story,
  .image-story--djs {
    grid-template-columns: 1fr;
  }

  .image-story--djs picture {
    order: 0;
  }

  .image-story img {
    min-height: 300px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    gap: 14px;
    padding: 16px 0;
  }

  .brand-logo {
    width: min(230px, 54vw);
  }

  .brand span {
    display: none;
  }

  .site-header .button {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero {
    gap: 36px;
    padding: 50px 0 54px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-media img,
  .status-panel,
  .image-story,
  .final-cta {
    border-radius: 22px;
  }

  .fact-strip {
    margin-bottom: 76px;
  }

  .status-panel,
  .final-cta {
    padding: 26px;
  }

  .answer-block {
    text-align: left;
  }

  .image-story img {
    min-height: 230px;
  }

  .image-story__copy,
  .feature-card,
  .date-card,
  .memory-card,
  .retrospective-note {
    padding: 24px;
  }

  .quote-section {
    margin-inline: -12px;
  }

  .faq-list summary {
    padding: 20px 54px 20px 20px;
  }

  .faq-list summary::after {
    right: 20px;
  }

  .faq-list details p {
    padding: 0 20px 22px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
