:root {
  --bg: #06060a;
  --bg-soft: #0f0c14;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6ede6;
  --text-soft: rgba(246, 237, 230, 0.74);
  --text-dim: rgba(246, 237, 230, 0.5);
  --ink: #16131a;
  --accent: #ead4c5;
  --rose: #d45492;
  --violet: #7a4df2;
  --gold: #cf9656;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.34);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(122, 77, 242, 0.18), transparent 26%),
    radial-gradient(circle at 100% 12%, rgba(212, 84, 146, 0.14), transparent 22%),
    linear-gradient(180deg, #09080d 0%, #0b0910 36%, #06060a 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.ambient-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow--violet {
  width: 320px;
  height: 320px;
  left: -60px;
  top: 14%;
  background: radial-gradient(circle at center, rgba(122, 77, 242, 0.24), transparent 72%);
}

.ambient-glow--rose {
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: 18%;
  background: radial-gradient(circle at center, rgba(212, 84, 146, 0.2), transparent 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding-top: 14px;
}

.site-nav,
.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.22);
}

.brand,
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand {
  justify-self: start;
  font-weight: 800;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-dim);
  font-weight: 600;
}

.nav-links--center {
  justify-self: center;
}

.nav-links--meta {
  justify-self: end;
}

.hero-shell {
  position: relative;
  min-height: 100svh;
  padding: 92px 0 54px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.02) brightness(0.5) blur(4px);
  transform: scale(1.05);
}

.hero-backdrop__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 12, 0.9) 0%, rgba(8, 8, 12, 0.68) 26%, rgba(8, 8, 12, 0.26) 52%, rgba(8, 8, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 8, 12, 0.18) 0%, rgba(8, 8, 12, 0.08) 18%, rgba(8, 8, 12, 0.2) 42%, rgba(8, 8, 12, 0.72) 100%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
  min-height: calc(100svh - 146px);
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.section-kicker,
.stage-note__eyebrow,
.tier-card__index,
.feed-panel__tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 84, 146, 0.88);
}

.hero-copy h1,
.inside-copy h2,
.section-head h2,
.cta-panel h2 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  max-width: 9ch;
}

.hero-body,
.section-body,
.tier-card p,
.cta-note,
.feed-panel h3 {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-body,
.section-body {
  max-width: 35rem;
  font-size: 1rem;
}

.hero-tags,
.hero-actions,
.hero-meta,
.story-links,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin-top: 20px;
}

.hero-tags span,
.hero-meta span,
.stage-pill span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 20px;
}

.hero-meta {
  margin-top: 18px;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.stage-card,
.feed-panel,
.stage-note,
.stage-pill,
.tier-card,
.cta-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(122, 77, 242, 0.12), transparent 54%, rgba(212, 84, 146, 0.08));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.stage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
}

.stage-card img,
.stage-card video,
.feed-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stage-card__badge,
.feed-panel__tag {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
}

.stage-card__badge::before,
.live-dot {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57e58a;
  box-shadow: 0 0 8px rgba(87, 229, 138, 0.7);
  flex-shrink: 0;
}

.live-dot {
  margin-right: 8px;
}

.stage-card--main {
  left: 0;
  top: 12%;
  width: 42%;
  height: 72%;
  transform: rotate(-8deg);
  animation: floatMain 9s var(--ease-in-out) infinite alternate;
}

.stage-card--video {
  left: 30%;
  top: 24%;
  width: 28%;
  height: 52%;
  transform: rotate(7deg);
  animation: floatVideo 10s var(--ease-in-out) infinite alternate;
}

.stage-card--video video {
  object-position: 50% 0%;
}

.stage-card--side {
  right: 0;
  top: 8%;
  width: 38%;
  height: 62%;
  transform: rotate(6deg);
  animation: floatSide 11s var(--ease-in-out) infinite alternate;
}

.stage-note {
  position: absolute;
  top: 4%;
  left: 34%;
  max-width: 220px;
  padding: 18px;
  border-radius: 24px;
  transform: rotate(-4deg);
  animation: floatNote 8s var(--ease-in-out) infinite alternate;
}

.stage-note__copy {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.56;
}

.stage-pill {
  position: absolute;
  left: 6%;
  right: 10%;
  bottom: 2%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border-radius: 26px;
  animation: floatNote 9s var(--ease-in-out) infinite alternate-reverse;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Outfit", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    transform 160ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

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

.button:active {
  transform: scale(0.97);
}

.button--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(234, 212, 197, 0.22);
}

.button--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section--inside {
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.28) 0%, rgba(8, 8, 12, 0.82) 20%, rgba(8, 8, 12, 0.94) 100%),
    url("assets/reference-bg.jpg") center 10% / cover no-repeat;
}

.section--tiers {
  margin-top: -34px;
  margin-bottom: -48px;
  padding-top: 52px;
  padding-bottom: 148px;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.22) 0%, rgba(8, 8, 12, 0.62) 18%, rgba(8, 8, 12, 0.84) 54%, rgba(8, 8, 12, 0.92) 100%),
    url("assets/reference-bg.jpg") center 78% / cover no-repeat;
}

.inside-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.inside-copy h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  max-width: 10ch;
}

.inside-visual {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 16px;
}

.feed-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
}

.feed-panel--large {
  grid-row: span 2;
  min-height: 580px;
}

.feed-panel--portrait {
  min-height: 300px;
}

.feed-panel__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
}

.feed-panel__overlay h3 {
  margin: 0;
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--text);
}

.story-links {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.cta-panel h2 {
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  max-width: 10ch;
}

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

.tier-card {
  border-radius: 28px;
  padding: 26px;
}

.tier-card--primary {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(212, 84, 146, 0.14);
}

.tier-card h3 {
  margin: 14px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 0.95;
}

.section--cta {
  margin-top: -92px;
  padding-top: 56px;
  padding-bottom: 136px;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.14) 0%, rgba(8, 8, 12, 0.56) 16%, rgba(8, 8, 12, 0.9) 68%, rgba(8, 8, 12, 0.96) 100%),
    url("assets/reference-bg.jpg") center 78% / cover no-repeat;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
  padding: 34px;
  border-radius: 32px;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-note {
  max-width: 28rem;
}

.section--video-outro {
  margin-top: -54px;
  padding-top: 12px;
  padding-bottom: 124px;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.08) 0%, rgba(8, 8, 12, 0.74) 18%, rgba(8, 8, 12, 0.96) 100%),
    url("assets/reference-bg.jpg") center 82% / cover no-repeat;
}

.video-outro {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: end;
}

.video-outro__copy {
  max-width: 22rem;
}

.video-outro__copy h2 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.video-outro__frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(122, 77, 242, 0.12), transparent 54%, rgba(212, 84, 146, 0.08));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.video-outro__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.06) 0%, rgba(8, 8, 12, 0.18) 40%, rgba(8, 8, 12, 0.34) 100%);
  pointer-events: none;
}

.video-outro__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.mobile-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  transform: translateY(120%);
  transition: transform 220ms var(--ease-out);
}

.mobile-sticky.is-visible {
  transform: translateY(0);
}

.button--sticky {
  width: 100%;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(10px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out),
    filter 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="fade-down"] {
  transform: translateY(-24px) scale(0.98);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes floatMain {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  to {
    transform: translate3d(0, -18px, 0) rotate(-5deg);
  }
}

@keyframes floatVideo {
  from {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  to {
    transform: translate3d(0, 14px, 0) rotate(3deg);
  }
}

@keyframes floatSide {
  from {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }
  to {
    transform: translate3d(0, -16px, 0) rotate(2deg);
  }
}

@keyframes floatNote {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  to {
    transform: translate3d(0, 10px, 0) rotate(-1deg);
  }
}

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

  .nav-links--center {
    display: none;
  }

  .hero-layout,
  .inside-grid,
  .tier-grid,
  .cta-panel,
  .video-outro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-top: 10px;
  }

  .site-nav,
  .container,
  .hero-layout {
    width: calc(100% - 20px);
  }

  .nav-links--meta {
    gap: 14px;
    font-size: 0.72rem;
  }

  .hero-shell {
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .hero-backdrop__image {
    filter: saturate(0.94) contrast(1.04) brightness(0.42) blur(2px);
    transform: scale(1.02);
  }

  .hero-backdrop__veil {
    background:
      linear-gradient(180deg, rgba(8, 8, 12, 0.42) 0%, rgba(8, 8, 12, 0.18) 20%, rgba(8, 8, 12, 0.18) 40%, rgba(8, 8, 12, 0.74) 100%),
      linear-gradient(90deg, rgba(8, 8, 12, 0.56) 0%, rgba(8, 8, 12, 0.22) 28%, rgba(8, 8, 12, 0.34) 100%);
  }

  .hero-layout {
    min-height: auto;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .hero-body,
  .section-body {
    font-size: 0.94rem;
  }

  .hero-stage {
    min-height: 500px;
    margin-top: 18px;
  }

  .stage-card {
    border-radius: 24px;
  }

  .stage-card--main {
    left: 0;
    top: 16%;
    width: 48%;
    height: 62%;
  }

  .stage-card--video {
    left: 24%;
    top: 34%;
    width: 30%;
    height: 40%;
  }

  .stage-card--side {
    right: 0;
    top: 14%;
    width: 40%;
    height: 46%;
  }

  .stage-note {
    top: 8%;
    left: 28%;
    max-width: 138px;
    padding: 14px;
  }

  .stage-note__copy {
    font-size: 0.8rem;
  }

  .stage-pill {
    left: 0;
    right: 0;
    bottom: 4%;
    gap: 8px;
    padding: 12px;
  }

  .hero-actions,
  .cta-panel__actions,
  .story-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  .section--tiers {
    margin-top: -20px;
    margin-bottom: -34px;
    padding-top: 42px;
    padding-bottom: 110px;
    background-position: center 70%;
  }

  .inside-copy h2,
  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .inside-visual {
    grid-template-columns: 1fr;
  }

  .feed-panel--large {
    min-height: 420px;
  }

  .feed-panel {
    min-height: 280px;
    border-radius: 24px;
  }

  .feed-panel__overlay h3 {
    font-size: 1.7rem;
  }

  .tier-card {
    padding: 22px;
    border-radius: 24px;
  }

  .cta-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .section--cta {
    margin-top: -56px;
    padding-top: 46px;
    background-position: center 70%;
  }

  .section--video-outro {
    margin-top: -28px;
    padding-top: 10px;
    padding-bottom: 104px;
    background-position: center 76%;
  }

  .video-outro {
    gap: 18px;
  }

  .video-outro__frame {
    min-height: 420px;
    border-radius: 26px;
  }

  .video-outro__copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
