:root {
  --paper: #fffaf7;
  --paper-deep: #f6eee9;
  --ink: #242229;
  --ink-soft: #716a72;
  --line: rgba(53, 46, 55, 0.13);
  --rose: #e98296;
  --rose-deep: #c95f78;
  --rose-soft: #f8dfe4;
  --blue: #9db5dc;
  --blue-soft: #e9eef9;
  --cream: #fbf0df;
  --white: #fff;
  --shadow: 0 28px 80px rgba(86, 55, 68, 0.13);
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "Aptos", "Segoe UI Variable Text", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", "Songti SC", serif;
  --max-width: 1240px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1100;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
  padding-block: 126px;
}

.kicker,
.eyebrow,
.feature-label {
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker,
.feature-label {
  color: var(--rose-deep);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(53, 46, 55, 0.08);
  background: rgba(255, 250, 247, 0.86);
  box-shadow: 0 8px 30px rgba(72, 50, 61, 0.04);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 64px), var(--max-width));
  height: 82px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(36, 34, 41, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.brand-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-edition {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  color: #59535b;
  font-size: 0.79rem;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--rose-deep);
  transition: right 180ms ease, left 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
  left: 0;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 17px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-cta svg,
.final-copy .button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: inline-flex;
  min-width: 46px;
  height: 34px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 34, 41, 0.22);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lang-switch:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 800px;
  padding: 145px max(32px, calc((100vw - var(--max-width)) / 2)) 82px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.74fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(75, 60, 70, 0.055) 50%, transparent 50.05%),
    linear-gradient(0deg, transparent 49.95%, rgba(75, 60, 70, 0.035) 50%, transparent 50.05%);
  background-size: 160px 160px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: 50px;
  right: -90px;
  width: 540px;
  height: 540px;
  opacity: 0.65;
  background: radial-gradient(circle, rgba(241, 187, 199, 0.58), rgba(248, 223, 228, 0) 68%);
}

.hero-glow-two {
  bottom: -180px;
  left: 24%;
  width: 440px;
  height: 440px;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(190, 208, 235, 0.62), rgba(233, 238, 249, 0) 70%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.eyebrow > span:first-child {
  width: 27px;
  height: 1px;
  background: var(--rose-deep);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.2vw, 6.25rem);
  font-weight: 710;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: inline-block;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-downloads {
  display: grid;
  max-width: 610px;
  margin-bottom: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-download {
  display: grid;
  min-height: 72px;
  padding: 12px 15px;
  border: 1px solid rgba(36, 34, 41, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  grid-template-columns: 38px 1fr 17px;
  align-items: center;
  gap: 11px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-download:first-child {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 34, 41, 0.13);
}

.hero-download:hover {
  border-color: rgba(201, 95, 120, 0.4);
  box-shadow: 0 13px 32px rgba(91, 61, 72, 0.1);
  transform: translateY(-2px);
}

.hero-download-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  opacity: 0.92;
}

.hero-download > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.hero-download small {
  opacity: 0.6;
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.hero-download strong {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-download > svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-download-icon svg {
  width: 21px;
}

.hero-download-icon.mobile-logo svg {
  fill: none;
  stroke: currentColor;
}

.hero-download-icon.steam-logo svg {
  fill: currentColor;
}

.hero-download-icon.epic-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 0.48rem;
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
}

.hero-download-icon.epic-logo small {
  margin-top: 2px;
  font-size: 0.31rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 15px 34px rgba(36, 34, 41, 0.16);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(36, 34, 41, 0.24);
}

.button-primary svg {
  width: 21px;
  fill: currentColor;
}

.button-secondary svg.button-phone-icon {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.button-secondary {
  border-color: rgba(36, 34, 41, 0.18);
  background: rgba(255, 255, 255, 0.58);
}

.button-secondary:hover {
  background: var(--white);
}

.hero-signals {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  list-style: none;
}

.hero-signals li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(233, 130, 150, 0.13);
}

.hero-visual {
  max-width: 520px;
  justify-self: end;
}

.visual-card {
  position: relative;
  z-index: 2;
  padding: 17px;
  border: 1px solid rgba(74, 58, 69, 0.11);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-topline {
  position: absolute;
  top: 34px;
  right: 38px;
  left: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.online-pill {
  display: flex;
  min-height: 27px;
  padding-inline: 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(35, 34, 40, 0.35);
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}

.online-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a9e5bc;
  box-shadow: 0 0 0 4px rgba(169, 229, 188, 0.17);
}

.visual-code {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 8px rgba(36, 34, 41, 0.3);
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 31px;
  background: #e8e2e4;
}

.portrait-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  box-shadow: inset 0 -70px 90px rgba(49, 36, 45, 0.14);
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-card:hover .portrait-wrap img {
  transform: scale(1.025);
}

.portrait-shine {
  position: absolute;
  top: -20%;
  right: 9%;
  width: 35%;
  height: 140%;
  z-index: 1;
  opacity: 0.25;
  background: linear-gradient(90deg, transparent, white, transparent);
  transform: rotate(17deg);
}

.message-card {
  position: absolute;
  right: 44px;
  bottom: 41px;
  left: 44px;
  z-index: 4;
  display: grid;
  min-height: 69px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  color: #3a353c;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 13px 32px rgba(68, 50, 62, 0.15);
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 11px;
  backdrop-filter: blur(16px);
}

.message-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--rose), #c4a6c4);
  font-family: var(--serif);
  font-style: italic;
}

.message-card p {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 650;
}

.voice-wave {
  display: flex;
  height: 24px;
  align-items: center;
  gap: 2px;
}

.voice-wave i {
  width: 2px;
  height: 32%;
  border-radius: 99px;
  background: var(--rose-deep);
  animation: voice 1.1s ease-in-out infinite;
}

.voice-wave i:nth-child(2) { height: 70%; animation-delay: -0.15s; }
.voice-wave i:nth-child(3) { height: 100%; animation-delay: -0.3s; }
.voice-wave i:nth-child(4) { height: 65%; animation-delay: -0.45s; }
.voice-wave i:nth-child(5) { height: 38%; animation-delay: -0.6s; }

@keyframes voice {
  50% { transform: scaleY(0.5); }
}

.mood-note {
  position: absolute;
  top: 22%;
  right: -66px;
  z-index: 3;
  display: flex;
  width: 108px;
  height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 248, 246, 0.8);
  box-shadow: 0 15px 40px rgba(79, 55, 65, 0.12);
  transform: rotate(4deg);
  backdrop-filter: blur(12px);
}

.mood-note span {
  color: var(--ink-soft);
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.mood-note strong {
  margin-top: 4px;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(202, 113, 134, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 7%;
  right: -15%;
  width: 116%;
  height: 85%;
  transform: rotate(-14deg);
}

.orbit-two {
  top: 20%;
  right: -23%;
  width: 128%;
  height: 70%;
  border-color: rgba(106, 133, 176, 0.13);
  transform: rotate(18deg);
}

.visual-caption {
  display: flex;
  margin: 20px 4px 0;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.visual-caption > span:first-child {
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: italic;
}

.intro {
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) 0.95fr;
  gap: clamp(60px, 7vw, 100px);
}

.intro .section-heading h2 { max-width: 10em; }

.section-heading h2,
.download-heading h2,
.worlds-copy h2,
.final-copy h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading .kicker,
.worlds-copy .kicker,
.download-heading .kicker,
.final-copy .kicker {
  margin-bottom: 23px;
}

.intro-body {
  max-width: 630px;
  padding-top: 28px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.9;
}

.intro-lead {
  color: var(--ink);
  font-size: 1.27rem;
  font-weight: 520;
  line-height: 1.75;
}

.quote-line {
  display: flex;
  margin-top: 39px;
  padding-top: 24px;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.quote-line span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 0.8;
}

.quote-line p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.features {
  padding-top: 96px;
}

.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.centered > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.66);
  grid-column: span 5;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  box-shadow: 0 18px 50px rgba(78, 56, 66, 0.08);
  transform: translateY(-3px);
}

.feature-card-large {
  background: linear-gradient(145deg, #f8e5e7, #f4eceb);
  grid-column: span 7;
}

.feature-card-wide {
  display: grid;
  min-height: 280px;
  background: linear-gradient(105deg, #edf1f9, #f9f6f5 70%);
  grid-column: span 12;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.feature-number {
  position: absolute;
  top: 27px;
  right: 30px;
  color: rgba(59, 51, 59, 0.35);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.feature-card h3 {
  max-width: 500px;
  margin: 10px 0 13px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 690;
  letter-spacing: -0.035em;
}

.feature-card p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.75;
}

.feature-icon {
  position: absolute;
  top: 65px;
  left: 42px;
}

.icon-voice {
  display: flex;
  height: 90px;
  align-items: center;
  gap: 10px;
}

.icon-voice span {
  width: 8px;
  border-radius: 99px;
  background: linear-gradient(#e08598, #c8afca);
}

.icon-voice span:nth-child(1) { height: 30px; }
.icon-voice span:nth-child(2) { height: 62px; }
.icon-voice span:nth-child(3) { height: 90px; }
.icon-voice span:nth-child(4) { height: 56px; }
.icon-voice span:nth-child(5) { height: 25px; }

.memory-orb {
  position: absolute;
  top: 53px;
  left: 50%;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(154, 177, 214, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, white, #dae4f3 47%, #abbfdf);
  box-shadow: 0 22px 45px rgba(120, 147, 187, 0.22);
  transform: translateX(-50%);
}

.memory-orb::before,
.memory-orb::after {
  position: absolute;
  inset: -13px;
  content: "";
  border: 1px solid rgba(154, 177, 214, 0.27);
  border-radius: 50%;
}

.memory-orb::after {
  inset: -29px;
  border-style: dashed;
}

.memory-orb i {
  position: absolute;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(233, 130, 150, 0.12);
}

.memory-orb i:nth-child(1) { top: 21px; right: 18px; width: 6px; height: 6px; }
.memory-orb i:nth-child(2) { right: 28px; bottom: 13px; width: 4px; height: 4px; }
.memory-orb i:nth-child(3) { bottom: 31px; left: 15px; width: 5px; height: 5px; }

.card-dark {
  color: var(--white);
  border-color: #29272e;
  background: #29272e;
}

.card-dark::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 136, 154, 0.25), transparent 65%);
}

.card-dark .feature-number {
  color: rgba(255, 255, 255, 0.4);
}

.card-dark .feature-label {
  color: #e9a4b1;
}

.card-dark p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.skill-stack {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 130px;
  height: 104px;
  transform: translateX(-50%);
}

.skill-stack i {
  position: absolute;
  right: 0;
  left: 0;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.15);
  transform: rotate(-7deg);
}

.skill-stack i:nth-child(2) {
  top: 20px;
  border-color: rgba(233, 164, 177, 0.4);
  background: rgba(201, 95, 120, 0.14);
  transform: rotate(4deg);
}

.skill-stack i:nth-child(3) {
  top: 43px;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-1deg);
}

.personality-tags {
  position: relative;
  display: flex;
  height: 155px;
  align-items: center;
  justify-content: center;
}

.personality-tags span {
  position: absolute;
  display: grid;
  min-width: 72px;
  min-height: 43px;
  padding-inline: 16px;
  place-items: center;
  border: 1px solid rgba(77, 84, 105, 0.13);
  border-radius: 999px;
  color: #5a5e6a;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 9px 25px rgba(97, 104, 126, 0.08);
  font-size: 0.76rem;
  font-weight: 680;
}

.personality-tags span:nth-child(1) { top: 6px; left: 27%; }
.personality-tags span:nth-child(2) { top: 42px; right: 11%; }
.personality-tags span:nth-child(3) { bottom: 5px; left: 33%; }
.personality-tags span:nth-child(4) { top: 47px; left: 2%; }
.personality-tags span:nth-child(5) {
  top: 45px;
  left: 38%;
  min-width: 94px;
  color: var(--white);
  border-color: var(--rose);
  background: var(--rose);
}

.worlds {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  padding: 130px max(32px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: #27262c;
  grid-template-columns: minmax(480px, 0.95fr) 1.05fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.worlds-copy h2 { max-width: 9em; }

.worlds::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.2) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255,255,255,.13) 50%, transparent 50.2%);
  background-size: 100px 100px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.worlds-copy,
.world-console {
  position: relative;
  z-index: 1;
}

.worlds-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 24px 0 31px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.world-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.world-tabs span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
}

.world-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: #393740;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.28);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.console-header {
  display: flex;
  height: 48px;
  padding-inline: 19px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.console-header span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a8ddb4;
}

.console-stage {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 63% 24%, rgba(232, 156, 173, 0.28), transparent 32%),
    linear-gradient(145deg, #3a3a46, #25242b);
}

.console-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(27,26,32,.65), transparent 50%);
}

.console-avatar {
  position: absolute;
  top: 21px;
  right: 6%;
  width: 66%;
  height: calc(100% - 42px);
  overflow: hidden;
  border-radius: 50% 50% 18% 18%;
  opacity: 0.9;
  filter: saturate(0.82) contrast(1.04);
}

.console-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.console-dialogue {
  position: absolute;
  top: 29%;
  left: 7%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.console-dialogue small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.console-dialogue strong {
  max-width: 250px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.22;
}

.console-actions {
  position: absolute;
  right: 6%;
  bottom: 6%;
  left: 6%;
  z-index: 2;
  display: grid;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(20, 19, 24, 0.45);
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  backdrop-filter: blur(14px);
}

.console-actions span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.65rem;
}

.console-actions span:nth-child(2) {
  color: var(--white);
  background: rgba(216, 123, 143, 0.7);
}

.download {
  padding-bottom: 105px;
}

.download-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1fr 0.68fr;
  align-items: end;
  gap: 60px;
}

.download-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.store-card {
  position: relative;
  display: grid;
  min-height: 198px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  grid-template-columns: 65px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.store-card[data-platform="epic"] { order: 1; }
.store-card[data-platform="steam"] { order: 2; }
.store-card[data-platform="mobile"] { order: 3; }

.store-card:hover {
  border-color: rgba(201, 95, 120, 0.28);
  box-shadow: 0 18px 50px rgba(78, 56, 66, 0.08);
  transform: translateY(-2px);
}

.store-featured {
  border-color: rgba(201, 95, 120, 0.28);
  background: linear-gradient(145deg, var(--white), #fff7f7);
  box-shadow: 0 14px 38px rgba(105, 72, 84, 0.07);
}

.store-secondary {
  background: rgba(255, 255, 255, 0.42);
}

.store-status {
  position: absolute;
  top: 19px;
  right: 22px;
  color: #968d94;
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.store-status.available {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #518160;
}

.store-status.available i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #74ad84;
  box-shadow: 0 0 0 4px rgba(116, 173, 132, 0.12);
}

.store-logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--ink);
  background: var(--paper);
}

.store-logo svg {
  width: 31px;
}

.steam-logo svg {
  fill: currentColor;
}

.epic-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  line-height: 0.85;
  text-align: center;
}

.epic-logo small {
  margin-top: 3px;
  font-size: 0.39rem;
  letter-spacing: 0.16em;
}

.store-logo.epic-logo {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-logo svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.store-copy p {
  margin-bottom: 7px;
  color: var(--rose-deep);
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.store-copy h3 {
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: 1.27rem;
  font-weight: 710;
  letter-spacing: -0.03em;
}

.store-copy span {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.store-action {
  display: inline-flex;
  min-width: 100px;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.69rem;
  font-weight: 720;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-action:hover {
  box-shadow: 0 10px 22px rgba(36, 34, 41, 0.16);
  transform: translateY(-1px);
}

.store-action svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.store-action.is-muted {
  color: #8b848b;
  border-color: rgba(36, 34, 41, 0.13);
  background: transparent;
  box-shadow: none;
}

.download-note {
  display: flex;
  margin: 23px 0 0;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  text-align: center;
}

.download-note svg {
  width: 16px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.35;
}

.platform-band {
  display: flex;
  min-height: 104px;
  padding-inline: 32px;
  align-items: center;
  justify-content: center;
  gap: 27px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #827a82;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.25em;
}

.platform-band p {
  margin: 0;
}

.band-line {
  display: flex;
  width: min(32vw, 350px);
  align-items: center;
}

.band-line span {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.band-line i {
  width: 7px;
  height: 7px;
  margin-inline: 8px;
  border: 1px solid var(--rose);
  transform: rotate(45deg);
}

.faq {
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) 1.1fr;
  gap: 95px;
}

.faq .section-heading h2 { max-width: 12em; }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 82px;
  padding: 18px 2px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 670;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span:last-child {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item button > span:last-child::before,
.faq-item button > span:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button > span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button > span:last-child::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 50px 26px 2px;
}

.final-cta {
  position: relative;
  display: grid;
  width: min(calc(100% - 64px), var(--max-width));
  min-height: 470px;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 20%, rgba(224, 135, 154, 0.32), transparent 28%),
    linear-gradient(120deg, #34323b, #242329);
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.final-portrait {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.final-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 50%, #2d2b33 100%), linear-gradient(0deg, rgba(45,43,51,.45), transparent 55%);
}

.final-portrait img {
  width: 100%;
  height: 100%;
  opacity: 0.75;
  object-fit: cover;
  filter: saturate(0.7);
}

.final-copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 65px 48px 65px 24px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-copy h2 { max-width: 9em; }

.final-copy .kicker {
  color: #e8a0ae;
}

.final-copy > p:not(.kicker) {
  margin: 20px 0 29px;
  color: rgba(255, 255, 255, 0.65);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.final-watermark {
  position: absolute;
  right: -15px;
  bottom: -61px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: 12rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.site-footer {
  width: min(calc(100% - 64px), var(--max-width));
  padding: 75px 0 34px;
  margin-inline: auto;
}

.footer-main {
  display: grid;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.footer-main > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer-main nav {
  display: flex;
  gap: 25px;
}

.footer-main nav a {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 630;
}

.footer-main nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  padding-top: 23px;
  justify-content: space-between;
  gap: 30px;
  color: #989097;
  font-size: 0.55rem;
  letter-spacing: 0.07em;
}

.footer-bottom p {
  margin: 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  color: var(--white);
  background: rgba(36, 34, 41, 0.92);
  box-shadow: 0 18px 45px rgba(36, 34, 41, 0.24);
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta) { font-size: 0.72rem; }
  .hero { grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.76fr); gap: 40px; }
  .hero h1 { font-size: clamp(3.8rem, 6.5vw, 5.3rem); }
  .mood-note { right: -25px; }
  .store-card { grid-template-columns: 57px 1fr; }
  .store-logo { width: 55px; height: 55px; }
  .store-action { grid-column: 1 / -1; justify-self: stretch; }
}

@media (max-width: 900px) {
  .section { width: min(calc(100% - 44px), var(--max-width)); padding-block: 95px; }
  .nav-shell { width: calc(100% - 44px); height: 72px; }
  .brand-edition { display: none; }
  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    position: absolute;
    width: 15px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
    transform: translateY(-3px);
  }
  .nav-toggle span:last-child { transform: translateY(3px); }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only) { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: 105px 28px 35px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: rgba(255, 250, 247, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
    backdrop-filter: blur(18px);
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.4rem;
  }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 19px; justify-content: center; }
  .hero {
    min-height: 0;
    padding: 125px 22px 78px;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-signals { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(520px, 92%); justify-self: center; }
  .intro, .faq { grid-template-columns: 1fr; gap: 45px; }
  .intro-body { padding-top: 0; }
  .worlds { padding: 100px 22px; grid-template-columns: 1fr; gap: 58px; }
  .worlds-copy { text-align: center; }
  .worlds-copy > p { margin-inline: auto !important; }
  .world-tabs { justify-content: center; }
  .world-console { width: min(680px, 100%); justify-self: center; transform: none; }
  .download-heading { grid-template-columns: 1fr; gap: 24px; }
  .store-grid { grid-template-columns: 1fr; }
  .store-card { grid-template-columns: 65px 1fr auto; }
  .store-action { grid-column: auto; justify-self: auto; }
  .final-cta { width: calc(100% - 44px); grid-template-columns: 0.75fr 1.25fr; }
  .final-copy { padding-right: 38px; }
  .footer-main { grid-template-columns: auto 1fr; }
  .footer-main nav { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 72px; }
  .section { width: calc(100% - 32px); padding-block: 76px; }
  .nav-shell { width: calc(100% - 32px); }
  .hero { padding-inline: 16px; padding-top: 112px; }
  .eyebrow { margin-bottom: 21px; font-size: 0.58rem; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3rem, 15vw, 4.2rem); line-height: 1.02; }
  .hero-lead { font-size: 0.93rem; line-height: 1.75; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-downloads { grid-template-columns: 1fr; }
  .hero-download { min-height: 65px; text-align: left; }
  .hero-signals { gap: 13px; font-size: 0.63rem; }
  .hero-visual { width: 100%; }
  .visual-card { padding: 10px; border-radius: 28px; }
  .portrait-wrap { border-radius: 20px; }
  .visual-topline { top: 23px; right: 24px; left: 24px; }
  .message-card { right: 23px; bottom: 24px; left: 23px; min-height: 59px; padding: 10px; grid-template-columns: 31px 1fr auto; }
  .message-avatar { width: 31px; height: 31px; }
  .message-card p { font-size: 0.67rem; }
  .mood-note { display: none; }
  .visual-caption { margin-left: 10px; }
  .section-heading h2, .download-heading h2, .worlds-copy h2, .final-copy h2 { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .intro .section-heading h2, .worlds-copy h2, .final-copy h2 { max-width: none; }
  .faq .section-heading h2 { font-size: clamp(2rem, 9.8vw, 2.8rem); }
  .intro-lead { font-size: 1.08rem; }
  .feature-grid { margin-top: 43px; }
  .feature-card, .feature-card-large, .feature-card-wide { min-height: 345px; padding: 26px; grid-column: span 12; }
  .feature-card-wide { display: flex; min-height: 410px; justify-content: flex-end; }
  .feature-card-wide .feature-copy { order: 2; }
  .personality-tags { position: absolute; top: 45px; right: 24px; left: 24px; }
  .personality-tags span:nth-child(2) { right: 0; }
  .personality-tags span:nth-child(4) { left: 0; }
  .feature-card h3 { font-size: 1.45rem; }
  .worlds { padding: 80px 16px; }
  .worlds-copy { padding-inline: 6px; }
  .console-stage { min-height: 370px; }
  .console-avatar { top: 27px; right: -4%; width: 83%; height: calc(100% - 54px); }
  .console-dialogue { top: 24%; }
  .console-actions { grid-template-columns: 1fr; }
  .console-actions span { display: none; }
  .console-actions span:nth-child(2) { display: grid; min-height: 45px; }
  .store-card { min-height: 215px; padding: 25px; grid-template-columns: 57px 1fr; gap: 16px; }
  .store-logo { width: 55px; height: 55px; }
  .store-action { grid-column: 1 / -1; justify-self: stretch; }
  .download-note { align-items: flex-start; line-height: 1.6; text-align: left; }
  .platform-band { min-height: 84px; padding-inline: 16px; gap: 12px; font-size: 0.49rem; letter-spacing: 0.13em; }
  .band-line { width: 19vw; }
  .faq-item button { min-height: 76px; font-size: 0.85rem; }
  .final-cta { width: calc(100% - 32px); min-height: 620px; grid-template-columns: 1fr; grid-template-rows: 230px 1fr; }
  .final-portrait::after { background: linear-gradient(0deg, #2d2b33, transparent 75%); }
  .final-portrait img { object-position: center 28%; }
  .final-copy { padding: 28px 25px 48px; text-align: center; align-items: center; }
  .final-copy > p:not(.kicker) { margin-top: 17px; }
  .final-copy .button { width: 100%; }
  .final-watermark { font-size: 7rem; }
  .site-footer { width: calc(100% - 32px); padding-top: 58px; }
  .footer-main { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-main nav { grid-column: auto; flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid rgba(201, 95, 120, 0.38);
  outline-offset: 3px;
}
