/* ============================================================
   postbee ??? ????????????-?????????????? v2
   ???????????? ???????? (?????????????? ???? ??????????, ?????? ?? ?? MAX).
   ????????: ??????????????????-????????????????????. ????????????: ????????????-????????????????.
   ?????? ???????????? ?? Node: ???????????? CSS + ????????????????????.
   ============================================================ */

:root {
  /* ---------- ?????? ?? ?????????????????????? ---------- */
  --bg:            #0A0614;
  --bg-soft:       #100826;
  --bg-elev:       #170D2E;
  --bg-deep:       #060310;

  --surface:       rgba(255, 255, 255, 0.035);
  --surface-2:     rgba(255, 255, 255, 0.06);
  --surface-3:     rgba(255, 255, 255, 0.09);
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* ---------- ?????????? ---------- */
  --text:          #F6F2FF;
  --text-soft:     #CFC7E8;
  --text-muted:    #A196C4;
  --text-dim:      #7A719C;

  /* ---------- ???????????? ---------- */
  --accent:        #FFB020;
  --accent-bright: #FFC94D;
  --accent-deep:   #FF8A00;
  --accent-soft:   rgba(255, 176, 32, 0.13);
  --accent-text:   #1A1206;

  /* ---------- ???????????????????????????? ---------- */
  --violet:        #8358FF;
  --violet-deep:   #4A1FA8;
  --blue:          #3D8BFD;
  --pink:          #E85CFF;
  --success:       #34D399;
  --danger:        #FB7185;

  /* ---------- ?????????????????? ---------- */
  --grad-accent:  linear-gradient(135deg, #FFCE55 0%, #FF9500 100%);
  --grad-violet:  linear-gradient(135deg, #8358FF 0%, #4A1FA8 100%);
  --grad-hero:    linear-gradient(145deg, #4E22B0 0%, #2B1070 50%, #150A32 100%);
  --grad-glass:   linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
  --grad-text:    linear-gradient(100deg, #FFFFFF 10%, #FFC94D 50%, #FF8A00 90%);
  --grad-line:    linear-gradient(90deg, transparent, rgba(255,176,32,.5), transparent);

  /* ---------- ?????????????? ---------- */
  --r-xs: 10px; --r-sm: 14px; --r-md: 20px; --r-lg: 26px; --r-xl: 34px; --r-2xl: 44px; --r-full: 999px;

  /* ---------- ???????? ---------- */
  --sh-sm: 0 4px 16px rgba(0,0,0,.30);
  --sh-md: 0 14px 40px rgba(0,0,0,.40);
  --sh-lg: 0 30px 80px rgba(0,0,0,.55);
  --sh-clay: 0 22px 44px -12px rgba(0,0,0,.65), inset 0 2px 0 rgba(255,255,255,.35), inset 0 -14px 26px rgba(0,0,0,.28);
  --glow-accent: 0 16px 50px rgba(255,150,20,.32);
  --glow-violet: 0 26px 90px rgba(124,77,255,.38);

  /* ---------- ?????????????? ---------- */
  --sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px; --sp-5:24px; --sp-6:32px;
  --sp-7:48px; --sp-8:64px; --sp-9:96px; --sp-10:128px;

  /* ---------- ?????????????????????? ---------- */
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --fs-display: clamp(34px, 5.6vw, 68px);
  --fs-h1:      clamp(30px, 4.4vw, 52px);
  --fs-h2:      clamp(24px, 3.1vw, 40px);
  --fs-h3:      clamp(19px, 1.9vw, 24px);
  --fs-h4:      18px;
  --fs-lead:    clamp(16px, 1.35vw, 19px);
  --fs-body:    16px;
  --fs-sm:      14px;
  --fs-xs:      13px;

  --container: 1200px;
  --container-narrow: 860px;
}

/* ============================ ???????? ============================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: var(--accent-bright); text-decoration: none; transition: color .16s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  margin: 0 0 var(--sp-4);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--text);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
h4 { font-size: var(--fs-h4); line-height: 1.3; }
p  { margin: 0 0 var(--sp-4); color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong, b { color: var(--text-soft); font-weight: 650; }
small { font-size: var(--fs-sm); }

::selection { background: var(--accent); color: var(--accent-text); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--r-xs); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.container--narrow { max-width: var(--container-narrow); }

/* ====================== ???????????????????????? ???????? ===================== */

.bg-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .55;
  will-change: transform;
}
.orb--violet { background: var(--violet-deep); }
.orb--accent { background: rgba(255, 138, 0, .30); }
.orb--blue   { background: rgba(61, 139, 253, .26); }
.orb--pink   { background: rgba(232, 92, 255, .20); }

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

.bg-fade-top    { position: absolute; inset: 0 0 auto 0; height: 240px; background: linear-gradient(var(--bg-deep), transparent); }
.bg-fade-bottom { position: absolute; inset: auto 0 0 0; height: 240px; background: linear-gradient(transparent, var(--bg)); }

.hairline { height: 1px; background: var(--grad-line); border: 0; margin: 0; }

/* ======================== ?????????????????????? ======================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 750; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7;
}

.lead { font-size: var(--fs-lead); color: var(--text-soft); line-height: 1.6; }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ========================= ?????????????????? ======================== */

.section { position: relative; padding: var(--sp-9) 0; }
.section--tight { padding: var(--sp-8) 0; }
/* ???????????? ????????????: ???????????????? ???????? + ???????????? ????????????????, ?????????? ?????? ???? ?????? ???????????? */
.section--deep {
  background-color: var(--bg-soft);
  background-image:
    radial-gradient(ellipse 55% 45% at 12% 0%, rgba(131, 88, 255, .13), transparent 62%),
    radial-gradient(ellipse 48% 40% at 88% 100%, rgba(255, 176, 32, .09), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='170' viewBox='0 0 320 170'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath stroke-opacity='.055' d='M0 62C53 22 107 22 160 62s107 40 160 0'/%3E%3Cpath stroke-opacity='.04' d='M0 112C53 72 107 72 160 112s107 40 160 0'/%3E%3Cpath stroke-opacity='.03' d='M0 12C53 -28 107 -28 160 12s107 40 160 0'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, 320px 170px;
}
.section > .container { position: relative; z-index: 1; }

.section-head { max-width: 760px; margin: 0 auto var(--sp-7); text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head p { font-size: var(--fs-lead); color: var(--text-muted); }
.section-head h2 { margin-bottom: var(--sp-4); }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid--gap-lg { gap: var(--sp-6); }
.row { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: var(--sp-4); }
.center { text-align: center; }

/* ========================== ???????????? ========================== */

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-family: inherit; font-size: 15px; font-weight: 650; line-height: 1;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }

.btn--primary { background: var(--grad-accent); color: var(--accent-text); box-shadow: var(--glow-accent); }
.btn--primary:hover { box-shadow: 0 22px 60px rgba(255,150,20,.45); color: var(--accent-text); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  opacity: 0; transition: opacity .3s ease;
  background-size: 220% 100%;
}
.btn--primary:hover::after { opacity: .35; animation: shine 1.1s ease; }
@keyframes shine { from { background-position: 180% 0; } to { background-position: -60% 0; } }

.btn--ghost {
  background: var(--surface-2); border-color: var(--border-strong); color: var(--text);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--surface-3); border-color: rgba(255,255,255,.26); color: var(--text); }

.btn--link { padding: 0; color: var(--accent-bright); background: none; }
.btn--link:hover { transform: none; text-decoration: underline; }

.btn--lg { padding: 18px 38px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

.btn svg { width: 18px; height: 18px; }

/* ========================== ???????????? ========================== */

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: var(--r-full);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  font-size: var(--fs-xs); font-weight: 650; color: var(--text-soft);
}
.badge--accent { background: var(--accent-soft); border-color: rgba(255,176,32,.32); color: var(--accent-bright); }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,176,32,.16); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--border);
  font-size: var(--fs-sm); color: var(--text-soft);
}
.pill svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }

/* =============== ???????????????????? ???????????????? (???????????? 3D) ============ */

.clay {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 24px;
  background: var(--grad-violet);
  box-shadow: var(--sh-clay);
  display: grid; place-items: center;
  color: #fff;
  isolation: isolate;
}
.clay::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 90% at 30% 12%, rgba(255,255,255,.55), transparent 55%);
  opacity: .5; z-index: -1;
}
.clay svg { width: 40%; height: 40%; filter: drop-shadow(0 3px 6px rgba(0,0,0,.35)); }
.clay--accent { background: var(--grad-accent); color: var(--accent-text); }
.clay--blue   { background: linear-gradient(135deg, #4FA3FF 0%, #2B5CE0 100%); }
.clay--pink   { background: linear-gradient(135deg, #FF7AD9 0%, #A22BD8 100%); }
.clay--sm { width: 58px; height: 58px; border-radius: 18px; }
.clay--lg { width: 112px; height: 112px; border-radius: 32px; }
.clay--float { animation: float 7s ease-in-out infinite; }
.clay--tilt-l { transform: rotate(-8deg); }
.clay--tilt-r { transform: rotate(8deg); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--tilt, 0deg)); }
}

/* ???????????????????? ???? ???????????????????? ???????????????????? ???????????? */
.cluster { position: relative; min-height: 420px; }
.cluster .clay { position: absolute; }
.cluster .clay:nth-child(1) { top: 8%;  left: 6%;  --tilt: -8deg; animation-delay: 0s; }
.cluster .clay:nth-child(2) { top: 30%; right: 4%; --tilt: 9deg;  animation-delay: .8s; }
.cluster .clay:nth-child(3) { top: 58%; left: 16%; --tilt: 5deg;  animation-delay: 1.6s; }
.cluster .clay:nth-child(4) { top: 4%;  right: 26%; --tilt: -4deg; animation-delay: 2.2s; }
.cluster .clay:nth-child(5) { top: 66%; right: 14%; --tilt: -10deg; animation-delay: 1.1s; }

/* ?????????????????????? ???????????????????????? ?????????? ?????? ?????????????? */
.glass-slab {
  position: relative;
  background: var(--grad-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-md);
}

/* ========================= ???????????????? ========================= */

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s ease, background .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px 200px at 50% -20%, rgba(255,176,32,.10), transparent 70%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); background: var(--surface-2); box-shadow: var(--sh-md); }
.card:hover::after { opacity: 1; }
.card--glass { background: var(--grad-glass); backdrop-filter: blur(14px); }
.card--accent { border-color: rgba(255,176,32,.30); }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: 15px; }
.card__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: var(--sp-4);
  background: var(--accent-soft); color: var(--accent-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.card__icon svg { width: 26px; height: 26px; }

.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--sp-4); font-size: var(--fs-sm); font-weight: 650;
  color: var(--accent-bright); transition: gap .2s ease;
}
.card__link:hover { gap: 11px; }

/* ================== ???????????????? ?????????????????????? (SVG) ============== */

.ill { width: 100%; max-width: 190px; height: auto; }
.ill--md { max-width: 260px; }
.ill--lg { max-width: 380px; }
.ill--xl { max-width: 460px; }

.card__art { margin-bottom: var(--sp-5); }
.card__art .ill { max-width: 150px; }

/* ============== ???????????????? 3D-???????????? (Fluent Emoji 3D) ============== */

.ill3d {
  width: 100%; height: auto;
  max-width: 76px;
  filter: drop-shadow(0 14px 20px rgba(6, 3, 16, .55));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  will-change: transform;
}
.ill3d--sm { max-width: 54px; }
.ill3d--tile { display: block; }
.ill3d--tile .app3d { display: block; width: 100%; height: auto; }
.ill3d--md { max-width: 76px; }
.ill3d--lg { max-width: 132px; }
.ill3d--xl { max-width: 230px; }
.ill3d--hero { max-width: 330px; animation: floatIcon 8s ease-in-out infinite; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-16px) rotate(3deg); }
}

/* ?????????????????? ???? ???????????????? ??? ???????????? ???????????????????????????? */
.card:hover .ill3d { transform: translateY(-6px) scale(1.07) rotate(-3deg); filter: drop-shadow(0 22px 30px rgba(6,3,16,.6)); }
.step:hover .ill3d { transform: translateY(-4px) scale(1.05); }

.card__art .ill3d { max-width: 118px; margin: 0 auto; }
.card__art { display: flex; justify-content: center; }

.step__icon { flex: 0 0 auto; width: 56px; margin-top: -6px; }
.step__icon .ill3d { max-width: 56px; }

.hero__art .ill3d, .page-hero__art .ill3d { max-width: 330px; }
.cta-band__art .ill3d { max-width: 300px; animation: floatIcon 9s ease-in-out infinite; }

/* ==================================================================
   ??????????: ?????????????? ???????????? ???????????????????? + ?????????????????? 3D-??????????????
   ?????? ?? em ??? ???????????????????????????? ?????????? ?????????????? ??????????????.
   ================================================================== */

.sc { position: relative; width: 100%; margin: 0 auto; font-size: 13px; }
.sc--sm   { font-size: 10px;   max-width: 300px; }
.sc--md   { font-size: 11.5px; max-width: 360px; }
.sc--lg   { font-size: 13px;   max-width: 420px; }
.sc--xl   { font-size: 15px;   max-width: 490px; }
.sc--hero { font-size: 16px;   max-width: 570px; }

/* ?????????????????? ???????????? ???????? ???? ???????????????? ??? ???????????? ???????? ???????????? ???????????? */
.hero__art::after, .page-hero__art::after, .cta-band__art::after { display: none; }

.sc__glow {
  position: absolute; inset: -8% -6%; z-index: 0; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
  background: radial-gradient(circle at 42% 42%,
    rgba(131,88,255,.55), rgba(255,138,0,.20) 55%, transparent 76%);
}

.sc__panel {
  position: relative; z-index: 1;
  border-radius: 2.1em; padding: 1.5em 1.5em 1.4em;
  background: linear-gradient(180deg, #FFFFFF 0%, #EFEAFF 100%);
  box-shadow:
    0 2.2em 3.2em rgba(16,5,50,.55),
    0 .4em .9em rgba(16,5,50,.28),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.sc__gloss {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(148deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 52%);
  opacity: .5;
}

.sc__head { display: flex; align-items: center; gap: .9em; }
.sc__avatar {
  width: 2.6em; height: 2.6em; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(140deg, #FFD36B, #FF8A00);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.7), 0 .3em .6em rgba(20,6,60,.25);
}

.sc__bars { display: flex; flex-direction: column; gap: .48em; flex: 1 1 auto; min-width: 0; }
.sc__bars--wide { gap: .72em; margin-top: 1.2em; }
.sc__bar {
  display: block; height: .62em; border-radius: .4em; background: #DCD6EE;
}
.sc__bar--sm    { height: .46em; opacity: .8; }
.sc__bar--title { height: .82em; background: #8358FF; }
.sc__bar--accent{ background: #FF8A00; }
.sc__bar--chip  { background: rgba(255,138,0,.28); }
.sc__bar--ghost { background: rgba(131,88,255,.20); }
.sc__bar--violet{ background: #8358FF; }
.sc__bar--blue  { background: #3D8BFD; }
.sc__bar--honey { background: #FF8A00; }

.sc__dots { display: flex; gap: .38em; flex: 0 0 auto; }
.sc__dots i { width: .5em; height: .5em; border-radius: 50%; background: #DCD6EE; display: block; }
.sc__dots i:first-child { background: #FF8A00; }
.sc__dots--win { margin-right: .6em; }

/* ???????????????? ???????????????????? ???????????? ???????????? */
.sc__card {
  display: flex; gap: 1em; align-items: flex-start;
  margin-top: 1.3em; padding: 1em;
  background: #fff; border-radius: 1.4em;
  box-shadow: 0 .8em 1.6em rgba(20,6,60,.18), inset 0 1px 0 rgba(255,255,255,1);
}
.sc__thumb {
  flex: 0 0 auto; width: 5.4em; height: 5.4em;
  border-radius: 1.2em; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(140deg, #9A7BFF, #A82BD8);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.35);
}
.sc__thumb img { width: 3.4em; height: auto; filter: drop-shadow(0 .35em .5em rgba(10,3,30,.45)); }
.sc__lines { display: flex; flex-direction: column; gap: .5em; flex: 1 1 auto; min-width: 0; padding-top: .2em; }

.sc__foot { display: flex; align-items: center; gap: .8em; margin-top: 1.3em; }
.sc__foot--center { justify-content: center; }

/* ????????????-???????????????????? (???????????????? 3D-?????????????? ????????????????) */
.sc__appimg {
  display: block; flex: 0 0 auto;
  width: 3.4em; height: 3.4em; object-fit: contain;
  filter: drop-shadow(0 .55em .95em rgba(16,5,50,.45));
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.sc__appimg--sm { width: 2.9em; height: 2.9em; }
.card:hover .sc__appimg { transform: translateY(-.15em); }

/* ???????????????????????? 3D-???????????????? ?? ??????????: ?????????????? ?????????? + ???????????? ??????????,
   ?????? ???????????? ???????????????? ?????? ?????????????????? ???????????????? */
.sc--hero .sc__obj--a { left: -1.6em; bottom: 2.8em; width: 4.6em; }
.sc--hero .sc__obj--b { right: 9em;   top: -1.9em;   width: 3.4em; }
.sc--hero .sc__obj--c { right: -1.2em; top: -1.5em;  width: 3em; }
.sc--hero .sc__obj--d { left: 2.2em;  top: -2.1em;   width: 3em; }
.sc__app3d {
  display: block; flex: 0 0 auto; width: 3.4em;
  filter: drop-shadow(0 .55em .95em rgba(16,5,50,.45));
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.sc__app3d .app3d { display: block; width: 100%; height: auto; }
.sc__app3d--sm { width: 2.9em; }
.card:hover .sc__app3d { transform: translateY(-.15em); }

/* ????????????-???????????????????? (???????????? ??????????????, ???????????????? ?????? ??????????????????????????) */
.sc__app {
  width: 3.3em; height: 3.3em; border-radius: 1.05em; flex: 0 0 auto;
  display: grid; place-items: center;
  box-shadow: 0 .6em 1.1em rgba(16,5,50,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.sc__app svg { width: 62%; height: 62%; }
.sc__app--tg  { background: linear-gradient(140deg, #8FD8FF, #2AABEE); }
.sc__app--max { background: linear-gradient(140deg, #A98BFF, #5B2BC4); }
.sc__app--vk  { background: linear-gradient(140deg, #7FB8FF, #2B6BE0); }
.sc__app--sm  { width: 2.8em; height: 2.8em; border-radius: .9em; }

/* ?????????????????????????? ???????????????????? */
.sc__toggle {
  position: relative; width: 4.6em; height: 2.3em; border-radius: 1.15em;
  margin-left: auto; flex: 0 0 auto;
  background: linear-gradient(140deg, #FFD36B, #FF8A00);
  box-shadow: inset 0 2px 4px rgba(255,255,255,.6), 0 .4em .9em rgba(255,138,0,.45);
}
.sc__toggle i {
  position: absolute; top: .3em; right: .3em;
  width: 1.7em; height: 1.7em; border-radius: 50%; background: #fff;
  box-shadow: 0 .2em .4em rgba(20,6,60,.3);
}

/* ????????????-?????????????? */
.sc__pill {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: .6em; width: fit-content;
  margin: 1.1em auto -.4em; padding: .7em 1.3em;
  border-radius: 2em; background: #fff; color: #1A1030;
  font-size: 1em; font-weight: 700; white-space: nowrap;
  box-shadow: 0 1.1em 1.8em rgba(16,5,50,.45), inset 0 1px 0 rgba(255,255,255,1);
}
.sc__dot { width: .68em; height: .68em; border-radius: 50%; background: #DCD6EE; flex: 0 0 auto; }
.sc__dot--ok     { background: #12A87A; }
.sc__dot--honey  { background: #FF8A00; }
.sc__dot--violet { background: #8358FF; }

/* 3D-?????????????? */
.sc__obj {
  position: absolute; z-index: 2; height: auto;
  filter: drop-shadow(0 1em 1.3em rgba(10,3,30,.6));
  animation: floatIcon 9s ease-in-out infinite;
}
.sc__obj--a { left: -1.2em;  bottom: .5em;  width: 4.8em; animation-delay: 0s; }
.sc__obj--b { right: -1em;   bottom: 1.5em; width: 3.6em; animation-delay: 1.1s; }
.sc__obj--c { right: 2.5em;  top: -1.4em;   width: 3.1em; animation-delay: 2.1s; }
.sc__obj--d { left: 1.5em;   top: -1.8em;   width: 3em;   animation-delay: 2.9s; }

/* ?????????????? ???????????????????? */
.sc__windowbar { display: flex; align-items: center; }
.sc__rows { list-style: none; margin: 1.1em 0 0; padding: 0; display: flex; flex-direction: column; gap: .8em; }
.sc__rows li {
  display: flex; align-items: center; gap: .9em;
  padding: .8em 1em; background: #fff; border-radius: 1.2em;
  box-shadow: 0 .7em 1.4em rgba(20,6,60,.16);
}
.sc__mini { width: 2.8em; height: 2.8em; flex: 0 0 auto; filter: drop-shadow(0 .3em .4em rgba(10,3,30,.4)); }
.sc__mini--lg { width: 3.4em; height: 3.4em; }

/* ?????????????? */
.sc__pair { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .8em; position: relative; z-index: 1; }
.sc__panel--half { padding: 1.1em 1.1em 1.2em; border-radius: 1.7em; }
.sc__title {
  display: inline-block; padding: .4em .9em; border-radius: 1em;
  font-size: .95em; font-weight: 800; color: #fff;
}
.sc__title--tg  { background: linear-gradient(140deg, #8FD8FF, #2AABEE); }
.sc__title--max { background: linear-gradient(140deg, #FFD36B, #FF8A00); color: #2A1A00; }
.sc__arrow {
  width: 3em; height: 3em; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, #FFD36B, #FF8A00); color: #fff;
  box-shadow: 0 .7em 1.3em rgba(255,138,0,.45);
}
.sc__arrow svg { width: 1.6em; height: 1.6em; }

/* ????: ???? ?? ?????????? */
.sc__split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1em; align-items: start; }
.sc__side { display: flex; flex-direction: column; gap: .62em; }
.sc__divide { width: 1px; align-self: stretch; background: repeating-linear-gradient(180deg, #DCD6EE 0 6px, transparent 6px 14px); }

/* ??????????????????: ?????????????? */
.sc__bars-chart {
  display: flex; align-items: flex-end; gap: .8em; height: 9em; margin-top: 1.4em;
}
.sc__col { flex: 1 1 0; display: flex; align-items: flex-end; }
.sc__col i {
  display: block; width: 100%; height: 100%; border-radius: .7em .7em .35em .35em;
  background: linear-gradient(180deg, #A98BFF, #6A3BD8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.sc__col i.is-last { background: linear-gradient(180deg, #FFD36B, #FF8A00); }

/* ??????????????????: ???????????? ???????????????? */
.sc__stack { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .8em; }
.sc__panel--row {
  display: flex; align-items: center; gap: 1em;
  padding: 1em 1.2em; border-radius: 1.5em;
  margin-left: calc(var(--i) * .6em);
}
.sc__panel--row .sc__bars { gap: .6em; }

@media (max-width: 680px) {
  .sc { font-size: 11px !important; }
  .sc__obj--c, .sc__obj--d { display: none; }
  .sc__pill { font-size: .92em; }
}

.scene { width: 100%; height: auto; display: block; position: relative; z-index: 1; filter: saturate(1.16) contrast(1.03); }

/* ???????????????? ???????????? ?????????? ??? ???????? ?????????? ?? ?????????????????? ?????? */
.hero__art, .page-hero__art, .cta-band__art { position: relative; }
.hero__art::before, .page-hero__art::before, .cta-band__art::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 78%; height: 78%; transform: translate(-50%, -50%);
  border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 40% 40%, rgba(131,88,255,.60), rgba(255,176,32,.22) 55%, transparent 76%);
}

/* ???????????????????????? ?????????? ???????????? ?????????? ??? ???????????????? */
.hero__art::after, .page-hero__art::after, .cta-band__art::after {
  content: ""; position: absolute; inset: 4% 2%; z-index: 2; pointer-events: none;
  border-radius: var(--r-2xl);
  background: linear-gradient(122deg,
      rgba(255,255,255,.30) 0%, rgba(255,255,255,0) 30%,
      rgba(255,255,255,0) 62%, rgba(255,255,255,.18) 100%);
  mix-blend-mode: soft-light;
}
.scene--sm  { max-width: 260px; }
.scene--md  { max-width: 340px; }
.scene--lg  { max-width: 420px; }
.scene--xl  { max-width: 500px; }
.scene--hero { max-width: 560px; animation: floatIcon 10s ease-in-out infinite; }

.hero__art .scene { max-width: 560px; }
.page-hero__art .scene { max-width: 440px; animation: floatIcon 11s ease-in-out infinite; }
.cta-band__art .scene { max-width: 380px; animation: floatIcon 12s ease-in-out infinite; }
.card__art .scene { max-width: 100%; }

/* ?????????????? ???? ???????????????????? 3D-???????????? ?? ?????????? */
.art-cluster {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--sp-5);
  justify-content: center;
  align-items: center;
}
.art-cluster .ill3d { animation: floatIcon 9s ease-in-out infinite; }
.art-cluster .ill3d:nth-child(2) { animation-delay: 1.2s; }
.art-cluster .ill3d:nth-child(3) { animation-delay: 2.4s; }
.art-cluster .ill3d:nth-child(4) { animation-delay: 3.1s; }

.hero__art { position: relative; display: grid; place-items: center; padding: var(--sp-5) 0; }
.hero__art .ill { max-width: 440px; }
.hero__art .float-card { left: 0; right: auto; bottom: 0; }
.hero__art .float-card__value { font-size: 24px; }

.page-hero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-8); align-items: center;
}
.page-hero__art { display: grid; place-items: center; }
.page-hero__art .ill { max-width: 340px; }

.cta-band__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: var(--sp-7); align-items: center; text-align: left;
}
.cta-band__inner h2 { margin-left: 0; max-width: 620px; }
.cta-band__inner p { margin-left: 0; }
.cta-band__inner .row { justify-content: flex-start; }
.cta-band__art { display: grid; place-items: center; }
.cta-band__art .ill { max-width: 320px; }

.card--clay { padding-top: var(--sp-5); text-align: center; }
.card--clay .clay { margin-bottom: var(--sp-5); }

/* ========================== ???????? =========================== */

.steps { display: grid; gap: var(--sp-5); counter-reset: step; }
.step {
  position: relative;
  display: flex; gap: var(--sp-5);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-6);
}
.step__num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid rgba(255,176,32,.34);
  color: var(--accent-bright); font-weight: 800; font-size: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { margin: 0; font-size: 15px; }

/* ====================== ?????????????? ?????????????????? =================== */

/* ---------------- ??????????????????: ???????????????? ?????????????? + ?????????? ???????? ---------------- */

.compare-wrap { position: relative; overflow: visible; border-radius: var(--r-xl); }

/* ?????????????? ???????? ???? ???????????? ?????????? */
.compare-wrap::before {
  content: ""; position: absolute; inset: -110px -140px; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(118deg,
      rgba(255,255,255,.06) 0 1px, transparent 1px 30px);
  -webkit-mask-image: radial-gradient(ellipse 72% 82% at 50% 50%, #000 24%, transparent 72%);
  mask-image: radial-gradient(ellipse 72% 82% at 50% 50%, #000 24%, transparent 72%);
}
/* ?????????????? ???????????????? ???? ?????????? */
.compare-wrap::after {
  content: ""; position: absolute; inset: -130px -90px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(131,88,255,.26), transparent 55%),
    radial-gradient(circle at 84% 82%, rgba(255,176,32,.18), transparent 58%);
  filter: blur(18px);
}

.compare {
  position: relative; z-index: 1;
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--border-strong); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 34px 80px rgba(4,2,10,.55), inset 0 1px 0 rgba(255,255,255,.06);
}
.compare th, .compare td {
  padding: var(--sp-5) var(--sp-6); text-align: left; font-size: 15.5px;
  line-height: 1.5; border-bottom: 1px solid var(--border); vertical-align: middle;
}
.compare thead th {
  font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); background: rgba(255,255,255,.04); font-weight: 750;
  padding-top: var(--sp-5); padding-bottom: var(--sp-5);
}
.compare thead th:first-child::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-dim); margin-right: 10px; vertical-align: 1px;
}
.compare thead th:last-child {
  color: var(--accent-bright);
  background: linear-gradient(180deg, rgba(255,176,32,.10), rgba(255,176,32,.02));
  box-shadow: inset 0 0 0 1px rgba(255,176,32,.18);
}
.compare thead th:last-child::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px rgba(255,176,32,.9);
  margin-right: 10px; vertical-align: 1px;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr { transition: background .18s ease; }
.compare tbody tr:hover td { background: rgba(255,255,255,.035); }
.compare tbody tr:hover td:last-child { background: rgba(131,88,255,.14); }

/* ?????????? ??? ???????? ??????????????: ??????????????????????, ?? ?????????????????? */
.compare td:first-child { color: var(--text-dim); }
.compare td:first-child::before {
  content: "???"; color: #5F5880; margin-right: 12px; font-weight: 700;
}
/* ???????????? ??? postbee: ????????, ?? ?????????????? ???????????????? ?? ?????????? */
.compare td:last-child {
  color: var(--text); font-weight: 550;
  background: rgba(131,88,255,.07);
  box-shadow: inset 0 0 0 1px rgba(131,88,255,.10);
}
.compare .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 21px; height: 21px; border-radius: 50%; margin-right: 12px;
  vertical-align: -4px; font-size: 0;
  background: linear-gradient(140deg, #6EE7B7, #12A87A);
  box-shadow: 0 4px 10px rgba(18,168,122,.45);
}
.compare .mark::before { content: "???"; font-size: 12px; font-weight: 800; color: #fff; }

/* --- ?????????????????? ?? ???????????????????? ?????????????????? ??????????????????: ???????????? = ???????????????? --- */
@media (max-width: 780px) {
  .compare-wrap { overflow-x: visible; }
  .compare-wrap::before, .compare-wrap::after { display: none; }

  .compare {
    display: block; min-width: 0; width: 100%;
    background: none; border: 0; box-shadow: none; backdrop-filter: none; border-radius: 0;
  }
  .compare thead { display: none; }
  .compare tbody, .compare tr, .compare td { display: block; width: 100%; }

  .compare tr {
    margin-bottom: var(--sp-4);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    box-shadow: 0 18px 40px rgba(4,2,10,.40);
  }
  .compare td {
    border-bottom: 1px solid var(--border);
    padding: var(--sp-4) var(--sp-5);
    font-size: 15px;
  }
  .compare td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .compare td:first-child::before { content: attr(data-label); color: var(--text-dim); }
  .compare td:last-child { border-bottom: 0; background: rgba(131,88,255,.12); }
  .compare td:last-child::before { content: attr(data-label); color: var(--accent-bright); }
  .compare tbody tr:hover td { background: none; }
  .compare tbody tr:hover td:last-child { background: rgba(131,88,255,.16); }
}

/* --- ????????????????: ???????? ?????????????? --- */
@media (max-width: 1024px) and (min-width: 781px) {
  .compare th, .compare td { padding: var(--sp-4) var(--sp-5); font-size: 15px; }
  .compare { min-width: 0; }
  .compare-wrap { overflow-x: visible; }
}

/* --- ???????????????? --- */
@media (max-width: 480px) {
  .compare td { padding: 14px var(--sp-4); font-size: 14.5px; }
  .compare .mark { width: 19px; height: 19px; margin-right: 9px; }
  .compare td:first-child::before { margin-bottom: 6px; }
}

/* ========================= ???????????? ========================== */

.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checks li { display: flex; gap: 11px; font-size: 15px; color: var(--text-muted); }
.checks li svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--accent); margin-top: 3px; }

.prose { max-width: 720px; }
.prose h2 { margin-top: var(--sp-8); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--sp-6); }
.prose ul { margin: 0 0 var(--sp-5); padding-left: 22px; color: var(--text-muted); }
.prose li { margin-bottom: 9px; }
.prose a { text-decoration: underline; text-decoration-color: rgba(255,176,32,.4); }

/* ========================= ???????????? ========================== */

.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.price:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.price--featured {
  border-color: rgba(255,176,32,.42); background: var(--grad-glass);
  box-shadow: var(--glow-accent); transform: translateY(-6px);
}
.price--featured:hover { transform: translateY(-10px); }
.price__flag {
  position: absolute; top: -14px; left: var(--sp-6);
  background: var(--grad-accent); color: var(--accent-text);
  font-size: 12px; font-weight: 800; padding: 6px 15px; border-radius: var(--r-full);
}
.price__name { font-size: var(--fs-sm); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--sp-4); }
.price__value { font-size: clamp(32px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; color: var(--text); }
.price__value small { font-size: 15px; font-weight: 600; color: var(--text-dim); letter-spacing: 0; }
.price__desc { font-size: var(--fs-sm); color: var(--text-dim); margin: var(--sp-3) 0 var(--sp-5); }
.price .checks { margin-bottom: var(--sp-6); }
.price .btn { margin-top: auto; }

/* =========================== FAQ =========================== */

.faq { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-5) var(--sp-6);
  transition: border-color .2s ease, background .2s ease;
}
.faq details:hover { border-color: var(--border-strong); }
.faq details[open] { border-color: rgba(255,176,32,.28); background: var(--surface-2); }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 620; font-size: 16.5px; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC94D' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center/15px no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { margin: var(--sp-4) 0 0; font-size: 15px; color: var(--text-muted); }

/* ========================== ???????????? ========================== */

.stats-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--sp-5); }
.stat-big { text-align: center; }
.stat-big__value { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-big__label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 10px; }

.quote {
  border-left: 2px solid var(--accent);
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-5);
  font-size: 17px; color: var(--text-soft); font-style: italic;
}

.breadcrumbs { display: flex; gap: 9px; align-items: center; font-size: var(--fs-xs); color: var(--text-dim); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--accent-bright); }
.breadcrumbs span { opacity: .5; }

.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-9) var(--sp-8);
  text-align: center;
  box-shadow: var(--sh-lg), var(--glow-violet);
}
.cta-band h2 { max-width: 720px; margin: 0 auto var(--sp-4); }
.cta-band p { max-width: 560px; margin: 0 auto var(--sp-6); font-size: var(--fs-lead); color: var(--text-soft); }
.cta-band .row { justify-content: center; }

/* ========================== ?????????? ========================== */

/* ?????????????????? ???????????? ?????????????????? ??? ?????? ?? MAX: ?????????????????????? ?????????????????? ?? ???????????????? ???? ???????? */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 20px 0 12px;
  background: transparent;
  border: 0;
  transition: padding .25s ease;
}
.site-header.is-scrolled { padding-top: 12px; }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px 0 24px;
  border-radius: var(--r-full);
  background: linear-gradient(180deg, rgba(30,18,56,.90), rgba(16,9,34,.90));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 22px 50px rgba(4,2,10,.55),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -10px 24px rgba(0,0,0,.25);
}
.site-header.is-scrolled .site-header__inner {
  background: linear-gradient(180deg, rgba(30,18,56,.94), rgba(14,8,30,.94));
  border-color: rgba(255,255,255,.14);
}

/* ======================= ?????????????? (????????????????????) ====================== */

.logo {
  display: inline-flex; align-items: flex-start; gap: 1px;
  font-weight: 800; font-size: 23px; line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo span { display: inline-flex; align-items: flex-start; }
.logo b {
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ????????????-????????????: ?????????????????? ???????????????????? ?????????? */
.logo span::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,176,32,.85);
  margin: 3px 0 0 5px;
  flex: 0 0 auto;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 13px; border-radius: var(--r-full);
  color: var(--text-muted); font-size: 14.5px; font-weight: 520;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.is-active { color: var(--accent-bright); background: var(--accent-soft); }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }

.burger { display: none; width: 42px; height: 42px; border-radius: var(--r-xs); border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--text); cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 20px; height: 20px; }

/* ========================= ???????????? ========================== */

.site-footer { position: relative; border-top: 1px solid var(--border); padding: var(--sp-9) 0 var(--sp-6); margin-top: var(--sp-9); background: var(--bg-deep); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--sp-7); padding-bottom: var(--sp-7); border-bottom: 1px solid var(--border); }
.site-footer h4 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: var(--sp-4); font-weight: 700; }
.site-footer a { display: block; color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 11px; }
.site-footer a:hover { color: var(--accent-bright); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: var(--sp-5); padding-top: var(--sp-5); font-size: var(--fs-xs); color: var(--text-dim); flex-wrap: wrap; }

/* ======================== ???????????????? ========================= */

.fade-up { animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) both; }
.fade-up--d1 { animation-delay: .08s; }
.fade-up--d2 { animation-delay: .16s; }
.fade-up--d3 { animation-delay: .24s; }
.fade-up--d4 { animation-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ?????????????????? ?????? ??????????????????: ???????????????? ?? Chrome ?????? JS, ?? ?????????????????? ??? ?????????? ?????????? */
@supports (animation-timeline: view()) {
  .reveal {
    animation: revealIn linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 32%;
  }
  @keyframes revealIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
}

.pulse-ring { position: relative; }
.pulse-ring::before {
  content: ""; position: absolute; inset: -10px; border-radius: inherit;
  border: 1px solid rgba(255,176,32,.35);
  animation: pulseRing 3s ease-out infinite;
}
@keyframes pulseRing { 0% { opacity: .7; transform: scale(.94); } 70% { opacity: 0; transform: scale(1.12); } 100% { opacity: 0; } }

/* ====================== ?????????????? (??????????????) ================== */

.app { display: grid; grid-template-columns: 268px 1fr; min-height: 100vh; }
.app__sidebar {
  background: var(--bg-soft); border-right: 1px solid var(--border);
  padding: var(--sp-5) var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-6);
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.app__main { display: flex; flex-direction: column; min-width: 0; }
.app__topbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6); border-bottom: 1px solid var(--border);
  background: rgba(10,6,20,.72); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 20;
}
.app__topbar h1 { font-size: 21px; margin: 0; }
.app__content { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-6); }

.side-nav { display: flex; flex-direction: column; gap: 3px; }
.side-nav__label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); font-weight: 750; padding: var(--sp-4) var(--sp-3) 7px; }
.side-nav a {
  display: flex; align-items: center; gap: 12px; padding: 10px var(--sp-3);
  border-radius: var(--r-xs); color: var(--text-muted); font-size: 15px; font-weight: 520;
  transition: background .15s ease, color .15s ease;
}
.side-nav a:hover { background: var(--surface-2); color: var(--text); }
.side-nav a.is-active { background: var(--accent-soft); color: var(--accent-bright); box-shadow: inset 0 0 0 1px rgba(255,176,32,.26); }
.side-nav a svg { width: 19px; height: 19px; flex: 0 0 auto; }

.user-chip { display: flex; align-items: center; gap: 11px; padding: var(--sp-3); border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--border); margin-top: auto; }
.user-chip__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-accent); color: var(--accent-text); display: grid; place-items: center; font-weight: 800; font-size: 14px; flex: 0 0 auto; }
.user-chip__name { font-size: 14px; font-weight: 620; }
.user-chip__mail { font-size: 12px; color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; }

.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-5); }
.stat__label { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 10px; }
.stat__value { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat__hint { font-size: var(--fs-xs); color: var(--text-dim); margin-top: 9px; }
.stat--accent { border-color: rgba(255,176,32,.28); background: var(--accent-soft); }
.stat--accent .stat__value { color: var(--accent-bright); }

.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-5); border-bottom: 1px solid var(--border); }
.panel__head h2 { font-size: 17px; margin: 0; }
.panel__body { padding: var(--sp-5); }

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 14px var(--sp-5); font-size: 14px; border-bottom: 1px solid var(--border); }
.table th { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); font-weight: 750; background: rgba(255,255,255,.02); }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { color: var(--text); font-weight: 550; }
.table td { color: var(--text-muted); }

.dot-status { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); }
.dot-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); }
.dot-status--on::before  { background: var(--success); box-shadow: 0 0 0 3px rgba(52,211,153,.16); }
.dot-status--off::before { background: var(--danger);  box-shadow: 0 0 0 3px rgba(251,113,133,.16); }

.empty { text-align: center; padding: var(--sp-9) var(--sp-5); }
.empty__icon { width: 68px; height: 68px; margin: 0 auto var(--sp-5); border-radius: 22px; background: var(--accent-soft); color: var(--accent-bright); display: grid; place-items: center; }
.empty__icon svg { width: 30px; height: 30px; }
.empty p { max-width: 440px; margin: 0 auto var(--sp-5); font-size: 15px; }

/* ========================== ?????????? ========================== */

.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: var(--sp-7) var(--sp-4); position: relative; }
.auth-card {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-7);
  box-shadow: var(--sh-lg); backdrop-filter: blur(14px);
}
.auth-card h1 { font-size: 27px; margin-bottom: 10px; }
.auth-card .sub { font-size: 15px; color: var(--text-muted); margin-bottom: var(--sp-6); }

.form { display: flex; flex-direction: column; gap: var(--sp-4); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.input::placeholder { color: var(--text-dim); }
.input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.08); box-shadow: 0 0 0 4px rgba(255,176,32,.12); }
.input--error { border-color: var(--danger); }
.field__error { font-size: var(--fs-xs); color: var(--danger); }
.field__hint  { font-size: var(--fs-xs); color: var(--text-dim); }
.checkbox { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); color: var(--text-muted); }
.checkbox input { width: 17px; height: 17px; accent-color: var(--accent); }
.checkbox--top { align-items: flex-start; }
.checkbox--top input { margin-top: 3px; }
.checkbox span { line-height: 1.5; }
.checkbox a { color: var(--accent-bright); text-decoration: underline; text-decoration-color: rgba(255,176,32,.45); }
.form-foot { font-size: var(--fs-sm); color: var(--text-muted); text-align: center; margin: 0; }

.alert { padding: 13px 16px; border-radius: var(--r-sm); font-size: var(--fs-sm); border: 1px solid; }
.alert--error { background: rgba(251,113,133,.10); border-color: rgba(251,113,133,.35); color: #FFC2CC; }
.alert--ok    { background: rgba(52,211,153,.10); border-color: rgba(52,211,153,.35); color: #A7F3D0; }

/* ==================== ?????????? ???????????? (??????????) ================= */

.mock {
  position: relative;
  background: var(--grad-hero);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-5);
  box-shadow: var(--sh-lg), var(--glow-violet);
  overflow: hidden;
}
.mock::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(255,176,32,.18), transparent 70%);
  pointer-events: none;
}
.mock__head { display: flex; align-items: center; gap: var(--sp-3); padding-bottom: var(--sp-4); border-bottom: 1px solid rgba(255,255,255,.10); margin-bottom: var(--sp-4); position: relative; }
.mock__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-accent); color: var(--accent-text); display: grid; place-items: center; font-weight: 800; font-size: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.5); }
.mock__title { font-weight: 700; font-size: 15px; color: var(--text); }
.mock__sub { font-size: var(--fs-xs); color: var(--text-soft); }

.post {
  position: relative;
  background: rgba(255,255,255,.055); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-4); margin-bottom: var(--sp-3);
  display: flex; gap: var(--sp-3); align-items: flex-start;
  animation: fadeUp .5s cubic-bezier(.2,.8,.2,1) both;
}
.post:last-child { margin-bottom: 0; }
.post--1 { animation-delay: .05s; } .post--2 { animation-delay: .18s; } .post--3 { animation-delay: .31s; }
.post__thumb { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-3); display: grid; place-items: center; color: var(--accent-bright); flex: 0 0 auto; }
.post__thumb svg { width: 21px; height: 21px; }
.post__body { min-width: 0; flex: 1; }
.post__line { height: 9px; border-radius: 6px; background: rgba(255,255,255,.16); margin-bottom: 8px; }
.post__line--w45 { width: 45%; } .post__line--w70 { width: 70%; } .post__line--w90 { width: 90%; }
.post__meta { display: flex; align-items: center; gap: var(--sp-2); margin-top: 10px; }
.tag { font-size: 11px; font-weight: 750; padding: 4px 10px; border-radius: var(--r-full); background: var(--accent-soft); color: var(--accent-bright); }
.tag--violet { background: rgba(131,88,255,.20); color: #C3AEFF; }

.float-card {
  position: absolute; right: -18px; bottom: -26px;
  background: var(--bg-elev); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(255,176,32,.10);
  display: flex; align-items: center; gap: var(--sp-3);
  animation: float 6s ease-in-out infinite;
}
.float-card__value { font-size: 26px; font-weight: 800; color: var(--accent-bright); line-height: 1; }
.float-card__label { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 4px; }

/* ========================= ?????????? =========================== */

.hero { position: relative; padding: var(--sp-9) 0 var(--sp-8); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: var(--sp-8); align-items: center; }
.hero h1 { font-size: var(--fs-display); margin-bottom: var(--sp-5); }
.hero__lead { font-size: var(--fs-lead); color: var(--text-soft); max-width: 560px; }
.hero__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin: var(--sp-6) 0 var(--sp-5); }
.hero__note { font-size: var(--fs-xs); color: var(--text-dim); margin: 0; }
.hero__visual { position: relative; }

/* ????????????????-?????????????????? ?????????????? */
.page-hero { position: relative; padding: var(--sp-8) 0 var(--sp-7); overflow: hidden; }
.page-hero__inner { max-width: 820px; }
.page-hero h1 { font-size: var(--fs-h1); margin-bottom: var(--sp-5); }
.page-hero .lead { max-width: 680px; }

/* ======================== ???????????????????????? ===================== */

@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .cluster { min-height: 340px; }

  .page-hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .page-hero__art { order: -1; }
  .page-hero__art .ill { max-width: 260px; }

  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band__inner h2, .cta-band__inner p { margin-left: auto; margin-right: auto; }
  .cta-band__inner .row { justify-content: center; }
  .cta-band__art .ill { max-width: 240px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }

  body.nav-open .nav {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg-elev); border-bottom: 1px solid var(--border);
    padding: var(--sp-4); box-shadow: var(--sh-lg);
  }
  body.nav-open .nav a { padding: 14px var(--sp-4); border-radius: var(--r-sm); font-size: 16px; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .app { grid-template-columns: 1fr; }
  .app__sidebar {
    position: static; height: auto; flex-direction: row; align-items: center;
    overflow-x: auto; gap: var(--sp-4); border-right: 0; border-bottom: 1px solid var(--border);
  }
  .side-nav { flex-direction: row; }
  .side-nav__label, .user-chip { display: none; }
}

@media (max-width: 680px) {
  :root { --sp-9: 64px; --sp-8: 48px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn { width: 100%; }
  .cta-band { padding: var(--sp-7) var(--sp-5); }
  .compare th, .compare td { padding: var(--sp-3) var(--sp-4); font-size: 14px; }
  .float-card { right: 0; bottom: -18px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: var(--sp-3); }
}

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


/* ==================================================================
   ?????? ?? ???? ? ??????? ? ??????????? ??????? ????.
   ??? ??????: ??????????? ???????? ??? ? ??????? ?????, ??? ??????.
   ???????: ??? ????????? ? ??? ???????????? ?????.
   ================================================================== */

.section--deep {
  background-color: #0D0720;
  background-image:
    radial-gradient(1000px 640px at 8% -10%, rgba(92, 40, 196, .55), transparent 68%),
    radial-gradient(800px 540px at 102% 112%, rgba(255, 138, 0, .10), transparent 70%),
    linear-gradient(180deg, #150C30 0%, #0D0720 58%, #0A0614 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto;
}

.compare-wrap { overflow: visible; }
.compare-wrap::before,
.compare-wrap::after { display: none; content: none; }
.compare {
  min-width: 0; width: 100%;
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}
.compare td, .compare th { word-break: normal; overflow-wrap: anywhere; }

/* ==================================================================
   ????? ? ??????? ????????? ?????????? ?????????? CSS (??? ????????),
   ????? ?? ???????? ?? ????????? ?????.
   ================================================================== */

@media (min-width: 781px) {
  .compare td:first-child::before {
    content: "";
    display: inline-block;
    width: 14px; height: 2px; border-radius: 2px;
    background: #5F5880;
    margin-right: 12px;
    vertical-align: 4px;
  }
}

.compare .mark { font-size: 0; line-height: 0; }
.compare .mark::before {
  content: "";
  display: block;
  width: 6px; height: 11px;
  border-right: 2.2px solid #fff;
  border-bottom: 2.2px solid #fff;
  transform: rotate(42deg) translate(-1px, -2px);
}

/* ==================================================================
   LEGAL DOCUMENTS (block type "legal" in partials/section.blade.php).
   Long-form numbered texts: table of contents, clause headings,
   lists, tables and a revision line at the end of the document.
   ================================================================== */

.page-hero--plain { padding-bottom: var(--sp-6); }

.legal { max-width: 820px; }
.legal p { color: var(--text-muted); margin-bottom: var(--sp-4); }
.legal a { color: var(--accent-bright); text-decoration: underline; text-decoration-color: rgba(255,176,32,.4); }
.legal strong, .legal b { color: var(--text); font-weight: 650; }

.legal__h {
  font-size: clamp(20px, 2.1vw, 26px);
  margin: var(--sp-8) 0 var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  scroll-margin-top: 130px;
}
.legal__h:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

.legal__h3 { font-size: var(--fs-h4); margin: var(--sp-6) 0 var(--sp-3); color: var(--text); }

.legal__list { margin: 0 0 var(--sp-5); padding-left: 24px; color: var(--text-muted); }
.legal__list li { margin-bottom: 10px; }
.legal__list--num { list-style: decimal; }

.legal__note {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  border-left: 2px solid var(--border-strong);
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.legal__revision {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0;
}

.legal .alert { margin-bottom: var(--sp-5); }
.alert--warn { background: rgba(255,176,32,.10); border-color: rgba(255,176,32,.32); color: #FFE3B0; }

.legal__toc {
  max-width: 820px;
  margin-bottom: var(--sp-7);
  padding: var(--sp-5) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.legal__toc-title {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  font-weight: 750;
  margin-bottom: var(--sp-4);
}
.legal__toc ol { margin: 0; padding-left: 0; list-style: none; columns: 2; column-gap: var(--sp-6); }
.legal__toc li { margin-bottom: 9px; font-size: var(--fs-sm); break-inside: avoid; }
.legal__toc a { color: var(--text-muted); }
.legal__toc a:hover { color: var(--accent-bright); }

.table-wrap {
  overflow-x: auto;
  margin: 0 0 var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.table-wrap .table th, .table-wrap .table td { padding: 12px var(--sp-4); }

/* Footer: seller details and the MAX disclaimer */
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  padding-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--text-dim);
}
.site-footer__legal p { margin: 0; max-width: 620px; }
.site-footer__legal a { display: inline; margin: 0; font-size: inherit; color: var(--text-muted); }
.site-footer__legal a:hover { color: var(--accent-bright); }

@media (max-width: 780px) {
  .legal__toc { padding: var(--sp-4); }
  .legal__toc ol { columns: 1; }
  .legal__h { margin-top: var(--sp-7); }
}

/* ===== Payment mark in footer (YooKassa) ===== */
.site-footer__pay {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 4px;
  padding: 9px 16px;
  background: #FFFFFF;
  border-radius: 12px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.site-footer__pay img { height: 22px; width: auto; display: block; }
.site-footer__pay span { font-size: 12px; font-weight: 600; color: #0F1B33; white-space: nowrap; }
.site-footer__pay:hover { text-decoration: none; opacity: 0.92; }
/* ===== Payment marks: footer and payment page ===== */
.pay-marks { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 16px 0 6px; }
.pay-mark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; background: #FFFFFF; border-radius: 12px;
  text-decoration: none; width: fit-content;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.pay-mark img { height: 22px; width: auto; display: block; }
.pay-mark__caption { font-size: 12px; font-weight: 600; color: #0F1B33; white-space: nowrap; }
.pay-mark--text { font-size: 13px; font-weight: 700; color: #0F1B33; letter-spacing: 0.03em; }
.pay-mark:hover { text-decoration: none; opacity: 0.92; }
.pay-note { margin-top: 12px; font-size: var(--fs-sm); color: var(--text-muted); }
/* ===== Payment marks: refined footer strip (2026-09-28) ===== */
.site-footer__legal p { flex-basis: 100%; max-width: 760px; }
.pay-marks { flex-basis: 100%; margin: 0 0 20px; gap: 12px; align-items: center; }
.pay-mark { border-radius: 13px; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28); }
.pay-mark--brand { padding: 9px 16px; }
.pay-mark--tile { width: 46px; height: 46px; padding: 0; overflow: hidden; }
.pay-mark--tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pay-mark--text { display: none; }
.pay-marks__note { font-size: 12px; color: var(--text-dim); }
/* ===== Crisp text (2026-09-28) =====
   Reason: .reveal used view()-timeline animation with partial opacity/translate,
   and -webkit-font-smoothing:antialiased softened light text on dark background.
   Text must always be fully opaque and pixel-aligned. */
html, body {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}
.reveal {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  will-change: auto !important;
}
.legal p, .legal li, .legal td, .legal th,
.section p, .section li, .card p, .panel p, .panel li {
  opacity: 1;
  transform: none;
  text-shadow: none;
}

/* ===== Maintenance mode page (2026-09-28) =====
   Standalone 503 page shown while service.maintenance is on.
   Uses the same tokens as the rest of the site (dark violet + honey accent).
   NOTE: this file is ASCII only - keep comments in Latin letters. */
.maint-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.maint { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 48px 20px; overflow: hidden; }
.maint__card {
  position: relative; z-index: 1;
  width: 100%; max-width: 620px;
  padding: 44px 40px;
  border-radius: var(--r-lg);
  text-align: center;
  background: linear-gradient(180deg, rgba(30,18,56,.92), rgba(14,8,30,.94));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 70px rgba(4,2,10,.60),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(18px) saturate(150%);
}
.maint__card .logo { margin-bottom: 20px; }
.maint__card .badge { margin-bottom: 18px; }
.maint__card h1 { font-size: 34px; line-height: 1.15; margin: 0 0 16px; }
.maint__message { font-size: 18px; line-height: 1.5; color: var(--text); margin: 0 0 14px; }
.maint__hint { font-size: 15px; line-height: 1.5; color: var(--text-dim); margin: 0 0 12px; }
.maint__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

@media (max-width: 640px) {
  .maint__card { padding: 32px 22px; }
  .maint__card h1 { font-size: 26px; }
  .maint__message { font-size: 16px; }
  .maint__actions { flex-direction: column; }
  .maint__actions .btn { width: 100%; justify-content: center; }
}