:root {
  --purple-950: #251052;
  --purple-900: #31106c;
  --purple-800: #431394;
  --purple-700: #5920c9;
  --purple-600: #6c2ee8;
  --purple-500: #8547f3;
  --gold-500: #ffcb36;
  --gold-400: #ffd85e;
  --green-600: #28b827;
  --green-500: #42d537;
  --green-400: #6deb55;
  --pink-500: #ff4f93;
  --pink-300: #ff91bd;
  --red-500: #f63d4f;
  --cream-50: #fffdf7;
  --cream-100: #fff8e9;
  --cream-200: #ffeecb;
  --ink-900: #2c1640;
  --ink-700: #5b3d6a;
  --ink-500: #806b8b;
  --sky-100: #dff7ff;
  --surface: rgba(255, 255, 255, .84);
  --surface-strong: #ffffff;
  --shadow-sm: 0 8px 20px rgba(50, 17, 99, .10);
  --shadow-md: 0 20px 48px rgba(50, 17, 99, .16);
  --shadow-lg: 0 30px 90px rgba(36, 12, 86, .28);
  --shadow-gold: 0 10px 0 #c88b00, 0 18px 30px rgba(79, 35, 0, .24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1180px;
  --header-h: 76px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-bounce: cubic-bezier(.2, 1.4, .4, 1);
  --motion-fast: 160ms;
  --motion-med: 320ms;
  --motion-slow: 700ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--cream-50);
  font-family: ui-rounded, "Nunito", "Avenir Next", "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; object-fit: contain; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
svg { width: 1.25em; height: 1.25em; fill: currentColor; display: block; }
::selection { background: var(--gold-400); color: var(--ink-900); }

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  transform: translateY(-150%); padding: 12px 16px; background: #fff; color: var(--purple-900);
  border-radius: 12px; font-weight: 800; box-shadow: var(--shadow-md);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 4px solid #1fb5ff; outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(76px, 9vw, 132px) 0; }
.section-heading { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2, .gameplay-copy h2, .booster-copy h2, .story-copy h2, .faq-copy h2 {
  margin: 10px 0 16px; font-size: clamp(2.15rem, 5vw, 4.6rem); line-height: .98; letter-spacing: -.045em;
}
.section-heading p, .gameplay-copy > p, .booster-copy > p, .story-copy p, .faq-copy p {
  margin: 0; color: var(--ink-700); line-height: 1.72; font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px; color: var(--purple-700); text-transform: uppercase;
  letter-spacing: .16em; font-size: .78rem; font-weight: 900;
}
.section-kicker::before { content: ""; width: 24px; height: 4px; border-radius: 20px; background: var(--gold-500); box-shadow: 0 0 0 3px rgba(255, 203, 54, .18); }
.section-kicker.light { color: white; }

.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 999; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--pink-500), var(--purple-500)); box-shadow: 0 0 14px rgba(255, 217, 89, .6); }

.site-header { position: fixed; inset: max(10px, env(safe-area-inset-top)) 0 auto; z-index: 200; padding: 0 14px; }
.nav-shell {
  width: min(100%, 1220px); margin-inline: auto; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 8px 10px 8px 14px; border-radius: 24px; background: rgba(41, 15, 84, .76); border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 48px rgba(20, 8, 52, .22); backdrop-filter: blur(18px) saturate(1.25);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand img { width: 46px; height: 46px; border-radius: 14px; box-shadow: 0 5px 14px rgba(0,0,0,.24); }
.brand-wordmark { color: white; font-size: 1.2rem; font-weight: 850; letter-spacing: -.04em; }
.brand-wordmark strong { color: var(--gold-400); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > a { color: rgba(255,255,255,.86); padding: 11px 12px; border-radius: 14px; font-size: .92rem; font-weight: 780; transition: background var(--motion-fast), color var(--motion-fast), transform var(--motion-fast); }
.nav-menu > a:hover { background: rgba(255,255,255,.1); color: white; transform: translateY(-1px); }
.nav-menu .nav-cta { background: var(--green-500); color: #143913; box-shadow: inset 0 -4px 0 rgba(14, 104, 14, .26); padding-inline: 18px; }
.nav-menu .nav-cta:hover { background: var(--green-400); color: #12320f; }
.nav-toggle { display: none; width: 46px; height: 46px; background: rgba(255,255,255,.1); border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 21px; height: 2px; border-radius: 2px; background: white; transition: transform var(--motion-fast), opacity var(--motion-fast); }

.hero {
  position: relative; min-height: max(760px, 100svh); isolation: isolate; overflow: hidden; display: grid; align-items: center;
  padding: calc(var(--header-h) + 64px) 0 88px; background: linear-gradient(145deg, #4d20b4 0%, #29105f 55%, #1f0b4e 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: -5; background: linear-gradient(90deg, rgba(37,16,82,.93) 0%, rgba(37,16,82,.73) 42%, rgba(37,16,82,.22) 100%), url('../images/worlds/home_beach.webp') center / cover no-repeat; transform: scale(1.04); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(to bottom, transparent, rgba(255,253,247,.14) 45%, var(--cream-50) 100%); z-index: -1; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(30px); z-index: -3; pointer-events: none; opacity: .66; }
.hero-glow-a { width: 500px; height: 500px; background: rgba(255, 69, 153, .32); left: -220px; top: 14%; }
.hero-glow-b { width: 560px; height: 560px; background: rgba(255, 203, 54, .22); right: -180px; bottom: 2%; }
.hero-paw-pattern { position: absolute; inset: 0; z-index: -2; opacity: .1; background-image: radial-gradient(circle at 20% 20%, #fff 0 3px, transparent 4px), radial-gradient(circle at 80% 44%, #fff 0 3px, transparent 4px); background-size: 90px 90px, 120px 120px; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(30px, 5vw, 76px); }
.hero-copy { color: white; position: relative; z-index: 4; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.92); font-weight: 800; font-size: .88rem; }
.paw-dot { color: var(--gold-500); text-shadow: 0 0 16px rgba(255,203,54,.9); font-size: .75rem; }
.hero h1 { margin: 20px 0 0; font-size: clamp(4rem, 9vw, 8rem); line-height: .78; letter-spacing: -.08em; text-shadow: 0 12px 0 rgba(37,10,85,.35), 0 18px 48px rgba(20,8,52,.25); }
.hero-title-paw { color: var(--gold-500); -webkit-text-stroke: 3px rgba(62,16,124,.5); }
.hero-title-pairs { display: block; color: var(--cream-50); margin-left: 8%; }
.hero-kicker { margin: 28px 0 8px; font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 900; color: #ffe99a; }
.hero-lede { margin: 0; max-width: 620px; font-size: clamp(1rem, 1.45vw, 1.19rem); line-height: 1.7; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn { min-height: 58px; display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px; border-radius: 18px; font-weight: 900; transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast), filter var(--motion-fast); }
.btn svg { width: 27px; height: 27px; }
.btn span { display: flex; flex-direction: column; line-height: 1.04; }
.btn small { font-size: .64rem; font-weight: 700; letter-spacing: .03em; opacity: .76; margin-bottom: 4px; }
.btn-primary { background: linear-gradient(#62ef4e, #35c72c); color: #123e12; box-shadow: 0 7px 0 #1a901f, 0 16px 28px rgba(10, 83, 18, .28); }
.btn-secondary { background: rgba(255,255,255,.96); color: var(--purple-900); box-shadow: 0 7px 0 #d8cef5, 0 16px 28px rgba(11, 7, 42, .22); }
.btn:hover { transform: translateY(-3px) scale(1.01); filter: saturate(1.08); }
.btn:active { transform: translateY(3px) scale(.98); box-shadow: 0 2px 0 rgba(0,0,0,.18); }
.store-note { margin: 15px 0 0; font-size: .77rem; color: rgba(255,255,255,.62); }
.hero-facts { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-facts > div { min-width: 128px; padding: 14px 16px; border-radius: 18px; background: rgba(31, 8, 70, .45); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px); }
.hero-facts strong { display: block; color: white; font-size: 1.35rem; }
.hero-facts span { display: block; margin-top: 2px; font-size: .75rem; color: rgba(255,255,255,.7); }

.hero-art { min-height: 620px; position: relative; display: grid; place-items: center; perspective: 1300px; }
.phone-frame { position: relative; overflow: hidden; border: 10px solid #1b1530; background: #1b1530; border-radius: 38px; box-shadow: 0 20px 70px rgba(12, 5, 40, .28), inset 0 0 0 2px rgba(255,255,255,.08); }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 27px; }
.phone-speaker { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 28%; height: 16px; z-index: 4; border-radius: 0 0 14px 14px; background: #1b1530; }
.phone-shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 22%, transparent 70%, rgba(255,255,255,.07)); border-radius: inherit; }
.hero-phone { width: min(400px, 67%); aspect-ratio: 941 / 1672; transform: rotateY(-7deg) rotateZ(2deg); z-index: 2; box-shadow: 0 46px 90px rgba(12, 4, 43, .42), 0 0 0 1px rgba(255,255,255,.15); transition: transform 220ms ease-out; }
.orbit { position: absolute; border: 2px dashed rgba(255,255,255,.16); border-radius: 50%; animation: spin 34s linear infinite; }
.orbit-one { width: 78%; aspect-ratio: 1; }
.orbit-two { width: 60%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 25s; }
.floating-pal { position: absolute; width: clamp(90px, 10vw, 160px); height: auto; z-index: 3; filter: drop-shadow(0 20px 22px rgba(28, 8, 72, .32)); animation: float 4.6s ease-in-out infinite; }
.pal-cat { left: 2%; top: 10%; transform: rotate(-8deg); }
.pal-bunny { right: -1%; top: 15%; animation-delay: -.8s; transform: rotate(8deg); }
.pal-panda { left: 7%; bottom: 4%; animation-delay: -1.6s; }
.pal-frog { right: 2%; bottom: 9%; animation-delay: -2.4s; }
.hero-badge { position: absolute; z-index: 5; display: flex; align-items: center; gap: 8px; padding: 9px 13px 9px 8px; color: white; font-size: .78rem; font-weight: 850; border-radius: 18px; background: rgba(49, 16, 108, .82); border: 1px solid rgba(255,255,255,.17); box-shadow: 0 14px 35px rgba(25, 8, 65, .25); backdrop-filter: blur(14px); }
.hero-badge img { width: 42px; height: 42px; object-fit: contain; }
.badge-left { left: 2%; top: 47%; }
.badge-right { right: 0; top: 52%; }
.hero-scroll { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); color: rgba(255,255,255,.78); display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 800; z-index: 3; }
.hero-scroll svg { animation: scrollhint 1.8s ease-in-out infinite; }

.features-section { background: var(--cream-50); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { position: relative; overflow: hidden; padding: 26px 24px 28px; border-radius: var(--radius-lg); background: linear-gradient(180deg, #fff, #fff9ee); border: 1px solid rgba(105, 62, 134, .09); box-shadow: var(--shadow-sm); transition: transform var(--motion-med) var(--ease-out), box-shadow var(--motion-med); }
.feature-card::before { content: ""; position: absolute; inset: -60% -30% auto; height: 180px; background: radial-gradient(circle, rgba(255,215,84,.24), transparent 70%); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; color: white; background: linear-gradient(145deg, var(--purple-500), var(--purple-800)); box-shadow: 0 7px 0 #3b148b, 0 16px 22px rgba(85, 26, 170, .18); margin-bottom: 24px; }
.feature-icon svg { width: 29px; height: 29px; }
.feature-card h3 { margin: 0 0 10px; font-size: 1.22rem; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--ink-700); line-height: 1.62; font-size: .94rem; }

.gameplay-section { background: linear-gradient(180deg, #f7f0ff, #fff8ef 86%); overflow: hidden; }
.gameplay-section::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(133,71,243,.15), transparent 68%); left: -200px; top: 10%; }
.gameplay-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(38px, 6vw, 84px); align-items: center; }
.answer-copy strong { color: var(--purple-800); }
.gameplay-steps { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 16px; }
.gameplay-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.gameplay-steps li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: white; font-weight: 900; background: linear-gradient(145deg, var(--purple-500), var(--purple-800)); box-shadow: 0 5px 0 #3d1688; }
.gameplay-steps strong { display: block; margin-top: 2px; font-size: 1.04rem; }
.gameplay-steps p { margin: 4px 0 0; color: var(--ink-700); line-height: 1.5; font-size: .93rem; }
.demo-card { position: relative; border-radius: 36px; padding: 22px; background: linear-gradient(145deg, #3a1484, #5a26c6); box-shadow: 0 26px 0 #2b0c6b, 0 44px 70px rgba(46, 17, 96, .25); color: white; }
.demo-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; pointer-events: none; }
.demo-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 2px 4px 18px; }
.demo-topline h3 { margin: 4px 0 0; font-size: 1.4rem; }
.mini-label { display: block; color: #d8c7ff; font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; }
.icon-button { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.12); color: white; cursor: pointer; transition: transform var(--motion-fast), background var(--motion-fast); }
.icon-button:hover { background: rgba(255,255,255,.19); transform: rotate(-12deg); }
.demo-board { position: relative; display: grid; gap: 17px; padding: 24px 18px 18px; border-radius: 27px; background: linear-gradient(180deg, #25105a, #1d0e47); border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.demo-board::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 56px 56px; }
.demo-row { position: relative; z-index: 1; display: grid; grid-template-columns: 86px 1fr 64px 1fr 86px; align-items: center; min-height: 105px; }
.demo-animal { position: relative; z-index: 3; width: 82px; aspect-ratio: 1; transition: transform 430ms var(--ease-bounce), filter 250ms ease; }
.demo-animal img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 11px rgba(0,0,0,.24)); }
.demo-path { height: 8px; border-radius: 10px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.15) 0 10px, transparent 10px 18px); transition: background 200ms ease, box-shadow 200ms ease; }
.meeting-node { width: 60px; height: 60px; border-radius: 19px; display: grid; place-items: center; cursor: pointer; color: #cfbaff; background: linear-gradient(145deg, #6e37de, #4a1aad); border: 2px solid rgba(255,255,255,.22); box-shadow: inset 0 2px 0 rgba(255,255,255,.18), 0 7px 0 #22085c, 0 0 0 0 rgba(255,210,65,.0); transition: transform var(--motion-fast), box-shadow var(--motion-fast), color var(--motion-fast); animation: nodePulse 2.1s ease-in-out infinite; }
.meeting-node svg { width: 29px; height: 29px; }
.meeting-node:hover { transform: translateY(-2px) scale(1.05); color: #fff; box-shadow: inset 0 2px 0 rgba(255,255,255,.22), 0 9px 0 #22085c, 0 0 0 8px rgba(255,210,65,.12), 0 0 28px rgba(255,210,65,.42); }
.demo-result { position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%) scale(0); z-index: 5; font-weight: 900; text-shadow: 0 4px 10px rgba(0,0,0,.25); opacity: 0; }
.demo-heart { color: #ff5a8e; font-size: 3rem; }
.demo-question { color: #ffe36c; font-size: 2.7rem; }
.demo-row.success .demo-left { transform: translateX(88px) scale(.88); }
.demo-row.success .demo-right { transform: translateX(-88px) scale(.88); }
.demo-row.success .demo-path { background: linear-gradient(90deg, #ffe169, #ffac2f); box-shadow: 0 0 20px rgba(255, 213, 72, .7); }
.demo-row.success .demo-heart { animation: heartPop 900ms var(--ease-bounce) forwards; }
.demo-row.fail .demo-left { animation: failLeft 720ms var(--ease-out); }
.demo-row.fail .demo-right { animation: failRight 720ms var(--ease-out); }
.demo-row.fail .demo-question { animation: questionPop 820ms var(--ease-bounce) forwards; }
.demo-row.fail .demo-path { background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,226,96,.55), rgba(255,255,255,.15)); }
.demo-status { position: relative; z-index: 1; text-align: center; margin: 4px 0 0; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 750; }
.noscript-note { margin: 12px 0 0; padding: 10px; border-radius: 12px; background: #fff3c8; color: #5e4513; font-size: .85rem; }

.worlds-section { background: #fff; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 40px; }
.split-heading p { padding-bottom: 8px; }
.world-explorer { border-radius: 38px; overflow: hidden; background: var(--purple-900); box-shadow: var(--shadow-lg); }
.world-visual { position: relative; min-height: 540px; background-image: var(--world-image); background-size: cover; background-position: center; transition: background-image 260ms ease; display: flex; align-items: end; }
.world-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,8,62,.05), rgba(26,8,62,.12) 35%, rgba(26,8,62,.82) 100%); }
.world-copy { position: relative; z-index: 2; color: white; max-width: 650px; padding: clamp(24px, 5vw, 56px); }
.world-copy span { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.17); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.world-copy h3 { margin: 12px 0 8px; font-size: clamp(2rem, 5vw, 4rem); line-height: .95; letter-spacing: -.04em; }
.world-copy p { margin: 0; line-height: 1.62; color: rgba(255,255,255,.82); }
.world-tabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.world-tab { min-height: 74px; padding: 12px; cursor: pointer; color: rgba(255,255,255,.64); background: rgba(25, 7, 64, .7); transition: background var(--motion-fast), color var(--motion-fast); border-top: 3px solid transparent; font-weight: 850; }
.world-tab:hover { color: white; background: rgba(255,255,255,.08); }
.world-tab.active { color: #fff; background: linear-gradient(180deg, rgba(116,57,227,.9), rgba(76,29,172,.95)); border-top-color: var(--gold-500); }
.progression-strip { position: relative; margin-top: 56px; display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.progress-line { position: absolute; left: 10%; right: 10%; top: 26px; height: 6px; background: #eadff8; border-radius: 10px; }
.progress-line span { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--purple-500), var(--pink-500), var(--gold-500)); }
.progress-point { position: relative; text-align: center; padding-top: 60px; }
.progress-point > span { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #f1e8fb; border: 6px solid #fff; box-shadow: 0 6px 18px rgba(65, 25, 110,.16); color: var(--purple-700); font-weight: 900; }
.progress-point.active > span { background: var(--gold-500); color: var(--purple-900); }
.progress-point strong { display: block; }
.progress-point small { display: block; color: var(--ink-500); margin-top: 3px; }

.pals-section { background: linear-gradient(180deg, #fff8eb, #fff3fa); }
.pals-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.pal-card { position: relative; text-align: center; padding: 12px 10px 16px; border-radius: 26px; background: rgba(255,255,255,.78); border: 1px solid rgba(112,63,128,.09); box-shadow: 0 10px 22px rgba(88,38,84,.08); transition: transform var(--motion-med) var(--ease-bounce), box-shadow var(--motion-med); overflow: hidden; }
.pal-card::after { content: ""; position: absolute; inset: auto -20% -50%; height: 70%; background: radial-gradient(circle, rgba(255,205,75,.18), transparent 66%); }
.pal-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 18px 36px rgba(88,38,84,.14); }
.pal-card:nth-child(even):hover { transform: translateY(-8px) rotate(1deg); }
.pal-card img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1; object-fit: contain; transition: transform var(--motion-med) var(--ease-bounce); }
.pal-card:hover img { transform: scale(1.08) translateY(-2px); }
.pal-card h3 { position: relative; z-index: 1; margin: 3px 0 3px; font-size: .96rem; }
.pal-card span { position: relative; z-index: 1; display: block; color: var(--ink-500); font-size: .7rem; line-height: 1.3; }

.boosters-section { background: linear-gradient(135deg, #36107b, #6323ce); color: white; overflow: hidden; }
.boosters-section::before { content: ""; position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 15% 20%, #ff6fb0 0 2px, transparent 3px), radial-gradient(circle at 85% 65%, #ffe460 0 2px, transparent 3px); background-size: 76px 76px, 110px 110px; }
.booster-layout { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(38px, 7vw, 90px); align-items: center; }
.booster-copy h2 { color: white; }
.booster-copy > p { color: rgba(255,255,255,.76); }
.booster-note { margin-top: 26px; display: flex; gap: 12px; align-items: center; padding: 15px 16px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.11); color: #fff2bd; font-size: .88rem; font-weight: 700; }
.booster-note svg { color: var(--gold-500); width: 23px; height: 23px; flex: 0 0 auto; }
.booster-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.booster-card { min-height: 154px; display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 12px; padding: 16px; border-radius: 26px; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,232,.98)); color: var(--ink-900); box-shadow: 0 12px 0 rgba(35,9,82,.28), 0 22px 36px rgba(24,5,63,.18); transition: transform var(--motion-med) var(--ease-out); }
.booster-card:hover { transform: translateY(-5px) scale(1.015); }
.booster-card img { width: 88px; height: 88px; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(72,29,93,.14)); }
.booster-card h3 { margin: 0 0 5px; font-size: 1.05rem; }
.booster-card p { margin: 0; color: var(--ink-700); font-size: .82rem; line-height: 1.45; }

.story-section { background: #f9f2ff; overflow: hidden; }
.story-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,244,255,.92), rgba(250,244,255,.74)), url('../images/worlds/gameplay_garden.webp') center / cover no-repeat; opacity: .42; }
.story-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(38px, 7vw, 90px); }
.story-image-card { padding: 14px; border-radius: 36px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-lg); transform: rotate(-2deg); }
.story-image-card img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 26px; background: #fff; }
.story-copy p + p { margin-top: 16px; }
.text-link { margin-top: 26px; display: inline-flex; align-items: center; gap: 8px; color: var(--purple-700); font-weight: 900; }
.text-link svg { transition: transform var(--motion-fast); }
.text-link:hover svg { transform: translateX(5px); }

.gallery-section { background: #fff; overflow: hidden; }
.gallery-shell { position: relative; padding: 10px 56px 52px; }
.gallery-viewport { overflow: hidden; touch-action: pan-y; }
.gallery-track { display: flex; align-items: center; gap: 26px; transition: transform 480ms var(--ease-out); will-change: transform; }
.screen-card { flex: 0 0 min(320px, 76vw); margin: 0; opacity: .48; transform: scale(.92); transition: opacity 400ms ease, transform 400ms var(--ease-out); }
.screen-card.active { opacity: 1; transform: scale(1); }
.screen-card .phone-frame { aspect-ratio: 941 / 1672; box-shadow: 0 30px 60px rgba(44,22,64,.20); border-width: 9px; }
.screen-card figcaption { margin-top: 16px; text-align: center; color: var(--ink-700); font-size: .84rem; font-weight: 750; line-height: 1.4; }
.gallery-arrow { position: absolute; top: 43%; z-index: 4; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; color: white; background: linear-gradient(145deg, var(--purple-500), var(--purple-800)); box-shadow: 0 7px 0 #35117c, 0 14px 28px rgba(53,17,124,.22); cursor: pointer; transition: transform var(--motion-fast); }
.gallery-arrow:hover { transform: translateY(-3px); }
.gallery-arrow.prev { left: 0; }
.gallery-arrow.prev svg { transform: rotate(90deg); }
.gallery-arrow.next { right: 0; }
.gallery-arrow.next svg { transform: rotate(-90deg); }
.gallery-dots { position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%); display: flex; gap: 8px; }
.gallery-dot { width: 10px; height: 10px; border-radius: 50%; background: #d9c8ee; cursor: pointer; transition: width var(--motion-fast), background var(--motion-fast); }
.gallery-dot.active { width: 28px; border-radius: 10px; background: var(--purple-600); }

.rewards-section { background: linear-gradient(180deg, #fff, #fff8ea); }
.rewards-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; min-height: 460px; padding: clamp(30px, 5vw, 64px); border-radius: 42px; background: linear-gradient(130deg, #fff0be, #fffaf0 48%, #f2e8ff 100%); border: 1px solid rgba(164,112,22,.13); box-shadow: var(--shadow-md); }
.rewards-card::before { content: ""; position: absolute; inset: -50% auto auto -20%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(255,212,58,.25), transparent 70%); }
.rewards-copy { position: relative; z-index: 2; }
.rewards-copy h2 { margin: 10px 0 16px; font-size: clamp(2.1rem, 5vw, 4.2rem); line-height: .98; letter-spacing: -.045em; }
.rewards-copy p { margin: 0; max-width: 640px; color: var(--ink-700); line-height: 1.7; }
.reward-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.reward-tags span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid rgba(96,54,118,.10); color: var(--purple-800); font-size: .78rem; font-weight: 850; }
.reward-art { position: relative; min-height: 320px; }
.reward-art img { position: absolute; object-fit: contain; filter: drop-shadow(0 22px 22px rgba(61,28,66,.16)); animation: float 4s ease-in-out infinite; }
.reward-coin { width: 118px; left: 4%; top: 11%; }
.reward-chest { width: 210px; left: 28%; top: 29%; animation-delay: -.9s !important; }
.reward-gift { width: 138px; right: 1%; top: 5%; animation-delay: -1.6s !important; }
.reward-medal { width: 130px; right: 6%; bottom: 0; animation-delay: -2.2s !important; }
.spark { position: absolute; color: #ffc928; text-shadow: 0 0 18px rgba(255,183,27,.55); animation: sparkle 2s ease-in-out infinite; font-size: 2rem; }
.s1 { left: 23%; top: 8%; }.s2 { right: 22%; top: 42%; animation-delay: -.7s; }.s3 { left: 20%; bottom: 12%; animation-delay: -1.3s; }

.faq-section { background: #f7f2ff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(34px, 7vw, 88px); align-items: start; }
.faq-copy { position: sticky; top: 120px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 22px; background: #fff; border: 1px solid rgba(95,51,129,.10); box-shadow: 0 8px 18px rgba(55,26,83,.06); overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 20px; color: var(--ink-900); background: transparent; cursor: pointer; text-align: left; font-weight: 850; }
.faq-item button svg { flex: 0 0 auto; color: var(--purple-600); transition: transform 220ms ease; }
.faq-item button[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 20px; }
.faq-answer p { margin: 0; color: var(--ink-700); line-height: 1.68; font-size: .94rem; }

.final-cta { position: relative; overflow: hidden; isolation: isolate; min-height: 610px; display: grid; align-items: center; padding: 88px 0 78px; background: #32106f; color: white; }
.final-cta-bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(42,12,96,.95), rgba(69,20,147,.84) 48%, rgba(36,9,89,.42)), url('../images/worlds/friendship_festival.webp') center / cover no-repeat; }
.final-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 80% 44%, rgba(255,201,55,.26), transparent 31%); }
.final-cta-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: center; }
.final-copy h2 { margin: 12px 0 16px; max-width: 720px; font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: .92; letter-spacing: -.055em; }
.final-copy > p { max-width: 650px; color: rgba(255,255,255,.82); line-height: 1.65; }
.final-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.store-card { min-width: 210px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 18px; background: rgba(255,255,255,.96); color: var(--purple-900); box-shadow: 0 7px 0 #d5c2f1, 0 16px 28px rgba(15,4,44,.25); transition: transform var(--motion-fast); }
.store-card:hover { transform: translateY(-3px); }
.store-card svg { width: 29px; height: 29px; }
.store-card span { display: grid; }
.store-card small { font-size: .62rem; opacity: .64; }
.store-card strong { font-size: 1rem; }
.final-note { margin-top: 18px !important; font-size: .75rem; color: rgba(255,255,255,.6) !important; }
.final-art { position: relative; min-height: 380px; }
.final-pal { position: absolute; width: min(220px, 42%); filter: drop-shadow(0 30px 28px rgba(15,4,44,.32)); animation: float 4.2s ease-in-out infinite; }
.fp1 { left: 2%; bottom: 4%; transform: rotate(-8deg); }
.fp2 { left: 32%; top: 0; animation-delay: -.9s; }
.fp3 { right: 0; bottom: 12%; animation-delay: -1.8s; transform: rotate(8deg); }
.big-heart { position: absolute; left: 52%; top: 48%; transform: translate(-50%,-50%); color: #ff5c8f; font-size: 4rem; text-shadow: 0 0 28px rgba(255,92,143,.48); animation: heartbeat 1.8s ease-in-out infinite; }

.site-footer { background: #1d0b42; color: white; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.63); line-height: 1.6; font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links h2 { margin: 0 0 12px; font-size: .85rem; text-transform: uppercase; letter-spacing: .13em; color: #e6d9ff; }
.footer-links a, .footer-links span { display: block; padding: 5px 0; color: rgba(255,255,255,.62); font-size: .85rem; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.75); font-weight: 800; }
.footer-bottom svg { width: 16px; height: 16px; }
.powered-by { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); font-weight: 800; }
.powered-by img { width: auto; height: 28px; object-fit: contain; }

.mobile-cta { display: none; position: fixed; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 160; }
.mobile-cta a { min-height: 66px; display: grid; grid-template-columns: 44px 1fr 26px; align-items: center; gap: 11px; padding: 8px 12px; border-radius: 22px; background: rgba(43,13,98,.93); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 14px 34px rgba(20,4,53,.34); backdrop-filter: blur(14px); color: white; }
.mobile-cta img { width: 42px; height: 42px; border-radius: 13px; }
.mobile-cta span { display: grid; }
.mobile-cta strong { font-size: .92rem; }
.mobile-cta small { color: rgba(255,255,255,.61); font-size: .68rem; margin-top: 2px; }
.mobile-cta > a > svg { color: var(--gold-400); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }

@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -13px; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollhint { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes nodePulse { 0%,100% { box-shadow: inset 0 2px 0 rgba(255,255,255,.18), 0 7px 0 #22085c, 0 0 0 0 rgba(255,210,65,.0); } 50% { box-shadow: inset 0 2px 0 rgba(255,255,255,.18), 0 7px 0 #22085c, 0 0 0 8px rgba(255,210,65,.10), 0 0 26px rgba(255,210,65,.32); } }
@keyframes heartPop { 0% { opacity:0; transform:translate(-50%,-50%) scale(0) rotate(-12deg); } 28% { opacity:1; transform:translate(-50%,-55%) scale(1.25) rotate(5deg); } 68% { opacity:1; transform:translate(-50%,-100%) scale(1); } 100% { opacity:0; transform:translate(-50%,-150%) scale(.75); } }
@keyframes questionPop { 0% { opacity:0; transform:translate(-50%,-50%) scale(0); } 30% { opacity:1; transform:translate(-50%,-60%) scale(1.2); } 75% { opacity:1; transform:translate(-50%,-100%) scale(1); } 100% { opacity:0; transform:translate(-50%,-125%) scale(.8); } }
@keyframes failLeft { 0%,100% { transform:translateX(0); } 30% { transform:translateX(58px) scale(.94); } 45% { transform:translateX(53px) rotate(-4deg); } 55% { transform:translateX(61px) rotate(4deg); } 70% { transform:translateX(58px); } }
@keyframes failRight { 0%,100% { transform:translateX(0); } 30% { transform:translateX(-58px) scale(.94); } 45% { transform:translateX(-53px) rotate(4deg); } 55% { transform:translateX(-61px) rotate(-4deg); } 70% { transform:translateX(-58px); } }
@keyframes sparkle { 0%,100% { opacity:.45; transform:scale(.7) rotate(0deg); } 50% { opacity:1; transform:scale(1.15) rotate(30deg); } }
@keyframes heartbeat { 0%,100% { transform:translate(-50%,-50%) scale(1); } 12% { transform:translate(-50%,-50%) scale(1.12); } 24% { transform:translate(-50%,-50%) scale(1); } 38% { transform:translate(-50%,-50%) scale(1.08); } }

@media (max-width: 1080px) {
  .nav-menu > a:not(.nav-cta) { padding-inline: 9px; font-size: .86rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .pals-grid { grid-template-columns: repeat(4,1fr); }
  .booster-layout { grid-template-columns: 1fr; }
  .booster-copy { max-width: 720px; }
}

@media (max-width: 820px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding-inline: 10px; }
  .nav-shell { border-radius: 21px; min-height: 60px; }
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; left: 12px; right: 12px; top: calc(max(10px, env(safe-area-inset-top)) + 72px); padding: 12px; border-radius: 24px; background: rgba(35,11,78,.97); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 22px 60px rgba(20,3,54,.36); flex-direction: column; align-items: stretch; opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > a { padding: 13px 14px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 126px; padding-bottom: 70px; }
  .hero-bg { background: linear-gradient(180deg, rgba(37,16,82,.84) 0%, rgba(37,16,82,.72) 42%, rgba(37,16,82,.40) 70%, rgba(37,16,82,.72) 100%), url('../images/worlds/home_beach.webp') center / cover no-repeat; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero-copy { max-width: 680px; margin-inline: auto; }
  .hero-title-pairs { margin-left: 0; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-art { min-height: 560px; }
  .hero-phone { width: min(360px, 59%); }
  .pal-cat { left: 7%; }.pal-bunny{right:7%}.pal-panda{left:10%}.pal-frog{right:10%}
  .hero-badge { display: none; }
  .hero-scroll { display: none; }

  .gameplay-layout, .story-grid, .rewards-card, .faq-grid, .final-cta-grid, .split-heading { grid-template-columns: 1fr; }
  .split-heading { gap: 14px; }
  .gameplay-copy, .story-copy { max-width: 700px; }
  .world-visual { min-height: 460px; }
  .world-tabs { grid-template-columns: 1fr 1fr; }
  .world-tabs .world-tab:last-child { grid-column: 1 / -1; }
  .progression-strip { overflow-x: auto; grid-template-columns: repeat(5, minmax(130px,1fr)); padding-bottom: 12px; }
  .progress-line { left: 65px; right: 65px; }
  .pals-grid { grid-template-columns: repeat(3,1fr); }
  .story-art { order: 2; }
  .faq-copy { position: static; }
  .final-art { min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 110px; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .brand-wordmark { font-size: 1.05rem; }
  .brand img { width: 42px; height: 42px; }
  .hero { padding-top: 116px; }
  .hero h1 { font-size: clamp(4.2rem, 24vw, 6.4rem); }
  .hero-kicker { margin-top: 22px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { justify-content: center; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .hero-facts > div { min-width: 0; padding: 11px 8px; border-radius: 14px; }
  .hero-facts strong { font-size: 1.05rem; }
  .hero-facts span { font-size: .58rem; line-height: 1.2; }
  .hero-art { min-height: 430px; }
  .hero-phone { width: 62%; border-width: 8px; border-radius: 30px; }
  .phone-speaker { height: 12px; top: 8px; }
  .floating-pal { width: 94px; }
  .pal-cat { left: 0; top: 7%; }.pal-bunny{right:0;top:10%}.pal-panda{left:2%;bottom:6%}.pal-frog{right:2%;bottom:9%}

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 22px; }
  .demo-card { padding: 14px; border-radius: 28px; box-shadow: 0 18px 0 #2b0c6b, 0 32px 52px rgba(46,17,96,.22); }
  .demo-board { padding-inline: 10px; }
  .demo-row { grid-template-columns: 64px 1fr 54px 1fr 64px; min-height: 88px; }
  .demo-animal { width: 62px; }
  .meeting-node { width: 50px; height: 50px; border-radius: 16px; }
  .meeting-node svg { width: 24px; height: 24px; }
  .demo-row.success .demo-left { transform: translateX(63px) scale(.9); }
  .demo-row.success .demo-right { transform: translateX(-63px) scale(.9); }

  .world-explorer { border-radius: 28px; }
  .world-visual { min-height: 390px; background-position: center; }
  .world-copy { padding: 24px 20px; }
  .world-tabs { grid-template-columns: 1fr; }
  .world-tabs .world-tab:last-child { grid-column: auto; }
  .world-tab { min-height: 54px; }
  .progression-strip { margin-top: 38px; }
  .pals-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .pal-card { border-radius: 22px; }

  .booster-grid { grid-template-columns: 1fr; }
  .booster-card { min-height: 118px; grid-template-columns: 80px 1fr; }
  .booster-card img { width: 76px; height: 76px; }
  .story-image-card { border-radius: 28px; padding: 10px; }
  .story-image-card img { border-radius: 20px; }

  .gallery-shell { padding-inline: 0; }
  .gallery-arrow { display: none; }
  .screen-card { flex-basis: 72vw; }
  .gallery-track { gap: 16px; }
  .screen-card .phone-frame { border-width: 7px; border-radius: 30px; }
  .rewards-card { border-radius: 30px; padding: 26px 20px; }
  .reward-art { min-height: 250px; }
  .reward-chest { width: 170px; }
  .reward-coin { width: 94px; }
  .reward-gift, .reward-medal { width: 110px; }
  .final-cta { min-height: auto; padding: 78px 0 72px; }
  .final-art { min-height: 260px; }
  .final-pal { width: 42%; }
  .big-heart { font-size: 3.3rem; }
  .store-card { min-width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer-links > div:last-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 350px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .hero-facts span { display: none; }
  .hero-art { min-height: 390px; }
  .floating-pal { width: 82px; }
  .demo-row { grid-template-columns: 56px 1fr 48px 1fr 56px; }
  .demo-animal { width: 54px; }
  .meeting-node { width: 44px; height: 44px; }
  .pals-grid { grid-template-columns: 1fr 1fr; }
}

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