:root{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --panel2:#fcfdff;
  --text:#0b1220;
  --muted:#5e6a7a;
  --line:rgba(9,17,34,.10);
  --line-2:rgba(9,17,34,.16);
  --primary:#2a318b;
  --primary-2:#000000;
  --primary-3:#2a318b;
  --panel-2: var(--panel2);
  --ring:0 0 0 3px rgba(42,49,139,.28);
  --radius:18px;
  --radius-lg:24px;
  --radius-sm:14px;
  --shadow:0 10px 30px rgba(14,17,24,.08), inset 0 1px 0 rgba(255,255,255,.86);
  --grad-main:linear-gradient(135deg,var(--primary),var(--primary-2));
  --topbar-h:64px;
  --topbar-h-compact:52px;
  --trustpilot:#00B67A; --star:#FFB800;
}
*,
*::before,
*::after{box-sizing:border-box}

html,body{height:100%}
html{color-scheme:light;scroll-behavior:smooth}
body{
  margin:0;
  min-height:100dvh;
  background-color:var(--bg);
  background-image:
    radial-gradient(1200px 700px at 80% -10%, rgba(0,0,0,.09), transparent 60%),
    radial-gradient(1000px 600px at 10% 0%, rgba(42,49,139,.14), transparent 62%),
    radial-gradient(900px 520px at 10% 90%, rgba(42,49,139,.10), transparent 60%),
    conic-gradient(from 210deg at 50% 30%, rgba(42,49,139,.12), transparent 35%, rgba(0,0,0,.12) 55%, transparent 70%),
    linear-gradient(180deg, rgba(42,49,139,.04), rgba(0,0,0,.06)),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    var(--bg);
  background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,repeat;
  background-attachment:fixed,fixed,fixed,scroll,scroll,scroll,scroll;
  background-blend-mode:normal,normal,normal,normal,normal;
  color:var(--text);
  font-family:'Space Mono', monospace
}
body::before{
  content:"";
  position:fixed;inset:0;pointer-events:none;z-index:0;
  background:
    repeating-linear-gradient(0deg, rgba(9,17,34,.018), rgba(9,17,34,.018) 1px, transparent 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(9,17,34,.012), rgba(9,17,34,.012) 1px, transparent 1px, transparent 2px);
  mix-blend-mode:normal;
  opacity:.10;
}

.bg-aurora{
  position:fixed;inset:-20vh;z-index:-1;pointer-events:none;
  background:
    radial-gradient(60% 40% at 10% 10%, rgba(42,49,139,.10), transparent 60%),
    radial-gradient(55% 45% at 90% 0%, rgba(0,0,0,.08), transparent 62%),
    radial-gradient(45% 40% at 80% 90%, rgba(42,49,139,.07), transparent 60%);
  filter:saturate(120%);
}

.container{width:min(1160px,100% - 3rem);margin-inline:auto}
.section{padding:clamp(1.25rem,3.5vw,2.5rem) 0}
.section__title{
  font-weight:900;
  font-size:clamp(1.25rem,1.8vw + 1rem,1.9rem);
  margin:0 0 1rem;
  letter-spacing:.8px;
  background:var(--grad-main);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  text-transform:uppercase;text-align:center;position:relative;
  text-shadow:0 0 18px rgba(42,49,139,.22)
}
.section__title::after{
  content:"";display:block;width:60px;height:2px;margin:10px auto 0;
  background:var(--grad-main);border-radius:1px;filter:drop-shadow(0 0 8px rgba(42,49,139,.45))
}

.skip-link{position:absolute;left:-9999px;top:0}
.skip-link:focus{ left:1rem;top:1rem;z-index:9999; background:#111;padding:.5rem .75rem;border-radius:.5rem; outline:none;box-shadow:var(--ring);color:#fff }
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.topbar{ position:sticky;top:0;z-index:20; background:rgba(255,255,255,.78); backdrop-filter:saturate(140%) blur(14px); -webkit-backdrop-filter:saturate(140%) blur(14px); border-bottom:1px solid var(--line); transition:background .25s ease, border-color .25s ease, box-shadow .25s ease }
.topbar__inner{
  width:min(1200px,100% - 2rem);
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:var(--topbar-h);
  padding:0 .75rem;
  gap:.75rem;
  flex-wrap:nowrap;
}
.topbar.is-scrolled{ background:rgba(255,255,255,.9); border-bottom-color:rgba(9,17,34,.14); box-shadow:0 8px 24px rgba(14,17,24,.08) }
.topbar.is-scrolled .topbar__inner{ min-height:var(--topbar-h-compact) }
.brand{display:flex;align-items:center;text-decoration:none}
.brand{flex:0 0 auto}
.brand__img{height:36px;width:auto;display:block;transition:height .2s ease,opacity .2s ease}
.topbar.is-scrolled .brand__img{height:28px;opacity:.96}
.topbar__right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:.5rem;
  flex:0 0 auto;
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  padding:.9rem 1.2rem;border:none;border-radius:14px;color:var(--text);
  font-weight:800;background:rgba(9,17,34,.04);border:1px solid var(--line-2);
  box-shadow:var(--shadow);cursor:pointer;transition:transform .15s,filter .15s,background .15s;
  text-decoration:none
}
.btn:hover{transform:translateY(-2px) scale(1.01);filter:brightness(1.02)}
.btn__inner{display:inline-flex;align-items:center;gap:.5rem}
.btn--primary{background:rgba(9,17,34,.04);border-color:var(--line-2)}
.btn--ghost{background:rgba(9,17,34,.04)}
.btn--primary:hover,
.btn--primary:focus-visible,
.btn--ghost:hover,
.btn--ghost:focus-visible{
  background:var(--grad-main);
  border-color:transparent;
  color:#fff;
}
.btn--price{
  position:relative;
  border:none;padding:.55rem .85rem;
  font-weight:900;letter-spacing:.6px;
  background:var(--grad-main);
  background-size:120% 120%;
  display:inline-flex;align-items:baseline;gap:.6rem;
}
.btn--price{ color:#fff }
.btn--price:hover{background-size:160% 160%}
.price-old{text-decoration:line-through;opacity:.8;font-weight:800;font-size:.95rem}
.price-new{font-weight:900;font-size:1rem}
.price-sub{color:var(--muted);font-weight:700;margin-left:.35rem}

.hero{position:relative}
.hero__inner{ padding:clamp(1.2rem,4vw,3rem) 0 }
.hero__logo{ width:min(720px,94%);height:auto;display:block;margin:0 auto; filter:drop-shadow(0 10px 30px rgba(14,17,24,.15)); }
.hero__subtitle{ color:var(--muted);margin-top:.6rem; font-size:clamp(.98rem,1vw + .6rem,1.1rem); font-weight:400;letter-spacing:.2px; text-align:center; max-width:min(720px,92%); margin-left:auto; margin-right:auto }
.hero__cta{display:flex;gap:.8rem;margin-top:1.35rem;justify-content:center;flex-wrap:wrap}
.hero__divider{
  width:min(720px,92%);height:2px;
  margin:.8rem auto;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(42,49,139,.85) 25%,
    rgba(0,0,0,.85) 75%,
    transparent 100%
  );
  position:relative;overflow:hidden;border-radius:2px;
}
.hero__divider::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(42,49,139,.35) 25%,
    rgba(0,0,0,.35) 75%,
    transparent 100%
  );
  transform:translateX(-100%);animation:shimmer 2s linear infinite;
}

.card-grid{ list-style:none;margin:1rem 0 0;padding:0; display:grid;grid-template-columns:repeat(4,minmax(0,1fr)); gap:clamp(1rem,2.2vw,1.2rem); }
@media(max-width:1080px){.card-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:430px){.card-grid{grid-template-columns:1fr}}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(252,253,255,1));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.15rem;
  display:flex;flex-direction:column;align-items:flex-start;gap:.75rem;
  box-shadow:var(--shadow);min-height:110px;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease;
  text-decoration:none;color:var(--text);
}
.card:focus-visible{ outline:0;box-shadow:var(--ring); border-color:rgba(255,255,255,.22); transform:translateY(-2px); }
.card__icon{ width:48px;height:48px;display:grid;place-items:center;font-size:1.2rem; border-radius:1rem;background:rgba(9,17,34,.04); border:1px solid var(--line-2);overflow:hidden; }
.card__icon img,.card__icon video{width:100%;height:100%;object-fit:cover;display:block}
.card__title{font-weight:900;letter-spacing:.6px}
.card:hover{
  transform:translateY(-4px);border-color:rgba(9,17,34,.22);
  box-shadow:0 20px 40px rgba(14,17,24,.10),0 0 0 1px rgba(255,255,255,.7) inset;
  background:radial-gradient(200px 120px at 20% 0%,rgba(42,49,139,.12),transparent 60%),var(--panel2);
}

.product-grid{
  margin-top:1rem;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,260px));
  justify-content:center;
  gap:clamp(1rem,2.2vw,1.2rem);
}

.product-card{
  position:relative;background:var(--panel-2);
  border:1px solid var(--line);
  border-radius:var(--radius);padding:1.15rem;
  box-shadow:var(--shadow);display:flex;flex-direction:column;gap:.6rem;
  min-height:260px;overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease;
  content-visibility:auto;contain-intrinsic-size:320px 280px;
}
.product-card__media{
  width:calc(100% + 2.3rem);
  margin:-1.15rem -1.15rem 0;
  padding:1rem 1.15rem 0;
  display:flex;align-items:center;justify-content:center;
  aspect-ratio:16/9;
  min-height:140px;
  overflow:visible;
  -webkit-mask-image:none;
  mask-image:none;
}
.product-card__media img,
.product-card__media video{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  object-position:center;
  display:block;
  transform:translateZ(0);
  transition:transform .35s ease,filter .25s ease;
  filter:drop-shadow(0 18px 32px rgba(14,17,24,.16));
}
.product-card__name{ margin:.25rem 0 0;color:var(--text); font-weight:900;letter-spacing:.6px; }
.product-card__meta{color:var(--muted);margin:0;font-size:.95rem}

.product-card__footer{
  margin-top:auto;width:100%;
  padding:.65rem 0 .85rem;
  background:transparent;
  display:flex;align-items:center;justify-content:flex-end;
  min-height:44px
}
.product-card:hover{
  transform:none;
  border-color:var(--line);
  background:var(--panel-2);
  box-shadow:var(--shadow);
}
.product-card:hover .product-card__media img,
.product-card:hover .product-card__media video{
  transform:none;
  filter:drop-shadow(0 18px 32px rgba(14,17,24,.16));
}

.faq{display:grid;gap:.6rem;max-width:820px;margin:0 auto}
.faq__item{
  background:linear-gradient(180deg,#fff,#fcfdff);
  border:1px solid var(--line);
  border-radius:12px;
  padding:.6rem .8rem;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq__q{
  cursor:pointer;
  font-weight:900;
  color:var(--text);
  outline:none;
  display:flex;align-items:center;justify-content:space-between;gap:.8rem;
}
.faq__item[open] .faq__q{ color:var(--text) }
.faq__item[open]{
  box-shadow:0 0 0 2px rgba(42,49,139,.10) inset, 0 10px 24px rgba(14,17,24,.06);
  background:
    radial-gradient(220px 140px at 12% -10%, rgba(42,49,139,.06), transparent 60%),
    linear-gradient(180deg,#fff,#f7f9ff);
  border-color:rgba(9,17,34,.14);
}
.faq__q::after{
  content:"";
  width:14px;height:14px;flex:0 0 14px;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(-45deg) translateY(-1px);
  transition:transform .22s ease;
}
.faq__item[open] .faq__q::after{ transform:rotate(45deg) translateY(1px) }
.faq__a{
  color:var(--muted);
  padding:.5rem .2rem 0;
  overflow:hidden;
  height:0;
}

.reveal{opacity:0;transform:translateY(8px)}
.reveal.is-visible{opacity:1;transform:none;transition:opacity .5s ease,transform .5s ease}
img[loading="lazy"]{opacity:0}
img.is-loaded{opacity:1;transition:opacity .25s ease}

.site-footer{position:relative;margin-top:1.5rem}
.site-footer::before{content:"";position:absolute;top:0;left:6%;right:6%;height:2px;background:var(--grad-main);border-radius:2px;filter:drop-shadow(0 0 8px rgba(42,49,139,.45))}
.site-footer__inner{width:min(1200px,100% - 2rem);margin-inline:auto;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0 1.2rem}
.site-footer__brand{font-weight:800;color:var(--text)}
.site-footer__contacts{display:flex;flex-wrap:wrap;gap:.9rem 1.1rem;list-style:none;padding:0;margin:.45rem 0 0}
.site-footer__contacts li{display:flex;align-items:center;gap:.45rem}
.site-footer__contacts .icon{width:16px;height:16px}
.site-footer a{color:var(--text);text-decoration:none;opacity:.92}
.site-footer a:hover{text-decoration:underline}
.site-footer__right{display:flex;gap:.5rem;align-items:center}
.site-footer__right .btn:hover{text-decoration:none}
.site-footer__right .btn{min-width:auto}
.site-footer__right .btn:hover,
.site-footer__right .btn:focus-visible{
  background:var(--grad-main);
  color:#fff;
  border-color:transparent;
}

.user-menu{position:relative}
.avatar-btn{
  display:grid;place-items:center;
  width:36px;height:36px;border-radius:999px;border:1px solid var(--line-2);
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(255,255,255,.25), transparent 60%),
    conic-gradient(from 220deg at 50% 50%, rgba(42,49,139,.35), rgba(0,0,0,.35) 50%, rgba(42,49,139,.35) 100%);
  box-shadow:var(--shadow);cursor:pointer;transition:transform .12s,filter .15s;
  padding:0;line-height:0
}
.avatar-btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
.avatar-btn:focus-visible{outline:0;box-shadow:var(--ring)}
.avatar-btn.is-open{filter:brightness(1.08)}
.avatar-btn__icon{
  display:block;pointer-events:none;
  width:18px;height:18px;margin:0;
  background:linear-gradient(135deg, var(--primary), #000);
  -webkit-mask:url("/static/images/svg/user.svg") center/70% no-repeat;
  mask:url("/static/images/svg/user.svg") center/70% no-repeat
}

.dropdown{
  position:absolute;right:0;top:calc(100% + 10px);z-index:30;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px) saturate(140%);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);
  padding:12px 6px 6px;
  min-width:180px;
  isolation:isolate;
}
.dropdown::before{
  content:"";position:absolute;top:-8px;right:16px;width:14px;height:14px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px) saturate(140%);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  border-left:1px solid var(--line);border-top:1px solid var(--line);
  transform:rotate(45deg);
  pointer-events:none;
}
.dropdown[hidden]{display:none}

.dropdown__icon{ width:18px;height:18px;flex:0 0 18px; background-color:var(--primary); display:inline-block; }
.dropdown__icon--products{
  -webkit-mask:url("/static/images/svg/product.svg") center/contain no-repeat;
  mask:url("/static/images/svg/product.svg") center/contain no-repeat;
}
.dropdown__icon--faq{
  -webkit-mask:url("/static/images/svg/support.svg") center/contain no-repeat;
  mask:url("/static/images/svg/support.svg") center/contain no-repeat;
}
.dropdown__icon--login{
  -webkit-mask:url("/static/images/svg/logout.svg") center/contain no-repeat;
  mask:url("/static/images/svg/logout.svg") center/contain no-repeat;
}
.dropdown__icon--panel{-webkit-mask:url("/static/images/svg/panel.svg") center/contain no-repeat;mask:url("/static/images/svg/panel.svg") center/contain no-repeat}

.dropdown__btn{
  width:100%;display:flex;align-items:center;gap:.6rem;justify-content:flex-start;
  padding:.6rem .75rem;border-radius:10px;border:1px solid transparent;background:transparent;
  color:var(--text);font-weight:800;cursor:pointer;text-decoration:none
}
.dropdown__btn:hover{background:rgba(9,17,34,.04);border-color:var(--line-2)}

@keyframes shimmer{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}
@media (max-width:980px){
  .site-footer__inner{flex-direction:column;align-items:flex-start}
  .site-footer__right{align-self:stretch;justify-content:flex-end;width:100%}
}
@media (max-width:640px){
  :root{ --topbar-h:56px; --topbar-h-compact:48px }
  .topbar__inner{ padding:0 .5rem }
  .brand__img{ height:30px }
}
@media (pointer:coarse){
  .card:hover,
  .product-card:hover{ transform:none; box-shadow:var(--shadow); }
}
@media(prefers-reduced-motion:reduce){*{animation:none !important;transition:none !important}}

.page-transition{
  position:fixed;inset:0;z-index:9999;pointer-events:none;
  background:
    radial-gradient(1200px 700px at 50% -20%, rgba(42,49,139,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(246,247,251,.9));
  opacity:0;
  transition:opacity .32s ease;
}
body.is-transitioning .page-transition{ opacity:1 }

.hero,.section{ scroll-margin-top:calc(var(--topbar-h-compact) + 8px) }

.social-proof{display:flex;justify-content:center;margin-top:.6rem}
.tp-badge{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.5rem .8rem;border-radius:999px;border:1px solid var(--line-2);
  background:linear-gradient(180deg,#fff,#fcfdff);
  box-shadow:var(--shadow)
}
.tp-logo{
  width:18px;height:18px;flex:0 0 18px;
  background-color:var(--trustpilot);
  -webkit-mask:url("/static/images/svg/trustpilot.svg") center/contain no-repeat;
  mask:url("/static/images/svg/trustpilot.svg") center/contain no-repeat
}
.tp-text{font-weight:800;letter-spacing:.2px}
.tp-text strong{font-weight:900}
.tp-stars{display:inline-flex;align-items:center;gap:.25rem;margin-left:.1rem}
.star{width:16px;height:16px;display:inline-block;background-color:var(--star)}
.star--full{
  -webkit-mask:url("/static/images/svg/fullstar.svg") center/contain no-repeat;
  mask:url("/static/images/svg/fullstar.svg") center/contain no-repeat
}
.star--half{
  -webkit-mask:url("/static/images/svg/halfstar.svg") center/contain no-repeat;
  mask:url("/static/images/svg/halfstar.svg") center/contain no-repeat
}
@media (max-width:480px){
  .tp-text{font-size:.95rem}
  .star{width:14px;height:14px}
}

.faq__item summary::-webkit-details-marker{display:none}
