:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,.05);
  --panel2: rgba(255,255,255,.07);
  --stroke: rgba(255,255,255,.10);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);

  --accent: #7C5CFF;
  --accent2:#22D3EE;

  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 18px 60px rgba(0,0,0,.50);
  --max: 1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 15% 0%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(1000px 700px at 85% 15%, rgba(34,211,238,.12), transparent 60%),
    var(--bg);
  overflow-x:hidden;
  padding-top: 72px;
}

a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Background glow */
.bg-glow{
  position: fixed;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: -1;
}
.bg-glow--1{
  left:-140px; top:-140px;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.75), transparent 55%);
}
.bg-glow--2{
  right:-160px; top:80px;
  background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.60), transparent 55%);
}

/* Header */
.site-header{
  position: fixed;
  top:0;
  left:0;
  right:0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7,10,18,.60);
  backdrop-filter: blur(14px);
}


.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{
  width: 140px;
  height: auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
}

.nav{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav-link{
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-link:hover{
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.06);
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Original-like Stake button */
.button {
    font-family: 'Proxima Nova';
font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: #ffffff;
    background: #1475e1;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: 0.8rem;
    transition: 0.2s all 
ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 200ms;
}
.button::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: #9700b1;
    z-index: -1;
    left: -200%;
    transition: 500ms;
}
.button .button_text {
    width: 3rem;
}
.button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 2px 6px 10px -2px #000;
}
.button:hover::before {
    left: -50%;
}

.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  padding: 10px;
}
.burger span{
  display:block;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  margin: 5px 0;
}

/* Mobile nav */
.mobile-nav{
  display:none;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,10,18,.75);
}
.mobile-nav-inner{
  padding: 14px 0 18px;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-cta{ margin-top: 10px; }

/* Typography / sections */
.section{ padding: 84px 0; }
.section--tight{ padding: 54px 0; }

.section-head{
  max-width: 860px;
  margin-bottom: 26px;
}
.section-head--row{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
}

.h1{
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  margin: 14px 0 14px;
  letter-spacing: -0.03em;
}
.h2{
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.h3{
  font-size: 18px;
  margin: 0 0 8px;
}
.lead{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}
.muted{ color: var(--muted); line-height: 1.7; }
.accent{ color: rgba(34,211,238,.95); }

.kicker{ display:flex; align-items:center; gap:10px; }
.kicker-pill{
  display:inline-flex;
  align-items:center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

/* HERO */
.hero{ padding-top: 58px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}

.hero-cta{
  margin-top: 18px;           /* (1) отступ перед кнопкой */
  display:flex;
  justify-content:center;     /* (1) по центру */
}
.stake-btn--hero{
  min-width: 210px;
  align-items:center;
}

.hero-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.badge-dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(124,92,255,1);
  box-shadow: 0 0 0 6px rgba(124,92,255,.15);
}

/* (2) Картинка в правом блоке: без внутренних отступов, полный fill, скругление */
.hero-media{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);

  overflow:hidden;
  padding:0;
}
.hero-media__img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position:center;
  aspect-ratio: 1 / 1;
}

/* Cards */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 18px;
  box-shadow: 0 14px 50px rgba(0,0,0,.30);
}
.card--center{ text-align:center; } /* (3) */

.icon-circle{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin: 0 auto 14px; /* (3) центр */
}
.icon-glyph{
  font-weight: 900;
  color: rgba(124,92,255,.95);
}

/* Steps */
.steps{ display:flex; flex-direction: column; gap: 14px; }

.step{
  display:grid;
  grid-template-columns: 56px 1fr 340px;
  gap: 16px;
  align-items: stretch;

  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}

.step-num{
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 18px;
  color: rgba(7,10,18,.92);
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,211,238,.95));
}

.step-body{
  padding: 16px 0 16px 0;
  align-self:center;
  padding-right: 10px;
  padding-top: 72px;
}

.step-media{
  padding: 16px;
  border-left: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  display:flex;
  align-items: stretch;
}

/* (4) Блок с пунктиром и картинка полностью заполняет */
.img-ph{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.20);
  background: rgba(0,0,0,.18);

  overflow:hidden;
  position: relative;
  display:block;
  cursor: zoom-in;
}
.img-ph img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;        /* fill без пустот */
  object-position:center;
}
.img-ph__cap{
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
}
.img-ph--placeholder img{
  filter: saturate(.85) contrast(.95);
}

.list{
  margin: 10px 0 0 18px;
  color: rgba(255,255,255,.72);
}
.list li{ margin: 6px 0; }

.prompt-box{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  border-radius: 14px;
  padding: 12px;
  margin-top: 10px;
}
.prompt-label{
  font-size: 12px;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  margin-bottom: 6px;
}
.prompt-text{
  margin:0;
  white-space: pre-wrap;
  color: rgba(255,255,255,.80);
  font-size: 13px;
  line-height: 1.6;
}

.mini-cards{
  display:flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.mini-card{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

/* (5) Reasons numbers */
.reason{
  text-align:center;
  padding-top: 22px;
}
.reason-number{
  width: 60px;
  height: 60px;
  margin: 0 auto 14px; /* центр + отступ */
  border-radius: 999px;

  display:grid;
  place-items:center;

  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(7,10,18,.92);

  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,211,238,.95));
  box-shadow: 0 20px 55px rgba(124,92,255,.16);
}

/* Slider */
.slider-controls{ display:flex; gap: 10px; }
.icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  transition: .2s ease;
}
.icon-btn:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }

.slider{
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding: 14px;
}
.slider-viewport{
  overflow:hidden;
  border-radius: var(--radius);
}
.slider-track{
  display:flex;
  gap: 14px;
  transition: transform .35s ease;
  will-change: transform;
}
.slide{ flex: 0 0 100%; }

@media (min-width: 740px){
  .slide{ flex-basis: calc(50% - 7px); }
}
@media (min-width: 1040px){
  .slide{ flex-basis: calc(33.333% - 9.34px); }
}

.slot-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.slot-thumb{
  aspect-ratio: 1 / 1;
  position: relative;
  overflow:hidden;
  background: rgba(0,0,0,.18);
}
.slot-thumb img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position:center;
}
.slot-meta{ padding: 14px; }
.slot-title{ font-weight: 900; margin-bottom: 4px; }
.slot-sub{ font-size: 13px; color: rgba(255,255,255,.65); }

.slider-dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  margin-top: 12px;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.dot.is-active{
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,211,238,.95));
  border-color: transparent;
}

/* Buttons (generic) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
}
.btn:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }
.btn-ghost{ background: rgba(255,255,255,.04); }

/* (6) Video section panels equal by grid, video centered */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch; /* equal height look */
}

.panel{
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 18px;
  height: 100%;
}

.panel--video{
  padding: 18px;
  display:flex;
}

.video-center{
  width: 100%;
  display:flex;
  align-items:center;   /* вертикаль */
  justify-content:center; /* горизонталь */
}

.video-embed{
  width: min(560px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:#000;
}
.video-embed iframe{
  width:100%;
  height:100%;
  display:block;
}

.bullets{
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 16px;
}
.bullet{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 12px;
  border-radius: 16px;
}
.bullet-dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-top: 6px;
  background: rgba(34,211,238,.95);
  box-shadow: 0 0 0 8px rgba(34,211,238,.12);
}
.bullet-title{
  font-weight: 900;
  margin-bottom: 2px;
}
.copy-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* FAQ */
.faq{
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.faq-item + .faq-item{ border-top: 1px solid rgba(255,255,255,.08); }
.faq-q{
  width:100%;
  text-align:left;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.90);
  font-weight: 900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.faq-icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  flex: 0 0 auto;
}
.faq-a{
  display:none;
  padding: 0 16px 16px;
}

/* Footer */
.end{ text-align:center; }
.end-logo img{
  width: 180px;
  height:auto;
  display:inline-block;
  margin-bottom: 14px;
  opacity: .95;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}
.footer{
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-title{ font-weight: 900; }
.footer-link{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 14px;
}
.footer-link:hover{ color: rgba(255,255,255,.95); }
.footer-sep{ color: rgba(255,255,255,.35); }

/* To top */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  display:none;
}
.to-top:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }
.to-top-arrow{ font-weight: 900; font-size: 18px; }

/* (4) Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 9999;
}
.lightbox.is-open{ display:block; }
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(4px);
}
.lightbox__dialog{
  position: absolute;
  inset: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}
.lightbox__img{
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  background: rgba(0,0,0,.25);
}
.lightbox__close{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}
.lightbox__close:hover{ background: rgba(255,255,255,.12); }

body.lb-lock{ overflow:hidden; }

/* (7) Mobile адаптация */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media__img{ aspect-ratio: 10 / 10; }
  .split{ grid-template-columns: 1fr; }
  .panel--video{ min-height: 320px; }

  .step{ grid-template-columns: 56px 1fr; }
  .step-media{
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    grid-column: 1 / -1;
  }

  .cards-3{ grid-template-columns: 1fr; }
}

@media (max-width: 920px){
  .nav{ display:none; }
  .burger{ display:inline-flex; flex-direction: column; justify-content: center; }
  .container{ width: calc(100% - 28px); }
}

@media (max-width: 520px){
  .section{ padding: 72px 0; }
  .section--tight{ padding: 44px 0; }
  .header-inner{ gap: 12px; }
  .brand-logo{ width: 120px; }
  .stake-btn{ padding: 10px 12px; }
  .stake-btn__bottom{ font-size: 12px; }
  .reason-number{ width: 54px; height: 54px; }
}
/* FIX: burger lines visible */
/* === BURGER FIX: рисуем полоски через ::before (не зависит от span) === */
.burger{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor: pointer;
}

/* Прячем span, чтобы не мешали (если они есть) */
.burger span{ display:none !important; }

.burger::before{
  content:"";
  position:absolute;
  left: 11px;
  right: 11px;
  top: 14px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.95);
  /* две дополнительные линии */
  box-shadow: 0 7px 0 rgba(255,255,255,.95), 0 14px 0 rgba(255,255,255,.95);
}


@media (max-width: 920px){
  .nav{ display:none; }
  .burger{ display:inline-flex;}
}
@media (min-width: 921px){
  .burger{ display: none; }
}
