/* ============================================================
   MEGAPROJECT — umbrella.css
   Арт-дирекшн: кинематографичная тьма, столкновение льда и огня.
   VeraStar (циан, система) × Роман Пикуль (оранж, инженерия).
   Подпись: разлом-«трещина» + живое поле углей + знак «×».
   Этот файл — контракт стиля зонтика (продукты подключают его).
   ============================================================ */

:root {
  --void:      #05080e;
  --abyss:     #090f18;
  --panel:     #0c131f;
  --panel-2:   #101a28;
  --ice:       #00e5f4;
  --ice-deep:  #0a6cff;
  --fire:      #ff7d37;
  --ember:     #ff3d00;
  --gold:      #ffb455;
  --frost:     #e6eff8;
  --steel:     #7e93a9;
  --line:      rgba(125,147,171,.16);
  --line-2:    rgba(125,147,171,.28);

  --maxw: 1180px;
  --r:    18px;
  --r-sm: 12px;

  --f-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --f-body:    'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-label:   'Saira', 'Manrope', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--frost);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1100px 620px at 18% -8%, rgba(10,108,255,.16), transparent 60%),
    radial-gradient(1100px 620px at 84% -6%, rgba(255,61,0,.14), transparent 60%),
    radial-gradient(900px 900px at 50% 120%, rgba(0,229,244,.05), transparent 60%),
    var(--void);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(0,229,244,.3); color: #fff; }

/* зерно/шум поверх всего */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* --- утилиты --- */
.c-ice  { color: var(--ice); }
.c-fire { color: var(--fire); }
.grad {
  background: linear-gradient(98deg, var(--ice) 0%, #aef1ff 34%, #fff 50%, #ffd0a8 66%, var(--fire) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* eyebrow / надзаголовок */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-label); font-weight: 600; text-transform: uppercase;
  letter-spacing: .28em; font-size: 12.5px; color: var(--steel); margin: 0 0 18px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--fire));
  box-shadow: 0 0 12px var(--ice), 0 0 18px rgba(255,125,55,.5);
}

/* разлом-трещина между секциями */
.seam {
  position: relative; height: 1px; max-width: var(--maxw); margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--ice) 22%, rgba(255,255,255,.7) 50%, var(--fire) 78%, transparent);
  opacity: .45;
}
.seam::after {
  content: "×"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--f-display); font-weight: 800; font-size: 22px; color: #fff;
  background: var(--void); padding: 0 14px; text-shadow: 0 0 16px rgba(255,255,255,.5);
}

/* ============================================================
   НАВИГАЦИЯ
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; transition: padding .3s var(--ease), background .3s, backdrop-filter .3s;
}
.nav--scrolled {
  padding: 11px 32px; background: rgba(7,11,18,.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 13px; }
.vxp {
  display: inline-block;
  font-family: var(--f-display); font-weight: 900; font-size: 25px; font-style: italic;
  letter-spacing: .5px; line-height: 1.2; padding: 2px 4px 3px 2px;
  background: linear-gradient(118deg, var(--ice), #fff 48%, var(--fire));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vxp .x { -webkit-text-fill-color: #fff; color: #fff; padding: 0 1px; }
.nav__logo-word {
  font-family: var(--f-label); font-weight: 700; letter-spacing: .34em; font-size: 13px; color: var(--steel);
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  position: relative; font-weight: 600; font-size: 14.5px; color: var(--steel);
  transition: color .2s; padding: 5px 0;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--frost); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ice), var(--fire));
}
.nav__admin { color: var(--fire) !important; }
.nav__cta {
  padding: 9px 20px !important; border-radius: 30px; color: var(--frost) !important;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
}
.nav__cta:hover { border-color: var(--ice); box-shadow: 0 0 22px rgba(0,229,244,.25); }
.nav__toggle, .nav__burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; max-width: 1320px; margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 24px clamp(40px, 5vw, 64px); text-align: center;
}
.hero__atmos { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__aura { position: absolute; top: 12%; width: 46%; height: 60%; z-index: 0; filter: blur(80px); opacity: .55; pointer-events: none; }
.hero__aura--ice  { left: -6%;  background: radial-gradient(circle at 60% 40%, var(--ice-deep), transparent 62%); }
.hero__aura--fire { right: -6%; background: radial-gradient(circle at 40% 40%, var(--ember), transparent 62%); }

.hero__inner { position: relative; z-index: 2; }
.hero__art { margin: 4px auto 0; max-width: 980px; }
.hero__logo {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 10px 50px rgba(0,229,244,.22)) drop-shadow(0 10px 50px rgba(255,77,0,.18));
}
.hero__slogan {
  font-family: var(--f-label); font-weight: 600; text-transform: uppercase;
  letter-spacing: .42em; font-size: clamp(12px, 1.5vw, 15px); color: var(--steel);
  margin: 18px 0 0;
}
.hero__slogan i { color: var(--fire); font-style: normal; margin: 0 .35em; }
.hero__lead {
  max-width: 600px; margin: 26px auto 0; color: #c3d2e2; font-size: clamp(15px, 1.7vw, 18px);
}
.hero__cta { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 14px; z-index: 2;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px;
  background: linear-gradient(var(--ice), var(--fire)); animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 30%{opacity:1} 80%{opacity:0;transform:translateY(12px)} 100%{opacity:0} }

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
  --shine: -120%;
  position: relative; display: inline-flex; align-items: center; gap: 10px; overflow: hidden;
  padding: 15px 28px; border-radius: 40px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .18s var(--ease), box-shadow .25s;
}
.btn__arr { transition: transform .2s var(--ease); }
.btn:hover .btn__arr { transform: translateX(5px); }
.btn--primary {
  color: #04121d;
  background: linear-gradient(100deg, var(--ice), #8fe9ff 46%, var(--fire));
  box-shadow: 0 10px 34px rgba(0,229,244,.28), 0 10px 34px rgba(255,125,55,.2);
}
.btn--primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: var(--shine); width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 46px rgba(0,229,244,.42), 0 16px 46px rgba(255,125,55,.32); }
.btn--primary:hover::after { left: 160%; }
.btn--ghost { color: var(--frost); border-color: var(--line-2); background: rgba(255,255,255,.025); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--ice); color: #fff; box-shadow: 0 0 26px rgba(0,229,244,.22); }

/* ============================================================
   ДВЕ СИЛЫ
   ============================================================ */
.forces {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px,7vw,86px) 24px; display: grid;
  grid-template-columns: 1fr auto 1fr; gap: clamp(20px,3vw,44px); align-items: stretch;
}
.forces__col {
  position: relative; padding: 34px 30px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel), var(--abyss));
  border: 1px solid var(--line); overflow: hidden;
}
.forces__col::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.forces__col--ice::before  { background: linear-gradient(90deg, var(--ice), transparent); }
.forces__col--fire::before { background: linear-gradient(270deg, var(--fire), transparent); }
.forces__col--ice  { box-shadow: inset 0 0 60px rgba(0,229,244,.05); }
.forces__col--fire { box-shadow: inset 0 0 60px rgba(255,125,55,.05); text-align: right; }
.forces__col--fire .forces__list { align-items: flex-end; }
.forces__mark {
  font-family: var(--f-display); font-style: italic; font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: .14em;
}
.forces__col--ice .forces__mark  { color: var(--ice); }
.forces__col--fire .forces__mark { color: var(--fire); }
.forces__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(26px,3.4vw,38px); margin: 10px 0 14px; line-height: 1.04; }
.forces__col p { color: var(--steel); margin: 0 0 20px; }
.forces__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.forces__list li { position: relative; padding-left: 18px; font-size: 15px; color: #c3d2e2; }
.forces__col--ice .forces__list li::before  { content: "▸"; position: absolute; left: 0; color: var(--ice); }
.forces__col--fire .forces__list li { padding-left: 0; padding-right: 18px; }
.forces__col--fire .forces__list li::before { content: "◂"; position: absolute; right: 0; color: var(--fire); }
.forces__x {
  display: grid; place-items: center; align-self: center;
}
.forces__x span {
  font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: clamp(40px,6vw,72px);
  color: #fff; text-shadow: 0 0 24px rgba(0,229,244,.6), 0 0 40px rgba(255,125,55,.5);
  animation: pulseX 4s ease-in-out infinite;
}
@keyframes pulseX { 0%,100%{opacity:.85;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }

/* ============================================================
   БЛОКИ / СЕКЦИИ
   ============================================================ */
.block { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,90px) 24px; }
.block__head { text-align: center; margin-bottom: 46px; }
.block__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(28px,4vw,46px); line-height: 1.04; margin: 0; }
.block__sub { color: var(--steel); font-size: 17px; margin: 14px auto 0; max-width: 560px; }
.block--cta { text-align: center; }
.block--cta .btn { margin-top: 26px; }

/* ============================================================
   КАРТОЧКИ
   ============================================================ */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  --accent: var(--ice);
  position: relative; padding: 30px; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(180deg, var(--panel) 0%, var(--abyss) 100%);
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card--ice  { --accent: var(--ice); }
.card--fire { --accent: var(--fire); }
.card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--r);
  background: linear-gradient(140deg, var(--accent), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; transition: opacity .25s;
  pointer-events: none;   /* не перехватывать клики — ссылки в карточке должны работать */
}
.card__glow {
  position: absolute; top: -40%; left: -20%; width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  opacity: 0; filter: blur(40px); transition: opacity .3s; pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.card:hover::before { opacity: 1; }
.card:hover .card__glow { opacity: .18; }
.card__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  font-size: 24px; color: var(--accent); margin-bottom: 18px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  text-shadow: 0 0 16px var(--accent);
}
.card__title { font-family: var(--f-display); font-weight: 700; font-size: 23px; margin: 0 0 10px; }
.card__text { margin: 0; color: var(--steel); font-size: 15px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; gap: 12px; }
.card__meta { font-family: var(--f-label); font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.card__link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--frost);
}
.card__link span { transition: transform .2s var(--ease); }
.card__link:hover span { transform: translateX(4px); }
.card--ghost {
  border-style: dashed; background: rgba(255,255,255,.012);
}
.card--ghost::before { display: none; }
.card--ghost .card__icon { color: var(--steel); text-shadow: none; }

/* команда */
.card--member .member__top { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.member__avatar {
  flex: none; width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 28px; color: var(--accent);
  background: var(--panel-2); border: 1px solid var(--line); text-shadow: 0 0 18px var(--accent);
}
.member__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.member__role { font-family: var(--f-label); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-top: 4px; }

/* ============================================================
   СТРАНИЧНЫЕ ЗАГОЛОВКИ / ПРОЗА
   ============================================================ */
.page-head { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,8vw,96px) 24px 8px; text-align: center; }
.page-head__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(34px,6vw,64px); line-height: 1.02; margin: 0; }
.page-head__sub { color: var(--steel); font-size: 18px; margin: 16px auto 0; max-width: 600px; }

.prose p { max-width: 740px; margin: 0 auto 18px; font-size: 17px; color: #c8d6e6; }
.prose .block__title { text-align: center; margin: 50px 0 30px; }
.steps { max-width: 760px; margin: 0 auto; display: grid; gap: 16px; }
.step {
  --accent: var(--ice);
  display: flex; gap: 22px; align-items: flex-start; padding: 24px 26px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel), var(--abyss)); border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.step--ice { --accent: var(--ice); } .step--fire { --accent: var(--fire); }
.step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); opacity: .7; }
.step__n { font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 30px; color: var(--accent); text-shadow: 0 0 18px var(--accent); }
.step h3 { margin: 2px 0 6px; font-family: var(--f-display); font-weight: 700; font-size: 21px; }
.step p { margin: 0; color: var(--steel); }
code { background: var(--panel-2); border: 1px solid var(--line); padding: 2px 8px; border-radius: 6px; font-size: 14px; color: var(--ice); }
.empty { text-align: center; color: var(--steel); padding: 46px 0; }
.contacts__domain { text-align: center; margin-top: 30px; font-size: 18px; color: var(--steel); }

/* ============================================================
   АДМИНКА
   ============================================================ */
.admin-login { max-width: 360px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.admin-login input {
  padding: 15px 18px; border-radius: var(--r-sm); border: 1px solid var(--line-2);
  background: var(--panel); color: var(--frost); font-size: 16px; font-family: var(--f-body);
}
.admin-login input:focus { outline: none; border-color: var(--ice); box-shadow: 0 0 0 3px rgba(0,229,244,.15); }
.form-error { color: #ff6b6b; text-align: center; font-weight: 600; }
.admin-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.admin-row {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, var(--panel), var(--abyss)); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 16px 20px;
}
.admin-row__title { font-family: var(--f-display); font-weight: 700; font-size: 19px; }
.admin-row__key { color: var(--steel); font-size: 13px; margin-left: 10px; font-family: var(--f-label); }
.toggle {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer; font-family: var(--f-label);
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 40px;
  padding: 6px 16px 6px 6px; color: var(--steel); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
}
.toggle__knob { width: 22px; height: 22px; border-radius: 50%; background: #44566b; transition: .2s; }
.toggle--on { color: var(--ice); border-color: rgba(0,229,244,.4); }
.toggle--on .toggle__knob { background: var(--ice); box-shadow: 0 0 14px var(--ice); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { margin-top: 50px; position: relative; }
.footer__seam { height: 1px; background: linear-gradient(90deg, transparent, var(--ice) 25%, var(--fire) 75%, transparent); opacity: .4; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 36px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__name { font-family: var(--f-display); font-weight: 800; letter-spacing: .12em; }
.footer__tag { color: var(--steel); font-size: 12px; font-family: var(--f-label); text-transform: uppercase; letter-spacing: .18em; }
.footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__nav a { color: var(--steel); font-size: 14px; }
.footer__nav a:hover { color: var(--frost); }
.footer__copy { color: var(--steel); font-size: 13px; font-family: var(--f-label); }

/* ============================================================
   REVEAL-АНИМАЦИИ
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 920px) {
  .cards--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { padding: 14px 20px; }
  .nav--scrolled { padding: 10px 20px; }
  .nav__burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 60; }
  .nav__burger span { width: 26px; height: 2px; background: var(--frost); border-radius: 2px; transition: .25s; }
  .nav__links {
    position: absolute; top: calc(100% + 8px); right: 20px; flex-direction: column; align-items: flex-start;
    gap: 16px; background: rgba(9,15,24,.96); border: 1px solid var(--line); border-radius: var(--r);
    padding: 22px 26px; display: none; min-width: 210px; backdrop-filter: blur(16px);
  }
  .nav__toggle:checked ~ .nav__links { display: flex; }
  .forces { grid-template-columns: 1fr; }
  .forces__col--fire, .forces__col--fire .forces__list { text-align: left; }
  .forces__col--fire .forces__list { align-items: flex-start; }
  .forces__col--fire .forces__list li { padding-left: 18px; padding-right: 0; }
  .forces__col--fire .forces__list li::before { content: "▸"; left: 0; right: auto; }
  .forces__x { transform: rotate(90deg); padding: 6px 0; }
  .cards--3, .cards--2 { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   ПРАВКИ-2: верхний бар, языки, модули, команда, контакты, форма
   ============================================================ */

/* --- верхний тонкий бар --- */
.topbar { position: relative; z-index: 40; border-bottom: 1px solid var(--line); background: rgba(5,8,14,.6); font-family: var(--f-label); }
.topbar__inner { max-width: var(--maxw); margin: 0 auto; padding: 7px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.topbar__contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--steel); letter-spacing: .02em; transition: color .2s; }
.topbar__link:hover { color: var(--frost); }
.topbar__link--wa:hover { color: var(--fire); }
.topbar__ic { opacity: .8; }
.langs { display: flex; gap: 4px; }
.lang { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--steel); padding: 4px 9px; border-radius: 8px; transition: .2s; }
.lang:hover { color: var(--frost); background: rgba(255,255,255,.05); }
.lang.is-active { color: #04121d; background: linear-gradient(100deg, var(--ice), var(--fire)); }

/* --- hero доп.строки --- */
.hero__punch { font-family: var(--f-display); font-weight: 800; font-style: italic; font-size: clamp(17px,2.4vw,26px); margin: 22px auto 0; max-width: 760px; line-height: 1.15;
  background: linear-gradient(100deg, var(--ice), #fff 50%, var(--fire)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__formats { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--steel); margin: 16px auto 0; }

/* --- сетка 11 модулей --- */
.modules { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.mod {
  --accent: var(--ice);
  position: relative; display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--abyss)); border: 1px solid var(--line);
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.mod--ice { --accent: var(--ice); } .mod--fire { --accent: var(--fire); }
.mod::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); opacity: .85; }
.mod:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.mod:hover .mod__arrow { transform: translateX(4px); opacity: 1; }
.mod__n { font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 26px; color: var(--accent); text-shadow: 0 0 16px var(--accent); min-width: 38px; }
.mod__title { flex: 1; font-weight: 700; font-size: 15px; line-height: 1.25; }
.mod__hours { font-family: var(--f-label); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--steel); white-space: nowrap; }
.mod__arrow { color: var(--accent); opacity: .5; transition: .2s var(--ease); }

/* --- страница модуля --- */
.module-head { position: relative; }
.module-back { display: inline-block; margin-bottom: 14px; color: var(--steel); font-weight: 600; font-size: 14px; }
.module-back:hover { color: var(--frost); }
.module-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: start; }
.module-h { font-family: var(--f-display); font-weight: 800; font-size: 24px; margin: 0 0 18px; }
.topics { display: grid; gap: 12px; }
.topic { --accent: var(--ice); display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); font-weight: 600; }
.topic--ice { --accent: var(--ice); } .topic--fire { --accent: var(--fire); }
.topic__n { font-family: var(--f-display); font-weight: 900; font-style: italic; color: var(--accent); font-size: 20px; }
.module-cta__card { position: sticky; top: 90px; padding: 28px; border-radius: var(--r); background: linear-gradient(160deg, var(--panel-2), var(--abyss)); border: 1px solid var(--line-2); }
.module-cta__card h3 { font-family: var(--f-display); font-weight: 800; font-size: 22px; margin: 0 0 10px; }
.module-cta__card p { color: var(--steel); margin: 0 0 18px; }

/* --- команда: фото --- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.member { --accent: var(--ice); position: relative; border-radius: var(--r); overflow: hidden; background: linear-gradient(180deg, var(--panel), var(--abyss)); border: 1px solid var(--line); transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.member--ice { --accent: var(--ice); } .member--fire { --accent: var(--fire); }
.member:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 24px 56px rgba(0,0,0,.5); }
.member__photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02); transition: transform .4s var(--ease); }
.member:hover .member__photo img { transform: scale(1.04); }
.member__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(9,15,24,.9) 100%); }
.member__photo::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 2; background: linear-gradient(90deg, var(--accent), transparent); }
.member__body { position: relative; padding: 20px 22px 24px; margin-top: -42px; z-index: 2; }
.member__name { font-family: var(--f-display); font-weight: 800; font-size: 23px; margin: 0; }
.member__role { font-family: var(--f-label); font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin: 4px 0 12px; }
.member__bio { color: var(--steel); font-size: 14.5px; margin: 0 0 16px; }
.member__socials { display: flex; gap: 8px; flex-wrap: wrap; }

/* --- соцсети-чипы --- */
.soc { font-family: var(--f-label); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 30px; border: 1px solid var(--line-2); color: var(--steel); transition: .2s; }
.soc--ice:hover  { color: #04121d; background: var(--ice); border-color: var(--ice); box-shadow: 0 0 18px rgba(0,229,244,.4); }
.soc--fire:hover { color: #04121d; background: var(--fire); border-color: var(--fire); box-shadow: 0 0 18px rgba(255,125,55,.4); }

/* --- контакты --- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.contacts-info { display: grid; gap: 22px; padding: 30px; border-radius: var(--r); background: linear-gradient(180deg, var(--panel), var(--abyss)); border: 1px solid var(--line); }
.ci-label { font-family: var(--f-label); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--steel); margin-bottom: 8px; }
.ci-value { font-size: 17px; font-weight: 600; display: block; }
.ci-link { transition: .2s; }
.ci-who { color: var(--steel); font-weight: 500; }
.ci-socials { display: flex; gap: 8px; flex-wrap: wrap; }

/* --- форма консультации --- */
.consult { max-width: var(--maxw); margin: 0 auto; padding: 0 24px clamp(40px,6vw,70px); }
.contacts-form .consult { padding: 0; max-width: none; }
.consult__card { padding: 32px; border-radius: var(--r); background: linear-gradient(160deg, var(--panel-2), var(--abyss)); border: 1px solid var(--line-2); position: relative; overflow: hidden; }
.consult__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--ice), var(--fire)); }
.consult__head { margin-bottom: 20px; }
.consult__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(20px,2.6vw,28px); margin: 6px 0 0; }
.consult__form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consult__form input, .consult__form textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--void); color: var(--frost); font-family: var(--f-body); font-size: 15px; }
.consult__form textarea { grid-column: 1 / -1; resize: vertical; }
.consult__form input:focus, .consult__form textarea:focus { outline: none; border-color: var(--ice); box-shadow: 0 0 0 3px rgba(0,229,244,.14); }
.consult__form .btn { grid-column: 1 / -1; justify-content: center; }
.consult__thanks { margin-bottom: 16px; padding: 14px 18px; border-radius: 12px; background: rgba(0,229,244,.1); border: 1px solid rgba(0,229,244,.35); color: var(--ice); font-weight: 600; }

/* --- футер (новый трёхколоночный) --- */
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 28px; align-items: start; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__brandrow { display: flex; align-items: center; gap: 14px; }
.footer__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__nav { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
.footer__nav a { color: var(--steel); font-size: 14px; }
.footer__nav a:hover { color: var(--frost); }
.footer__contacts { gap: 8px; }
.footer__addr { color: var(--steel); font-size: 14px; }
.footer__phone, .footer__mail { font-weight: 600; font-size: 14px; }
.footer__bottom { border-top: 1px solid var(--line); text-align: center; padding: 18px; color: var(--steel); font-size: 13px; font-family: var(--f-label); }

@media (max-width: 920px) {
  .modules { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .module-grid, .contacts-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .modules { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .consult__form { grid-template-columns: 1fr; }
  .topbar__contacts { gap: 12px; }
  .topbar__link span { display: none; }
}

/* ============================================================
   ПРАВКИ-3 (UX/UI чистка): метрики-strip, мелочи
   ============================================================ */
.strip {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.strip__item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 30px 24px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel), var(--abyss)); border: 1px solid var(--line);
  transition: transform .2s var(--ease), border-color .2s;
}
.strip__item:hover { transform: translateY(-3px); border-color: var(--line-2); }
.strip__item b {
  font-family: var(--f-display); font-weight: 900; font-style: italic; font-size: 46px; line-height: 1;
}
.strip__item span { color: var(--steel); font-size: 14px; max-width: 250px; }

/* продуктовые карточки: когда их немного — центрируем, без дыры */
.cards--showcase { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 840px; margin-left: auto; margin-right: auto; }

@media (max-width: 860px) {
  .strip { grid-template-columns: 1fr; }
  .cards--showcase { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar__contacts .topbar__link:first-child { display: none; } /* email прячем, WhatsApp оставляем */
  .topbar__inner { padding: 7px 16px; }
}

/* ============================================================
   СПЛИТ-ГЕРОЙ с фотографией команды (авторский проект)
   ============================================================ */
.hero--split { text-align: left; }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(20px, 4vw, 56px);
  align-items: center; max-width: 1240px; margin: 0 auto;
}
.hero--split .hero__art { max-width: 520px; margin: 6px 0 0; }
.hero--split .eyebrow { margin-bottom: 14px; }
.hero__credit { color: var(--steel); font-size: 14.5px; margin: 12px 0 0; max-width: 480px; }
.hero--split .hero__punch { margin: 22px 0 0; max-width: 560px; }
.hero--split .hero__lead { margin: 16px 0 0; max-width: 540px; }
.hero--split .hero__cta { justify-content: flex-start; margin-top: 30px; }

.hero__people { position: relative; align-self: end; }
.hero__people::before {
  content: ""; position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: 90%; height: 80%; z-index: 0; filter: blur(70px); opacity: .5;
  background: radial-gradient(circle at 40% 40%, rgba(10,108,255,.5), transparent 60%),
              radial-gradient(circle at 70% 55%, rgba(255,77,0,.42), transparent 60%);
}
.hero__people img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000 64%, transparent 98%);
          mask-image: linear-gradient(to bottom, #000 64%, transparent 98%);
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.55));
}

@media (max-width: 900px) {
  .hero--split { text-align: center; }
  .hero__grid { grid-template-columns: 1fr; gap: 8px; }
  .hero--split .hero__art,
  .hero--split .hero__punch,
  .hero--split .hero__lead { margin-left: auto; margin-right: auto; }
  .hero--split .eyebrow { justify-content: center; }
  .hero--split .hero__cta { justify-content: center; }
  .hero__credit { margin-left: auto; margin-right: auto; }
  .hero__people { max-width: 460px; margin: 8px auto 0; order: 2; }
  .hero__text { order: 1; }
}

/* ============================================================
   ПРАВКА: большой центрированный герой + команда под брендом
   (откат двухколоночного варианта)
   ============================================================ */
.hero__credit {
  text-align: center; color: var(--steel); font-size: 15px;
  margin: 14px auto 0; max-width: 560px;
}
.hero__crew {
  position: relative; max-width: 940px; margin: 30px auto -10px;
}
.hero__crew::before {
  content: ""; position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%);
  width: 88%; height: 78%; z-index: 0; filter: blur(75px); opacity: .5; pointer-events: none;
  background: radial-gradient(circle at 32% 42%, rgba(10,108,255,.5), transparent 60%),
              radial-gradient(circle at 64% 50%, rgba(255,77,0,.42), transparent 60%);
}
.hero__crew img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 99%);
          mask-image: linear-gradient(to bottom, #000 70%, transparent 99%);
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.5));
}
@media (max-width: 700px) {
  .hero__crew { max-width: 460px; margin-top: 22px; }
}
