:root{
  --bg:#081120;
  --bg-soft:#101a2e;
  --bg-card:#14213d;
  --bg-card-2:#182743;
  --primary:#ffd54a;
  --primary-dark:#e2b923;
  --secondary:#5aa9ff;
  --secondary-soft:#8cc4ff;
  --text:#ffffff;
  --text-soft:#b9c5dc;
  --text-muted:#8ea0bf;
  --border:rgba(255,255,255,0.08);
  --border-strong:rgba(255,255,255,0.14);
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --shadow-soft:0 10px 30px rgba(0,0,0,0.22);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:12px;
  --container:1200px;
  --transition:0.35s ease;
  --header-height:84px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,213,74,0.08), transparent 25%),
    radial-gradient(circle at top right, rgba(90,169,255,0.08), transparent 22%),
    linear-gradient(180deg, #081120 0%, #0b1324 35%, #081120 100%);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
  position:relative;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
  transition:var(--transition);
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  background:none;
  border:none;
  cursor:pointer;
}

ul{
  list-style:none;
}

table{
  width:100%;
  border-collapse:collapse;
}

main{
  position:relative;
  z-index:2;
}

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

.section{
  padding:100px 0;
  position:relative;
}

.center{
  text-align:center;
}

.site-bg-glow{
  position:fixed;
  inset:auto;
  width:360px;
  height:360px;
  border-radius:50%;
  filter:blur(100px);
  opacity:.22;
  z-index:0;
  pointer-events:none;
}

.glow-1{
  top:80px;
  left:-100px;
  background:rgba(255,213,74,.22);
}

.glow-2{
  right:-120px;
  top:280px;
  background:rgba(90,169,255,.22);
}

.section-head{
  margin-bottom:42px;
  max-width:760px;
}

.section-head.center{
  margin-left:auto;
  margin-right:auto;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border:1px solid rgba(255,213,74,.2);
  background:rgba(255,213,74,.08);
  color:var(--primary);
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
  box-shadow:0 8px 24px rgba(255,213,74,.08);
}

.section-head h1,
.section-head h2,
h1,
h2,
h3,
h4{
  font-family:Poppins, Arial, sans-serif;
  line-height:1.12;
  letter-spacing:-0.02em;
}

h1{
  font-size:56px;
  font-weight:800;
  margin-bottom:18px;
}

h2{
  font-size:40px;
  font-weight:800;
  margin-bottom:16px;
}

h3{
  font-size:22px;
  font-weight:700;
}

p{
  color:var(--text-soft);
  font-size:16px;
}

.section-head p{
  font-size:17px;
  color:var(--text-soft);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  font-size:15px;
  letter-spacing:.01em;
  transition:var(--transition);
  position:relative;
  overflow:hidden;
  white-space:nowrap;
}

.btn-primary{
  background:linear-gradient(180deg, #ffe27b 0%, #ffd54a 48%, #ecb800 100%);
  color:#10151f;
  box-shadow:
    0 16px 36px rgba(255,213,74,.28),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:
    0 22px 44px rgba(255,213,74,.32),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.03);
  color:var(--text);
  backdrop-filter:blur(10px);
}

.btn-secondary:hover{
  transform:translateY(-3px);
  border-color:rgba(90,169,255,.55);
  box-shadow:0 18px 36px rgba(90,169,255,.16);
}

.center-btn{
  margin-top:34px;
  display:flex;
  justify-content:center;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  height:var(--header-height);
  display:flex;
  align-items:center;
  transition:var(--transition);
  background:rgba(8,17,32,.35);
  backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
}

.site-header.scrolled{
  background:rgba(8,17,32,.82);
  border-bottom:1px solid var(--border);
  box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.header-wrap{
  min-height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.brand img{
  max-height:58px;
  width:auto;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.main-nav a{
  color:var(--text-soft);
  font-weight:600;
  font-size:15px;
  position:relative;
}

.main-nav a:hover{
  color:var(--text);
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:linear-gradient(90deg, var(--primary), var(--secondary));
  transition:var(--transition);
  border-radius:999px;
}

.main-nav a:hover::after{
  width:100%;
}

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

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:22px;
}

.hero{
  padding:88px 0 40px;
  position:relative;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:48px;
}

.hero-content{
  max-width:650px;
}

.hero-content p{
  font-size:18px;
  color:var(--text-soft);
  max-width:620px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hero-points span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  color:var(--text-soft);
  font-size:14px;
  font-weight:700;
}

.hero-media{
  position:relative;
}

.hero-media-card,
.media-card,
.disclaimer-box,
.cta-box,
.quick-link-card,
.feature-card,
.step-card,
.tip-card,
.stat-card,
.telegram-banner,
.info-table-wrap{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.hero-media-card,
.media-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  position:relative;
}

.hero-media-card img,
.media-card img{
  width:100%;
  height:auto;
  object-fit:cover;
}

.floating-card{
  animation:floatY 4.2s ease-in-out infinite;
}

@keyframes floatY{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}

.stats-strip{
  padding:28px 0 10px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  padding:26px 22px;
  border-radius:22px;
  text-align:center;
  transition:var(--transition);
}

.stat-card:hover,
.feature-card:hover,
.step-card:hover,
.tip-card:hover,
.quick-link-card:hover{
  transform:translateY(-6px);
  border-color:var(--border-strong);
  box-shadow:0 26px 56px rgba(0,0,0,.28);
}

.stat-card h2,
.stat-card h3{
  font-size:34px;
  margin-bottom:8px;
  color:var(--primary);
}

.stat-card p{
  color:var(--text-soft);
  font-weight:600;
}

.split-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}

.feature-list{
  display:grid;
  gap:14px;
  margin-top:28px;
}

.feature-list li,
.check-item{
  position:relative;
  padding:16px 18px 16px 52px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text-soft);
  font-weight:600;
}

.feature-list li::before,
.check-item::before{
  content:"✓";
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #39d98a, #1fa562);
  color:#fff;
  font-size:12px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(31,165,98,.25);
}

.info-table-wrap{
  border-radius:24px;
  padding:18px;
  overflow:hidden;
}

.info-table{
  border-radius:18px;
  overflow:hidden;
}

.info-table th,
.info-table td{
  padding:18px 20px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.info-table tr:last-child th,
.info-table tr:last-child td{
  border-bottom:none;
}

.info-table th{
  width:34%;
  color:var(--text);
  background:rgba(255,255,255,.03);
  font-weight:700;
}

.info-table td{
  color:var(--text-soft);
  background:rgba(255,255,255,.015);
}

.steps-grid,
.features-grid,
.tips-grid{
  display:grid;
  gap:20px;
}

.steps-grid{
  grid-template-columns:repeat(5,1fr);
}

.four-grid{
  grid-template-columns:repeat(4,1fr);
}

.step-card{
  border-radius:24px;
  padding:28px 22px;
  position:relative;
  min-height:230px;
  transition:var(--transition);
}

.step-no{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:linear-gradient(180deg, #ffe27b 0%, #ffd54a 48%, #ecb800 100%);
  color:#111827;
  font-weight:900;
  font-size:18px;
  box-shadow:0 14px 26px rgba(255,213,74,.22);
}

.step-card h3{
  margin-bottom:12px;
}

.step-card p{
  font-size:15px;
}

.features-grid{
  grid-template-columns:repeat(5,1fr);
}

.feature-card{
  border-radius:24px;
  padding:28px 22px;
  transition:var(--transition);
  min-height:250px;
}

.icon-box{
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(255,213,74,.16), rgba(255,213,74,.06));
  border:1px solid rgba(255,213,74,.16);
  margin-bottom:18px;
}

.icon-box img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.icon-box span{
  font-weight:900;
  color:var(--primary);
}

.feature-card h3{
  margin-bottom:12px;
}

.alt-section{
  position:relative;
}

.alt-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.01));
  pointer-events:none;
}

.mini-steps{
  display:grid;
  gap:14px;
  margin-top:28px;
}

.mini-step{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}

.mini-step span{
  width:34px;
  height:34px;
  flex-shrink:0;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #ffe27b 0%, #ffd54a 48%, #ecb800 100%);
  color:#111827;
  font-weight:900;
}

.quick-links-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.quick-link-card{
  border-radius:24px;
  padding:28px 24px;
  transition:var(--transition);
}

.quick-link-card h3{
  margin-bottom:12px;
}

.check-grid{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.tips-grid{
  grid-template-columns:repeat(5,1fr);
}

.tip-card{
  border-radius:24px;
  padding:26px 22px;
  transition:var(--transition);
  min-height:210px;
}

.tip-card h3{
  margin-bottom:12px;
}

.cta-box{
  border-radius:32px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  position:relative;
  overflow:hidden;
}

.cta-box::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,213,74,.12), transparent 22%),
    radial-gradient(circle at 80% 50%, rgba(90,169,255,.12), transparent 24%);
  pointer-events:none;
}

.cta-content,
.cta-actions{
  position:relative;
  z-index:1;
}

.cta-content{
  max-width:720px;
}

.cta-content h2{
  margin-bottom:14px;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.telegram-banner{
  border-radius:30px;
  padding:30px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.telegram-content h2{
  margin-bottom:10px;
}

.faq-list{
  display:grid;
  gap:16px;
}

.faq-item{
  border:1px solid var(--border);
  border-radius:22px;
  background:rgba(255,255,255,.03);
  overflow:hidden;
  transition:var(--transition);
}

.faq-item.active{
  border-color:rgba(255,213,74,.22);
  box-shadow:0 22px 40px rgba(0,0,0,.18);
}

.faq-question{
  width:100%;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--text);
  font-weight:700;
  font-size:18px;
  text-align:left;
}

.faq-question span{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.06);
  color:var(--primary);
  font-size:20px;
  flex-shrink:0;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 24px 24px;
  color:var(--text-soft);
}

.faq-item.active .faq-answer{
  max-height:240px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

.disclaimer-box{
  border-radius:30px;
  padding:34px;
}

.disclaimer-box h2{
  margin-bottom:14px;
}

.disclaimer-box p + p{
  margin-top:12px;
}

.disclaimer-highlight{
  color:var(--primary);
  font-weight:800;
}

.content-section .section-head{
  max-width:880px;
}

.content-section .section-head p + p{
  margin-top:14px;
}

.site-footer{
  margin-top:40px;
  padding-top:70px;
  border-top:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
  position:relative;
  z-index:2;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:34px;
  padding-bottom:36px;
}

.footer-col h3{
  font-size:18px;
  margin-bottom:18px;
}

.footer-col ul{
  display:grid;
  gap:12px;
}

.footer-col a{
  color:var(--text-soft);
}

.footer-col a:hover{
  color:var(--primary);
}

.footer-brand-link{
  display:inline-flex;
  margin-bottom:18px;
}

.footer-brand p,
.footer-col p{
  color:var(--text-soft);
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:22px 0 34px;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-align:center;
}

.footer-warning{
  color:var(--primary);
  font-weight:700;
}

.footer-copy{
  color:var(--text-muted);
  font-size:14px;
}

.dashboard-shot{
  max-width:420px;
  margin-left:auto;
  margin-right:auto;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

.delay-1{transition-delay:.08s;}
.delay-2{transition-delay:.16s;}
.delay-3{transition-delay:.24s;}
.delay-4{transition-delay:.32s;}

.text-gradient{
  background:linear-gradient(90deg, #fff1b0 0%, #ffd54a 40%, #ffab2f 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}

.card-outline{
  border:1px solid var(--border);
  border-radius:24px;
  background:rgba(255,255,255,.03);
}

.shadow-soft{
  box-shadow:var(--shadow-soft);
}

.text-muted{
  color:var(--text-muted);
}

.hidden{
  display:none !important;
}
/* MOBILE STICKY CTA */

.mobile-sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  padding:12px 16px;
  background:rgba(8,17,32,0.95);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,0.08);
  z-index:999;
  display:none;
}

.mobile-sticky-cta .btn{
  width:100%;
  height:52px;
  font-size:16px;
}

/* Show only on mobile */
@media (max-width: 767px){
  .mobile-sticky-cta{
    display:block;
  }

  body{
    padding-bottom:70px; /* prevent content hide */
  }
}
.page-top-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
}

.mobile-sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(8,17,32,0.92);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,0.08);
  z-index:999;
  display:none;
}

.mobile-sticky-cta .btn{
  width:100%;
  min-height:48px;
  height:48px;
  border-radius:16px;
  font-size:15px;
  box-shadow:0 10px 24px rgba(255,213,74,.20);
}

@media (max-width: 767px){
  .mobile-sticky-cta{
    display:block;
  }

  body{
    padding-bottom:74px;
  }

  .page-top-actions{
    flex-direction:column;
    align-items:stretch;
    margin-top:18px;
  }

  .page-top-actions .btn{
    width:100%;
    min-height:48px;
  }
}

@media (max-width: 575px){
  .mobile-sticky-cta{
    padding:8px 10px calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta .btn{
    min-height:46px;
    height:46px;
    border-radius:14px;
    font-size:14px;
  }

  body{
    padding-bottom:70px;
  }
}
.hero-media-card img,
.media-card img{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
}
.hero-media-card img,
.media-card img{
  width:100%;
  height:auto;
  object-fit:cover;
  object-position:center;
}
.page-image,
.dashboard-shot{
  border-radius:20px;
  overflow:hidden;
}

.page-image img,
.dashboard-shot img{
  display:block;
  margin:0 auto;
}