  :root {
    
    --bg:#090909;
    
    --surface:#111612;
    
    --surface-2:#151b16;
    
    --border:rgba(150,255,185,0.10);
    
    --border-strong:rgba(150,255,185,0.22);
    
    --green-500:#34e37a;
    
    --green-400:#5bf097;
    
    --green-700:#159152;
    
    --green-900:#0c2e1c;
    
    --text-1:#f2f5f2;
    
    --text-2:#9aa79e;
    
    --text-3:#5e6b62;
    
    --radius:14px;
    
    --maxw:1280px;
    
    --ease:cubic-bezier(.22,.9,.3,1);
    
  
}

  * {
    box-sizing:border-box;
    
}

  html {
    scroll-behavior:smooth;
    
}

  @media (prefers-reduced-motion:reduce) {
    
    html {
        scroll-behavior:auto;
        
    }

    * {
        animation-duration:.001ms !important;
         animation-iteration-count:1 !important;
         transition-duration:.001ms !important;
        
    }

  
}

  body {
    
    margin:0;
    
    background:var(--bg);
    
    color:var(--text-1);
    
    font-family:'Inter',system-ui,sans-serif;
    
    -webkit-font-smoothing:antialiased;
    
    overflow-x:hidden;
    
  
}

  h1,h2,h3,h4 {
    
    font-family:'Space Grotesk',sans-serif;
    
    margin:0;
    
    letter-spacing:-0.02em;
    
    font-weight:700;
    
  
}

  p {
    margin:0;
    
}

  a {
    color:inherit;
     text-decoration:none;
    
}

  ul {
    list-style:none;
     margin:0;
     padding:0;
    
}

  button {
    font-family:inherit;
     cursor:pointer;
     background:none;
     border:none;
     color:inherit;
    
}

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

  .mono {
    font-family:'JetBrains Mono',monospace;
    
}

.wrap{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 40px;
}

  @media(min-width:768px) {
    .wrap {
        padding:0 32px;
        
    }
}

  @media(min-width:1280px) {
    .wrap {
        padding:0 40px;
        
    }
}

  ::selection {
    background:var(--green-700);
     color:#fff;
    
}

  :focus-visible {
    outline:2px solid var(--green-400);
     outline-offset:3px;
     border-radius:4px;
    
}

  .ambient {
    position:fixed;
     inset:0;
     z-index:0;
     pointer-events:none;
     overflow:hidden;
    
}

  .ambient::before, .ambient::after {
    content:'';
     position:absolute;
     width:55vw;
     height:55vw;
     border-radius:50%;
     filter:blur(130px);
     opacity:.09;
    
}

  .ambient::before {
     background:var(--green-500);
     top:-18vw;
     right:-12vw;
     
}

  .ambient::after {
     background:var(--green-700);
     bottom:-10vw;
     left:-18vw;
     opacity:.07;
    
}

  /* ---------- HEADER ---------- */
  header {
    
    position:sticky;
     top:0;
     z-index:50;
    
    background:rgba(9,9,9,0.68);
    
    backdrop-filter:blur(16px) saturate(150%);
    
    -webkit-backdrop-filter:blur(16px) saturate(150%);
    
    border-bottom:1px solid var(--border);
    
  
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 32px;
}

.brand-logo{
    width:56px;
    height:56px;
    object-fit:contain;
    animation:logoGlow 4.5s ease-in-out infinite;
}

@keyframes logoGlow{

    0%,100%{
        filter:
            drop-shadow(0 0 3px rgba(57,255,20,.22))
            drop-shadow(0 0 8px rgba(57,255,20,.18));
    }

    50%{
        filter:
            drop-shadow(0 0 5px rgba(57,255,20,.38))
            drop-shadow(0 0 14px rgba(57,255,20,.28))
            drop-shadow(0 0 22px rgba(57,255,20,.15));
    }

}

  .nav-links {
    
    display:none;
     align-items:center;
     gap:0;
    
    position:absolute;
     left:50%;
     top:50%;
     transform:translate(-50%,-50%);
    
  
}

  .nav-links a {
    
    padding: 8px 18px;
    font-size: 13px;
     letter-spacing:.05em;
     text-transform:uppercase;
    white-space: nowrap;
    color:var(--text-2);
     font-weight:500;
    
    transition:color .2s var(--ease);
    
  
}

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

  @media(min-width:960px) {
    .nav-links {
        display:flex;
        
    }
}

  .btn {
    
    display:inline-flex;
     align-items:center;
     justify-content:center;
     gap:8px;
    
    padding:13px 22px;
     border-radius:9px;
     font-size:12.5px;
     font-weight:600;
    
    letter-spacing:.03em;
     text-transform:uppercase;
    
    border:1px solid transparent;
     white-space:nowrap;
    
    transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
    
  
}

  .btn-primary {
    
    background:linear-gradient(155deg, var(--green-400), var(--green-700));
    
    color:#04170c;
     box-shadow:0 1px 0 rgba(255,255,255,.25) inset, 0 8px 24px -10px rgba(52,227,122,.55);
    
  
}

  .btn-primary:hover {
    transform:translateY(-1px);
     box-shadow:0 1px 0 rgba(255,255,255,.3) inset, 0 12px 28px -8px rgba(52,227,122,.7);
    
}

.btn-ghost {
    color: #fff;
    border: 1px solid #5cf17d;
    box-shadow: 0 10px 25px rgba(52,227,122,.20);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg,#60ea81,#38c85b);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 12px;
    border-radius: 10px;
}

  .btn-block {
    width:100%;
    
}

  .btn svg {
    width:15px;
     height:15px;
     flex-shrink:0;
    
}

  .nav-cta {
    display:none;
    
}

  @media(min-width:960px) {
    .nav-cta {
        display:inline-flex;
        
    }
}

  .menu-toggle {
    
    display:flex;
     width:40px;
     height:40px;
     align-items:center;
     justify-content:center;
    
    background:var(--surface-2);
     border:1px solid var(--border);
     border-radius:9px;
    
  
}

  @media(min-width:960px) {
    .menu-toggle {
        display:none;
        
    }
}

  .menu-toggle span {
    display:block;
     width:16px;
     height:1.5px;
     background:var(--text-1);
     position:relative;
    
}

  .menu-toggle span::before,.menu-toggle span::after {
    content:'';
     position:absolute;
     width:16px;
     height:1.5px;
     background:var(--text-1);
     left:0;
     transition:transform .25s var(--ease), opacity .2s;
    
}

  .menu-toggle span::before {
    top:-5px;
    
}
 .menu-toggle span::after {
    top:5px;
    
}

  .menu-toggle.open span {
    background:transparent;
    
}

  .menu-toggle.open span::before {
    transform:translateY(5px) rotate(45deg);
    
}

  .menu-toggle.open span::after {
    transform:translateY(-5px) rotate(-45deg);
    
}

  .mobile-menu {
     max-height:0;
     overflow:hidden;
     border-bottom:1px solid transparent;
     transition:max-height .35s var(--ease), border-color .35s;
     
}

  .mobile-menu.open {
    max-height:420px;
     border-color:var(--border);
    
}

  .mobile-menu-inner {
    padding:8px 20px 20px;
     display:flex;
     flex-direction:column;
     gap:2px;
    
}

  .mobile-menu-inner a {
    padding:12px 6px;
     font-size:14px;
     color:var(--text-2);
     border-bottom:1px solid var(--border);
     text-transform:uppercase;
     letter-spacing:.04em;
    
}

  .mobile-menu-inner a:hover {
    color:var(--text-1);
    
}

  .mobile-menu-inner .btn {
    margin-top:12px;
    
}

  @media(min-width:960px) {
    .mobile-menu {
        display:none !important;
        
    }
}

  section {
    position:relative;
     z-index:1;
    
}

.eyebrow{
    display:flex;
    align-items:center;
    gap:8px;

    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-weight:700;
    color: var(--green-400);
}

.hero-bullet{
    width:14px;
    height:14px;
    color:#5BF097;
    flex-shrink:0;

    filter:
        drop-shadow(0 0 6px rgba(91,240,151,.35));
}

  .eyebrow .dot {
    width:6px;
     height:6px;
     border-radius:50%;
     background:var(--green-500);
     box-shadow:0 0 8px 1px var(--green-500);
     flex-shrink:0;
    
}


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

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

  /* ---------- HERO ---------- */
.hero {
    position: relative;
    isolation:isolate;
    min-height: 80vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    background: url("../img/img-hero.webp") center right / cover no-repeat;
    overflow: hidden;
}

.hero-grid{
    display:grid;
    align-items:center;
    gap:60px;
}

@media(min-width:1024px){
    .hero-grid{
        grid-template-columns:46% 54%;
    }
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(6,8,7,.92) 0%,
            rgba(6,8,7,.70) 28%,
            rgba(6,8,7,.30) 48%,
            rgba(6,8,7,.05) 65%,
            rgba(6,8,7,0) 100%
        ),
        linear-gradient(
            to bottom,  
            rgba(6,8,7,.75) 0%,
            transparent 18%
        ),
        linear-gradient(
            to top,
            rgba(6,8,7,.80) 0%,
            transparent 22%
        );
    z-index: 0;
}

  @media(min-width:1024px) {
    .hero-grid {
        grid-template-columns:1fr 1fr;
         gap:20px;
        
    }
 .hero {
        padding:52px 0 0;
        
    }
}


  @media(min-width:1024px) {
      .hero-copy{
    width:100%;
    max-width:520px;
    position:relative;
    z-index:2;
    padding-top:20px;
        padding-bottom:64px;
        
    }
}

.hero h1{
    font-size:clamp(3.6rem,5vw,5rem);
    line-height:.94;
    font-weight:800;
    letter-spacing:-.05em;
    margin:16px 0 20px;
    max-width:500px;
}

  .hero h1 .accent {
    
    background:linear-gradient(100deg, var(--green-400), var(--green-500) 60%, #b9ffce);
    
    -webkit-background-clip:text;
     background-clip:text;
     color:transparent;
    
  
}

.hero p.sub{
    max-width:430px;
    font-size:1.15rem;
    line-height:1.55;
    color:rgba(255,255,255,.82);
    margin-bottom:26px;
}

.plat-row{
    display:flex;
    align-items:center;
    gap:18px;
    margin:28px 0 34px;
    flex-wrap:nowrap;
}

.plat-chip{
    padding:0;
    border:none;
    background:transparent;
    width:auto;
    height:auto;
    box-shadow:none;
}

.plat-chip img{
    width:120px;
    height:auto;
    display:block;
}

  .plat-chip .sw {
    width:7px;
    height:7px;
    border-radius:50%;
     flex-shrink:0;
     max-width: 100px;
    
}

  .hero-actions {
    display:flex;
     flex-wrap:wrap;
     gap:12px;
     margin-top:22px;
    
}

  .hero-stats {
    display:flex;
     align-items:center;
     gap:12px;
     margin-top:26px;
    
}

.avatars{
    display:flex;
    align-items:center;
}

.avatars img{

    width:28px;
    height:28px;

    margin-left:-8px;

    background:#0d0d0d;

    border-radius:50%;

    border:2px solid #111;

    filter:
    drop-shadow(0 0 6px rgba(74,255,130,.20));
}

.avatars img:first-child{
    margin-left:0;
}

  .hero-stats .txt {
    font-size:13px;
     color:var(--text-2);
     line-height:1.4;
    
}

  .hero-stats .txt b {
    color:var(--text-1);
     display:block;
     font-size:13.5px;
     font-weight:700;
    
}

  /* ---------- BENEFITS BAR ---------- */
  .benefits {
    padding:0 0 56px;
    padding-top:42px;
}

  .benefits-bar {
    
    display:grid;
     grid-template-columns:1fr 1fr;
     gap:0;
    
    background:var(--surface);
     border:1px solid var(--border);
     border-radius:var(--radius);
    
  
}

  @media(min-width:900px) {
    .benefits-bar {
        grid-template-columns:repeat(4,1fr);
        
    }
}

.b-item{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    gap:18px;
    padding:28px 20px;

    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);

}

.b-item:hover .benefit-icon{
    transform:scale(1.08);

    filter:
        drop-shadow(0 0 8px rgba(91,240,151,.45))
        drop-shadow(0 0 18px rgba(91,240,151,.28));
}

.b-item .benefit-icon{
    margin-top:0;
}

  .b-item:nth-child(2n) {
    border-right:none;
    
}

  @media(min-width:900px) {
    
    .b-item {
        border-bottom:none;
        
    }

    .b-item:nth-child(2n) {
        border-right:1px solid var(--border);
        
    }

    .b-item:last-child {
        border-right:none;
        
    }

  
}

  .b-item .ic {
    font-size:20px;
     flex-shrink:0;
     margin-top:2px;
     color:var(--green-400);
    
}

.b-item h3{

    font-size:17px;
    text-transform:uppercase;
    letter-spacing:.03em;
    margin-bottom:8px;
    font-weight:700;
    line-height:1.25;

}

  .b-item h3 em {
    font-style:normal;
     color:var(--green-400);
    
}

.b-item p{

    font-size:12.5px;
    color:var(--text-2);
    line-height:1.6;
    max-width:180px;
    margin:0 auto;

}

  /* ---------- CATALOG ---------- */
  .catalog {
    padding:40px 0 40px;
    
}

  .cat-head {
    display:flex;
     flex-direction:column;
     align-items:center;
     text-align:center;
     gap:8px;
     margin-bottom:28px;
    
}

  .cat-head h2 {
    font-size:clamp(1.6rem,4vw,2.1rem);
     text-transform:uppercase;
     letter-spacing:.01em;
    
}

  .cat-controls {
    display:flex;
     flex-direction:column;
     gap:14px;
     margin-bottom:22px;
    
}

  @media(min-width:768px) {
    .cat-controls {
        flex-direction:row;
         align-items:center;
         justify-content:space-between;
        
    }
}

  .filters {
    display:flex;
     gap:8px;
     overflow-x:auto;
     padding-bottom:4px;
     -ms-overflow-style:none;
     scrollbar-width:none;
    
}

  .filters::-webkit-scrollbar {
    display:none;
    
}

  .filter-btn {
    
    flex-shrink:0;
     padding:9px 18px;
     border-radius:100px;
     font-size:12px;
     font-weight:600;
    
    letter-spacing:.03em;
     text-transform:uppercase;
    
    border:1px solid var(--border);
     color:var(--text-2);
     background:var(--surface);
    
    transition:all .2s var(--ease);
    
  
}

  .filter-btn.active {
    background:linear-gradient(155deg,var(--green-400),var(--green-700));
     color:#04170c;
     border-color:transparent;
    
}

  .filter-btn:hover:not(.active) {
    border-color:var(--border-strong);
     color:var(--text-1);
    
}

  .search-box {
    position:relative;
     min-width:0;
    
}

  @media(min-width:768px) {
    .search-box {
        width:240px;
        
    }
}

  .search-box input {
    
    width:100%;
     padding:11px 14px 11px 38px;
     border-radius:9px;
     border:1px solid var(--border);
    
    background:var(--surface);
     color:var(--text-1);
     font-size:13px;
     font-family:inherit;
    
  
}

  .search-box input::placeholder {
    color:var(--text-3);
    
}

  .search-box input:focus {
    border-color:var(--green-500);
     outline:none;
    
}

  .search-box svg {
    position:absolute;
     left:12px;
     top:50%;
     transform:translateY(-50%);
     width:16px;
     height:16px;
     color:var(--text-3);
    
}

  .cat-grid {
     display:grid;
     grid-template-columns:repeat(2,1fr);
     gap:14px;
     
}

  @media(min-width:640px) {
    .cat-grid {
        grid-template-columns:repeat(3,1fr);
        
    }
}

  @media(min-width:1024px) {
    .cat-grid {
        grid-template-columns:repeat(4,1fr);
         gap:16px;
        
    }
}

  @media(min-width:1280px) {
    .cat-grid {
        grid-template-columns:repeat(5,1fr);
        
    }
}

  .game-card {
    
    background:var(--surface);
     border:1px solid var(--border);
     border-radius:12px;
    
    overflow:hidden;
     display:flex;
     flex-direction:column;
    
    transition:transform .3s var(--ease), border-color .3s, box-shadow .3s;
    
  
}

  .game-card:hover {
    transform:translateY(-4px);
     border-color:var(--border-strong);
     box-shadow:0 20px 40px -20px rgba(0,0,0,.6);
    
}
.game-card:hover .game-cover img{
    transform:scale(1.06);
}

  .game-cover {
    
    aspect-ratio:3/4;
     position:relative;
     overflow:hidden;
    
    background:linear-gradient(150deg,#12180f,#0b0e0a);
    
  
}
.game-cover img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .35s ease;
}

  .game-cover::before {
    
    content:'';
     position:absolute;
     inset:0;
    
    background-image:
      linear-gradient(rgba(150,255,185,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(150,255,185,.045) 1px, transparent 1px);
    
    background-size:20px 20px;
    
  
}

  .game-cover .ph-ic {
    position:absolute;
     top:50%;
     left:50%;
     transform:translate(-50%,-50%);
     font-size:26px;
     opacity:.35;
    
}

  .plat-badge {
    
    position:absolute;
     top:9px;
     left:9px;
     z-index:1;
     font-size:9.5px;
     font-weight:600;
    
    letter-spacing:.04em;
     padding:4px 8px;
     border-radius:6px;
     background:rgba(0,0,0,.55);
    
    backdrop-filter:blur(4px);
     display:flex;
     align-items:center;
     gap:5px;
     color:#fff;
    
    text-transform:uppercase;
     border:1px solid rgba(255,255,255,.08);
    
  
}

  .plat-badge .sw {
    width:5px;
     height:5px;
     border-radius:50%;
     flex-shrink:0;
    
}

  .game-info {
    padding:12px 12px 12px;
     display:flex;
     flex-direction:column;
     gap:2px;
     flex:1;
    
}

  .game-info h4 {
    font-size:13px;
     line-height:1.3;
     min-height:2.5em;
     font-weight:600;
     margin-bottom:4px;
    
}

  .game-price {
    font-size:15px;
     font-weight:700;
     color:var(--text-1);
     margin-bottom:10px;
    
}

  .game-price .cur {
    color:var(--green-400);
    
}

  .game-info .btn {
    margin-top:auto;
     font-size:11px;
     padding:10px 10px;
    
}

  .empty-state {
     grid-column:1/-1;
     text-align:center;
     padding:50px 20px;
     color:var(--text-2);
     border:1px dashed var(--border-strong);
     border-radius:var(--radius);
     
}

  /* ---------- CTA banner ---------- */
  .cta-banner {
    
    margin:0 auto 56px;
     border-radius:16px;
     border:1px solid var(--border);
    align-items:center;
    background:var(--surface);
    
    padding:26px 24px;
     display:flex;
     flex-direction:column;
     gap:20px;
    
    position:relative;
     overflow:hidden;
    
  
}

  @media(min-width:900px) {
    .cta-banner {
        flex-direction:row;
         align-items:center;
         justify-content:space-between;
         padding:28px 32px;
        
    }
}

.cta-left{

    display:flex;
    align-items:center;
    gap:34px;
    flex:1;

}

.cta-creeper{

    width:180px;
    height:auto;

    flex-shrink:0;

    margin-left:-22px;
    margin-bottom:-28px;

    align-self:flex-end;

    filter:
        drop-shadow(0 0 30px rgba(52,227,122,.18))
        drop-shadow(0 10px 25px rgba(0,0,0,.45));

    transition:.35s;

}

.cta-banner:hover .cta-creeper{

    transform:translateY(-6px);

}


.cta-banner h3{

    font-size:clamp(2rem,2.5vw,2.5rem);
    line-height:1.05;

    margin-bottom:12px;

    text-transform:uppercase;
    letter-spacing:.01em;

}

  .cta-banner h3 em {
    font-style:normal;
     color:var(--green-400);
    
}

.cta-banner p{

    color:var(--text-2);

    font-size:15px;
    line-height:1.6;

    max-width:520px;

}

.cta-banner p strong{

    color:var(--green-400);
    font-size:18px;
    font-weight:700;

}

.cta-banner .btn{

    flex-shrink:0;

    padding:18px 34px;

    font-size:13px;

}

  /* ---------- HOW TO BUY ---------- */
  .howto {
    padding:56px 0 76px;
    
}

  .howto-grid {
    display:grid;
     gap:36px;
    
}

  @media(min-width:1024px) {
    .howto-grid {
        grid-template-columns:.85fr 1.15fr;
         align-items:center;
         gap:48px;
        
    }
}

  .howto h2 {
    font-size:clamp(1.6rem,4vw,2.2rem);
     margin-top:14px;
     text-transform:uppercase;
    
}

  .howto-sub {
    color:var(--text-2);
     margin-top:10px;
     font-size:13.5px;
    
}

  .steps-simple {
    display:flex;
     flex-direction:column;
     gap:20px;
     margin-top:26px;
    
}

  .step-simple {
    display:flex;
     align-items:flex-start;
     gap:14px;
    
}

  .step-simple .ic {
    
    width:34px;
     height:34px;
     border-radius:9px;
     border:1px solid var(--border-strong);
    
    display:flex;
     align-items:center;
     justify-content:center;
     flex-shrink:0;
     color:var(--green-400);
     font-size:15px;
    
  
}

  .step-simple h4 {
    font-size:14px;
     margin-bottom:3px;
     font-weight:700;
    
}

  .step-simple p {
    font-size:12.5px;
     color:var(--text-2);
     line-height:1.5;
    
}

  /* video placeholder */
  .video-frame {
    
    border-radius:16px;
     border:1px solid var(--border-strong);
     background:var(--surface);
    
    padding:10px;
     box-shadow:0 0 0 1px rgba(52,227,122,.08), 0 30px 70px -30px rgba(0,0,0,.7);
    
  
}

  .video-head {
    display:flex;
     align-items:center;
     gap:8px;
     padding:6px 6px 10px;
    
}

  .video-head .dotmark {
    width:20px;
     height:20px;
     border-radius:50%;
     background:radial-gradient(circle at 32% 28%, #2a4a34, #0a120c 70%);
     border:1px solid var(--border-strong);
    
}

  .video-head span {
    font-size:12px;
     color:var(--text-2);
    
}

  .video-screen {
    
    aspect-ratio:16/10;
     border-radius:10px;
     position:relative;
     overflow:hidden;
    
    background:linear-gradient(160deg,#0d130e,#080a08);
    
    border:1px solid var(--border);
    
    display:flex;
     align-items:center;
     justify-content:center;
    
  
}

  .video-screen::before {
    
    content:'';
     position:absolute;
     inset:0;
    
    background-image:linear-gradient(rgba(150,255,185,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(150,255,185,.05) 1px, transparent 1px);
    
    background-size:26px 26px;
    
  
}

  .video-caption {
    position:relative;
     z-index:1;
     text-align:center;
     padding:20px;
    
}

  .video-caption b {
    display:block;
     font-family:'Space Grotesk';
     font-size:clamp(1.1rem,2.6vw,1.6rem);
     font-weight:700;
     line-height:1.2;
    
}

  .video-caption b em {
    font-style:normal;
     color:var(--green-400);
    
}

  .play-btn {
    
    width:54px;
     height:54px;
     border-radius:50%;
     background:rgba(255,255,255,.06);
    
    border:1px solid var(--border-strong);
     display:flex;
     align-items:center;
     justify-content:center;
    
    margin:16px auto 0;
     backdrop-filter:blur(6px);
    
  
}

  .video-controls {
    
    display:flex;
     align-items:center;
     gap:10px;
     padding:10px 6px 4px;
     color:var(--text-3);
     font-size:11px;
    
  
}

  .video-controls .bar {
    flex:1;
     height:3px;
     background:var(--border);
     border-radius:2px;
     position:relative;
     overflow:hidden;
    
}

  .video-controls .bar::after {
    content:'';
     position:absolute;
     left:0;
     top:0;
     bottom:0;
     width:22%;
     background:var(--green-500);
    
}

  /* ---------- TESTIMONIALS ---------- */
  .testi {
    padding:56px 0 72px;
    
}

  .testi-head {
    text-align:center;
     display:flex;
     flex-direction:column;
     align-items:center;
     gap:8px;
     margin-bottom:32px;
    
}

  .testi-head h2 {
    font-size:clamp(1.5rem,4vw,2rem);
     text-transform:uppercase;
    
}

.testi-wrap{
    position:relative;
    max-width:1200px;
    margin:0 auto;
}

  .testi-track {
    
    display:flex;
     gap:14px;
     overflow-x:auto;
     scroll-snap-type:x mandatory;
     padding-bottom:8px;
    
    -ms-overflow-style:none;
     scrollbar-width:none;
    
  
}

  .testi-track::-webkit-scrollbar {
    display:none;
    
}

.t-card{
    flex:0 0 360px;
    overflow:hidden;
    border-radius:16px;
    border:1px solid var(--border);
    background:var(--surface);
    transition:.3s;
}

.t-card:hover{
    transform:translateY(-5px);
    border-color:var(--green-400);
}

.t-card img{
    display:block;
    width:100%;
    height:auto;
}

  @media(min-width:640px) {
    .t-card {
        flex:0 0 46%;
        
    }
}

  @media(min-width:1024px) {
    .t-card {
        flex:0 0 23.5%;
        
    }
}

  .t-bubbles {
    display:flex;
     flex-direction:column;
     gap:6px;
    
}

  .t-bubble {
    
    background:var(--surface-2);
     border:1px solid var(--border);
     border-radius:10px;
     border-bottom-left-radius:3px;
    
    padding:9px 11px;
     font-size:12.5px;
     line-height:1.45;
     color:var(--text-1);
     align-self:flex-start;
     max-width:100%;
    
  
}

  .t-bubble .time {
    display:block;
     font-size:10px;
     color:var(--text-3);
     margin-top:3px;
     font-family:'JetBrains Mono',monospace;
    
}

  .t-stars {
    color:var(--green-400);
     font-size:13px;
     letter-spacing:2px;
    
}

  .testi-arrows {
    display:flex;
     justify-content:space-between;
     position:absolute;
     top:50%;
     left:-8px;
     right:-8px;
     transform:translateY(-50%);
     pointer-events:none;
    
}

  @media(max-width:767px) {
    .testi-arrows {
        display:none;
        
    }
}

  .arrow-btn {
    
    pointer-events:all;
     width:38px;
     height:38px;
     border-radius:50%;
     border:1px solid var(--border-strong);
    
    background:var(--bg);
     display:flex;
     align-items:center;
     justify-content:center;
     color:var(--text-1);
    
    transition:background .2s;
     box-shadow:0 6px 18px -6px rgba(0,0,0,.6);
    
  
}

  .arrow-btn:hover {
    background:var(--surface-2);
    
}

  .testi-dots {
    display:flex;
     justify-content:center;
     gap:6px;
     margin-top:20px;
    
}

  .testi-dots span {
    width:6px;
     height:6px;
     border-radius:50%;
     background:var(--border-strong);
    
}

  .testi-dots span:first-child {
    background:var(--green-500);
     width:16px;
     border-radius:4px;
    
}

  /* ---------- FOOTER ---------- */
  footer {
    border-top:1px solid var(--border);
     padding:48px 0 24px;
     margin-top:0;
    
}

  .footer-grid {
    display:grid;
     grid-template-columns:1fr;
     gap:32px;
    
}

  @media(min-width:768px) {
    .footer-grid {
        grid-template-columns:1.3fr 1fr 1fr 1fr 1fr;
        
    }
}

  .footer-brand p {
    color:var(--text-2);
     font-size:13px;
     line-height:1.6;
     margin-top:12px;
     max-width:260px;
    
}

  .footer-col h5 {
    font-size:11px;
     text-transform:uppercase;
     letter-spacing:.07em;
     color:var(--text-3);
     margin-bottom:14px;
     font-weight:700;
    
}

  .footer-col a, .footer-col span {
    display:block;
     font-size:13px;
     color:var(--text-2);
     padding:5px 0;
    
}

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

  .pay-row {
    display:flex;
     gap:8px;
     margin-top:6px;
     flex-wrap:wrap;
    
}

  .pay-chip {
    font-size:10.5px;
     padding:5px 9px;
     border:1px solid var(--border);
     border-radius:6px;
     color:var(--text-2);
    
}

  .footer-bottom {
     margin-top:36px;
     padding-top:20px;
     border-top:1px solid var(--border);
     text-align:center;
     font-size:12px;
     color:var(--text-3);
     
}

  /* sticky mobile CTA */
  .sticky-cta {
     position:fixed;
     bottom:16px;
     left:16px;
     right:16px;
     z-index:40;
     display:flex;
     box-shadow:0 20px 40px -10px rgba(0,0,0,.6);
     border-radius:12px;
     overflow:hidden;
     
}

  @media(min-width:960px) {
    .sticky-cta {
        display:none;
        
    }
}

  .sticky-cta a {
    
    width:100%;
     text-align:center;
     padding:15px;
     font-weight:700;
     font-size:13px;
     letter-spacing:.03em;
     text-transform:uppercase;
    
    background:linear-gradient(155deg,var(--green-400),var(--green-700));
     color:#04170c;
    
    display:flex;
     align-items:center;
     justify-content:center;
     gap:8px;
    
  
}

.benefit-icon{
    width:54px;
height:54px;

    flex-shrink:0;

    color:#5BF097;

    stroke:currentColor;
    stroke-width:2;

    margin-top:2px;

    filter:
        drop-shadow(0 0 4px rgba(91,240,151,.35))
        drop-shadow(0 0 10px rgba(91,240,151,.18));

    transition:all .25s ease;
}

.avatar-icon{
    width:25px;
    height:25px;
    color:#62F79B;
    margin-inline: 2px;
    filter:drop-shadow(0 0 4px rgba(98,247,155,.25));
}

@media (max-width: 768px){

    .wrap{
        padding:0 16px;
    }

    .b-item{
        padding:20px 16px;
        min-width:0;
    }

}

@media (max-width:768px){

.cta-banner{

    padding:34px 22px;

}

.cta-left{

    flex-direction:column;
    text-align:center;
    gap:16px;

}

.cta-creeper{

    width:120px;

    margin:0;

    align-self:center;

}

.cta-banner h3{

    font-size:32px;

}

.cta-banner p{

    font-size:14px;
    max-width:100%;

}

.cta-banner .btn{

    width:100%;

}

}

@media (max-width:768px){

.hero{

    background:
        linear-gradient(
            rgba(6,8,7,.70),
            rgba(6,8,7,.85)
        ),
        url("../img/img-hero-mobile.webp");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

}

}

.payment-logos{
    margin-top:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
}

.payment-logos span{
    color:var(--text-2);
    font-size:14px;
}

.payment-logos img{
    height:36px;
    width:auto;
    opacity:.9;
    transition:.25s;
}

.payment-logos img:hover{
    opacity:1;
    transform:translateY(-2px);
}

@media(max-width:768px){
    .payment-logos{
        gap:18px;
    }

    .payment-logos img{
        height:28px;
    }
}

.payment-logos-footer{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:12px;
}

.payment-logos-footer img{
    height:34px;
    width:auto;
    display:block;
}

@media (max-width:768px){

.footer-links,
.footer-social,
.footer .btn{
    display:none;
}

.footer{
    padding:40px 0 24px;
}

}

@media (max-width:768px){

.footer{
    text-align:center;
}

.footer-brand,
.footer-payments{
    justify-content:center;
    align-items:center;
}

}

.footer-madeby{
    margin-top:32px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    font-size:.9rem;
    color:rgba(255,255,255,.55);
}

.footer-madeby a{
    color:var(--green-400);
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.footer-madeby a:hover{
    color:#fff;
}