/* === TOKENS === */
:root{
  --orange:#F3674C;
  --orange-deep:#E04A30;
  --tan:#CF9D6F;
  --white:#FFFFFF;
  --ink:#0E0E0E;
  --ink-2:#2A2A2A;
  --muted:#5A5A5A;
  --soft:#F6F1EC;

  --font: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1440px;
  --pad-x: clamp(24px, 5vw, 80px);

  --radius: 14px;

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

  /* === TYPE SCALE ===
     Единая шкала. Новые размеры не вводим — берём из этих токенов.
     Веса: 500 (Medium body) / 700 (Bold цитата) / 800 (ExtraBold заголовки и числа). */
  --fs-tiny:       12px;                       /* мелкие лейблы (label у дат, eyebrow при необходимости) */
  --fs-eyebrow:    13px;                       /* uppercase лейблы секций (Аудитория, Почему мы, О программе) */
  --fs-xs:         13px;                       /* вспомогательные подписи (note под кнопкой) */
  --fs-ui:         14px;                       /* интерфейс (header nav, header CTA) */
  --fs-sm:         15px;                       /* короткие подписи (адрес, hero bullets подзаголовок) */
  --fs-base:       clamp(15px, 1.05vw, 17px);  /* основной body (about, lead audience, hero bullets) */
  --fs-card-desc:  clamp(14px, 1vw, 16px);     /* описания внутри карточек */
  --fs-card-title: clamp(18px, 1.4vw, 22px);   /* заголовки карточек (audience name, why name) */
  --fs-quote:      clamp(18px, 1.6vw, 24px);   /* цитаты, выделенные тезисы */
  --fs-ticker:     22px;                       /* бегущая строка — основной текст */
  --fs-ticker-sep: 16px;                       /* бегущая строка — разделитель ✦ */
  --fs-xl:         clamp(22px, 2.4vw, 32px);   /* подзаголовки, крупные даты */
  --fs-h2:         clamp(28px, 3.4vw, 50px);   /* заголовки секций */
  --fs-display:    clamp(40px, 4vw, 64px);     /* большие числа в карточках */
  --fs-h1:         clamp(48px, 6.6vw, 96px);   /* hero title */
}

/* === RESET === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;scroll-behavior:smooth}
body{font-family:var(--font);font-weight:500;color:var(--ink);background:var(--white);line-height:1.55;font-size:16px}
body{overflow-x:hidden}

/* === Generic reveal-on-scroll === */
[data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s var(--ease-out) var(--d, 0s),
    transform .7s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-revealed{
  opacity: 1;
  transform: none;
}
/* Rule blocks have their own line/label transitions — keep them visible
   so internal animations run on top of the parent reveal */
.about__rule[data-reveal],
.audience__rule[data-reveal],
.why__rule[data-reveal]{
  opacity: 1;
  transform: none;
}
/* Stagger audience cards */
.audience__card[data-reveal]:nth-child(1),
.why__card[data-reveal]:nth-child(1){ --d: 0s; }
.audience__card[data-reveal]:nth-child(2),
.why__card[data-reveal]:nth-child(2){ --d: .12s; }
.audience__card[data-reveal]:nth-child(3),
.why__card[data-reveal]:nth-child(3){ --d: .24s; }
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}

/* === LAYOUT === */
.header__inner,
.hero__inner,
.about__inner{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* === HEADER === */
.header{
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  transition: background-color .35s var(--ease-out), border-color .35s var(--ease-out), backdrop-filter .35s var(--ease-out);
}
.header__inner{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 48px;
}
.header__logo{display:flex;align-items:center}
.header__logo img{
  height: 36px;
  width: auto;
  /* SVG fills are white — keep white over orange hero */
  transition: filter .35s var(--ease-out);
}
.header__nav{
  display: flex;
  gap: 36px;
  justify-content: center;
}
.header__nav a{
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 6px 2px;
  transition: color .2s var(--ease-out);
}
.header__nav a::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--ease-out);
}
.header__nav a:hover{color:#fff}
.header__nav a:hover::after{transform:scaleX(1)}

.header__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--fs-ui);
  letter-spacing: .01em;
  transition: transform .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out);
}
.header__cta:hover{transform: translateY(-1px); background: var(--ink); color:#fff}
.header__burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out);
}
.header__burger span{
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}
.header__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.header__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: var(--pad-x);
  right: var(--pad-x);
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.header__menu[hidden]{ display: none; }
.header__menu a{
  color: var(--ink-2);
  font-size: var(--fs-base);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 16px;
}
.header__menu a:hover{ background: rgba(243,103,76,.1); color: var(--orange); }
.header__menu-cta{
  background: var(--orange);
  color: #fff !important;
  text-align: center;
}

/* Header — scrolled state (white surface) */
.header.is-scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(14,14,14,.06);
}
.header.is-scrolled .header__logo img{
  /* invert white SVG → near-black */
  filter: brightness(0) saturate(100%);
}
.header.is-scrolled .header__nav a{color: var(--ink-2)}
.header.is-scrolled .header__nav a:hover{color: var(--orange)}
.header.is-scrolled .header__cta{
  background: var(--orange);
  color: #fff;
}
.header.is-scrolled .header__cta:hover{background: var(--ink); color:#fff}
.header.is-scrolled .header__burger{
  background: rgba(14,14,14,.06);
  color: var(--ink-2);
}

/* === HERO === */
.hero{
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background: var(--orange);
  color: #fff;
  padding-top: 84px; /* under header */
  padding-bottom: clamp(108px, 12vw, 140px); /* room for ticker pinned to bottom */
  overflow: hidden;
}
.hero__texture{
  position:absolute; inset:0;
  background-image: url('assets/texture.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: .55;
  z-index: -2;
  pointer-events:none;
}
.hero::before{
  /* subtle vignette to push content forward */
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(120% 80% at 70% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,.18) 100%);
  z-index:-1;
  pointer-events:none;
}
.hero__pattern{
  position:absolute; inset:0;
  z-index:-1;
  pointer-events:none;
}
.hero__pattern img{
  position:absolute;
  opacity:.28;
  filter: drop-shadow(0 0 .5px rgba(255,255,255,.4));
}

.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 84px - clamp(108px, 12vw, 140px));
  padding-block: clamp(24px, 4vw, 48px);
}

.hero__visual{
  position: relative;
  align-self: center;
  justify-self: start;
  width: 100%;
  /* keep left edge anchored; allow growth to the right without clipping rotated edges */
  padding: 4% 0;
  overflow: visible;
}
.hero__glow{
  position: absolute;
  /* anchored around the rupor — wider on the right where the megaphone now extends */
  inset: -25% -35% -25% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 50% at 45% 50%,
      rgba(255,255,255,.55) 0%,
      rgba(255,235,222,.35) 25%,
      rgba(255,210,190,.16) 48%,
      rgba(243,103,76,0) 75%);
  filter: blur(48px);
  mix-blend-mode: screen;
  opacity: .9;
}
.hero__rupor{
  position: relative;
  z-index: 1;
  display: block;
  /* grows to the right while staying pinned at the left edge */
  width: 135%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.22));
  transform: rotate(-6deg);
  transform-origin: left center;
  animation: rupor-in .9s var(--ease-out) both;
}
@keyframes rupor-in{
  from{ opacity:0; transform: rotate(-12deg) translateX(-20px) scale(.96); }
  to  { opacity:1; transform: rotate(-6deg) translateX(0) scale(1); }
}

.hero__content{
  max-width: 100%;
  min-width: 0;
}
.hero__title{
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.025em;
  /* fits "СОЦИАЛЬНЫЙ" (10 chars ExtraBold) within right column @1440 */
  font-size: var(--fs-h1);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-block: 8px 28px;
}
.hero__title-line{
  display: block;
  white-space: nowrap;
}
.hero__title-line--with-sub{
  display: flex;
  align-items: last baseline;     /* last line of sub aligns with РУПОР baseline */
  gap: clamp(14px, 1.6vw, 24px);
}
.hero__title-word{
  display: inline-block;
}
.hero__title-sub{
  /* small lockup next to "РУПОР", as in the brand mark */
  display: inline-block;
  font-weight: 500;
  font-size: clamp(12px, .95vw, 15px);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.95);
  max-width: 22ch;
}

.hero__bullets{
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__bullets li{
  position: relative;
  padding-left: 28px;
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,.95);
}
.hero__bullets li::before{
  content:'';
  position:absolute;
  left: 0;
  top: .65em;
  width: 14px;
  height: 2px;
  background: #fff;
}

.hero__dates{
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero__dates-label{
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: lowercase;
  opacity: .8;
  margin-bottom: 8px;
}
.hero__dates-value{
  font-weight: 800;
  font-size: var(--fs-xl);
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero__dates-place{
  font-size: var(--fs-sm);
  opacity: .9;
}

.hero__cta-row{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  transition: transform .2s var(--ease-out), background-color .25s var(--ease-out), color .25s var(--ease-out), box-shadow .25s var(--ease-out);
  white-space: nowrap;
}
.btn__arrow{
  display:inline-block;
  transition: transform .25s var(--ease-out);
  font-weight: 500;
}
.btn:hover .btn__arrow{ transform: translateX(4px); }
.btn--solid{
  background:#fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.btn--solid:hover{
  background: var(--ink);
  color:#fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}
.btn--orange{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(243,103,76,.28);
}
.btn--orange:hover{
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}
.hero__note{
  font-size: var(--fs-eyebrow);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}

/* === TICKER === */
.ticker{
  background: var(--ink-2);
  color: #fff;
  overflow: hidden;
  padding-block: 22px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.ticker__track{
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}
.ticker__item{
  font-weight: 800;
  font-size: var(--fs-ticker);
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__sep{
  font-size: var(--fs-ticker-sep);
  opacity: .85;
}
@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* === ABOUT === */
.about{
  background: var(--white);
  color: var(--ink);
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: 0; /* next section (.audience) has same bg — collapse gap */
  position: relative;
}
.about__inner{
  display: block;
}

/* eyebrow: long rule across full width with the label flush right */
.about__rule{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(40px, 4.6vw, 64px);
}
.about__rule-line{
  flex: 1;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.about__rule-label{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease-out) .55s, transform .5s var(--ease-out) .55s;
}
.about__rule.is-revealed .about__rule-line{
  transform: scaleX(1);
}
.about__rule.is-revealed .about__rule-label{
  opacity: 1;
  transform: none;
}

.about__grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 40px) clamp(24px, 3vw, 48px);
  align-items: start;
}
.about__title{
  grid-column: 1 / -1;            /* full 12 cols */
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 clamp(0px, .4vw, 4px);
}
.about__body{
  /* two equal text columns under the title */
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink-2);
}
.about__body p{ margin: 0; }

/* eyebrow class is now reused only inside .about__rule context — keep the
   token-style one for any other section in the future */
.eyebrow{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* === AUDIENCE === */
.audience{
  background: var(--white);
  color: var(--ink);
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: 0; /* next section (.why) has same bg — collapse gap */
  position: relative;
}
.audience__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.audience__rule{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(32px, 3.6vw, 56px);
}
.audience__rule-line{
  flex: 1;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.audience__rule-label{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease-out) .55s, transform .5s var(--ease-out) .55s;
}
.audience__rule.is-revealed .audience__rule-line{ transform: scaleX(1); }
.audience__rule.is-revealed .audience__rule-label{ opacity: 1; transform: none; }

.audience__head{
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 16px);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.audience__title{
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.audience__lead{
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

.audience__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.audience__card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.audience__photo{
  aspect-ratio: 4 / 3;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.28);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.audience__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.audience__text{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2vw, 32px);
}
.audience__name{
  font-weight: 800;
  font-size: var(--fs-card-title);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}
.audience__desc{
  font-size: var(--fs-card-desc);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* === WHY === */
.why{
  background: var(--white);
  color: var(--ink);
  padding-block: clamp(56px, 6vw, 96px);
  position: relative;
}
.why__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.why__rule{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(32px, 3.6vw, 56px);
}
.why__rule-line{
  flex: 1;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.why__rule-label{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease-out) .55s, transform .5s var(--ease-out) .55s;
}
.why__rule.is-revealed .why__rule-line{ transform: scaleX(1); }
.why__rule.is-revealed .why__rule-label{ opacity: 1; transform: none; }

.why__title{
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 clamp(32px, 4vw, 56px);
}

.why__grid{
  list-style: none;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.why__card{
  position: relative;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
}
.why__num{
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1;
  color: #fff;
  letter-spacing: -.02em;
}
.why__name{
  font-weight: 800;
  font-size: var(--fs-card-title);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0;
}
.why__desc{
  font-size: var(--fs-card-desc);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin: 0;
}

.why__quote{
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 36px);
  align-items: start;
}
.why__quote-mark{
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(56px, 6vw, 96px);
  line-height: .7;
  color: var(--orange);
  user-select: none;
  margin-top: -.15em;
}
.why__quote-text{
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: none;
  align-self: center;
}

/* === PROGRAM (timeline / agenda) === */
.program{
  background: var(--soft);
  color: var(--ink);
  padding-block: clamp(56px, 6vw, 96px);
  position: relative;
}
.program__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.program__rule{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(28px, 3vw, 48px);
}
.program__rule-line{
  flex: 1;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.program__rule-label{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease-out) .55s, transform .5s var(--ease-out) .55s;
}
.program__rule.is-revealed .program__rule-line{ transform: scaleX(1); }
.program__rule.is-revealed .program__rule-label{ opacity: 1; transform: none; }
.program__rule[data-reveal]{ opacity: 1; transform: none; }

.program__title{
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 clamp(40px, 4.4vw, 64px);
}

.program__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.program__row{
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 56px);
  align-items: start;
  padding-block: clamp(24px, 2.6vw, 36px);
  border-top: 1px solid rgba(14,14,14,.14);
}
.program__row:last-child{
  border-bottom: 1px solid rgba(14,14,14,.14);
}

.program__when{
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 100px; /* under fixed header */
  align-self: start;
}
.program__day{
  font-weight: 800;
  font-size: var(--fs-xl);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.program__meta-line{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.program__weekday{ color: var(--orange); }
.program__time{ color: var(--ink-2); }
.program__mode{
  color: var(--ink-2);
  padding: 2px 8px;
  border: 1px solid rgba(14,14,14,.18);
  border-radius: 999px;
  font-size: var(--fs-tiny);
}

.program__what{
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
}
.program__topic{
  font-weight: 800;
  font-size: var(--fs-card-title);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
}
.program__speakers{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--fs-base);
  line-height: 1.45;
  color: var(--ink-2);
}
.program__speaker-name{
  font-weight: 700;
  color: var(--ink);
}
.program__desc{
  font-size: var(--fs-card-desc);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  margin-top: 4px;
  max-width: 64ch;
}

.program__cta{
  margin-top: clamp(40px, 4.4vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 32px);
  flex-wrap: wrap;
}
.program__cta-note{
  font-size: var(--fs-eyebrow);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

/* === SPEAKERS === */
.speakers{
  background: var(--white);
  color: var(--ink);
  padding-block: clamp(56px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.speakers__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.speakers__rule{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(28px, 3vw, 48px);
}
.speakers__rule-line{
  flex: 1;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.speakers__rule-label{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease-out) .55s, transform .5s var(--ease-out) .55s;
}
.speakers__rule.is-revealed .speakers__rule-line{ transform: scaleX(1); }
.speakers__rule.is-revealed .speakers__rule-label{ opacity: 1; transform: none; }
.speakers__rule[data-reveal]{ opacity: 1; transform: none; }

.speakers__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(40px, 4.4vw, 64px);
}
.speakers__title{
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.speakers__nav{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.speakers__arrow{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--ink-2);
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), opacity .25s var(--ease-out);
}
.speakers__arrow:hover{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.speakers__arrow:disabled,
.speakers__arrow[aria-disabled="true"]{
  opacity: .3;
  pointer-events: none;
}

.speakers__track{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 26%);
  gap: clamp(16px, 1.8vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* allow cards to "bleed" out of container without clipping */
  padding-bottom: 4px;
}
.speakers__track::-webkit-scrollbar{ display: none; }

.speakers__card{
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 18px);
  background: var(--soft);
  border-radius: var(--radius);
  padding: clamp(16px, 1.4vw, 20px);
}
.speakers__photo{
  aspect-ratio: 4 / 5;
  background: rgba(0,0,0,.06);
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speakers__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speakers__photo--placeholder{
  color: rgba(0,0,0,.32);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.speakers__name{
  font-weight: 800;
  font-size: var(--fs-card-title);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}
.speakers__role{
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

/* === LOCATION === */
.location{
  background: var(--white);
  color: var(--ink);
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: 0; /* next section (.cta) has same bg — collapse gap */
  position: relative;
}
.location__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.location__rule{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(28px, 3vw, 48px);
}
.location__rule-line{
  flex: 1;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease-out);
}
.location__rule-label{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease-out) .55s, transform .5s var(--ease-out) .55s;
}
.location__rule.is-revealed .location__rule-line{ transform: scaleX(1); }
.location__rule.is-revealed .location__rule-label{ opacity: 1; transform: none; }
.location__rule[data-reveal]{ opacity: 1; transform: none; }

.location__head{
  display: flex;
  flex-direction: column;
  gap: clamp(8px, .8vw, 14px);
  margin-bottom: clamp(32px, 3.6vw, 56px);
}
.location__title{
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.location__address{
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.location__map{
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}
.location__map iframe{
  display: block;
  width: 100%;
  border: 0;
  height: clamp(280px, 28vw, 400px);
}

/* Speakers above is white too — collapse the gap */
.speakers{ padding-bottom: 0; }

/* === CTA BANNER === */
.cta{
  background: var(--white);
  padding-block: clamp(40px, 4vw, 72px);
}
.cta__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.cta__banner{
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px);
  /* overflow visible — рупор должен вылезать за верх/низ */
}
.cta__bg{
  position: absolute;
  inset: 0;
  background: var(--orange);
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 0;
}
.cta__texture{
  position: absolute;
  inset: 0;
  background-image: url('assets/texture.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: .55;
  pointer-events: none;
}
.cta__content{
  position: relative;
  z-index: 2;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta__title{
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 12px;
}
.cta__sub{
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 0 0 4px;
}
.cta__content .btn{
  margin-top: clamp(20px, 2vw, 28px);
}
.cta__banner .btn{ display: inline-flex; }
.cta__rupor{
  position: absolute;
  right: 30px;
  top: 50%;
  height: clamp(300px, 33vw, 480px);
  width: auto;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.28));
  z-index: 1;
}

/* === FOOTER === */
.footer{
  background: var(--ink-2);
  color: rgba(255,255,255,.78);
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: clamp(28px, 3vw, 40px);
}
.footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}
.footer__col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__logo{
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
}
.footer__logo img{
  height: 48px;
  width: auto;
  /* Logo SVG fills are white — already correct over dark bg */
}
.footer__desc{
  font-size: var(--fs-tiny);
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.footer__heading{
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer__link{
  font-size: var(--fs-base);
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}
.footer__link:hover{ color: #fff; }

.footer__bottom{
  margin-top: clamp(40px, 4.4vw, 64px);
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: var(--fs-eyebrow);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__credit a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.footer__credit a:hover{
  color: #fff;
  border-color: #fff;
}

/* === RESPONSIVE (минимальные правки чтобы не ломалось до мобайла, который сделаем позже) === */
@media (max-width: 1024px){
  .hero__inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px;
  }
  .hero__rupor{
    width: 100%;
    transform: rotate(-4deg);
  }
  .about__grid{
    grid-template-columns: 1fr;
  }
  .ticker{ padding-block: 14px; }
  .ticker__item{ font-size: var(--fs-ticker-sep); }
  .ticker__sep{ font-size: var(--fs-tiny); }
  .ticker__track{ gap: 28px; }
  .audience__grid{ grid-template-columns: 1fr; }
  .why__grid{ grid-template-columns: 1fr; }
  .why__num{ font-size: 36px; }
  .why__quote{ grid-template-columns: 1fr; }
  .why__quote-mark{ font-size: 96px; line-height: .8; }
  .program__row{ grid-template-columns: 1fr; gap: 12px; }
  .program__when{ flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; position: static; }
  .speakers__head{ flex-direction: column; align-items: flex-start; }
  .speakers__track{ grid-auto-columns: minmax(240px, 78%); }
  .speakers__arrow{ width: 48px; height: 48px; font-size: 18px; }
  .footer__grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta__content{ max-width: 100%; }
  .cta__rupor{ position: static; height: auto; width: 60%; max-width: 320px; margin: 24px auto 0; transform: rotate(-6deg); }
}

@media (max-width: 768px){
  .header{
    height: 72px;
  }
  .header__inner{
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .header__logo img{
    height: 32px;
  }
  .header__nav,
  .header__cta{
    display: none;
  }
  .header__burger{
    display: inline-flex;
    justify-self: end;
    margin-right: -16px;
  }
  .about__body{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero{
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 96px;
  }
  .hero__inner{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-height: auto;
    padding-block: 20px 34px;
  }
  .hero__content{ display: contents; }
  .hero__title{ order: 1; align-self: stretch; width: 100%; margin: 0; }
  .hero__bullets{ order: 2; align-self: stretch; width: 100%; margin: 0; }
  .hero__visual{ order: 3; align-self: center; padding: 0; margin-block: 4px; width: auto; }
  .hero__dates{ order: 4; align-self: stretch; width: 100%; margin: 0; padding-top: 16px; }
  .hero__cta-row{ order: 5; align-self: stretch; width: 100%; margin: 0; }
  .hero__rupor{
    width: 70%;
    max-width: 320px;
    margin: 0 auto;
    transform: rotate(-4deg);
    max-height: none;
    transform-origin: center center;
  }
  .hero__title{
    font-size: 44px;
    line-height: .94;
    letter-spacing: 0;
    margin-block: 0 24px;
  }
  .hero__title-line{
    white-space: normal;
  }
  .hero__title-line--with-sub{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .hero__title-sub{
    max-width: none;
    font-size: 13px;
  }
  .hero__bullets li{
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.45;
    max-width: 100%;
  }
  .hero__dates{
    max-width: 100%;
  }
  .hero__dates-value{
    font-size: 26px;
    line-height: 1.18;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero__dates-place,
  .hero__note{
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero__cta-row{
    width: 100%;
    align-items: flex-start;
    gap: 16px;
  }
  .hero__cta-row .btn{
    flex-shrink: 0;
  }
}

@media (max-width: 420px){
  :root{
    --pad-x: 24px;
  }
  .hero__title{
    font-size: 42px;
  }
  .hero__dates-value{
    font-size: 24px;
  }
  .hero__cta-row{
    flex-direction: column;
  }
}

@media (max-width: 560px){
  .hero__content{
    max-width: 342px;
  }
  .hero__title{
    font-size: 36px;
  }
}

/* === COOKIE BANNER === */
.cookie{
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 200;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  color: var(--ink-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.cookie[hidden]{ display: none; }
.cookie:not([hidden]){ opacity: 1; transform: none; }
.cookie__text{
  font-size: var(--fs-card-desc);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.cookie__close{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out);
}
.cookie__close:hover{ background: var(--orange); color: #fff; }

@media (max-width: 560px){
  .cookie{
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior: auto; }
}
