:root {
  --navy: #343846;
  --navy2: #3D4254;
  --navy3: #2C303C;
  --teal: #00AFB8;
  --teal-light: #6DBCC6;
  --white: #FFFFFF;
  --muted: #B8BCC8;
  --border: rgba(255,255,255,.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
}
h1, h2, h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .05em; line-height: 1.25; }
section { padding: 64px 24px; }
.wrap { max-width: 1060px; margin: 0 auto; }
.accent { color: var(--teal-light); }

/* NAV */
nav { position: sticky; top: 0; z-index: 50; background: rgba(44,48,60,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
nav .bar { max-width: 1060px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 12px; }
nav img { height: 34px; }
nav .links { display: flex; gap: 4px 18px; flex-wrap: wrap; justify-content: flex-end; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; padding: 6px 2px; }
nav a:hover, nav a.active { color: var(--white); }

/* HERO */
.hero { min-height: 62vh; display: flex; align-items: center; text-align: center;
        background: radial-gradient(ellipse at 70% 15%, #414659 0%, var(--navy) 62%); }
.hero h1 { font-size: clamp(26px, 4.4vw, 44px); margin-bottom: 18px; }
.hero p.sub { color: var(--muted); font-size: clamp(16px, 2.1vw, 19px); max-width: 680px; margin: 0 auto 34px; }
.hero .wrap { width: 100%; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 12px; font-weight: 700; text-decoration: none;
       font-size: 15.5px; transition: transform .15s ease, opacity .15s ease; border: none; cursor: pointer; }
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 22px rgba(0,175,184,.32); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }

.sec-title { font-size: clamp(23px, 3.4vw, 34px); text-align: center; margin-bottom: 12px; }
.sec-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 44px; }

/* LISTS / CARDS */
.checks { list-style: none; max-width: 620px; margin: 0 auto; }
.checks li { padding: 10px 0 10px 34px; position: relative; color: var(--muted); font-size: 16.5px; border-bottom: 1px solid var(--border); }
.checks li:last-child { border-bottom: none; }
.checks li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
@media (max-width: 760px) { .grid2 { grid-template-columns: 1fr; } }

.card { background: var(--navy2); border-radius: 16px; padding: 26px 24px; }
.card h3 { font-size: 18px; margin-bottom: 10px; color: var(--teal-light); }
.card p, .card li { color: var(--muted); font-size: 15px; }
.card .emoji { font-size: 36px; margin-bottom: 10px; }
.card .n { font-family: "Oswald"; font-size: 15px; font-weight: 600; letter-spacing: .2em;
  color: var(--teal); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--teal);
  display: inline-block; }
.card.vs-bad { border: 1px solid var(--border); }
.card.vs-good { border: 1px solid var(--teal); box-shadow: 0 8px 30px rgba(0,175,184,.15); }

/* NUMBERED STEPS */
.steps { counter-reset: step; max-width: 640px; margin: 0 auto; list-style: none; }
.steps li { counter-increment: step; position: relative; padding: 14px 0 14px 56px; color: var(--muted); border-bottom: 1px solid var(--border); }
.steps li:last-child { border-bottom: none; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 12px; width: 36px; height: 36px;
  background: var(--teal); color: #fff; font-family: "Oswald"; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; }
.steps b { color: var(--white); }

/* TIMELINE */
.timeline { max-width: 620px; margin: 0 auto; list-style: none; border-left: 2px solid var(--teal); padding-left: 26px; }
.timeline li { margin-bottom: 20px; color: var(--muted); position: relative; }
.timeline li::before { content: ""; position: absolute; left: -33px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); }
.timeline b { color: var(--teal-light); }

/* LESSONS */
.lesson { background: var(--navy2); border-left: 4px solid var(--teal); border-radius: 12px; padding: 18px 20px; }
.lesson .n { font-family: "Oswald"; color: var(--teal-light); font-size: 13px; letter-spacing: .1em; }
.lesson h3 { font-size: 17px; margin: 4px 0 6px; text-transform: none; letter-spacing: 0; color: var(--white); }
.lesson p { color: var(--muted); font-size: 14.5px; }

/* QUOTE */
.quote { background: var(--navy2); border-radius: 16px; padding: 30px; max-width: 760px; margin: 0 auto; }
.quote p { color: var(--muted); font-style: italic; margin-bottom: 16px; }
.quote .who { color: var(--white); font-weight: 700; font-style: normal; }
.quote .role { color: var(--teal-light); font-size: 14px; }

/* FAQ */
.faq { max-width: 700px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); padding: 6px 0; }
.faq summary { cursor: pointer; font-weight: 700; padding: 12px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--teal-light); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 14px; }

/* AUTHOR */
.author-grid { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; }
.author-grid img { width: 100%; border-radius: 20px; box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.author-grid p { color: var(--muted); margin-bottom: 12px; }
@media (max-width: 780px) { .author-grid { grid-template-columns: 1fr; } .author-grid img { max-width: 300px; margin: 0 auto; } }

/* BANNERS */
.band { background: linear-gradient(120deg, var(--teal) 0%, #008C96 100%); text-align: center; }
.band h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.band p { max-width: 560px; margin: 0 auto 24px; color: rgba(255,255,255,.92); }
.band .btn { background: #fff; color: var(--navy); }
.alt { background: var(--navy3); }

/* FOOTER */
footer { background: #262A34; padding: 44px 24px; text-align: center; }
footer a { color: var(--teal-light); text-decoration: none; font-weight: 600; }
footer .contacts { display: flex; gap: 10px 26px; justify-content: center; flex-wrap: wrap; margin: 16px 0 20px; }
footer .fine { color: #7A7F8C; font-size: 13px; line-height: 1.7; }

/* LEGAL */
.legal { max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: 26px; margin-bottom: 20px; }
.legal h2 { font-size: 18px; margin: 26px 0 10px; }
.legal p { color: var(--muted); font-size: 14.5px; margin-bottom: 10px; }

/* ===== HOMEPAGE BRAND (v2) ===== */

/* VIDEO HERO */
.hero-video { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video .shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,48,60,.35) 0%, rgba(44,48,60,.15) 40%, rgba(44,48,60,.88) 100%); }
.hero-video .wrap { position: relative; z-index: 2; width: 100%; padding: 0 24px 72px; }
.hero-video .kicker { font-family: "Oswald"; letter-spacing: .28em; font-size: clamp(12px, 1.4vw, 15px);
  color: var(--teal-light); text-transform: uppercase; margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0,0,0,.75), 0 0 3px rgba(0,0,0,.6); }
.hero-video h1 { font-size: clamp(44px, 9vw, 108px); font-weight: 700; line-height: 1.18; margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.45); }
.hero-video p.sub { color: rgba(255,255,255,.88); font-size: clamp(16px, 2.1vw, 20px); max-width: 640px; margin: 0 0 30px; }
.hero-video .cta-row { justify-content: flex-start; }
@media (max-width: 700px) { .hero-video { min-height: 86vh; } .hero-video .wrap { padding-bottom: 56px; } }

/* MARQUEE */
.marquee { background: var(--teal); overflow: hidden; padding: 12px 0; white-space: nowrap; }
.marquee .track { display: inline-block; animation: marquee 26s linear infinite; }
.marquee span { font-family: "Oswald"; text-transform: uppercase; letter-spacing: .14em;
  font-size: 15px; font-weight: 600; color: #fff; padding: 0 22px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FULL-BLEED PHOTO BAND */
.photo-band { position: relative; padding: 0; min-height: 62vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; overflow: hidden; }
.photo-band video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-band .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,48,60,.18) 30%, rgba(44,48,60,.82) 100%); }
.photo-band .wrap { position: relative; z-index: 2; width: 100%; padding: 90px 24px 54px; }
.photo-band h2 { font-size: clamp(26px, 4.4vw, 48px); line-height: 1.1; max-width: 720px; text-shadow: 0 4px 26px rgba(0,0,0,.5); }
.photo-band .cap { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 12px; }

/* FORMAT CARDS WITH PHOTO */
.fcard { background: var(--navy2); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.fcard .ph { height: 220px; background-size: cover; background-position: center; }
.fcard .body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.fcard h3 { font-size: 19px; color: var(--white); margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: 15px; flex: 1; }
.fcard .btn { margin-top: 18px; align-self: flex-start; }

/* GALLERY MOSAIC */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 12px; }
.mosaic a { display: block; border-radius: 14px; overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.mosaic a:hover img { transform: scale(1.05); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }
@media (max-width: 860px) { .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }

/* SPLIT: текст на тёмной панели + фото целиком (Nike editorial) */
.split { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 0;
  background: var(--navy3); }
.split.flip { grid-template-columns: auto 1fr; }
.split .txt { padding: 64px 56px 64px max(28px, calc((100vw - 1200px) / 2)); }
.split.flip .txt { padding: 64px max(28px, calc((100vw - 1200px) / 2)) 64px 56px; }
.split .txt .kicker { font-family: "Oswald"; letter-spacing: .26em; font-size: 13px;
  color: var(--teal-light); text-transform: uppercase; margin-bottom: 14px; }
.split .txt h1 { font-size: clamp(30px, 4.4vw, 58px); line-height: 1.1; margin-bottom: 18px; }
.split .txt h2 { font-size: clamp(25px, 3.4vw, 44px); line-height: 1.14; margin-bottom: 14px; }
.split .txt p.sub { color: var(--muted); font-size: clamp(15px, 1.8vw, 18.5px); margin: 0 0 12px; max-width: 560px; }
.split .txt .cap { color: rgba(255,255,255,.55); font-size: 14px; }
.split .txt .cta-row { justify-content: flex-start; margin-top: 24px; }
.split .pic img { display: block; height: 92vh; max-height: 920px; width: auto; }
@media (max-width: 860px) {
  .split, .split.flip { grid-template-columns: 1fr; }
  .split .pic { order: -1; }
  .split .pic img { height: auto; max-height: none; width: 100%; }
  .split .txt, .split.flip .txt { padding: 36px 24px 44px; }
}

/* FULL-SCREEN PHOTO SECTION: контент лежит прямо на фото */
.photo-screen { position: relative; padding: 0; background-size: cover; background-position: center 25%; }
.photo-screen .veil { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,38,47,.62) 0%, rgba(35,38,47,.38) 45%, rgba(35,38,47,.82) 100%); }
.photo-screen .content { position: relative; z-index: 2; }
.photo-screen .content h1 { font-size: clamp(30px, 5vw, 60px); line-height: 1.12; margin-bottom: 16px;
  text-shadow: 0 3px 22px rgba(0,0,0,.55); }
.photo-screen .content p.sub { color: rgba(255,255,255,.9); font-size: clamp(15px, 2vw, 19px);
  max-width: 640px; margin: 0 0 12px; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.photo-screen .content .cta-row { justify-content: flex-start; margin-top: 22px; }
.photo-screen .sec-title { text-shadow: 0 3px 20px rgba(0,0,0,.6); }
.photo-screen .checks li { color: #E7E9EE; text-shadow: 0 2px 12px rgba(0,0,0,.65); border-bottom-color: rgba(255,255,255,.22); }
.photo-screen .cap { color: rgba(255,255,255,.72); font-size: 14px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }

/* FULL PHOTO + TEXT PLATE (Nike-style) */
.full-photo { position: relative; padding: 0; background: #23262F; display: flex; justify-content: center; overflow: hidden; }
.full-photo > img { display: block; max-height: 94vh; width: auto; max-width: 100%; }
.full-photo .plate { position: absolute; left: max(24px, calc((100% - 1060px) / 2)); bottom: 44px;
  max-width: 640px; background: rgba(30, 33, 42, .82); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); border-left: 4px solid var(--teal);
  padding: 26px 30px; box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.full-photo .plate h1 { font-size: clamp(26px, 4.6vw, 52px); line-height: 1.12; margin-bottom: 12px; }
.full-photo .plate h2 { font-size: clamp(22px, 3.6vw, 40px); line-height: 1.15; margin-bottom: 8px; }
.full-photo .plate p.sub { color: rgba(255,255,255,.88); font-size: clamp(15px, 1.9vw, 18px); margin: 0 0 10px; }
.full-photo .plate .cap { color: rgba(255,255,255,.65); font-size: 13.5px; margin-top: 4px; }
.full-photo .plate .cta-row { justify-content: flex-start; margin-top: 18px; }
.full-photo .plate.plate-top { top: 40px; bottom: auto; }
@media (max-width: 700px) {
  .full-photo .plate { left: 16px; right: 16px; bottom: 20px; padding: 20px 20px; }
  .full-photo .plate.plate-top { top: 20px; bottom: auto; }
}

/* VIP CARD */
.vip { background: linear-gradient(135deg, #3D4254 0%, #2C303C 70%), var(--navy2); border: 1px solid var(--teal);
  border-radius: 18px; padding: 34px 34px; max-width: 900px; margin: 0 auto;
  box-shadow: 0 14px 44px rgba(0,175,184,.16); }
.vip .tag { font-family: "Oswald"; color: var(--teal-light); letter-spacing: .22em; font-size: 13px;
  text-transform: uppercase; margin-bottom: 10px; }
.vip h3 { font-size: clamp(20px, 2.8vw, 28px); margin-bottom: 12px; }
.vip p { color: var(--muted); margin-bottom: 10px; }
.vip .btn { margin-top: 14px; }

/* TEAM CARDS */
.team-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.team-grid .fcard { flex: 0 1 320px; min-width: 260px; }
.tcard .ph { height: auto; aspect-ratio: 3 / 4; background-position: top center; }
.tcard .role { font-family: "Oswald"; color: var(--teal-light); font-size: 13px;
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: 8px; }
.tcard h3 { text-transform: none; letter-spacing: .02em; }

/* LANG SWITCHER */
.lang { display: flex; gap: 2px; margin-left: 10px; border: 1px solid var(--border); border-radius: 9px; padding: 2px; flex: none; }
.lang a { font-size: 12.5px; padding: 4px 9px; border-radius: 7px; color: var(--muted); text-decoration: none; font-weight: 700; }
.lang a:hover { color: var(--white); }
.lang a.active { background: var(--teal); color: #fff; }

/* STATS COUNTERS */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; text-align: center; }
.stat { background: var(--navy2); border-radius: 16px; padding: 32px 20px 28px; border: 1px solid var(--border); }
.stat .num-row { font-family: "Oswald"; font-size: clamp(42px, 6vw, 62px); font-weight: 700; color: var(--teal-light); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: 15px; margin-top: 10px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

/* TESTIMONIAL GRID */
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; max-width: 1060px; margin: 0 auto; }
.tq { background: var(--navy2); border-radius: 16px; padding: 24px; }
.tq .head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tq .head img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; }
.tq .who { font-weight: 700; color: var(--white); }
.tq .role { color: var(--teal-light); font-size: 13.5px; line-height: 1.4; }
.tq p { color: var(--muted); font-size: 14.5px; font-style: italic; }

/* AUTHOR MINI CARD */
.author-mini { display: flex; align-items: center; gap: 20px; background: var(--navy2); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px 26px; max-width: 640px; margin: 0 auto; text-decoration: none;
  transition: transform .2s ease, border-color .2s ease; }
.author-mini:hover { transform: translateY(-3px); border-color: var(--teal); }
.author-mini img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; object-position: top; flex: none; }
.author-mini .t h3 { font-size: 17px; color: var(--white); text-transform: none; letter-spacing: .02em; }
.author-mini .t p { color: var(--muted); font-size: 14px; margin-top: 3px; }
.author-mini .arr { margin-left: auto; color: var(--teal-light); font-size: 26px; flex: none; }

.timeline a { color: var(--teal-light); }

/* COLLAB (editorial, quiet) */
.collab { text-align: center; max-width: 660px; margin: 0 auto; padding: 26px 0; }
.collab .kicker { font-family: "Oswald"; letter-spacing: .26em; font-size: 13px;
  color: var(--teal-light); text-transform: uppercase; margin-bottom: 14px; }
.collab h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px; }
.collab p { color: var(--muted); margin-bottom: 22px; }
.link-arrow { display: inline-block; color: var(--teal-light); font-weight: 700; text-decoration: none;
  font-size: 16px; padding-bottom: 3px; border-bottom: 1px solid rgba(109,188,198,.35);
  transition: border-color .2s ease, color .2s ease; }
.link-arrow:hover { color: var(--white); border-color: var(--white); }

/* MOBILE */
@media (max-width: 700px) {
  nav { position: static; }
  nav .bar { flex-wrap: wrap; justify-content: center; padding: 8px 10px; gap: 6px 10px; }
  nav img { height: 28px; }
  nav .links { justify-content: center; gap: 2px 12px; }
  nav a { font-size: 12.5px; padding: 3px 2px; }
  .lang { margin-left: 0; }
  .lang a { font-size: 11.5px; padding: 3px 8px; }
  section { padding: 48px 18px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { text-align: center; }
  .hero-video .cta-row, .split .txt .cta-row { align-items: flex-start; }
  .hero-video .cta-row .btn, .split .txt .cta-row .btn { width: 100%; box-sizing: border-box; }
  .stats { gap: 12px; }
  .stat { padding: 24px 16px 22px; }
  .quote { padding: 22px 18px; }
  .tq { padding: 20px 18px; }
  .vip { padding: 26px 20px; }
  .author-mini { padding: 16px 18px; gap: 14px; }
  .author-mini img { width: 58px; height: 58px; }
  .mosaic { gap: 8px; }
  footer .contacts { flex-direction: column; gap: 10px; align-items: center; }
  footer { padding: 36px 18px; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee .track { animation: none; }
}
