:root{
  --bg0:#070A12;
  --text:#EDEBFF;
  --muted:rgba(237,235,255,.72);
  --card:rgba(16,18,28,.62);
  --card2:rgba(12,14,22,.55);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --shadow2: 0 16px 40px rgba(0,0,0,.45);
  --r: 18px;

  --pink:#FF3BD4;
  --violet:#8C4DFF;
  --cyan:#34D9FF;
  --teal:#2AF2C1;
  --green:#34C759;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 900px at 15% 20%, rgba(140,77,255,.35), transparent 60%),
              radial-gradient(1200px 900px at 75% 30%, rgba(52,217,255,.25), transparent 60%),
              radial-gradient(900px 700px at 85% 85%, rgba(42,242,193,.18), transparent 60%),
              linear-gradient(180deg, #050611 0%, #050611 45%, #04050D 100%);
  font: 16px/1.45 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  overflow-x:hidden;
}

#stars{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-3;
  pointer-events:none;
  opacity:.9;
}
.bgGlow{ position:fixed; inset:0; z-index:-2; pointer-events:none; }
.bgGlow .g{
  position:absolute;
  filter: blur(55px);
  opacity:.6;
  transform: translateZ(0);
}
.bgGlow .g1{ width:780px; height:520px; left:-180px; top:-120px; background: radial-gradient(circle at 30% 30%, rgba(255,59,212,.55), transparent 60%); }
.bgGlow .g2{ width:720px; height:520px; right:-240px; top:90px; background: radial-gradient(circle at 50% 40%, rgba(52,217,255,.42), transparent 60%); }
.bgGlow .g3{ width:720px; height:520px; right:-220px; bottom:-220px; background: radial-gradient(circle at 45% 50%, rgba(42,242,193,.34), transparent 60%); }

.wrap{ width:min(1160px, 92vw); margin:0 auto; padding: 54px 0 56px; }

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7,10,18,.72) 0%, rgba(7,10,18,.45) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 4vw;
}
.topbar__inner{
  width: min(1160px, 92vw);
  margin: 0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;

  flex-wrap: wrap;
  row-gap: 10px;
}


.brand{ display:flex; gap:10px; align-items:center; text-decoration:none; color:var(--text); font-weight:700; letter-spacing:.2px; }
.brandTag{ font-weight:600; font-size:12px; opacity:.7; padding:4px 8px; border:1px solid rgba(255,255,255,.12); border-radius:999px; background:rgba(0,0,0,.25); 
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand img{ filter: drop-shadow(0 10px 18px rgba(0,0,0,.55)); }

.nav{ display:flex; gap:22px; align-items:center; 
  flex-wrap: wrap;
}

.nav--desktop{ display:flex; }
.nav a{
  color: rgba(237,235,255,.80);
  text-decoration:none;
  font-weight:600;
  font-size: 14px;
  letter-spacing:.2px;
}
.nav a:hover{ color: var(--text); }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(16,18,28,.45);
  color: var(--text);
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.btn--sm{ padding: 10px 14px; font-size: 14px; }
.btn--primary{
  border: none;
  background: linear-gradient(90deg, rgba(52,217,255,.95) 0%, rgba(255,59,212,.95) 55%, rgba(140,77,255,.95) 100%);
  color:#070A12;
  text-shadow: none;
}
.btn--primary:hover{ filter: brightness(1.05); }

.btn.is-disabled, .btn[aria-disabled="true"]{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  filter: saturate(.75);
}
.btn--ghost{
  background: rgba(16,18,28,.35);
}
.btn--ghost:hover{ border-color: rgba(255,255,255,.22); }

.burger{
  display:none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 10px;
  cursor:pointer;
}
.burger span{ display:block; width:18px; height:2px; background: rgba(237,235,255,.85); margin:4px 0; border-radius: 2px; }
.langWrap{ display:flex; align-items:center; }
.langWrap--mobile{ justify-content:flex-end; margin-bottom: 6px; }
.langSelect{
  appearance:none;
  -webkit-appearance:none;
  background: rgba(10,12,18,.45);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(237,235,255,.86);
  border-radius: 12px;
  padding: 9px 32px 9px 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing:.2px;
  outline: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.langSelect:hover{ border-color: rgba(255,255,255,.22); }
.langSelect:focus{ box-shadow: 0 0 0 3px rgba(52,217,255,.18); border-color: rgba(52,217,255,.35); }
.langWrap{ position:relative; }
.langWrap:after{
  content:"▾";
  position:absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: rgba(237,235,255,.60);
  pointer-events:none;
}


.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(14px, 2.4vw, 28px);
  align-items:center;
  padding: 10px 0 6px;
}
.hero__visual{ display:flex; justify-content:center; align-items:flex-start; padding-top: 8px; }


.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,18,28,.46);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(237,235,255,.82);
  font-size: 13px;
  font-weight:700;
}
h1{
  margin: 10px 0 10px;
  font-size: clamp(40px, 5.1vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0 0 18px;
  color: rgba(237,235,255,.80);
  max-width: 60ch;
  font-size: 16.5px;
}
.ctaRow{ display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 14px; }

.pillRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.pill{
  display:flex; gap:10px; align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10,12,18,.45);
  border: 1px solid rgba(255,255,255,.10);
}
.pill b{ font-size:14px; }
.pill span{ color: rgba(237,235,255,.72); font-weight:600; font-size:14px; }
.dot{ width:10px; height:10px; border-radius:999px; box-shadow: 0 0 18px rgba(255,255,255,.20); }
.dot-pink{ background: var(--pink); }
.dot-cyan{ background: var(--cyan); }
.dot-green{ background: var(--green); }

.hero__visual{ position:relative; min-height: auto; }
.phoneStack{ position:relative; width: clamp(280px, 40vw, 440px); max-width: 100%; margin-left:auto; margin-right:0; }
.phone{ width:100%; height:auto; display:block; border-radius: 44px; filter: drop-shadow(0 26px 80px rgba(0,0,0,.65)); border: 1px solid rgba(255,255,255,.06); }
.phone--back{ position:absolute; left: 18px; top: 28px; width: 86%; opacity: .42; filter: saturate(1.05); transform: rotate(-2deg); }
.phone--mid{ position:absolute; inset: 22px auto auto 8px; width: 88%; opacity: .35; transform: rotate(-3deg); }
.phone--front{ position:relative; width: 94%; opacity: 1; transform: rotate(1deg); margin-left:auto; margin-right:auto; }
.neonRing{
  position:absolute; inset:-14% -18% -18% -18%;
  background: radial-gradient(circle at 50% 40%, rgba(255,59,212,.18), transparent 55%),
              radial-gradient(circle at 62% 55%, rgba(52,217,255,.14), transparent 55%),
              radial-gradient(circle at 45% 70%, rgba(42,242,193,.10), transparent 55%);
  filter: blur(18px);
  z-index:-1;
  animation: drift 8s ease-in-out infinite;
}
@keyframes drift{
  0%,100%{ transform: translate3d(0,0,0) scale(1); opacity:.75; }
  50%{ transform: translate3d(8px,-10px,0) scale(1.03); opacity:.95; }
}

.section{ padding: 56px 0; }
.sectionHead{ margin-bottom: 22px; }
.sectionHead h2{
  margin:0 0 6px;
  font-size: 34px;
  letter-spacing: -0.35px;
}
.sub{ margin:0; color: rgba(237,235,255,.74); max-width: 80ch; }

.cardGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 18px 18px 16px;
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(16,18,28,.62), rgba(12,14,22,.45));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(600px 180px at 10% 0%, rgba(255,59,212,.18), transparent 60%),
              radial-gradient(600px 220px at 90% 0%, rgba(52,217,255,.12), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.card > *{ position:relative; }
.card__icon{
  width: 40px; height: 40px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
  box-shadow: 0 18px 30px rgba(0,0,0,.25);
}
.card h3{ margin: 0 0 8px; font-size: 16.5px; }
.card p{ margin:0; color: rgba(237,235,255,.74); }

.foodGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.foodCard{
  border-radius: calc(var(--r) + 6px);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,18,28,.60), rgba(10,12,18,.44));
  box-shadow: var(--shadow);
}
.foodMedia{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.02);
}
.foodMedia img{
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
  transition: transform .35s ease;
}
.foodCard:hover .foodMedia img{ transform: scale(1.06); }
.foodMedia:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.54));
}
.foodTag{
  position:absolute; left:14px; bottom:12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10,12,18,.58);
  border: 1px solid rgba(255,255,255,.14);
  font-weight:800;
  z-index:1;
}
.foodBody{ padding: 14px 14px 16px; }
.macroRow{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.macro{
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: rgba(12,14,22,.55);
  border: 1px solid rgba(255,255,255,.10);
}
.macro .k{ display:block; color: rgba(237,235,255,.66); font-weight:800; font-size: 12px; }
.macro .v{ display:block; font-weight:900; font-size: 16px; margin-top: 2px; }
.hint{ margin: 10px 2px 0; color: rgba(237,235,255,.70); font-size: 13.5px; }

.demoGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.demoCard{
  padding: 18px 18px 16px;
  border-radius: calc(var(--r) + 6px);
  background: linear-gradient(180deg, rgba(16,18,28,.62), rgba(12,14,22,.44));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,14,22,.55);
  font-weight:900;
  font-size: 13px;
  margin-bottom: 10px;
}
.badge .n { width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; border-radius:8px; background:rgba(255,255,255,.12); font-size:12px; }
.badge .t{ margin-left:6px; opacity:.95; white-space:nowrap; }
.b1 span{ background: linear-gradient(90deg, var(--cyan), var(--pink)); }
.b2 span{ background: linear-gradient(90deg, var(--teal), var(--violet)); }
.demoCard h3{ margin: 6px 0 8px; font-size: 18px; }
.demoCard p{ margin:0 0 12px; color: rgba(237,235,255,.74); }
.demoTable{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(10,12,18,.50);
  border: 1px solid rgba(255,255,255,.10);
}
.demoTable div{ display:flex; justify-content:space-between; gap:12px; align-items:baseline; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 8px; }
.demoTable div:nth-last-child(-n+2){ border-bottom:none; padding-bottom:0; }
.demoTable span{ color: rgba(237,235,255,.68); font-weight:700; }
.demoTable b{ font-weight:900; }
.miniNote{ margin-top: 10px; color: rgba(237,235,255,.64); font-size: 13px; }

.miniGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mini{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(10,12,18,.45);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(237,235,255,.78);
  font-weight:700;
  font-size: 13.5px;
}

.screens{
  display:flex;
  gap: 14px;
  overflow:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.shot{
  min-width: 240px;
  max-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin:0;
  padding: 12px;
  border-radius: calc(var(--r) + 8px);
  background: rgba(10,12,18,.48);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.shot img{ width:100%; height:auto; border-radius: 34px; display:block; }
.shot figcaption{ margin-top: 10px; color: rgba(237,235,255,.70); font-size: 13px; }

.howGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.how{
  padding: 18px 18px 16px;
  border-radius: calc(var(--r) + 6px);
  background: linear-gradient(180deg, rgba(16,18,28,.60), rgba(12,14,22,.42));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.how .n{
  width: 34px; height: 34px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
}
.how h3{ margin:0 0 8px; }
.how p{ margin:0; color: rgba(237,235,255,.74); }

.faq details{
  border-radius: 16px;
  background: rgba(10,12,18,.46);
  border: 1px solid rgba(255,255,255,.10);
  margin: 10px 0;
  padding: 12px 14px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  color: rgba(237,235,255,.92);
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq p{ margin: 10px 0 0; color: rgba(237,235,255,.74); }

.download{ padding-bottom: 30px; }
.downloadCard{
  padding: 22px;
  border-radius: calc(var(--r) + 10px);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(52,217,255,.10), rgba(255,59,212,.12), rgba(140,77,255,.10));
  box-shadow: var(--shadow);
}
.downloadCard h2{ margin:0 0 6px; }
.downloadCard p{ margin:0 0 12px; color: rgba(237,235,255,.75); }
.small{ color: rgba(237,235,255,.62); font-size: 13px; margin-top: 10px; }

.footer{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 0 6px;
  color: rgba(237,235,255,.62);
  border-top: 1px solid rgba(255,255,255,.06);
  gap: 12px;
  flex-wrap: wrap;
}
.footerNote{
  flex: 1 1 420px;
  min-width: 260px;
  font-size: 12px;
  color: rgba(237,235,255,.52);
}
.footer a{ color: rgba(237,235,255,.72); text-decoration:none; }
.footer a:hover{ color: var(--text); }
.footerLinks{ display:flex; gap: 14px; }

@media (max-width: 1180px){
  .nav--desktop{ gap: 12px; }
  .nav--desktop a{ font-size: 13px; }
  .brandTag{ display:none; }
  .topbar__inner{ gap: 10px; }
}
@media (max-width: 1040px){
  .nav--desktop{ display:none; }
  .burger{ display:block; }
}
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; gap: 18px; }
  .phoneStack{ margin: 0 auto; }
  h1{ font-size: clamp(34px, 7vw, 46px); }

  .cardGrid{ grid-template-columns: repeat(2,1fr); }
  .demoGrid{ grid-template-columns: 1fr; }
  .miniGrid{ grid-template-columns: 1fr; }
  .howGrid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .wrap{ padding-top: 72px; }
  .ctaRow{ flex-direction: column; align-items: stretch; }
  .btn{ width: 100%; }

  .cardGrid{ grid-template-columns: 1fr; }
  .foodGrid{ grid-template-columns: 1fr; }
  .section{ padding: 44px 0; }
  .sectionHead h2{ font-size: 30px; }
}



/* Mobile nav */
.mobileNav{ display:none; }
.mobileNav.isOpen{ display:block; position:fixed; inset:0; z-index:50; }
.mobileNav__panel{
  position:fixed;
  top: 10px;
  right: 10px;
  left: 10px;
  max-width: 520px;
  margin-left:auto;
  background: rgba(10,12,18,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}
.mobileNav__link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  color: rgba(237,235,255,.92);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.mobileNav__link:hover{ border-color: rgba(255,255,255,.18); }
.mobileNav__close{
  width:100%;
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(237,235,255,.92);
  font-weight: 800;
  cursor:pointer;
}
.mobileNav__backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.35);
}

/* Anchor offset for sticky header */
section[id]{ scroll-margin-top: 86px; }


/* --- food images: crisper rendering --- */
.foodMedia img{ image-rendering: auto; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* RU: шапка выглядит плотнее на длинных подписях */
@media (min-width: 920px){
  .nav a{font-size:13px;}
  .nav{gap:14px;}
  .brandTag{font-size:12px;}
}
@media (max-width: 720px){
  .nav{justify-content:flex-start;}
}
