:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --ink: #101014;
  --muted: #666673;
  --line: rgba(20, 20, 24, 0.12);
  --dark: #050507;
  --dark-soft: #121216;
  --white: #ffffff;
  --brand: #d90068;
  --brand-2: #6e0bd8;
  --cyan: #31d9ff;
  --green: #74f0bb;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(5, 5, 7, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.5);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.site-header.is-light {
  color: rgba(18, 18, 22, 0.86);
  background: rgba(248, 248, 250, 0.76);
  border-color: rgba(18, 18, 22, 0.1);
}

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

.brand img {
  width: clamp(104px, 9vw, 132px);
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  justify-self: center;
  font-size: 13px;
  color: currentColor;
}

nav a,
.nav-cta {
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover,
.nav-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta {
  justify-self: end;
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.section-light {
  color: var(--ink);
  background: var(--bg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 120px clamp(22px, 5vw, 76px) 70px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 72% 42%, rgba(217, 0, 104, 0.36), transparent 30%),
    radial-gradient(circle at 35% 24%, rgba(49, 217, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #050507 0%, #0c0c10 58%, #050507 100%);
}

.hero-copy {
  align-self: center;
  max-width: 660px;
  padding-top: 30px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 70px rgba(217, 0, 104, 0.16);
  backdrop-filter: blur(18px);
}

.hero-brand img {
  width: clamp(58px, 5vw, 78px);
  height: clamp(72px, 6vw, 98px);
  object-fit: contain;
}

.hero-brand span {
  color: white;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6.3vw, 92px);
  line-height: 0.94;
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-subtitle,
.lead,
.impact-copy p,
.planner-copy p,
.contact-shell p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
}

.lead,
.planner-copy p {
  color: var(--muted);
}

.hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 48px rgba(217, 0, 104, 0.32);
}

.button-ghost {
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  perspective: 1100px;
}

.poster-stack {
  position: relative;
  width: min(62vw, 650px);
  height: min(70vh, 720px);
}

.poster-frame {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.6);
}

.poster-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 36%, transparent 68%, rgba(255, 255, 255, 0.12));
  mix-blend-mode: screen;
  pointer-events: none;
}

.poster-frame img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

.poster-main {
  left: 24%;
  top: 1%;
  z-index: 3;
  width: 52%;
}

.poster-left {
  left: 0;
  top: 13%;
  width: 38%;
  z-index: 2;
  opacity: 0.78;
}

.poster-right {
  right: 0;
  top: 18%;
  width: 38%;
  z-index: 1;
  opacity: 0.62;
}

.creative-gallery {
  padding: 110px 0 120px;
  overflow: hidden;
}

.creative-gallery .section-heading {
  padding-inline: clamp(22px, 5vw, 76px);
}

.gallery-lead {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.poster-marquee {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  max-width: 100vw;
  padding: 12px clamp(22px, 5vw, 76px) 28px;
  scroll-padding-inline: clamp(22px, 5vw, 76px);
  scroll-snap-type: x mandatory;
}

.poster-marquee::-webkit-scrollbar {
  height: 8px;
}

.poster-marquee::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.gallery-poster {
  flex: 0 0 clamp(230px, 24vw, 340px);
  margin: 0;
  scroll-snap-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.gallery-poster img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

.aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.9;
}

.aura-one {
  width: 360px;
  height: 360px;
  background: rgba(217, 0, 104, 0.22);
}

.aura-two {
  right: 8%;
  bottom: 16%;
  width: 260px;
  height: 260px;
  background: rgba(49, 217, 255, 0.16);
}

.intro {
  padding: 110px clamp(22px, 5vw, 76px);
  background: #fff;
}

.intro-inner,
.section-heading {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric-strip article {
  min-height: 168px;
  padding: 28px;
  background: #fbfbfd;
}

.metric-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.value-strip article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
}

.value-strip h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.02;
}

.value-strip p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 110px clamp(22px, 5vw, 76px);
}

.visual-pin {
  position: sticky;
  top: 96px;
  align-self: start;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(18, 18, 24, 0.18);
  background: #18070d;
}

.visual-pin img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

.feature-copy {
  max-width: 640px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.glass-card,
.location-card,
.planner-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(18, 18, 24, 0.08);
}

.glass-card {
  padding: 22px;
}

.glass-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--brand);
  font-weight: 900;
}

.glass-card p,
.location-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.impact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
  min-height: 100svh;
  padding: 110px clamp(22px, 5vw, 76px);
  overflow: hidden;
}

.impact-copy {
  max-width: 560px;
}

.scroll-showcase {
  position: relative;
  height: min(84vh, 820px);
  min-height: 620px;
}

.showcase-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(14px, 3vw, 28px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 55% 15%, rgba(217, 0, 104, 0.24), transparent 32%),
    #12070d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 520ms ease, transform 520ms ease;
}

.showcase-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.showcase-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
}

.showcase-card figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  font-weight: 700;
}

.locations {
  padding: 110px clamp(22px, 5vw, 76px);
  background: #f7f7fa;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.location-card {
  min-height: 270px;
  padding: 30px;
}

.location-card h3 {
  font-size: 28px;
}

.planner {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(26px, 6vw, 74px);
  align-items: center;
  padding: 110px clamp(22px, 5vw, 76px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 0, 104, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 248, 0.88));
}

.planner-copy {
  max-width: 680px;
}

.planner-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--muted);
}

.panel-row strong {
  text-align: right;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 130px clamp(22px, 5vw, 76px);
  text-align: center;
}

.contact::before {
  position: absolute;
  inset: auto 8% -24% auto;
  width: 520px;
  height: 520px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 0, 104, 0.34), transparent 62%);
  filter: blur(18px);
}

.contact-shell {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.contact-logo {
  width: 74px;
  height: 92px;
  margin: 0 auto 28px;
  object-fit: contain;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(22px, 5vw, 76px);
  color: #777781;
  background: #050507;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

  nav {
    display: none;
  }

  .hero,
  .split-feature,
  .impact,
  .planner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .poster-stack {
    width: min(96vw, 620px);
  }

  .metric-strip,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .visual-pin {
    position: relative;
    top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
    padding-inline: 16px;
  }

  .brand img {
    width: 104px;
    height: auto;
  }

  .hero-brand {
    gap: 12px;
    margin-bottom: 22px;
    padding: 8px 14px 8px 8px;
  }

  .hero-brand img {
    width: 46px;
    height: 58px;
  }

  .hero-brand span {
    font-size: 22px;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    row-gap: 42px;
    min-height: auto;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-subtitle,
  .lead,
  .impact-copy p,
  .planner-copy p,
  .contact-shell p {
    font-size: 19px;
  }

  .hero-stage {
    min-height: 420px;
    margin-top: 8px;
  }

  .poster-stack {
    height: 420px;
  }

  .poster-main {
    left: 18%;
    width: 64%;
  }

  .poster-left,
  .poster-right {
    width: 36%;
  }

  .intro,
  .split-feature,
  .impact,
  .locations,
  .planner,
  .contact {
    padding-block: 72px;
  }

  .metric-strip,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip article {
    min-height: 130px;
  }

  .scroll-showcase {
    min-height: 460px;
  }

  .panel-row {
    display: grid;
  }

  .panel-row strong {
    text-align: left;
  }

  footer {
    display: grid;
  }
}

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