:root {
  --bg: #090912;
  --bg-soft: #11111c;
  --panel: rgba(19, 18, 30, .78);
  --text: #f7f4f1;
  --muted: rgba(247, 244, 241, .66);
  --faint: rgba(247, 244, 241, .36);
  --line: rgba(255, 255, 255, .12);
  --rose: #ff8fb7;
  --rose-light: #ffd2df;
  --gold: #f1d5a6;
  --shadow: 0 32px 90px rgba(0, 0, 0, .4);
  --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(154, 76, 114, .12), transparent 28rem),
    radial-gradient(circle at 20% 62%, rgba(88, 84, 148, .1), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 clamp(22px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(8, 8, 15, .82);
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: var(--rose-light);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 12px;
  letter-spacing: .22em;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .32em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.site-nav a {
  transition: color .2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
  transition: transform .25s ease;
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0;
}

section[id] {
  scroll-margin-top: 70px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
}

.hero-media,
.hero-vignette,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media {
  left: 30%;
  overflow: hidden;
  background: #18121b;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .45) 9%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .45) 9%, #000 22%, #000 100%);
}

.hero-media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  background: linear-gradient(90deg, rgba(8, 8, 17, .72), transparent);
  content: "";
  pointer-events: none;
  backdrop-filter: blur(7px);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(.82) contrast(1.03) brightness(.88);
  transform: scale(1.025);
}

.hero-vignette {
  background:
    linear-gradient(90deg, #080811 0%, rgba(8, 8, 17, .96) 24%, rgba(8, 8, 17, .64) 48%, rgba(8, 8, 17, .12) 72%),
    linear-gradient(180deg, rgba(5, 5, 10, .25), transparent 48%, #090912 100%);
}

.hero-glow {
  background: radial-gradient(circle at 63% 56%, rgba(255, 150, 187, .13), transparent 25rem);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 82px;
}

.eyebrow,
.section-index {
  color: var(--rose-light);
  font-size: 11px;
  font-weight: 600;
}

.eyebrow {
  letter-spacing: .2em;
}

.section-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  letter-spacing: .16em;
}

.section-index::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--rose);
  content: "";
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(255, 143, 183, .32);
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 30px;
  font-family: var(--serif);
  font-size: clamp(58px, 7.7vw, 116px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
  text-shadow: 0 12px 48px rgba(0, 0, 0, .35);
}

.hero h1 em {
  color: var(--rose-light);
  font-style: normal;
  text-shadow: 0 0 38px rgba(255, 143, 183, .16);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-family: var(--serif);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

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

.button-primary {
  background: var(--text);
  color: #111019;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .24);
}

.button-primary:hover {
  background: var(--rose-light);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(8, 8, 16, .18);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.external-link-icon {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.external-link-icon::before {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}

.external-link-icon::after {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: center;
}

.hero-story-tag {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 76px);
  bottom: 72px;
  display: grid;
  gap: 5px;
  width: 230px;
  padding: 20px 0 20px 22px;
  border-left: 1px solid rgba(255, 255, 255, .35);
  background: linear-gradient(90deg, rgba(7, 7, 14, .24), transparent);
  text-shadow: 0 4px 18px rgba(0, 0, 0, .55);
}

.hero-story-tag span,
.hero-story-tag small {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  letter-spacing: .18em;
}

.hero-story-tag strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .08em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  letter-spacing: .23em;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 25px;
  background: linear-gradient(var(--rose-light), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.55); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.section-heading {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-heading .section-index {
  margin-bottom: 27px;
}

.section-heading h2,
.promise-intro h2,
.creator-heading h2,
.about h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.experience {
  padding-top: 92px;
  padding-bottom: 108px;
}

.experience-stage {
  display: grid;
  height: 450px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.42fr) minmax(410px, .78fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #12111b;
  box-shadow: var(--shadow);
}

.stage-image-wrap {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #15131c;
}

.stage-image-backdrop {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: center 35%;
  opacity: .72;
  filter: blur(28px) brightness(.54) saturate(.72);
  transform: scale(1.04);
  transition: opacity .28s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.stage-image-backdrop.changing {
  opacity: .25;
  transform: scale(1.08);
}

.stage-portrait-frame {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 14px 72px 0;
  align-items: center;
  justify-content: center;
}

.stage-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 60px rgba(0, 0, 0, .38);
  transition: opacity .28s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.stage-image.changing {
  opacity: .28;
  transform: scale(1.025);
}

.stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 12, .08) 30%, rgba(7, 7, 12, .84) 100%);
}

.stage-meta {
  position: absolute;
  inset: 22px 24px auto;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.dialogue-box {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(9, 9, 17, .62);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.speaker {
  margin-bottom: 8px;
  color: var(--rose-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
}

.dialogue-box p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.choice-panel {
  display: flex;
  padding: 18px 22px 16px;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 143, 183, .12), transparent 18rem),
    #11101a;
}

.story-brief {
  position: relative;
  display: grid;
  margin-bottom: 12px;
  padding-bottom: 12px;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.story-brief span {
  color: var(--rose-light);
  font-size: 9px;
  letter-spacing: .16em;
}

.story-brief h3 {
  margin: 4px 0 1px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.story-brief p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
}

.story-brief > a {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease;
}

.story-brief > a:hover {
  border-color: var(--rose-light);
  background: rgba(255, 143, 183, .09);
}

.story-brief > a .external-link-icon {
  width: 11px;
  height: 11px;
  flex-basis: 11px;
  transform: scale(.85);
}

.choice-intro {
  display: grid;
  gap: 4px;
  margin-bottom: 9px;
}

.choice-intro span {
  color: var(--rose-light);
  font-size: 10px;
  letter-spacing: .18em;
}

.choice-intro strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .68);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.choice:hover {
  border-color: rgba(255, 210, 223, .38);
  color: #fff;
  transform: translateX(3px);
}

.choice.active {
  border-color: rgba(255, 210, 223, .62);
  background: linear-gradient(90deg, rgba(255, 143, 183, .17), rgba(255, 255, 255, .03));
  color: #fff;
}

.choice-key {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--rose-light);
  font-size: 10px;
}

.remembered-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  margin-top: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(241, 213, 166, .24);
  border-radius: 15px;
  background: rgba(241, 213, 166, .06);
  transition: transform .3s ease, opacity .3s ease;
}

.remembered-card.updating {
  opacity: .35;
  transform: translateY(8px);
}

.memory-icon {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(241, 213, 166, .14);
  color: var(--gold);
}

.memory-icon::before,
.memory-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.memory-icon::before {
  width: 13px;
  height: 1px;
}

.memory-icon::after {
  width: 1px;
  height: 13px;
}

.remembered-card span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .16em;
}

.remembered-card strong {
  display: block;
  margin: 4px 0 2px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}

.remembered-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

@media (min-width: 981px) {
  .experience-stage {
    height: clamp(540px, 45vw, 600px);
  }

  .stage-portrait-frame {
    padding-top: 18px;
  }

  .choice-panel {
    padding: 24px 24px 22px;
  }

  .remembered-card {
    margin-top: auto;
  }
}


.promise {
  padding-top: 104px;
}

.promise-intro {
  margin-bottom: 46px;
  text-align: center;
}

.promise-intro .section-index {
  margin: 0 auto 27px;
}

.promise-intro h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promise-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    var(--bg-soft);
}

.promise-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 143, 183, .08);
  content: "";
  filter: blur(8px);
}

.promise-symbol {
  position: absolute;
  top: 62px;
  right: 28px;
  color: rgba(255, 210, 223, .17);
  font-family: var(--serif);
  font-size: 112px;
  line-height: 1;
}

.promise-card h3 {
  position: absolute;
  right: 28px;
  bottom: 104px;
  left: 28px;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.promise-card p {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.creator {
  width: min(1240px, calc(100% - 48px));
  padding-top: 108px;
}

.creator-heading {
  display: flex;
  width: 100%;
  margin: 0 0 48px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.creator-heading h2 {
  margin-top: 27px;
}

.creator-heading p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.creator-launch {
  display: inline-flex;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 20px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.creator-launch:hover {
  border-color: rgba(255, 185, 211, .72);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-2px);
}

.creator-showcase {
  width: 100%;
}

.creator-controls {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.creator-tabs {
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.creator-tabs button {
  position: relative;
  min-height: 40px;
  padding: 0 3px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .48);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .04em;
  transition: color .2s ease;
}

.creator-tabs button:hover {
  color: rgba(255, 255, 255, .86);
}

.creator-tabs button.active {
  color: #fff;
}

.creator-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), #c7adff);
  content: "";
}

.creator-screen {
  position: relative;
  overflow: auto hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: #101117;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .36);
  scrollbar-color: rgba(105, 78, 224, .35) transparent;
  scrollbar-width: thin;
}

.creator-screen img {
  display: block;
  width: 100%;
  max-width: none;
  transition: opacity .24s ease, transform .24s ease;
}

.creator-screen img.changing {
  opacity: .3;
  transform: scale(.995);
}

.creator-swipe-hint {
  display: none;
}

.about {
  display: block;
  padding-top: 108px;
  text-align: center;
}

.about .section-index {
  display: inline-flex;
  margin-bottom: 25px;
}

.about-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.about-detail {
  max-width: 760px;
  margin: 24px auto 0;
}

.about-detail p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
  text-align: center;
}

.site-footer {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-size: 10px;
  letter-spacing: .08em;
}

.site-footer div {
  display: grid;
  gap: 5px;
}

.site-footer strong {
  color: rgba(255, 255, 255, .72);
  letter-spacing: .18em;
}

.footer-legal {
  justify-items: end;
  text-align: right;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: rgba(255, 255, 255, .72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

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

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@media (max-width: 980px) {
  .section {
    width: min(100% - 36px, 760px);
    padding: 92px 0;
  }

  .hero-media {
    left: 12%;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, #080811 0%, rgba(8, 8, 17, .82) 42%, rgba(8, 8, 17, .18) 100%),
      linear-gradient(180deg, rgba(5, 5, 10, .18), transparent 48%, #090912 100%);
  }

  .hero-story-tag {
    display: none;
  }

  .experience-stage {
    height: auto;
    grid-template-columns: 1fr;
  }

  .stage-image-wrap {
    min-height: 520px;
  }

  .choice-panel {
    min-height: 480px;
  }

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

  .promise-card {
    min-height: 310px;
  }

  .creator {
    width: min(100% - 36px, 760px);
  }

}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .menu-toggle {
    position: relative;
    z-index: 91;
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    visibility: hidden;
    padding: 110px 28px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background:
      radial-gradient(circle at 88% 12%, rgba(151, 83, 117, .2), transparent 34%),
      #08080f;
    font-family: var(--serif);
    font-size: 28px;
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .site-nav a:not(.nav-cta) {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
  }

  .site-nav .nav-cta {
    margin-top: auto;
    font-family: var(--sans);
    font-size: 14px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    inset: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-media::after {
    display: none;
  }

  .hero-media video,
  .hero-media img {
    object-position: 67% 34%;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(7, 7, 13, .25) 0%, rgba(7, 7, 13, .12) 28%, rgba(7, 7, 13, .82) 67%, #090912 100%),
      linear-gradient(90deg, rgba(7, 7, 13, .55), transparent 72%);
  }

  .hero-content {
    width: calc(100% - 36px);
    align-self: end;
    padding: 0 0 112px;
  }

  .hero h1 {
    margin: 16px 0 22px;
    font-size: clamp(51px, 16vw, 72px);
    line-height: .98;
  }

  .hero-subtitle {
    max-width: 92%;
    font-size: 14px;
    line-height: 1.8;
  }

  .desktop-only {
    display: none;
  }

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

  .hero-actions .button {
    min-height: 50px;
    padding: 0 18px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    width: calc(100% - 32px);
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .promise-intro h2,
  .creator-heading h2,
  .about h2 {
    font-size: 40px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .section-index {
    gap: 9px;
    font-size: 10px;
  }

  .section-index::before {
    width: 6px;
    height: 6px;
  }

  .experience {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .experience-stage {
    min-height: 0;
    border-radius: 20px;
  }

  .stage-image-wrap {
    min-height: 470px;
  }

  .stage-portrait-frame {
    padding: 10px 26px 0;
  }

  .stage-meta {
    right: 16px;
    left: 16px;
  }

  .stage-meta span:last-child {
    display: none;
  }

  .dialogue-box {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }

  .choice-panel {
    min-height: 500px;
    padding: 24px 20px 22px;
  }

  .promise {
    padding-top: 44px;
  }

  .promise-intro {
    margin-bottom: 34px;
  }

  .promise-intro .section-index {
    margin-bottom: 22px;
  }

  .promise-card {
    min-height: 290px;
  }

  .creator {
    width: calc(100% - 32px);
    padding-top: 78px;
  }

  .creator-heading {
    width: calc(100% - 8px);
    margin-bottom: 36px;
  }

  .creator-heading p {
    font-size: 14px;
  }

  .creator-tabs {
    width: min(100%, 320px);
    justify-content: space-between;
    gap: 0;
    overflow: visible;
  }

  .creator-tabs button {
    min-width: 72px;
    padding: 0;
  }

  .creator-screen {
    border-radius: 14px;
  }

  .creator-screen img {
    width: 900px;
  }

  .creator-swipe-hint {
    position: sticky;
    right: 12px;
    bottom: 12px;
    display: block;
    width: max-content;
    margin: -40px 12px 12px auto;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(23, 20, 38, .82);
    color: rgba(255, 255, 255, .78);
    font-size: 9px;
    backdrop-filter: blur(8px);
  }

  .about-detail p {
    font-size: 14px;
  }

  .site-footer {
    width: calc(100% - 32px);
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-legal {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) and (orientation: portrait) {
  .experience-stage .choice-panel {
    min-height: 0;
    padding-bottom: 14px;
    order: -1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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