/* ===== GLOBAL HEADER ===== */
:root{
  --blue:#3D5AFE;
  --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E;
  --ink-2:#26324f;
  --muted:#6B7280;
  --bg:#FFFFFF;
  --soft:#F5F6FB;
  --lav:#ECEEFB;
  --border:#E8EAF2;
  --green:#22C55E;
  --red:#EF4444;
  --info:#3B82F6;
  --teal:#14B8A6;
  --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px;
  --r-lg:28px;
  --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}

.logo{display:inline-flex;align-items:center;gap:11px}
.logo-img{height:34px;width:auto;display:block}
.header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.nav{display:flex;gap:30px;margin-left:14px}
.nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.nav a:hover{color:var(--ink)}
.nav a:hover::after{width:100%}
.header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.burger svg{width:26px;height:26px}
.mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.mobile-menu.open{opacity:1;pointer-events:auto}
.mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.mobile-menu.open .mobile-menu__panel{transform:none}
.mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.mobile-menu__close svg{width:22px;height:22px}
.mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

@media(max-width:820px){
  .nav, .header__cta .btn-ghost, .header__cta .btn-primary{display:none}
  .burger{display:flex}
  .header__inner{height:64px;margin-top:10px}
}

/* ===== about.html ===== */
/* ===== ТОКЕНЫ ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --info:#3B82F6; --teal:#14B8A6; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.site-shell section[id]{scroll-margin-top:96px}

/* ===== ТИПОГРАФИКА ===== */
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:-.02em;font-weight:800}
.site-shell h2{font-size:clamp(28px,4vw,44px)}
.site-shell h3{font-size:21px;letter-spacing:-.01em}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:560px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .sec-head{max-width:660px;margin:0 auto 48px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}

/* ===== КНОПКИ ===== */
.site-shell .btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%;justify-content:center}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-white:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(0,0,0,.4)}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

/* ===== TOAST ===== */
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}

/* ===== ЛОГО / ШАПКА ===== */
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover{color:var(--ink)}
.site-shell .nav a:hover::after{width:100%}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

/* ===== HERO ===== */
.site-shell .phero{position:relative;padding:140px 0 26px;text-align:center;overflow:hidden}
.site-shell .phero__bg{position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 50% 0,rgba(124,58,237,.16),transparent 70%),radial-gradient(closest-side at 80% 30%,rgba(61,90,254,.12),transparent 70%)}
.site-shell .phero h1{font-size:clamp(34px,5vw,54px);margin:8px auto 18px;max-width:740px}
.site-shell .phero .lead{margin:0 auto}
.site-shell .pill-badge{display:inline-flex;align-items:center;gap:8px;background:var(--lav);color:var(--blue);font-weight:700;font-size:13px;padding:7px 14px;border-radius:999px;margin-bottom:8px}
.site-shell .pill-badge svg{width:15px;height:15px}

/* ===== СЕКЦИИ ===== */
.site-shell .section{padding:80px 0}
.site-shell .section.soft{background:var(--soft)}
.site-shell .ico-chip{width:52px;height:52px;border-radius:15px;background:var(--grad);display:grid;place-items:center;color:#fff;margin-bottom:18px}
.site-shell .ico-chip svg{width:25px;height:25px}

/* ===== МИССИЯ ===== */
.site-shell .mission{max-width:760px;margin:0 auto;text-align:center}
.site-shell .mission p{font-size:clamp(17px,2vw,21px);color:var(--ink-2);line-height:1.6;margin-bottom:18px;font-weight:500}
.site-shell .mission p:last-child{margin-bottom:0}
.site-shell .mission .gradtext{font-weight:800}

/* ===== ЦИФРЫ ===== */
.site-shell .stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.site-shell .stat{text-align:center}
.site-shell .stat b{font-family:var(--display);font-weight:700;font-size:clamp(28px,3.6vw,42px);display:block;line-height:1;background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .stat span{color:var(--muted);font-weight:600;font-size:14.5px;margin-top:10px;display:block}

/* ===== ЦЕННОСТИ ===== */
.site-shell .values{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.site-shell .val-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:28px 24px;transition:.3s}
.site-shell .val-card:hover{transform:translateY(-6px);box-shadow:var(--sh);border-color:transparent}
.site-shell .val-card h3{margin-bottom:8px;font-size:18px}
.site-shell .val-card p{color:var(--muted);font-size:15px}

/* ===== ТАЙМЛАЙН ===== */
.site-shell .timeline{position:relative;max-width:720px;margin:0 auto}
.site-shell .timeline::before{content:"";position:absolute;left:9px;top:8px;bottom:8px;width:2px;background:var(--grad)}
.site-shell .tl-item{position:relative;padding:0 0 32px 44px}
.site-shell .tl-item:last-child{padding-bottom:0}
.site-shell .tl-item::before{content:"";position:absolute;left:2px;top:3px;width:16px;height:16px;border-radius:50%;background:#fff;border:3px solid var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.12)}
.site-shell .tl-year{font-family:var(--display);font-weight:700;font-size:15px;color:var(--blue);margin-bottom:5px}
.site-shell .tl-item h3{font-size:18px;margin-bottom:6px}
.site-shell .tl-item p{color:var(--muted);font-size:15px}

/* ===== КОМАНДА ===== */
.site-shell .team{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.site-shell .tm-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:28px 22px;text-align:center;transition:.3s}
.site-shell .tm-card:hover{transform:translateY(-6px);box-shadow:var(--sh)}
.site-shell .tm-ava{width:84px;height:84px;border-radius:50%;margin:0 auto 16px;display:grid;place-items:center;color:#fff;font-weight:800;font-size:27px;box-shadow:var(--sh-sm)}
.site-shell .tm-card b{font-size:16px;font-weight:800;display:block}
.site-shell .tm-card span{color:var(--muted);font-size:13.5px}

/* ===== CTA ===== */
.site-shell .cta-panel{background:var(--grad);border-radius:var(--r-lg);padding:60px 48px;text-align:center;color:#fff;position:relative;overflow:hidden}
.site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.4;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.4),transparent 55%)}
.site-shell .cta-panel h2{color:#fff;margin-bottom:14px;position:relative}
.site-shell .cta-panel p{color:rgba(255,255,255,.85);margin-bottom:28px;position:relative;max-width:520px;margin-left:auto;margin-right:auto}
.site-shell .cta-actions{display:flex;gap:12px;justify-content:center;position:relative;flex-wrap:wrap}

/* ===== REVEAL ===== */
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}
.site-shell .stagger>*{opacity:0;transform:translateY(24px);transition:.6s cubic-bezier(.2,.7,.3,1)}
.site-shell .stagger.in>*{opacity:1;transform:none}
.site-shell .stagger.in>*:nth-child(2){transition-delay:.07s}
.site-shell .stagger.in>*:nth-child(3){transition-delay:.14s}
.site-shell .stagger.in>*:nth-child(4){transition-delay:.21s}
.site-shell .stagger.in>*:nth-child(5){transition-delay:.28s}
.site-shell .stagger.in>*:nth-child(6){transition-delay:.35s}

/* ===== ФУТЕР ===== */
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}

/* ===== АДАПТИВ ===== */
@media(max-width:1024px){
  .site-shell .stats{grid-template-columns:repeat(2,1fr);gap:28px 16px}
  .site-shell .values, .site-shell .team{grid-template-columns:repeat(2,1fr)}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
}
@media(max-width:760px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .phero{padding:112px 0 16px}
  .site-shell .values, .site-shell .team{grid-template-columns:1fr}
  .site-shell .section{padding:56px 0}
  .site-shell .cta-panel{padding:48px 24px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
  .site-shell h2{font-size:28px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal, .site-shell .stagger>*{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}

/* ===== article.html ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED; --teal:#14B8A6; --green:#22C55E; --amber:#F59E0B;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell section[id]{scroll-margin-top:96px}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:0;font-weight:800}
.site-shell h1{font-size:clamp(34px,5vw,56px)}
.site-shell h2{font-size:clamp(26px,3.6vw,42px)}
.site-shell h3{font-size:21px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:620px}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:0;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .section{padding:74px 0}
.site-shell .section.soft{background:var(--soft)}
.site-shell .sec-head{max-width:720px;margin:0 auto 42px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}
.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap;background:none}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%}
.site-shell .tag{display:inline-flex;align-items:center;gap:7px;padding:7px 13px;border-radius:999px;background:var(--lav);color:var(--blue);font-size:13px;font-weight:800}
.site-shell .tag.green{background:rgba(20,184,166,.12);color:var(--teal)}
.site-shell .tag.amber{background:rgba(245,158,11,.14);color:#B45309}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover, .site-shell .nav a.active{color:var(--ink)}
.site-shell .nav a:hover::after, .site-shell .nav a.active::after{width:100%}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

.site-shell .hero-band{position:relative;padding:150px 0 62px;overflow:hidden}
.site-shell .hero-band::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 20% 10%,rgba(20,184,166,.16),transparent 68%),radial-gradient(closest-side at 76% 16%,rgba(124,58,237,.18),transparent 70%),radial-gradient(closest-side at 88% 70%,rgba(61,90,254,.12),transparent 70%)}
.site-shell .hero-center{text-align:center}
.site-shell .hero-center .lead{margin:18px auto 0}
.site-shell .breadcrumbs{display:flex;align-items:center;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:14px;font-weight:700;margin-bottom:22px}
.site-shell .breadcrumbs a{color:var(--blue)}
.site-shell .meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;color:var(--muted);font-size:14px;font-weight:700}
.site-shell .author-mini{display:inline-flex;align-items:center;gap:9px;color:var(--ink-2)}
.site-shell .avatar{width:34px;height:34px;border-radius:50%;background:var(--grad);color:#fff;display:grid;place-items:center;font-size:12px;font-weight:900;flex:none}

.site-shell .toolbar{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;margin-bottom:28px}
.site-shell .search{position:relative;flex:1;min-width:260px}
.site-shell .search svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted)}
.site-shell .search input{width:100%;padding:14px 16px 14px 46px;border:1.5px solid var(--border);border-radius:999px;font-family:var(--font);font-size:15px;background:#fff;transition:.2s;color:var(--ink)}
.site-shell .search input:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.1)}
.site-shell .chips{display:flex;gap:9px;flex-wrap:wrap}
.site-shell .chip{padding:10px 16px;border-radius:999px;border:1px solid var(--border);background:#fff;color:var(--ink-2);font-weight:800;font-family:var(--font);cursor:pointer;transition:.2s}
.site-shell .chip:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .chip.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .featured{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center;background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);padding:22px;box-shadow:var(--sh-sm);margin-bottom:28px;transition:.3s}
.site-shell .featured:hover{transform:translateY(-4px);box-shadow:var(--sh)}
.site-shell .featured img, .site-shell .card-img, .site-shell .article-cover, .site-shell .inline-img{width:100%;object-fit:cover;background:var(--soft)}
.site-shell .featured img{height:340px;border-radius:20px}
.site-shell .featured h2{margin:14px 0 12px;font-size:clamp(28px,4vw,42px)}
.site-shell .featured p{color:var(--muted);margin-bottom:22px}
.site-shell .article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.site-shell .article-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;transition:.3s;display:flex;flex-direction:column}
.site-shell .article-card:hover{transform:translateY(-6px);box-shadow:var(--sh);border-color:transparent}
.site-shell .card-img{height:184px}
.site-shell .card-body{padding:20px}
.site-shell .card-body h3{font-size:19px;margin:10px 0 14px}
.site-shell .card-meta{display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);font-size:13px;font-weight:700}
.site-shell .empty-state{display:none;text-align:center;color:var(--muted);font-weight:700;padding:38px}
.site-shell .subscribe-panel, .site-shell .cta-panel{background:var(--grad);color:#fff;border-radius:var(--r-lg);padding:54px 46px;position:relative;overflow:hidden}
.site-shell .subscribe-panel::before, .site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.42;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.42),transparent 55%)}
.site-shell .subscribe-panel>*, .site-shell .cta-panel>*{position:relative}
.site-shell .subscribe-panel h2, .site-shell .cta-panel h2{color:#fff;margin-bottom:12px}
.site-shell .subscribe-panel p, .site-shell .cta-panel p{color:rgba(255,255,255,.84);max-width:560px;margin-bottom:22px}
.site-shell .subscribe-form{display:flex;gap:12px;max-width:560px}
.site-shell .subscribe-form input{flex:1;min-width:0;padding:15px 18px;border:none;border-radius:999px;font:600 15px var(--font)}
.site-shell .subscribe-form input:focus{outline:3px solid rgba(255,255,255,.45)}

.site-shell .article-head{max-width:920px;margin:0 auto}
.site-shell .article-head h1{margin:16px 0 18px}
.site-shell .article-cover{height:min(46vw,520px);border-radius:var(--r-lg);box-shadow:var(--sh);margin-top:34px}
.site-shell .article-shell{display:grid;grid-template-columns:220px minmax(0,720px) 96px;gap:36px;align-items:start}
.site-shell .toc, .site-shell .share-box{position:sticky;top:108px}
.site-shell .toc{font-size:14px;color:var(--muted)}
.site-shell .toc b, .site-shell .share-box b{display:block;color:var(--ink);font-size:13px;text-transform:uppercase;margin-bottom:12px}
.site-shell .toc a{display:block;padding:7px 0;color:var(--muted);font-weight:700}
.site-shell .toc a:hover{color:var(--blue)}
.site-shell .share-box{display:flex;flex-direction:column;gap:10px}
.site-shell .share-btn{width:42px;height:42px;border-radius:13px;border:1px solid var(--border);background:#fff;color:var(--blue);display:grid;place-items:center;cursor:pointer;transition:.2s}
.site-shell .share-btn:hover{transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .share-btn svg{width:18px;height:18px}
.site-shell .prose{max-width:720px;font-size:18px;line-height:1.75}
.site-shell .prose h2{font-size:32px;margin:48px 0 16px}
.site-shell .prose h3{font-size:23px;margin:30px 0 12px}
.site-shell .prose p{margin:0 0 20px;color:#26324f}
.site-shell .prose ul, .site-shell .prose ol{padding-left:24px;margin:0 0 22px}
.site-shell .prose li{margin:8px 0;color:#26324f}
.site-shell .quote{border-left:4px solid var(--blue);background:var(--soft);border-radius:0 16px 16px 0;padding:22px 24px;margin:28px 0;font-weight:800;color:var(--ink)}
.site-shell .tip{background:linear-gradient(120deg,rgba(61,90,254,.08),rgba(20,184,166,.1));border:1px solid rgba(61,90,254,.14);border-radius:var(--r);padding:22px;margin:28px 0}
.site-shell .tip b{display:block;margin-bottom:8px;color:var(--ink)}
.site-shell .inline-img{height:360px;border-radius:var(--r);margin:32px 0}
.site-shell .author-box{display:flex;gap:18px;align-items:flex-start;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:24px;margin-top:54px}
.site-shell .author-box .avatar{width:58px;height:58px;font-size:16px}
.site-shell .author-box p{color:var(--muted);margin-top:6px}
.site-shell .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}

.site-shell .legal-layout{display:grid;grid-template-columns:260px minmax(0,760px);gap:54px;align-items:start;max-width:1080px;margin:0 auto}
.site-shell .legal-toc{position:sticky;top:108px;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:22px;box-shadow:var(--sh-sm)}
.site-shell .legal-toc b{display:block;margin-bottom:12px}
.site-shell .legal-toc a{display:block;color:var(--muted);font-size:14px;font-weight:700;padding:8px 0}
.site-shell .legal-toc a:hover{color:var(--blue)}
.site-shell .legal-doc{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);padding:42px;box-shadow:var(--sh-sm)}
.site-shell .updated{display:inline-flex;margin-bottom:20px;color:var(--muted);font-size:14px;font-weight:800;background:var(--soft);border-radius:999px;padding:8px 14px}
.site-shell .legal-doc h2{font-size:28px;margin:34px 0 14px}
.site-shell .legal-doc h3{font-size:20px;margin:22px 0 10px}
.site-shell .legal-doc p, .site-shell .legal-doc li{color:#35405f;font-size:16px;line-height:1.75}
.site-shell .legal-doc p{margin-bottom:16px}
.site-shell .legal-doc ul, .site-shell .legal-doc ol{padding-left:22px;margin-bottom:18px}

.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:0;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}

@media(max-width:1060px){
  .site-shell .article-shell{grid-template-columns:1fr}
  .site-shell .toc, .site-shell .share-box{position:static}
  .site-shell .toc{display:none}
  .site-shell .share-box{flex-direction:row;align-items:center}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
  .site-shell .legal-layout{grid-template-columns:1fr;gap:24px}
  .site-shell .legal-toc{position:static}
}
@media(max-width:820px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .hero-band{padding:118px 0 48px}
  .site-shell .featured{grid-template-columns:1fr;padding:14px}
  .site-shell .featured img{height:230px}
  .site-shell .article-grid, .site-shell .related-grid{grid-template-columns:1fr}
  .site-shell .article-cover{height:260px;border-radius:18px}
  .site-shell .prose{font-size:16.5px}
  .site-shell .prose h2{font-size:26px}
  .site-shell .inline-img{height:240px}
  .site-shell .subscribe-form{flex-direction:column}
  .site-shell .subscribe-panel, .site-shell .cta-panel{padding:42px 24px}
  .site-shell .legal-doc{padding:26px 20px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
}
@media(max-width:560px){
  .site-shell .wrap{padding:0 18px}
  .site-shell .toolbar{align-items:stretch}
  .site-shell .chips{width:100%}
  .site-shell .chip{flex:1}
  .site-shell .footer__top{grid-template-columns:1fr}
  .site-shell .footer__bottom .links{flex-direction:column;gap:8px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}


/* ===== blog.html ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED; --teal:#14B8A6; --green:#22C55E; --amber:#F59E0B;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell section[id]{scroll-margin-top:96px}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:0;font-weight:800}
.site-shell h1{font-size:clamp(34px,5vw,56px)}
.site-shell h2{font-size:clamp(26px,3.6vw,42px)}
.site-shell h3{font-size:21px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:620px}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:0;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .section{padding:74px 0}
.site-shell .section.soft{background:var(--soft)}
.site-shell .sec-head{max-width:720px;margin:0 auto 42px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}
.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap;background:none}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%}
.site-shell .tag{display:inline-flex;align-items:center;gap:7px;padding:7px 13px;border-radius:999px;background:var(--lav);color:var(--blue);font-size:13px;font-weight:800}
.site-shell .tag.green{background:rgba(20,184,166,.12);color:var(--teal)}
.site-shell .tag.amber{background:rgba(245,158,11,.14);color:#B45309}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover, .site-shell .nav a.active{color:var(--ink)}
.site-shell .nav a:hover::after, .site-shell .nav a.active::after{width:100%}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

.site-shell .hero-band{position:relative;padding:150px 0 62px;overflow:hidden}
.site-shell .hero-band::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 20% 10%,rgba(20,184,166,.16),transparent 68%),radial-gradient(closest-side at 76% 16%,rgba(124,58,237,.18),transparent 70%),radial-gradient(closest-side at 88% 70%,rgba(61,90,254,.12),transparent 70%)}
.site-shell .hero-center{text-align:center}
.site-shell .hero-center .lead{margin:18px auto 0}
.site-shell .breadcrumbs{display:flex;align-items:center;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:14px;font-weight:700;margin-bottom:22px}
.site-shell .breadcrumbs a{color:var(--blue)}
.site-shell .meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;color:var(--muted);font-size:14px;font-weight:700}
.site-shell .author-mini{display:inline-flex;align-items:center;gap:9px;color:var(--ink-2)}
.site-shell .avatar{width:34px;height:34px;border-radius:50%;background:var(--grad);color:#fff;display:grid;place-items:center;font-size:12px;font-weight:900;flex:none}

.site-shell .toolbar{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;margin-bottom:28px}
.site-shell .search{position:relative;flex:1;min-width:260px}
.site-shell .search svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted)}
.site-shell .search input{width:100%;padding:14px 16px 14px 46px;border:1.5px solid var(--border);border-radius:999px;font-family:var(--font);font-size:15px;background:#fff;transition:.2s;color:var(--ink)}
.site-shell .search input:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.1)}
.site-shell .chips{display:flex;gap:9px;flex-wrap:wrap}
.site-shell .chip{padding:10px 16px;border-radius:999px;border:1px solid var(--border);background:#fff;color:var(--ink-2);font-weight:800;font-family:var(--font);cursor:pointer;transition:.2s}
.site-shell .chip:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .chip.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .featured{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center;background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);padding:22px;box-shadow:var(--sh-sm);margin-bottom:28px;transition:.3s}
.site-shell .featured:hover{transform:translateY(-4px);box-shadow:var(--sh)}
.site-shell .featured img, .site-shell .card-img, .site-shell .article-cover, .site-shell .inline-img{width:100%;object-fit:cover;background:var(--soft)}
.site-shell .featured img{height:340px;border-radius:20px}
.site-shell .featured h2{margin:14px 0 12px;font-size:clamp(28px,4vw,42px)}
.site-shell .featured p{color:var(--muted);margin-bottom:22px}
.site-shell .article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.site-shell .article-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;transition:.3s;display:flex;flex-direction:column}
.site-shell .article-card:hover{transform:translateY(-6px);box-shadow:var(--sh);border-color:transparent}
.site-shell .card-img{height:184px}
.site-shell .card-body{padding:20px}
.site-shell .card-body h3{font-size:19px;margin:10px 0 14px}
.site-shell .card-meta{display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);font-size:13px;font-weight:700}
.site-shell .empty-state{display:none;text-align:center;color:var(--muted);font-weight:700;padding:38px}
.site-shell .subscribe-panel, .site-shell .cta-panel{background:var(--grad);color:#fff;border-radius:var(--r-lg);padding:54px 46px;position:relative;overflow:hidden}
.site-shell .subscribe-panel::before, .site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.42;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.42),transparent 55%)}
.site-shell .subscribe-panel>*, .site-shell .cta-panel>*{position:relative}
.site-shell .subscribe-panel h2, .site-shell .cta-panel h2{color:#fff;margin-bottom:12px}
.site-shell .subscribe-panel p, .site-shell .cta-panel p{color:rgba(255,255,255,.84);max-width:560px;margin-bottom:22px}
.site-shell .subscribe-form{display:flex;gap:12px;max-width:560px}
.site-shell .subscribe-form input{flex:1;min-width:0;padding:15px 18px;border:none;border-radius:999px;font:600 15px var(--font)}
.site-shell .subscribe-form input:focus{outline:3px solid rgba(255,255,255,.45)}

.site-shell .article-head{max-width:920px;margin:0 auto}
.site-shell .article-head h1{margin:16px 0 18px}
.site-shell .article-cover{height:min(46vw,520px);border-radius:var(--r-lg);box-shadow:var(--sh);margin-top:34px}
.site-shell .article-shell{display:grid;grid-template-columns:220px minmax(0,720px) 96px;gap:36px;align-items:start}
.site-shell .toc, .site-shell .share-box{position:sticky;top:108px}
.site-shell .toc{font-size:14px;color:var(--muted)}
.site-shell .toc b, .site-shell .share-box b{display:block;color:var(--ink);font-size:13px;text-transform:uppercase;margin-bottom:12px}
.site-shell .toc a{display:block;padding:7px 0;color:var(--muted);font-weight:700}
.site-shell .toc a:hover{color:var(--blue)}
.site-shell .share-box{display:flex;flex-direction:column;gap:10px}
.site-shell .share-btn{width:42px;height:42px;border-radius:13px;border:1px solid var(--border);background:#fff;color:var(--blue);display:grid;place-items:center;cursor:pointer;transition:.2s}
.site-shell .share-btn:hover{transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .share-btn svg{width:18px;height:18px}
.site-shell .prose{max-width:720px;font-size:18px;line-height:1.75}
.site-shell .prose h2{font-size:32px;margin:48px 0 16px}
.site-shell .prose h3{font-size:23px;margin:30px 0 12px}
.site-shell .prose p{margin:0 0 20px;color:#26324f}
.site-shell .prose ul, .site-shell .prose ol{padding-left:24px;margin:0 0 22px}
.site-shell .prose li{margin:8px 0;color:#26324f}
.site-shell .quote{border-left:4px solid var(--blue);background:var(--soft);border-radius:0 16px 16px 0;padding:22px 24px;margin:28px 0;font-weight:800;color:var(--ink)}
.site-shell .tip{background:linear-gradient(120deg,rgba(61,90,254,.08),rgba(20,184,166,.1));border:1px solid rgba(61,90,254,.14);border-radius:var(--r);padding:22px;margin:28px 0}
.site-shell .tip b{display:block;margin-bottom:8px;color:var(--ink)}
.site-shell .inline-img{height:360px;border-radius:var(--r);margin:32px 0}
.site-shell .author-box{display:flex;gap:18px;align-items:flex-start;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:24px;margin-top:54px}
.site-shell .author-box .avatar{width:58px;height:58px;font-size:16px}
.site-shell .author-box p{color:var(--muted);margin-top:6px}
.site-shell .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}

.site-shell .legal-layout{display:grid;grid-template-columns:260px minmax(0,760px);gap:54px;align-items:start;max-width:1080px;margin:0 auto}
.site-shell .legal-toc{position:sticky;top:108px;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:22px;box-shadow:var(--sh-sm)}
.site-shell .legal-toc b{display:block;margin-bottom:12px}
.site-shell .legal-toc a{display:block;color:var(--muted);font-size:14px;font-weight:700;padding:8px 0}
.site-shell .legal-toc a:hover{color:var(--blue)}
.site-shell .legal-doc{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);padding:42px;box-shadow:var(--sh-sm)}
.site-shell .updated{display:inline-flex;margin-bottom:20px;color:var(--muted);font-size:14px;font-weight:800;background:var(--soft);border-radius:999px;padding:8px 14px}
.site-shell .legal-doc h2{font-size:28px;margin:34px 0 14px}
.site-shell .legal-doc h3{font-size:20px;margin:22px 0 10px}
.site-shell .legal-doc p, .site-shell .legal-doc li{color:#35405f;font-size:16px;line-height:1.75}
.site-shell .legal-doc p{margin-bottom:16px}
.site-shell .legal-doc ul, .site-shell .legal-doc ol{padding-left:22px;margin-bottom:18px}

.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:0;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}

@media(max-width:1060px){
  .site-shell .article-shell{grid-template-columns:1fr}
  .site-shell .toc, .site-shell .share-box{position:static}
  .site-shell .toc{display:none}
  .site-shell .share-box{flex-direction:row;align-items:center}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
  .site-shell .legal-layout{grid-template-columns:1fr;gap:24px}
  .site-shell .legal-toc{position:static}
}
@media(max-width:820px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .hero-band{padding:118px 0 48px}
  .site-shell .featured{grid-template-columns:1fr;padding:14px}
  .site-shell .featured img{height:230px}
  .site-shell .article-grid, .site-shell .related-grid{grid-template-columns:1fr}
  .site-shell .article-cover{height:260px;border-radius:18px}
  .site-shell .prose{font-size:16.5px}
  .site-shell .prose h2{font-size:26px}
  .site-shell .inline-img{height:240px}
  .site-shell .subscribe-form{flex-direction:column}
  .site-shell .subscribe-panel, .site-shell .cta-panel{padding:42px 24px}
  .site-shell .legal-doc{padding:26px 20px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
}
@media(max-width:560px){
  .site-shell .wrap{padding:0 18px}
  .site-shell .toolbar{align-items:stretch}
  .site-shell .chips{width:100%}
  .site-shell .chip{flex:1}
  .site-shell .footer__top{grid-template-columns:1fr}
  .site-shell .footer__bottom .links{flex-direction:column;gap:8px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}


/* ===== cases.html ===== */
/* ===== ТОКЕНЫ ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --info:#3B82F6; --teal:#14B8A6; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.site-shell section[id]{scroll-margin-top:96px}

/* ===== ТИПОГРАФИКА ===== */
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:-.02em;font-weight:800}
.site-shell h2{font-size:clamp(28px,4vw,44px)}
.site-shell h3{font-size:21px;letter-spacing:-.01em}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:560px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .sec-head{max-width:660px;margin:0 auto 48px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}

/* ===== КНОПКИ ===== */
.site-shell .btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%;justify-content:center}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-white:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(0,0,0,.4)}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

/* ===== TOAST ===== */
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}

/* ===== ЛОГО / ШАПКА ===== */
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover{color:var(--ink)}
.site-shell .nav a:hover::after, .site-shell .nav a.active::after{width:100%}
.site-shell .nav a.active{color:var(--ink)}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

/* ===== HERO ===== */
.site-shell .phero{position:relative;padding:140px 0 20px;text-align:center;overflow:hidden}
.site-shell .phero__bg{position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 50% 0,rgba(124,58,237,.16),transparent 70%),radial-gradient(closest-side at 80% 30%,rgba(61,90,254,.12),transparent 70%)}
.site-shell .phero h1{font-size:clamp(34px,5vw,54px);margin:8px auto 18px;max-width:740px}
.site-shell .phero .lead{margin:0 auto}
.site-shell .pill-badge{display:inline-flex;align-items:center;gap:8px;background:var(--lav);color:var(--blue);font-weight:700;font-size:13px;padding:7px 14px;border-radius:999px;margin-bottom:8px}
.site-shell .pill-badge svg{width:15px;height:15px}
.site-shell .hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin:42px auto 0;max-width:760px}
.site-shell .hstat b{font-family:var(--display);font-weight:700;font-size:clamp(30px,4vw,46px);line-height:1;background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;display:block}
.site-shell .hstat span{color:var(--muted);font-weight:600;font-size:14.5px;margin-top:10px;display:block}

/* ===== СЕКЦИИ ===== */
.site-shell .section{padding:80px 0}
.site-shell .section.soft{background:var(--soft)}

/* ===== ФИЛЬТР ===== */
.site-shell .filters{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:42px}
.site-shell .filter{padding:10px 18px;border-radius:999px;border:1px solid var(--border);background:#fff;font-weight:700;font-size:14px;color:var(--ink-2);cursor:pointer;transition:.2s;font-family:var(--font)}
.site-shell .filter:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .filter.on{background:var(--grad);color:#fff;border-color:transparent}

/* ===== КЕЙСЫ ===== */
.site-shell .cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.site-shell .case-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;transition:.3s;display:flex;flex-direction:column}
.site-shell .case-card:hover{transform:translateY(-6px);box-shadow:var(--sh)}
.site-shell .case-media{height:138px;position:relative;display:grid;place-items:center}
.site-shell .case-media .ic{width:54px;height:54px;color:#fff;opacity:.95}
.site-shell .case-media .ic svg{width:100%;height:100%}
.site-shell .case-media::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 72% 22%,rgba(255,255,255,.22),transparent 60%)}
.site-shell .case-media .metric{position:absolute;left:16px;bottom:14px;z-index:1;background:rgba(255,255,255,.96);border-radius:999px;padding:7px 15px;font-weight:800;font-size:14px;color:var(--ink);box-shadow:var(--sh-sm)}
.site-shell .cm-1{background:linear-gradient(135deg,#5b6dff,#8a44e6)}
.site-shell .cm-2{background:linear-gradient(135deg,#3D5AFE,#6d3ff0)}
.site-shell .cm-3{background:linear-gradient(135deg,#4f6bff,#9c43d6)}
.site-shell .cm-4{background:linear-gradient(135deg,#6a5cff,#8b43f0)}
.site-shell .cm-5{background:linear-gradient(135deg,#5466ff,#7c3aed)}
.site-shell .cm-6{background:linear-gradient(135deg,#3b5bff,#7a3ff2)}
.site-shell .case-body{padding:22px;display:flex;flex-direction:column;gap:12px;flex:1}
.site-shell .case-tag{font-size:11px;font-weight:700;padding:4px 11px;border-radius:999px;background:var(--lav);color:var(--blue);align-self:flex-start}
.site-shell .case-name{font-size:18px;font-weight:800}
.site-shell .case-rows{display:flex;flex-direction:column;gap:9px;margin-top:2px}
.site-shell .case-row{display:flex;gap:10px;font-size:13.5px;align-items:baseline}
.site-shell .case-row .k{font-weight:800;color:var(--ink);flex:none;width:78px}
.site-shell .case-row .v{color:var(--muted);font-weight:600}

/* ===== ОТЗЫВЫ ===== */
.site-shell .tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.site-shell .tcard{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:30px 28px;display:flex;flex-direction:column;gap:16px}
.site-shell .tstars{display:flex;gap:3px;color:var(--amber)}
.site-shell .tstars svg{width:18px;height:18px}
.site-shell .tcard .q{font-size:16px;font-weight:500;color:var(--ink-2);flex:1;line-height:1.55}
.site-shell .tauthor{display:flex;align-items:center;gap:13px}
.site-shell .tauthor .ava{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:800;font-size:15px;flex:none}
.site-shell .tauthor .info b{font-weight:800;font-size:15px;display:block}
.site-shell .tauthor .info span{color:var(--muted);font-size:13px}

/* ===== ЛОГОБАР ===== */
.site-shell .clientbar{display:flex;flex-wrap:wrap;justify-content:center;gap:14px}
.site-shell .client-chip{background:#fff;border:1px solid var(--border);border-radius:12px;padding:13px 22px;font-weight:800;color:var(--ink-2);font-size:15px;transition:.25s}
.site-shell .client-chip:hover{box-shadow:var(--sh-sm);transform:translateY(-3px);color:var(--ink)}

/* ===== CTA ===== */
.site-shell .cta-panel{background:var(--grad);border-radius:var(--r-lg);padding:60px 48px;text-align:center;color:#fff;position:relative;overflow:hidden}
.site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.4;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.4),transparent 55%)}
.site-shell .cta-panel h2{color:#fff;margin-bottom:14px;position:relative}
.site-shell .cta-panel p{color:rgba(255,255,255,.85);margin-bottom:28px;position:relative;max-width:520px;margin-left:auto;margin-right:auto}
.site-shell .cta-actions{display:flex;gap:12px;justify-content:center;position:relative;flex-wrap:wrap}

/* ===== REVEAL ===== */
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}
.site-shell .stagger>*{opacity:0;transform:translateY(24px);transition:.6s cubic-bezier(.2,.7,.3,1)}
.site-shell .stagger.in>*{opacity:1;transform:none}
.site-shell .stagger.in>*:nth-child(2){transition-delay:.07s}
.site-shell .stagger.in>*:nth-child(3){transition-delay:.14s}
.site-shell .stagger.in>*:nth-child(4){transition-delay:.21s}
.site-shell .stagger.in>*:nth-child(5){transition-delay:.28s}
.site-shell .stagger.in>*:nth-child(6){transition-delay:.35s}

/* ===== ФУТЕР ===== */
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}

/* ===== АДАПТИВ ===== */
@media(max-width:1024px){
  .site-shell .cases-grid, .site-shell .tgrid{grid-template-columns:repeat(2,1fr)}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
}
@media(max-width:760px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .phero{padding:112px 0 12px}
  .site-shell .hero-stats{grid-template-columns:1fr;gap:28px}
  .site-shell .cases-grid, .site-shell .tgrid{grid-template-columns:1fr}
  .site-shell .section{padding:56px 0}
  .site-shell .cta-panel{padding:48px 24px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
  .site-shell h2{font-size:28px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal, .site-shell .stagger>*{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}

/* ===== contacts.html ===== */
/* ===== ТОКЕНЫ ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --info:#3B82F6; --teal:#14B8A6; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.site-shell section[id]{scroll-margin-top:96px}

/* ===== ТИПОГРАФИКА ===== */
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:-.02em;font-weight:800}
.site-shell h2{font-size:clamp(28px,4vw,44px)}
.site-shell h3{font-size:21px;letter-spacing:-.01em}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:560px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}

/* ===== КНОПКИ ===== */
.site-shell .btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%;justify-content:center}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-white:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(0,0,0,.4)}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

/* ===== TOAST ===== */
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}

/* ===== ЛОГО / ШАПКА ===== */
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover{color:var(--ink)}
.site-shell .nav a:hover::after{width:100%}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

/* ===== HERO ===== */
.site-shell .phero{position:relative;padding:140px 0 20px;text-align:center;overflow:hidden}
.site-shell .phero__bg{position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 50% 0,rgba(124,58,237,.16),transparent 70%),radial-gradient(closest-side at 80% 30%,rgba(61,90,254,.12),transparent 70%)}
.site-shell .phero h1{font-size:clamp(34px,5vw,54px);margin:8px auto 18px;max-width:720px}
.site-shell .phero .lead{margin:0 auto}
.site-shell .pill-badge{display:inline-flex;align-items:center;gap:8px;background:var(--lav);color:var(--blue);font-weight:700;font-size:13px;padding:7px 14px;border-radius:999px;margin-bottom:8px}
.site-shell .pill-badge svg{width:15px;height:15px}

/* ===== СЕКЦИИ ===== */
.site-shell .section{padding:60px 0 80px}
.site-shell .ico-chip{display:grid;place-items:center;color:#fff}

/* ===== КОНТАКТЫ ===== */
.site-shell .contact-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:32px;align-items:start}
.site-shell .form-card{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);box-shadow:var(--sh);padding:34px;position:relative}
.site-shell .form-card h3{margin-bottom:6px}
.site-shell .form-card .sub{color:var(--muted);font-size:14.5px;margin-bottom:24px}
.site-shell .field{margin-bottom:18px}
.site-shell .field label{display:block;font-size:13.5px;font-weight:700;margin-bottom:7px}
.site-shell .field input, .site-shell .field textarea{width:100%;padding:14px 16px;border:1.5px solid var(--border);border-radius:12px;font-family:var(--font);font-size:15.5px;color:var(--ink);background:var(--soft);transition:.2s}
.site-shell .field input:focus, .site-shell .field textarea:focus{outline:none;border-color:var(--blue);background:#fff;box-shadow:0 0 0 4px rgba(61,90,254,.1)}
.site-shell .field textarea{resize:vertical;min-height:112px}
.site-shell .field.err input, .site-shell .field.err textarea{border-color:var(--red);background:rgba(239,68,68,.04)}
.site-shell .field .err-msg{font-size:12.5px;color:var(--red);font-weight:600;margin-top:6px;display:none}
.site-shell .field.err .err-msg{display:block}
.site-shell .form-foot{font-size:12.5px;color:var(--muted);margin-top:14px;text-align:center}
.site-shell .form-ok{display:none;text-align:center;padding:26px 10px}
.site-shell .form-ok.show{display:block}
.site-shell .form-ok .ico{width:64px;height:64px;border-radius:50%;background:var(--grad);display:grid;place-items:center;color:#fff;margin:0 auto 18px;box-shadow:0 14px 30px -10px rgba(61,90,254,.6)}
.site-shell .form-ok .ico svg{width:32px;height:32px}
.site-shell .form-ok h3{margin-bottom:8px}
.site-shell .form-ok p{color:var(--muted);font-size:15px}

.site-shell .info-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:22px;display:flex;gap:15px;align-items:flex-start;margin-bottom:16px;transition:.25s}
.site-shell .info-card:hover{box-shadow:var(--sh-sm);transform:translateY(-3px)}
.site-shell .info-card .ico-chip{width:46px;height:46px;border-radius:13px;background:var(--lav);color:var(--blue);flex:none}
.site-shell .info-card .ico-chip svg{width:22px;height:22px}
.site-shell .info-card b{font-size:15px;font-weight:800;display:block;margin-bottom:4px}
.site-shell .info-card a, .site-shell .info-card .v{color:var(--muted);font-size:14.5px;font-weight:600;display:block}
.site-shell .info-card a:hover{color:var(--blue)}
.site-shell .msgs{display:flex;gap:8px;margin-top:8px}
.site-shell .msg-chip{display:inline-flex;align-items:center;gap:7px;border:1px solid var(--border);border-radius:999px;padding:7px 13px;font-size:13px;font-weight:700;color:var(--ink-2);transition:.2s}
.site-shell .msg-chip:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .msg-chip svg{width:15px;height:15px}
.site-shell .demo-card{background:var(--ink);color:#fff;border-radius:var(--r);padding:24px;position:relative;overflow:hidden}
.site-shell .demo-card::before{content:"";position:absolute;inset:0;opacity:.5;background:radial-gradient(closest-side at 100% 0,rgba(124,58,237,.5),transparent 60%)}
.site-shell .demo-card>*{position:relative}
.site-shell .demo-card b{font-size:16px;font-weight:800;display:block;margin-bottom:6px}
.site-shell .demo-card p{color:rgba(255,255,255,.72);font-size:14px;margin-bottom:16px}

/* ===== КАРТА ===== */
.site-shell .map{height:360px;border-radius:var(--r-lg);border:1px solid var(--border);position:relative;overflow:hidden;
  background:linear-gradient(0deg,rgba(61,90,254,.05),rgba(124,58,237,.05)),
  repeating-linear-gradient(0deg,transparent,transparent 39px,#E7EAF3 39px,#E7EAF3 40px),
  repeating-linear-gradient(90deg,transparent,transparent 39px,#E7EAF3 39px,#E7EAF3 40px),#F7F8FC}
.site-shell .map .pin{position:absolute;left:50%;top:46%;transform:translate(-50%,-50%);width:56px;height:56px;border-radius:50%;background:var(--grad);display:grid;place-items:center;color:#fff;box-shadow:0 16px 30px -10px rgba(61,90,254,.6);z-index:2}
.site-shell .map .pin svg{width:28px;height:28px}
.site-shell .map .pin::before{content:"";position:absolute;inset:-12px;border-radius:50%;border:2px solid rgba(61,90,254,.35);animation:pulse 2.2s ease-out infinite}
@keyframes pulse{0%{transform:scale(.6);opacity:.85}100%{transform:scale(1.7);opacity:0}}
.site-shell .map .addr{position:absolute;left:50%;bottom:22px;transform:translateX(-50%);background:#fff;border:1px solid var(--border);border-radius:999px;padding:10px 20px;font-weight:700;font-size:14px;box-shadow:var(--sh-sm);white-space:nowrap;z-index:2}

/* ===== CTA ===== */
.site-shell .cta-panel{background:var(--grad);border-radius:var(--r-lg);padding:60px 48px;text-align:center;color:#fff;position:relative;overflow:hidden}
.site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.4;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.4),transparent 55%)}
.site-shell .cta-panel h2{color:#fff;margin-bottom:14px;position:relative}
.site-shell .cta-panel p{color:rgba(255,255,255,.85);margin-bottom:28px;position:relative;max-width:520px;margin-left:auto;margin-right:auto}
.site-shell .cta-actions{display:flex;gap:12px;justify-content:center;position:relative;flex-wrap:wrap}

/* ===== REVEAL ===== */
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}

/* ===== ФУТЕР ===== */
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}

/* ===== АДАПТИВ ===== */
@media(max-width:1024px){
  .site-shell .contact-grid{grid-template-columns:1fr;gap:24px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
}
@media(max-width:760px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .phero{padding:112px 0 12px}
  .site-shell .section{padding:48px 0 60px}
  .site-shell .form-card{padding:26px}
  .site-shell .cta-panel{padding:48px 24px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
  .site-shell h2{font-size:28px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}

/* ===== features.html ===== */
/* ===== ТОКЕНЫ ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --info:#3B82F6; --teal:#14B8A6; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* ===== ТИПОГРАФИКА ===== */
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:-.02em;font-weight:800}
.site-shell h2{font-size:clamp(28px,4vw,44px)}
.site-shell h3{font-size:21px;letter-spacing:-.01em}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:560px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .sec-head{max-width:660px;margin:0 auto 56px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}

/* ===== КНОПКИ ===== */
.site-shell .btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%;justify-content:center}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-white:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(0,0,0,.4)}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

/* ===== TOAST ===== */
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}

/* ===== ЛОГО / ШАПКА ===== */
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover{color:var(--ink)}
.site-shell .nav a:hover::after, .site-shell .nav a.active::after{width:100%}
.site-shell .nav a.active{color:var(--ink)}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

/* ===== HERO ===== */
.site-shell .hero{position:relative;padding:148px 0 70px;overflow:hidden}
.site-shell .hero__bg{position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 80% 20%,rgba(124,58,237,.18),transparent 70%),radial-gradient(closest-side at 92% 60%,rgba(61,90,254,.16),transparent 70%)}
.site-shell .hero__dots{position:absolute;inset:0;z-index:-1;opacity:.5;background-image:radial-gradient(rgba(13,27,62,.07) 1.3px,transparent 1.3px);background-size:26px 26px;-webkit-mask:linear-gradient(180deg,#000,transparent 75%);mask:linear-gradient(180deg,#000,transparent 75%)}
.site-shell .hero__grid{display:grid;grid-template-columns:1.04fr 1fr;gap:48px;align-items:center}
.site-shell .hero h1{font-size:clamp(34px,5vw,56px);margin:6px 0 20px}
.site-shell .hero .lead{margin-bottom:28px}
.site-shell .hero__actions{display:flex;gap:14px;flex-wrap:wrap}
.site-shell .trust{display:flex;align-items:center;gap:18px;margin-top:24px;color:var(--muted);font-size:14px;font-weight:600;flex-wrap:wrap}
.site-shell .trust span{display:inline-flex;align-items:center;gap:7px}
.site-shell .trust .dot{width:6px;height:6px;border-radius:50%;background:var(--green)}
.site-shell .pill-badge{display:inline-flex;align-items:center;gap:8px;background:var(--lav);color:var(--blue);font-weight:700;font-size:13px;padding:7px 14px;border-radius:999px;margin-bottom:6px}
.site-shell .pill-badge svg{width:15px;height:15px}
.site-shell .hero__visual{position:relative}

/* ===== ПОДНАВИГАЦИЯ ===== */
.site-shell .subnav{position:sticky;top:88px;z-index:40;background:rgba(255,255,255,.88);backdrop-filter:blur(12px);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.site-shell .subnav__inner{display:flex;gap:8px;overflow-x:auto;padding:13px 0;scrollbar-width:none}
.site-shell .subnav__inner::-webkit-scrollbar{display:none}
.site-shell .subnav a{flex:none;padding:9px 16px;border-radius:999px;font-weight:700;font-size:14px;color:var(--ink-2);border:1px solid var(--border);background:#fff;transition:.2s;white-space:nowrap}
.site-shell .subnav a:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .subnav a.active{background:var(--grad);color:#fff;border-color:transparent}

/* ===== СЕКЦИИ / ЗИГЗАГ ===== */
.site-shell .section{padding:80px 0}
.site-shell .section.soft{background:var(--soft)}
.site-shell .ico-chip{width:52px;height:52px;border-radius:15px;background:var(--grad);display:grid;place-items:center;color:#fff;margin-bottom:18px}
.site-shell .ico-chip svg{width:25px;height:25px}
.site-shell .feature-block{scroll-margin-top:160px}
.site-shell .zig{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:30px}
.site-shell .zig.flip .zig__media{order:2}
.site-shell .zig__txt .eyebrow{margin-bottom:12px}
.site-shell .zig__txt h2{margin-bottom:18px;font-size:clamp(24px,3vw,34px)}
.site-shell .zig__txt .lead{margin-bottom:24px}
.site-shell .checks{display:flex;flex-direction:column;gap:13px}
.site-shell .checks li{display:flex;gap:12px;align-items:flex-start;font-weight:600;font-size:15.5px}
.site-shell .checks .ci{width:24px;height:24px;border-radius:8px;background:rgba(34,197,94,.14);color:var(--green);display:grid;place-items:center;flex:none;margin-top:1px}
.site-shell .checks .ci svg{width:15px;height:15px}

/* ===== ПАНЕЛЬ / МОКАПЫ ===== */
.site-shell .panel{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);box-shadow:var(--sh);padding:24px;position:relative}
.site-shell .panel::after{content:"";position:absolute;inset:0;z-index:-1;border-radius:32px;background:var(--grad);filter:blur(40px);opacity:.16;transform:scale(.9)}
.site-shell .p-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.site-shell .p-head b{font-size:15px;font-weight:800}
.site-shell .p-head .nav-mini{display:flex;gap:6px}
.site-shell .p-head .nav-mini i{width:26px;height:26px;border-radius:8px;background:var(--soft);display:grid;place-items:center;color:var(--muted)}
.site-shell .p-head .nav-mini svg{width:15px;height:15px}
/* booking */
.site-shell .bk-row{display:flex;gap:8px;margin-bottom:12px;flex-wrap:wrap}
.site-shell .chip{padding:8px 14px;border-radius:11px;border:1px solid var(--border);font-size:13px;font-weight:700;background:#fff}
.site-shell .chip.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .bk-label{font-size:12px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin:14px 0 9px}
.site-shell .slots{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:18px}
.site-shell .slot{padding:9px 0;text-align:center;border-radius:10px;border:1px solid var(--border);font-size:13px;font-weight:700}
.site-shell .slot.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .slot.off{color:#C2C7D6;background:var(--soft)}
/* calendar */
.site-shell .week{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-bottom:18px}
.site-shell .week .d{text-align:center;padding:6px 0;border-radius:12px}
.site-shell .week .d small{display:block;font-size:11px;color:var(--muted);font-weight:600;margin-bottom:5px}
.site-shell .week .d b{font-size:14px;font-weight:700;display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%}
.site-shell .week .d.active b{background:var(--grad);color:#fff;box-shadow:0 6px 14px -6px rgba(61,90,254,.6)}
.site-shell .appt{display:flex;align-items:center;gap:13px;padding:11px 13px;border-radius:13px;margin-bottom:8px;border:1px solid var(--border);background:#fff}
.site-shell .appt.hl{border-color:transparent;background:linear-gradient(120deg,rgba(61,90,254,.08),rgba(124,58,237,.08));box-shadow:var(--sh-sm)}
.site-shell .appt .t{font-weight:800;font-size:13px;width:42px;color:var(--ink)}
.site-shell .appt .who{font-weight:600;font-size:14px;flex:1}
.site-shell .appt .sub{font-size:12px;color:var(--muted);font-weight:600}
.site-shell .appt .st{width:9px;height:9px;border-radius:50%}
/* crm */
.site-shell .crm-head{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.site-shell .ava{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:800;font-size:18px;flex:none}
.site-shell .crm-head .nm b{font-size:16px;font-weight:800;display:block}
.site-shell .crm-head .nm span{font-size:13px;color:var(--muted)}
.site-shell .tags{display:flex;gap:7px;margin:0 0 16px;flex-wrap:wrap}
.site-shell .tag{font-size:11px;font-weight:700;padding:5px 11px;border-radius:999px;background:var(--lav);color:var(--blue)}
.site-shell .hist{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-top:1px solid var(--border);font-size:13.5px}
.site-shell .hist .sv{font-weight:600}
.site-shell .hist .pr{font-weight:800}
/* reminders */
.site-shell .rem-row{display:flex;align-items:center;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--border);font-weight:700;font-size:14px}
.site-shell .rem-row .ch{display:flex;align-items:center;gap:11px}
.site-shell .rem-row .ch i{width:32px;height:32px;border-radius:9px;background:var(--lav);color:var(--blue);display:grid;place-items:center}
.site-shell .rem-row .ch i svg{width:17px;height:17px}
.site-shell .sw{width:42px;height:24px;border-radius:999px;background:#D7DCEA;position:relative;transition:.2s;flex:none}
.site-shell .sw::after{content:"";position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#fff;transition:.2s;box-shadow:0 1px 3px rgba(0,0,0,.2)}
.site-shell .sw.on{background:var(--grad)}
.site-shell .sw.on::after{left:21px}
.site-shell .bubble{margin-top:16px;background:linear-gradient(120deg,rgba(61,90,254,.10),rgba(124,58,237,.10));border-radius:14px 14px 14px 4px;padding:13px 15px;font-size:13.5px;color:var(--ink-2);max-width:90%}
.site-shell .bubble b{font-weight:800}
/* masters */
.site-shell .mst-row{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px solid var(--border)}
.site-shell .mst-row .ava{width:40px;height:40px;font-size:14px}
.site-shell .mst-row .info{flex:1}
.site-shell .mst-row .info b{font-size:14px;font-weight:800;display:block}
.site-shell .mst-row .info span{font-size:12px;color:var(--muted)}
.site-shell .mst-row .load{width:96px;flex:none}
.site-shell .mst-row .load .bar{height:6px;border-radius:6px;background:var(--lav);overflow:hidden;margin-bottom:4px}
.site-shell .mst-row .load .bar i{display:block;height:100%;background:var(--grad)}
.site-shell .mst-row .load small{font-size:11px;color:var(--muted);font-weight:700}
/* analytics */
.site-shell .an-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:18px}
.site-shell .an-stat{background:var(--soft);border-radius:13px;padding:13px}
.site-shell .an-stat small{font-size:11px;color:var(--muted);font-weight:700}
.site-shell .an-stat b{font-size:18px;font-weight:800;display:block;margin-top:3px}
.site-shell .an-stat em{font-style:normal;font-size:11px;font-weight:700;color:var(--green)}
.site-shell .chartbox{background:var(--soft);border-radius:14px;padding:16px 14px 6px}
/* browser (site) */
.site-shell .browser{background:#fff;border:1px solid var(--border);border-radius:20px;box-shadow:var(--sh-lg);overflow:hidden;position:relative;z-index:2}
.site-shell .browser::after{content:"";position:absolute;inset:0;z-index:-1;border-radius:30px;background:var(--grad);filter:blur(42px);opacity:.16;transform:scale(.92)}
.site-shell .browser__bar{display:flex;align-items:center;gap:12px;padding:11px 15px;background:var(--soft);border-bottom:1px solid var(--border)}
.site-shell .browser__bar .dots{display:flex;gap:6px}
.site-shell .browser__bar .dots i{width:11px;height:11px;border-radius:50%}
.site-shell .browser__url{flex:1;background:#fff;border:1px solid var(--border);border-radius:999px;padding:7px 14px;font-size:12.5px;font-weight:600;color:var(--ink-2);display:flex;align-items:center;gap:7px}
.site-shell .browser__url svg{width:13px;height:13px;color:var(--green)}
.site-shell .site-nav{display:flex;align-items:center;gap:8px;padding:13px 18px;border-bottom:1px solid var(--border)}
.site-shell .site-nav .brand{font-weight:800;font-size:13.5px;display:flex;align-items:center;gap:7px}
.site-shell .site-nav .brand .dot{width:18px;height:18px;border-radius:6px;background:var(--grad)}
.site-shell .site-nav .sn{margin-left:auto;font-size:11.5px;color:var(--muted);font-weight:600}
.site-shell .site-nav .bk, .site-shell .site-hero .bk{background:var(--grad);color:#fff;font-weight:700;border-radius:999px}
.site-shell .site-nav .bk{font-size:11.5px;padding:7px 13px}
.site-shell .site-hero{padding:28px 22px;background:linear-gradient(135deg,#EEF0FF,#F6ECFF);text-align:center}
.site-shell .site-hero h5{font-size:20px;font-weight:800;letter-spacing:-.02em;margin-bottom:8px}
.site-shell .site-hero p{font-size:12.5px;color:var(--muted);margin-bottom:14px}
.site-shell .site-hero .bk{display:inline-block;font-size:12.5px;padding:10px 22px}
.site-shell .site-svc{display:grid;grid-template-columns:repeat(3,1fr);gap:11px;padding:18px}
.site-shell .svc{border:1px solid var(--border);border-radius:13px;padding:12px}
.site-shell .svc .ph{height:42px;border-radius:9px;background:var(--lav);margin-bottom:10px}
.site-shell .svc b{font-size:12.5px;font-weight:800;display:block;margin-bottom:4px}
.site-shell .svc-row{display:flex;justify-content:space-between;align-items:baseline}
.site-shell .svc span{font-size:11px;color:var(--muted)}
.site-shell .svc em{font-style:normal;color:var(--blue);font-weight:800;font-size:12.5px}
/* app / phone */
.site-shell .app-stage{background:linear-gradient(135deg,#EEF0FF,#F3ECFF);border:1px solid var(--border);border-radius:var(--r-lg);padding:34px;box-shadow:var(--sh);display:grid;place-items:center}
.site-shell .phone{width:212px;background:#fff;border-radius:32px;border:1px solid var(--border);box-shadow:var(--sh-lg);padding:14px}
.site-shell .phone .scr{background:var(--soft);border-radius:22px;padding:14px;min-height:310px}
.site-shell .phone .topbar{height:6px;width:46px;background:#D9DEEA;border-radius:6px;margin:0 auto 14px}
.site-shell .phone .ttl{font-size:13px;font-weight:800;margin-bottom:10px}
.site-shell .phone .mini{background:#fff;border:1px solid var(--border);border-radius:12px;padding:10px 12px;margin-bottom:9px;display:flex;align-items:center;gap:9px;font-size:12px;font-weight:600}
.site-shell .phone .mini .c{width:9px;height:9px;border-radius:50%;flex:none}
.site-shell .phone .mini .tm{margin-left:auto;color:var(--muted);font-weight:700}

/* ===== СЕТКА ДОП-ФУНКЦИЙ ===== */
.site-shell .feat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.site-shell .feat-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:26px 24px;transition:.3s}
.site-shell .feat-card:hover{transform:translateY(-6px);box-shadow:var(--sh)}
.site-shell .feat-card .ico-chip{width:46px;height:46px;border-radius:13px;background:var(--lav);color:var(--blue);margin-bottom:16px}
.site-shell .feat-card .ico-chip svg{width:23px;height:23px}
.site-shell .feat-card h3{font-size:17px;margin-bottom:8px}
.site-shell .feat-card p{color:var(--muted);font-size:14px}

/* ===== ДО / ПОСЛЕ ===== */
.site-shell .cmp{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.site-shell .cmp-col{border-radius:var(--r);padding:30px 28px;border:1px solid var(--border)}
.site-shell .cmp-col.bad{background:var(--soft)}
.site-shell .cmp-col.good{background:#fff;border-color:transparent;box-shadow:var(--sh);position:relative}
.site-shell .cmp-col.good::before{content:"";position:absolute;inset:-1.5px;border-radius:23px;background:var(--grad);z-index:-1}
.site-shell .cmp-col h3{margin-bottom:18px;display:flex;align-items:center;gap:11px;font-size:19px}
.site-shell .cmp-col .tagx{font-size:12px;font-weight:700;padding:4px 12px;border-radius:999px}
.site-shell .cmp-col.bad .tagx{background:#EDEFF4;color:var(--muted)}
.site-shell .cmp-col.good .tagx{background:var(--grad);color:#fff}
.site-shell .cmp-list li{display:flex;gap:11px;align-items:flex-start;padding:9px 0;font-size:15px;font-weight:600;color:var(--ink-2)}
.site-shell .cmp-list .ic{width:22px;height:22px;border-radius:7px;display:grid;place-items:center;flex:none;margin-top:1px}
.site-shell .cmp-list .ic svg{width:14px;height:14px}
.site-shell .cmp .bad .ic{background:rgba(239,68,68,.12);color:var(--red)}
.site-shell .cmp .good .ic{background:rgba(34,197,94,.14);color:var(--green)}

/* ===== CTA ===== */
.site-shell .cta-panel{background:var(--grad);border-radius:var(--r-lg);padding:60px 48px;text-align:center;color:#fff;position:relative;overflow:hidden}
.site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.4;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.4),transparent 55%)}
.site-shell .cta-panel h2{color:#fff;margin-bottom:14px;position:relative}
.site-shell .cta-panel p{color:rgba(255,255,255,.85);margin-bottom:28px;position:relative;max-width:520px;margin-left:auto;margin-right:auto}
.site-shell .cta-actions{display:flex;gap:12px;justify-content:center;position:relative;flex-wrap:wrap}

/* ===== REVEAL ===== */
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}
.site-shell .stagger>*{opacity:0;transform:translateY(24px);transition:.6s cubic-bezier(.2,.7,.3,1)}
.site-shell .stagger.in>*{opacity:1;transform:none}
.site-shell .stagger.in>*:nth-child(2){transition-delay:.07s}
.site-shell .stagger.in>*:nth-child(3){transition-delay:.14s}
.site-shell .stagger.in>*:nth-child(4){transition-delay:.21s}
.site-shell .stagger.in>*:nth-child(5){transition-delay:.28s}
.site-shell .stagger.in>*:nth-child(6){transition-delay:.35s}
.site-shell .stagger.in>*:nth-child(7){transition-delay:.42s}
.site-shell .stagger.in>*:nth-child(8){transition-delay:.49s}

/* ===== ФУТЕР ===== */
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}

/* ===== АДАПТИВ ===== */
@media(max-width:1024px){
  .site-shell .hero__grid{grid-template-columns:1fr;gap:48px}
  .site-shell .hero__visual{max-width:520px;margin:0 auto;width:100%}
  .site-shell .zig{grid-template-columns:1fr;gap:36px;margin-bottom:14px}
  .site-shell .zig.flip .zig__media{order:0}
  .site-shell .feat-grid{grid-template-columns:repeat(2,1fr)}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
}
@media(max-width:760px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .hero{padding:116px 0 56px}
  .site-shell .subnav{top:74px}
  .site-shell .feature-block{scroll-margin-top:140px}
  .site-shell .section{padding:58px 0}
  .site-shell .feat-grid{grid-template-columns:1fr}
  .site-shell .cmp{grid-template-columns:1fr}
  .site-shell .cta-panel{padding:48px 24px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
  .site-shell h2{font-size:28px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal, .site-shell .stagger>*{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}

/* ===== forgot-password.html ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --r:22px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{font-family:var(--font);color:var(--ink);background:#fff;line-height:1.55;font-size:16px;-webkit-font-smoothing:antialiased}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{display:block;max-width:100%}
.site-shell ul{list-style:none}

.site-shell .auth{min-height:100vh;display:grid;grid-template-columns:1.05fr 1fr}
.site-shell .auth__brand{position:relative;background:var(--grad);color:#fff;padding:48px 56px;display:flex;flex-direction:column;overflow:hidden}
.site-shell .auth__brand::before{content:"";position:absolute;width:420px;height:420px;border-radius:50%;background:radial-gradient(closest-side,rgba(255,255,255,.35),transparent 70%);top:-120px;right:-120px}
.site-shell .auth__brand::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(closest-side,rgba(255,255,255,.22),transparent 70%);bottom:-120px;left:-100px}
.site-shell .auth__brand>*{position:relative;z-index:1}
.site-shell .brand-logo img{height:34px;filter:brightness(0) invert(1)}
.site-shell .auth__brand h2{font-family:var(--display);font-weight:700;font-size:clamp(26px,2.7vw,38px);line-height:1.15;letter-spacing:-.02em;margin:auto 0 28px}
.site-shell .auth-benefits{display:flex;flex-direction:column;gap:15px;margin-bottom:32px}
.site-shell .auth-benefits li{display:flex;gap:12px;align-items:flex-start;font-weight:600;font-size:16px}
.site-shell .auth-benefits .ci{width:24px;height:24px;border-radius:8px;background:rgba(255,255,255,.2);display:grid;place-items:center;flex:none;margin-top:1px}
.site-shell .auth-benefits .ci svg{width:15px;height:15px}
.site-shell .auth-quote{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:20px 22px;backdrop-filter:blur(6px)}
.site-shell .auth-quote p{font-size:14.5px;line-height:1.5;margin-bottom:14px;color:rgba(255,255,255,.95)}
.site-shell .auth-quote .who{display:flex;align-items:center;gap:11px}
.site-shell .auth-quote .ava{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.25);display:grid;place-items:center;font-weight:800;font-size:13px;flex:none}
.site-shell .auth-quote .who b{font-size:14px;display:block;font-weight:800}
.site-shell .auth-quote .who span{font-size:12.5px;color:rgba(255,255,255,.8)}

.site-shell .auth__form{display:flex;align-items:center;justify-content:center;padding:44px 24px;position:relative;height: 100vh;    overflow-y: scroll;}
.site-shell .back-link{position:absolute;top:24px;right:28px;font-size:14px;font-weight:700;color:var(--muted);display:inline-flex;align-items:center;gap:7px;transition:.2s}
.site-shell .back-link:hover{color:var(--blue)}
.site-shell .back-link svg{width:16px;height:16px}
.site-shell .auth-card{width:100%;max-width:412px}
.site-shell .m-logo{display:none;margin-bottom:26px}
.site-shell .m-logo img{height:32px}
.site-shell .auth-card h1{font-size:27px;letter-spacing:-.02em;margin-bottom:8px}
.site-shell .auth-card .sub{color:var(--muted);margin-bottom:26px;font-size:15px}
.site-shell .field{margin-bottom:15px}
.site-shell .field label{display:block;font-weight:700;font-size:13.5px;margin-bottom:7px}
.site-shell .field .ipt{width:100%;padding:13px 15px;border:1.5px solid var(--border);border-radius:12px;font-family:var(--font);font-size:15px;transition:.2s;background:#fff;color:var(--ink)}
.site-shell .field .ipt::placeholder{color:#aab1c4}
.site-shell .field .ipt:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.12)}
.site-shell .field.err .ipt{border-color:var(--red)}
.site-shell .field .msg{font-size:12.5px;color:var(--red);margin-top:6px;display:none}
.site-shell .field.err .msg{display:block}
.site-shell .field .suffix{font-size:13px;color:var(--muted);font-weight:600;margin-top:6px}
.site-shell .hint{display:flex;gap:10px;align-items:flex-start;background:var(--soft);border:1px solid var(--border);border-radius:14px;padding:13px 14px;margin:2px 0 20px;color:var(--ink-2);font-size:13.5px;line-height:1.45}
.site-shell .hint svg{width:18px;height:18px;color:var(--blue);flex:none;margin-top:1px}
.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:15px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);width:100%}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-line{background:#fff;color:var(--ink);border:1.5px solid var(--border);margin-top:10px}
.site-shell .btn-line:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .auth-alt{text-align:center;margin-top:24px;font-size:14.5px;color:var(--muted)}
.site-shell .auth-alt a{color:var(--blue);font-weight:700}
.site-shell .auth-ok{display:none;text-align:center;padding:10px 0}
.site-shell .auth-ok.show{display:block}
.site-shell .auth-ok .circle{width:74px;height:74px;border-radius:50%;background:var(--grad);display:grid;place-items:center;margin:0 auto 22px;color:#fff;box-shadow:var(--sh)}
.site-shell .auth-ok .circle svg{width:36px;height:36px}
.site-shell .auth-ok h2{font-size:24px;margin-bottom:10px}
.site-shell .auth-ok p{color:var(--muted);margin-bottom:26px}

@media(max-width:900px){
  .site-shell .auth{grid-template-columns:1fr}
  .site-shell .auth__brand{display:none}
  .site-shell .m-logo{display:block}
  .site-shell .back-link{position:static;display:inline-flex;margin-bottom:22px}
  .site-shell .auth__form{padding:34px 22px;min-height:100vh;align-items:flex-start}
  .site-shell .auth-card{margin-top:8px}
}
@media(prefers-reduced-motion:reduce){.site-shell *{transition:none!important}}

/* ===== index.html ===== */
/* ============ ТОКЕНЫ ============ */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --grad-bright:linear-gradient(120deg,#4F6BFF 0%,#8B43F0 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --info:#3B82F6; --teal:#14B8A6; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{
  font-family:var(--font);color:var(--ink);background:var(--bg);
  line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell section{scroll-margin-top:88px}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* ============ ТИПОГРАФИКА ============ */
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:-.02em;font-weight:800}
.site-shell h2{font-size:clamp(28px,4vw,46px)}
.site-shell h3{font-size:21px;letter-spacing:-.01em}
.site-shell .eyebrow{
  font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:16px;
}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:560px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .sec-head{max-width:660px;margin:0 auto 56px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}

/* ============ КНОПКИ ============ */
.site-shell .btn{
  display:inline-flex;align-items:center;gap:9px;font-family:var(--font);
  font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;
  border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);
  white-space:nowrap;
}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%;justify-content:center}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-white:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(0,0,0,.4)}

.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

/* ============ TOAST ============ */
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;
  padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);
  z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}

/* ============ ЛОГОТИП ============ */
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo__mark{width:38px;height:38px;flex:none}
.site-shell .logo__txt{font-weight:800;font-size:22px;letter-spacing:.02em;color:var(--ink)}
.site-shell .logo-img{height:34px;width:auto;display:block}

/* ============ ШАПКА ============ */
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{
  display:flex;align-items:center;gap:32px;height:74px;
  margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;
  transition:.3s;
}
.site-shell .header.scrolled .header__inner{
  background:rgba(255,255,255,.82);backdrop-filter:blur(14px);
  box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6);
}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover{color:var(--ink)}
.site-shell .nav a:hover::after{width:100%}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}

/* ============ HERO ============ */
.site-shell .hero{position:relative;padding:150px 0 90px;overflow:hidden}
.site-shell .hero__bg{position:absolute;inset:0;z-index:-1;background:
  radial-gradient(closest-side at 78% 22%,rgba(124,58,237,.18),transparent 70%),
  radial-gradient(closest-side at 90% 60%,rgba(61,90,254,.16),transparent 70%);
}
.site-shell .hero__dots{position:absolute;inset:0;z-index:-1;opacity:.5;
  background-image:radial-gradient(rgba(13,27,62,.07) 1.3px,transparent 1.3px);
  background-size:26px 26px;-webkit-mask:linear-gradient(180deg,#000,transparent 70%);mask:linear-gradient(180deg,#000,transparent 70%);
}
.site-shell .hero__grid{display:grid;grid-template-columns:1.02fr 1.1fr;gap:50px;align-items:center}
.site-shell .hero h1{font-size:clamp(36px,5.4vw,62px);margin:6px 0 22px}
.site-shell .hero .lead{margin-bottom:30px}
.site-shell .hero__actions{display:flex;gap:14px;flex-wrap:wrap}
.site-shell .trust{display:flex;align-items:center;gap:18px;margin-top:26px;color:var(--muted);font-size:14px;font-weight:600;flex-wrap:wrap}
.site-shell .trust span{display:inline-flex;align-items:center;gap:7px}
.site-shell .trust .dot{width:6px;height:6px;border-radius:50%;background:var(--green)}
.site-shell .pill-badge{display:inline-flex;align-items:center;gap:8px;background:var(--lav);color:var(--blue);
  font-weight:700;font-size:13px;padding:7px 14px;border-radius:999px;margin-bottom:6px}
.site-shell .pill-badge svg{width:15px;height:15px}

/* ============ МОКАП ПРИЛОЖЕНИЯ (HERO) ============ */
.site-shell .hero__visual{position:relative}
.site-shell .mock{
  background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);overflow:hidden;position:relative;z-index:2;
}
.site-shell .mock__bar{display:flex;align-items:center;gap:8px;padding:13px 18px;border-bottom:1px solid var(--border)}
.site-shell .mock__bar .dots{display:flex;gap:6px}
.site-shell .mock__bar .dots i{width:10px;height:10px;border-radius:50%;background:#E2E5EE}
.site-shell .mock__bar .mlogo{display:flex;align-items:center;gap:7px;margin-left:6px;font-weight:800;font-size:13px}
.site-shell .mock__bar .mlogo svg{width:18px;height:18px}
.site-shell .mock__bar .mtab{margin-left:auto;font-size:12px;color:var(--muted);font-weight:600}
.site-shell .mock__body{display:flex;min-height:330px}
.site-shell .mrail{width:58px;background:var(--grad);display:flex;flex-direction:column;align-items:center;gap:6px;padding:16px 0}
.site-shell .mrail button{width:38px;height:38px;border-radius:11px;border:none;background:transparent;color:rgba(255,255,255,.7);display:grid;place-items:center;cursor:pointer}
.site-shell .mrail button svg{width:19px;height:19px}
.site-shell .mrail button.on{background:rgba(255,255,255,.22);color:#fff}
.site-shell .mmain{flex:1;padding:20px 22px}
.site-shell .mhead{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mhead h4{font-size:17px;font-weight:800}
.site-shell .mhead .nav-mini{display:flex;gap:6px}
.site-shell .mhead .nav-mini i{width:26px;height:26px;border-radius:8px;background:var(--soft);display:grid;place-items:center;color:var(--muted)}
.site-shell .mhead .nav-mini svg{width:15px;height:15px}
.site-shell .week{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;margin-bottom:20px}
.site-shell .week .d{text-align:center;padding:8px 0;border-radius:12px}
.site-shell .week .d small{display:block;font-size:11px;color:var(--muted);font-weight:600;margin-bottom:5px}
.site-shell .week .d b{font-size:15px;font-weight:700;display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%}
.site-shell .week .d.active b{background:var(--grad);color:#fff;box-shadow:0 6px 14px -6px rgba(61,90,254,.6)}
.site-shell .appt{display:flex;align-items:center;gap:13px;padding:11px 13px;border-radius:13px;margin-bottom:8px;border:1px solid var(--border);background:#fff}
.site-shell .appt.hl{border-color:transparent;background:linear-gradient(120deg,rgba(61,90,254,.08),rgba(124,58,237,.08));box-shadow:var(--sh-sm)}
.site-shell .appt .t{font-weight:800;font-size:13px;width:42px;color:var(--ink)}
.site-shell .appt .who{font-weight:600;font-size:14px;flex:1}
.site-shell .appt .st{width:9px;height:9px;border-radius:50%}

/* парящие карточки */
.site-shell .float{position:absolute;background:#fff;border:1px solid var(--border);border-radius:16px;
  box-shadow:var(--sh);padding:14px 16px;z-index:3;animation:floaty 6s ease-in-out infinite}
.site-shell .float-rev{right:-26px;top:34px;width:188px}
.site-shell .float-rev .lbl{font-size:12px;color:var(--muted);font-weight:600;margin-bottom:3px}
.site-shell .float-rev .val{display:flex;align-items:baseline;gap:8px}
.site-shell .float-rev .val b{font-size:21px;font-weight:800}
.site-shell .float-rev .val em{font-style:normal;color:var(--green);font-weight:700;font-size:13px}
.site-shell .float-rev svg{margin-top:8px;width:100%;height:34px;display:block}
.site-shell .float-notif{left:-30px;bottom:40px;display:flex;align-items:center;gap:11px;animation-delay:-3s}
.site-shell .float-notif .ico{width:38px;height:38px;border-radius:11px;background:var(--grad);display:grid;place-items:center;color:#fff;flex:none}
.site-shell .float-notif .ico svg{width:19px;height:19px}
.site-shell .float-notif .lbl{font-size:11px;color:var(--muted);font-weight:600}
.site-shell .float-notif b{font-size:13.5px;font-weight:800;display:block}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

/* ============ ПОЛОСА ДОВЕРИЯ ============ */
.site-shell .trustbar{padding:40px 0 8px}
.site-shell .trustbar__title{text-align:center;color:var(--muted);font-weight:700;font-size:14px;letter-spacing:.04em;text-transform:uppercase;margin-bottom:26px}
.site-shell .stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.site-shell .stat{text-align:center;padding:8px}
.site-shell .stat b{font-family:var(--display);font-weight:700;font-size:clamp(26px,3.4vw,38px);display:block;line-height:1}
.site-shell .stat .gradtext{display:block}
.site-shell .stat span{color:var(--muted);font-weight:600;font-size:14px;margin-top:8px;display:block}

/* ============ СЕКЦИИ-ОБЁРТКИ ============ */
.site-shell .section{padding:90px 0}
.site-shell .section.soft{background:var(--soft)}

/* ============ ЦЕННОСТИ ============ */
.site-shell .values{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.site-shell .val-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:28px 24px;transition:.3s}
.site-shell .val-card:hover{transform:translateY(-6px);box-shadow:var(--sh);border-color:transparent}
.site-shell .ico-chip{width:52px;height:52px;border-radius:15px;background:var(--grad);display:grid;place-items:center;color:#fff;margin-bottom:18px}
.site-shell .ico-chip svg{width:25px;height:25px}
.site-shell .val-card h3{margin-bottom:8px}
.site-shell .val-card p{color:var(--muted);font-size:15px}

/* ============ ВОЗМОЖНОСТИ (сетка) ============ */
.site-shell .feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.site-shell .feat-card{background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:30px 26px;position:relative;overflow:hidden;transition:.3s}
.site-shell .feat-card::before{content:"";position:absolute;inset:0;background:var(--grad);opacity:0;transition:.3s}
.site-shell .feat-card:hover{transform:translateY(-6px);box-shadow:var(--sh)}
.site-shell .feat-card .ico-chip{background:var(--lav);color:var(--blue);transition:.3s}
.site-shell .feat-card:hover .ico-chip{background:var(--grad);color:#fff}
.site-shell .feat-card h3{margin-bottom:9px}
.site-shell .feat-card p{color:var(--muted);font-size:15px}
.site-shell .center-link{text-align:center;margin-top:42px}
.site-shell .txt-link{display:inline-flex;align-items:center;gap:8px;font-weight:700;color:var(--blue)}
.site-shell .txt-link svg{width:18px;height:18px;transition:.25s}
.site-shell .txt-link:hover svg{transform:translateX(4px)}

/* ============ КАК ЭТО РАБОТАЕТ ============ */
.site-shell .how{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.site-shell .steps{display:flex;flex-direction:column;gap:14px}
.site-shell .step{display:flex;gap:18px;padding:22px;border-radius:var(--r);border:1px solid var(--border);background:#fff;transition:.3s}
.site-shell .step:hover{box-shadow:var(--sh-sm);transform:translateX(4px)}
.site-shell .step__num{font-family:var(--display);font-weight:700;font-size:20px;width:48px;height:48px;border-radius:14px;
  background:var(--grad);color:#fff;display:grid;place-items:center;flex:none}
.site-shell .step h3{margin-bottom:5px}
.site-shell .step p{color:var(--muted);font-size:15px}
.site-shell .how__art{position:relative}
.site-shell .how-illu{background:linear-gradient(135deg,#EEF0FF,#F3ECFF);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:38px;display:grid;place-items:center;box-shadow:var(--sh)}
.site-shell .how-illu .phone{width:200px;background:#fff;border-radius:30px;border:1px solid var(--border);box-shadow:var(--sh-lg);padding:14px}
.site-shell .how-illu .phone .scr{background:var(--soft);border-radius:20px;padding:14px;min-height:300px}
.site-shell .how-illu .phone .topbar{height:6px;width:46px;background:#D9DEEA;border-radius:6px;margin:0 auto 14px}
.site-shell .how-illu .mini{background:#fff;border:1px solid var(--border);border-radius:12px;padding:10px 12px;margin-bottom:9px;display:flex;align-items:center;gap:9px;font-size:12px;font-weight:600}
.site-shell .how-illu .mini .c{width:9px;height:9px;border-radius:50%}
.site-shell .how-illu .check-pop{width:64px;height:64px;border-radius:50%;background:var(--grad);display:grid;place-items:center;color:#fff;margin:18px auto 4px;box-shadow:0 14px 30px -10px rgba(61,90,254,.6)}
.site-shell .how-illu .check-pop svg{width:32px;height:32px}
.site-shell .how-illu .done{text-align:center;font-size:13px;font-weight:800}

/* ============ ЗИГЗАГ ФИЧИ ============ */
.site-shell .zig{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:96px}
.site-shell .zig:last-child{margin-bottom:0}
.site-shell .zig.flip .zig__media{order:2}
.site-shell .zig__txt .eyebrow{margin-bottom:12px}
.site-shell .zig__txt h2{margin-bottom:18px}
.site-shell .zig__txt .lead{margin-bottom:24px}
.site-shell .checks{display:flex;flex-direction:column;gap:13px;margin-bottom:6px}
.site-shell .checks li{display:flex;gap:12px;align-items:flex-start;font-weight:600;font-size:15.5px}
.site-shell .checks .ci{width:24px;height:24px;border-radius:8px;background:rgba(34,197,94,.14);color:var(--green);display:grid;place-items:center;flex:none;margin-top:1px}
.site-shell .checks .ci svg{width:15px;height:15px}

/* мини-мокапы для зигзагов */
.site-shell .panel{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);box-shadow:var(--sh);padding:24px;position:relative}
.site-shell .panel::after{content:"";position:absolute;inset:0;z-index:-1;border-radius:32px;background:var(--grad);filter:blur(40px);opacity:.16;transform:scale(.9)}
/* booking */
.site-shell .bk-row{display:flex;gap:8px;margin-bottom:12px;flex-wrap:wrap}
.site-shell .chip{padding:8px 14px;border-radius:11px;border:1px solid var(--border);font-size:13px;font-weight:700;background:#fff}
.site-shell .chip.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .bk-label{font-size:12px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin:14px 0 9px}
.site-shell .slots{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:18px}
.site-shell .slot{padding:9px 0;text-align:center;border-radius:10px;border:1px solid var(--border);font-size:13px;font-weight:700}
.site-shell .slot.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .slot.off{color:#C2C7D6;background:var(--soft)}
/* crm */
.site-shell .crm-head{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.site-shell .ava{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:800;font-size:18px;flex:none}
.site-shell .crm-head .nm b{font-size:16px;font-weight:800;display:block}
.site-shell .crm-head .nm span{font-size:13px;color:var(--muted)}
.site-shell .tags{display:flex;gap:7px;margin:0 0 16px}
.site-shell .tag{font-size:11px;font-weight:700;padding:5px 11px;border-radius:999px;background:var(--lav);color:var(--blue)}
.site-shell .hist{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-top:1px solid var(--border);font-size:13.5px}
.site-shell .hist .sv{font-weight:600}
.site-shell .hist .pr{font-weight:800}
/* analytics */
.site-shell .an-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:18px}
.site-shell .an-stat{background:var(--soft);border-radius:13px;padding:13px}
.site-shell .an-stat small{font-size:11px;color:var(--muted);font-weight:700}
.site-shell .an-stat b{font-size:18px;font-weight:800;display:block;margin-top:3px}
.site-shell .an-stat em{font-style:normal;font-size:11px;font-weight:700;color:var(--green)}
.site-shell .chartbox{background:var(--soft);border-radius:14px;padding:16px 14px 6px}

/* ============ ОТРАСЛИ ============ */
.site-shell .ind-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.site-shell .ind-card{border-radius:var(--r);overflow:hidden;border:1px solid var(--border);background:#fff;transition:.3s;cursor:pointer}
.site-shell .ind-card:hover{transform:translateY(-6px);box-shadow:var(--sh)}
.site-shell .ind-card__media{height:158px;position:relative;display:grid;place-items:center;overflow:hidden}
.site-shell .ind-card__media .ic{width:62px;height:62px;color:#fff;opacity:.95;position:relative;z-index:1}
.site-shell .ind-card__media .ic svg{width:100%;height:100%}
.site-shell .ind-card__media::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 70% 20%,rgba(255,255,255,.25),transparent 60%)}
.site-shell .ind-beauty{background:linear-gradient(135deg,#5b6dff,#8a44e6)}
.site-shell .ind-fitness{background:linear-gradient(135deg,#3D5AFE,#6d3ff0)}
.site-shell .ind-medical{background:linear-gradient(135deg,#4f6bff,#9c43d6)}
.site-shell .ind-edu{background:linear-gradient(135deg,#5466ff,#7c3aed)}
.site-shell .ind-auto{background:linear-gradient(135deg,#3b5bff,#7a3ff2)}
.site-shell .ind-spa{background:linear-gradient(135deg,#6a5cff,#8b43f0)}
.site-shell .ind-card__body{padding:20px 22px;display:flex;align-items:center;justify-content:space-between;gap:10px}
.site-shell .ind-card__body b{font-weight:800;font-size:16.5px}
.site-shell .ind-card__body .arr{color:var(--blue);opacity:0;transform:translateX(-6px);transition:.25s}
.site-shell .ind-card:hover .arr{opacity:1;transform:translateX(0)}
.site-shell .ind-card__body .arr svg{width:20px;height:20px}

/* ============ КОНСТРУКТОР САЙТА ============ */
.site-shell .builder{display:grid;grid-template-columns:1fr 1.05fr;gap:56px;align-items:center}
.site-shell .builder__txt h2{margin-bottom:18px}
.site-shell .builder__txt .lead{margin-bottom:24px}
.site-shell .builder-feats{display:grid;grid-template-columns:1fr 1fr;gap:13px;margin-bottom:26px}
.site-shell .builder-feats li{display:flex;gap:10px;align-items:center;font-weight:600;font-size:15px}
.site-shell .builder-feats .ci{width:24px;height:24px;border-radius:8px;background:var(--lav);color:var(--blue);display:grid;place-items:center;flex:none}
.site-shell .builder-feats .ci svg{width:15px;height:15px}
.site-shell .subdomain{display:inline-flex;align-items:center;background:var(--ink);color:#fff;border-radius:12px;padding:12px 18px;font-weight:700;font-size:14.5px;letter-spacing:.01em}
.site-shell .subdomain b{background:linear-gradient(120deg,#8ea2ff,#c79bff);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .subdomain .pre{color:rgba(255,255,255,.5);font-weight:600}
.site-shell .builder__media{position:relative}
.site-shell .browser{background:#fff;border:1px solid var(--border);border-radius:20px;box-shadow:var(--sh-lg);overflow:hidden;position:relative;z-index:2}
.site-shell .browser::after{content:"";position:absolute;inset:0;z-index:-1;border-radius:30px;background:var(--grad);filter:blur(42px);opacity:.16;transform:scale(.92)}
.site-shell .browser__bar{display:flex;align-items:center;gap:12px;padding:11px 15px;background:var(--soft);border-bottom:1px solid var(--border)}
.site-shell .browser__bar .dots{display:flex;gap:6px}
.site-shell .browser__bar .dots i{width:11px;height:11px;border-radius:50%}
.site-shell .browser__url{flex:1;background:#fff;border:1px solid var(--border);border-radius:999px;padding:7px 14px;font-size:12.5px;font-weight:600;color:var(--ink-2);display:flex;align-items:center;gap:7px}
.site-shell .browser__url svg{width:13px;height:13px;color:var(--green)}
.site-shell .site-nav{display:flex;align-items:center;gap:8px;padding:13px 18px;border-bottom:1px solid var(--border)}
.site-shell .site-nav .brand{font-weight:800;font-size:13.5px;display:flex;align-items:center;gap:7px}
.site-shell .site-nav .brand .dot{width:18px;height:18px;border-radius:6px;background:var(--grad)}
.site-shell .site-nav .sn{margin-left:auto;font-size:11.5px;color:var(--muted);font-weight:600}
.site-shell .site-nav .bk, .site-shell .site-hero .bk{background:var(--grad);color:#fff;font-weight:700;border-radius:999px}
.site-shell .site-nav .bk{font-size:11.5px;padding:7px 13px}
.site-shell .site-hero{padding:30px 22px;background:linear-gradient(135deg,#EEF0FF,#F6ECFF);text-align:center}
.site-shell .site-hero h5{font-size:21px;font-weight:800;letter-spacing:-.02em;margin-bottom:8px}
.site-shell .site-hero p{font-size:12.5px;color:var(--muted);margin-bottom:15px}
.site-shell .site-hero .bk{display:inline-block;font-size:12.5px;padding:10px 22px}
.site-shell .site-svc{display:grid;grid-template-columns:repeat(3,1fr);gap:11px;padding:18px}
.site-shell .svc{border:1px solid var(--border);border-radius:13px;padding:12px}
.site-shell .svc .ph{height:44px;border-radius:9px;background:var(--lav);margin-bottom:10px}
.site-shell .svc b{font-size:12.5px;font-weight:800;display:block;margin-bottom:4px}
.site-shell .svc-row{display:flex;justify-content:space-between;align-items:baseline}
.site-shell .svc span{font-size:11px;color:var(--muted)}
.site-shell .svc em{font-style:normal;color:var(--blue);font-weight:800;font-size:12.5px}
.site-shell .b-chip{position:absolute;background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:var(--sh);
  padding:10px 14px;font-size:12.5px;font-weight:700;display:flex;align-items:center;gap:8px;z-index:3;animation:floaty 6s ease-in-out infinite}
.site-shell .b-chip svg{width:16px;height:16px;color:var(--purple)}
.site-shell .b-chip-1{top:20px;right:-24px}
.site-shell .b-chip-2{bottom:34px;left:-26px;animation-delay:-3s}
.site-shell .b-chip-2 .pub{width:9px;height:9px;border-radius:50%;background:var(--green)}

/* ============ РЕЗУЛЬТАТЫ (тёмная) ============ */
.site-shell .results{background:var(--ink);color:#fff;border-radius:var(--r-lg);padding:64px 40px;position:relative;overflow:hidden}
.site-shell .results::before{content:"";position:absolute;inset:0;background:
  radial-gradient(closest-side at 12% 8%,rgba(124,58,237,.4),transparent 60%),
  radial-gradient(closest-side at 92% 96%,rgba(61,90,254,.4),transparent 60%);opacity:.6}
.site-shell .results__head{text-align:center;max-width:560px;margin:0 auto 48px;position:relative}
.site-shell .results__head h2{color:#fff}
.site-shell .results__head p{color:rgba(255,255,255,.7);margin-top:14px}
.site-shell .res-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative}
.site-shell .res{text-align:center}
.site-shell .res b{font-family:var(--display);font-weight:700;font-size:clamp(34px,5vw,54px);line-height:1;
  background:linear-gradient(120deg,#8ea2ff,#c79bff);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .res span{display:block;color:rgba(255,255,255,.72);font-weight:600;font-size:14.5px;margin-top:12px}

/* ============ ОТЗЫВЫ ============ */
.site-shell .reviews-wrap{position:relative}
.site-shell .carousel{display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:8px 4px 24px;scrollbar-width:none;-ms-overflow-style:none}
.site-shell .carousel::-webkit-scrollbar{display:none}
.site-shell .rev-card{flex:0 0 calc(33.333% - 16px);scroll-snap-align:start;background:#fff;border:1px solid var(--border);
  border-radius:var(--r);padding:30px 28px;display:flex;flex-direction:column;gap:16px;min-width:300px}
.site-shell .rev-stars{display:flex;gap:3px;color:var(--amber)}
.site-shell .rev-stars svg{width:18px;height:18px}
.site-shell .rev-card .q{font-size:16px;font-weight:500;color:var(--ink-2);flex:1;line-height:1.55}
.site-shell .rev-author{display:flex;align-items:center;gap:13px}
.site-shell .rev-author .ava{width:46px;height:46px;font-size:15px}
.site-shell .rev-author .info b{font-weight:800;font-size:15px;display:block}
.site-shell .rev-author .info span{color:var(--muted);font-size:13px}
.site-shell .carousel-ctrl{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:8px}
.site-shell .dots{display:flex;gap:9px}
.site-shell .dots button{width:9px;height:9px;border-radius:50%;border:none;background:#D4D9E6;cursor:pointer;transition:.25s;padding:0}
.site-shell .dots button.on{width:26px;border-radius:999px;background:var(--grad)}
.site-shell .car-btn{width:46px;height:46px;border-radius:50%;border:1px solid var(--border);background:#fff;cursor:pointer;display:grid;place-items:center;color:var(--ink);transition:.25s}
.site-shell .car-btn:hover{border-color:var(--blue);color:var(--blue);box-shadow:var(--sh-sm)}
.site-shell .car-btn svg{width:20px;height:20px}

/* ============ МОДУЛИ (таблица) ============ */
.site-shell .modtools{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-bottom:18px}
.site-shell .modsearch{position:relative;flex:1;min-width:240px}
.site-shell .modsearch svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted)}
.site-shell .modsearch input{width:100%;padding:13px 16px 13px 46px;border:1.5px solid var(--border);border-radius:999px;font-family:var(--font);font-size:15px;background:#fff;transition:.2s;color:var(--ink)}
.site-shell .modsearch input:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.1)}
.site-shell .modchips{display:flex;gap:8px;flex-wrap:wrap}
.site-shell .modchip{padding:9px 15px;border-radius:999px;border:1px solid var(--border);background:#fff;font-weight:700;font-size:13.5px;color:var(--ink-2);cursor:pointer;transition:.2s;font-family:var(--font)}
.site-shell .modchip:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .modchip.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .modtable-wrap{border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;background:#fff;box-shadow:var(--sh-sm)}
.site-shell .modtable-scroll{overflow-x:visible}
.site-shell table.modtable{width:100%;border-collapse:collapse;table-layout:auto}
.site-shell .modtable thead th{background:var(--soft);text-align:left;font-size:11.5px;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);font-weight:700;padding:14px 18px}
.site-shell .modtable th.tc-price, .site-shell .modtable td.tc-price{text-align:right;white-space:nowrap}
.site-shell .modtable th.tc-pick, .site-shell .modtable td.tc-pick{width:62px;text-align:center}
.site-shell .modtable tbody tr{border-top:1px solid var(--border);cursor:pointer;transition:background .15s}
.site-shell .modtable tbody tr:hover{background:var(--soft)}
.site-shell .modtable tbody tr.selected{background:linear-gradient(90deg,rgba(61,90,254,.07),rgba(124,58,237,.05))}
.site-shell .modtable td{padding:13px 18px;vertical-align:middle}
.site-shell .mt-fn{display:flex;align-items:center;gap:13px}
.site-shell .mt-ico{width:40px;height:40px;border-radius:11px;background:var(--lav);color:var(--blue);display:grid;place-items:center;flex:none;transition:.2s}
.site-shell .modtable tr.selected .mt-ico{background:var(--grad);color:#fff}
.site-shell .mt-ico svg{width:20px;height:20px}
.site-shell .mt-name{font-weight:800;font-size:15px;color:var(--ink)}
.site-shell .mt-desc{font-size:12.5px;color:var(--muted)}
.site-shell .cat-badge{font-size:11.5px;font-weight:700;padding:5px 11px;border-radius:999px;background:var(--lav);color:var(--blue);white-space:nowrap}
.site-shell .tc-price b{font-size:16px;font-weight:800;color:var(--ink)}
.site-shell .tc-price .per{font-size:12px;color:var(--muted);font-weight:600;margin-left:3px}
.site-shell .tc-price .mt-free{color:var(--green);font-weight:800;font-size:14px}
.site-shell .mt-pick{width:24px;height:24px;border-radius:7px;border:2px solid var(--border);display:inline-grid;place-items:center;color:#fff;transition:.2s}
.site-shell .mt-pick svg{width:14px;height:14px;opacity:0;transition:.2s}
.site-shell .modtable tr.selected .mt-pick{background:var(--grad);border-color:transparent}
.site-shell .modtable tr.selected .mt-pick svg{opacity:1}
.site-shell .modtable tr.is-base{cursor:default}
.site-shell .modtable tr.is-base .mt-pick{background:var(--green);border-color:transparent}
.site-shell .modtable tr.is-base .mt-pick svg{opacity:1}
.site-shell .modempty{padding:34px;text-align:center;color:var(--muted);font-weight:600}
.site-shell .modbar{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-top:22px;background:var(--ink);color:#fff;border-radius:var(--r);padding:20px 26px;box-shadow:var(--sh);position:relative;overflow:hidden}
.site-shell .modbar::before{content:"";position:absolute;inset:0;opacity:.5;background:radial-gradient(closest-side at 100% 0,rgba(124,58,237,.4),transparent 60%)}
.site-shell .modbar>*{position:relative}
.site-shell .modbar .info{font-size:14.5px;color:rgba(255,255,255,.75)}
.site-shell .modbar .info b{color:#fff}
.site-shell .modbar .total{font-family:var(--display);font-weight:700;font-size:26px;background:linear-gradient(120deg,#8ea2ff,#c79bff);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .modbar .total small{font-family:var(--font);-webkit-text-fill-color:rgba(255,255,255,.6);font-size:13px;font-weight:600;margin-left:4px}
.site-shell .modbar .grow{flex:1;min-width:140px}
@media(max-width:680px){.site-shell .modtable td.tc-cat, .site-shell .modtable th.tc-cat{display:none}}
@media(max-width:520px){
  .site-shell .modtable td{padding:11px 12px}
  .site-shell .modtable thead th{padding:12px}
  .site-shell .modtable th.tc-pick, .site-shell .modtable td.tc-pick{width:40px}
  .site-shell .mt-ico{width:34px;height:34px;border-radius:9px}
  .site-shell .mt-ico svg{width:17px;height:17px}
  .site-shell .mt-fn{gap:10px}
  .site-shell .mt-name{font-size:13.5px;line-height:1.25}
  .site-shell .mt-desc{font-size:11px}
  .site-shell .tc-price b{font-size:14px}
  .site-shell .tc-price .per{display:none}
  .site-shell .mt-pick{width:22px;height:22px}
}

/* ============ ИНТЕГРАЦИИ ============ */
.site-shell .integr{text-align:center}
.site-shell .integr h2{margin-bottom:14px}
.site-shell .integr .lead{margin:0 auto 40px}
.site-shell .logos{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:18px}
.site-shell .logo-chip{display:inline-flex;align-items:center;gap:10px;background:#fff;border:1px solid var(--border);
  border-radius:14px;padding:14px 22px;font-weight:700;color:var(--ink-2);font-size:15px;transition:.3s}
.site-shell .logo-chip:hover{box-shadow:var(--sh-sm);transform:translateY(-3px);color:var(--ink)}
.site-shell .logo-chip .d{width:11px;height:11px;border-radius:50%}

/* ============ FAQ ============ */
.site-shell .faq{max-width:780px;margin:0 auto}
.site-shell .faq-item{border:1px solid var(--border);border-radius:var(--r-sm);background:#fff;margin-bottom:14px;overflow:hidden;transition:.25s}
.site-shell .faq-item.open{box-shadow:var(--sh-sm);border-color:transparent}
.site-shell .faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:22px 24px;
  background:none;border:none;cursor:pointer;text-align:left;font-family:var(--font);font-weight:700;font-size:17px;color:var(--ink)}
.site-shell .faq-q .pm{width:30px;height:30px;border-radius:9px;background:var(--soft);display:grid;place-items:center;flex:none;transition:.3s;color:var(--blue)}
.site-shell .faq-item.open .pm{background:var(--grad);color:#fff;transform:rotate(180deg)}
.site-shell .faq-q .pm svg{width:18px;height:18px}
.site-shell .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.site-shell .faq-a p{padding:0 24px 22px;color:var(--muted);font-size:15.5px}

/* ============ ФИНАЛЬНЫЙ CTA ============ */
.site-shell .cta-panel{background:var(--grad);border-radius:var(--r-lg);padding:64px 48px;text-align:center;color:#fff;position:relative;overflow:hidden}
.site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.4;
  background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.4),transparent 55%)}
.site-shell .cta-panel h2{color:#fff;margin-bottom:14px;position:relative}
.site-shell .cta-panel p{color:rgba(255,255,255,.85);margin-bottom:30px;position:relative}
.site-shell .cta-form{display:flex;gap:10px;max-width:480px;margin:0 auto;position:relative;flex-wrap:wrap;justify-content:center}
.site-shell .cta-form input{flex:1;min-width:220px;padding:16px 22px;border-radius:999px;border:none;font-family:var(--font);font-size:16px;color:var(--ink)}
.site-shell .cta-form input:focus{outline:3px solid rgba(255,255,255,.6)}
.site-shell .cta-note{color:rgba(255,255,255,.8);font-size:13px;font-weight:600;margin-top:16px;position:relative}

/* ============ ФУТЕР ============ */
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px;margin-top:0}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo__txt{color:#fff}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}

/* ============ REVEAL ============ */
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}
.site-shell .stagger>*{opacity:0;transform:translateY(24px);transition:.6s cubic-bezier(.2,.7,.3,1)}
.site-shell .stagger.in>*{opacity:1;transform:none}
.site-shell .stagger.in>*:nth-child(2){transition-delay:.08s}
.site-shell .stagger.in>*:nth-child(3){transition-delay:.16s}
.site-shell .stagger.in>*:nth-child(4){transition-delay:.24s}
.site-shell .stagger.in>*:nth-child(5){transition-delay:.32s}
.site-shell .stagger.in>*:nth-child(6){transition-delay:.4s}

/* ============ МОБ.МЕНЮ ============ */
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;
  transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

/* ============ АДАПТИВ ============ */
@media(max-width:1024px){
  .site-shell .hero__grid{grid-template-columns:1fr;gap:54px}
  .site-shell .hero__visual{max-width:520px;margin:0 auto;width:100%}
  .site-shell .feat-grid, .site-shell .ind-grid{grid-template-columns:repeat(2,1fr)}
  .site-shell .values{grid-template-columns:repeat(2,1fr)}
  .site-shell .how{grid-template-columns:1fr;gap:40px}
  .site-shell .how__art{max-width:420px;margin:0 auto}
  .site-shell .builder{grid-template-columns:1fr;gap:42px}
  .site-shell .builder__media{max-width:520px;margin:0 auto;width:100%}
  .site-shell .zig{grid-template-columns:1fr;gap:36px}
  .site-shell .zig.flip .zig__media{order:0}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
  .site-shell .rev-card{flex:0 0 calc(50% - 12px)}
}
@media(max-width:760px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .hero{padding:118px 0 70px}
  .site-shell .stats, .site-shell .res-grid{grid-template-columns:repeat(2,1fr);gap:24px 14px}
  .site-shell .feat-grid, .site-shell .ind-grid, .site-shell .values{grid-template-columns:1fr}
  .site-shell .rev-card{flex:0 0 88%}
  .site-shell .section{padding:64px 0}
  .site-shell .results{padding:48px 22px}
  .site-shell .cta-panel{padding:48px 24px}
  .site-shell .float-rev{right:-6px;top:18px;width:160px;transform:scale(.92)}
  .site-shell .float-notif{left:-8px;bottom:24px;transform:scale(.92)}
  .site-shell .builder-feats{grid-template-columns:1fr}
  .site-shell .b-chip-1{right:-4px;top:10px;transform:scale(.9)}
  .site-shell .b-chip-2{left:-4px;bottom:20px;transform:scale(.9)}
  .site-shell .site-hero{padding:24px 16px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
  .site-shell h2{font-size:30px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal, .site-shell .stagger>*{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}

/* ===== login.html ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --r:22px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{font-family:var(--font);color:var(--ink);background:#fff;line-height:1.55;font-size:16px;-webkit-font-smoothing:antialiased}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{display:block;max-width:100%}
.site-shell ul{list-style:none}

.site-shell .auth{min-height:100vh;display:grid;grid-template-columns:1.05fr 1fr}
.site-shell .auth__brand{position:relative;background:var(--grad);color:#fff;padding:48px 56px;display:flex;flex-direction:column;overflow:hidden}
.site-shell .auth__brand::before{content:"";position:absolute;width:420px;height:420px;border-radius:50%;background:radial-gradient(closest-side,rgba(255,255,255,.35),transparent 70%);top:-120px;right:-120px}
.site-shell .auth__brand::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(closest-side,rgba(255,255,255,.22),transparent 70%);bottom:-120px;left:-100px}
.site-shell .auth__brand>*{position:relative;z-index:1}
.site-shell .brand-logo img{height:34px;filter:brightness(0) invert(1)}
.site-shell .auth__brand h2{font-family:var(--display);font-weight:700;font-size:clamp(26px,2.7vw,38px);line-height:1.15;letter-spacing:-.02em;margin:auto 0 28px}
.site-shell .auth-benefits{display:flex;flex-direction:column;gap:15px;margin-bottom:32px}
.site-shell .auth-benefits li{display:flex;gap:12px;align-items:flex-start;font-weight:600;font-size:16px}
.site-shell .auth-benefits .ci{width:24px;height:24px;border-radius:8px;background:rgba(255,255,255,.2);display:grid;place-items:center;flex:none;margin-top:1px}
.site-shell .auth-benefits .ci svg{width:15px;height:15px}
.site-shell .auth-quote{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:20px 22px;backdrop-filter:blur(6px)}
.site-shell .auth-quote p{font-size:14.5px;line-height:1.5;margin-bottom:14px;color:rgba(255,255,255,.95)}
.site-shell .auth-quote .who{display:flex;align-items:center;gap:11px}
.site-shell .auth-quote .ava{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.25);display:grid;place-items:center;font-weight:800;font-size:13px;flex:none}
.site-shell .auth-quote .who b{font-size:14px;display:block;font-weight:800}
.site-shell .auth-quote .who span{font-size:12.5px;color:rgba(255,255,255,.8)}

.site-shell .auth__form{display:flex;align-items:center;justify-content:center;padding:44px 24px;position:relative}
.site-shell .back-link{position:absolute;top:24px;right:28px;font-size:14px;font-weight:700;color:var(--muted);display:inline-flex;align-items:center;gap:7px;transition:.2s}
.site-shell .back-link:hover{color:var(--blue)}
.site-shell .back-link svg{width:16px;height:16px}
.site-shell .auth-card{width:100%;max-width:412px}
.site-shell .m-logo{display:none;margin-bottom:26px}
.site-shell .m-logo img{height:32px}
.site-shell .auth-card h1{font-size:27px;letter-spacing:-.02em;margin-bottom:8px}
.site-shell .auth-card .sub{color:var(--muted);margin-bottom:26px;font-size:15px}
.site-shell .field{margin-bottom:15px}
.site-shell .field label{display:block;font-weight:700;font-size:13.5px;margin-bottom:7px}
.site-shell .field .ipt{width:100%;padding:13px 15px;border:1.5px solid var(--border);border-radius:12px;font-family:var(--font);font-size:15px;transition:.2s;background:#fff;color:var(--ink)}
.site-shell .field .ipt::placeholder{color:#aab1c4}
.site-shell .field .ipt:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.12)}
.site-shell .field.err .ipt{border-color:var(--red)}
.site-shell .field .msg{font-size:12.5px;color:var(--red);margin-top:6px;display:none}
.site-shell .field.err .msg{display:block}
.site-shell .pass-wrap{position:relative}
.site-shell .pass-wrap .ipt{padding-right:46px}
.site-shell .pass-toggle{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;color:var(--muted);padding:6px;display:grid;place-items:center;border-radius:8px;width:36px;height:36px}
.site-shell .pass-toggle:hover{color:var(--ink);background:var(--soft)}
.site-shell .pass-toggle svg{width:19px;height:19px;pointer-events:none}
.site-shell .row-between{display:flex;align-items:center;justify-content:space-between;margin:4px 0 20px}
.site-shell .remember{display:flex;gap:9px;align-items:center;font-size:13.5px;color:var(--ink-2);cursor:pointer}
.site-shell .remember input{width:17px;height:17px;accent-color:var(--blue);cursor:pointer}
.site-shell .forgot{font-size:13.5px;font-weight:700;color:var(--blue)}
.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:15px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);width:100%}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-line{background:#fff;color:var(--ink);border:1.5px solid var(--border);margin-top:10px}
.site-shell .btn-line:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .field .suffix{font-size:13px;color:var(--muted);font-weight:600;margin-top:6px}
.site-shell .divider{display:flex;align-items:center;gap:14px;margin:22px 0;color:var(--muted);font-size:13px;font-weight:600}
.site-shell .divider::before, .site-shell .divider::after{content:"";height:1px;background:var(--border);flex:1}
.site-shell .social-btns{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.site-shell .social-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:12px;border:1.5px solid var(--border);border-radius:12px;background:#fff;font-family:var(--font);font-weight:700;font-size:14.5px;cursor:pointer;transition:.2s;color:var(--ink)}
.site-shell .social-btn:hover{border-color:var(--blue);background:var(--soft)}
.site-shell .social-btn svg{width:19px;height:19px}
.site-shell .social-btn .g{font-family:var(--display);font-weight:700;color:#4285F4}
.site-shell .social-btn .vk{color:#0077FF}
.site-shell .auth-alt{text-align:center;margin-top:24px;font-size:14.5px;color:var(--muted)}
.site-shell .auth-alt a{color:var(--blue);font-weight:700}
.site-shell .auth-ok{display:none;text-align:center;padding:10px 0}
.site-shell .auth-ok.show{display:block}
.site-shell .auth-ok .circle{width:74px;height:74px;border-radius:50%;background:var(--grad);display:grid;place-items:center;margin:0 auto 22px;color:#fff;box-shadow:var(--sh)}
.site-shell .auth-ok .circle svg{width:36px;height:36px}
.site-shell .auth-ok h2{font-size:24px;margin-bottom:10px}
.site-shell .auth-ok p{color:var(--muted);margin-bottom:26px}

@media(max-width:900px){
  .site-shell .auth{grid-template-columns:1fr}
  .site-shell .auth__brand{display:none}
  .site-shell .m-logo{display:block}
  .site-shell .back-link{position:static;display:inline-flex;margin-bottom:22px}
  .site-shell .auth__form{padding:34px 22px;min-height:100vh;align-items:flex-start}
  .site-shell .auth-card{margin-top:8px}
}
@media(prefers-reduced-motion:reduce){.site-shell *{transition:none!important}}

/* ===== offer.html ===== */
.site-shell{--blue:#3D5AFE;--purple:#7C3AED;--grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);--ink:#0D1B3E;--ink-2:#26324f;--muted:#6B7280;--bg:#fff;--soft:#F5F6FB;--lav:#ECEEFB;--border:#E8EAF2;--sh-sm:0 4px 16px -8px rgba(13,27,62,.16);--sh-lg:0 50px 90px -28px rgba(61,90,254,.30);--r:22px;--r-lg:28px;--maxw:1200px;--font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;--display:'Unbounded',var(--font)}
.site-shell *{margin:0;padding:0;box-sizing:border-box}.site-shell{scroll-behavior:smooth}.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}.site-shell a{color:inherit;text-decoration:none}.site-shell img{max-width:100%;display:block}.site-shell ul{list-style:none}.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}.site-shell section[id]{scroll-margin-top:96px}.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:0;font-weight:800}.site-shell h1{font-size:clamp(34px,5vw,56px)}.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:620px}.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:0;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}.site-shell .section{padding:74px 0}.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}.site-shell .btn-block{width:100%}.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}.site-shell .logo{display:inline-flex;align-items:center}.site-shell .logo-img{height:34px;width:auto;display:block}.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}.site-shell .nav{display:flex;gap:30px;margin-left:14px}.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}.site-shell .nav a:hover{color:var(--ink)}.site-shell .nav a:hover::after{width:100%}.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}.site-shell .burger svg{width:26px;height:26px}.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}
.site-shell .hero-band{position:relative;padding:150px 0 62px;text-align:center;overflow:hidden}.site-shell .hero-band::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 20% 10%,rgba(20,184,166,.16),transparent 68%),radial-gradient(closest-side at 76% 16%,rgba(124,58,237,.18),transparent 70%),radial-gradient(closest-side at 88% 70%,rgba(61,90,254,.12),transparent 70%)}.site-shell .hero-band .lead{margin:18px auto 0}.site-shell .legal-layout{display:grid;grid-template-columns:260px minmax(0,760px);gap:54px;align-items:start;max-width:1080px;margin:0 auto}.site-shell .legal-toc{position:sticky;top:108px;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:22px;box-shadow:var(--sh-sm)}.site-shell .legal-toc b{display:block;margin-bottom:12px}.site-shell .legal-toc a{display:block;color:var(--muted);font-size:14px;font-weight:700;padding:8px 0}.site-shell .legal-toc a:hover{color:var(--blue)}.site-shell .legal-doc{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);padding:42px;box-shadow:var(--sh-sm)}.site-shell .updated{display:inline-flex;margin-bottom:20px;color:var(--muted);font-size:14px;font-weight:800;background:var(--soft);border-radius:999px;padding:8px 14px}.site-shell .legal-doc h2{font-size:28px;margin:34px 0 14px}.site-shell .legal-doc h3{font-size:20px;margin:22px 0 10px}.site-shell .legal-doc p, .site-shell .legal-doc li{color:#35405f;font-size:16px;line-height:1.75}.site-shell .legal-doc p{margin-bottom:16px}.site-shell .legal-doc ul, .site-shell .legal-doc ol{padding-left:22px;margin-bottom:18px}.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}.site-shell .footer .logo-img{height:32px}.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}.site-shell .socials{display:flex;gap:10px}.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}.site-shell .socials svg{width:19px;height:19px}.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:0;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}.site-shell .footer__bottom .links{display:flex;gap:22px}.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
@media(max-width:1060px){.site-shell .legal-layout{grid-template-columns:1fr;gap:24px}.site-shell .legal-toc{position:static}.site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}.site-shell .footer__about{grid-column:1/-1}}@media(max-width:820px){.site-shell{font-size:16px}.site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}.site-shell .burger{display:flex}.site-shell .header__inner{height:64px;margin-top:10px}.site-shell .hero-band{padding:118px 0 48px}.site-shell .legal-doc{padding:26px 20px}.site-shell .footer__top{grid-template-columns:1fr 1fr}.site-shell .footer__bottom{flex-direction:column;align-items:flex-start}}@media(max-width:560px){.site-shell .wrap{padding:0 18px}.site-shell .footer__top{grid-template-columns:1fr}.site-shell .footer__bottom .links{flex-direction:column;gap:8px}}

/* ===== pricing.html ===== */
/* ===== ТОКЕНЫ ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --info:#3B82F6; --teal:#14B8A6; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --sh-lg:0 50px 90px -28px rgba(61,90,254,.30);
  --r:22px; --r-lg:28px; --r-sm:14px;
  --maxw:1200px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{scroll-behavior:smooth}
.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{max-width:100%;display:block}
.site-shell ul{list-style:none}
.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.site-shell section[id]{scroll-margin-top:96px}

/* ===== ТИПОГРАФИКА ===== */
.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:-.02em;font-weight:800}
.site-shell h2{font-size:clamp(28px,4vw,44px)}
.site-shell h3{font-size:21px;letter-spacing:-.01em}
.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}
.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:560px}
.site-shell .gradtext{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .sec-head{max-width:660px;margin:0 auto 48px;text-align:center}
.site-shell .sec-head .lead{margin:18px auto 0}

/* ===== КНОПКИ ===== */
.site-shell .btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}
.site-shell .btn svg{width:18px;height:18px}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}
.site-shell .btn-outline:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:var(--sh-sm)}
.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}
.site-shell .btn-ghost:hover{color:var(--blue)}
.site-shell .btn-lg{padding:17px 32px;font-size:17px}
.site-shell .btn-block{width:100%;justify-content:center}
.site-shell .btn-white{background:#fff;color:var(--ink)}
.site-shell .btn-white:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(0,0,0,.4)}
.site-shell :focus-visible{outline:3px solid rgba(61,90,254,.45);outline-offset:3px;border-radius:8px}

/* ===== TOAST ===== */
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}
.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}

/* ===== ЛОГО / ШАПКА ===== */
.site-shell .logo{display:inline-flex;align-items:center;gap:11px}
.site-shell .logo-img{height:34px;width:auto;display:block}
.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}
.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}
.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}
.site-shell .nav{display:flex;gap:30px;margin-left:14px}
.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}
.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}
.site-shell .nav a:hover{color:var(--ink)}
.site-shell .nav a:hover::after, .site-shell .nav a.active::after{width:100%}
.site-shell .nav a.active{color:var(--ink)}
.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}
.site-shell .burger svg{width:26px;height:26px}
.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}
.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}
.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}
.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}
.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}
.site-shell .mobile-menu__close svg{width:22px;height:22px}
.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}
.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}

/* ===== HERO ===== */
.site-shell .phero{position:relative;padding:140px 0 30px;text-align:center;overflow:hidden}
.site-shell .phero__bg{position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 50% 0,rgba(124,58,237,.16),transparent 70%),radial-gradient(closest-side at 80% 30%,rgba(61,90,254,.12),transparent 70%)}
.site-shell .phero h1{font-size:clamp(34px,5vw,54px);margin:8px auto 18px;max-width:760px}
.site-shell .phero .lead{margin:0 auto}
.site-shell .pill-badge{display:inline-flex;align-items:center;gap:8px;background:var(--lav);color:var(--blue);font-weight:700;font-size:13px;padding:7px 14px;border-radius:999px;margin-bottom:8px}
.site-shell .pill-badge svg{width:15px;height:15px}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ ОПЛАТЫ ===== */
.site-shell .bill{display:flex;justify-content:center;margin:30px 0 8px}
.site-shell .bill-toggle{display:inline-flex;background:var(--soft);border:1px solid var(--border);border-radius:999px;padding:5px;gap:4px}
.site-shell .bill-toggle button{border:none;background:none;font-family:var(--font);font-weight:700;font-size:14.5px;color:var(--muted);padding:10px 22px;border-radius:999px;cursor:pointer;transition:.2s;display:inline-flex;align-items:center;gap:9px}
.site-shell .bill-toggle button.on{background:#fff;color:var(--ink);box-shadow:var(--sh-sm)}
.site-shell .bill-toggle .save{font-size:11px;font-weight:700;background:rgba(34,197,94,.16);color:#16a34a;padding:3px 9px;border-radius:999px}

/* ===== СЕКЦИИ ===== */
.site-shell .section{padding:60px 0 84px}
.site-shell .section.soft{background:var(--soft)}
.site-shell .section.tight{padding:40px 0}
.site-shell .ico-chip{width:46px;height:46px;border-radius:13px;background:var(--grad);display:grid;place-items:center;color:#fff}
.site-shell .ico-chip svg{width:23px;height:23px}

/* ===== МОДУЛИ ===== */
.site-shell .modtools{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-bottom:18px}
.site-shell .modsearch{position:relative;flex:1;min-width:240px}
.site-shell .modsearch svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted)}
.site-shell .modsearch input{width:100%;padding:13px 16px 13px 46px;border:1.5px solid var(--border);border-radius:999px;font-family:var(--font);font-size:15px;background:#fff;transition:.2s;color:var(--ink)}
.site-shell .modsearch input:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.1)}
.site-shell .modchips{display:flex;gap:8px;flex-wrap:wrap}
.site-shell .modchip{padding:9px 15px;border-radius:999px;border:1px solid var(--border);background:#fff;font-weight:700;font-size:13.5px;color:var(--ink-2);cursor:pointer;transition:.2s;font-family:var(--font)}
.site-shell .modchip:hover{border-color:var(--blue);color:var(--blue)}
.site-shell .modchip.on{background:var(--grad);color:#fff;border-color:transparent}
.site-shell .modtable-wrap{border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;background:#fff;box-shadow:var(--sh-sm)}
.site-shell .modtable-scroll{overflow-x:visible}
.site-shell table.modtable{width:100%;border-collapse:collapse;table-layout:auto}
.site-shell .modtable thead th{background:var(--soft);text-align:left;font-size:11.5px;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);font-weight:700;padding:14px 18px}
.site-shell .modtable th.tc-price, .site-shell .modtable td.tc-price{text-align:right;white-space:nowrap}
.site-shell .modtable th.tc-pick, .site-shell .modtable td.tc-pick{width:62px;text-align:center}
.site-shell .modtable tbody tr{border-top:1px solid var(--border);cursor:pointer;transition:background .15s}
.site-shell .modtable tbody tr:hover{background:var(--soft)}
.site-shell .modtable tbody tr.selected{background:linear-gradient(90deg,rgba(61,90,254,.07),rgba(124,58,237,.05))}
.site-shell .modtable td{padding:13px 18px;vertical-align:middle}
.site-shell .mt-fn{display:flex;align-items:center;gap:13px}
.site-shell .mt-ico{width:40px;height:40px;border-radius:11px;background:var(--lav);color:var(--blue);display:grid;place-items:center;flex:none;transition:.2s}
.site-shell .modtable tr.selected .mt-ico{background:var(--grad);color:#fff}
.site-shell .mt-ico svg{width:20px;height:20px}
.site-shell .mt-name{font-weight:800;font-size:15px;color:var(--ink)}
.site-shell .mt-desc{font-size:12.5px;color:var(--muted)}
.site-shell .cat-badge{font-size:11.5px;font-weight:700;padding:5px 11px;border-radius:999px;background:var(--lav);color:var(--blue);white-space:nowrap}
.site-shell .tc-price b{font-size:16px;font-weight:800;color:var(--ink)}
.site-shell .tc-price .per{font-size:12px;color:var(--muted);font-weight:600;margin-left:3px}
.site-shell .tc-price .mt-free{color:var(--green);font-weight:800;font-size:14px}
.site-shell .mt-pick{width:24px;height:24px;border-radius:7px;border:2px solid var(--border);display:inline-grid;place-items:center;color:#fff;transition:.2s}
.site-shell .mt-pick svg{width:14px;height:14px;opacity:0;transition:.2s}
.site-shell .modtable tr.selected .mt-pick{background:var(--grad);border-color:transparent}
.site-shell .modtable tr.selected .mt-pick svg{opacity:1}
.site-shell .modtable tr.is-base{cursor:default}
.site-shell .modtable tr.is-base .mt-pick{background:var(--green);border-color:transparent}
.site-shell .modtable tr.is-base .mt-pick svg{opacity:1}
.site-shell .modempty{padding:34px;text-align:center;color:var(--muted);font-weight:600}
.site-shell .modbar{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-top:22px;background:var(--ink);color:#fff;border-radius:var(--r);padding:20px 26px;box-shadow:var(--sh);position:relative;overflow:hidden}
.site-shell .modbar::before{content:"";position:absolute;inset:0;opacity:.5;background:radial-gradient(closest-side at 100% 0,rgba(124,58,237,.4),transparent 60%)}
.site-shell .modbar>*{position:relative}
.site-shell .modbar .info{font-size:14.5px;color:rgba(255,255,255,.75)}
.site-shell .modbar .info b{color:#fff}
.site-shell .modbar .total{font-family:var(--display);font-weight:700;font-size:26px;background:linear-gradient(120deg,#8ea2ff,#c79bff);-webkit-background-clip:text;background-clip:text;color:transparent}
.site-shell .modbar .total small{font-family:var(--font);-webkit-text-fill-color:rgba(255,255,255,.6);font-size:13px;font-weight:600;margin-left:4px}
.site-shell .modbar .grow{flex:1;min-width:140px}
@media(max-width:680px){
  .site-shell .modtable td.tc-cat, .site-shell .modtable th.tc-cat{display:none}
  .site-shell .modtable td{padding:11px 12px}
  .site-shell .modtable thead th{padding:12px}
  .site-shell .modtable th.tc-pick, .site-shell .modtable td.tc-pick{width:40px}
  .site-shell .mt-ico{width:34px;height:34px;border-radius:9px}
  .site-shell .mt-ico svg{width:17px;height:17px}
  .site-shell .mt-fn{gap:10px}
  .site-shell .mt-name{font-size:13.5px;line-height:1.25}
  .site-shell .mt-desc{font-size:11px}
  .site-shell .tc-price b{font-size:14px}
  .site-shell .tc-price .per{display:none}
  .site-shell .mt-pick{width:22px;height:22px}
}

/* ===== ГАРАНТИИ ===== */
.site-shell .guarantees{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.site-shell .guarantee{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:22px}
.site-shell .guarantee .ico-chip{width:44px;height:44px;border-radius:12px;background:var(--lav);color:var(--blue);flex:none}
.site-shell .guarantee .ico-chip svg{width:21px;height:21px}
.site-shell .guarantee b{font-size:14.5px;font-weight:800;display:block;margin-bottom:3px}
.site-shell .guarantee span{font-size:13px;color:var(--muted)}

/* ===== FAQ ===== */
.site-shell .faq{max-width:780px;margin:0 auto}
.site-shell .faq-item{border:1px solid var(--border);border-radius:var(--r-sm);background:#fff;margin-bottom:14px;overflow:hidden;transition:.25s}
.site-shell .faq-item.open{box-shadow:var(--sh-sm);border-color:transparent}
.site-shell .faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:22px 24px;background:none;border:none;cursor:pointer;text-align:left;font-family:var(--font);font-weight:700;font-size:17px;color:var(--ink)}
.site-shell .faq-q .pm{width:30px;height:30px;border-radius:9px;background:var(--soft);display:grid;place-items:center;flex:none;transition:.3s;color:var(--blue)}
.site-shell .faq-item.open .pm{background:var(--grad);color:#fff;transform:rotate(180deg)}
.site-shell .faq-q .pm svg{width:18px;height:18px}
.site-shell .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.site-shell .faq-a p{padding:0 24px 22px;color:var(--muted);font-size:15.5px}

/* ===== CTA ===== */
.site-shell .cta-panel{background:var(--grad);border-radius:var(--r-lg);padding:60px 48px;text-align:center;color:#fff;position:relative;overflow:hidden}
.site-shell .cta-panel::before{content:"";position:absolute;inset:0;opacity:.4;background:radial-gradient(closest-side at 18% 120%,rgba(255,255,255,.5),transparent 55%),radial-gradient(closest-side at 90% -20%,rgba(255,255,255,.4),transparent 55%)}
.site-shell .cta-panel h2{color:#fff;margin-bottom:14px;position:relative}
.site-shell .cta-panel p{color:rgba(255,255,255,.85);margin-bottom:28px;position:relative;max-width:520px;margin-left:auto;margin-right:auto}
.site-shell .cta-actions{display:flex;gap:12px;justify-content:center;position:relative;flex-wrap:wrap}

/* ===== REVEAL ===== */
.site-shell .reveal{opacity:0;transform:translateY(28px);transition:.7s cubic-bezier(.2,.7,.3,1)}
.site-shell .reveal.in{opacity:1;transform:none}
.site-shell .stagger>*{opacity:0;transform:translateY(24px);transition:.6s cubic-bezier(.2,.7,.3,1)}
.site-shell .stagger.in>*{opacity:1;transform:none}
.site-shell .stagger.in>*:nth-child(2){transition-delay:.06s}
.site-shell .stagger.in>*:nth-child(3){transition-delay:.12s}
.site-shell .stagger.in>*:nth-child(4){transition-delay:.18s}
.site-shell .stagger.in>*:nth-child(5){transition-delay:.24s}
.site-shell .stagger.in>*:nth-child(6){transition-delay:.3s}
.site-shell .stagger.in>*:nth-child(7){transition-delay:.36s}
.site-shell .stagger.in>*:nth-child(8){transition-delay:.42s}

/* ===== ФУТЕР ===== */
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}
.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}
.site-shell .footer .logo-img{height:32px}
.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}
.site-shell .socials{display:flex;gap:10px}
.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}
.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}
.site-shell .socials svg{width:19px;height:19px}
.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}
.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}
.site-shell .fcol a:hover{color:#fff;padding-left:4px}
.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}
.site-shell .footer__bottom .links{display:flex;gap:22px}
.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}
.site-shell .footer__bottom .links a:hover{color:#fff}

/* ===== АДАПТИВ ===== */
@media(max-width:1024px){
  .site-shell .guarantees{grid-template-columns:repeat(2,1fr)}
  .site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}
  .site-shell .footer__about{grid-column:1/-1}
}
@media(max-width:760px){
  .site-shell{font-size:16px}
  .site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}
  .site-shell .burger{display:flex}
  .site-shell .header__inner{height:64px;margin-top:10px}
  .site-shell .phero{padding:112px 0 20px}
  .site-shell .guarantees{grid-template-columns:1fr}
  .site-shell .section{padding:48px 0 64px}
  .site-shell .cta-panel{padding:48px 24px}
  .site-shell .footer__top{grid-template-columns:1fr 1fr}
  .site-shell .footer__bottom{flex-direction:column;align-items:flex-start}
  .site-shell h2{font-size:28px}
}
@media(prefers-reduced-motion:reduce){
  .site-shell *{animation:none!important;transition:none!important}
  .site-shell .reveal, .site-shell .stagger>*{opacity:1;transform:none}
  .site-shell{scroll-behavior:auto}
}

/* ===== privacy.html ===== */
.site-shell{--blue:#3D5AFE;--purple:#7C3AED;--grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);--ink:#0D1B3E;--ink-2:#26324f;--muted:#6B7280;--bg:#fff;--soft:#F5F6FB;--lav:#ECEEFB;--border:#E8EAF2;--sh-sm:0 4px 16px -8px rgba(13,27,62,.16);--sh:0 24px 48px -16px rgba(61,90,254,.22);--sh-lg:0 50px 90px -28px rgba(61,90,254,.30);--r:22px;--r-lg:28px;--maxw:1200px;--font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;--display:'Unbounded',var(--font)}
.site-shell *{margin:0;padding:0;box-sizing:border-box}.site-shell{scroll-behavior:smooth}.site-shell{font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}.site-shell a{color:inherit;text-decoration:none}.site-shell img{max-width:100%;display:block}.site-shell ul{list-style:none}.site-shell .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}.site-shell section[id]{scroll-margin-top:96px}.site-shell h1, .site-shell h2, .site-shell h3{line-height:1.12;letter-spacing:0;font-weight:800}.site-shell h1{font-size:clamp(34px,5vw,56px)}.site-shell h2{font-size:clamp(26px,3.6vw,42px)}.site-shell h3{font-size:21px}.site-shell .lead{color:var(--muted);font-size:clamp(16px,1.7vw,19px);max-width:620px}.site-shell .eyebrow{font-family:var(--display);font-weight:500;font-size:12px;letter-spacing:0;text-transform:uppercase;color:var(--blue);display:inline-block;margin-bottom:14px}.site-shell .section{padding:74px 0}.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:14px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);white-space:nowrap}.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}.site-shell .btn-outline{background:#fff;color:var(--ink);border-color:var(--border)}.site-shell .btn-ghost{background:transparent;color:var(--ink);padding:11px 18px}.site-shell .btn-ghost:hover{color:var(--blue)}.site-shell .btn-block{width:100%}
.site-shell .toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,18px);background:var(--ink);color:#fff;padding:13px 24px;border-radius:999px;font-weight:600;font-size:14.5px;box-shadow:var(--sh-lg);z-index:200;opacity:0;pointer-events:none;transition:.3s}.site-shell .toast.show{opacity:1;transform:translate(-50%,0)}.site-shell .logo{display:inline-flex;align-items:center}.site-shell .logo-img{height:34px;width:auto;display:block}.site-shell .header{position:fixed;top:0;left:0;right:0;z-index:100;transition:.3s}.site-shell .header__inner{display:flex;align-items:center;gap:32px;height:74px;margin:14px auto 0;max-width:1180px;padding:0 22px;border-radius:18px;transition:.3s}.site-shell .header.scrolled .header__inner{background:rgba(255,255,255,.82);backdrop-filter:blur(14px);box-shadow:0 10px 34px -16px rgba(13,27,62,.25);border:1px solid rgba(255,255,255,.6)}.site-shell .nav{display:flex;gap:30px;margin-left:14px}.site-shell .nav a{font-weight:600;font-size:15.5px;color:var(--ink-2);position:relative;padding:4px 0}.site-shell .nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--grad);transition:.25s;border-radius:2px}.site-shell .nav a:hover{color:var(--ink)}.site-shell .nav a:hover::after{width:100%}.site-shell .header__cta{margin-left:auto;display:flex;align-items:center;gap:8px}.site-shell .burger{display:none;background:none;border:none;cursor:pointer;width:44px;height:44px;align-items:center;justify-content:center;color:var(--ink)}.site-shell .burger svg{width:26px;height:26px}.site-shell .mobile-menu{position:fixed;inset:0;z-index:99;background:rgba(13,27,62,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.3s}.site-shell .mobile-menu.open{opacity:1;pointer-events:auto}.site-shell .mobile-menu__panel{position:absolute;top:0;right:0;width:min(86%,360px);height:100%;background:#fff;padding:28px 26px;transform:translateX(100%);transition:.35s cubic-bezier(.2,.7,.3,1);display:flex;flex-direction:column;gap:6px}.site-shell .mobile-menu.open .mobile-menu__panel{transform:none}.site-shell .mobile-menu__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}.site-shell .mobile-menu__close{background:var(--soft);border:none;width:42px;height:42px;border-radius:12px;cursor:pointer;display:grid;place-items:center;color:var(--ink)}.site-shell .mobile-menu__close svg{width:22px;height:22px}.site-shell .mobile-menu a.ml{font-weight:700;font-size:18px;padding:14px 0;border-bottom:1px solid var(--border)}.site-shell .mobile-menu .mm-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}
.site-shell .hero-band{position:relative;padding:150px 0 62px;text-align:center;overflow:hidden}.site-shell .hero-band::before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(closest-side at 20% 10%,rgba(20,184,166,.16),transparent 68%),radial-gradient(closest-side at 76% 16%,rgba(124,58,237,.18),transparent 70%),radial-gradient(closest-side at 88% 70%,rgba(61,90,254,.12),transparent 70%)}.site-shell .hero-band .lead{margin:18px auto 0}.site-shell .legal-layout{display:grid;grid-template-columns:260px minmax(0,760px);gap:54px;align-items:start;max-width:1080px;margin:0 auto}.site-shell .legal-toc{position:sticky;top:108px;background:#fff;border:1px solid var(--border);border-radius:var(--r);padding:22px;box-shadow:var(--sh-sm)}.site-shell .legal-toc b{display:block;margin-bottom:12px}.site-shell .legal-toc a{display:block;color:var(--muted);font-size:14px;font-weight:700;padding:8px 0}.site-shell .legal-toc a:hover{color:var(--blue)}.site-shell .legal-doc{background:#fff;border:1px solid var(--border);border-radius:var(--r-lg);padding:42px;box-shadow:var(--sh-sm)}.site-shell .updated{display:inline-flex;margin-bottom:20px;color:var(--muted);font-size:14px;font-weight:800;background:var(--soft);border-radius:999px;padding:8px 14px}.site-shell .legal-doc h2{font-size:28px;margin:34px 0 14px}.site-shell .legal-doc h3{font-size:20px;margin:22px 0 10px}.site-shell .legal-doc p, .site-shell .legal-doc li{color:#35405f;font-size:16px;line-height:1.75}.site-shell .legal-doc p{margin-bottom:16px}.site-shell .legal-doc ul, .site-shell .legal-doc ol{padding-left:22px;margin-bottom:18px}
.site-shell .footer{background:var(--ink);color:#fff;padding:72px 0 34px}.site-shell .footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:34px;margin-bottom:48px}.site-shell .footer .logo-img{height:32px}.site-shell .footer__about p{color:rgba(255,255,255,.6);font-size:14.5px;margin:18px 0 20px;max-width:280px}.site-shell .socials{display:flex;gap:10px}.site-shell .socials a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;transition:.25s}.site-shell .socials a:hover{background:var(--grad);transform:translateY(-3px)}.site-shell .socials svg{width:19px;height:19px}.site-shell .fcol h4{font-size:13px;text-transform:uppercase;letter-spacing:0;color:rgba(255,255,255,.5);margin-bottom:18px;font-weight:700}.site-shell .fcol a{display:block;color:rgba(255,255,255,.75);font-size:14.5px;padding:6px 0;transition:.2s}.site-shell .fcol a:hover{color:#fff;padding-left:4px}.site-shell .footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:26px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}.site-shell .footer__bottom p{color:rgba(255,255,255,.55);font-size:13.5px}.site-shell .footer__bottom .links{display:flex;gap:22px}.site-shell .footer__bottom .links a{color:rgba(255,255,255,.7);font-size:13.5px}.site-shell .footer__bottom .links a:hover{color:#fff}
@media(max-width:1060px){.site-shell .legal-layout{grid-template-columns:1fr;gap:24px}.site-shell .legal-toc{position:static}.site-shell .footer__top{grid-template-columns:1fr 1fr 1fr;gap:28px}.site-shell .footer__about{grid-column:1/-1}}@media(max-width:820px){.site-shell{font-size:16px}.site-shell .nav, .site-shell .header__cta .btn-ghost, .site-shell .header__cta .btn-primary{display:none}.site-shell .burger{display:flex}.site-shell .header__inner{height:64px;margin-top:10px}.site-shell .hero-band{padding:118px 0 48px}.site-shell .legal-doc{padding:26px 20px}.site-shell .footer__top{grid-template-columns:1fr 1fr}.site-shell .footer__bottom{flex-direction:column;align-items:flex-start}}@media(max-width:560px){.site-shell .wrap{padding:0 18px}.site-shell .footer__top{grid-template-columns:1fr}.site-shell .footer__bottom .links{flex-direction:column;gap:8px}}@media(prefers-reduced-motion:reduce){.site-shell *{animation:none!important;transition:none!important}.site-shell{scroll-behavior:auto}}

/* ===== signup.html ===== */
.site-shell{
  --blue:#3D5AFE; --purple:#7C3AED;
  --grad:linear-gradient(120deg,#3D5AFE 0%,#7C3AED 100%);
  --ink:#0D1B3E; --ink-2:#26324f; --muted:#6B7280;
  --bg:#FFFFFF; --soft:#F5F6FB; --lav:#ECEEFB; --border:#E8EAF2;
  --green:#22C55E; --red:#EF4444; --amber:#F59E0B;
  --sh-sm:0 4px 16px -8px rgba(13,27,62,.16);
  --sh:0 24px 48px -16px rgba(61,90,254,.22);
  --r:22px; --r-lg:28px;
  --font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --display:'Unbounded',var(--font);
}
.site-shell *{margin:0;padding:0;box-sizing:border-box}
.site-shell{font-family:var(--font);color:var(--ink);background:#fff;line-height:1.55;font-size:16px;-webkit-font-smoothing:antialiased}
.site-shell a{color:inherit;text-decoration:none}
.site-shell img{display:block;max-width:100%}
.site-shell ul{list-style:none}

.site-shell .auth{min-height:100vh;display:grid;grid-template-columns:1.05fr 1fr;align-items:start}

/* Брендовая панель */
.site-shell .auth__brand{position:sticky;top:0;height:100vh;background:var(--grad);color:#fff;padding:48px 56px;display:flex;flex-direction:column;overflow:hidden}
.site-shell .auth__brand::before{content:"";position:absolute;width:420px;height:420px;border-radius:50%;background:radial-gradient(closest-side,rgba(255,255,255,.35),transparent 70%);top:-120px;right:-120px}
.site-shell .auth__brand::after{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(closest-side,rgba(255,255,255,.22),transparent 70%);bottom:-120px;left:-100px}
.site-shell .auth__brand>*{position:relative;z-index:1}
.site-shell .brand-logo img{height:34px;filter:brightness(0) invert(1)}
.site-shell .auth__brand h2{font-family:var(--display);font-weight:700;font-size:clamp(26px,2.7vw,38px);line-height:1.15;letter-spacing:-.02em;margin:auto 0 28px}
.site-shell .auth-benefits{display:flex;flex-direction:column;gap:15px;margin-bottom:32px}
.site-shell .auth-benefits li{display:flex;gap:12px;align-items:flex-start;font-weight:600;font-size:16px}
.site-shell .auth-benefits .ci{width:24px;height:24px;border-radius:8px;background:rgba(255,255,255,.2);display:grid;place-items:center;flex:none;margin-top:1px}
.site-shell .auth-benefits .ci svg{width:15px;height:15px}
.site-shell .auth-quote{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:20px 22px;backdrop-filter:blur(6px)}
.site-shell .auth-quote p{font-size:14.5px;line-height:1.5;margin-bottom:14px;color:rgba(255,255,255,.95)}
.site-shell .auth-quote .who{display:flex;align-items:center;gap:11px}
.site-shell .auth-quote .ava{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.25);display:grid;place-items:center;font-weight:800;font-size:13px;flex:none}
.site-shell .auth-quote .who b{font-size:14px;display:block;font-weight:800}
.site-shell .auth-quote .who span{font-size:12.5px;color:rgba(255,255,255,.8)}

/* Форма */
.site-shell .auth__form{display:flex;align-items:flex-start;justify-content:center;padding:52px 24px;position:relative}
.site-shell .sec-title{font-weight:800;font-size:18px;letter-spacing:-.01em;margin:4px 0 16px}
.site-shell .sec-title.next{margin-top:26px;padding-top:24px;border-top:1px solid var(--border)}
.site-shell .field label .lh{color:var(--muted);font-weight:600;font-size:12px;margin-left:7px}
.site-shell .field .suffix{font-size:13px;color:var(--muted);font-weight:600;margin-top:6px}
.site-shell select.ipt{cursor:pointer}
.site-shell .agree-note{font-size:13px;color:var(--muted);margin-top:14px;text-align:center;line-height:1.5}
.site-shell .agree-note a{color:var(--blue);font-weight:700}
.site-shell .back-link{position:absolute;top:24px;right:28px;font-size:14px;font-weight:700;color:var(--muted);display:inline-flex;align-items:center;gap:7px;transition:.2s}
.site-shell .back-link:hover{color:var(--blue)}
.site-shell .back-link svg{width:16px;height:16px}
.site-shell .auth-card{width:100%;max-width:412px}
.site-shell .m-logo{display:none;margin-bottom:26px}
.site-shell .m-logo img{height:32px}
.site-shell .auth-card h1{font-size:27px;letter-spacing:-.02em;margin-bottom:8px}
.site-shell .auth-card .sub{color:var(--muted);margin-bottom:26px;font-size:15px}
.site-shell .field{margin-bottom:15px}
.site-shell .field label{display:block;font-weight:700;font-size:13.5px;margin-bottom:7px}
.site-shell .field .ipt{width:100%;padding:13px 15px;border:1.5px solid var(--border);border-radius:12px;font-family:var(--font);font-size:15px;transition:.2s;background:#fff;color:var(--ink)}
.site-shell .field .ipt::placeholder{color:#aab1c4}
.site-shell .field .ipt:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(61,90,254,.12)}
.site-shell .field.err .ipt{border-color:var(--red)}
.site-shell .field .msg{font-size:12.5px;color:var(--red);margin-top:6px;display:none}
.site-shell .field.err .msg{display:block}
.site-shell .pass-wrap{position:relative}
.site-shell .pass-wrap .ipt{padding-right:46px}
.site-shell .pass-toggle{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;color:var(--muted);padding:6px;display:grid;place-items:center;border-radius:8px;width:36px;height:36px}
.site-shell .pass-toggle:hover{color:var(--ink);background:var(--soft)}
.site-shell .pass-toggle svg{width:19px;height:19px;pointer-events:none}
.site-shell .agree{display:flex;gap:11px;align-items:flex-start;margin:6px 0 20px;font-size:13.5px;color:var(--ink-2);cursor:pointer}
.site-shell .agree input{width:18px;height:18px;margin-top:2px;accent-color:var(--blue);flex:none;cursor:pointer}
.site-shell .agree a{color:var(--blue);font-weight:700}
.site-shell .field.err.agree .msg, .site-shell .agree.err .msg{display:block}
.site-shell .btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--font);font-weight:700;font-size:16px;padding:15px 26px;border-radius:999px;border:1px solid transparent;cursor:pointer;transition:.25s cubic-bezier(.2,.7,.3,1);width:100%}
.site-shell .btn-primary{background:var(--grad);color:#fff;box-shadow:0 12px 26px -10px rgba(61,90,254,.55)}
.site-shell .btn-primary:hover{transform:translateY(-2px);box-shadow:0 20px 38px -10px rgba(61,90,254,.6)}
.site-shell .divider{display:flex;align-items:center;gap:14px;margin:22px 0;color:var(--muted);font-size:13px;font-weight:600}
.site-shell .divider::before, .site-shell .divider::after{content:"";height:1px;background:var(--border);flex:1}
.site-shell .social-btns{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.site-shell .social-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:12px;border:1.5px solid var(--border);border-radius:12px;background:#fff;font-family:var(--font);font-weight:700;font-size:14.5px;cursor:pointer;transition:.2s;color:var(--ink)}
.site-shell .social-btn:hover{border-color:var(--blue);background:var(--soft)}
.site-shell .social-btn svg{width:19px;height:19px}
.site-shell .social-btn .g{font-family:var(--display);font-weight:700;color:#4285F4}
.site-shell .social-btn .vk{color:#0077FF}
.site-shell .auth-alt{text-align:center;margin-top:24px;font-size:14.5px;color:var(--muted)}
.site-shell .auth-alt a{color:var(--blue);font-weight:700}
/* успех */
.site-shell .auth-ok{display:none;text-align:center;padding:10px 0}
.site-shell .auth-ok.show{display:block}
.site-shell .auth-ok .circle{width:74px;height:74px;border-radius:50%;background:var(--grad);display:grid;place-items:center;margin:0 auto 22px;color:#fff;box-shadow:var(--sh)}
.site-shell .auth-ok .circle svg{width:36px;height:36px}
.site-shell .auth-ok h2{font-size:24px;margin-bottom:10px}
.site-shell .auth-ok p{color:var(--muted);margin-bottom:26px}

@media(max-width:900px){
  .site-shell .auth{grid-template-columns:1fr}
  .site-shell .auth__brand{display:none}
  .site-shell .m-logo{display:block}
  .site-shell .back-link{position:static;display:inline-flex;margin-bottom:22px}
  .site-shell .auth__form{padding:34px 22px;min-height:100vh;align-items:flex-start}
  .site-shell .auth-card{margin-top:8px}
}
@media(prefers-reduced-motion:reduce){.site-shell *{transition:none!important}}
