/* =====================================================================
   GEA · Central Asia
   Aligned to the official GEA brand: dark petrol-teal grounds, bright red
   accent, white type, thin frame device, subtle line texture + grain.
   No arches, no gold, no cream.
   ===================================================================== */

:root {
  --ink:        #1A2C2B;   /* deep petrol teal — primary dark ground */
  --ink-2:      #24403E;   /* lighter teal — gradients */
  --teal:       #2E4A48;   /* mid teal — surfaces on dark */
  --accent:     #DD3328;   /* official brand red (primary accent) */
  --accent-br:  #E8473B;   /* brighter red — hover / on dark grounds */
  --paper:      #F2F4F3;   /* clean cool-neutral — light ground */
  --paper-2:    #FAFBFA;   /* card surface */
  --text:       #16211F;   /* body on light */
  --muted:      #5C6967;   /* cool muted text */
  --faint:      #8A938F;   /* labels / meta */
  --line:       rgba(20,40,38,0.10);
  --line-2:     rgba(20,40,38,0.06);
  --frame:      rgba(255,255,255,0.16);

  --font-display: 'Exo 2', 'Manrope', sans-serif;

  --wrap: 1400px;
  --pad: clamp(20px, 4vw, 48px);
  --sec: clamp(72px, 10vw, 148px);
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-soft: 0 1px 2px rgba(20,40,38,.05), 0 24px 60px -42px rgba(20,40,38,.28);
  --shadow-lift: 0 30px 64px -34px rgba(20,40,38,.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(221,51,40,0.18); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); position: relative; }
.section--paper { background: #fff; border-block: 1px solid var(--line-2); }
.section--flush { padding-block: 0 var(--sec); }

/* ---------- Typography (display = Exo 2, matched to the GEA wordmark; body = Manrope) ---------- */
.display { font-family: var(--font-display); }

.h1 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.9rem, 7.6vw, 7.6rem); line-height: 1.0; letter-spacing: -0.025em; margin: 0; }
.h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.1rem, 4.7vw, 3.7rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--text); margin: 0; }
.h2 em, .h1 em { font-style: normal; color: var(--accent); }
.h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.01em; margin: 0; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.62; color: var(--muted); margin: 0; max-width: 60ch; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .star { width: 13px; height: 13px; flex: none; fill: var(--accent); }
.eyebrow--light { color: rgba(255,255,255,0.72); }
.eyebrow--light .star { fill: var(--accent-br); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 12px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s;
}
.btn .arr { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

.btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-br); box-shadow: 0 18px 38px -16px rgba(221,51,40,.55); }
.btn--accent .arr { color: #fff; }

.btn--solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--solid:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: 0 18px 40px -18px rgba(20,40,38,.6); }
.btn--solid .arr { color: var(--accent-br); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -18px rgba(0,0,0,.4); }

.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.26); }
.btn--ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }

.btn--quiet { padding: 16px 6px; background: none; color: rgba(255,255,255,.82); }
.btn--quiet:hover { color: #fff; }
.btn--quiet .ln { box-shadow: inset 0 -1px 0 rgba(255,255,255,.45); padding-bottom: 3px; }

/* ---------- Header (transparent glass over hero → solid glass on scroll) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; }
.site-header__bar {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: none; box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header__bar.scrolled {
  background: rgba(242,244,243,0.85);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--line-2);
  box-shadow: 0 12px 34px -16px rgba(20,40,38,.2);
}

/* Light text while transparent over the hero */
.site-header__bar .brand__sub { color: rgba(255,255,255,.72); }
.site-header__bar .brand__rule { background: rgba(255,255,255,.26); }
.site-header__bar .nav__link { color: rgba(255,255,255,.82); }
.site-header__bar .nav__link:hover { background: rgba(255,255,255,.12); color: #fff; }
.site-header__bar .burger { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.site-header__bar .burger span { background: #fff; }

/* Dark text once the bar turns solid */
.site-header__bar.scrolled .brand__sub { color: var(--muted); }
.site-header__bar.scrolled .brand__rule { background: rgba(20,40,38,.16); }
.site-header__bar.scrolled .nav__link { color: #2A3633; }
.site-header__bar.scrolled .nav__link:hover { background: rgba(20,40,38,.05); color: var(--ink); }
.site-header__bar.scrolled .burger { border-color: rgba(20,40,38,.12); background: #fff; }
.site-header__bar.scrolled .burger span { background: var(--ink); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo { height: 30px; width: auto; }
.brand__rule { width: 1px; height: 24px; background: rgba(20,40,38,.16); }
.brand__sub { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 9px 15px; border-radius: 10px; white-space: nowrap; color: #2A3633; font-weight: 500; font-size: 0.95rem; transition: background .2s, color .2s; }
.nav__link:hover { background: rgba(20,40,38,.05); color: var(--ink); }
.nav__cta {
  margin-left: 12px; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 11px; white-space: nowrap;
  background: var(--ink); color: #fff; font-weight: 600; font-size: 0.92rem;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: 0 14px 28px -14px rgba(20,40,38,.5); }
.nav__cta .arr { color: var(--accent-br); }

.burger { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 1px solid rgba(20,40,38,.12); border-radius: 11px; background: #fff; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mpanel { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.mpanel.open { max-height: 560px; }
.mpanel__inner { display: flex; flex-direction: column; gap: 2px; padding: 14px var(--pad) 30px; }
.mpanel a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 17px 4px; font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transform: translateX(-16px); opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease), color .2s;
}
.mpanel a::after { content: "→"; color: var(--accent-br); font-size: 1rem; }
.mpanel a:active { color: var(--accent-br); }
.mpanel.open a { transform: none; opacity: 1; }
.mpanel.open a:nth-child(1) { transition-delay: .08s; }
.mpanel.open a:nth-child(2) { transition-delay: .14s; }
.mpanel.open a:nth-child(3) { transition-delay: .20s; }
.mpanel.open a:nth-child(4) { transition-delay: .26s; }
.mpanel.open a:nth-child(5) { transition-delay: .32s; }
.mpanel a:last-child {
  margin-top: 18px; justify-content: center; border: none; border-radius: 13px;
  background: var(--accent); color: #fff; padding: 18px;
}
.mpanel a:last-child::after { content: none; }
.mpanel a:last-child .arr { color: #fff; }

/* ---------- Texture ---------- */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .45; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.lines { display: none; }
.frame { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); isolation: isolate; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__veil-1 { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,11,11,.78) 0%, rgba(8,11,11,.46) 40%, rgba(8,11,11,.1) 72%, transparent 100%); }
.hero__veil-2 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,11,.4) 0%, transparent 24%, transparent 62%, rgba(8,11,11,.62) 100%); }
.hero__glow { position: absolute; top: 6%; right: -160px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(221,51,40,.14), transparent 62%); pointer-events: none; }
.hero__inner { position: relative; z-index: 3; width: 100%; padding-block: clamp(104px, 12vh, 148px); }
.hero__content { max-width: none; }
.hero__title { color: #fff; margin: 26px 0 0; }
.hero__title em { color: var(--accent-br); }
.hero__lead { margin: 28px 0 0; max-width: 600px; font-size: clamp(1.08rem,1.55vw,1.34rem); line-height: 1.6; color: rgba(255,255,255,.8); }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }

/* ---------- Section head ---------- */
.head { max-width: 760px; }
.head .h2 { margin-top: 20px; }
.head .lead { margin-top: 18px; }

/* ---------- About (heading row + big video below) ---------- */
.about__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: end; }
.about__head .h2 { margin-top: 20px; }
.about__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
@media (max-width: 860px) { .about__head { grid-template-columns: 1fr; gap: 24px; align-items: start; } }

.video { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-soft); }
.video--wide { margin-top: clamp(38px, 4.5vw, 64px); border-radius: 24px; box-shadow: 0 1px 2px rgba(20,40,38,.06), 0 50px 100px -54px rgba(20,40,38,.5); }
.video__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none; cursor: pointer; padding: 0;
  background: linear-gradient(180deg, rgba(12,18,17,.25), rgba(12,18,17,.6)), url('assets/gea.jpg') center / cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.video__tag { position: absolute; top: 20px; left: 22px; font-weight: 800; letter-spacing: .03em; color: #fff; font-size: .98rem; }
.video__halo { position: absolute; top: -60px; right: -50px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(221,51,40,.3), transparent 60%); }
.video__play { position: relative; display: flex; align-items: center; justify-content: center; width: 78px; height: 78px; border-radius: 999px; background: var(--accent); box-shadow: 0 16px 34px -12px rgba(221,51,40,.6); transition: transform .3s var(--ease); }
.video__poster:hover .video__play { transform: scale(1.06); background: var(--accent-br); }
.video__play::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; margin-left: 6px; }
.video__label { position: relative; color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 600; }

/* ---------- Global partnership ---------- */
.global {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 24px;
  background: linear-gradient(120deg, #fff, var(--paper-2)); box-shadow: var(--shadow-soft); padding: clamp(32px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(30px, 4vw, 52px); align-items: center;
}
.global__glow { position: absolute; top: -90px; right: -70px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(221,51,40,.07), transparent 62%); pointer-events: none; }
.global__copy { position: relative; }
.global__copy .h2 { margin-top: 20px; }
.global__copy .lead { margin-top: 18px; }
.global__card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
  width: 100%; max-width: 420px; margin-inline: auto; padding: 46px 36px;
  border: 1px solid var(--line); border-radius: 18px; background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.global__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(221,51,40,.4); }
.global__card img { height: 56px; width: auto; }
.global__card .div { width: 44px; height: 1px; background: rgba(20,40,38,.14); }
.global__card .ttl { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.global__card .go { display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border-radius: 11px; background: var(--ink); color: #fff; font-weight: 600; font-size: .95rem; }
.global__card .go .arr { color: var(--accent-br); }

/* ---------- World map ---------- */
.map {
  position: relative; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; overflow: hidden; isolation: isolate;
  background: linear-gradient(160deg, var(--ink-2), var(--ink) 78%);
  box-shadow: 0 1px 2px rgba(20,40,38,.06), 0 44px 96px -56px rgba(20,40,38,.5);
  padding: clamp(22px, 3vw, 44px); margin-top: 36px;
}
.map__glow { position: absolute; top: -120px; left: 50%; transform: translateX(-30%); width: 560px; height: 460px; background: radial-gradient(circle, rgba(221,51,40,.16), transparent 62%); pointer-events: none; z-index: 1; }
.map__canvas { position: relative; width: 100%; aspect-ratio: 360 / 136; z-index: 2; }
.chips { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: #39433F; font-weight: 600; font-size: .9rem; }

/* ---------- Vision & Mission (dark editorial statement cards) ---------- */
.vm-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: clamp(20px, 2.5vw, 28px); }
.vm-card {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(165deg, var(--ink-2), var(--ink) 80%);
  border: 1px solid rgba(255,255,255,.08); border-radius: 22px;
  padding: clamp(32px, 3.6vw, 50px);
  min-height: clamp(290px, 32vw, 380px);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.vm-card:hover { transform: translateY(-5px); box-shadow: 0 44px 84px -46px rgba(20,40,38,.7); border-color: rgba(232,71,59,.45); }
.vm-card .lines { opacity: .4; z-index: 0; }
.vm-card__glow { position: absolute; top: -130px; right: -90px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(221,51,40,.22), transparent 62%); pointer-events: none; z-index: 0; }
.vm-card__ghost {
  position: absolute; top: clamp(-8px, -.6vw, 0px); right: clamp(6px, 1.4vw, 22px); z-index: 0;
  font-weight: 800; font-size: clamp(4.4rem, 8.5vw, 7.6rem); line-height: .82; letter-spacing: -.045em;
  color: rgba(255,255,255,.045); pointer-events: none; user-select: none;
}
.vm-card .eyebrow { position: relative; z-index: 1; }
.vm-card__body { position: relative; z-index: 1; margin-top: auto; display: flex; flex-direction: column; gap: 18px; }
.vm-card__rule { width: 42px; height: 3px; border-radius: 3px; background: var(--accent); transition: width .4s var(--ease); }
.vm-card:hover .vm-card__rule { width: 66px; }
.vm-card__text { margin: 0; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.32; font-weight: 600; color: #fff; letter-spacing: -.02em; }

/* ---------- Audience pills ---------- */
.pills { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.pill {
  display: inline-flex; align-items: center; gap: 11px; padding: 14px 24px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--text); font-weight: 600; font-size: 1.05rem;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.pill:hover { transform: translateY(-2px); border-color: rgba(221,51,40,.45); box-shadow: 0 16px 32px -22px rgba(20,40,38,.3); }

/* ---------- Why cards ---------- */
.why-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(18px, 2vw, 24px); }
.why-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; gap: 14px; transition: transform .35s var(--ease), box-shadow .35s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.why-card__no { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: 0; color: var(--accent); line-height: 1; }
.why-card p { margin: 0; font-size: .98rem; line-height: 1.55; color: var(--muted); }

/* ---------- Event ---------- */
.event__grid { margin-top: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(34px, 5vw, 64px); align-items: center; }
.poster {
  margin: 0; position: relative; width: 100%; max-width: 420px; aspect-ratio: 4 / 5; border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center;
  padding: 30px; background: linear-gradient(155deg, var(--ink-2), var(--ink) 74%);
  box-shadow: 0 44px 84px -50px rgba(20,40,38,.55); overflow: hidden;
}
img.poster { padding: 0; background: none; height: auto; object-fit: cover; object-position: center; }
.poster__halo { position: absolute; top: -50px; right: -40px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(221,51,40,.28), transparent 60%); }
.poster__kicker { position: relative; font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--accent-br); }
.poster__title { position: relative; font-family: var(--font-display); text-transform: uppercase; font-size: 2.1rem; font-weight: 800; letter-spacing: 0; line-height: 1.04; color: #fff; }
.poster__note { position: relative; font-size: .88rem; color: rgba(255,255,255,.55); }
.event__title { font-size: clamp(2rem, 4vw, 3.1rem); }
.event__sub { margin: 18px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.5; color: var(--muted); }
.facts { margin-top: 30px; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.fact { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fact .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); flex: none; }
.fact .k { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); width: 104px; flex: none; }
.fact .v { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.event__actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.event__hint { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 4px 8px; font-size: .95rem; color: var(--muted); }
.link-ff { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--accent); transition: color .2s; }
.link-ff:hover { color: var(--ink); }
.link-ff .arr { color: var(--accent); }

/* ---------- Final CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: 28px; isolation: isolate;
  background: linear-gradient(150deg, var(--ink-2), var(--ink) 64%);
  padding: clamp(44px, 6vw, 88px) clamp(28px, 5vw, 76px);
  box-shadow: 0 44px 92px -52px rgba(20,40,38,.72);
}
.cta__glow-1 { position: absolute; top: -100px; right: -60px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(221,51,40,.2), transparent 60%); }
.cta__glow-2 { position: absolute; bottom: -140px; left: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(46,74,72,.55), transparent 62%); }
.cta__inner { position: relative; z-index: 3; max-width: 760px; }
.cta .h2 { color: #fff; margin-top: 22px; font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
.cta .h2 em { color: var(--accent-br); }
.cta__lead { margin: 22px 0 0; max-width: 620px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55; color: rgba(255,255,255,.76); }
.cta__row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(52px, 6vw, 84px) 0 40px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(28px, 4vw, 56px); }
.footer__about { max-width: 340px; display: flex; flex-direction: column; gap: 16px; }
.footer__about p { margin: 0; font-size: .95rem; line-height: 1.55; color: var(--muted); }
.footer__place { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__h { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.footer__link { display: inline-flex; align-items: center; gap: 8px; font-size: .98rem; color: #39433F; font-weight: 500; transition: color .2s; }
.footer__link:hover { color: var(--accent); }
.footer__link .arr { color: var(--accent); }
.footer__bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer__bottom span { font-size: .86rem; color: var(--faint); }

/* ---------- Motion ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.js .hero__reveal { opacity: 0; animation: fadeUp .9s var(--ease) both; }
.js .hero__reveal.d1 { animation-delay: .08s; }
.js .hero__reveal.d2 { animation-delay: .22s; }
.js .hero__reveal.d3 { animation-delay: .38s; }
.js .hero__reveal.d4 { animation-delay: .54s; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* Kinetic heading reveal — lines rise out of a mask */
.rise, .h-line { display: block; overflow: hidden; padding-bottom: .09em; margin-bottom: -.09em; }
.rise__i, .h-line__i { display: block; }
@keyframes riseIn { from { transform: translateY(118%); } to { transform: translateY(0); } }
.js .rise__i { transform: translateY(118%); transition: transform .9s var(--ease); }
.js .reveal.in .rise__i { transform: none; }
.js .h-line__i { animation: riseIn 1s var(--ease) both; }
.js .hero__title .h-line:nth-child(1) .h-line__i { animation-delay: .12s; }
.js .hero__title .h-line:nth-child(2) .h-line__i { animation-delay: .25s; }
.js .hero__title .h-line:nth-child(3) .h-line__i { animation-delay: .38s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (min-width: 1025px) {
  .mpanel { display: none; }
}
@media (max-width: 640px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .cta__row { flex-direction: column; }
  .cta__row .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .h1 { font-size: clamp(2.2rem, 10vw, 3rem); letter-spacing: -0.02em; }
  .h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero__inner { padding-block: clamp(96px, 22vh, 130px); }
  .vm-card__ghost { font-size: clamp(3.6rem, 22vw, 5rem); }
}

/* Конференция: фото подгоняем под пропорции снимка (без обрезки), по центру */
@media (max-width: 760px) {
  .poster { aspect-ratio: 1189 / 1323; max-width: 340px; margin-inline: auto; }
}

/* Карта на мобильных: убираем накладывающиеся подписи (оставляем Центр. Азию),
   укрупняем точки, уменьшаем поля */
@media (max-width: 680px) {
  .map { padding: 16px; }
  .map-dot { width: 4px !important; height: 4px !important; }
  .map-pin:not(.map-pin--hl) { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .hero__reveal, .js .reveal, .js .rise__i, .js .h-line__i { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .btn, .vm-card, .why-card, .pill, .global__card { transition: none !important; }
}
