@font-face {
  font-family: "Source Han Sans SC Web";
  src: url("./assets/fonts/source-han-sans-sc-extralight-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans SC Web";
  src: url("./assets/fonts/source-han-sans-sc-regular-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans SC Web";
  src: url("./assets/fonts/source-han-sans-sc-medium-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans SC Web";
  src: url("./assets/fonts/source-han-sans-sc-bold-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #030817;
  --bg-deep: #020611;
  --surface: #0a0e22;
  --surface-violet: #15102c;
  --gold: #d6a75e;
  --gold-light: #f1cf93;
  --gold-deep: #8d6035;
  --violet: #9b45d7;
  --text: #f5efe6;
  --muted: #aaa7b3;
  --muted-2: #777684;
  --line: rgba(214, 167, 94, 0.54);
  --line-soft: rgba(214, 167, 94, 0.2);
  --serif: "Source Han Sans SC Web", sans-serif;
  --display: "Source Han Sans SC Web", sans-serif;
  --sans: "Source Han Sans SC Web", sans-serif;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
[hidden] { display: none !important; }

.section-frame {
  position: relative;
  width: min(100% - 34px, 1180px);
  margin-inline: auto;
}

.brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: max(24px, env(safe-area-inset-top));
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  color: var(--gold-light);
  white-space: nowrap;
}
.brand-logo-image {
  position: relative;
  width: 160px;
  height: 84px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-logo-image img {
  position: absolute;
  top: -50px;
  left: -29px;
  width: 210px;
  max-width: none;
  filter: grayscale(1) contrast(3.2) brightness(1.08) sepia(1) saturate(1.5) hue-rotate(344deg);
  mix-blend-mode: screen;
}
.brand-lockup em {
  margin-left: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  letter-spacing: .08em;
}
.brand-rule { height: 1px; flex: 1; background: var(--line); }
.quiet-link {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  color: var(--gold-light);
  background: var(--bg);
  font-size: 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-bottom: 78px;
  overflow: hidden;
}
.hero-layout {
  position: relative;
  min-height: 780px;
  padding-top: clamp(72px, 12vh, 124px);
}
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.hero h1,
.benefits-heading h2,
.proof-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 200;
}
.hero h1 {
  font-size: clamp(52px, 11.2vw, 92px);
  line-height: 1.24;
  letter-spacing: -.025em;
}
.hero h1 span { color: var(--gold-light); }
.mini-ornament {
  width: 136px;
  margin: 30px 0 28px;
  display: flex;
  align-items: center;
  color: var(--gold-light);
}
.mini-ornament::after { height: 1px; flex: 1; margin-left: 10px; content: ""; background: var(--line); }
.mini-ornament i { font-size: 21px; }
.hero-copy > p {
  margin: 0 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(17px, 4.4vw, 23px);
  line-height: 1.95;
}
.gold-button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #f4d59b;
  border-radius: 13px;
  color: #181006;
  background: #e7ba72;
  box-shadow: 0 12px 34px rgba(197, 133, 61, .22);
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease;
}
.gold-button:hover { background: #f0ca8d; transform: translateY(-2px); }
.gold-button:focus-visible,
.quiet-link:focus-visible,
.proof-tab:focus-visible,
.case-cover:focus-visible,
.support-visual:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
.hero-keywords {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b78c57;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .16em;
}
.hero-keywords b { font-weight: 400; opacity: .7; }
.hero-media {
  position: relative;
  width: min(92vw, 760px);
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; transition: transform .7s var(--ease); }
.hero-media:hover > img { transform: scale(1.025); }
.hero-static {
  position: absolute;
  z-index: 0;
  top: 110px;
  right: -42%;
  width: 142%;
  height: 650px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
  opacity: .55;
}
.hero-static > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  transition: none;
}
.hero-static:hover > img { transform: none; }
.hero-media::after,
.case-cover::after,
.visual-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(3, 7, 18, .14);
  pointer-events: none;
}
.hero-static::after {
  display: block;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(3,8,23,.92) 16%, rgba(3,8,23,.16) 58%, rgba(3,8,23,.06) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%, transparent 75%, var(--bg) 100%);
}
.media-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 207, 147, .72);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(4, 7, 18, .72);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(9px);
}
.media-play i { margin-left: 4px; font-size: 27px; }
.media-play.small { width: 50px; height: 50px; }
.media-play.small i { font-size: 21px; }
.media-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  text-align: left;
}
.media-caption small, .visual-label { color: var(--gold); font-size: 11px; }
.media-caption strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.hero-bridge {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}
.hero-bridge span { height: 1px; flex: 1; background: var(--line); }
.hero-bridge i { font-size: 17px; }

.benefits {
  padding-top: 30px;
  padding-bottom: 112px;
}
.benefits-brand { padding-top: 0; }
.benefits-heading {
  position: relative;
  padding: 52px 0 50px;
}
.benefits-heading h2 {
  color: var(--gold-light);
  font-size: clamp(55px, 14vw, 98px);
  line-height: 1.16;
  letter-spacing: -.065em;
}
.heading-star {
  position: absolute;
  top: 118px;
  right: 14%;
  color: var(--violet);
  font-size: 38px;
}
.benefits-heading > p {
  margin: 32px 0 0;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(18px, 4.8vw, 25px);
  line-height: 1.78;
}

.support-timeline { position: relative; padding-left: 2px; }
.support-timeline::before {
  display: none;
}
.support-item {
  position: relative;
  min-height: 176px;
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  column-gap: 14px;
}
.support-item::before {
  position: absolute;
  z-index: 0;
  top: -42px;
  bottom: -18px;
  left: 6px;
  width: 54px;
  content: "";
  border-left: 1px solid rgba(214,167,94,.82);
  border-radius: 50% 0 0 50%;
  transform: rotate(-2deg);
  transform-origin: center;
}
.support-item:nth-child(even)::before {
  left: -11px;
  width: 72px;
  border-left: 0;
  border-right: 1px solid rgba(214,167,94,.82);
  border-radius: 0 50% 50% 0;
  transform: rotate(2deg);
}
.support-item:first-child::before { top: 38px; }
.support-item:last-child::before { bottom: 82px; }
.support-item::after {
  position: absolute;
  z-index: 3;
  top: 41px;
  left: 1px;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 14px var(--gold);
}
.support-marker {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  margin-left: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle at 52% 45%, rgba(69,39,91,.28), var(--bg) 68%);
  box-shadow: inset 0 0 24px rgba(155,69,215,.08);
}
.support-marker i { font-size: 37px; }
.support-copy { min-width: 0; padding-top: 2px; }
.support-number {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 13px;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 200;
  font-size: 38px;
  line-height: 1;
}
.support-number::after {
  position: absolute;
  right: -46px;
  bottom: -7px;
  width: 42px;
  height: 1px;
  content: "";
  background: var(--violet);
}
.support-copy h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(21px, 5.5vw, 29px);
  font-weight: 400;
  line-height: 1.42;
}
.support-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.support-visual {
  position: relative;
  min-width: 0;
  grid-column: 2;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28);
}
.avatar-showcase {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  border-color: rgba(214, 167, 94, .72);
  background: #070b1d;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .42), 0 0 26px rgba(112, 65, 174, .12);
}
.avatar-showcase > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.avatar-showcase figcaption {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 13px;
  left: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(214, 167, 94, .28);
  border-radius: 10px;
  background: rgba(5, 8, 23, .82);
}
.avatar-showcase figcaption strong { color: #bf72eb; font-family: var(--sans); font-style: normal; font-weight: 500; }
.avatar-showcase figcaption span { color: var(--muted); font-size: 11px; }
.visual-report,
.visual-static,
.visual-feature { display: block; aspect-ratio: 16 / 9; }
.visual-report img,
.visual-static img,
.visual-feature > img { width: 100%; height: 100%; object-fit: cover; }
.visual-report > span { position: absolute; z-index: 2; right: 12px; bottom: 10px; padding: 7px 9px; display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line-soft); border-radius: 8px; color: var(--gold-light); background: rgba(3,8,23,.86); font-size: 10px; }
.visual-feature figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.visual-companion figcaption span { padding: 6px 10px; border: 1px solid rgba(241,207,147,.38); border-radius: 999px; color: var(--gold-light); background: rgba(5,8,23,.78); font-size: 10px; }
.visual-desktop figcaption { top: 14px; right: auto; bottom: auto; left: 14px; flex-direction: column; align-items: flex-start; }
.visual-desktop figcaption strong { color: var(--gold-light); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.visual-desktop figcaption span { color: rgba(241,207,147,.78); font-size: 10px; letter-spacing: .12em; }
.companion-panel {
  padding: 16px;
  background: var(--surface-violet);
}
.companion-icon {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #c879ef;
  font-size: 12px;
}
.companion-icon > i { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(200,121,239,.45); border-radius: 50%; font-size: 21px; }
.companion-panel p {
  width: fit-content;
  max-width: 94%;
  margin: 7px 0 7px auto;
  padding: 8px 10px;
  border: 1px solid rgba(211, 178, 231, .22);
  border-radius: 10px;
  color: #e8dfee;
  background: #1b1730;
  font-size: 12px;
  line-height: 1.45;
}
.companion-panel p:nth-of-type(2) { margin-right: 7%; }
.companion-panel p i { color: #c879ef; }
.desktop-panel {
  min-height: 155px;
  padding: 18px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 13px;
  background: var(--surface-violet);
}
.desktop-cover { width: 72px; aspect-ratio: 1 / 1.2; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 10px; }
.desktop-cover img { width: 100%; height: 100%; object-fit: cover; }
.desktop-panel small { color: var(--gold); font-size: 10px; }
.desktop-panel strong { display: block; margin: 7px 0 12px; color: #e7dfeb; font-family: var(--serif); font-size: 14px; line-height: 1.5; }
.desktop-panel span { display: flex; gap: 9px; color: #c879ef; font-size: 15px; }
.exclusive-card { height: 100px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 7px; border: 1px solid rgba(200,121,239,.32); border-radius: 10px; color: #d7cae0; background: #211638; text-align: center; }
.exclusive-card i { color: #c879ef; font-size: 23px; }
.exclusive-card strong { margin: 0; font-size: 11px; }
.section-cue {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .12em;
}
.section-cue span { height: 1px; background: var(--line); }
.section-cue b { font-weight: 400; }
.section-cue i { font-size: 17px; }

.proof {
  padding-top: 42px;
  padding-bottom: 70px;
}
.brand-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--gold-light);
}
.brand-center em { margin-left: 7px; font-family: var(--sans); font-style: normal; font-size: 14px; letter-spacing: .12em; }
.proof-heading { margin: 34px auto 22px; text-align: center; }
.proof-heading h2 { color: var(--gold-light); font-size: clamp(42px, 10vw, 70px); line-height: 1.24; letter-spacing: .02em; }
.proof-heading p { margin: 14px 0 0; color: var(--muted); font-family: var(--serif); font-size: 15px; letter-spacing: .08em; }
.proof-nav {
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-soft);
}
.proof-tab {
  position: relative;
  min-height: 50px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.proof-tab::after {
  position: absolute;
  right: 23%;
  bottom: -1px;
  left: 23%;
  height: 2px;
  content: "";
  background: var(--gold-light);
  opacity: 0;
}
.proof-tab.is-active { color: var(--gold-light); }
.proof-tab.is-active::after { opacity: 1; }
.proof-panel { animation: proof-panel-in .35s var(--ease); }
.proof-panel.is-active { display: grid; }
@keyframes proof-panel-in { from { opacity: 0; transform: translateY(12px); } }
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.media-grid > .case-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 16px) / 2);
  justify-self: center;
}
.case-card { min-width: 0; text-align: center; }
.case-cover {
  position: relative;
  width: 100%;
  aspect-ratio: .68 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
}
.case-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.case-cover:hover img { transform: scale(1.035); }
.case-card h3 {
  margin: 12px 0 7px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(14px, 4vw, 22px);
  font-weight: 400;
  line-height: 1.25;
}
.case-card > div { display: flex; align-items: center; justify-content: center; gap: 8px; }
.text-action,
.case-card > div > a {
  min-height: 32px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}
.report-deck {
  position: relative;
  margin: 62px auto 0;
  padding: 0 5px 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 0;
}
.transition-panel { width: min(100%, 640px); margin-inline: auto; }
.transition-case .case-cover { aspect-ratio: 16 / 9; }
.transition-case .case-cover img { object-position: center 45%; }
.report-card { min-width: 0; text-align: center; transform-origin: center bottom; }
.report-card > a:first-child {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 45px rgba(0,0,0,.3);
}
.report-card img { width: 100%; aspect-ratio: .707 / 1; object-fit: cover; }
.report-card.featured { position: relative; z-index: 2; transform: translateY(-14px); }
.report-card.tilt-left { transform: rotate(-4deg); }
.report-card.tilt-right { transform: rotate(4deg); }
.download-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(11px, 3vw, 16px);
}

.process { margin-top: 80px; }
.process h2 {
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 400;
  text-align: center;
}
.process h2 span { height: 1px; background: var(--line); }
.process ol {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}
.process ol::before {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  border-top: 2px dotted var(--gold);
  opacity: .66;
}
.process li { position: relative; z-index: 1; min-width: 0; text-align: center; }
.process li > b {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  transform: translateX(-50%);
}
.process li > i {
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--bg);
  font-size: 30px;
}
.process li strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: clamp(15px, 4vw, 22px); font-weight: 400; }
.process li p { margin: 5px 2px 0; color: var(--muted); font-size: 10px; line-height: 1.4; }

.final-cta {
  position: relative;
  min-height: 260px;
  margin-top: 64px;
  padding: 34px 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-violet);
  text-align: center;
}
.final-cta > div { position: relative; z-index: 2; }
.final-cta h2 { color: var(--gold-light); font-size: clamp(28px, 6.5vw, 50px); line-height: 1.35; }
.final-cta p { margin: 12px 0 20px; color: var(--muted); font-family: var(--serif); line-height: 1.6; }
.cta-mic { position: absolute; right: -16px; bottom: -38px; color: var(--gold); font-size: 156px; opacity: .18; transform: rotate(-8deg); }

.site-footer {
  width: min(100% - 34px, 1180px);
  margin-inline: auto;
  padding: 34px 0 calc(100px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.6;
}
.site-footer p { margin: 0; }
.site-footer .brand-logo-image { width: 132px; height: 70px; }
.site-footer .brand-logo-image img { top: -42px; left: -24px; width: 174px; }

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #f4d59b;
  border-radius: 14px;
  color: #181006;
  background: #e7ba72;
  box-shadow: 0 15px 44px rgba(0,0,0,.46);
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), opacity .25s ease;
}
.sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(18px); }

.modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  color: var(--text);
  background: rgba(1, 3, 10, .82);
  backdrop-filter: blur(12px);
}
body.modal-open { overflow: hidden; }
.modal-surface {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 620px);
  padding: 22px 20px calc(24px + env(safe-area-inset-bottom));
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: #080d1f;
  box-shadow: 0 -24px 80px rgba(0,0,0,.5);
  transform: translateX(-50%);
  animation: sheet-in .34s var(--ease);
}
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.modal-head h2 { margin: 0; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.modal-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
}
.video-player { position: relative; display: grid; place-items: center; }
.video-player video { display: block; width: 100%; height: auto; max-height: 70dvh; border-radius: 16px; background: #000; object-fit: contain; }
.video-surface.is-portrait { width: min(calc(100% - 24px), 420px); }
.video-surface.is-portrait .video-player video { width: auto; max-width: 100%; height: min(68dvh, 760px); aspect-ratio: 9 / 16; }
.dialog-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--gold-light);
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.dialog-play i { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(3,8,23,.76); font-size: 24px; }
.dialog-play span { font-size: 12px; }
.dialog-play.is-hidden { opacity: 0; pointer-events: none; }
.video-hint { margin: 10px 0 0; color: var(--muted-2); font-size: 11px; text-align: center; }
.download-button { min-height: 48px; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 12px; color: var(--gold-light); }
.cta-surface { padding: 42px 24px calc(30px + env(safe-area-inset-bottom)); text-align: center; }
.cta-surface > .modal-close { position: absolute; top: 16px; right: 16px; }
.dialog-spark { color: var(--gold-light); font-size: 36px; }
.cta-surface h2 { margin: 15px 0 0; color: var(--gold-light); font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.5; }
.copy-message { margin: 22px 0 18px; padding: 16px; border: 1px solid var(--line-soft); border-radius: 12px; color: #e2dce8; background: var(--surface); line-height: 1.75; }
.copy-button { width: 100%; }
.cta-surface small { display: block; margin-top: 13px; color: var(--muted-2); }
.toast {
  position: fixed;
  z-index: 90;
  top: calc(20px + env(safe-area-inset-top));
  left: 50%;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--gold-light);
  background: #080d1f;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity .22s ease, transform .22s ease;
  white-space: nowrap;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.flash-focus { animation: flash-focus 1.1s ease; }
@keyframes sheet-in { from { opacity: 0; transform: translate(-50%, 24px); } }
@keyframes flash-focus { 50% { box-shadow: 0 0 0 3px rgba(214, 167, 94, .42); } }

@media (min-width: 900px) {
  .section-frame { width: min(100% - 64px, 1180px); }
  .hero-layout { display: block; min-height: 720px; padding-top: 118px; }
  .hero-copy { max-width: 620px; }
  .hero-static { top: 24px; right: -4%; width: 54%; height: 730px; opacity: .98; }
  .hero-static::after { background: linear-gradient(90deg, var(--bg) 0%, rgba(3,8,23,.88) 14%, rgba(3,8,23,.12) 51%, transparent 78%), linear-gradient(0deg, var(--bg) 0%, transparent 16%, transparent 86%, var(--bg) 100%); }
  .benefits-heading > p { width: fit-content; }
  .support-item { grid-template-columns: 124px minmax(250px, 1fr) minmax(320px, 420px); column-gap: 28px; align-items: center; padding-bottom: 86px; }
  .support-item::before { left: 12px; width: 68px; }
  .support-item:nth-child(even)::before { left: -12px; width: 92px; }
  .support-item::after { top: 48px; left: 5px; }
  .support-marker { width: 98px; height: 98px; }
  .support-marker i { font-size: 42px; }
  .support-copy { grid-column: 2; }
  .support-visual { grid-column: 3; margin-top: 0; }
  .support-item:nth-child(even) .support-copy { grid-column: 2; }
  .support-item:nth-child(even) .support-visual { grid-column: 3; }
  .visual-report { display: block; height: auto; aspect-ratio: 16 / 9; }
  .visual-report img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 1; }
  .visual-report > span { position: absolute; right: 13px; bottom: 12px; padding: 8px 10px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line-soft); border-radius: 8px; color: var(--gold-light); background: rgba(3,8,23,.86); font-size: 11px; }
  .media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .media-grid > .case-card:last-child:nth-child(odd) { grid-column: auto; width: auto; justify-self: stretch; }
  .report-deck { width: min(86%, 900px); }
  .process { margin-top: 100px; }
  .process li p { font-size: 12px; }
  .final-cta { min-height: 340px; padding: 48px; }
  .cta-mic { right: 4%; font-size: 230px; }
  .site-footer { width: min(100% - 64px, 1180px); padding-bottom: 46px; flex-direction: row; align-items: center; justify-content: space-between; }
  .sticky-cta { display: none; }
  .modal-surface { bottom: 50%; border-radius: 24px; transform: translate(-50%, 50%); animation: dialog-in .3s var(--ease); }
  @keyframes dialog-in { from { opacity: 0; transform: translate(-50%, 46%); } }
}

@media (min-width: 1100px) {
  .brand-line { padding-top: 32px; }
  .hero { min-height: 860px; }
  .hero-layout { min-height: 760px; padding-top: 148px; }
  .hero h1 { font-size: 82px; }
  .hero-static { top: -12px; right: -3%; width: 54%; height: 790px; margin: 0; }
  .benefits { padding-top: 58px; padding-bottom: 130px; }
  .benefits-heading { padding: 38px 0 34px; }
  .benefits-heading h2 { font-size: 68px; }
  .benefits-heading > p { margin-top: 20px; }
  .heading-star { top: 92px; right: 39%; }
  .support-timeline { width: min(100%, 1050px); margin-inline: auto; }
  .support-copy h3 { font-size: 28px; }
  .support-copy p { font-size: 15px; }
  .proof { padding-top: 78px; padding-bottom: 90px; }
  .proof-heading h2 { font-size: 62px; }
  .proof-nav { width: 78%; }
  .media-grid { width: 70%; margin-inline: auto; }
  .case-cover { aspect-ratio: .78 / 1; }
  .transition-panel { width: 62%; }
  .transition-case .case-cover { aspect-ratio: 16 / 9; }
  .process { width: 90%; margin-inline: auto; margin-top: 112px; }
  .final-cta { width: 94%; margin-inline: auto; margin-top: 78px; }
}

@media (max-width: 420px) {
  .section-frame { width: min(100% - 28px, 1180px); }
  .quiet-link { display: none; }
  .hero { padding-bottom: 68px; }
  .hero-layout { min-height: 760px; padding-top: 54px; }
  .hero-static { top: 165px; right: -54%; width: 154%; height: 610px; margin: 0; opacity: .48; }
  .hero-static > img { object-position: 100% center; }
  .benefits-heading { padding-top: 44px; }
  .heading-star { right: 7%; }
  .support-item { grid-template-columns: 94px minmax(0, 1fr); column-gap: 12px; }
  .support-marker { width: 78px; height: 78px; margin-left: 18px; }
  .support-marker i { font-size: 34px; }
  .support-item::after { left: 0; top: 38px; }
  .support-item::before { left: 5px; width: 50px; }
  .support-item:nth-child(even)::before { left: -10px; width: 65px; }
  .support-copy h3 { font-size: 20px; }
  .support-copy p { font-size: 13px; }
  .avatar-showcase { width: 100%; }
  .process li > i { width: 72px; height: 72px; font-size: 25px; }
  .process li > b { width: 31px; height: 31px; font-size: 11px; }
  .process ol::before { top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
