/* =============================================
   KELLOGSWARE – style.css (sans cart/checkout)
   ============================================= */
:root {
  --yellow: #f59e0b;
  --yellow-light: #fbbf24;
  --black: #020202;
  --white: #d1d5db;
  --gray-3: #555;
  --gray-4: #8a8f99;
  --gray-5: #b0b5be;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow Condensed', sans-serif;
  --shadow-yellow: 0 0 28px rgba(245,158,11,0.35);
  --shadow-deep: 0 20px 50px rgba(0,0,0,0.7);
  --tr: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--font-body);background:var(--black);color:var(--white);overflow-x:hidden;-webkit-font-smoothing:antialiased;cursor:none;display:flex;flex-direction:column;min-height:100vh;}
a{color:inherit;text-decoration:none;}
button{cursor:none;border:none;background:none;color:inherit;font-family:inherit;}
input,select{font-family:inherit;}
::-webkit-scrollbar{width:4px;}
::-webkit-scrollbar-track{background:#000;}
::-webkit-scrollbar-thumb{background:var(--yellow);border-radius:4px;}
.container{max-width:1400px;margin:0 auto;padding:0 2.5rem;}
.w-full{width:100%;}
.text-center{text-align:center;}
.text-yellow{color:var(--yellow);}

/* CANVAS BG */
#bg-canvas-el{position:fixed;inset:0;z-index:-1;pointer-events:none;background:var(--black);}

/* CURSOR */
.mouse-flare{position:fixed;width:320px;height:320px;background:radial-gradient(circle,rgba(245,158,11,.08) 0%,transparent 70%);border-radius:50%;pointer-events:none;z-index:10001;transform:translate(-50%,-50%);}
.cursor-trail{position:fixed;width:8px;height:8px;background:var(--yellow-light);border-radius:50%;pointer-events:none;z-index:10001;transform:translate(-50%,-50%);box-shadow:0 0 12px var(--yellow-light);}

/* NAV */
.navbar{position:fixed;top:0;left:0;right:0;z-index:100;padding:2rem 0;transition:padding .3s,background .3s;}
.navbar.scrolled{padding:.875rem 0;background:rgba(2,2,2,.96);border-bottom:1px solid rgba(255,255,255,.05);}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;}
.nav-logo{display:flex;align-items:center;gap:.75rem;cursor:none;}
.nav-logo-img{width:42px;height:42px;border-radius:10px;border:1.5px solid var(--yellow);object-fit:cover;transition:transform .2s;}
.nav-logo:hover .nav-logo-img{transform:scale(1.08);}
.nav-brand{font-family:var(--font-display);font-size:2.5rem;font-style:italic;}
.nav-links{display:flex;align-items:center;gap:2.5rem;}
.nav-link{font-size:1rem;font-weight:900;text-transform:uppercase;letter-spacing:.45em;font-style:italic;color:var(--gray-4);transition:color .2s;position:relative;padding-bottom:.2rem;}
.nav-link:hover{color:var(--white);}
.nav-link.active{color:var(--yellow);}
.nav-link.active::after{content:'';position:absolute;bottom:-2px;left:0;width:100%;height:2px;background:var(--yellow);border-radius:2px;}
.nav-right{display:flex;align-items:center;gap:.75rem;}
.lang-select{background:rgba(255,255,255,.05);color:var(--white);font-size:1rem;font-weight:900;text-transform:uppercase;border:1px solid rgba(255,255,255,.1);padding:.35rem .6rem;border-radius:.75rem;outline:none;cursor:none;}
.lang-select option{background:#000;}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;padding:.8rem 1.75rem;background:var(--yellow);color:var(--black);font-family:var(--font-body);font-weight:900;font-size:.95rem;text-transform:uppercase;letter-spacing:.12em;border-radius:1.25rem;transition:var(--tr);box-shadow:var(--shadow-yellow);cursor:none;}
.btn-primary:hover{background:var(--white);}
.btn-sm{padding:0.5rem;font-size:1rem;border-radius:.875rem;letter-spacing:0.1rem;font-style:italic;}
.btn-xl{padding:1.1rem 2.25rem;font-size:1.25rem;border-radius:2rem;}
.btn-xl svg{width:24px;height:24px;}
.btn-glass{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;padding:1.1rem 2.25rem;background:rgba(8,8,4,.85);color:var(--white);font-family:var(--font-body);font-weight:900;font-size:1.25rem;text-transform:uppercase;letter-spacing:.12em;border-radius:2rem;border:1px solid rgba(255,255,255,.08);transition:var(--tr);cursor:none;}
.btn-glass:hover{background:rgba(245,158,11,.1);}
.btn-glass svg{width:24px;height:24px;}
.btn-shine{position:relative;overflow:hidden;}
.btn-shine::after{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:linear-gradient(45deg,transparent,rgba(255,255,255,.3),transparent);transition:.6s;}
.btn-shine:hover::after{left:100%;}

/* GLASS CARD */
.glass-card{background:rgba(10,10,6,.95);border-radius:2rem;border:1px solid rgba(255,255,255,.06);padding:2.25rem;box-shadow:var(--shadow-deep);}

/* HOVER LIFT */
.hover-lift{transition:transform .3s,box-shadow .3s;}
.hover-lift:hover{transform:translateY(-8px) scale(1.01);box-shadow:0 16px 32px rgba(0,0,0,.5);}

/* SCROLL FADE */
.scroll-fade{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.scroll-fade.visible{opacity:1;transform:translateY(0);}

/* ANIMATE PAGE */
.animate-page{animation:fade-in-up .6s ease forwards;}
@keyframes fade-in-up{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}

/* VIEWS */
.view{display:none;}
.view.active{display:block;}

/* MAIN */
.main-content{padding-top:11rem;padding-bottom:2rem;flex:1;}

/* HERO */
.hero{display:flex;flex-direction:column;align-items:center;text-align:center;padding:2rem 0.1rem 7rem;}
.hero-badge{display:inline-flex;align-items:center;gap:.55rem;background:rgba(245,158,11,.07);border:1px solid rgba(245,158,11,.25);padding:.5rem 1.5rem;border-radius:1.25rem;margin-bottom:2.5rem;}
.hero-badge .badge-icon{width:15px;height:15px;color:var(--yellow);}
.hero-badge span{font-size:.88rem;font-weight:900;text-transform:uppercase;letter-spacing:.3em;color:#fcd34d;font-style:italic;}
.hero-title{font-family:var(--font-display);font-size:clamp(4.5rem,19vw,12rem);line-height:.85;letter-spacing:.01em;text-transform:uppercase;font-style:italic;margin-bottom:0rem;padding-bottom:0em;overflow:visible;}
.text-gradient{background:linear-gradient(135deg,#f59e0b 0%,#fbbf24 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:inline-block;padding-bottom:0.1em;padding-right:0.15em;}
.hero-sub{font-size:clamp(1.3rem,2.5vw,1.7rem);color:var(--gray-4);max-width:700px;margin:0 auto 4rem;line-height:1.7;font-weight:600;font-style:italic;}
.hero-buttons{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1.25rem;width:100%;max-width:540px;}
.hero-buttons .btn-primary,.hero-buttons .btn-glass{flex:1;min-width:180px;justify-content:center;}

/* HOW IT WORKS */
.how-section{padding:5rem 0;}
.section-header{text-align:center;margin-bottom:4rem;}
.section-title{font-family:var(--font-display);font-size:clamp(2.5rem,6vw,5rem);text-transform:uppercase;font-style:italic;letter-spacing:.02em;margin-bottom:.75rem;}
.section-sub{font-size:1.4rem;color:var(--gray-4);font-weight:700;font-style:italic;}
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.75rem;max-width:1100px;margin:0 auto;}
.step-card{background:rgba(10,10,6,.95);border-radius:1.75rem;padding:3.5rem;border:1px solid rgba(255,255,255,.04);box-shadow:var(--shadow-deep);}
.step-icon{width:52px;height:52px;background:var(--yellow);border-radius:.875rem;display:flex;align-items:center;justify-content:center;margin-bottom:1.75rem;color:var(--black);}
.step-icon svg{width:26px;height:26px;}
.step-title{font-size:1.25rem;font-weight:900;text-transform:uppercase;font-style:italic;margin-bottom:.75rem;transition:color .2s;}
.step-card:hover .step-title{color:var(--yellow);}
.step-text{font-size:1.15rem;color:var(--gray-4);line-height:1.7;font-weight:600;font-style:italic;}

/* PRODUCT CARDS */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;max-width:1400px;margin:0 auto;padding:0 1rem;}
.product-card{background:rgba(10,10,6,.95);border-radius:1.75rem;overflow:hidden;border:1px solid rgba(255,255,255,.05);cursor:none;display:flex;flex-direction:column;transition:border-color .3s,transform .3s,box-shadow .3s;}
.product-card:hover{border-color:rgba(245,158,11,.2);transform:translateY(-8px);box-shadow:0 16px 40px rgba(0,0,0,.6);}
.product-img-wrap{position:relative;aspect-ratio:16/10;overflow:hidden;}
.product-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.product-card:hover .product-img-wrap img{transform:scale(1.06);}
.product-img-overlay{position:absolute;inset:0;background:linear-gradient(to top,#000 0%,transparent 55%);opacity:.9;}
.product-price-badge{font-family:var(--font-display);font-size:2.75rem;font-style:italic;}
.product-price-wrap{position:absolute;bottom:1.75rem;left:2rem;display:flex;flex-direction:column;align-items:flex-start;gap:0.1rem;}
.product-starts-at{font-size:0.68rem;font-weight:900;text-transform:uppercase;letter-spacing:0.2em;color:rgba(255,255,255,0.55);font-style:italic;line-height:1;}
.product-body{padding:2.5rem;display:flex;flex-direction:column;gap:1.25rem;}
.product-header{display:flex;align-items:center;gap:.875rem;}
.product-icon-wrap{width:46px;height:46px;background:rgba(245,158,11,.08);border:1px solid rgba(245,158,11,.22);border-radius:.75rem;display:flex;align-items:center;justify-content:center;color:var(--yellow);flex-shrink:0;}
.product-icon-wrap svg{width:22px;height:22px;}
.product-name{font-size:1.7rem;font-weight:900;text-transform:uppercase;font-style:italic;letter-spacing:-.01em;transition:color .2s;}
.product-card:hover .product-name{color:var(--yellow);}
.product-footer{display:flex;align-items:center;justify-content:space-between;color:var(--yellow);transition:transform .3s;}
.product-card:hover .product-footer{transform:translateX(.75rem);}
.product-cta-label{font-size:.85rem;font-weight:900;text-transform:uppercase;letter-spacing:.3em;font-style:italic;}
.product-footer svg{width:22px;height:22px;}

/* PRODUCT DETAIL */
.product-detail-wrap{padding:2.5rem 0;max-width:1100px;margin:0 auto;}
.back-btn{display:inline-flex;align-items:center;gap:.6rem;color:var(--gray-4);font-size:.92rem;font-weight:900;text-transform:uppercase;letter-spacing:.25em;font-style:italic;margin-bottom:2.5rem;transition:color .2s;cursor:none;}
.back-btn:hover{color:var(--yellow);}
.back-btn svg{width:17px;height:17px;}
.detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;}
.detail-img{border-radius:1.5rem;overflow:hidden;border:1px solid rgba(245,158,11,.22);box-shadow:0 0 50px rgba(0,0,0,.8);aspect-ratio:1;}
.detail-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s;}
.detail-img-wrap:hover .detail-img img{transform:scale(1.04);}

/* ── New wide 16:9 detail banner ── */
.detail-banner-wide{width:100%;max-width:960px;margin:0 auto 2.5rem;}
.detail-img-wide{border-radius:1.5rem;overflow:hidden;border:1px solid rgba(245,158,11,.22);box-shadow:0 0 50px rgba(0,0,0,.8);aspect-ratio:16/9;width:100%;}
.detail-img-wide img{width:100%;height:100%;object-fit:cover;transition:transform .8s;}
.detail-banner-wide:hover .detail-img-wide img{transform:scale(1.04);}
.detail-info-below{max-width:960px;margin:0 auto;display:flex;flex-direction:column;}
.detail-right{display:flex;flex-direction:column;}
.product-tags{display:flex;gap:.55rem;flex-wrap:wrap;margin-bottom:1.1rem;}
.product-tag{font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.18em;background:rgba(245,158,11,.07);border:1px solid rgba(245,158,11,.22);color:var(--yellow);padding:.35rem .85rem;border-radius:.6rem;}
.detail-product-name{font-family:var(--font-display);font-size:clamp(2.5rem,5vw,4.5rem);text-transform:uppercase;font-style:italic;margin-bottom:.5rem;}
.detail-platform{font-size:1.05rem;color:var(--gray-4);font-weight:700;margin-bottom:2rem;display:flex;align-items:center;gap:.4rem;}
.detail-desc{font-size:1.05rem;color:rgba(209,213,219,0.8);font-weight:600;font-style:italic;line-height:1.8;margin-top:1.25rem;padding:1.5rem 1.75rem;background:rgba(15,12,6,0.55);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,0.08);border-radius:1.25rem;box-shadow:0 4px 24px rgba(0,0,0,0.35),inset 0 1px 0 rgba(255,255,255,0.04);}
.detail-desc-sections{margin-top:1.25rem;display:flex;flex-direction:column;gap:0;max-height:520px;overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(245,158,11,0.3) transparent;padding-right:4px;}
.detail-desc-sections::-webkit-scrollbar{width:4px;}
.detail-desc-sections::-webkit-scrollbar-thumb{background:rgba(245,158,11,0.35);border-radius:99px;}
.dds-block{padding:0.75rem 0;border-bottom:1px solid rgba(255,255,255,0.05);}
.dds-block:last-child{border-bottom:none;}
.dds-label{font-size:0.72rem;font-weight:900;text-transform:uppercase;letter-spacing:0.25em;color:var(--yellow);margin-bottom:0.45rem;font-style:italic;}
.dds-list{list-style:none;display:flex;flex-direction:column;gap:0.25rem;}
.dds-list li{display:flex;align-items:center;gap:0.5rem;font-size:0.88rem;color:rgba(209,213,219,0.75);line-height:1.4;}
.dds-dot{width:5px;height:5px;border-radius:50%;background:rgba(245,158,11,0.6);flex-shrink:0;}
.price-options-label{font-size:.88rem;font-weight:900;text-transform:uppercase;letter-spacing:.2em;color:var(--gray-4);margin-bottom:.75rem;margin-left:.4rem;}
.price-options{display:flex;flex-direction:column;gap:.6rem;margin-bottom:2rem;}
.price-option{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 1.4rem;border-radius:.75rem;border:2px solid rgba(255,255,255,.06);background:rgba(255,255,255,.02);transition:var(--tr);cursor:none;}
.price-option:hover{border-color:rgba(245,158,11,.35);}
.price-option.selected{background:var(--yellow);border-color:var(--yellow);box-shadow:var(--shadow-yellow);}
.price-option-label{font-size:1rem;font-weight:900;text-transform:uppercase;font-style:italic;}
.price-option.selected .price-option-label{color:var(--black);}
.price-option-price{font-size:1.25rem;font-weight:900;color:var(--yellow);}
.price-option.selected .price-option-price{color:var(--black);}

/* BUY BUTTON */
.buy-btn{width:100%;padding:1.4rem 2rem;border-radius:1.25rem;font-family:var(--font-body);font-size:1.6rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em;background:var(--yellow);color:var(--black);display:flex;align-items:center;justify-content:center;gap:.875rem;transition:var(--tr);box-shadow:var(--shadow-yellow);cursor:none;}
.buy-btn:hover{background:var(--white);transform:scale(1.02);}
.buy-btn svg{width:26px;height:26px;}

/* STATUS */
.status-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.75rem;max-width:900px;margin:0 auto;}
.status-card{background:rgba(10,10,6,.95);border-radius:1.75rem;padding:2.25rem;border:1px solid rgba(255,255,255,.05);box-shadow:var(--shadow-deep);}
.status-card-header{display:flex;align-items:center;gap:.875rem;margin-bottom:1.25rem;}
.status-icon-wrap{width:48px;height:48px;background:rgba(245,158,11,.08);border:1px solid rgba(245,158,11,.2);border-radius:.875rem;display:flex;align-items:center;justify-content:center;}
.status-icon-wrap svg{width:21px;height:21px;}
.status-product-name{font-size:1.2rem;font-weight:900;text-transform:uppercase;font-style:italic;}
.status-platform{font-size:.88rem;color:var(--gray-4);font-weight:700;}
.status-badges{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:1.2rem;}
.status-badge{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .85rem;border-radius:.6rem;font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.08em;}
.badge-green{background:rgba(34,197,94,.08);border:1px solid rgba(34,197,94,.22);color:#4ade80;}
.badge-icon-sm{width:11px;height:11px;}
.pulse-dot{width:7px;height:7px;background:#22c55e;border-radius:50%;animation:pdot 2s infinite;}
@keyframes pdot{0%,100%{opacity:1;}50%{opacity:.4;}}
.status-info-row{display:flex;justify-content:space-between;align-items:center;padding-top:.875rem;border-top:1px solid rgba(255,255,255,.05);}
.status-info-label{font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.15em;color:var(--gray-4);}
.status-info-value{font-size:.88rem;font-weight:700;color:var(--gray-5);}

/* REVIEWS */
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;max-width:1100px;margin:0 auto;}
.review-card{background:rgba(10,10,6,.95);border-radius:1.75rem;padding:3rem;border:1px solid rgba(255,255,255,.05);box-shadow:var(--shadow-deep);}
.review-stars{color:var(--yellow);font-size:1.15rem;letter-spacing:.12em;margin-bottom:.875rem;}
.review-text{color:var(--gray-4);font-size:1.15rem;line-height:1.8;font-weight:600;font-style:italic;margin-bottom:1.5rem;}
.review-author{display:flex;align-items:center;gap:.75rem;}
.review-avatar{width:38px;height:38px;background:rgba(245,158,11,.1);border:1px solid rgba(245,158,11,.22);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:.95rem;color:var(--yellow);flex-shrink:0;}
.review-name{font-weight:900;font-size:1.1rem;text-transform:uppercase;font-style:italic;}
.review-product{font-size:.92rem;color:var(--gray-4);font-weight:700;}

/* FOOTER */
.footer{padding:.875rem 0;background:rgba(0,0,0,.97);border-top:1px solid rgba(255,255,255,.05);}
.footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;}
.footer-brand{display:flex;align-items:center;gap:.5rem;}
.footer-logo{width:22px;height:22px;border-radius:.3rem;border:1px solid var(--yellow);object-fit:cover;}
.footer-brand-name{font-family:var(--font-display);font-size:1.05rem;font-style:italic;text-transform:uppercase;}
.footer-center{display:flex;align-items:center;gap:.75rem;}
.footer-right{display:flex;align-items:center;gap:.75rem;}
.footer-link{display:inline-flex;align-items:center;gap:.35rem;color:var(--gray-4);font-weight:900;font-style:italic;font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;transition:color .2s;}
.footer-link:hover{color:var(--yellow);}
.footer-link svg{width:11px;height:11px;}
.footer-email{color:var(--yellow);font-weight:900;font-size:.82rem;font-style:italic;transition:color .2s;}
.footer-email:hover{color:var(--white);}
.footer-sep{color:rgba(255,255,255,.15);font-size:.82rem;}
.footer-copy{text-align:center;font-size:.7rem;color:rgba(255,255,255,.1);font-weight:900;text-transform:uppercase;letter-spacing:.35em;font-style:italic;padding-top:.6rem;border-top:1px solid rgba(255,255,255,.04);margin-top:.6rem;}

/* Legal bar */
.footer-legal-bar{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;padding:.875rem 2.5rem;border-top:1px solid rgba(255,255,255,.06);margin-top:.5rem;}
.footer-legal-copy{font-size:.6rem;font-weight:900;text-transform:uppercase;letter-spacing:.3em;color:rgba(255,255,255,.25);font-style:italic;}
.footer-legal-links{display:flex;align-items:center;gap:.5rem;}
.footer-legal-sep{color:rgba(255,255,255,.15);font-size:.7rem;}
.footer-legal-btn{display:inline-flex;align-items:center;gap:.4rem;padding:.4rem .9rem;border-radius:.6rem;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.45);font-family:var(--font-body);font-size:.82rem;font-weight:900;font-style:italic;text-transform:uppercase;letter-spacing:.1em;transition:all .2s;cursor:pointer;}
.footer-legal-btn:hover{background:rgba(245,158,11,.08);border-color:rgba(245,158,11,.25);color:var(--yellow);}
.footer-legal-btn svg{width:12px;height:12px;}

/* RESPONSIVE */
@media(max-width:1024px){
  .detail-grid{grid-template-columns:1fr;}
  .footer-inner{flex-wrap:wrap;gap:1rem;}
}

@media(max-width:768px){
  .container{padding:0 1rem;}
  
  /* Disable custom cursor on touch */
  body{cursor:auto !important;}
  *{cursor:auto !important;}
  button,a,.product-card,.price-option,.home-variant,.hpc-buy,.buy-btn,.back-btn,.nav-logo,.oos-close-x,.oos-discord-btn,.oos-close-btn,.oos-overlay{cursor:pointer !important;}
  .mouse-flare,.cursor-trail{display:none !important;}
  
  /* NAV */
  .nav-links{display:none !important;}
  .nav-shop-btn{display:none !important;}
  .nav-brand{font-size:1.6rem;}
  .nav-logo-img{width:32px;height:32px;}
  .navbar{padding:.85rem 0;}
  .navbar.scrolled{padding:.6rem 0;}
  .lang-select{font-size:.8rem;padding:.2rem .4rem;border-radius:.5rem;}
  .nav-right{gap:.5rem;}
  
  /* HAMBURGER */
  .hamburger{display:flex !important;}
  
  /* MAIN */
  .main-content{padding-top:4.5rem;padding-bottom:1rem;}
  
  /* HERO */
  .hero{padding:1.5rem 0.5rem 3.5rem;}
  .hero-title{font-size:clamp(3rem,14vw,5rem);}
  .hero-sub{font-size:1.05rem;margin-bottom:2rem;padding:0 0.5rem;line-height:1.5;}
  .hero-buttons{flex-direction:column;gap:.75rem;max-width:100%;padding:0 0.5rem;}
  .hero-buttons .btn-primary,.hero-buttons .btn-glass{width:100%;min-width:unset;padding:.85rem 1.5rem;font-size:1.05rem;border-radius:1.15rem;}
  
  /* SECTIONS */
  .section-header{margin-bottom:2rem;}
  .section-title{font-size:clamp(2rem,8vw,3rem);}
  .section-sub{font-size:1.05rem;}
  
  /* STEPS */
  .how-section{padding:0 0 2rem;}
  .steps-grid{grid-template-columns:1fr;gap:1rem;padding:0 0.5rem;}
  .step-card{padding:1.75rem 1.5rem;border-radius:1.25rem;}
  .step-icon{width:42px;height:42px;margin-bottom:1rem;}
  .step-title{font-size:1.05rem;}
  .step-text{font-size:.95rem;}
  
  /* HOME PRODUCTS - vertical grid on mobile */
  .home-products{padding:0 0 2.5rem;}
  .home-products-scroll-wrap{padding:0;}
  .home-products-grid{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:.75rem;
    overflow-x:visible !important;
    padding:0.75rem 1rem !important;
    cursor:auto;
  }
  .home-products-grid .home-product-card{
    min-width:unset !important;
    max-width:unset !important;
    flex-shrink:unset;
  }
  .home-arrow{display:none !important;}

  /* Hide complex elements on mobile — simple cards only */
  .home-product-card .hpc-variants,
  .home-product-card .hpc-variants-label,
  .home-product-card .hpc-buttons-row,
  .home-product-card .hpc-buy{display:none !important;}
  .home-product-card .product-body{padding:.75rem 1rem;gap:.4rem;}
  .home-product-card .product-name{font-size:1rem;}
  .home-product-card .product-price-badge{font-size:1.5rem;}
  .home-product-card .product-price-wrap{bottom:.75rem;left:.75rem;}
  .home-product-card .product-starts-at{font-size:.58rem;}

  /* PRODUCT CARDS GRID */
  .products-grid{grid-template-columns:repeat(2,1fr);max-width:100%;padding:0 .75rem;gap:1rem;}
  .product-body{padding:1.25rem;}
  .product-name{font-size:1.2rem;}
  .product-price-badge{font-size:1.8rem;}
  .product-price-wrap{bottom:1rem;left:1rem;}
  
  /* PRODUCT DETAIL */
  .product-detail-wrap{padding:1rem .75rem;}
  .detail-grid{grid-template-columns:1fr;gap:1.5rem;}
  .detail-product-name{font-size:clamp(1.8rem,6vw,2.8rem);}
  .detail-right{gap:.75rem;}
  .price-options{gap:.5rem;margin-bottom:1.25rem;}
  .price-option{padding:.85rem 1rem;}
  .buy-btn{padding:1rem 1.25rem;font-size:1.2rem;border-radius:1rem;}
  .back-btn{margin-bottom:1.25rem;font-size:.85rem;}
  .detail-desc{padding:.85rem 1rem;font-size:.95rem;}
  .detail-img{border-radius:1rem;}
  .detail-banner-wide{margin:0 auto 1.5rem;}
  .detail-img-wide{aspect-ratio:16/7;border-radius:1rem;}
  
  /* FEATURES */
  .feat-section{margin:1.5rem auto 0;padding:0 0.25rem 1.5rem;}
  .feat-grid{grid-template-columns:1fr 1fr;gap:.6rem;}
  .feat-block-header{padding:.85rem 1rem;gap:.5rem;}
  .feat-block-label{font-size:.72rem;}
  .feat-list{padding:.85rem 1rem;}
  .feat-item{font-size:.85rem;gap:.4rem;}
  .feat-info-row{padding:.6rem .75rem;gap:.4rem;}
  .feat-info-item{padding:.35rem .6rem;font-size:.72rem;}
  
  /* STATUS */
  .status-page{padding:0 0.5rem 3rem;}
  .st-grid{grid-template-columns:1fr 1fr;gap:.6rem;}
  .st-visual-name{font-size:.9rem;}
  .st-visual-body{padding:.5rem .65rem;gap:.4rem;}
  .st-badge{font-size:.6rem;padding:.2rem .5rem;gap:.25rem;}
  .st-vtag{font-size:.5rem;padding:.15rem .35rem;}
  .st-ac-row{flex-direction:column;gap:.6rem;}
  .st-ac-chip{padding:.75rem 1rem;}
  .st-ac-name{font-size:.85rem;}
  .st-ac-logo{width:30px;height:30px;}
  
  /* MEDIA */
  .media-page{padding:0 0.25rem 0;}
  .media-grid{grid-template-columns:1fr;max-width:100%;gap:1rem;}
  .media-card-body{padding:1.1rem;}
  .media-card-title{font-size:1rem;}
  .media-card-desc{font-size:.9rem;}
  .media-discord-cta{padding:1.75rem 1rem;border-radius:1.15rem;}
  .media-discord-cta p{font-size:.95rem;}
  
  /* LEGAL */
  .legal-page{padding:0 0.5rem 3rem;}
  .legal-section-header{padding:.85rem 1rem;}
  .legal-section-body{padding:1rem 1.25rem;font-size:.95rem;}
  .privacy-data-grid{grid-template-columns:1fr;}
  
  /* LICENSE POPUP */
  .lic-popup{max-width:95vw;padding:1.5rem 1.25rem;}
  .lic-product-name{font-size:1.5rem;}
  .lic-input{font-size:1rem;padding:.75rem 1rem;}
  .lic-btn{padding:.75rem 1.5rem;font-size:.9rem;}
  .lic-actions{flex-direction:column;gap:.5rem;}
  .lic-action-btn{width:100%;justify-content:center;padding:.7rem 1rem;font-size:.85rem;}
  
  /* OUT OF STOCK POPUP */
  .oos-popup{padding:2rem 1.5rem 1.75rem;border-radius:1.5rem;max-width:90vw;}
  .oos-title{font-size:1.5rem;}
  .oos-text{font-size:.9rem;}
  .oos-icon-wrap{width:60px;height:60px;margin-bottom:1.25rem;}
  
  /* FOOTER */
  .footer{padding:.75rem 0;}
  .footer-inner{flex-direction:column;align-items:center;text-align:center;gap:.5rem;}
  .footer-center{flex-wrap:wrap;justify-content:center;gap:.5rem;}
  .footer-right{flex-wrap:wrap;justify-content:center;gap:.5rem;}
  .footer-brand-name{font-size:.9rem;}
  .footer-link{font-size:.75rem;}
  .footer-email{font-size:.75rem;}
  .footer-copy{font-size:.55rem;letter-spacing:.18em;}
}

@media(max-width:480px){
  .container{padding:0 .65rem;}
  .hero-title{font-size:clamp(2.5rem,13vw,3.5rem);}
  .hero-sub{font-size:.95rem;}
  .section-title{font-size:clamp(1.6rem,7vw,2.2rem);}
  .feat-grid{grid-template-columns:1fr;}
  .product-body{padding:1rem;}
  .product-name{font-size:1.05rem;}
  .step-card{padding:1.5rem 1.15rem;}
  .glass-card{padding:1.25rem;border-radius:1.15rem;}
  .products-grid{grid-template-columns:1fr;padding:0 .5rem;}
  .home-products-grid{grid-template-columns:1fr 1fr;gap:.6rem;padding:0.5rem .65rem !important;}
  .home-products-grid .home-product-card{min-width:unset !important;max-width:unset !important;}
  .nav-brand{font-size:1.4rem;}
  .nav-logo-img{width:28px;height:28px;}
  .st-visual-name{font-size:.8rem;}
  .st-visual-body{padding:.4rem .5rem;}
  .lic-popup{padding:1.25rem 1rem;}
  .oos-popup{padding:1.5rem 1.25rem;max-width:95vw;}

  /* PRODUCT DETAIL MOBILE */
  .detail-banner-wide{margin:0 auto 1rem;}
  .detail-img-wide{aspect-ratio:16/6;border-radius:.85rem;}
  .detail-product-name{font-size:clamp(1.5rem,7vw,2.2rem);}
  .price-options-label{font-size:.78rem;margin-bottom:.5rem;}
  .price-option{padding:.7rem .85rem;}
  .price-option-label{font-size:.88rem;}
  .price-option-price{font-size:1.05rem;}
  .buy-btn{padding:.85rem 1rem;font-size:1.05rem;border-radius:.85rem;gap:.5rem;}
  .buy-btn svg{width:20px;height:20px;}
  .detail-platform{font-size:.92rem;margin-bottom:1.25rem;}
  .product-tag{font-size:.62rem;padding:.25rem .65rem;}
}

/* ═══ HAMBURGER BUTTON ═══ */
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width:36px;height:36px;
  gap:5px;
  background:none;border:none;
  cursor:pointer;padding:4px;
  z-index:200;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:var(--white);border-radius:2px;
  transition:all .3s ease;
}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ═══ GROUP MODAL ═══ */
.gm-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.gm-overlay.active { opacity: 1; pointer-events: auto; }
.gm-popup {
  position: relative;
  background: linear-gradient(165deg, rgba(15,15,10,0.98), rgba(8,8,4,0.99));
  border: 1.5px solid rgba(245,158,11,0.18);
  border-radius: 1.75rem; padding: 2.5rem 2rem 2rem;
  max-width: 600px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 60px rgba(245,158,11,0.06);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gm-overlay.active .gm-popup { transform: scale(1) translateY(0); }
.gm-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.625rem; color: var(--gray-4); transition: all 0.2s; cursor: pointer;
}
.gm-close:hover { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); color: var(--yellow); }
.gm-title {
  font-family: var(--font-display); font-size: 2.5rem; font-style: italic;
  text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 0.25rem;
}
.gm-sub {
  font-size: 0.8rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--gray-4); font-style: italic; margin-bottom: 1.5rem;
}
.gm-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.gm-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 1rem; padding: 0.75rem; cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.gm-card:hover {
  border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.04);
  transform: translateX(4px);
}
.gm-card-img {
  position: relative; width: 110px; flex-shrink: 0;
  aspect-ratio: 16/10; border-radius: 0.65rem; overflow: hidden;
}
.gm-card-img img { width: 100%; height: 100%; object-fit: cover; }
.gm-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.gm-card-price {
  position: absolute; bottom: 0.4rem; left: 0.5rem;
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.gm-card-body { flex: 1; min-width: 0; }
.gm-card-name {
  font-size: 1.1rem; font-weight: 900; font-style: italic;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.3rem;
}
.gm-card-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; }
.gm-tag {
  font-size: 0.6rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-4);
  background: rgba(255,255,255,0.05); border-radius: 0.3rem; padding: 0.15rem 0.5rem;
}
.gm-card-arrow {
  flex-shrink: 0; color: var(--yellow); opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}
.gm-card:hover .gm-card-arrow { opacity: 1; transform: translateX(3px); }

@media (max-width: 640px) {
  .gm-popup { padding: 2rem 1.25rem 1.5rem; border-radius: 1.25rem; max-width: 95vw; }
  .gm-title { font-size: 2rem; }
  .gm-card-img { width: 80px; }
  .gm-card-name { font-size: 0.95rem; }
  .gm-card { padding: 0.6rem; gap: 0.75rem; }
}

/* ═══ MOBILE MENU ═══ */
.mobile-menu{
  position:fixed;top:0;left:0;right:0;bottom:0;
  z-index:99;
  background:rgba(2,2,2,.97);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:1rem;
  padding:2rem;
  opacity:0;pointer-events:none;
  transform:translateY(-20px);
  transition:all .35s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open{
  opacity:1;pointer-events:auto;
  transform:translateY(0);
}
.mobile-nav-link{
  font-family:var(--font-display);
  font-size:2.25rem;font-style:italic;
  text-transform:uppercase;
  color:var(--gray-4);
  background:none;border:none;
  transition:color .2s;
  letter-spacing:.05em;
}
.mobile-nav-link.active{color:var(--yellow);}
.mobile-nav-link:hover{color:var(--white);}
.mobile-shop-btn{
  margin-top:1rem;
  padding:.9rem 2.5rem;
  font-size:1.1rem;
  border-radius:1.25rem;
}
body.mobile-menu-open{overflow:hidden;}

/* ═══ OUT OF STOCK POPUP ═══ */
.oos-overlay{
  position:fixed;inset:0;z-index:10000;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;
  padding:1.5rem;
  opacity:0;transition:opacity .3s ease;
  pointer-events:none;
  cursor:none;
}
.oos-overlay.active{opacity:1;pointer-events:auto;}
.oos-popup{
  position:relative;
  background:linear-gradient(165deg,rgba(15,15,10,.98) 0%,rgba(8,8,4,.99) 100%);
  border:1.5px solid rgba(245,158,11,.2);
  border-radius:2rem;
  padding:3rem 2.5rem 2.5rem;
  max-width:440px;width:100%;
  text-align:center;
  box-shadow:0 32px 80px rgba(0,0,0,.85),0 0 60px rgba(245,158,11,.08),inset 0 1px 0 rgba(255,255,255,.05);
  transform:scale(.88) translateY(30px);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
  cursor:none;
}
.oos-overlay.active .oos-popup{
  transform:scale(1) translateY(0);
}
.oos-close-x{
  position:absolute;top:1.1rem;right:1.1rem;
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:.625rem;
  color:var(--gray-4);
  transition:all .2s;
  cursor:none;
}
.oos-close-x:hover{
  background:rgba(245,158,11,.1);
  border-color:rgba(245,158,11,.25);
  color:var(--yellow);
}
.oos-icon-wrap{
  width:76px;height:76px;
  background:rgba(245,158,11,.06);
  border:1.5px solid rgba(245,158,11,.2);
  border-radius:1.5rem;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.75rem;
  color:var(--yellow);
  animation:oos-pulse 2.5s ease-in-out infinite;
}
@keyframes oos-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,.25);}
  50%{box-shadow:0 0 0 16px rgba(245,158,11,0);}
}
.oos-title{
  font-family:var(--font-display);
  font-size:2.75rem;font-style:italic;
  text-transform:uppercase;
  margin-bottom:.35rem;
  letter-spacing:.02em;
}
.oos-product{
  font-size:.88rem;font-weight:900;
  text-transform:uppercase;font-style:italic;
  color:var(--yellow);letter-spacing:.2em;
  margin-bottom:1.25rem;
  opacity:.85;
}
.oos-divider{
  width:60px;height:2px;
  background:linear-gradient(90deg,transparent,var(--yellow),transparent);
  margin:0 auto 1.25rem;
  opacity:.5;
}
.oos-text{
  font-size:1.05rem;font-weight:600;
  font-style:italic;color:var(--gray-4);
  line-height:1.75;margin-bottom:2rem;
  max-width:340px;margin-left:auto;margin-right:auto;
}
.oos-buttons{
  display:flex;flex-direction:column;gap:.6rem;
}
.oos-discord-btn{
  padding:1rem 1.5rem;
  font-size:.92rem;
  border-radius:1.15rem;
  justify-content:center;
  gap:.65rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-style:italic;
  cursor:none;
}
.oos-close-btn{
  padding:.75rem 1.5rem;
  font-size:.82rem;font-weight:900;
  text-transform:uppercase;letter-spacing:.15em;
  font-style:italic;
  color:var(--gray-4);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:.875rem;
  transition:all .2s;
  cursor:none;
}
.oos-close-btn:hover{
  background:rgba(255,255,255,.06);
  color:var(--white);
  border-color:rgba(255,255,255,.15);
}

/* Out of stock button state */
.buy-btn.oos{
  background:rgba(255,255,255,.06);
  color:var(--gray-4);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.1);
}
.buy-btn.oos:hover{
  background:rgba(245,158,11,.08);
  color:var(--yellow);
  border-color:rgba(245,158,11,.25);
  transform:none;
}

@media(max-width:768px){
  .oos-popup{padding:2.25rem 1.5rem 1.75rem;border-radius:1.5rem;max-width:360px;}
  .oos-title{font-size:2.15rem;}
  .oos-icon-wrap{width:62px;height:62px;border-radius:1.15rem;margin-bottom:1.35rem;}
  .oos-icon-wrap svg{width:28px;height:28px;}
  .oos-text{font-size:.95rem;margin-bottom:1.5rem;}
  .oos-discord-btn{padding:.85rem 1.25rem;font-size:.85rem;}
  .oos-close-x{top:.85rem;right:.85rem;width:32px;height:32px;}
}


/* ═══ HOME PRODUCTS CAROUSEL ═══ */
.home-products {
  padding: 0 0 6rem;
  max-width: 100%;
  overflow: hidden;
}
.home-products .section-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.home-products-scroll-wrap {
  position: relative;
  padding: 0.5rem 0 1.5rem;
}
.home-products-grid {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 4rem 1rem;
  cursor: grab;
  user-select: none;
}
.home-products-grid::-webkit-scrollbar { display: none; }
.home-products-grid .home-product-card {
  min-width: calc((100% - 10% - 3rem) / 3.2);
  max-width: calc((100% - 10% - 3rem) / 3.2);
  flex-shrink: 0;
}
/* Push buy button to bottom of every card */
.home-product-card .product-body {
  flex: 1; display: flex; flex-direction: column; gap: 1.25rem;
}
.home-product-card .hpc-buy {
  margin-top: auto;
}
.home-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(10,10,6,0.92);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s, opacity 0.25s;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.home-arrow-left { left: 1.25rem; }
.home-arrow-right { right: 1.25rem; }
.home-arrow:hover {
  border-color: var(--yellow);
  background: rgba(245,158,11,0.12);
  color: var(--yellow);
  transform: translateY(-50%) scale(1.08);
}
.home-arrow:active { transform: translateY(-50%) scale(0.94); }
.home-arrow.disabled { opacity: 0.2; pointer-events: none; }
.home-arrow svg { display: block; }
.hpc-variants-label {
  font-size: 0.82rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--gray-4); margin-top: 0.25rem;
}
.hpc-variants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.45rem;
}
.home-variant {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 0.625rem;
  padding: 0.45rem 0.4rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: none;
}
.home-variant:hover { border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.05); }
.home-variant.selected { border-color: var(--yellow); background: rgba(245,158,11,0.1); }
.hv-label { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-4); }
.home-variant.selected .hv-label { color: var(--yellow); }
.hv-price { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: var(--white); }
.hpc-buy {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--yellow); color: #000;
  font-family: var(--font-body); font-weight: 900;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: var(--tr); box-shadow: var(--shadow-yellow);
  cursor: none;
}
.hpc-buy:hover { background: var(--white); }
.hpc-buy svg { width: 16px; height: 16px; }
.hpc-buy.oos { background: rgba(255,255,255,0.06); color: var(--gray-4); box-shadow: none; border: 1.5px solid rgba(255,255,255,0.1); }
.hpc-buy.oos:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.hpc-buy.hpc-more { background: rgba(245,158,11,0.12); color: var(--yellow); box-shadow: none; border: 1.5px solid rgba(245,158,11,0.25); }
.hpc-buy.hpc-more:hover { background: var(--yellow); color: #000; box-shadow: var(--shadow-yellow); }

/* ── Buttons row: View More + Buy Now ── */
.hpc-buttons-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.hpc-buttons-row .hpc-buy {
  flex: 1;
  min-width: 0;
}
.hpc-view-more {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0.5rem;
  background: rgba(255,255,255,0.06);
  color: var(--gray-4);
  font-family: var(--font-body); font-weight: 900;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  transition: var(--tr);
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: none;
  white-space: nowrap;
}
.hpc-view-more:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.25); }
.hpc-view-more svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-glass-sm { backdrop-filter: blur(8px); }
@media (max-width: 900px) {
  .home-products-grid { padding: 1rem 3rem 1rem; }
  .home-products-grid .home-product-card { min-width: calc((100% - 8% - 2rem) / 2.2); max-width: calc((100% - 8% - 2rem) / 2.2); }
  .home-arrow { width: 38px; height: 38px; }
  .home-arrow-left { left: 0.75rem; }
  .home-arrow-right { right: 0.75rem; }
}
@media (max-width: 640px) {
  .home-products-grid { padding: 1rem 2.5rem 1rem; }
  .home-products-grid .home-product-card { min-width: calc((100% - 8% - 1rem) / 1.6); max-width: calc((100% - 8% - 1rem) / 1.6); }
  .home-arrow { width: 36px; height: 36px; }
  .home-arrow-left { left: 0.5rem; }
  .home-arrow-right { right: 0.5rem; }
}

/* ═══ STATUS PAGE REDESIGN ═══ */
.status-page { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 5rem; }

/* Global banner */
.st-global-banner {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.15);
  border-radius: 1rem; padding: 1rem 2rem; margin-bottom: 3rem;
}
.st-global-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 12px rgba(74,222,128,0.6); animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 8px rgba(74,222,128,0.4); } 50% { box-shadow: 0 0 20px rgba(74,222,128,0.8); } }
.st-global-text {
  font-size: 1.1rem; font-weight: 900; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.15em; color: #4ade80;
}

.st-section { margin-bottom: 3.5rem; }
.st-section-title {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.35em; color: var(--yellow);
  margin-bottom: 1.5rem; font-style: italic;
}
.st-section-title svg { width: 18px; height: 18px; }

/* Visual card grid — 4 columns */
.st-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}

/* Visual product cards: small banner + text below */
.st-visual-card {
  background: #0a0a07; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; overflow: hidden; cursor: default;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.st-visual-card:hover {
  border-color: rgba(245,158,11,0.3); transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

/* Small banner image */
.st-visual-img {
  position: relative; width: 100%; aspect-ratio: 16 / 8; overflow: hidden;
}
.st-visual-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.st-visual-card:hover .st-visual-bg { transform: scale(1.08); }
.st-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,7,0.9) 100%);
}
.st-visual-badge {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 2;
}

/* Text info below the banner — row layout with badge on right */
.st-visual-body {
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.st-visual-left { min-width: 0; }
.st-visual-name {
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
  color: #fff; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.st-visual-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.25rem; }
.st-vtag {
  font-size: 0.6rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-4);
  background: rgba(255,255,255,0.06);
  border-radius: 0.3rem; padding: 0.18rem 0.5rem;
}

/* Status badges */
.st-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem; border-radius: 0.5rem;
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
  flex-shrink: 0; backdrop-filter: blur(6px);
}
.st-badge.green { background: rgba(74,222,128,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.st-badge.yellow { background: rgba(245,158,11,0.15); color: var(--yellow); border: 1px solid rgba(245,158,11,0.25); }
.st-badge.red { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 6px currentColor; animation: pulse-glow 2s ease-in-out infinite;
}

/* Anti-cheat — single row */
.st-ac-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.st-ac-chip {
  flex: 1; min-width: 160px;
  background: #0a0a07; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.st-ac-chip:hover {
  border-color: rgba(74,222,128,0.2); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.st-ac-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.st-ac-name { font-size: 0.95rem; font-weight: 900; font-style: italic; color: var(--white); flex: 1; }

@media (max-width: 1000px) {
  .st-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 750px) {
  .st-grid { grid-template-columns: repeat(2, 1fr); }
  .st-ac-row { flex-direction: column; }
  .st-ac-chip { min-width: unset; }
}
@media (max-width: 480px) {
  .st-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .st-visual-name { font-size: 0.95rem; }
  .st-visual-body { padding: 0.5rem 0.7rem; gap: 0.5rem; }
  .st-global-banner { padding: 0.6rem 1rem; margin-bottom: 2rem; }
  .st-global-text { font-size: 0.8rem; }
}

/* ═══ MEDIA PAGE ═══ */
.media-page { max-width: 1200px; margin: 0 auto; padding: 0 1rem 0; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.media-card {
  background: rgba(10,10,6,0.95);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.media-card:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.6);
}

/* Video container — 16/9 ratio */
.media-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a06;
  overflow: hidden;
}

/* Placeholder shown when no video is embedded */
.media-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0a 0%, #1a1508 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.media-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.media-card:hover .media-placeholder-inner { opacity: 0.75; }

.media-play-icon {
  width: 52px;
  height: 52px;
  color: var(--yellow);
}

.media-slot-label {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  font-style: italic;
}

/* Actual iframe (YouTube/video embed) */
.media-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-card-body {
  padding: 2rem;
}
.media-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.media-card:hover .media-card-title { color: var(--yellow); }
.media-card-desc {
  font-size: 1.1rem;
  color: var(--gray-4);
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

/* Discord CTA at bottom of media page */
.media-discord-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(10,10,6,0.95);
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.media-discord-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gray-4);
  max-width: 560px;
}

/* Pulse dot (reuse from status) */
.pulse-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

@media (max-width: 768px) {
  .media-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 3rem; }
}

/* ═══ FEATURE SECTION ═══ */
.feat-section {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 1rem 3rem;
}

.feat-section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--yellow);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 0.55rem 1.25rem;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 2rem;
}
.feat-section-title svg { color: var(--yellow); flex-shrink: 0; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

/* ── Glass card ── */
.feat-block {
  position: relative;
  background: rgba(15, 12, 6, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.feat-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.feat-block:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── Header ── */
.feat-block-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  background: rgba(245,158,11,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.feat-block-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.25rem; right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.25), transparent);
}

.feat-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 0.625rem;
  color: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(245,158,11,0.15);
}
.feat-block-icon svg { display: block; }

.feat-block-label {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: italic;
  color: var(--white);
}

/* ── Items list ── */
.feat-list {
  list-style: none;
  padding: 1.25rem 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(209,213,219,0.7);
  line-height: 1.4;
  transition: color 0.2s;
}
.feat-block:hover .feat-item { color: rgba(209,213,219,0.85); }

.feat-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  min-width: 17px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: 0.3rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.feat-block:hover .feat-check {
  background: rgba(245,158,11,0.18);
  box-shadow: 0 0 6px rgba(245,158,11,0.2);
}
.feat-check svg { display: block; }

/* ── Info row ── */
.feat-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1.1rem 1.25rem;
  background: rgba(15, 12, 6, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}

.feat-info-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(209,213,219,0.75);
  padding: 0.5rem 1.1rem;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.14);
  border-radius: 0.625rem;
  transition: background 0.2s, color 0.2s;
}
.feat-info-item:hover {
  background: rgba(245,158,11,0.1);
  color: rgba(209,213,219,0.95);
}
.feat-info-icon {
  display: flex;
  align-items: center;
  color: var(--yellow);
}
.feat-info-icon svg { display: block; }

@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ═══ LEGAL PAGES (ToS / Privacy) ═══ */
.legal-page { max-width: 860px; margin: 0 auto; padding: 0 1.5rem 5rem; }
.legal-header { text-align: center; margin-bottom: 3.5rem; }
.legal-meta { font-size: 1rem; color: var(--gray-4); font-style: italic; font-weight: 700; margin-top: 0.5rem; }
.legal-body { display: flex; flex-direction: column; gap: 2.5rem; }
.legal-section {
  background: rgba(10,10,6,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: border-color 0.2s;
}
.legal-section:hover { border-color: rgba(245,158,11,0.15); }
.legal-section-header {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 1.25rem 2rem;
  background: rgba(245,158,11,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.legal-section-num {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--yellow); font-style: italic;
}
.legal-section-title {
  font-size: 1.1rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.05em; font-style: italic; color: var(--white);
}
.legal-section-body {
  padding: 2rem 2.25rem;
  font-size: 1.1rem; font-weight: 600; font-style: italic;
  color: rgba(209,213,219,0.85); line-height: 1.8;
}
.legal-section-body p { margin-bottom: 0.875rem; }
.legal-section-body p:last-child { margin-bottom: 0; }
.legal-section-body ul {
  list-style: none; padding: 0; margin: 0.875rem 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.legal-section-body ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: rgba(209,213,219,0.8);
}
.legal-section-body ul li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--yellow); border-radius: 50%;
  margin-top: 0.55rem; flex-shrink: 0;
}
.legal-section-body strong { color: rgba(209,213,219,0.95); font-weight: 900; }
.legal-section-body .highlight {
  background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.15);
  border-radius: 0.875rem; padding: 1rem 1.25rem; margin-top: 0.875rem;
  color: rgba(209,213,219,0.85);
}
.legal-contact-box {
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 1.5rem; padding: 2rem; text-align: center; margin-top: 2.5rem;
}
.legal-contact-box p {
  font-size: 1rem; color: rgba(209,213,219,0.75); font-style: italic; font-weight: 700; margin-bottom: 0.75rem;
}
.legal-contact-box a {
  color: var(--yellow); font-weight: 900; font-style: italic; font-size: 1.1rem; transition: color 0.2s;
}
.legal-contact-box a:hover { color: var(--white); }

/* Privacy data cards */
.privacy-data-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-top: 1.25rem;
}
.privacy-data-item {
  background: rgba(15,15,10,0.8); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; padding: 1.35rem 1.5rem;
}
.privacy-data-label {
  font-size: 0.78rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--yellow); margin-bottom: 0.5rem;
}
.privacy-data-desc {
  font-size: 1.05rem; font-weight: 600; font-style: italic;
  color: rgba(209,213,219,0.7); line-height: 1.7;
}

/* Footer legal links */
.footer-legal-links {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   DASHBOARD BUTTON (nav)
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   DASHBOARD — ALMOST FULL SCREEN CARD GRID
═══════════════════════════════════════════ */
.db-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
  backdrop-filter: blur(10px);
}
.db-overlay.open { opacity: 1; pointer-events: all; }

.db-panel-wrap {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s;
  overflow-y: auto;
}
.db-panel-wrap.open { opacity: 1; pointer-events: all; }

.db-panel {
  width: 100%;
  max-width: 1480px;
  min-height: calc(100vh - 2.5rem);
  background: #0a0a07;
  border: 1px solid rgba(245,158,11,0.14);
  border-radius: 1.5rem;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.05), 0 60px 120px rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  transform: translateY(32px) scale(0.983);
  transition: transform 0.42s cubic-bezier(0.28,0,0.16,1);
  overflow: hidden;
}
.db-panel-wrap.open .db-panel { transform: translateY(0) scale(1); }

/* ── Header ── */
.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.8rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  flex-shrink: 0;
}
.db-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.db-title-accent { color: var(--yellow); }
.db-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: none;
  flex-shrink: 0;
}
.db-close:hover {
  background: rgba(245,158,11,0.14);
  color: var(--yellow);
  border-color: rgba(245,158,11,0.6);
  transform: rotate(90deg);
}

/* ── Body ── */
.db-body {
  flex: 1;
  padding: 2.4rem 2.8rem 3rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,158,11,0.25) transparent;
}
.db-body::-webkit-scrollbar { width: 4px; }
.db-body::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.25); border-radius: 4px; }

/* ── Section label ── */
.db-section-label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 1.1rem 0.2rem;
}

/* ── Product grid ── */
.db-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-bottom: 0;
}

/* ── Card base ── */
.db-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.07);
  background: #0d0d0a;
  cursor: none;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.db-card:hover {
  border-color: rgba(245,158,11,0.55);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.12);
}

/* ── Card image ── */
.db-card-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.db-card-img-wrap.ratio-32 { padding-bottom: 66.66%; } /* 3:2 for spoofer */
.db-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25,0,0.1,1);
}
.db-card:hover .db-card-img-wrap img { transform: scale(1.07); }
.db-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,7,0.92) 0%, rgba(10,10,7,0.2) 55%, transparent 100%);
}

/* ── Card footer ── */
.db-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex: 1;
}
.db-card-name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
}
.db-card-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s, transform 0.2s;
}
.db-card:hover .db-card-arrow { color: var(--yellow); transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .db-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .db-header { padding: 1.3rem 1.6rem 1.1rem; }
  .db-body   { padding: 1.6rem 1.6rem 2.5rem; }
  .db-title  { font-size: 2.2rem; }
  .db-grid   { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .db-panel-wrap { padding: 0.75rem; }
}
@media (max-width: 600px) {
  .db-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .db-title { font-size: 1.8rem; }
  .db-header { padding: 1.1rem 1.2rem 0.9rem; }
  .db-body   { padding: 1.2rem 1.2rem 2rem; }
}

/* ═══════════════════════════════════════════
   LICENSE POPUP
═══════════════════════════════════════════ */
.lic-blur-bg {
  position: fixed;
  inset: 0;
  z-index: 1000;
  backdrop-filter: blur(12px) brightness(0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lic-blur-bg.open { opacity: 1; pointer-events: all; }

.lic-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lic-overlay.open { opacity: 1; pointer-events: all; }

.lic-popup {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #0d0d09;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 1.75rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(245,158,11,0.05);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.32,0,0.18,1);
}
.lic-overlay.open .lic-popup { transform: translateY(0) scale(1); }

.lic-close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-4);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  cursor: none;
}
.lic-close:hover { background: rgba(245,158,11,0.12); color: var(--yellow); }

/* Step 1 */
.lic-product-banner {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* default 16:9 — overridden by JS for 3:2 */
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.04);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.lic-product-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.lic-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-4);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.lic-input-wrap { margin-bottom: 0.6rem; }
.lic-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 0.875rem;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.lic-input:focus { border-color: var(--yellow); }
.lic-input.error { border-color: #ef4444; }
.lic-error {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 1.2rem;
  margin-bottom: 0.75rem;
}
.lic-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: var(--tr);
  box-shadow: var(--shadow-yellow);
  cursor: none;
}
.lic-btn:hover { background: var(--white); }

/* Step 2 — scanning */
#licStep2 { text-align: center; padding: 1rem 0; }
.lic-scan-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.lic-scan-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--yellow);
  border-right-color: rgba(245,158,11,0.3);
  animation: licSpin 0.9s linear infinite;
}
@keyframes licSpin { to { transform: rotate(360deg); } }
.lic-scan-icon { color: var(--yellow); }
.lic-scan-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.lic-scan-steps {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
}
.lic-scan-step { display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity 0.3s; }
.lic-scan-step.done { opacity: 1; color: var(--white); }
.lic-scan-step.done .lic-step-dot { background: var(--yellow); }
.lic-scan-step.fail { opacity: 1; color: #ef4444; }
.lic-scan-step.fail .lic-step-dot { background: #ef4444; }
.lic-step-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Step 3 — success */
#licStep3 { text-align: center; }
.lic-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  border: 2px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--yellow);
  box-shadow: 0 0 24px rgba(245,158,11,0.25);
}
.lic-success-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.lic-success-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.lic-key-display {
  background: rgba(245,158,11,0.06);
  border: 1.5px solid rgba(245,158,11,0.2);
  border-radius: 0.75rem;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  word-break: break-all;
}
.lic-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lic-action-btn {
  width: 100%;
  padding: 0.8rem 1.25rem;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: none;
  transition: var(--tr);
  background: var(--yellow);
  color: #000;
  box-shadow: var(--shadow-yellow);
}
.lic-action-btn:hover { background: var(--white); }
.lic-action-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.lic-action-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ── step2 fail state ── */
.lic-fail-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  border: 2px solid #ef4444;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #ef4444;
}

/* ═══════════════════════════════════════════
   GUIDES NAV BUTTON
═══════════════════════════════════════════ */
.nav-guides-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  border-radius: 0.75rem;
  background: rgba(245,158,11,0.07);
  border: 1.5px solid rgba(245,158,11,0.25);
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-style: italic;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: none;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(245,158,11,0);
}
.nav-guides-btn:hover {
  background: rgba(245,158,11,0.16);
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 18px rgba(245,158,11,0.22);
  transform: scale(1.04);
}
.nav-guides-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  box-shadow: 0 0 22px rgba(245,158,11,0.35);
}
@media (max-width: 900px) {
  .nav-guides-btn { padding: .38rem .65rem; font-size: .7rem; gap: .3rem; }
  .nav-guides-label { display: none; }
}

/* ═══════════════════════════════════════════
   GUIDES VIEW — uses .db-* classes from dashboard
   (db-grid, db-card etc already defined above)
   Extra wrapper for guides page layout
═══════════════════════════════════════════ */
.guides-view-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2.5rem 4rem;
}
.guides-section-label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 1.1rem 0.2rem;
}
/* Guide card name override — slightly bigger than dashboard */
.guide-name-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  flex: 1;
}
/* Yellow "Guide" badge on each card */
.guide-badge {
  font-family: var(--font-body);
  font-weight: 900;
  font-style: italic;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: 0.35rem;
  padding: 0.12rem 0.45rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .guides-view-inner { padding: 0 1.1rem 3rem; }
}
