/*
 * Шаман. Палитра — та же, что в приложении (lib/features/shaman/shaman_theme.dart):
 * уголь, раскалённый янтарь, холодное северное сияние. Янтарь светится,
 * но не красит текст; сияние — второй голос: живые числа, «та сторона».
 * Главный предмет страницы — бубен, остальное молчит вокруг него.
 */
:root {
  --coal: #0B0A0C;
  --coal-deep: #050506;
  --coal-warm: #100C09;
  --panel: rgba(255, 255, 255, .045);
  --panel-solid: #141317;
  --line: rgba(255, 255, 255, .11);
  --ember: #FF6A18;
  --amber: #FFA033;
  --amber-soft: #FFCF8C;
  --dormant: #4A3626;
  --aurora: #4FE3C1;
  --aurora-pale: #A8F2DF;
  --aurora-deep: #1B6B5C;
  --violet: #3A2B6B;
  --bronze: #6A5240;
  --bronze-lit: #C39A6B;
  --bone: #F2ECE3;
  --bone-dim: #CFC6BA;
  --muted: #8F857A;
  --alert: #FF4E3A;

  --display: 'Forum', 'Cormorant Garamond', Georgia, serif;
  --text: 'Golos Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}
.lang-zh { --display: 'Noto Serif SC', 'Songti SC', serif; --text: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif; }
.lang-ar { --display: 'Amiri', serif; --text: 'Noto Sans Arabic', system-ui, sans-serif; }

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(58, 43, 107, .28), transparent 60%),
    radial-gradient(90% 50% at 50% 110%, rgba(255, 106, 24, .07), transparent 70%),
    linear-gradient(180deg, var(--coal) 0%, var(--coal-deep) 62%, var(--coal-warm) 100%);
  background-color: var(--coal);
  color: var(--bone);
  font: 400 17px/1.6 var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Зерно: без него длинный тёмный градиент расслаивается ступенями. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: url(/static/grain.png) repeat; background-size: 128px;
  opacity: .05; mix-blend-mode: overlay;
}
main, .top, .foot { position: relative; z-index: 1; }

a { color: inherit; }
img, svg { display: block; }
.wrap { width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: 540px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.centered { text-align: center; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--aurora); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(79, 227, 193, .3); }
.skip { position: absolute; inset-inline-start: 12px; top: -60px; z-index: 30; padding: 10px 16px;
  background: var(--panel-solid); border-radius: 8px; transition: top .2s; }
.skip:focus { top: 12px; }

h1, h2, h3, dt, summary, .amount, .brand span { font-family: var(--display); font-weight: 400; }
h1 { font-size: clamp(44px, min(7.2vw, 9vh), 88px); line-height: 1.02; letter-spacing: -.012em; }
h2 { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -.008em; }
h3 { font-size: 30px; line-height: 1.15; }
.sub { color: var(--bone-dim); font-size: 19px; max-width: 56ch; margin-top: 14px; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px; border-radius: 999px;
  font: 600 16px/1 var(--text); text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: box-shadow .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-fire {
  color: #1A0E05;
  background: radial-gradient(120% 160% at 50% 0%, var(--amber-soft) 0%, var(--amber) 42%, var(--ember) 100%);
  border-color: rgba(255, 207, 140, .6);
  box-shadow: 0 0 0 1px rgba(106, 82, 64, .6), 0 12px 40px -12px rgba(255, 106, 24, .7), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-fire:hover { box-shadow: 0 0 0 1px rgba(195, 154, 107, .8), 0 14px 56px -8px rgba(255, 106, 24, .85), inset 0 1px 0 rgba(255, 255, 255, .45); }
.btn-ghost { color: var(--bone); background: transparent; border-color: rgba(195, 154, 107, .45); }
.btn-ghost:hover { border-color: var(--bronze-lit); background: rgba(195, 154, 107, .08); }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 14.5px; }
button.btn { font-family: var(--text); }

/* ---------- шапка ---------- */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 10, 12, .72);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.top-in { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--bone); }
.brand span { font-size: 26px; line-height: 1; letter-spacing: .01em; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 15px; }
.nav > a { text-decoration: none; color: var(--bone-dim); transition: color .2s; }
.nav > a:hover { color: var(--bone); }
.nav-cab {
  padding: 9px 18px; border: 1px solid rgba(195, 154, 107, .45); border-radius: 999px;
  color: var(--bone) !important;
}
.nav-cab:hover { border-color: var(--bronze-lit); }
.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer; color: var(--bone-dim); display: flex; align-items: center; gap: 6px;
  font: 400 15px/1 var(--text);
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary::after { content: ""; width: 6px; height: 6px; border: solid currentColor; border-width: 0 1.5px 1.5px 0; transform: translateY(-2px) rotate(45deg); }
.lang[open] summary { color: var(--bone); }
.lang-menu {
  position: absolute; inset-inline-end: -12px; top: calc(100% + 14px); min-width: 170px;
  background: var(--panel-solid); border: 1px solid var(--line); border-radius: 14px; padding: 6px;
  box-shadow: 0 24px 60px -20px #000;
}
.lang-menu a { display: block; padding: 10px 14px; border-radius: 9px; text-decoration: none; color: var(--bone-dim); }
.lang-menu a:hover, .lang-menu a[aria-current] { background: rgba(255, 255, 255, .05); color: var(--bone); }

/* ---------- первый экран: бубен ---------- */
.hero {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(20px, 4vh, 48px) 0 clamp(72px, 10vw, 120px);
  text-align: center;
}
.aurora { position: absolute; inset: -10% -20% 0; pointer-events: none; z-index: 0; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: .16; transition: opacity 1.8s var(--ease);
}
.aurora i:nth-child(1) { width: 60vw; height: 30vw; left: 8%;  top: 2%;  background: var(--aurora-deep); }
.aurora i:nth-child(2) { width: 46vw; height: 26vw; right: 6%; top: 10%; background: var(--violet); }
.aurora i:nth-child(3) { width: 40vw; height: 18vw; left: 30%; top: 30%; background: var(--aurora); opacity: .05; }
.is-open .aurora i { opacity: .5; animation: drift 22s ease-in-out infinite alternate; }
.is-open .aurora i:nth-child(2) { animation-duration: 28s; animation-direction: alternate-reverse; }
.is-open .aurora i:nth-child(3) { opacity: .22; animation-duration: 17s; }
@keyframes drift {
  from { transform: translate3d(-4%, 0, 0) scale(1); }
  to   { transform: translate3d(5%, 3%, 0) scale(1.12); }
}
/* Тепло под бубном, когда он горит. */
.hero::after {
  content: ""; position: absolute; left: 50%; top: 34%; width: 760px; height: 520px; z-index: 0;
  transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 106, 24, .22), transparent);
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.is-open .hero::after { opacity: 1; }

.stage { position: relative; z-index: 1; width: min(560px, 88vw, 52vh); min-width: 280px; aspect-ratio: 1; }
.ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ring text {
  font: 400 14px var(--text); fill: var(--muted); opacity: .75;
  transition: fill 1.2s var(--ease), opacity 1.2s var(--ease);
}
.lang-zh .ring text, .lang-ar .ring text { font-size: 17px; }
.ring { transform-origin: 50% 50%; }
.is-open .ring { animation: turn 140s linear infinite; }
.is-open .ring text { fill: var(--amber-soft); opacity: .8; }
@keyframes turn { to { transform: rotate(360deg); } }

.drum {
  position: absolute; inset: 5.9%; border-radius: 50%;
  appearance: none; border: 0; background: none; padding: 0; cursor: pointer; color: inherit;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .75));
}
.drum:focus-visible { outline-offset: 8px; border-radius: 50%; }
.drum-svg { width: 100%; height: 100%; overflow: visible; transition: transform .14s var(--ease); transform-origin: 50% 50%; }
.drum.hit .drum-svg { transform: scale(.978); }

/* Огонь расходится от сердца к ободу: сердце, точки, узор, кольца. */
.drum-heart  { color: var(--dormant);     transition: color .7s var(--ease) 0s,   filter .7s 0s; }
.drum-dots   { color: var(--aurora-deep); transition: color .7s var(--ease) .12s, filter .7s .12s; }
.drum-mark   { color: #5A4430;            transition: color .8s var(--ease) .24s, filter .8s .24s; }
.drum-aurora { color: var(--aurora-deep); opacity: .7; transition: color .9s var(--ease) .4s, opacity .9s .4s; }
.drum-core   { opacity: 0; transition: opacity 1.1s var(--ease) .1s; }
.is-open .drum-heart  { color: var(--ember); filter: url(#glow); }
.is-open .drum-dots   { color: var(--aurora); }
.is-open .drum-mark   { color: var(--amber); filter: url(#glow); }
.is-open .drum-aurora { color: var(--aurora); opacity: 1; }
.is-open .drum-core   { opacity: 1; }
/* Когда проход закрывается, огонь уходит от обода к сердцу. */
.is-closing .drum-heart  { transition-delay: .4s; }
.is-closing .drum-mark   { transition-delay: .12s; }
.is-closing .drum-aurora { transition-delay: 0s; }

.rp { stroke: var(--amber-soft); stroke-width: 2; opacity: 0; vector-effect: non-scaling-stroke;
  transform-box: fill-box; transform-origin: center; transform: scale(.06); }
.drum.hit .rp1 { animation: ripple 1.15s var(--ease) forwards; }
.drum.hit .rp2 { animation: ripple 1.15s var(--ease) .16s forwards; }
@keyframes ripple {
  0%   { opacity: .9; transform: scale(.06); }
  100% { opacity: 0;  transform: scale(1); }
}

.drum-state {
  position: relative; z-index: 1; margin-top: 8px;
  display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--muted);
}
.lamp { width: 8px; height: 8px; border-radius: 50%; background: var(--dormant); transition: background .6s, box-shadow .6s; }
.is-open .lamp { background: var(--aurora); box-shadow: 0 0 12px 2px rgba(79, 227, 193, .6); }
.is-open .state-text { color: var(--aurora-pale); }
.hint { color: var(--bone-dim); transition: opacity .6s; }
.hint::before { content: ""; display: inline-block; width: 22px; height: 1px; background: var(--bronze); vertical-align: middle; margin-inline-end: 10px; }
.struck .hint { display: none; }

.hero-copy { position: relative; z-index: 1; margin-top: clamp(20px, 3.5vh, 40px); max-width: 820px; }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--bone-dim); max-width: 38ch; margin: 20px auto 0; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; justify-content: center; }

/* ---------- секции ---------- */
.worlds-sec, .virtues-sec, .app-sec, .faq-sec { padding-block: clamp(72px, 11vw, 140px) 0; }

/* Две стороны. */
.worlds { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; margin-top: 56px; align-items: stretch; }
.world { padding: 36px 34px 34px; border-radius: 28px; border: 1px solid var(--line); }
.world.here  { background: radial-gradient(120% 90% at 0% 100%, rgba(255, 106, 24, .10), transparent 60%), var(--panel); }
.world.there { background: radial-gradient(120% 90% at 100% 0%, rgba(79, 227, 193, .09), transparent 60%), var(--panel); }
.world h3 { font-size: 22px; color: var(--muted); font-family: var(--text); font-weight: 500; }
.names { list-style: none; margin: 22px 0 26px; }
.names li { font-family: var(--display); font-size: clamp(30px, 3.2vw, 40px); line-height: 1.18; }
.here .names li  { color: var(--bone); text-shadow: 0 0 28px rgba(255, 160, 51, .22); }
.there .names li { color: var(--aurora-pale); text-shadow: 0 0 28px rgba(79, 227, 193, .25); }
.world p { color: var(--bone-dim); max-width: 34ch; }
.seam { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-block: 8px; }
.seam-line { flex: 1; width: 1px; background: linear-gradient(180deg, transparent, var(--bronze-lit), transparent); opacity: .6; }
.seam-word { writing-mode: vertical-rl; font-size: 13px; letter-spacing: .3em; color: var(--muted); }
.lang-zh .seam-word { letter-spacing: .5em; }

/* За что платят. */
.virtues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 48px; margin-top: 56px; }
.virtue { border-top: 1px solid rgba(195, 154, 107, .3); padding-top: 24px; }
.virtue dt { font-size: 27px; line-height: 1.15; }
.virtue dd { margin-top: 12px; color: var(--bone-dim); max-width: 34ch; }

/* Тариф. */
.price-sec {
  margin-top: clamp(72px, 11vw, 140px); padding-block: clamp(72px, 10vw, 128px);
  text-align: center; position: relative;
  border-block: 1px solid rgba(195, 154, 107, .18);
  background: radial-gradient(60% 70% at 50% 60%, rgba(255, 106, 24, .08), transparent 70%);
}
.price-sec .sub { margin-inline: auto; }
.terms { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 56px auto 0; }
.term {
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 32px 36px; border-radius: 28px; border: 1px solid var(--line); background: var(--panel);
}
.term-year {
  border-color: rgba(195, 154, 107, .55);
  background: radial-gradient(100% 80% at 50% 0%, rgba(79, 227, 193, .08), transparent 65%), var(--panel);
  box-shadow: inset 0 0 0 1px rgba(195, 154, 107, .12), 0 30px 80px -40px rgba(79, 227, 193, .35);
}
.amount { font-size: clamp(56px, 8vw, 96px); line-height: 1; letter-spacing: -.01em; white-space: nowrap; }
.amount .num { font-variant-numeric: lining-nums; }
.term-year .amount .num { color: var(--aurora-pale); }
.per { color: var(--muted); margin-top: 10px; }
.note { color: var(--bone-dim); font-size: 15px; margin: 14px 0 26px; min-height: 1.6em; max-width: 30ch; }
.term .btn { width: 100%; margin-top: auto; }
.price-foot { color: var(--muted); max-width: 54ch; margin: 34px auto 0; }

/* Приложение. */
.platforms { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 44px 0 18px; }
.platform {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel);
  min-height: 78px;
}
.pf-name { font-family: var(--display); font-size: 25px; }
.pf-soon { color: var(--muted); font-size: 14px; }
.request { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 28px;
  margin-top: 26px; padding: 26px 28px; border-radius: 22px;
  border: 1px solid rgba(195, 154, 107, .35); background: rgba(195, 154, 107, .05); }
.request p { max-width: 52ch; color: var(--bone-dim); }

/* Вопросы. */
.faq { margin-top: 40px; max-width: 820px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; font-size: clamp(22px, 2.4vw, 27px); line-height: 1.25;
  padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  background: linear-gradient(var(--bronze-lit), var(--bronze-lit)) center / 100% 1.5px no-repeat,
              linear-gradient(var(--bronze-lit), var(--bronze-lit)) center / 1.5px 100% no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--bone-dim); padding-bottom: 26px; max-width: 62ch; }
.faq details a { color: var(--aurora-pale); }

/* ---------- подвал ---------- */
.foot { margin-top: clamp(96px, 12vw, 160px); border-top: 1px solid var(--line); padding: 56px 0 36px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; }
.foot-grid p { margin-top: 8px; }
.foot-grid a { color: var(--bone-dim); text-decoration: none; }
.foot-grid a:hover { color: var(--bone); }
.foot-h { font: 600 14px/1.4 var(--text); color: var(--bone); }
.pays { display: flex; flex-wrap: wrap; gap: 6px; }
.pays span { font-size: 12.5px; padding: 4px 9px; border: 1px solid var(--line); border-radius: 6px; color: var(--bone-dim); }
.foot-b { margin-top: 44px; }

/* ---------- кабинет и формы ---------- */
.page { padding-block: 64px 24px; }
.page-head { margin-bottom: 18px; }
.page-head h1 { font-size: clamp(40px, 6vw, 56px); }
.page-head .muted { margin-top: 8px; }
.page-head.centered .emblem { margin: 0 auto 18px; }
.emblem { filter: drop-shadow(0 0 18px rgba(255, 160, 51, .25)); }
.emblem.lit { filter: drop-shadow(0 0 26px rgba(255, 160, 51, .6)); }
.quiet { color: var(--aurora-pale); text-decoration: none; margin-inline-start: 10px; }
.quiet:hover { text-decoration: underline; }
.centered .quiet, p.centered > .quiet { margin: 0; }
.page .sub { font-size: 17px; margin: 0 auto 22px; }
.sec-h { font-size: 32px; margin: 44px 0 14px; }
.panel { background: var(--panel-solid); border: 1px solid var(--line); border-radius: 20px; padding: 20px 24px; margin: 16px 0; }
.panel h2 { font-size: 26px; margin-bottom: 6px; }
.row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }
.row .k { color: var(--muted); }
.row .v { text-align: end; }
.v.on { color: var(--aurora-pale); }
.v.off { color: var(--amber-soft); }
.keybox {
  margin-top: 12px; padding: 13px 16px; border-radius: 12px; background: var(--coal);
  border: 1px dashed rgba(195, 154, 107, .45); font: 500 15px/1.4 ui-monospace, 'SF Mono', Menlo, monospace;
  word-break: break-all; user-select: all; direction: ltr; text-align: start;
}
.form { display: grid; gap: 12px; margin: 10px auto 16px; max-width: 400px; }
.panel.form { max-width: none; margin: 0; }
.field {
  width: 100%; height: 54px; padding: 0 18px; border-radius: 14px;
  background: #0F0E11; border: 1px solid var(--line); color: var(--bone);
  font: 400 16px var(--text); transition: border-color .2s, box-shadow .2s;
}
.field::placeholder { color: #6E665E; }
.field:focus { outline: none; border-color: var(--aurora); box-shadow: 0 0 0 3px rgba(79, 227, 193, .15); }
.field.code { text-align: center; font: 400 30px var(--display); letter-spacing: .4em; }
.form .btn { width: 100%; }
.or { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 14px; margin: 34px 0 18px; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.msg { padding: 14px 18px; border-radius: 14px; margin: 0 0 18px; background: var(--panel-solid);
  border: 1px solid var(--line); border-inline-start: 3px solid var(--bronze-lit); color: var(--bone-dim); }
.msg.ok { border-inline-start-color: var(--aurora); color: var(--aurora-pale); }
.msg.err { border-inline-start-color: var(--alert); color: #FFB3A8; }
.msg a { color: var(--aurora-pale); }
.terms-compact { margin-top: 12px; gap: 14px; }
.terms-compact .term { padding: 28px 20px 22px; }
.terms-compact .amount { font-size: 44px; }
.terms-compact .per { margin-bottom: 20px; }

/* ---------- документы ---------- */
.doc { max-width: 780px; padding-block: 64px 24px; }
.doc h1 { font-size: clamp(38px, 5.4vw, 52px); margin-bottom: 10px; }
.doc h2 { font-size: 27px; margin: 38px 0 12px; }
.doc p, .doc li { color: var(--bone-dim); line-height: 1.7; margin-bottom: 12px; }
.doc ul { padding-inline-start: 22px; }
.doc a { color: var(--aurora-pale); }
.doc strong { color: var(--bone); font-weight: 600; }
.doc .upd { color: var(--muted); font-size: 15px; margin-bottom: 26px; }

/* ---------- узкие экраны ---------- */
@media (max-width: 960px) {
  .virtues { grid-template-columns: repeat(2, 1fr); }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .worlds { grid-template-columns: 1fr; gap: 18px; }
  .seam { flex-direction: row; padding: 0 12px; }
  .seam-line { height: 1px; width: auto; background: linear-gradient(90deg, transparent, var(--bronze-lit), transparent); }
  .seam-word { writing-mode: horizontal-tb; }
  .terms { grid-template-columns: 1fr; }
  .terms-compact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 16px; }
  .nav { gap: 16px; }
  .nav > a:not(.nav-cab) { display: none; }
  .virtues { grid-template-columns: 1fr; gap: 36px; }
  .platforms { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .world { padding: 28px 22px; }
  .term { padding: 36px 22px 26px; }
  .terms-compact { grid-template-columns: 1fr; }
  .ring text { font-size: 17px; }
  .hero-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .is-open .aurora i, .is-open .ring, .drum.hit .rp1, .drum.hit .rp2 { animation: none; }
  .drum.hit .drum-svg { transform: none; }
  *, *::before, *::after { transition-duration: .01ms !important; transition-delay: 0s !important; }
}
