:root{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --card:rgba(10,20,40,.04);
  --card2:rgba(10,20,40,.06);
  --text:#0b1020;
  --muted:rgba(11,16,32,.68);
  --line:rgba(11,16,32,.10);
  --accent:#2f63ff;
  --accent2:#10b981;
  --shadow: 0 18px 60px rgba(10,20,40,.10);
  --radius:20px;
}

html[data-theme="dark"]{
  --bg:#0b1020;
  --panel:#101a33;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#e8ecf6;
  --muted:rgba(232,236,246,.72);
  --line:rgba(255,255,255,.10);
  --accent:#4f7cff;
  --accent2:#2fe6b8;
  --shadow: 0 20px 80px rgba(0,0,0,.35);
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 5%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%),
    radial-gradient(900px 500px at 90% 15%, color-mix(in srgb, var(--accent2) 14%, transparent), transparent 60%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 18px}
.muted{color:var(--muted)}
.lead{font-size:1.05rem; line-height:1.6; color:var(--muted)}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border:1px solid var(--line);
  border-radius:999px; background:rgba(255,255,255,.04);
  font-size:.82rem; color:var(--muted);
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}

.brand{display:flex; align-items:center; gap:10px}
.brand__logo{width:28px; height:28px}
.brand__text{font-weight:700; letter-spacing:.2px}
.brand__dot{color:var(--accent)}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:500; font-size:.95rem}
.nav a:hover{color:var(--text)}
.nav__cta{
  padding:10px 12px; border:1px solid var(--line);
  border-radius:999px; background:rgba(255,255,255,.04);
}

.burger{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:12px;
  cursor:pointer;
}
.burger span{
  display:block; width:18px; height:2px; margin:4px auto;
  background:color-mix(in srgb, var(--text) 75%, transparent);
}

.themebtn{
  width:44px; height:44px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.0);
  border-radius:12px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:var(--muted);
}
.themebtn:hover{background:rgba(255,255,255,.04); color:var(--text)}
.themebtn__sun, .themebtn__moon{font-size:16px; line-height:1}
html[data-theme="light"] .themebtn__moon{display:none}
html[data-theme="dark"] .themebtn__sun{display:none}


.hero{padding:64px 0 18px}
.hero__inner{display:grid; grid-template-columns: 1.05fr .95fr; gap:26px; align-items:center}
.hero h1{margin:12px 0 10px; font-size:2.35rem; line-height:1.12; letter-spacing:-.02em}
.hero__cta{display:flex; gap:12px; margin:18px 0 10px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
}
.btn--primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), rgba(79,124,255,.55));
  box-shadow: 0 14px 45px rgba(79,124,255,.18);
}
.btn--ghost:hover{background: rgba(255,255,255,.06)}
.btn--primary:hover{filter:brightness(1.03)}

.hero__stats{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px; margin-top:16px;
}
.stat{
  padding:12px; border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:16px;
}
.stat__num{font-size:1.4rem; font-weight:700}
.stat__label{font-size:.85rem; color:var(--muted); margin-top:2px}

.hero__visual{display:flex; justify-content:flex-end}
.glass{
  width:100%;
  max-width:420px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__top{
  display:flex; gap:8px; align-items:center;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
}
.dot{width:10px; height:10px; border-radius:50%}
.dot--r{background:#ff5d5d}
.dot--y{background:#ffcf5d}
.dot--g{background:#5dff9f}
.glass__body{padding:14px; display:grid; gap:10px}

.chip{
  padding:12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.04);
}
.chip__label{font-weight:700}
.chip__desc{color:var(--muted); font-size:.9rem; margin-top:2px}

.section{padding:54px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:1.7rem}
.section__head p{margin:0}

.grid{display:grid; gap:14px}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}
.card{
  padding:16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.card h3{margin:0 0 10px}
.card__actions{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

.module__head{display:flex; gap:12px; align-items:flex-start}
.module__icon{
  width:44px; height:44px; border-radius:14px;
  background:color-mix(in srgb, var(--accent) 10%, var(--panel));
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: color-mix(in srgb, var(--text) 92%, transparent);
}
.module__icon img{width:22px; height:22px}
.module__title{display:flex; gap:10px; align-items:center}
.badge{
  font-size:.72rem; padding:4px 8px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
}
.module__list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.module__list li{margin:6px 0}
.module__actions{margin-top:12px}

.two{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.preview__header{display:flex; gap:8px; align-items:center; margin-bottom:10px}
.pill{
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-size:.78rem; color:var(--muted);
}
.pill--soft{border-color: rgba(47,230,184,.25); background: rgba(47,230,184,.10)}
.preview__mock{margin-top:12px; border-top:1px solid var(--line); padding-top:12px}
.mock__row{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.06)}
.mock__k{color:rgba(232,236,246,.85); font-weight:600}
.mock__v{color:var(--muted); text-align:right}

.contact__row{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.06)}
.form__row{display:grid; gap:6px; margin:12px 0}
label{color:rgba(232,236,246,.85); font-size:.9rem; font-weight:600}
input, textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(79,124,255,.55)}
.form__row--actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.notice{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(47,230,184,.35);
  background: rgba(47,230,184,.10);
  color: rgba(232,236,246,.90);
}

.footer{padding:34px 0 18px; border-top:1px solid var(--line)}
.footer__inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer__logo{font-weight:800; font-size:1.1rem}
.footer__cols{display:flex; gap:36px; flex-wrap:wrap}
.footer__cols h4{margin:0 0 10px}
.footer__cols a{display:block; margin:8px 0; color:var(--muted)}
.footer__cols a:hover{color:var(--text)}
.footer__bottom{display:flex; justify-content:space-between; gap:12px; padding-top:14px; border-top:1px solid rgba(255,255,255,.06); margin-top:14px}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; }
  .grid--3{grid-template-columns: 1fr 1fr}
  .two{grid-template-columns: 1fr}
  .hero__visual{justify-content:flex-start}
}

@media (max-width: 680px){
  .nav{
    position:fixed; left:18px; right:18px; top:74px;
    flex-direction:column; align-items:stretch;
    padding:14px;
    border-radius:18px;
    border:1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    display:none;
  }
  .nav.is-open{display:flex}
  .burger{display:block}
  .grid--3, .grid--2{grid-template-columns: 1fr}
  .hero h1{font-size:2.0rem}
}



.module__subtitleRow{display:flex; gap:12px; align-items:center; justify-content:space-between}
.module__subtitle{margin:0}
.module__brand{
  height:34px;
  width:auto;
  object-fit:contain;
  opacity:.9;
}
html[data-theme="light"] .module__brand{opacity:.95}
.footer__phone{
  display:block;
  margin:8px 0;
  color:var(--muted);
  font-weight:500;
}




/* Module pages */
.moduleHero{padding-top:28px}
.moduleHero__bar{display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:12px}
.moduleHero__back{font-weight:600}
.moduleHero__brand{height:46px; width:auto; object-fit:contain; opacity:.95}
.moduleRich p{margin-top:0}
.moduleRich ul{margin:10px 0 0; padding-left:18px}
.moduleRich li{margin:8px 0}
.moduleGrid{margin-top:14px}
.moduleMini__row{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}


/* Screenshots */
.shots{margin-top:18px}
.shots__grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; margin-top:12px}
.shot{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.shot img{display:block; width:100%; height:auto}
@media (max-width: 980px){
  .shots__grid{grid-template-columns: 1fr}
}


.nomostra{
  display: none;
  visibility: hidden;
}