/* ===== FONT ===== */
@font-face{
  font-family: "Tiny5";
  src: url("../assets/Tiny5-Regular.ttf") format("truetype");
  font-display: swap;
}

:root{
  --bg0: #07060a;
  --bg1: #0d0a12;
  --ink: #ffe7cf;
  --muted: rgba(255,231,207,.72);

  --o1: #ff6a00;   /* основной оранжевый */
  --o2: #ffb300;   /* янтарный */
  --o3: #ff3d00;   /* красно-оранж */
  --p1: #a855f7;   /* фиолетовый для контраста */
  --c1: #2dd4bf;   /* бирюза как акцент */
  --g: linear-gradient(135deg, rgba(255,106,0,.95), rgba(255,179,0,.9), rgba(168,85,247,.55));
  --card: rgba(13,10,18,.55);
  --stroke: rgba(255,200,160,.18);

  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;

  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: radial-gradient(1200px 700px at 75% 15%, rgba(255,106,0,.28), transparent 55%),
              radial-gradient(900px 600px at 15% 10%, rgba(168,85,247,.18), transparent 50%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--ink);
  font-family: "Tiny5", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
  overflow-x:hidden;
}

/* ===== BACKGROUND LAYER ===== */
.bg-layer{
  position: fixed;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  filter: saturate(1.25) contrast(1.05) brightness(.95);
  transform: scale(1.05);
  opacity:.52;
}
.noise{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .18;
  animation: noiseShift 8s steps(2) infinite;
}
@keyframes noiseShift{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(2%, -1%, 0); }
  100%{ transform: translate3d(0,0,0); }
}
.vignette{
  position: fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background: radial-gradient(1200px 800px at 50% 35%, transparent 40%, rgba(0,0,0,.45) 100%);
}

/* ===== TOPBAR ===== */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(5,4,8,.75), rgba(5,4,8,.35));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,200,160,.12);
}

.brand{
  display:flex;
  gap: 10px;
  align-items:center;
  min-width: 220px;
}
.brand__mark{
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--g);
  box-shadow: 0 0 0 1px rgba(255,180,120,.25), 0 16px 40px rgba(255,106,0,.18);
  position: relative;
  overflow:hidden;
}
.brand__mark::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(from 180deg, rgba(255,255,255,.0), rgba(255,255,255,.35), rgba(255,255,255,0));
  animation: spin 3.6s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.brand__title{
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 6px 24px rgba(255,106,0,.22);
}
.brand__tag{
  font-size: 14px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  justify-content:center;
}
.nav__link{
  position: relative;
  text-decoration:none;
  color: rgba(255,231,207,.86);
  padding: 8px 10px;
  border-radius: 12px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.nav__link::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,179,0,.85), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
  opacity: .95;
}
.nav__link:hover{
  background: rgba(255,106,0,.10);
  transform: translateY(-1px);
  color: #fff2e7;
}
.nav__link:hover::after{ transform: scaleX(1); }

/* ===== BUTTONS ===== */
.btn{
  appearance:none;
  border: none;
  cursor:pointer;
  text-decoration:none;
  color: var(--ink);
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 16px;
  position: relative;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn__icon{ opacity:.95; }
.btn__glow{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at 30% 30%, rgba(255,179,0,.55), transparent 55%),
              radial-gradient(circle at 70% 55%, rgba(255,61,0,.35), transparent 55%),
              radial-gradient(circle at 45% 70%, rgba(168,85,247,.25), transparent 50%);
  transform: translate3d(-12%, 0, 0);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .5s var(--ease);
  pointer-events:none;
}

.btn:hover{
  transform: translateY(-2px);
}
.btn:hover .btn__glow{
  opacity: 1;
  transform: translate3d(0,0,0);
}

.btn--primary{
  background: linear-gradient(135deg, rgba(255,106,0,.85), rgba(255,179,0,.72));
  box-shadow: 0 14px 40px rgba(255,106,0,.18), 0 0 0 1px rgba(255,200,160,.18);
}
.btn--primary:hover{
  box-shadow: 0 18px 60px rgba(255,106,0,.25), 0 0 0 1px rgba(255,200,160,.25);
}
.btn--secondary{
  background: rgba(13,10,18,.55);
  box-shadow: 0 0 0 1px rgba(255,200,160,.15), 0 14px 50px rgba(0,0,0,.35);
}
.btn--ghost{
  background: rgba(13,10,18,.35);
  box-shadow: 0 0 0 1px rgba(255,200,160,.12);
}
.btn--ghost:hover{ background: rgba(255,106,0,.10); }

.btn--download{
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,61,0,.85), rgba(255,179,0,.8));
  box-shadow: 0 20px 70px rgba(255,106,0,.26), 0 0 0 1px rgba(255,220,180,.20);
}
.btn--download .btn__text{ font-size: 20px; }
.btn--download .btn__hint{
  font-size: 12px;
  opacity: .85;
  margin-left: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

/* ===== LAYOUT ===== */
main{ width:min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section{ padding: 70px 0; }
.section--alt{
  padding: 70px 0;
  position: relative;
}
.section--alt::before{
  content:"";
  position:absolute;
  inset: 0 -120vw;
  background: linear-gradient(180deg, rgba(255,106,0,.06), rgba(168,85,247,.05));
  border-top: 1px solid rgba(255,200,160,.10);
  border-bottom: 1px solid rgba(255,200,160,.10);
  z-index: -1;
}
.section__head{ margin-bottom: 22px; }
.h2{
  font-size: 38px;
  margin:0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.h2--big{ font-size: 44px; }
.sub{
  margin:0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 72ch;
}
.sub--big{ font-size: 20px; }

/* ===== HERO ===== */
.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: 42px 0 18px;
  min-height: 78vh;
  align-items: start;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(13,10,18,.50);
  box-shadow: 0 0 0 1px rgba(255,200,160,.14);
  margin-bottom: 14px;
}
.badge__dot{
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(255,179,0,.95);
  box-shadow: 0 0 20px rgba(255,179,0,.55);
  animation: pulse 1.6s var(--ease) infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity: .9; }
  50%{ transform: scale(1.2); opacity: 1; }
}

.headline{
  margin: 0 0 10px 0;
  font-size: 56px;
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.accent{
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.lead{
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,231,207,.82);
  max-width: 72ch;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
  margin: 18px 0 18px;
}

.stats{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat{
  flex: 1;
  min-width: 140px;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(13,10,18,.45);
  box-shadow: 0 0 0 1px rgba(255,200,160,.12), var(--shadow);
  position: relative;
  overflow:hidden;
}
.stat::before{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at 25% 30%, rgba(255,179,0,.22), transparent 60%),
              radial-gradient(circle at 75% 65%, rgba(168,85,247,.12), transparent 55%);
  filter: blur(18px);
  opacity: .9;
}
.stat__num{ position:relative; font-size: 44px; }
.stat__label{ position:relative; color: var(--muted); font-size: 14px; text-transform: uppercase; }

/* ===== HERO PANEL ===== */
.hero__panel{ position: relative; }

.panel-card{
  border-radius: 22px;
  background: rgba(13,10,18,.52);
  box-shadow: 0 0 0 1px rgba(255,200,160,.14), 0 30px 90px rgba(0,0,0,.55);
  overflow:hidden;
  transform-style: preserve-3d;
}
.panel-card__top,
.panel-card__bottom{
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.panel-title{
  font-size: 16px;
  opacity: .92;
  text-transform: uppercase;
}
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,106,0,.12);
  box-shadow: inset 0 0 0 1px rgba(255,200,160,.14);
  color: rgba(255,231,207,.86);
}

.scene-preview{
  height: 290px;
  position: relative;
  background: radial-gradient(700px 380px at 30% 20%, rgba(255,179,0,.25), transparent 55%),
              radial-gradient(600px 320px at 70% 70%, rgba(168,85,247,.18), transparent 55%),
              linear-gradient(180deg, rgba(10,8,14,.2), rgba(10,8,14,.65));
  border-top: 1px solid rgba(255,200,160,.10);
  border-bottom: 1px solid rgba(255,200,160,.10);
  overflow:hidden;
}
.scene-preview__scan{
  position:absolute;
  inset:-40% 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 1px,
    transparent 3px,
    transparent 6px
  );
  opacity: .35;
  transform: translateY(-30%);
  animation: scan 7s linear infinite;
}
@keyframes scan{
  0%{ transform: translateY(-25%); }
  100%{ transform: translateY(25%); }
}
.scene-preview__shine{
  position:absolute;
  inset:-50%;
  background: conic-gradient(from 180deg, rgba(255,255,255,0), rgba(255,255,255,.22), rgba(255,255,255,0));
  opacity: .15;
  animation: spin 10s linear infinite;
}
.scene-preview__hint{
  position:absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  color: rgba(255,231,207,.85);
}

.micro{ display:flex; flex-direction:column; gap: 3px; }
.micro__label{ font-size: 12px; color: var(--muted); text-transform: uppercase; }
.micro__value{ font-size: 16px; }

/* floating coins */
.floating-coins{
  position:absolute;
  inset: 0;
  pointer-events:none;
}
.coin{
  position:absolute;
  width: 18px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,179,0,1), rgba(255,106,0,1));
  box-shadow: 0 14px 40px rgba(255,106,0,.22), inset 0 0 0 1px rgba(255,255,255,.22);
  filter: blur(.1px);
  opacity: .9;
  transform-origin:center;
  animation: coinFloat 3.8s var(--ease) infinite;
}
.coin::after{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 10px;
  background: rgba(0,0,0,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
@keyframes coinFloat{
  0%,100%{ transform: translateY(0) rotateY(0deg) scale(1); }
  50%{ transform: translateY(-14px) rotateY(180deg) scale(1.05); }
}
.c1{ top: 20px; left: 10px; animation-delay: .0s; }
.c2{ top: 90px; right: 30px; animation-delay: .3s; }
.c3{ bottom: 110px; left: 30px; animation-delay: .6s; }
.c4{ bottom: 60px; right: 90px; animation-delay: .15s; }
.c5{ top: 170px; left: 55%; animation-delay: .45s; }

/* ===== CARDS / GRID ===== */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(13,10,18,.50);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 0 0 1px rgba(255,200,160,.12), 0 20px 70px rgba(0,0,0,.45);
  position: relative;
  overflow:hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 25% 30%, rgba(255,179,0,.18), transparent 55%),
              radial-gradient(circle at 75% 65%, rgba(168,85,247,.12), transparent 55%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,200,160,.18), 0 30px 90px rgba(0,0,0,.55);
}
.card:hover::before{ opacity: 1; }
.card h3{
  margin:0 0 10px;
  font-size: 26px;
  text-transform: uppercase;
}
.card p{
  margin:0;
  color: rgba(255,231,207,.82);
  line-height: 1.55;
  font-size: 16px;
}
.card__meta{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== FEATURES ===== */
.features{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(13,10,18,.45);
  box-shadow: 0 0 0 1px rgba(255,200,160,.12), 0 20px 70px rgba(0,0,0,.40);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,200,160,.18), 0 30px 90px rgba(0,0,0,.55);
}
.feature__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,106,0,.12);
  box-shadow: inset 0 0 0 1px rgba(255,200,160,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
}
.feature__title{
  font-size: 22px;
  text-transform: uppercase;
}
.feature__text{
  color: var(--muted);
  line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.shot{
  height: 160px;
  border-radius: 16px;
  background: rgba(13,10,18,.55);
  box-shadow: 0 0 0 1px rgba(255,200,160,.12), 0 18px 60px rgba(0,0,0,.45);
  border: none;
  cursor: pointer;
  position: relative;
  overflow:hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.shot::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(255,179,0,.22), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(168,85,247,.14), transparent 55%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.shot:hover{
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(255,200,160,.18), 0 28px 90px rgba(0,0,0,.55);
  filter: saturate(1.2);
}
.shot:hover::before{ opacity: 1; }

/* ===== TIMELINE ===== */
.timeline{
  display:grid;
  gap: 12px;
}
.step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(13,10,18,.45);
  box-shadow: 0 0 0 1px rgba(255,200,160,.12), 0 18px 60px rgba(0,0,0,.40);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,200,160,.18), 0 28px 90px rgba(0,0,0,.55);
}
.step__dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-top: 7px;
  background: rgba(255,179,0,.95);
  box-shadow: 0 0 20px rgba(255,179,0,.45);
}
.step__title{
  font-size: 22px;
  text-transform: uppercase;
}
.step__text{
  color: var(--muted);
  line-height: 1.5;
}

/* ===== DOWNLOAD ===== */
.download{
  padding: 70px 0 80px;
}
.download__inner{
  border-radius: 26px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,106,0,.10), rgba(13,10,18,.55));
  box-shadow: 0 0 0 1px rgba(255,200,160,.14), 0 40px 120px rgba(0,0,0,.6);
  position: relative;
  overflow:hidden;
}
.download__inner::before{
  content:"";
  position:absolute;
  inset:-30%;
  background: conic-gradient(from 180deg, rgba(255,179,0,.0), rgba(255,179,0,.18), rgba(168,85,247,.10), rgba(255,179,0,0));
  filter: blur(30px);
  opacity: .8;
  animation: spin 14s linear infinite;
}
.download__inner > *{ position:relative; }

.download__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.download__row{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.chips{
  margin-top: 14px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip{
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13,10,18,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  color: rgba(255,231,207,.86);
}

.specs, .mini-card{
  border-radius: 18px;
  padding: 16px;
  background: rgba(13,10,18,.48);
  box-shadow: 0 0 0 1px rgba(255,200,160,.12), 0 18px 60px rgba(0,0,0,.40);
}
.specs__title{
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.specs__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 8px;
}
.specs__list li{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.specs__list span{ color: var(--muted); text-transform: uppercase; font-size: 12px; }
.specs__note{ margin-top: 10px; color: var(--muted); font-size: 12px; }

.mini-card__title{
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mini-card__text{ color: var(--muted); line-height: 1.5; }

/* ===== FOOTER ===== */
.footer{
  padding: 28px 0 46px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  color: rgba(255,231,207,.75);
}
.footer__links{ display:flex; gap: 12px; flex-wrap: wrap; }
.footer__link{
  color: rgba(255,231,207,.78);
  text-decoration:none;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer__link:hover{
  background: rgba(255,106,0,.10);
  transform: translateY(-1px);
}

/* ===== MODAL ===== */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 100;
}
.modal.is-open{ display:flex; }
.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
}
.modal__content{
  position: relative;
  width:min(980px, calc(100% - 28px));
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 40px 140px rgba(0,0,0,.8);
  background: rgba(13,10,18,.75);
  border: 1px solid rgba(255,200,160,.18);
}
.modal__img{
  width:100%;
  height:auto;
  display:block;
}
.modal__x{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  color: #fff2e7;
  border: 1px solid rgba(255,255,255,.12);
  cursor:pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.modal__x:hover{
  transform: translateY(-2px);
  background: rgba(255,106,0,.16);
}

/* ===== REVEAL ANIMATION ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .download__inner{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .headline{ font-size: 46px; }
}
@media (max-width: 520px){
  .headline{ font-size: 40px; }
  .h2{ font-size: 32px; }
  .topbar{ padding: 12px 12px; }
}

/* ===== NEW YEAR ADDON ===== */
#snow{
  position: fixed;
  inset: 0;
  z-index: 5;            /* поверх фона, но ниже UI */
  pointer-events:none;
  opacity: .85;
  mix-blend-mode: screen;
}

.garland{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 60;
  pointer-events:none;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.45));
}
.garland svg{ width:100%; height:100%; display:block; }
.garland__wire{
  fill:none;
  stroke: rgba(255,231,207,.55);
  stroke-width: 4;
  opacity: .55;
}
.bulb{
  opacity: .95;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.25));
  animation: blink 1.8s var(--ease) infinite;
}
.b1{ fill:#ffb300; animation-delay: .0s; }
.b2{ fill:#60a5fa; animation-delay: .2s; }
.b3{ fill:#34d399; animation-delay: .4s; }
.b4{ fill:#fb7185; animation-delay: .6s; }
.b5{ fill:#ff6a00; animation-delay: .8s; }
.b6{ fill:#a855f7; animation-delay: 1.0s; }
.b7{ fill:#ffb300; animation-delay: 1.2s; }
.b8{ fill:#60a5fa; animation-delay: 1.4s; }
.b9{ fill:#34d399; animation-delay: 1.6s; }
.b10{ fill:#fb7185; animation-delay: 1.8s; }
.b11{ fill:#ff6a00; animation-delay: 2.0s; }
.b12{ fill:#a855f7; animation-delay: 2.2s; }

@keyframes blink{
  0%,100%{ transform: translateY(0) scale(1); opacity:.85; }
  50%{ transform: translateY(-2px) scale(1.08); opacity:1; }
}

.badge--winter{
  background: rgba(13,10,18,.52);
  box-shadow: 0 0 0 1px rgba(160,210,255,.18);
}
.pill--winter{
  background: rgba(96,165,250,.14);
  box-shadow: inset 0 0 0 1px rgba(160,210,255,.20);
}

.wish{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(13,10,18,.46);
  box-shadow: 0 0 0 1px rgba(160,210,255,.14), 0 18px 60px rgba(0,0,0,.40);
}
.wish__title{ font-size: 22px; text-transform: uppercase; }
.wish__text{ color: rgba(255,231,207,.78); line-height: 1.5; }

.btn--sparkle::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(from 180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.20),
    rgba(96,165,250,.18),
    rgba(255,179,0,.18),
    rgba(255,255,255,0)
  );
  filter: blur(10px);
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity .25s var(--ease);
  animation: spin 5.5s linear infinite;
  pointer-events:none;
}
.btn--sparkle:hover::after{ opacity: .9; }
