/* Шрифты хостятся у нас: Google Fonts в РФ работает нестабильно,
   а при его недоступности сайт терял фирменную гарнитуру.
   Файлы вариативные (один на все начертания), вместе — 96 КБ. */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-cyrillic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-cyrillic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* НЕ СПАТЬ МОСКВА — фирменные токены */
:root {
  --c-bg: #0a0a0b;
  --c-bg-2: #121214;
  --c-surface: #1a1a1d;
  --c-text: #f5f4f2;
  --c-text-dim: #b6b3ae;
  --c-accent: #e02b2b;
  --c-accent-hot: #ff3b3b;
  --c-border: #2a2a2e;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, .45);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }
.accent { color: var(--c-accent-hot); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* бегущую строку не останавливаем (фирменный элемент) — только замедляем */
  .ticker__track { animation-duration: 84s !important; }
  .hero__scroll { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding-inline: clamp(16px, 4vw, 40px);
  transition: background .3s, box-shadow .3s;
}
.nav.is-scrolled { background: rgba(10, 10, 11, .88); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--c-border); }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__mark { width: 30px; height: auto; }
.footer__mark { width: 34px; height: auto; }
.nav__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: .06em; line-height: 1.05; display: flex; flex-direction: column; }
.nav__wordmark em { font-style: normal; color: var(--c-accent-hot); font-size: 10px; letter-spacing: .5em; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 34px); }
.nav__links a { font-weight: 500; font-size: 15px; color: var(--c-text-dim); transition: color .2s; }
.nav__links a:hover, .nav__links a:focus-visible { color: var(--c-text); }
.nav__cta {
  color: #fff !important; background: var(--c-accent); padding: 10px 22px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .2s, transform .2s;
}
.nav__cta:hover, .nav__cta:focus-visible { background: var(--c-accent-hot); transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--c-text); transition: transform .3s, opacity .3s; }

@media (max-width: 820px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 10, 11, .97); backdrop-filter: blur(14px);
    padding: 8px 20px 24px; border-bottom: 1px solid var(--c-border);
    transform: translateY(-120%); transition: transform .35s var(--ease-out);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: 14px 4px; font-size: 17px; border-bottom: 1px solid var(--c-border); }
  .nav__links a.nav__cta { margin-top: 16px; text-align: center; border: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero__bg { position: absolute; inset: -8% 0; z-index: -2; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; filter: saturate(.85) contrast(1.05); }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center 40%, rgba(10,10,11,.25) 0%, rgba(10,10,11,.78) 75%),
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.25) 35%, var(--c-bg) 98%);
}
.hero__content { padding: calc(var(--nav-h) + 32px) 20px 80px; max-width: 900px; }
.hero__kicker {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .35em;
  font-size: clamp(11px, 1.4vw, 14px); color: var(--c-text-dim); margin-bottom: 18px;
}
.hero__title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; line-height: 1.04; font-size: clamp(34px, 6.2vw, 72px); }
.hero__line { display: block; }
.hero__line--accent { color: var(--c-accent-hot); text-shadow: 0 0 42px rgba(224, 43, 43, .35); }
.hero__slogan {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .18em;
  color: var(--c-text); font-size: clamp(14px, 1.9vw, 20px); margin-top: 22px;
}
.hero__sub { margin: 16px auto 34px; display: grid; gap: 6px; }
.hero__facts { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: clamp(13px, 1.6vw, 16px); }
.hero__facts i { font-style: normal; color: var(--c-accent-hot); margin: 0 10px; }
.hero__facts--dim { color: var(--c-text-dim); font-size: clamp(12px, 1.4vw, 14px); }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; translate: -50% 0; width: 24px; height: 38px; border: 2px solid rgba(245,244,242,.4); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 7px; left: 50%; translate: -50% 0; width: 4px; height: 8px; border-radius: 2px; background: var(--c-accent-hot); animation: scrollhint 1.8s infinite; }
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 16px;
  text-transform: uppercase; letter-spacing: .08em; padding: 16px 34px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .2s, background .2s, box-shadow .2s; cursor: pointer;
}
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: 0 8px 30px rgba(224, 43, 43, .35); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--c-accent-hot); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224, 43, 43, .5); }
.btn--ghost { background: rgba(245,244,242,.08); color: var(--c-text); border: 0; outline: 1px solid rgba(245,244,242,.25); outline-offset: -1px; }
.btn--ghost:hover, .btn--ghost:focus-visible { background: rgba(245,244,242,.16); transform: translateY(-2px); }
.btn--gold { background: #ffc93c; color: #171204; box-shadow: 0 8px 30px rgba(255, 201, 60, .25); }
.btn--gold:hover, .btn--gold:focus-visible { background: #ffd75e; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 201, 60, .4); }
.btn--tg { background: #2aabee; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.btn--tg svg { width: 20px; height: 20px; }
.btn--tg:hover, .btn--tg:focus-visible { background: #45b8f2; transform: translateY(-2px); }
:focus-visible { outline: 2px solid var(--c-accent-hot); outline-offset: 3px; }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; border-block: 1px solid var(--c-border); background: var(--c-bg-2); padding: 14px 0; }
.ticker__track { display: flex; gap: 28px; width: max-content; animation: ticker 28s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .2em; font-size: 15px; color: var(--c-text-dim); white-space: nowrap; }
.ticker__track i { color: var(--c-accent); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section__kicker {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .35em;
  font-size: 12px; color: var(--c-accent-hot); margin-bottom: 14px;
}
.section__kicker--light { color: var(--c-accent-hot); }
.section__title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; line-height: 1.1; font-size: clamp(28px, 4.2vw, 46px); margin-bottom: 18px; }
.section__lead { color: var(--c-text-dim); max-width: 640px; margin-bottom: 42px; }

/* ---------- About ---------- */
.about { background: var(--c-bg); }
.about__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 44px; }
.card {
  background: var(--c-surface); border: 1px solid var(--c-border); padding: 30px 26px;
  transition: transform .3s var(--ease-out), border-color .3s; box-shadow: var(--shadow-card);
}
.card:hover { transform: translateY(-6px); border-color: rgba(224, 43, 43, .5); }
.card__icon { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(224, 43, 43, .12); color: var(--c-accent-hot); margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 19px; letter-spacing: .03em; margin-bottom: 10px; }
.card p { color: var(--c-text-dim); font-size: 15px; }

/* ---------- Trainings ---------- */
.trainings { background: var(--c-bg-2); }
.trainings__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 44px; }
.tcard {
  position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px 24px; overflow: hidden; isolation: isolate; cursor: default;
  /* сам background-image задаётся inline в HTML: url() внутри var() Chrome
     резолвит относительно CSS-файла, и фото карточек не грузились */
  background-size: cover; background-position: center 25%;
  border: 1px solid var(--c-border); transition: transform .35s var(--ease-out);
}
.tcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,11,.05) 30%, rgba(10,10,11,.92) 85%);
  transition: background .3s;
}
.tcard:hover { transform: translateY(-6px); }
.tcard__icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  margin-bottom: auto; /* прижимает текст карточки к низу, иконку — к верху */
  background: rgba(10, 10, 11, .55); backdrop-filter: blur(4px);
  border: 1px solid rgba(224, 43, 43, .45); color: var(--c-accent-hot);
  transition: background .3s, border-color .3s;
}
.tcard:hover .tcard__icon { background: rgba(224, 43, 43, .25); border-color: var(--c-accent-hot); }
.tcard__icon svg { width: 26px; height: 26px; }
.tcard h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 21px; margin-bottom: 8px; }
.tcard h3::after { content: ""; display: block; width: 44px; height: 3px; background: var(--c-accent); margin-top: 8px; transition: width .3s var(--ease-out); }
.tcard:hover h3::after { width: 80px; }
.tcard p { color: var(--c-text-dim); font-size: 14.5px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--c-bg); }
.gallery__grid {
  display: grid; gap: 14px; margin-top: 44px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item {
  position: relative; overflow: hidden; background: var(--c-surface); cursor: pointer;
  aspect-ratio: 3 / 4; border: 1px solid var(--c-border);
}
.gallery__item img, .gallery__item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out), filter .5s; }
.gallery__item:hover img, .gallery__item:hover video { transform: scale(1.05); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,.55)); opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; z-index: 2;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(224, 43, 43, .9); color: #fff; cursor: pointer;
  transition: transform .25s, background .25s;
}
.gallery__play svg { width: 28px; height: 28px; margin-left: 3px; }
.gallery__play:hover { transform: scale(1.1); background: var(--c-accent-hot); }
.gallery__hint { color: var(--c-text-dim); font-size: 14px; margin-top: 18px; }

/* ---------- Ranks ---------- */
.ranks { background: var(--c-bg-2); position: relative; overflow: hidden; }
.ranks::before {
  content: "НСМ"; position: absolute; right: -3%; top: 4%; z-index: 0;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(160px, 26vw, 380px);
  color: transparent; -webkit-text-stroke: 1px rgba(245,244,242,.05); line-height: 1; pointer-events: none;
}
.ranks .container { position: relative; z-index: 1; }
.ranks__list { display: grid; gap: 10px; max-width: 860px; }
.rank { background: var(--c-surface); border: 1px solid var(--c-border); transition: border-color .3s; }
.rank[open], .rank:hover { border-color: rgba(224, 43, 43, .45); }
.rank__head {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 14px 20px;
}
.rank__head::-webkit-details-marker { display: none; }
.rank__badge {
  flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--c-bg); border: 2px solid var(--c-border);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: border-color .3s;
}
.rank[open] .rank__badge, .rank:hover .rank__badge { border-color: var(--c-accent); }
.rank__num { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--c-accent-hot); }
.rank__badge svg { width: 22px; height: 22px; color: #ffc93c; }
.rank__name { flex: 1; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(18px, 2.2vw, 22px); letter-spacing: .05em; }
.rank__chevron { width: 20px; height: 20px; color: var(--c-text-dim); transition: transform .3s var(--ease-out); flex: 0 0 20px; }
.rank[open] .rank__chevron, .faq__item[open] .rank__chevron { transform: rotate(180deg); }
.rank__body { padding: 2px 20px 20px 86px; }
@media (max-width: 560px) { .rank__body { padding-left: 20px; } }
.rank__how { color: var(--c-accent-hot); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.rank__desc { color: var(--c-text-dim); font-size: 15px; }
.rank__awards {
  margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 6px;
  color: var(--c-text); font-size: 14px; font-weight: 500;
}
.rank__awards svg { width: 20px; height: 20px; color: var(--c-accent-hot); margin-left: 10px; }
.rank__awards svg:first-child { margin-left: 0; }
.rank--legend .rank__badge { background: linear-gradient(150deg, #2a1113, #1a1a1d); border-color: #ffc93c; }
.rank--legend .rank__name { color: #ffc93c; }
.rank--legend[open], .rank--legend:hover { border-color: rgba(255, 201, 60, .5); }

/* ---------- Join ---------- */
.join { position: relative; overflow: hidden; }
.join__bg { position: absolute; inset: 0; z-index: 0; }
.join__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.7) brightness(.9); }
.join::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(10,10,11,.96) 30%, rgba(10,10,11,.82) 65%, rgba(10,10,11,.65)); }
.join__inner { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .join__inner { grid-template-columns: 1.1fr 1fr; } }
.join__points { margin-top: 26px; display: grid; gap: 12px; }
.join__points li { position: relative; padding-left: 30px; color: var(--c-text-dim); }
.join__points li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 9px;
  border-left: 3px solid var(--c-accent-hot); border-bottom: 3px solid var(--c-accent-hot); transform: rotate(-45deg);
}
.form { background: rgba(18, 18, 20, .92); border: 1px solid var(--c-border); padding: clamp(26px, 4vw, 40px); backdrop-filter: blur(8px); box-shadow: var(--shadow-card); }
.form__title { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; margin-bottom: 8px; }
.form__promise { color: var(--c-text-dim); font-size: 14px; margin-bottom: 20px; }
.form__field { margin-bottom: 18px; }
.form__field label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--c-text-dim); margin-bottom: 8px; }
.form__field input {
  width: 100%; padding: 14px 16px; font: inherit; color: var(--c-text);
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: 0; transition: border-color .2s, box-shadow .2s;
}
.form__field input::placeholder { color: #6d6a66; }
.form__field input:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(224, 43, 43, .18); }
.form__field input.is-invalid { border-color: var(--c-accent-hot); }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form__submit { width: 100%; margin-top: 6px; }
.form__submit[disabled] { opacity: .6; cursor: progress; transform: none; }
.form__status { min-height: 22px; margin-top: 12px; font-size: 14.5px; }
.form__status.is-ok { color: #58d68d; }
.form__status.is-err { color: var(--c-accent-hot); }
.form__privacy { margin-top: 10px; font-size: 12px; color: #6d6a66; }

/* ---------- Movement (масштаб) ---------- */
.movement { background: var(--c-bg); }
.movement__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin-top: 40px; }
.mitem {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 16px;
  transition: transform .3s var(--ease-out), border-color .3s;
}
.mitem:hover { transform: translateY(-4px); border-color: rgba(224, 43, 43, .5); }
.mitem svg { width: 26px; height: 26px; color: var(--c-accent-hot); flex: 0 0 26px; }

/* ---------- Philosophy ---------- */
.philosophy { background: var(--c-bg-2); position: relative; overflow: hidden; }
.philosophy::before {
  content: "НЕ СПАТЬ"; position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: 0;
  font-family: var(--font-display); font-weight: 700; white-space: nowrap;
  font-size: clamp(120px, 22vw, 320px); color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 242, .04); pointer-events: none;
}
.philosophy .container { position: relative; z-index: 1; }
.philosophy__statement { max-width: 780px; }
.philosophy__lead { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; line-height: 1.15; font-size: clamp(26px, 4vw, 42px); margin-bottom: 30px; }
.philosophy__words { display: grid; gap: 10px; margin-bottom: 30px; }
.philosophy__words li { font-size: clamp(17px, 2vw, 21px); color: var(--c-text-dim); padding-left: 26px; position: relative; }
.philosophy__words li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 3px; background: var(--c-accent); }
.philosophy__closing { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: clamp(16px, 2vw, 20px); color: var(--c-accent-hot); }

/* ---------- Values + Story ---------- */
.values { background: var(--c-bg); }
.values__inner { display: grid; gap: 48px; }
@media (min-width: 900px) { .values__inner { grid-template-columns: 1fr 1.4fr; } }
.values__list { display: grid; gap: 12px; margin-top: 26px; }
.values__list li {
  position: relative; padding-left: 34px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(17px, 2vw, 21px);
}
.values__list li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 18px; height: 10px;
  border-left: 3px solid var(--c-accent-hot); border-bottom: 3px solid var(--c-accent-hot); transform: rotate(-45deg);
}
.story__card { margin-top: 26px; background: var(--c-surface); border: 1px solid var(--c-border); overflow: hidden; box-shadow: var(--shadow-card); }
@media (min-width: 640px) { .story__card { display: grid; grid-template-columns: 220px 1fr; } }
.story__img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.story__text { padding: 26px; display: grid; gap: 14px; align-content: center; }
.story__text p { color: var(--c-text-dim); font-size: 15.5px; }

/* ---------- Big video ---------- */
.bigvideo { background: var(--c-bg-2); }
.bigvideo__frame { position: relative; margin-top: 44px; overflow: hidden; border: 1px solid var(--c-border); box-shadow: var(--shadow-card); cursor: pointer; }
.bigvideo__frame video { width: 100%; max-height: 78vh; object-fit: cover; display: block; }
.bigvideo__play {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(180deg, rgba(10,10,11,.15), rgba(10,10,11,.45)); color: #fff; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 14px;
  transition: background .3s;
}
.bigvideo__play svg { width: 74px; height: 74px; padding: 20px; box-sizing: border-box; border-radius: 50%; background: rgba(224, 43, 43, .92); transition: transform .25s, background .25s; }
.bigvideo__play:hover svg { transform: scale(1.1); background: var(--c-accent-hot); }

/* ---------- Reviews (карусель) ---------- */
.reviews { background: var(--c-bg-2); }
.reviews__shell { position: relative; margin-top: 44px; display: flex; align-items: stretch; gap: 10px; }
.reviews__carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; flex: 1; padding-bottom: 4px;
}
.reviews__carousel::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(360px, 86%); scroll-snap-align: start;
  background: var(--c-surface); border: 1px solid var(--c-border); padding: 26px 24px;
  display: grid; gap: 16px; align-content: start; transition: border-color .3s;
}
.review:hover { border-color: rgba(224, 43, 43, .45); }
.review__head { display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(224, 43, 43, .16); color: var(--c-accent-hot);
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  border: 1px solid rgba(224, 43, 43, .4); flex: 0 0 52px;
}
.review__avatar--f { background: rgba(255, 201, 60, .14); color: #ffc93c; border-color: rgba(255, 201, 60, .4); }
.review__name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: 16px; color: var(--c-text); display: grid; }
.review__name span { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 12.5px; color: var(--c-accent-hot); font-weight: 600; }
.review__text { color: var(--c-text-dim); font-size: 15px; }
.reviews__arrow {
  align-self: center; flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--c-surface); border: 1px solid var(--c-border);
  color: var(--c-text); cursor: pointer; transition: background .2s, border-color .2s;
}
.reviews__arrow:hover, .reviews__arrow:focus-visible { background: var(--c-accent); border-color: var(--c-accent); }
.reviews__arrow svg { width: 20px; height: 20px; }
.reviews__arrow--prev svg { transform: rotate(90deg); }
.reviews__arrow--next svg { transform: rotate(-90deg); }
@media (max-width: 640px) { .reviews__arrow { display: none; } }

/* ---------- FAQ ---------- */
.faq { background: var(--c-bg); }
.faq__list { margin-top: 40px; display: grid; gap: 12px; max-width: 860px; }
.faq__item { background: var(--c-surface); border: 1px solid var(--c-border); transition: border-color .3s; }
.faq__item[open], .faq__item:hover { border-color: rgba(224, 43, 43, .45); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item p { padding: 0 22px 20px; color: var(--c-text-dim); font-size: 15px; max-width: 700px; }

/* ---------- Community (финал) ---------- */
.community { background: var(--c-bg-2); border-top: 1px solid var(--c-border); text-align: center; }
.community__inner { max-width: 820px; }
.community__title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; line-height: 1.1; font-size: clamp(28px, 4.6vw, 50px); margin-bottom: 26px; }
.community__text { display: grid; gap: 12px; margin-bottom: 36px; }
.community__text p { color: var(--c-text-dim); font-size: clamp(16px, 2vw, 19px); }
.community__welcome { color: var(--c-text) !important; margin-top: 10px; }
.community__welcome strong { color: var(--c-accent-hot); }
.community__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--c-bg); border-top: 1px solid var(--c-border); padding: 34px 0; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__wordmark { font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; }
.footer__wordmark em { font-style: normal; color: var(--c-accent-hot); font-size: 11px; letter-spacing: .4em; }
.footer__slogan { color: var(--c-text-dim); font-size: 13px; }
.footer__copy { color: #6d6a66; font-size: 13px; }
.footer__soc {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-surface); border: 1px solid var(--c-border); color: var(--c-text-dim);
  transition: color .2s, border-color .2s, transform .2s;
}
.footer__soc:hover, .footer__soc:focus-visible { color: #2aabee; border-color: #2aabee; transform: translateY(-2px); }
.footer__soc svg { width: 20px; height: 20px; }

/* ---------- Lightbox ---------- */
/* Сброс * { margin: 0 } убивает у dialog штатный margin: auto, поэтому
   центрируем сами: диалог во весь экран, контент — в центре сетки. */
.lightbox { position: fixed; inset: 0; width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; border: 0; padding: 0; background: transparent; }
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(5, 5, 6, .92); backdrop-filter: blur(6px); }
.lightbox__content { display: grid; place-items: center; }
.lightbox__content img, .lightbox__content video { max-width: min(92vw, 900px); max-height: 88vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lightbox__close {
  position: fixed; top: 18px; right: 18px; z-index: 5; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(26,26,29,.9); color: var(--c-text); cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: var(--c-accent); transform: rotate(90deg); }
.lightbox__close svg { width: 22px; height: 22px; }
