/* ============================================================
   Twinby × Пикник Афиши — лендинг игровой зоны, v2
   Стиль: фестивальный стикербук Twinby (лаванда + белые
   карточки + гигантские фиолетовые заголовки + зелёные тикеты)
   ============================================================ */

@font-face {
  font-family: "Picnic Cond";
  src: url("assets/fonts/PicnicTypeface-Condensed.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Picnic Exp";
  src: url("assets/fonts/PicnicTypeface-Expanded.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Coolvetica";
  src: url("assets/fonts/coolvetica-rg.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-SemiBold.woff2") format("woff2");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Bold.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}

:root {
  --gamze: #8746FF;
  --gamze-deep: #6E2FE0;
  --kiwi: #C1FFA7;
  --kiwi-dark: #073B00;
  --ink: #1C1A20;
  --ink-soft: #615D6D;
  --lavender: #EFEAF9;
  --lav-deep: #DFD5F5;
  --paper: #FFFFFF;
  --orange: #FF7A1A;
  --pink: #FF99EB;      /* Pantone 236 C — фирменный розовый */
  --kiwi-soft: #C1FFA7; /* Pantone 2281 C — светлый лайм */
  --sun: #FFB320;
  --dusk-1: #43385C;
  --dusk-2: #2A2042;

  --disp: "Coolvetica", "Arial Narrow", sans-serif;
  --brand-f: "Coolvetica", sans-serif;
  --body-f: "Suisse Intl", system-ui, sans-serif;
  --co-f: "Picnic Exp", sans-serif; /* только для имени партнёра «пикник афиши» */

  --r-card: 36px;
  --r-md: 20px;
  --shadow-card: 0 2px 4px rgba(28,26,32,.04), 0 24px 64px rgba(135,70,255,.10);
  --shadow-pop: 0 6px 16px rgba(28,26,32,.10), 0 24px 48px rgba(135,70,255,.16);
  --wrap: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--body-f);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--lavender);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: #C1FFA7; color: #14570A; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sec, .strip { scroll-margin-top: 92px; }

/* клавиатурная навигация */
:focus-visible { outline: 3px solid var(--gamze); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible, .store:focus-visible { outline-offset: 4px; }

/* ---------- фон ---------- */
.bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg__blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.bg__blob--1 { width: 560px; height: 560px; background: #DCCDFF; top: -180px; right: -120px; }
.bg__blob--2 { width: 480px; height: 480px; background: #FFC7F2; top: 38%; left: -200px; opacity: .5; }
.bg__blob--3 { width: 520px; height: 520px; background: #D6F5C2; bottom: -200px; right: -80px; opacity: .4; }

/* ---------- типографика ---------- */
h1, h2 {
  font-family: var(--disp);
  font-weight: 400;
  color: var(--gamze);
  line-height: .98;
  letter-spacing: .005em;
}
h1 { font-size: clamp(58px, 7.6vw, 112px); }
h2 { font-size: clamp(38px, 4.4vw, 60px); }
h3 { font-family: var(--body-f); font-weight: 700; font-size: 19px; line-height: 1.25; }

.eyebrow {
  display: inline-block;
  font-family: var(--body-f); font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.72); }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body-f); font-weight: 600; font-size: 16px;
  padding: 18px 32px; border-radius: 999px; border: 0;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .2s, color .2s;
}
.btn--green {
  background: var(--kiwi);
  color: #14570A;
  box-shadow: inset 0 0 0 2px rgba(20,87,10,.22), 0 10px 24px rgba(28,26,32,.12);
}
.btn--green:hover { transform: translateY(-3px) rotate(-1deg); background: #B4F794; box-shadow: inset 0 0 0 2px rgba(20,87,10,.3), 0 16px 32px rgba(28,26,32,.18); }
.btn--ghost {
  background: var(--paper);
  color: var(--gamze);
  box-shadow: inset 0 0 0 2px var(--lav-deep), 0 10px 24px rgba(28,26,32,.1);
}
.btn--ghost:hover { transform: translateY(-3px) rotate(1deg); box-shadow: inset 0 0 0 2px var(--gamze), 0 16px 32px rgba(28,26,32,.14); }
.btn--sm { padding: 11px 22px; font-size: 14px; box-shadow: none; }
.btn--green.btn--sm { box-shadow: inset 0 0 0 2px rgba(20,87,10,.22); }
.btn--ghost.btn--sm { box-shadow: inset 0 0 0 2px var(--lav-deep); }
.btn--lg { padding: 19px 36px; font-size: 17px; }
.btn:active { transform: translateY(0) scale(.97); }
.btn__arr { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover .btn__arr { transform: translateX(4px); }

/* ---------- хедер ---------- */
.hdr { position: sticky; top: 14px; z-index: 100; padding: 0 18px; }
.hdr__pill {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 999px; padding: 10px 12px 10px 24px;
  box-shadow: 0 1px 2px rgba(28,26,32,.05), 0 12px 32px rgba(135,70,255,.08);
  transition: box-shadow .3s;
}
.hdr.is-scrolled .hdr__pill { box-shadow: 0 2px 6px rgba(28,26,32,.08), 0 18px 44px rgba(135,70,255,.18); }
.brand { display: flex; align-items: center; gap: 9px; }
.brand__logo { color: var(--ink); flex-shrink: 0; }
.brand__x { color: var(--ink); font-weight: 600; font-size: 16px; line-height: 1; transform: translateY(-1px); margin-left: -7px; }
.brand__pic { height: 38px; width: auto; }
.brand--ftr .brand__pic { height: 32px; }
.brand__co { font-family: var(--co-f); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); line-height: 1.5; max-width: 92px; }
.hdr__nav { display: flex; gap: 26px; margin-left: auto; }
.hdr__nav a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color .2s; position: relative; }
.hdr__nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--kiwi); border-radius: 2px; transition: width .25s; }
.hdr__nav a:hover { color: var(--ink); }
.hdr__nav a:hover::after { width: 100%; }
.hdr__burger { display: none; }
.hdr__sheet { display: none; }

/* ---------- хиро ---------- */
.hero { padding: 76px 0 30px; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: center; }
.hero__tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.tag {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: var(--paper); border-radius: 999px; padding: 9px 18px;
  font-family: var(--body-f); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink);
  box-shadow: 0 6px 18px rgba(135,70,255,.12);
}
.tag--date { background: var(--ink); color: #fff; box-shadow: 0 6px 18px rgba(28,26,32,.2); }
.tag__mark { width: 22px; height: 14px; }
.h1-pink { color: #F95FD7; position: relative; display: inline-block; }
.hero__sub { font-size: 19px; color: var(--ink-soft); max-width: 460px; margin: 26px 0 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__about { font-size: 14px; color: var(--ink-soft); max-width: 440px; margin-top: 34px; padding-left: 16px; border-left: 3px solid var(--kiwi); }
.hero__about b { color: var(--ink); }
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 44px auto 0; width: max-content;
  font-family: var(--body-f); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gamze);
}
.hero__scroll svg { width: 15px; height: 15px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* коллаж */
.hero__art { position: relative; height: 560px; }
.art__swoosh {
  position: absolute; width: 380px; height: 238px; left: 54%; top: 44%;
  transform: translate(-50%, -50%) rotate(-18deg);
  opacity: .92;
  filter: drop-shadow(0 18px 36px rgba(0,220,0,.28));
}
.art__splat {
  position: absolute; width: 104px; height: 104px; right: 30%; bottom: 1%;
  background: var(--pink); opacity: .85;
  border-radius: 58% 42% 64% 36% / 48% 60% 40% 52%;
  transform: rotate(14deg);
}
.polaroid {
  position: absolute; left: 1%; top: 5%; width: 232px;
  background: var(--paper); border-radius: 14px; padding: 11px 11px 13px;
  box-shadow: var(--shadow-pop); transform: rotate(-7deg);
}
.polaroid__photo img { width: 100%; height: auto; border-radius: 8px; display: block; }
.polaroid__tape {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 96px; height: 28px; background: rgba(223,213,245,.88); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.polaroid__tape svg { width: 68px; height: auto; color: var(--gamze); opacity: .85; }
.polaroid figcaption {
  font-family: var(--body-f); font-weight: 700; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft); text-align: center; margin-top: 10px;
}
.ticket {
  position: relative; background: var(--kiwi); color: var(--kiwi-dark);
  border-radius: 16px; display: flex; align-items: center;
  /* вырезы сверху и снизу — на линии отрыва у корешка; бока чистые */
  --tear-x: 52px;
  -webkit-mask-image:
    radial-gradient(circle 8px at var(--tear-x) 0, transparent 7px, #000 8px),
    radial-gradient(circle 8px at var(--tear-x) 100%, transparent 7px, #000 8px);
  mask-image:
    radial-gradient(circle 8px at var(--tear-x) 0, transparent 7px, #000 8px),
    radial-gradient(circle 8px at var(--tear-x) 100%, transparent 7px, #000 8px);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.ticket--hero {
  --tear-x: 54px;
  position: absolute; right: 0; top: 26%; transform: rotate(7deg);
  padding: 16px 24px; gap: 16px;
  background-color: var(--gamze); color: #fff;
  text-shadow: 0 1px 1px rgba(50,15,120,.45), 0 2px 6px rgba(50,15,120,.25);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px);
  filter: drop-shadow(0 16px 28px rgba(135,70,255,.45));
}
.ticket--hero .ticket__num { font-family: var(--disp); font-size: 52px; line-height: 1; position: relative; z-index: 1; }
.ticket--hero .ticket__txt {
  font-weight: 700; font-size: 13.5px; line-height: 1.25; text-transform: uppercase; letter-spacing: .03em;
  padding-left: 16px; border-left: 2px dashed rgba(255,255,255,.45);
  position: relative; z-index: 1;
}
.ticket__stub {
  align-self: stretch; display: flex; align-items: center; justify-content: center;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-weight: 700; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .8;
  border-left: 2px dashed rgba(255,255,255,.45); padding-left: 12px;
}
.ticket__stub--col {
  flex-direction: column; gap: 8px; opacity: 1;
  border-left: none; border-right: 2px dashed currentColor; padding-left: 0; padding-right: 14px;
}
.ticket__stub--col svg { width: 22px; height: 22px; transform: rotate(180deg); }
.ticket__stub--col span { opacity: .7; }
.ticket__bars { width: 30px; height: 46px; opacity: .85; flex-shrink: 0; position: relative; z-index: 1; }
.ticket__wm { position: absolute; right: 64px; bottom: -8px; width: 86px; opacity: .14; transform: rotate(-10deg); pointer-events: none; }
.chipcard {
  position: absolute; left: 4%; bottom: 13%;
  display: flex; align-items: center; gap: 13px;
  background: var(--paper); border-radius: 18px; padding: 14px 20px;
  box-shadow: var(--shadow-pop); transform: rotate(-3deg);
}
.chipcard__coin { width: 56px; height: 56px; filter: drop-shadow(0 4px 10px rgba(135,70,255,.35)); }
.chipcard > div { text-align: center; }
.chipcard b { display: block; font-size: 17px; }
.chipcard span { font-size: 13px; color: var(--ink-soft); }
.livecard {
  position: absolute; right: 7%; bottom: 5%;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 16px; padding: 13px 20px;
  box-shadow: 0 18px 40px rgba(28,26,32,.3); transform: rotate(2deg);
}
.livecard b { display: block; font-family: var(--disp); font-size: 24px; line-height: 1; }
.livecard span { font-size: 12px; opacity: .75; line-height: 1.3; display: block; }
.livecard__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--kiwi); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(193,255,167,.75); } 50% { box-shadow: 0 0 0 7px rgba(193,255,167,0); } }
.art__bfly { position: absolute; width: 64px; left: 38%; top: -3%; transform: rotate(-16deg); }
.art__spark { position: absolute; }
.art__spark--1 { width: 30px; left: -2%; top: 38%; }
.art__spark--2 { width: 22px; right: 14%; top: 12%; }
.art__spark--3 { width: 18px; right: 28%; bottom: 28%; }
.art__squig { position: absolute; width: 84px; left: 16%; bottom: -2%; transform: rotate(-8deg); }

/* плавание стикеров */
.float-a { animation: float-a 7s ease-in-out infinite; }
.float-b { animation: float-b 6s ease-in-out .6s infinite; }
.float-c { animation: float-c 8s ease-in-out .3s infinite; }
.float-d { animation: float-d 7.5s ease-in-out 1s infinite; }
@keyframes float-a { 0%,100% { transform: rotate(-7deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-10px); } }
@keyframes float-b { 0%,100% { transform: rotate(7deg) translateY(0); } 50% { transform: rotate(8.5deg) translateY(-12px); } }
@keyframes float-c { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-8px); } }
@keyframes float-d { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-9px); } }

/* ---------- бегущая строка ---------- */
.strip {
  background: var(--gamze); transform: rotate(-1.4deg) scale(1.02);
  padding: 16px 0; margin: 36px -10px 10px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(135,70,255,.3);
}
.strip__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.strip__seq {
  display: flex; align-items: center; gap: 28px; padding-right: 28px;
  font-family: var(--disp); font-size: 28px; text-transform: lowercase; color: #fff; white-space: nowrap;
}
.strip__seq svg { width: 38px; height: 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- секции и карточки ---------- */
.sec { padding: 44px 0; }
.card {
  background: var(--paper); border-radius: var(--r-card);
  padding: clamp(36px, 5vw, 72px); box-shadow: var(--shadow-card);
}
.sec__head { margin-bottom: 44px; }
.sec__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.sec__spark { width: 44px; height: 44px; flex-shrink: 0; animation: spin-slow 14s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ---------- маршрут ---------- */
.route { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.route__step {
  position: relative; background: var(--lavender); border-radius: var(--r-md);
  padding: 64px 20px 24px; transition: transform .3s, box-shadow .3s;
}
.route__step:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow-pop); }
.route__step:nth-child(even):hover { transform: translateY(-6px) rotate(.6deg); }
.route__num {
  position: absolute; top: 16px; left: 20px; z-index: 0;
  font-family: var(--disp); font-size: 34px; color: var(--gamze); line-height: 1;
}
.route__num::after {
  content: ""; position: absolute; left: -7px; right: -7px; bottom: 3px; height: 14px;
  background: var(--kiwi-soft); z-index: -1; border-radius: 6px; transform: rotate(-2deg);
}
.route__icon { width: 86px; height: 86px; margin-bottom: 14px; }
.route__icon img { width: 100%; height: 100%; object-fit: contain; }
/* монета шага 03 — на тайле, как остальные иконки */
.route__icon--tile {
  background: #DCCFF5; border-radius: 24%;
  display: grid; place-items: center; padding: 15px;
}
.route__icon--tile svg { width: 100%; height: 100%; }
.route__step h3 { font-size: 17px; margin-bottom: 8px; }
.route__step p { font-size: 14px; color: var(--ink-soft); }
.route__btn { margin-top: 14px; }
.route__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 13px; font-weight: 700; color: var(--gamze);
  border-bottom: 2px solid rgba(135,70,255,.25); padding-bottom: 1px; transition: border-color .2s;
}
.route__link:hover { border-color: var(--gamze); }

.route__hint {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 26px; padding: 18px 24px;
  background: var(--lavender); border-radius: var(--r-md);
}
.route__hint p { font-size: 15px; color: var(--ink-soft); max-width: 560px; }

/* ---------- активности ---------- */
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.act {
  background: var(--paper); border-radius: var(--r-md); padding: 26px;
  box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s;
}
.act:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.act__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.act__icon {
  width: 92px; height: 92px; object-fit: contain;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.act:hover .act__icon { transform: rotate(-6deg) scale(1.07); }
.act h3 { margin-bottom: 8px; }
.act p { font-size: 15px; color: var(--ink-soft); }
.badge {
  font-family: var(--body-f); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.badge--chip { background: var(--kiwi-soft); color: #1C6B00; box-shadow: inset 0 0 0 1.5px rgba(28,107,0,.25); }
.badge--free { background: #FFD3F5; color: #B0249E; box-shadow: inset 0 0 0 1.5px rgba(176,36,158,.3); }

/* ---------- расписание ---------- */
.sched { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 4vw, 64px); }
.sched__points { margin: 26px 0 30px; display: grid; gap: 16px; }
.sched__points li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.sched__points svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
/* звёзды как на promokod.neuralab.app: spin-soft + twinkle */
.sched__stars { position: relative; height: 240px; margin-top: 56px; }
.sched__star { position: absolute; }
.sched__star--big {
  width: 152px; left: 10%; top: 28px;
  animation: spin-soft 18s linear infinite;
  filter: drop-shadow(0 18px 36px rgba(135,70,255,.35));
}
.sched__star--mid {
  width: 70px; left: 48%; top: 128px;
  animation: spin-soft 13s linear infinite reverse;
  filter: drop-shadow(0 10px 22px rgba(160,235,130,.5));
}
.sched__star--small { width: 33px; left: 34%; top: 190px; animation: twinkle 3.4s ease-in-out infinite; }
@keyframes spin-soft { to { transform: rotate(360deg); } }
@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(25deg); }
}
.tl { display: grid; gap: 8px; }
.tl__row {
  display: grid; grid-template-columns: 76px 1fr auto; align-items: center; gap: 18px;
  padding: 14px 20px; border-radius: 16px; background: var(--lavender);
  transition: background .3s, transform .3s;
}
.tl__time { font-family: var(--disp); font-size: 27px; color: var(--gamze); }
.tl__time i { display: block; font-style: normal; font-size: 13px; line-height: 1; margin-top: 2px; color: var(--ink-soft); }
.tl__row--live .tl__time i { color: #1C6B00; }
.tl__row b { display: block; font-size: 15.5px; font-weight: 700; }
.tl__row div span { font-size: 13px; color: var(--ink-soft); }
.tl__chip {
  font-style: normal; font-family: var(--body-f); font-weight: 700; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; display: none;
}
.tl__row--past { opacity: .42; }
.tl__row--live { background: var(--kiwi-soft); transform: scale(1.02); }
.tl__row--live .tl__time { color: #1C6B00; }
.tl__row--live .tl__chip { display: inline-block; background: var(--kiwi); color: var(--kiwi-dark); animation: pulse 1.6s ease-in-out infinite; }
.tl__row--next { background: rgba(135,70,255,.12); }
.tl__row--next .tl__chip { display: inline-block; background: var(--gamze); color: #fff; }
.tl__row--prize { background: var(--ink); }
.tl__row--prize .tl__time { color: var(--kiwi); }
.tl__row--prize b, .tl__row--prize div span { color: #fff; }
.tl__row--prize div span { opacity: .7; }
.tl__row--prize.tl__row--past { opacity: .42; }

/* ---------- призы ---------- */
.card--prizes {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gamze) 0%, var(--gamze-deep) 55%, var(--dusk-1) 100%);
}
.card--prizes h2 { color: #fff; }
.prizes__head { position: relative; z-index: 1; max-width: 560px; margin-bottom: 44px; }
.prizes__head p { color: rgba(255,255,255,.82); font-size: 16.5px; margin-top: 18px; }
.prizes__bfly {
  position: absolute; width: 380px; right: -70px; top: -60px;
  opacity: .12; transform: rotate(18deg);
}
.prizes__spark { position: absolute; }
.prizes__spark--1 { width: 28px; right: 12%; top: 18%; animation: spin-slow 16s linear infinite; }
.prizes__spark--2 { width: 18px; right: 30%; bottom: 14%; }
.prizes__row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; align-items: center; }
.ticket--prize {
  --tear-x: 86px;
  padding: 22px 24px; gap: 18px; transform: rotate(-1.6deg);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.1) 0 12px, transparent 12px 24px);
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.25));
  transition: transform .3s;
}
.ticket--prize:hover { transform: rotate(0deg) translateY(-5px); }
.ticket--prize:nth-child(2) { transform: rotate(1.4deg); }
.ticket--prize:nth-child(2):hover { transform: rotate(0deg) translateY(-5px); }
.ticket--prize .ticket__stub--col { color: rgba(7,59,0,.75); }
.ticket--prize .ticket__bars { color: rgba(7,59,0,.8); margin-left: auto; }
.ticket--white {
  background-color: var(--paper); color: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(135,70,255,.05) 0 12px, transparent 12px 24px);
  filter: drop-shadow(0 16px 30px rgba(10,4,32,.55));
}
.ticket--white .ticket__stub--col { color: var(--gamze); }
.ticket--white .ticket__bars { color: var(--gamze); }
.ticket--mini {
  --tear-x: 46px;
  position: absolute; right: 1%; top: 56%;
  padding: 13px 18px; gap: 13px;
  background-color: var(--pink); color: #fff;
  text-shadow: 0 1px 1px rgba(140,21,98,.4), 0 2px 6px rgba(140,21,98,.25);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.1) 0 12px, transparent 12px 24px);
  filter: drop-shadow(0 12px 24px rgba(220,80,190,.4));
}
.ticket--mini .ticket__stub--col { color: rgba(255,255,255,.92); padding-right: 11px; gap: 6px; }
.ticket--mini .ticket__stub--col svg { width: 15px; height: 15px; filter: drop-shadow(0 1px 1px rgba(140,21,98,.4)); }
.ticket--mini .ticket__body b { font-family: var(--disp); font-weight: 400; font-size: 19px; line-height: 1; letter-spacing: .01em; display: block; margin-bottom: 3px; }
.ticket--mini .ticket__body span { font-size: 11.5px; opacity: .95; }
.float-e { animation: float-e 8.5s ease-in-out .8s infinite; }
@keyframes float-e { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-6.5deg) translateY(-9px); } }
.ticket--pink { background-color: var(--pink); color: #fff; text-shadow: 0 1px 1px rgba(140,21,98,.4), 0 2px 6px rgba(140,21,98,.25); }
.ticket--pink .ticket__stub--col { color: rgba(255,255,255,.92); }
.ticket--pink .ticket__stub--col svg, .ticket--pink .ticket__bars { filter: drop-shadow(0 1px 1px rgba(140,21,98,.4)); }
.ticket--pink .ticket__bars { color: rgba(255,255,255,.92); }
.ticket--pink .ticket__body span { opacity: .95; }
.ticket__body { flex: 1; }
.ticket__body b { display: block; font-family: var(--disp); font-weight: 400; font-size: 25px; line-height: 1.02; letter-spacing: .01em; margin-bottom: 4px; }
.ticket__body span { font-size: 14px; opacity: .75; }
.prizes__draw {
  display: flex; flex-direction: column; gap: 8px;
  border: 2px dashed rgba(255,255,255,.4); border-radius: var(--r-md);
  padding: 20px 24px; color: rgba(255,255,255,.85); font-size: 14px;
}
.prizes__drawlabel {
  font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.prizes__timer { display: flex; align-items: flex-start; gap: 8px; }
.t-cell { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.t-cell b {
  font-family: var(--disp); font-weight: 400; font-size: 50px; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums; min-width: 62px; text-align: center;
}
.t-cell i {
  font-style: normal; font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.t-sep { font-family: var(--disp); font-size: 42px; line-height: 1.15; color: rgba(255,255,255,.5); }
.prizes__timer.is-live { font-family: var(--disp); font-size: 38px; color: var(--kiwi); animation: pulse 1.6s ease-in-out infinite; border-radius: 12px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 4vw, 72px); }
.faq__head { position: relative; }
.faq__bfly { width: 120px; margin-top: 36px; transform: rotate(-12deg); }
.faq__list { display: grid; gap: 10px; }
.faq__list details { border-radius: 16px; background: var(--lavender); overflow: hidden; }
.faq__list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer; padding: 19px 24px;
  font-weight: 600; font-size: 16px; transition: color .2s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--gamze); }
.faq__list summary i {
  position: relative; width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; background: var(--paper); transition: transform .3s, background .3s;
}
.faq__list summary i::before, .faq__list summary i::after {
  content: ""; position: absolute; background: var(--gamze); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__list summary i::before { width: 12px; height: 2.4px; }
.faq__list summary i::after { width: 2.4px; height: 12px; transition: transform .3s; }
.faq__list details[open] summary i { background: var(--kiwi); transform: rotate(180deg); }
.faq__list details[open] summary i::before, .faq__list details[open] summary i::after { background: var(--kiwi-dark); }
.faq__list details[open] summary i::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { padding: 0 56px 20px 24px; }
.faq__a p { font-size: 15px; color: var(--ink-soft); }

/* ---------- финал ---------- */
.card--final {
  position: relative; overflow: hidden; background: var(--ink); color: #fff;
}
.card--final h2 { color: #fff; font-size: clamp(52px, 6vw, 92px); }
.card--final h2 span { color: var(--kiwi); }
.final__swoosh {
  position: absolute; width: 560px; right: -130px; bottom: -120px;
  opacity: .3; transform: rotate(-14deg);
}
.final__spark { position: absolute; }
.final__spark--1 { width: 22px; right: 24%; top: 16%; opacity: .7; }
.final__spark--2 { width: 16px; right: 10%; top: 42%; }
.final__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.final__copy p { color: rgba(255,255,255,.75); font-size: 18px; margin: 22px 0 32px; max-width: 420px; }
.final__stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper); color: var(--ink);
  border-radius: 16px; padding: 12px 22px;
  box-shadow: inset 0 0 0 2px rgba(135,70,255,.14);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.store:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 2px rgba(135,70,255,.3), 0 14px 32px rgba(28,26,32,.16); }
.store svg { width: 26px; height: 26px; }
.store small { display: block; font-size: 10.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.store span { font-weight: 700; font-size: 16px; line-height: 1.15; }
.final__socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.final__socials a {
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 999px; padding: 9px 18px;
  transition: border-color .2s, color .2s, background .2s;
}
.final__socials a:hover { border-color: var(--kiwi); color: var(--kiwi); }
.final__qr { justify-self: center; margin-right: 48px; }
.qrcard {
  background: var(--paper); border-radius: 26px; padding: 26px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transform: rotate(2.5deg); box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.qrcard img { width: 216px; height: 216px; }
.qrcard span {
  font-family: var(--body-f); font-weight: 700; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft); text-align: center; line-height: 1.6;
}

/* ---------- страница активации ---------- */
.actv { padding-top: 60px; }
.actv__back { margin-left: auto; gap: 8px; }
.actv__back-ico { width: 16px; height: 16px; }
.actv__sub { color: var(--ink-soft); font-size: 18px; max-width: 520px; margin-top: 16px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { background: var(--lavender); border-radius: var(--r-md); padding: 16px 16px 22px; }
.step__shot { border-radius: 12px; overflow: hidden; margin-bottom: 18px; box-shadow: 0 8px 24px rgba(135,70,255,.14); }
.step__shot img { width: 100%; height: auto; display: block; }
.step__num {
  position: relative; display: inline-block; z-index: 0;
  font-family: var(--disp); font-size: 30px; color: var(--gamze); line-height: 1; margin-bottom: 10px;
}
.step__num::after {
  content: ""; position: absolute; left: -7px; right: -7px; bottom: 2px; height: 12px;
  background: var(--kiwi-soft); z-index: -1; border-radius: 6px; transform: rotate(-2deg);
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }
.step p a { color: var(--gamze); font-weight: 600; border-bottom: 2px solid rgba(135,70,255,.25); }
.fast {
  display: flex; align-items: center; gap: 32px;
  background: var(--kiwi-soft); border-radius: var(--r-md); padding: 26px 32px; margin-top: 22px;
}
.fast__img { width: 300px; max-width: 40%; border-radius: 12px; box-shadow: 0 10px 28px rgba(7,59,0,.18); }
.fast h3 { margin: 12px 0 8px; }
.fast p { color: #2A5212; font-size: 15px; }
.done {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--ink); color: #fff; border-radius: var(--r-md); padding: 32px 36px; margin-top: 22px;
}
.done h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.done p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 520px; }
.done__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--dark { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 2px var(--kiwi); color: var(--kiwi); }
.actv__support { margin-top: 26px; font-size: 14px; color: var(--ink-soft); }
.actv__support a { color: var(--gamze); font-weight: 600; }

/* ---------- футер ---------- */
.ftr { padding: 38px 0 46px; }
.ftr__top {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.ftr__nav { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 4px; }
.ftr__nav a { font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.ftr__nav a:hover { color: var(--gamze); }
.ftr__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 14px 24px; flex-wrap: wrap;
  border-top: 1px solid var(--lav-deep); padding-top: 20px;
}
.ftr__legal { display: flex; gap: 10px 28px; flex-wrap: wrap; }
.ftr__legal a { font-size: 13px; color: var(--ink-soft); transition: color .2s; }
.ftr__legal a:hover { color: var(--gamze); }
.ftr__copy { font-size: 13px; color: var(--ink-soft); }

/* ---------- sticky-CTA (мобильный) ---------- */
.stickycta {
  display: none; position: fixed; z-index: 90;
  left: 50%; bottom: calc(14px + env(safe-area-inset-bottom));
  width: min(calc(100vw - 32px), 420px);
  transform: translate(-50%, calc(100% + 40px));
  transition: transform .3s ease;
}
.stickycta.is-on { transform: translate(-50%, 0); }
/* hover/active базовой кнопки не должны сбивать центровку */
.stickycta:hover, .stickycta.is-on:hover { transform: translate(-50%, 0); }
.stickycta:active { transform: translate(-50%, 0) scale(.98); }
@media (max-width: 960px) {
  .stickycta { display: inline-flex; }
}

/* ---------- согласие на cookie ---------- */
.cookies {
  position: fixed; z-index: 120;
  left: 16px; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom));
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  background: var(--paper); border-radius: 20px; padding: 16px 20px;
  box-shadow: 0 4px 10px rgba(28,26,32,.08), 0 24px 64px rgba(28,26,32,.22);
}
.cookies[hidden] { display: none; }
.cookies p { font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.cookies a { color: var(--gamze); font-weight: 600; }
.cookies__btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookies .btn--sm { padding: 11px 18px; font-size: 13px; white-space: nowrap; }
@media (max-width: 640px) {
  /* на телефоне — bottom-sheet вплотную к низу, кнопки в safe-area */
  .cookies {
    flex-direction: column; align-items: stretch; text-align: left; gap: 12px;
    left: 0; right: 0; bottom: 0; max-width: none;
    border-radius: 20px 20px 0 0;
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
  }
  .cookies__btns .btn { flex: 1; }
}

/* ---------- анимации появления ---------- */
.ld { opacity: 0; transform: translateY(26px); animation: rise .8s cubic-bezier(.22,1,.36,1) var(--d, 0s) forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22,1,.36,1) var(--d, 0s), transform .8s cubic-bezier(.22,1,.36,1) var(--d, 0s); }
.rv.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ld, .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- адаптив ---------- */
@media (max-width: 1100px) {
  .route { grid-template-columns: repeat(3, 1fr); }
  .acts { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .prizes__row { grid-template-columns: 1fr 1fr; }
  .prizes__draw { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 20px; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero__art { height: 480px; max-width: 560px; margin: 24px auto 0; }
  .hdr__nav, .hdr__cta { display: none; }
  .hdr__burger {
    display: grid; gap: 6px; margin-left: auto; padding: 14px 10px;
    background: none; border: none; cursor: pointer;
  }
  .hdr__burger span { width: 24px; height: 2.6px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
  .hdr.is-open .hdr__burger span:first-child { transform: translateY(4.3px) rotate(45deg); }
  .hdr.is-open .hdr__burger span:last-child { transform: translateY(-4.3px) rotate(-45deg); }
  .hdr__sheet {
    display: grid; gap: 4px; position: absolute; left: 18px; right: 18px; top: calc(100% + 10px);
    background: var(--paper); border-radius: 24px; padding: 18px;
    box-shadow: var(--shadow-pop);
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .25s, transform .25s;
  }
  .hdr.is-open .hdr__sheet { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hdr__sheet a { padding: 12px 16px; font-weight: 600; border-radius: 12px; }
  .hdr__sheet a:not(.btn):hover { background: var(--lavender); }
  .hdr__sheet .btn { margin-top: 8px; }
  .sched { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__bfly { display: none; }
  .final__grid { grid-template-columns: 1fr; }
  .final__qr { justify-self: center; margin-right: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(56px, 15.5vw, 84px); }
  .tag { font-size: 9.5px; padding: 8px 14px; }
  .route { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step__shot { max-width: 320px; }
  .fast { flex-direction: column; align-items: flex-start; }
  .fast__img { max-width: 100%; }
  /* кнопка «Вернуться» — круглая иконка, как бургер на главной */
  .actv__back { padding: 12px; border-radius: 50%; }
  .actv__back-txt { display: none; }
  .acts { grid-template-columns: 1fr; }
  .prizes__row { grid-template-columns: 1fr; }
  .prizes__draw { flex-direction: column; align-items: flex-start; }
  /* мобильный коллаж: аккуратная центрированная стопка стикеров */
  .hero__art { height: auto; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 10px; }
  .art__swoosh { width: 320px; left: 50%; top: 110px; transform: translateX(-50%) rotate(-16deg); }
  .art__splat { width: 92px; right: 2%; top: 16px; bottom: auto; }
  .polaroid { position: static; width: 230px; }
  .ticket--hero { position: static; padding: 14px 18px; gap: 12px; }
  .ticket--hero .ticket__num { font-size: 40px; }
  .ticket--hero .ticket__txt { font-size: 12px; white-space: nowrap; }
  .ticket__stub { font-size: 8px; letter-spacing: .12em; padding-left: 10px; }
  .ticket__wm { right: 44px; bottom: -10px; width: 70px; }
  .chipcard { position: static; padding: 12px 18px; }
  .chipcard__coin { width: 42px; height: 42px; }
  .livecard { position: static; }
  .ticket--mini { position: static; }
  .art__splat { right: 4%; bottom: 16%; }
  .art__bfly { width: 46px; left: 3%; top: 6px; }
  .art__spark--1 { left: 3%; top: 46%; }
  .art__spark--2 { right: 5%; top: 34%; }
  .art__spark--3 { right: 9%; bottom: 26%; }
  .art__squig { position: static; transform: rotate(-8deg); margin-top: 2px; }
  .strip__seq { font-size: 22px; gap: 18px; padding-right: 18px; }
  .strip__seq svg { width: 28px; height: 18px; }
  .tl__row { grid-template-columns: 58px 1fr auto; padding: 12px 14px; gap: 12px; }
  .tl__time { font-size: 21px; }
  .card { border-radius: 26px; }
  .ftr__legal { flex-direction: column; gap: 12px; }
}
