/* =========================================================
   БАЗУМ · Прямой эфир — «Штат есть. А прибыли нет?»
   ========================================================= */

:root{
  --bg-0:#000000;
  --bg-1:#02080f;
  --bg-2:#04131f;
  --bg-3:#062338;
  --panel:#0b2233;
  --panel-2:#061521;

  --accent:#3cc4ff;
  --accent-light:#8fe0ff;
  --accent-pale:#cdeeff;
  --accent-deep:#1f93e6;
  --gold:#e9c46a;
  --gold-light:#ffe0a0;
  --danger:#ff6a6a;

  --ink:#ffffff;
  --muted:rgba(255,255,255,.62);
  --muted-2:rgba(255,255,255,.42);
  --line:rgba(255,255,255,.14);
  --line-soft:rgba(255,255,255,.08);

  --radius:20px 20px 20px 6px;
  --radius-sm:12px 12px 12px 4px;
  --radius-lg:28px 28px 28px 10px;

  --container:1180px;
  --ff-head:'Golos Text',sans-serif;
  --ff-body:'Golos Text',sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;scroll-snap-type:y proximity;}
body{
  margin:0;
  background:var(--bg-0);
  color:var(--ink);
  font-family:var(--ff-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
@media (max-height:640px), (max-width:640px){
  html{scroll-snap-type:none;}
}
h1,h2,h3{font-family:var(--ff-head);margin:0;font-weight:700;}
p{margin:0;}
a{color:inherit;}
img{max-width:100%;display:block;}
::selection{background:var(--accent);color:#00131f;}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}
@media (max-width:760px){ .container{padding:0 20px;} }
@media (max-width:480px){ .container{padding:0 16px;} }

.section{
  position:relative;overflow:hidden;
  min-height:100vh;min-height:100svh;
  display:flex;flex-direction:column;justify-content:center;
  padding:56px 0 28px;
  scroll-snap-align:start;
}
@media (max-width:900px){ .section{padding:48px 0 28px;} }
@media (max-width:560px){ .section{min-height:0;padding:40px 0 48px;} }

.eyebrow{
  display:inline-flex;align-items:center;flex-wrap:wrap;gap:10px;
  color:var(--accent);font-weight:700;text-transform:uppercase;
  letter-spacing:2px;font-size:13px;margin-bottom:18px;
}
.eyebrow-brand{
  display:inline-flex;align-items:center;gap:8px;
  margin-left:4px;
}
.eyebrow-logo{height:34px;width:auto;display:block;flex:none;}
@media (max-width:480px){ .eyebrow-brand{margin-top:2px;} }
.eyebrow .dot{
  width:8px;height:8px;border-radius:50%;background:var(--danger);
  box-shadow:0 0 0 0 rgba(255,106,106,.7);
  animation:pulseDot 1.8s ease-in-out infinite;
  flex:none;
}
@keyframes pulseDot{
  0%{box-shadow:0 0 0 0 rgba(255,106,106,.55);}
  70%{box-shadow:0 0 0 9px rgba(255,106,106,0);}
  100%{box-shadow:0 0 0 0 rgba(255,106,106,0);}
}

.section-head{max-width:720px;margin:0 0 clamp(28px,5vh,56px);}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
h2.h2{font-size:44px;line-height:1.08;letter-spacing:-1px;}
@media (max-width:760px){ h2.h2{font-size:32px;} }
@media (max-width:480px){ h2.h2{font-size:26px;} }
.sub{color:var(--muted);font-size:18px;line-height:1.55;margin-top:14px;font-weight:400;}
@media (max-width:560px){ .sub{font-size:15px;} }

.accent-line{height:3px;width:96px;border-radius:3px;margin:22px auto 0;
  background:linear-gradient(90deg,var(--accent) 0%,var(--accent-pale) 25%,var(--accent) 50%,var(--accent-pale) 75%,var(--accent) 100%);
  background-size:200% 100%;animation:shimmerLine 2.8s linear infinite;
  box-shadow:0 0 20px rgba(60,196,255,.55);
}
.section-head:not(.center) .accent-line{margin-left:0;}
@keyframes shimmerLine{0%{background-position:-200% 0;}100%{background-position:200% 0;}}

@keyframes fadeUp{from{opacity:0;transform:translateY(26px);}to{opacity:1;transform:none;}}
@keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);}}
@keyframes floatySlow{0%,100%{transform:translateY(0) rotate(0deg);}50%{transform:translateY(-10px) rotate(2deg);}}

.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s cubic-bezier(.2,.7,.2,1),transform .8s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1;transform:none;}
.reveal.d1{transition-delay:.08s;}
.reveal.d2{transition-delay:.16s;}
.reveal.d3{transition-delay:.24s;}
.reveal.d4{transition-delay:.32s;}
.reveal.d5{transition-delay:.4s;}
.reveal.d6{transition-delay:.48s;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--ff-body);font-weight:800;font-size:16px;
  padding:17px 32px;border-radius:var(--radius-sm);text-decoration:none;
  border:1px solid transparent;cursor:pointer;white-space:nowrap;
  transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s ease,filter .3s ease;
  will-change:transform;
}
.btn:hover{transform:scale(1.045) translateY(-3px);filter:brightness(1.05);}
.btn:active{transform:scale(.98);}
.btn-primary{background:var(--accent);color:#00131f;box-shadow:0 16px 40px rgba(60,196,255,.35);}
.btn-primary:hover{box-shadow:0 20px 50px rgba(60,196,255,.5);}
.btn-ghost{background:rgba(255,255,255,.06);color:#fff;border-color:var(--line);backdrop-filter:blur(10px);}
.btn-lg{padding:20px 40px;font-size:18px;}
.btn svg{flex:none;}

/* ---------- Glass card base ---------- */
.glass{
  background:linear-gradient(155deg,rgba(255,255,255,.12),rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.28),0 24px 50px rgba(0,0,0,.42);
  backdrop-filter:blur(22px) saturate(1.3);
  -webkit-backdrop-filter:blur(22px) saturate(1.3);
}
.hovlift{transition:transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s ease,border-color .35s ease;}
.hovlift:hover{transform:translateY(-6px);border-color:rgba(60,196,255,.45);box-shadow:inset 0 1px 0 rgba(255,255,255,.32),0 30px 60px rgba(60,196,255,.2);}


/* =========================================================
   HERO
   ========================================================= */
.hero{
  --hero-pad-t:clamp(38px,7vh,88px);
  --hero-pad-b:clamp(32px,5.5vh,72px);
  --hero-col-h:clamp(420px,calc(100vh - var(--hero-pad-t) - var(--hero-pad-b)),920px);
  position:relative;height:100vh;height:100svh;
  padding:var(--hero-pad-t) 0 var(--hero-pad-b);
  display:flex;align-items:center;
  scroll-snap-align:start;
  overflow:hidden;
  animation:heroPageIn .9s ease both;
  background:var(--bg-0);
}
@keyframes heroPageIn{from{opacity:0;}to{opacity:1;}}
@media (max-width:560px){ .hero{height:auto;padding:40px 0 40px;} }


/* Ambient crowd photo — blurred well past recognizability and pushed
   behind a near-opaque site-color tint so it reads as atmosphere/texture,
   not a competing image; inset is negative so the blur radius never
   reveals a soft edge at the section boundary. */
.hero-photo-bg{
  position:absolute;inset:-60px;z-index:0;pointer-events:none;
  background-image:url(../assets/img/hero-crowd.webp);
  background-size:cover;background-position:center 38%;
  filter:blur(4px) saturate(1.15) brightness(.68);
  transform:scale(1.06);
}
.hero-bg-tint{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(680px 520px at 84% 6%,rgba(60,196,255,.22),transparent 62%),
    radial-gradient(620px 600px at 8% 70%,rgba(60,196,255,.1),transparent 62%),
    linear-gradient(180deg,rgba(0,0,0,.52) 0%,rgba(2,8,15,.62) 30%,rgba(4,19,31,.66) 66%,rgba(6,35,56,.74) 100%);
}
.hero-bg-blob{position:absolute;border-radius:50%;filter:blur(60px);pointer-events:none;z-index:0;}
.blob-a{width:520px;height:520px;top:-140px;right:-120px;background:radial-gradient(circle,rgba(60,196,255,.22),transparent 70%);animation:floaty 9s ease-in-out infinite;}
.blob-b{width:420px;height:420px;bottom:-120px;left:-100px;background:radial-gradient(circle,rgba(60,196,255,.14),transparent 70%);animation:floaty 11s ease-in-out infinite 1s;}
.hero-bridge-glow{
  position:absolute;top:50%;left:52%;transform:translate(-50%,-50%);
  width:min(820px,70vw);height:min(820px,70vw);
  border-radius:50%;background:radial-gradient(circle,rgba(60,196,255,.24),transparent 68%);
  filter:blur(46px);pointer-events:none;z-index:0;
}
@media (max-width:980px){ .hero-bridge-glow{display:none;} }

.hero-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1.05fr .95fr;gap:36px;align-items:start;
}
/* hero-copy and .speaker-stage both read the same --hero-col-h custom
   property (defined on .hero, overridden per breakpoint in one place) so
   the two columns can never drift out of sync with each other. */
.hero-copy{display:flex;flex-direction:column;min-height:var(--hero-col-h);}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;gap:0;align-items:normal;}
  .hero-copy{min-height:0;}
  .countdown{margin-bottom:0;}
  .hero-speaker{height:auto;margin-top:clamp(18px,3.4vh,30px);}
  .speaker-stage{flex:none;height:clamp(260px,42vh,440px);}
}
@media (max-width:560px){ .speaker-stage{height:clamp(220px,36vh,340px);} }

.hero-kicker{display:flex;flex-direction:column;align-items:flex-start;gap:clamp(8px,1.6vh,14px);animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) .15s both;}

.hero-date{
  display:inline-flex;align-items:center;gap:12px;
  font-family:var(--ff-head);font-weight:700;
  font-size:clamp(18px,2.4vw,25px);letter-spacing:-.2px;color:#fff;
  padding:12px 22px 12px 16px;border-radius:16px 16px 16px 5px;
  background:linear-gradient(155deg,rgba(60,196,255,.24),rgba(60,196,255,.05));
  border:1px solid rgba(60,196,255,.5);
  animation:dateGlow 2.6s ease-in-out infinite;
  transition:transform .3s cubic-bezier(.2,.7,.2,1);
}
.hero-date:hover{transform:translateY(-3px) scale(1.03);}
.hero-date .ico{color:var(--accent);flex:none;}
.hero-date b{color:var(--accent-pale);font-weight:800;text-shadow:0 0 18px rgba(60,196,255,.6);}
.hero-date .sep{color:rgba(255,255,255,.35);font-weight:400;}
@keyframes dateGlow{
  0%,100%{box-shadow:0 0 20px rgba(60,196,255,.22),inset 0 1px 0 rgba(255,255,255,.12);}
  50%{box-shadow:0 0 40px rgba(60,196,255,.5),inset 0 1px 0 rgba(255,255,255,.18);}
}
@media (max-width:480px){
  .hero-date{font-size:17px;padding:10px 18px 10px 14px;gap:9px;}
}

.hero-h1{font-size:clamp(38px,3.4vw,48px);line-height:1.12;letter-spacing:-1.2px;margin:clamp(16px,3vh,30px) 0 clamp(16px,3vh,30px);animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) .25s both;}
.hero-h1 .hl{color:var(--accent);text-shadow:0 0 30px rgba(60,196,255,.4);}
@media (max-width:760px){ .hero-h1{font-size:32px;letter-spacing:-1px;} }
@media (max-width:420px){ .hero-h1{font-size:26px;} }

.hero-sub{font-size:clamp(19px,1.35vw,21px);line-height:1.65;color:var(--muted);max-width:560px;animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) .35s both;}
@media (max-width:560px){ .hero-sub{font-size:16px;} }

.hero-cta-row{display:flex;align-items:center;gap:18px;margin-top:clamp(22px,4.4vh,54px);flex-wrap:wrap;animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) .45s both;}

.gift-note{
  margin-top:auto;
  display:flex;align-items:flex-start;gap:16px;
  padding:clamp(16px,2.2vh,22px) clamp(20px,2vw,26px);border-radius:var(--radius-sm);
  background:linear-gradient(155deg,rgba(233,196,106,.14),rgba(233,196,106,.03));
  border:1px solid rgba(233,196,106,.35);max-width:600px;
  animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) .65s both;
  transition:transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s ease,border-color .35s ease;
}
.gift-note:hover{transform:translateY(-4px);border-color:rgba(233,196,106,.6);box-shadow:0 18px 38px rgba(233,196,106,.22);}
@media (max-width:980px){ .gift-note{margin-top:clamp(14px,2.6vh,30px);} }
.gift-note .emoji{font-size:28px;line-height:1;flex:none;filter:drop-shadow(0 0 10px rgba(233,196,106,.5));}
.gift-note p{font-size:clamp(14.5px,1.05vw,16px);line-height:1.6;color:var(--gold-light);font-weight:500;}
.gift-note b{color:#fff;font-weight:700;}

/* Speaker photo — fills the full column height so it matches the left
   side visually; unboxed, no card border, blends into the dark bg via glow */
.hero-speaker{position:relative;animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) .3s both;}
.speaker-stage{
  position:relative;width:100%;
  height:var(--hero-col-h);
  display:flex;align-items:flex-end;justify-content:center;
}
.speaker-glow{
  position:absolute;bottom:2%;left:50%;transform:translateX(-50%);
  width:70%;height:36%;border-radius:50%;
  background:radial-gradient(circle,rgba(60,196,255,.42),transparent 72%);
  filter:blur(22px);animation:floaty 6s ease-in-out infinite;
}
.speaker-glow-top{
  position:absolute;top:2%;left:50%;transform:translateX(-50%);
  width:80%;height:42%;border-radius:50%;
  background:radial-gradient(circle,rgba(60,196,255,.2),transparent 72%);
  filter:blur(34px);animation:floaty 8s ease-in-out infinite 0.5s;pointer-events:none;
}
.speaker-cutout{
  position:relative;z-index:2;height:100%;width:auto;max-width:96%;
  object-fit:contain;object-position:bottom center;
  filter:drop-shadow(0 24px 30px rgba(0,0,0,.5));
}
.speaker-live{
  position:absolute;top:0;right:4%;z-index:3;display:flex;align-items:center;gap:8px;
  background:rgba(0,0,0,.55);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:7px 13px 7px 10px;
  font-size:11.5px;font-weight:800;letter-spacing:1px;text-transform:uppercase;
}
.speaker-live .dot{width:7px;height:7px;border-radius:50%;background:var(--danger);animation:pulseDot 1.8s ease-in-out infinite;}

/* Facts — glass pills overlaid on the lower part of the photo, one
   horizontal line each (icon + text), like the original layout */
.speaker-facts{
  position:absolute;left:0;right:0;bottom:0;z-index:3;
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:8px;
}
.speaker-facts li{
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:12px 12px 12px 4px;
  background:linear-gradient(155deg,rgba(8,16,26,.72),rgba(6,12,20,.6));
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px) saturate(1.15);-webkit-backdrop-filter:blur(18px) saturate(1.15);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.24),0 12px 26px rgba(0,0,0,.45);
  font-size:13px;color:#fff;font-weight:600;line-height:1.3;
  text-shadow:0 1px 4px rgba(0,0,0,.5);
  transition:transform .3s cubic-bezier(.2,.7,.2,1),border-color .3s ease,box-shadow .3s ease,background .3s ease;
}
.speaker-facts li:hover{
  transform:translateX(6px);
  border-color:rgba(60,196,255,.55);
  background:linear-gradient(155deg,rgba(60,196,255,.2),rgba(255,255,255,.06));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.3),0 14px 30px rgba(60,196,255,.35);
}
.speaker-facts li:hover .ico{background:rgba(60,196,255,.32);box-shadow:0 0 16px rgba(60,196,255,.5);}
.speaker-facts .ico{
  flex:none;width:30px;height:30px;border-radius:9px 9px 9px 3px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(60,196,255,.18);border:1px solid rgba(60,196,255,.35);color:var(--accent);
  transition:background .3s ease,box-shadow .3s ease;
}
.speaker-facts .ico svg{width:15px;height:15px;}
@media (max-width:480px){
  .speaker-facts li{padding:9px 12px;font-size:12px;gap:8px;}
  .speaker-facts .ico{width:26px;height:26px;}
  .speaker-facts .ico svg{width:13px;height:13px;}
}

/* countdown */
.countdown{display:flex;gap:clamp(10px,1.2vw,16px);margin-top:clamp(20px,4.2vh,54px);margin-bottom:clamp(20px,4.2vh,60px);flex-wrap:wrap;animation:fadeUp .7s cubic-bezier(.2,.7,.2,1) .55s both;}
.countdown .cd-tile{
  min-width:clamp(78px,6vw,96px);text-align:center;padding:clamp(13px,1.6vh,19px) clamp(10px,1.2vw,16px);border-radius:var(--radius-sm);
  transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s ease,border-color .3s ease;
}
.countdown .cd-tile:hover{
  transform:translateY(-5px);border-color:rgba(60,196,255,.5);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.3),0 16px 34px rgba(60,196,255,.3);
}
.countdown .cd-tile:hover .cd-val{text-shadow:0 0 18px rgba(60,196,255,.7);}
.countdown .cd-val{font-family:var(--ff-head);font-weight:700;font-size:clamp(26px,2.1vw,32px);line-height:1;letter-spacing:-.5px;font-variant-numeric:tabular-nums;}
.countdown .cd-label{font-size:11px;text-transform:uppercase;letter-spacing:1px;color:var(--muted);margin-top:8px;font-weight:700;}

/* =========================================================
   PROBLEMS
   ========================================================= */
.problems-section{background:linear-gradient(180deg,#062338 0%,#04131f 30%,#02080f 100%);}
.problems-section .container{position:relative;z-index:1;}

/* Barely-there analytics texture behind the cards — oversized ruble
   sign, percent figures and chart fragments at ~4% opacity, just enough
   to read as "finance/data" atmosphere without competing with content. */
.problems-bg-deco{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;color:#fff;}
.problems-bg-deco span{position:absolute;font-family:var(--ff-head);font-weight:700;line-height:1;white-space:nowrap;}
.deco-ruble{
  font-size:clamp(300px,34vw,560px);
  left:-5%;top:-10%;opacity:.045;
  transform:rotate(-8deg);
}
.deco-percent{
  font-size:clamp(240px,27vw,440px);
  right:-4%;bottom:-14%;opacity:.04;
  transform:rotate(6deg);
}
.deco-num{
  font-size:clamp(90px,8.5vw,150px);
  right:6%;top:2%;opacity:.05;color:#fff;
  transform:rotate(-4deg);
}
.deco-chart{
  position:absolute;right:1%;top:33%;
  width:clamp(320px,30vw,520px);height:auto;
  color:#fff;opacity:.05;
}
.deco-bars{
  position:absolute;left:4%;bottom:5%;
  width:clamp(170px,15vw,250px);height:auto;
  color:#fff;opacity:.05;
}
.deco-donut{
  position:absolute;left:2%;top:55%;
  width:clamp(120px,11vw,190px);height:auto;
  color:#fff;opacity:.05;
}
.deco-grid{
  position:absolute;left:50%;bottom:1.5%;transform:translateX(-50%);
  width:clamp(150px,14vw,230px);height:auto;
  color:#fff;opacity:.045;
}
.deco-coin{
  position:absolute;right:9%;top:22%;
  width:clamp(70px,6vw,90px);height:auto;
  color:#fff;opacity:.05;
}
.deco-magnifier{
  position:absolute;left:19%;bottom:3%;
  width:clamp(80px,7vw,110px);height:auto;
  color:#fff;opacity:.05;
}
.deco-warning{
  position:absolute;right:36%;bottom:3%;
  width:clamp(74px,6.5vw,100px);height:auto;
  color:#fff;opacity:.05;
}
/* Bottom band gets tight below ~1100px (bars + magnifier + grid + warning
   + percent all fighting for the same strip) — drop the two newest
   accents there rather than let them collide. */
@media (max-width:1100px){
  .deco-magnifier{display:none;}
  .deco-warning{display:none;}
}
@media (max-width:760px){
  .deco-ruble{font-size:60vw;left:-10%;top:-6%;}
  .deco-percent{font-size:50vw;right:-10%;bottom:-8%;}
  .deco-num{font-size:22vw;right:4%;top:1%;}
  .deco-chart{width:70vw;right:-8%;top:44%;}
  .deco-bars{width:44vw;left:-4%;bottom:3%;}
  .deco-donut{display:none;}
  .deco-grid{display:none;}
  .deco-coin{display:none;}
  .deco-magnifier{display:none;}
  .deco-warning{display:none;}
}
.problems-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
@media (max-width:920px){ .problems-grid{grid-template-columns:1fr;} }

.problem-card{padding:32px 28px 30px;display:flex;flex-direction:column;gap:0;}
.problem-ico{
  width:54px;height:54px;border-radius:16px 16px 16px 5px;
  display:flex;align-items:center;justify-content:center;flex:none;
  background:linear-gradient(155deg,rgba(255,106,106,.18),rgba(255,106,106,.04));
  border:1px solid rgba(255,106,106,.3);color:#ff9d9d;margin-bottom:22px;
  transition:background .35s ease,box-shadow .35s ease,transform .35s cubic-bezier(.2,.7,.2,1);
}
.problem-card:hover .problem-ico{
  background:linear-gradient(155deg,rgba(255,106,106,.3),rgba(255,106,106,.08));
  box-shadow:0 0 26px rgba(255,106,106,.4);transform:scale(1.08);
}
.problem-ico svg{width:26px;height:26px;}
.problem-title{font-family:var(--ff-head);font-weight:700;font-size:19px;line-height:1.28;letter-spacing:-.2px;min-height:2.56em;}
.problem-arrow{display:flex;gap:10px;align-items:flex-start;margin-top:18px;padding-top:18px;border-top:1px solid var(--line-soft);}
.problem-arrow svg{flex:none;margin-top:3px;color:var(--accent);}
.problem-arrow p{font-size:16.5px;line-height:1.55;color:rgba(255,255,255,.78);}

.problems-foot{
  margin-top:44px;text-align:center;font-family:var(--ff-head);font-weight:600;font-size:18px;
  color:var(--accent-pale);
}
@media (max-width:560px){ .problems-foot{font-size:15px;} }

/* =========================================================
   PROGRAM
   ========================================================= */
.program-section{background:#02080f;}

.program-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
@media (max-width:920px){ .program-grid{grid-template-columns:1fr;} }

.program-card{
  position:relative;padding:20px 22px 19px;display:flex;flex-direction:column;gap:8px;
}
.program-card-top{display:flex;align-items:center;gap:12px;}
.program-num{
  font-family:var(--ff-head);font-weight:700;font-size:22px;color:rgba(60,196,255,.4);
  letter-spacing:-.5px;line-height:1;flex:none;
}
.program-ico{
  flex:none;width:38px;height:38px;border-radius:11px 11px 11px 4px;
  background:linear-gradient(155deg,rgba(60,196,255,.16),rgba(60,196,255,.03));
  border:1px solid rgba(60,196,255,.3);display:flex;align-items:center;justify-content:center;color:var(--accent);
  transition:background .35s ease,box-shadow .35s ease,transform .35s cubic-bezier(.2,.7,.2,1);
}
.program-card:hover .program-ico{
  background:linear-gradient(155deg,rgba(60,196,255,.3),rgba(60,196,255,.08));
  box-shadow:0 0 22px rgba(60,196,255,.45);transform:scale(1.08);
}
.program-ico svg{width:18px;height:18px;}
.program-title{font-family:var(--ff-head);font-weight:700;font-size:16.5px;letter-spacing:-.2px;}
.program-desc{font-size:13px;line-height:1.5;color:var(--muted);}

.program-foot{
  margin-top:clamp(10px,2vh,18px);padding:16px 24px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.program-foot-left{display:flex;flex-direction:column;gap:8px;}
.bonus-pill{
  display:inline-flex;align-items:center;gap:8px;width:fit-content;
  font-size:12.5px;font-weight:700;color:var(--gold-light);
  padding:6px 13px 6px 9px;border-radius:999px;
  border:1px solid rgba(233,196,106,.4);background:rgba(233,196,106,.1);
}
.bonus-pill svg{width:14px;height:14px;flex:none;}
.program-price-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;}
.program-price{font-family:var(--ff-head);font-weight:700;font-size:24px;color:#fff;letter-spacing:-.4px;}
.program-price .free{color:var(--accent);text-shadow:0 0 24px rgba(60,196,255,.5);}
.program-price-note{color:var(--muted);font-size:13px;}
.program-foot .btn{flex:none;}
@media (max-width:700px){
  .program-foot{padding:18px 20px;}
  .program-price{font-size:20px;}
}

/* =========================================================
   PARTNER — BRUSKO
   ========================================================= */
.partner-section{
  position:relative;
  padding:clamp(48px,7vh,76px) 0 clamp(40px,6vh,64px);
  background:
    radial-gradient(1100px 500px at 50% 0%,rgba(60,196,255,.14),transparent 60%),
    linear-gradient(180deg,#02080f 0%,#04131f 55%,#000 100%);
}
.partner-head{flex:none;}
.partner-logo-big{
  height:clamp(38px,6.2vh,64px);width:auto;margin:8px auto 0;
  filter:drop-shadow(0 0 30px rgba(60,196,255,.45));
  transition:filter .35s ease,transform .35s cubic-bezier(.2,.7,.2,1);
}
.partner-logo-big:hover{filter:drop-shadow(0 0 46px rgba(60,196,255,.75));transform:scale(1.04);}
.partner-tagline{
  display:inline-flex;align-items:center;gap:14px;
  margin-top:clamp(10px,2vh,16px);
  font-family:var(--ff-head);font-weight:600;
  font-size:clamp(12.5px,1.6vw,16px);letter-spacing:1.5px;text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.partner-tagline .bar{width:2px;height:15px;background:var(--accent);border-radius:2px;box-shadow:0 0 10px rgba(60,196,255,.7);flex:none;}

.partner-infobar{
  margin:clamp(14px,2.2vh,26px) auto 0;max-width:var(--container);width:calc(100% - 64px);
  display:flex;align-items:stretch;
  border:1px solid rgba(60,196,255,.32);border-radius:18px 18px 18px 6px;
  background:linear-gradient(155deg,rgba(60,196,255,.1),rgba(255,255,255,.02));
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
}
.infobar-col{flex:1;display:flex;align-items:center;gap:14px;padding:16px 24px;min-width:0;transition:background .3s ease;}
.infobar-col:hover{background:rgba(60,196,255,.07);}
.infobar-col:hover .infobar-ico{background:rgba(60,196,255,.28);box-shadow:0 0 18px rgba(60,196,255,.4);}
.infobar-divider{width:1px;align-self:stretch;background:rgba(255,255,255,.14);margin:12px 0;flex:none;}
.infobar-ico{
  flex:none;width:42px;height:42px;border-radius:12px 12px 12px 4px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(60,196,255,.14);border:1px solid rgba(60,196,255,.35);color:var(--accent);
  transition:background .3s ease,box-shadow .3s ease;
}
.infobar-ico svg{width:20px;height:20px;}
.infobar-title{font-family:var(--ff-head);font-weight:700;font-size:15.5px;letter-spacing:-.2px;line-height:1.25;}
.infobar-sub{font-size:12.5px;color:var(--muted);margin-top:4px;font-weight:600;}
.infobar-sub.accent{color:var(--accent-pale);}
@media (max-width:760px){
  .partner-infobar{flex-direction:column;width:calc(100% - 40px);}
  .infobar-divider{width:auto;height:1px;align-self:stretch;margin:0 20px;}
  .infobar-col{padding:14px 18px;}
}
@media (max-width:560px){ .partner-infobar{width:calc(100% - 32px);} }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  padding:44px 0 130px;background:#000;border-top:1px solid var(--line-soft);
  display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center;
}
.site-footer img{height:24px;opacity:.85;}
.site-footer p{font-size:13px;color:var(--muted-2);line-height:1.6;max-width:520px;}

/* =========================================================
   FLOATING TELEGRAM BUTTON
   ========================================================= */
.fab-telegram{
  position:fixed;right:22px;bottom:22px;z-index:500;
  display:flex;align-items:center;gap:10px;
  background:var(--accent);color:#00131f;text-decoration:none;
  padding:14px 20px 14px 14px;border-radius:999px;
  font-family:var(--ff-body);font-weight:800;font-size:14.5px;letter-spacing:.2px;
  box-shadow:0 12px 34px rgba(60,196,255,.45),0 0 0 0 rgba(60,196,255,.5);
  animation:fabPulse 2.6s ease-in-out infinite;
  transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s ease;
}
.fab-telegram:hover{transform:translateY(-4px) scale(1.04);box-shadow:0 18px 42px rgba(60,196,255,.6);}
.fab-telegram .fab-ico{
  flex:none;width:30px;height:30px;border-radius:50%;background:#fff;
  display:flex;align-items:center;justify-content:center;color:var(--accent-deep);
}
.fab-telegram .fab-ico svg{width:17px;height:17px;margin-left:1px;}
@keyframes fabPulse{
  0%{box-shadow:0 12px 34px rgba(60,196,255,.45),0 0 0 0 rgba(60,196,255,.45);}
  70%{box-shadow:0 12px 34px rgba(60,196,255,.45),0 0 0 14px rgba(60,196,255,0);}
  100%{box-shadow:0 12px 34px rgba(60,196,255,.45),0 0 0 0 rgba(60,196,255,0);}
}
@media (max-width:560px){
  .fab-telegram{right:14px;bottom:14px;padding:12px 16px 12px 12px;font-size:13px;}
  .fab-telegram .fab-ico{width:26px;height:26px;}
  .fab-telegram .fab-ico svg{width:15px;height:15px;}
  .fab-telegram .fab-text{display:none;}
}

/* =========================================================
   Decorative line-icon SVG base
   ========================================================= */
.i-stroke{fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}

/* =========================================================
   SHORT-VIEWPORT COMPACTION (placed last on purpose — these
   override base component rules defined earlier in the file,
   and CSS breaks same-specificity ties by source order, so
   this block must come after everything it overrides or the
   media query silently loses even when it matches)
   ========================================================= */
@media (max-height:760px) and (min-width:981px){
  .hero{--hero-pad-t:24px;--hero-pad-b:18px;--hero-col-h:clamp(340px,66vh,540px);}
  .hero-date{padding:8px 16px 8px 12px;font-size:17px;}
  .hero-kicker{gap:6px;}
  .hero-h1{font-size:38px;margin:12px 0 10px;}
  .hero-sub{font-size:15.5px;}
  .hero-cta-row{margin-top:16px;}
  .hero-cta-row .btn{padding:13px 26px;font-size:15px;}
  .countdown{margin-top:18px;margin-bottom:16px;}
  .gift-note{padding:12px 16px;}
  .gift-note .emoji{font-size:20px;}
  .gift-note p{font-size:13px;}
  .countdown .cd-tile{padding:9px 8px;min-width:66px;}
  .countdown .cd-val{font-size:20px;}
  .speaker-facts{gap:6px;}
  .speaker-facts li{padding:7px 11px;font-size:11.5px;gap:8px;}
  .speaker-facts .ico{width:24px;height:24px;}
  .speaker-facts .ico svg{width:12px;height:12px;}
}
@media (max-height:760px) and (min-width:561px){
  .section{padding-top:36px;}
  .section-head{margin-bottom:20px;}
  .eyebrow{margin-bottom:10px;}
  .sub{margin-top:8px;}
  .program-card{padding:11px 15px 11px;gap:4px;}
  .program-title{font-size:14.5px;}
  .program-desc{font-size:11.5px;line-height:1.38;}
  .program-grid{gap:8px;}
  .program-foot{padding:12px 20px;margin-top:8px;}
}
