:root {
  --bg: #090909;
  --bg-elevated: #111112;
  --bg-soft: #171718;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f8f3f4;
  --muted: #bdaeb2;
  --accent: #e8466c;
  --accent-soft: rgba(232, 70, 108, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(232, 70, 108, 0.11), transparent 28rem),
    linear-gradient(180deg, #120d0f 0%, #090909 18%, #060606 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 7px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.18));
  opacity: 0.34;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

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

.site-header {
  position: relative;
  padding: 28px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand--header {
  display: flex;
  justify-content: center;
  position: relative;
}

.brand--header::before {
  content: "";
  position: absolute;
  inset: -26px -34px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 70, 108, 0.16), rgba(232, 70, 108, 0));
  z-index: -1;
  filter: blur(18px);
}

.brand--header img {
  width: min(100%, 210px);
}

.section {
  padding: 34px 0;
}

.hero {
  padding-top: 20px;
}

.hero__grid,
.split,
.cta-card {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__grid,
.split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.split--scene {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.section--cta {
  padding-bottom: 52px;
}

.hero__copy,
.stack,
.cta-card__copy {
  display: grid;
  gap: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 12px 16px;
  border: 1px solid rgba(232, 70, 108, 0.28);
  border-radius: 999px;
  background: rgba(232, 70, 108, 0.06);
}

h1,
h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 9vw, 5.8rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.lede,
.section-copy {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.04rem, 2.2vw, 1.24rem);
  line-height: 1.65;
  color: var(--muted);
}

.hero__photo,
.media-card,
.cta-card__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero__photo img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.media-card img {
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.media-card--portrait img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center top;
}

.cta-card {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  padding: 22px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(14, 14, 15, 0.9);
  box-shadow: var(--shadow);
}

.cta-card__photo img {
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.store-row,
.store-column,
.hero__meta,
.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-column {
  flex-direction: column;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: min(100%, 290px);
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 70, 108, 0.42);
  background: linear-gradient(180deg, rgba(232, 70, 108, 0.15), rgba(255, 255, 255, 0.03));
}

.store-badge__icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.store-badge__icon svg {
  width: 27px;
  height: 27px;
}

.store-badge__text {
  display: grid;
  gap: 3px;
}

.store-badge__text small {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.store-badge__text strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.34rem, 2.7vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__meta a,
.social-links a,
.footer-links a {
  color: #f2eaec;
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease;
}

.hero__meta a:hover,
.social-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.detail-list,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.detail-list strong,
.process-list strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.detail-list span,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.process-list__number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 70, 108, 0.28);
  background: var(--accent-soft);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.section--spotlight {
  padding-top: 28px;
}

.spotlight-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(380px, 56vw, 580px);
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.18) 0%, rgba(3, 3, 3, 0.28) 32%, rgba(3, 3, 3, 0.82) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.74) 0%, rgba(6, 6, 6, 0.28) 54%, rgba(6, 6, 6, 0.68) 100%),
    url("assets/landing/photo-crowd-stage.jpg?v=20260327-spotlight-2") center 46% / cover no-repeat;
}

.spotlight-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 26%, rgba(255, 242, 184, 0.22), transparent 18%),
    radial-gradient(circle at 76% 32%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(232, 70, 108, 0.14), transparent 26%);
  pointer-events: none;
}

.spotlight-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 620px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.22), rgba(8, 8, 8, 0.56));
  backdrop-filter: blur(6px);
}

.spotlight-copy .section-copy {
  max-width: 40rem;
  color: #e7dde0;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px 24px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-row > span {
  font-weight: 700;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero__grid,
  .split,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8px;
  }

  .hero__photo {
    order: 2;
  }

  .cta-card {
    padding: 18px;
  }

  .spotlight-stage {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 26px), var(--max-width));
  }

  .site-header {
    padding-top: 20px;
  }

  .brand--header img {
    width: 178px;
  }

  .section {
    padding: 24px 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  h2 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .eyebrow,
  .section-kicker {
    padding: 10px 14px;
    font-size: 0.74rem;
  }

  .store-badge {
    width: 100%;
    min-width: 0;
  }

  .store-badge__text strong {
    font-size: 1.45rem;
  }

  .hero__meta,
  .social-links,
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .detail-list li {
    padding: 16px 18px;
  }

  .spotlight-stage {
    min-height: 360px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.1) 0%, rgba(3, 3, 3, 0.24) 26%, rgba(3, 3, 3, 0.88) 100%),
      linear-gradient(90deg, rgba(6, 6, 6, 0.5) 0%, rgba(6, 6, 6, 0.16) 55%, rgba(6, 6, 6, 0.6) 100%),
      url("assets/landing/photo-crowd-stage.jpg?v=20260327-spotlight-2") center center / cover no-repeat;
  }

  .spotlight-copy {
    padding: 18px;
  }
}

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

  .reveal,
  .reveal--delay,
  .store-badge,
  .hero__meta a,
  .social-links a,
  .footer-links a {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
