:root {
  --ink: #241629;
  --muted: #6f6175;
  --paper: #fff7fc;
  --night: #130a1d;
  --night-2: #24122f;
  --rose: #ec6bab;
  --rose-deep: #c4538d;
  --lilac: #a875ff;
  --blue: #62a6dc;
  --gold: #e0b872;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(21, 9, 28, 0.32);
  --glass-surface: linear-gradient(135deg, rgba(255, 247, 253, 0.5), rgba(236, 107, 171, 0.18) 48%, rgba(168, 117, 255, 0.24));
  --glass-surface-strong: linear-gradient(135deg, rgba(255, 250, 255, 0.58), rgba(236, 107, 171, 0.24) 48%, rgba(136, 102, 226, 0.28));
  --glass-readable: linear-gradient(135deg, rgba(255, 250, 255, 0.78), rgba(246, 209, 235, 0.62) 48%, rgba(201, 178, 255, 0.5));
  --glass-border: rgba(255, 255, 255, 0.42);
  --glass-line: rgba(236, 107, 171, 0.24);
  --glass-shadow: 0 26px 78px rgba(58, 22, 70, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  --glass-ink: #201226;
  --glass-muted: #4f3c59;
  --glass-accent: #b63d84;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background: var(--night);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::selection {
  color: #fff;
  background: var(--rose-deep);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

main > section[id] {
  scroll-margin-top: 82px;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(236, 107, 171, 0.62);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 80;
  min-height: 44px;
  padding: 10px 14px;
  transform: translateY(-200%);
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background: #000;
  border-radius: var(--radius);
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lilac), var(--blue));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(18, 8, 27, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner,
.brand,
.site-nav,
.hero-actions,
.proof-strip,
.mini-proof,
.feature-list,
.stage-list,
.store-grid,
.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
}

.header-inner {
  min-height: 72px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(236, 107, 171, 0.32);
  transition: color 180ms ease;
}

.brand:hover {
  color: var(--rose-light);
}

.site-nav {
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.site-nav a,
.header-action,
.button,
.store-button {
  min-height: 44px;
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav a {
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

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

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

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--lilac));
}

.site-nav a {
  position: relative;
}

.header-download {
  position: relative;
  z-index: 2;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--night);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.12);
}

.header-action::-webkit-details-marker {
  display: none;
}

.header-action::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.header-download[open] .header-action::after {
  transform: translateY(2px) rotate(225deg);
}

.header-download-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(20, 9, 30, 0.92);
  box-shadow: 0 24px 56px rgba(7, 2, 12, 0.36);
  backdrop-filter: blur(18px);
}

.header-download-menu a {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.header-download-menu a:hover {
  border-color: rgba(236, 107, 171, 0.42);
  background: rgba(236, 107, 171, 0.13);
}

.header-download-menu span {
  color: var(--rose-light);
  font-size: 12px;
  font-weight: 900;
}

.header-download-menu strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.header-action:hover,
.button:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 85;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(19, 10, 29, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.mobile-cta a {
  min-height: 44px;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

.mobile-cta a:first-child {
  background: linear-gradient(135deg, var(--rose), var(--lilac));
}

.mobile-cta a:last-child {
  background: rgba(255, 255, 255, 0.12);
}

.image-frame {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-frame {
  min-height: calc(100dvh - 28px);
  margin-top: -72px;
  padding-top: 72px;
}

.frame-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 6, 20, 0.96) 0%, rgba(18, 8, 27, 0.78) 35%, rgba(18, 8, 27, 0.3) 62%, rgba(18, 8, 27, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 6, 20, 0.42), rgba(13, 6, 20, 0.04) 48%, rgba(13, 6, 20, 0.36));
}

.light-scrim {
  background:
    linear-gradient(90deg, rgba(255, 246, 251, 0.04), rgba(255, 246, 251, 0.1) 46%, rgba(255, 246, 251, 0.3) 100%),
    linear-gradient(0deg, rgba(255, 246, 251, 0.16), rgba(255, 246, 251, 0));
}

.dark-scrim {
  background:
    linear-gradient(180deg, rgba(17, 7, 27, 0.44), rgba(17, 7, 27, 0.02) 44%, rgba(17, 7, 27, 0.38)),
    linear-gradient(90deg, rgba(17, 7, 27, 0.62), rgba(17, 7, 27, 0.04) 58%);
}

.dark-left-scrim {
  background:
    linear-gradient(90deg, rgba(15, 7, 23, 0.78) 0%, rgba(28, 12, 38, 0.46) 34%, rgba(28, 12, 38, 0.08) 62%, rgba(28, 12, 38, 0)),
    linear-gradient(0deg, rgba(15, 7, 23, 0.2), transparent 52%);
}

.growth-scrim {
  background:
    linear-gradient(90deg, rgba(13, 6, 20, 0.74) 0%, rgba(13, 6, 20, 0.42) 34%, rgba(13, 6, 20, 0.08) 64%, rgba(13, 6, 20, 0)),
    linear-gradient(0deg, rgba(13, 6, 20, 0.34), transparent 46%, rgba(13, 6, 20, 0.12));
}

#interactions .frame-image,
#growth .frame-image {
  filter: brightness(1.22) saturate(1.08);
}

.frame-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  min-height: calc(100dvh - 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  padding: 110px 0 86px;
}

.kicker {
  margin: 0 0 14px;
  color: #ff9ccc;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(66px, 8vw, 118px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
}

.hero-line {
  max-width: 600px;
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-text {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  box-shadow: 0 20px 46px rgba(236, 107, 171, 0.34);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.proof-strip,
.mini-proof,
.feature-list {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-strip span,
.mini-proof span,
.feature-list span,
.stage-list li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.experience-band {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, #130a1d, #1d1028);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-card {
  position: relative;
  min-height: 176px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 28px 24px;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.experience-card:first-child,
.experience-card:last-child {
  background:
    linear-gradient(135deg, rgba(236, 107, 171, 0.12), rgba(168, 117, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.experience-card:hover,
.experience-card:focus-visible {
  background: rgba(236, 107, 171, 0.16);
  box-shadow: inset 0 0 0 1px rgba(236, 107, 171, 0.38);
}

.experience-card:active {
  transform: translateY(1px);
}

.experience-card:last-child {
  border-right: 0;
}

.experience-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 900;
}

.experience-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.2;
}

.experience-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.experience-card em {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 18px;
  padding: 0 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.experience-hover-preview {
  position: fixed;
  left: var(--preview-left, 24px);
  top: var(--preview-top, 24px);
  z-index: 90;
  width: min(380px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 15, 43, 0.94), rgba(22, 9, 31, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
  transition: opacity 160ms ease, transform 160ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.experience-hover-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.experience-preview-copy span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.experience-preview-copy strong {
  display: block;
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.18;
}

.experience-preview-copy p {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.experience-preview-media {
  height: 164px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.experience-preview-media .demo-screenshot {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
}

.demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 5, 18, 0.78);
  backdrop-filter: blur(18px);
}

.demo-shell {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(780px, calc(100dvh - 48px));
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(360px, 1.16fr);
  gap: 22px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(43, 21, 54, 0.96), rgba(20, 9, 30, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.demo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
}

.demo-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.demo-close span:first-child {
  transform: rotate(45deg);
}

.demo-close span:last-child {
  transform: rotate(-45deg);
}

.demo-copy {
  align-self: center;
  padding: 18px 8px 18px 10px;
}

.demo-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.demo-copy p:not(.kicker) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.demo-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.demo-media {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(236, 107, 171, 0.32), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(98, 166, 220, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.demo-screenshot {
  display: block;
  width: auto;
  max-width: min(100%, 620px);
  max-height: min(650px, calc(100dvh - 140px));
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.36);
  animation: demoScreenshotIn 260ms ease both;
}

@keyframes demoScreenshotIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.demo-phone {
  width: min(330px, 88%);
  padding: 12px;
  background: #150b1d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.demo-phone-top,
.demo-profile,
.demo-toolbar,
.demo-growth-row,
.demo-gift {
  display: flex;
  align-items: center;
}

.demo-phone-top {
  min-height: 34px;
  justify-content: space-between;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
}

.demo-screen {
  min-height: 470px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #1a0e22;
  border-radius: 20px;
}

.demo-profile {
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.demo-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  border-radius: var(--radius);
}

.demo-profile strong,
.demo-profile span {
  display: block;
}

.demo-profile span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.demo-bubble {
  max-width: 88%;
  margin-top: 12px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  line-height: 1.55;
}

.demo-bubble.user {
  margin-left: auto;
  color: #2c1731;
  background: #f7bddb;
}

.demo-note,
.demo-gift,
.demo-growth-row {
  margin-top: 12px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(236, 107, 171, 0.16);
  border: 1px solid rgba(236, 107, 171, 0.22);
  border-radius: var(--radius);
  line-height: 1.55;
}

.demo-toolbar {
  gap: 8px;
  margin-top: 12px;
}

.demo-toolbar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.demo-gift {
  justify-content: space-between;
}

.demo-gift::after {
  content: "";
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff9dcc, #f6d184);
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(255, 157, 204, 0.48);
}

.demo-growth-row {
  justify-content: space-between;
  gap: 10px;
}

.demo-growth-row span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.demo-growth-row strong {
  flex: 0 0 52px;
}

.demo-growth-row em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-style: normal;
}

.demo-growth-row.is-active span {
  background: linear-gradient(135deg, var(--rose), var(--lilac));
}

.split-frame {
  min-height: 760px;
}

.split-content,
.story-top,
.closing-content {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.right-copy {
  justify-content: flex-end;
}

.left-copy {
  justify-content: flex-start;
}

.story-top {
  align-items: flex-start;
  padding-top: 88px;
}

.copy-panel {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.light-panel,
.memory-phone-shot,
.memory-proof-stack article,
.character-copy-panel,
.character-panorama-meta,
.download-panel {
  position: relative;
  overflow: hidden;
  color: var(--glass-ink);
  background: var(--glass-surface-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  backdrop-filter: blur(24px) saturate(1.18);
  isolation: isolate;
}

.light-panel::before,
.memory-phone-shot::before,
.memory-proof-stack article::before,
.character-copy-panel::before,
.character-panorama-meta::before,
.download-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(236, 107, 171, 0.08) 52%, rgba(168, 117, 255, 0.14));
}

.light-panel > *,
.memory-phone-shot > *,
.memory-proof-stack article > *,
.character-copy-panel > *,
.character-panorama-meta > *,
.download-panel > * {
  position: relative;
  z-index: 1;
}

.character-panorama-meta,
.download-panel {
  background: var(--glass-readable);
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 70px rgba(58, 22, 70, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.character-panorama-meta::before,
.download-panel::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.14) 34%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(236, 107, 171, 0.1) 52%, rgba(168, 117, 255, 0.16));
}

.light-panel h2,
.memory-proof-stack strong,
.character-copy-panel h2,
.character-panorama-meta strong,
.download-panel h2,
.store-button strong {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.copy-panel p {
  margin-top: 18px;
  line-height: 1.85;
}

.light-panel {
  color: var(--glass-ink);
}

.light-panel p {
  color: var(--glass-muted);
  font-weight: 500;
}

.light-panel .kicker {
  color: var(--glass-accent);
}

.light-panel .mini-proof span {
  color: var(--glass-ink);
  background: rgba(255, 255, 255, 0.38);
  border-color: var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.dark-panel {
  color: #fff;
  background: rgba(19, 10, 29, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.full-story-frame {
  min-height: 820px;
}

.memory-content {
  justify-content: flex-end;
}

.memory-story-panel {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: var(--glass-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 219, 241, 0.23) 48%, rgba(220, 205, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 18px 56px rgba(92, 47, 102, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(13px) saturate(1.08);
  backdrop-filter: blur(13px) saturate(1.08);
  transform: translate(72px, -56px);
}

.memory-story-copy .kicker {
  color: var(--glass-accent);
}

.memory-story-copy h2 {
  max-width: 330px;
  color: var(--glass-ink);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
}

.memory-story-copy p:not(.kicker) {
  max-width: 330px;
  margin-top: 12px;
  color: rgba(43, 28, 52, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.memory-story-copy .mini-proof {
  gap: 8px;
  margin-top: 16px;
}

.memory-story-copy .mini-proof span {
  min-height: 32px;
  padding: 0 10px;
  color: var(--glass-ink);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(92, 47, 102, 0.16);
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.memory-story-demo {
  min-width: 0;
}

.memory-example-shot {
  height: 340px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(70, 34, 82, 0.16);
}

.memory-example-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.memory-material-panel {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) minmax(190px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.memory-phone-shot,
.memory-proof-stack article {
  border-radius: var(--radius);
}

.memory-phone-shot {
  min-height: 332px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#memory .memory-phone-shot {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

#memory .memory-phone-shot::before,
#memory .memory-proof-stack article::before {
  display: none;
}

.memory-phone-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--glass-muted);
  font-size: 13px;
  font-weight: 900;
}

.memory-chat {
  display: grid;
  gap: 12px;
}

.memory-bubble {
  width: fit-content;
  max-width: 92%;
  padding: 12px 14px;
  color: var(--glass-ink);
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  line-height: 1.6;
}

.memory-bubble.from-user {
  justify-self: end;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
}

.memory-proof-stack {
  display: grid;
  gap: 0;
}

.memory-proof-stack article {
  min-height: 0;
  padding: 0 0 14px;
}

#memory .memory-proof-stack article {
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(73, 40, 86, 0.16);
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

#memory .memory-proof-stack article + article {
  padding-top: 14px;
}

#memory .memory-proof-stack article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.memory-proof-stack span {
  color: var(--glass-accent);
  font-size: 12px;
  font-weight: 900;
}

.memory-proof-stack strong {
  display: block;
  margin-top: 8px;
  color: var(--glass-ink);
  font-size: 18px;
}

.memory-proof-stack p {
  margin-top: 8px;
  color: var(--glass-muted);
  font-weight: 500;
  line-height: 1.55;
}

.character-showcase {
  position: relative;
  min-height: 900px;
  padding: 88px 0 86px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff6fb 0%, #ffe8f5 32%, #170a24 100%);
  isolation: isolate;
}

.character-backdrop,
.character-wash {
  position: absolute;
  inset: 0;
}

.character-backdrop {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.24;
  filter: blur(8px) brightness(1.2) saturate(0.92);
  transform: scale(1.11);
}

.character-wash {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 246, 252, 0.96) 0%, rgba(255, 237, 247, 0.72) 27%, rgba(70, 30, 88, 0.5) 58%, rgba(17, 6, 27, 0.94) 100%),
    linear-gradient(90deg, rgba(255, 214, 236, 0.62) 0%, rgba(231, 215, 255, 0.28) 42%, rgba(17, 6, 27, 0.4) 100%);
}

.character-layout {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 720px;
  display: grid;
  gap: 30px;
  align-content: center;
}

.character-copy-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 22px 34px;
  align-items: end;
  padding: 28px;
  border-radius: var(--radius);
}

.character-copy-panel .kicker {
  color: var(--glass-accent);
}

.character-copy-panel h2 {
  max-width: 680px;
}

.character-copy-panel > p {
  margin: 0;
  color: var(--glass-muted);
  font-weight: 500;
  line-height: 1.8;
}

.character-copy-panel .mini-proof span {
  color: var(--glass-ink);
  background: rgba(255, 255, 255, 0.38);
  border-color: var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.character-copy-panel .mini-proof {
  grid-column: 1 / -1;
  margin-top: 0;
}

.character-carousel {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
}

.character-carousel:focus-visible {
  outline: 3px solid rgba(236, 107, 171, 0.7);
  outline-offset: 5px;
}

.character-panorama-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1672 / 941;
  height: auto;
  max-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 8, 37, 0.04), rgba(20, 6, 32, 0.18) 54%, rgba(9, 2, 18, 0.34) 100%),
    url("./assets/soumi-screen-characters-image2-v1.png") center center / cover no-repeat,
    rgba(16, 7, 29, 0.84);
  background-blend-mode: normal, normal, normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -76px 100px rgba(10, 2, 20, 0.42),
    0 34px 92px rgba(57, 17, 76, 0.32);
  backdrop-filter: blur(18px) saturate(1.18);
  isolation: isolate;
  perspective: 1300px;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.character-panorama-viewport::before,
.character-panorama-viewport::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.character-panorama-viewport::before {
  content: "";
  inset: 17.8% 2.8% 16.8% 10.5%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 156, 220, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(9, 2, 19, 0.96), rgba(22, 7, 38, 0.9) 14%, rgba(20, 6, 35, 0.88) 86%, rgba(9, 2, 19, 0.96)),
    linear-gradient(180deg, rgba(255, 189, 230, 0.14), transparent 24%, transparent 70%, rgba(8, 1, 17, 0.82));
  border: 1px solid rgba(255, 180, 231, 0.24);
  border-radius: calc(var(--radius) - 2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(236, 107, 171, 0.08),
    inset 0 -92px 110px rgba(10, 2, 20, 0.72);
  opacity: 1;
  -webkit-backdrop-filter: blur(8px) brightness(0.5) saturate(0.9);
  backdrop-filter: blur(8px) brightness(0.5) saturate(0.9);
}

.character-panorama-viewport::after {
  content: "";
  z-index: 5;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.07) 23%, transparent 48%),
    linear-gradient(90deg, rgba(8, 1, 16, 0.34) 0%, transparent 10%, transparent 90%, rgba(8, 1, 16, 0.38) 100%),
    linear-gradient(180deg, rgba(255, 210, 241, 0.12), transparent 18%, transparent 68%, rgba(7, 1, 16, 0.5) 100%);
  opacity: 0.84;
}

.character-screen-window {
  position: absolute;
  inset: 17.8% 2.8% 16.8% 10.5%;
  z-index: 3;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4.5%, #000 95.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4.5%, #000 95.5%, transparent 100%);
  perspective: 1300px;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.character-screen-window::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.14), transparent 25%, transparent 68%, rgba(236, 107, 171, 0.08)),
    linear-gradient(180deg, rgba(255, 201, 236, 0.1), transparent 26%, transparent 74%, rgba(8, 1, 17, 0.36));
  border: 1px solid rgba(255, 190, 236, 0.14);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -44px 72px rgba(8, 1, 17, 0.36);
}

.character-rail {
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.48vw, 30px);
  padding: 0 max(26px, calc(50% - clamp(78px, 4.9vw, 90px)));
}

.character-tile {
  position: relative;
  z-index: 1;
  flex: 0 0 clamp(152px, 9.7vw, 178px);
  height: min(90%, clamp(320px, 20.8vw, 372px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 190, 234, 0.28);
  border-radius: calc(var(--radius) - 1px);
  opacity: 0.72;
  background: rgba(11, 2, 20, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(236, 107, 171, 0.08),
    inset 0 -34px 54px rgba(8, 1, 16, 0.46);
  cursor: pointer;
  filter: saturate(0.86) brightness(0.78);
  transform: perspective(1200px) translateY(7px) scale(0.9);
  transform-origin: center bottom;
  transition:
    transform 680ms cubic-bezier(0.18, 0.86, 0.22, 1),
    opacity 420ms ease,
    filter 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
  will-change: transform, opacity, filter;
}

.character-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
  transition: transform 680ms cubic-bezier(0.18, 0.86, 0.22, 1);
}

.character-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(0deg, rgba(9, 3, 18, 0.5), transparent 45%),
    linear-gradient(90deg, rgba(236, 107, 171, 0.14), transparent 16%, transparent 84%, rgba(168, 117, 255, 0.12));
  opacity: 0.62;
  transition: opacity 420ms ease;
}

.character-tile.is-before {
  transform: perspective(1200px) rotateY(4deg) translateY(7px) scale(0.9);
}

.character-tile.is-after {
  transform: perspective(1200px) rotateY(-4deg) translateY(7px) scale(0.9);
}

.character-tile.is-near {
  z-index: 2;
  opacity: 0.9;
  filter: saturate(0.96) brightness(0.9);
  transform: perspective(1200px) translateY(1px) scale(0.97);
}

.character-tile.is-near.is-before {
  transform: perspective(1200px) rotateY(2.5deg) translateY(1px) scale(0.97);
}

.character-tile.is-near.is-after {
  transform: perspective(1200px) rotateY(-2.5deg) translateY(1px) scale(0.97);
}

.character-tile.is-active {
  z-index: 4;
  opacity: 1;
  border-color: rgba(255, 178, 231, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(236, 107, 171, 0.12),
    inset 0 -38px 62px rgba(8, 1, 16, 0.28),
    0 0 22px rgba(236, 107, 171, 0.12);
  filter: saturate(1.02) brightness(0.98);
  transform: perspective(1200px) translateY(-2px) scale(1.02);
}

.character-tile.is-active img {
  transform: scale(1);
}

.character-tile.is-active::before {
  opacity: 0.22;
}

.character-tile figcaption {
  display: none;
}

.character-tile.is-active figcaption {
  color: #fff;
  background: rgba(236, 107, 171, 0.24);
  border-color: rgba(236, 107, 171, 0.54);
}

.character-panorama-viewport.character-panorama-static {
  --focus-left: 12.5%;
  --focus-top: 24%;
  --focus-width: 9.4%;
  --focus-height: 50.8%;
  aspect-ratio: 1668 / 943;
  height: auto;
  max-height: none;
  overflow: hidden;
  background: rgba(16, 7, 29, 0.84);
  perspective: none;
  touch-action: auto;
}

.character-panorama-viewport.character-panorama-static::before,
.character-panorama-viewport.character-panorama-static::after {
  content: none;
  transform: translateZ(0);
}

.character-screen-art {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.character-showcase-effects {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.character-screen-sheen {
  position: absolute;
  inset: -20% -42%;
  background:
    linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.18) 43%, rgba(255, 172, 229, 0.16) 47%, transparent 56%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translateX(-46%) skewX(-10deg);
  animation: characterScreenSheen 5.4s ease-in-out infinite;
}

.character-focus-frame,
.character-focus-glow {
  position: absolute;
  left: var(--focus-left);
  top: var(--focus-top);
  width: var(--focus-width);
  height: var(--focus-height);
  border-radius: calc(var(--radius) + 4px);
  transition:
    left 680ms cubic-bezier(0.18, 0.86, 0.22, 1),
    top 680ms cubic-bezier(0.18, 0.86, 0.22, 1),
    width 680ms cubic-bezier(0.18, 0.86, 0.22, 1),
    height 680ms cubic-bezier(0.18, 0.86, 0.22, 1),
    opacity 420ms ease;
}

.character-focus-frame {
  border-radius: inherit;
  background:
    linear-gradient(102deg, transparent 7%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 166, 226, 0.3) 48%, rgba(180, 126, 255, 0.12) 62%, transparent 86%);
  filter: blur(4px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-22%) skewX(-8deg) scaleX(0.8);
}

.character-focus-glow {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 210, 246, 0.2), rgba(236, 107, 171, 0.06) 42%, transparent 72%);
  filter: blur(24px);
  mix-blend-mode: screen;
  opacity: 0.52;
  transform: scale(1.75, 1.2);
}

.character-panorama-static.is-switching .character-screen-art {
  animation: characterScreenPulse 620ms ease-out;
}

.character-panorama-static.is-switching .character-focus-frame {
  animation: characterSlotSweep 680ms ease-out;
}

.character-panorama-static.is-switching .character-focus-glow {
  animation: characterFocusPulse 680ms ease-out;
}

.character-panorama-static > :not(.character-screen-art):not(.character-showcase-effects) {
  display: none;
}

.character-panorama-static ~ .character-panorama-meta,
.character-panorama-static ~ .character-dots {
  display: none;
}

.character-static-intro {
  position: absolute;
  left: clamp(14px, 2.1vw, 28px);
  right: auto;
  bottom: clamp(14px, 2.1vw, 26px);
  z-index: 6;
  width: min(760px, calc(100% - 56px));
  display: grid;
  grid-template-columns: minmax(104px, auto) minmax(0, 1fr);
  gap: 7px 18px;
  align-items: center;
  margin-top: 0;
  padding: 15px 18px 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 13, 42, 0.72), rgba(61, 24, 73, 0.5) 54%, rgba(22, 8, 34, 0.74)),
    rgba(16, 6, 28, 0.64);
  border: 1px solid rgba(255, 211, 245, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 1, 15, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  transform: translateX(0);
  opacity: 1;
  transition:
    opacity 240ms ease,
    transform 300ms cubic-bezier(0.18, 0.86, 0.22, 1);
}

.character-static-intro.is-changing {
  opacity: 0;
  transform: translateX(18px);
}

.character-static-intro p {
  margin: 0;
  color: #ff8ecb;
  font-size: 12px;
  font-weight: 900;
}

.character-static-intro strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.35;
}

.character-static-intro span {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.68;
  font-size: 14px;
}

.character-static-tabs {
  grid-column: 1 / -1;
  grid-row: auto;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 3px;
}

.character-static-tabs button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.character-static-tabs button::before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transition:
    width 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.character-static-tabs button.is-active::before {
  width: 18px;
  background: linear-gradient(90deg, var(--rose), var(--lilac));
  box-shadow: 0 0 14px rgba(236, 107, 171, 0.34);
}

@keyframes characterScreenSheen {
  0%,
  18% {
    transform: translateX(-46%) skewX(-10deg);
    opacity: 0;
  }

  45% {
    opacity: 0.72;
  }

  74%,
  100% {
    transform: translateX(46%) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes characterSlotSweep {
  0% {
    opacity: 0;
    transform: translateX(-28%) skewX(-8deg) scaleX(0.72);
  }

  34% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translateX(30%) skewX(-8deg) scaleX(1.08);
  }
}

@keyframes characterFocusPulse {
  0% {
    opacity: 0.18;
    transform: scale(1.25, 1.02);
  }

  42% {
    opacity: 0.78;
    transform: scale(1.58, 1.14);
  }

  100% {
    opacity: 0.46;
    transform: scale(1.75, 1.2);
  }
}

@keyframes characterScreenPulse {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }

  44% {
    filter: brightness(1.08) saturate(1.06);
  }
}

.character-panorama-meta {
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(260px, 1fr);
  gap: 8px 22px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
}

.character-panorama-meta p {
  margin: 0;
  color: var(--glass-accent);
  font-size: 13px;
  font-weight: 900;
}

.character-panorama-meta strong {
  color: var(--glass-ink);
  font-size: 18px;
  line-height: 1.35;
}

.character-panorama-meta span {
  grid-column: 2;
  color: var(--glass-muted);
  font-weight: 500;
  line-height: 1.7;
}

.character-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(5, 0, 12, 0.32);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.character-control:hover,
.character-control:focus-visible {
  background: rgba(236, 107, 171, 0.28);
  border-color: rgba(236, 107, 171, 0.6);
  transform: translateY(-50%) scale(1.04);
}

.character-control span {
  display: block;
  font-size: 44px;
  line-height: 0.75;
}

.character-control-prev {
  left: 18px;
}

.character-control-next {
  right: 18px;
}

.character-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.character-dots button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.character-dots button::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition:
    width 180ms ease,
    background 180ms ease;
}

.character-dots button.is-active::before {
  width: 28px;
  background: linear-gradient(90deg, var(--rose), var(--lilac));
}

.feature-list {
  align-items: flex-start;
}

.interaction-content {
  justify-content: flex-start;
}

.interaction-panel {
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 16px;
  transform: translateX(clamp(-178px, -8.6vw, -118px));
}

.interaction-panel h2,
.growth-panel h2 {
  font-size: clamp(30px, 3.35vw, 44px);
  line-height: 1.08;
}

.interaction-panel p,
.growth-panel p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

.interaction-panel .feature-list {
  margin-top: 18px;
}

.interaction-panel .feature-list span,
.growth-panel .stage-list li {
  min-height: 32px;
  padding: 0 11px;
  font-size: 12px;
}

.gift-video-slot {
  margin-top: 18px;
  margin-right: auto;
  margin-left: auto;
  width: min(210px, 68%);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(236, 107, 171, 0.12)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(7, 2, 12, 0.34);
}

.gift-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.closing-frame {
  min-height: 900px;
}

.closing-content {
  gap: 24px;
  justify-content: flex-start;
}

.growth-panel {
  width: min(430px, 100%);
  padding: 24px;
  border-radius: 16px;
  transform: translate(-98px, -54px);
}

.stage-list {
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.download-panel {
  width: min(430px, 100%);
  padding: 28px;
  border-radius: var(--radius);
}

.download-panel .kicker {
  color: var(--glass-accent);
}

.download-panel h2 {
  font-size: 34px;
}

.download-panel p:not(.kicker) {
  margin-top: 14px;
  color: var(--glass-muted);
  font-weight: 500;
  line-height: 1.75;
}

.store-grid {
  gap: 12px;
  margin-top: 22px;
}

.store-button {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px 18px;
  color: var(--glass-ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 255, 0.62), rgba(246, 209, 235, 0.38) 54%, rgba(168, 117, 255, 0.28)),
    rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.store-button span {
  color: var(--glass-muted);
  font-size: 13px;
  font-weight: 900;
}

.store-button strong {
  display: block;
  margin-top: 5px;
}

.faq-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  color: #fff;
  background: #100818;
  isolation: isolate;
}

.faq-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(16, 8, 24, 0.9), rgba(16, 8, 24, 0.64) 46%, rgba(16, 8, 24, 0.96)),
    linear-gradient(90deg, rgba(236, 107, 171, 0.12), rgba(168, 117, 255, 0.18) 52%, rgba(98, 166, 220, 0.1)),
    url("./assets/soumi-frame-growth.png") center 44% / cover no-repeat;
  opacity: 0.92;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.faq-copy,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(236, 107, 171, 0.12) 52%, rgba(168, 117, 255, 0.12)),
    rgba(19, 10, 29, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
  backdrop-filter: blur(24px) saturate(1.16);
}

.faq-copy {
  padding: 32px;
}

.faq-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.faq-copy p:not(.kicker) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
  color: #fff;
}

.faq-item h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.faq-item p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.guide-section,
.article-page {
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(236, 107, 171, 0.24), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(98, 166, 220, 0.18), transparent 28%),
    #100818;
}

.guide-section {
  padding: 96px 0 104px;
}

.guide-layout,
.article-shell {
  display: grid;
  gap: 28px;
}

.guide-copy {
  max-width: 760px;
}

.guide-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.guide-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.guide-card,
.article-panel,
.answer-box,
.article-faq-item,
.source-list,
.related-guides,
.article-cta {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(236, 107, 171, 0.12) 52%, rgba(168, 117, 255, 0.12)),
    rgba(19, 10, 29, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
  backdrop-filter: blur(24px) saturate(1.16);
}

.guide-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(236, 107, 171, 0.46);
}

.guide-card span,
.article-eyebrow,
.article-meta,
.source-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.28;
}

.guide-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.article-page {
  min-height: 100vh;
}

.article-main {
  padding: 72px 0 96px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  padding: 52px 0 36px;
}

.article-hero h1 {
  max-width: 780px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
}

.article-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.85;
}

.article-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.article-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-shell {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.article-panel,
.answer-box,
.article-faq-item,
.source-list,
.related-guides,
.article-cta {
  padding: 24px;
  min-width: 0;
  overflow: hidden;
}

.article-panel h2,
.answer-box h2,
.source-list h2,
.related-guides h2,
.article-cta h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
}

.article-panel h3,
.article-faq-item h3 {
  margin: 18px 0 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.35;
}

.article-panel p,
.answer-box p,
.article-faq-item p,
.source-list p,
.article-cta p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.82;
}

.answer-box {
  border-color: rgba(236, 107, 171, 0.34);
}

.article-list,
.source-links,
.related-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.article-list li,
.source-links li,
.related-list li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.article-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
}

.article-table {
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
}

.article-table th,
.article-table td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.article-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.source-links a,
.related-list a,
.article-inline-link {
  color: #ffd4ea;
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 234, 0.38);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.source-links a,
.related-list a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.article-cta .button {
  width: fit-content;
  margin-top: 10px;
}

.error-page {
  min-height: 100dvh;
  color: #fff;
  background: #100818;
}

.error-page .site-header {
  position: fixed;
  width: 100%;
}

.error-main,
.error-hero {
  min-height: 100dvh;
}

.error-hero {
  position: relative;
  overflow: hidden;
}

.error-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100dvh;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 72px;
}

.error-content h1 {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.error-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #100818;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 420px) minmax(220px, auto);
  grid-template-areas:
    "identity contact social"
    "links links links";
  align-items: start;
  gap: 22px 28px;
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-identity {
  grid-area: identity;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.footer-brand {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.footer-identity p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact {
  grid-area: contact;
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(236, 107, 171, 0.12), rgba(176, 110, 244, 0.06)),
    rgba(255, 255, 255, 0.04);
  font-style: normal;
}

.footer-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--rose-light);
  font-size: 12px;
  font-weight: 900;
}

.platform-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: currentColor;
}

.platform-icon path,
.platform-icon rect,
.platform-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-icon path:first-child {
  fill: color-mix(in srgb, currentColor 18%, transparent);
}

.footer-contact a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.footer-contact a:hover {
  color: var(--rose-light);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.footer-social,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social {
  grid-area: social;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 8px;
}

.footer-social a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(236, 107, 171, 0.36);
  background: rgba(236, 107, 171, 0.12);
}

.footer-links {
  grid-area: links;
  gap: 8px 16px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.footer-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
  .image-frame,
  .hero-frame,
  .split-frame,
  .full-story-frame,
  .closing-frame {
    min-height: 760px;
  }

  .character-showcase {
    min-height: 820px;
    padding: 76px 0 84px;
  }

  .character-layout {
    min-height: 660px;
  }

  .memory-content {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  .memory-story-panel {
    width: min(560px, 100%);
    transform: translate(24px, -36px);
  }

  .memory-material-panel {
    width: min(760px, 100%);
  }

  .character-copy-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .character-panorama-viewport {
    height: 590px;
  }

  .character-screen-window {
    inset: 18.6% 3.2% 17.6% 10.8%;
  }

  .character-rail {
    gap: clamp(14px, 1.8vw, 20px);
    padding: 0 max(22px, calc(50% - clamp(92px, 12.5vw, 112px)));
  }

  .character-tile {
    flex-basis: clamp(184px, 23vw, 224px);
    height: min(90%, clamp(326px, 37vw, 392px));
  }

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

  .experience-card:nth-child(even) {
    border-right: 0;
  }

  .experience-card:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .closing-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .interaction-panel,
  .growth-panel {
    transform: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-copy {
    max-width: 720px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "identity"
      "contact"
      "social"
      "links";
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .guide-grid,
  .article-hero,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  main > section[id] {
    scroll-margin-top: 66px;
  }

  html {
    scroll-padding-top: 66px;
  }

  .site-nav,
  .header-download,
  .header-action {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .header-inner {
    min-height: 64px;
  }

  .hero-frame {
    margin-top: -64px;
    padding-top: 64px;
  }

  .hero-content {
    min-height: 720px;
    padding: 82px 0 54px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(13, 6, 20, 0.95), rgba(13, 6, 20, 0.82) 56%, rgba(13, 6, 20, 0.46)),
      linear-gradient(90deg, rgba(13, 6, 20, 0.72), rgba(13, 6, 20, 0.16));
  }

  .hero-frame .frame-image {
    object-position: 63% center;
  }

  h1 {
    font-size: 52px;
  }

  h2,
  .hero-line {
    font-size: 34px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-line {
    max-width: 360px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-strip span {
    min-height: 34px;
    font-size: 13px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
  }

  .experience-card,
  .experience-card:nth-child(2),
  .experience-card:nth-child(-n + 2) {
    min-height: auto;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .experience-card:last-child {
    border-bottom: 0;
  }

  .experience-hover-preview {
    display: none;
  }

  .image-frame,
  .split-frame,
  .full-story-frame,
  .closing-frame {
    min-height: 760px;
  }

  .character-showcase {
    min-height: auto;
    padding: 64px 0 94px;
  }

  .character-backdrop {
    opacity: 0.22;
    object-position: center;
  }

  .character-wash {
    background:
      linear-gradient(180deg, rgba(255, 246, 252, 0.94) 0%, rgba(255, 237, 247, 0.66) 26%, rgba(67, 28, 84, 0.48) 58%, rgba(17, 6, 27, 0.94) 100%),
      linear-gradient(90deg, rgba(255, 214, 236, 0.5), rgba(231, 215, 255, 0.2) 46%, rgba(17, 6, 27, 0.36));
  }

  .character-layout {
    min-height: 0;
    gap: 22px;
    align-content: start;
  }

  .character-copy-panel {
    padding: 22px;
  }

  .character-copy-panel h2 {
    font-size: 34px;
  }

  .memory-content {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 52px 0;
  }

  .memory-story-panel {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 14px;
    transform: none;
  }

  .memory-story-copy h2 {
    max-width: 100%;
    font-size: 31px;
  }

  .memory-story-copy p:not(.kicker) {
    max-width: 100%;
  }

  .memory-example-shot {
    height: 340px;
  }

  .interaction-panel,
  .growth-panel {
    width: 100%;
  }

  .gift-video-slot {
    max-height: 210px;
  }

  .memory-material-panel {
    grid-template-columns: 1fr;
  }

  #memory .memory-phone-shot {
    min-height: 310px;
  }

  .character-panorama-viewport {
    height: 500px;
  }

  .character-panorama-viewport::before {
    inset: 18.6% 3.8% 17.8% 7.6%;
  }

  .character-panorama-viewport::after {
    inset: 0;
  }

  .character-screen-window {
    inset: 18.6% 3.8% 17.8% 7.6%;
  }

  .character-rail {
    gap: 12px;
    padding: 0 max(18px, calc(50% - min(29vw, 134px)));
  }

  .character-tile {
    flex-basis: min(58vw, 268px);
    max-width: 268px;
    height: min(90%, 336px);
  }

  .character-static-intro {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    margin-top: 10px;
    padding: 12px;
  }

  .character-static-intro strong {
    font-size: 16px;
  }

  .character-static-intro span {
    font-size: 13px;
  }

  .character-static-intro span,
  .character-static-tabs {
    grid-column: auto;
    grid-row: auto;
  }

  .character-static-tabs {
    justify-content: flex-start;
    margin-top: 0;
  }

  .character-panorama-meta {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .character-panorama-meta span {
    grid-column: auto;
  }

  .character-control {
    top: 50%;
  }

  .character-control-prev {
    left: 12px;
  }

  .character-control-next {
    right: 12px;
  }

  .character-dots {
    margin-top: 10px;
  }

  .split-content,
  .story-top,
  .closing-content {
    min-height: 760px;
    align-items: flex-end;
    padding: 56px 0;
  }

  .story-top {
    align-items: flex-start;
  }

  .right-copy,
  .left-copy {
    justify-content: center;
  }

  .copy-panel,
  .download-panel {
    padding: 22px;
  }

  .light-scrim {
    background:
      linear-gradient(180deg, rgba(255, 246, 251, 0.06), rgba(255, 246, 251, 0.44) 62%, rgba(255, 246, 251, 0.62)),
      linear-gradient(90deg, rgba(255, 246, 251, 0.04), rgba(255, 246, 251, 0.24));
  }

  .dark-left-scrim,
  .dark-scrim,
  .growth-scrim {
    background:
      linear-gradient(180deg, rgba(13, 6, 20, 0.12), rgba(13, 6, 20, 0.34) 42%, rgba(13, 6, 20, 0.9) 82%);
  }

  #memory .frame-image {
    object-position: 30% center;
  }

  #characters .frame-image {
    object-position: 50% center;
  }

  #interactions .frame-image {
    object-position: 68% center;
  }

  #growth .frame-image {
    object-position: 70% center;
  }

  .store-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-section {
    padding: 72px 0 82px;
  }

  .faq-copy {
    padding: 22px;
  }

  .faq-copy h2 {
    font-size: 34px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    margin-top: 9px;
  }

  .guide-section {
    padding: 72px 0 82px;
  }

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

  .guide-card {
    min-height: auto;
    padding: 18px;
  }

  .article-main {
    padding: 44px 0 72px;
  }

  .article-hero {
    padding: 34px 0 24px;
  }

  .article-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .article-panel,
  .answer-box,
  .article-faq-item,
  .source-list,
  .related-guides,
  .article-cta {
    padding: 18px;
  }

  .article-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .demo-modal {
    padding: 12px;
  }

  .demo-shell {
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding: 16px;
  }

  .demo-copy {
    padding: 36px 4px 0;
  }

  .demo-media {
    min-height: auto;
    padding: 10px;
  }

  .demo-screenshot {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .demo-phone {
    width: min(310px, 96%);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 46px;
  }

  h2,
  .hero-line {
    font-size: 30px;
  }

  .image-frame,
  .split-frame,
  .full-story-frame,
  .closing-frame,
  .split-content,
  .story-top,
  .closing-content {
    min-height: 740px;
  }

  .character-showcase {
    padding: 54px 0 88px;
  }

  .character-copy-panel h2 {
    font-size: 30px;
  }

  .character-panorama-viewport {
    height: 450px;
  }

  .character-screen-window,
  .character-panorama-viewport::before {
    inset: 18.8% 3.6% 18.8% 6.8%;
  }

  .character-rail {
    padding: 0 max(14px, calc(50% - min(31vw, 126px)));
  }

  .character-tile {
    flex-basis: min(62vw, 252px);
    height: min(90%, 306px);
  }

  .character-static-tabs button {
    width: 34px;
  }

  .character-panorama-meta {
    padding: 18px;
  }

  .character-control {
    width: 44px;
    height: 44px;
  }

  .character-control span {
    font-size: 38px;
  }

  .faq-copy h2 {
    font-size: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .character-screen-sheen {
    display: none;
  }
}
