@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root{
  --font-sans:'Manrope',ui-sans-serif,system-ui,-apple-system,sans-serif;
  --font-display:'Sora','Manrope',ui-sans-serif,system-ui,sans-serif;

  --color-bg:#0a0a0c;
  --color-surface:#131316;
  --color-surface-raised:#1a1a1e;
  --color-border:#28282d;
  --color-border-hover:#38383f;

  --color-text:#f5f5f6;
  --color-text-muted:#a3a3ab;
  --color-text-subtle:#6f6f77;

  --color-accent:#740f16;
  --color-accent-hover:#911620;
  --color-accent-muted:rgba(116,15,22,.18);
  --color-accent-soft:rgba(116,15,22,.1);
  --color-accent-bright:#ff4b55;

  --color-success:#22c55e;
  --color-success-muted:rgba(34,197,94,.13);

  --radius-sm:.45rem;
  --radius:.7rem;
  --radius-lg:1.1rem;
  --container:1200px;

  color-scheme:dark;
}

body{
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
html{scrollbar-width:thin;scrollbar-color:var(--color-accent) var(--color-bg)}
::-webkit-scrollbar{width:11px;height:11px}
::-webkit-scrollbar-track{background:var(--color-bg)}
::-webkit-scrollbar-thumb{background:var(--color-accent);border-radius:9999px;border:2px solid var(--color-bg)}
::-webkit-scrollbar-thumb:hover{background:var(--color-accent-hover)}
::selection{background:var(--color-accent-hover);color:#fff}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 1.25rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.bg-scene{position:fixed;inset:0;z-index:0;overflow:hidden;pointer-events:none;background:
    radial-gradient(ellipse 70% 55% at 50% -8%,rgba(116,15,22,.28),transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%,rgba(116,15,22,.14),transparent 60%)}
.bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:50px 50px;mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 40%,transparent 100%);-webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 40%,transparent 100%)}
#bg-particles{position:absolute;inset:0;width:100%;height:100%;display:block}

.announce{position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;gap:.6rem;padding:.55rem 2.4rem .55rem 1rem;text-align:center;font-size:.8rem;font-weight:700;color:#ffe4e6;background:linear-gradient(90deg,#2a0509,#5c0e14 45%,#8a1017 55%,#2a0509);background-size:220% 100%;animation:announceShift 8s ease-in-out infinite}
@media (prefers-reduced-motion: reduce){.announce{animation:none}}
@keyframes announceShift{0%,100%{background-position:0% 0}50%{background-position:100% 0}}
.announce-dot{width:6px;height:6px;border-radius:50%;background:#4ade80;flex:none;animation:announceDotPulse 1.6s ease-in-out infinite}
@keyframes announceDotPulse{0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.55)}50%{box-shadow:0 0 0 5px rgba(74,222,128,0)}}
.announce a{color:#fff;text-decoration:underline;text-underline-offset:2px;white-space:nowrap}
.announce-close{position:absolute;right:.7rem;top:50%;transform:translateY(-50%);width:22px;height:22px;display:grid;place-items:center;color:#ffe4e6;opacity:.8;border-radius:50%}
.announce-close:hover{opacity:1;background:rgba(255,255,255,.12)}
.announce.hide{display:none}

.hero-parallax{transition:opacity .1s linear,transform .1s linear}

.scroll-progress{position:fixed;top:0;left:0;height:2px;width:0;background:linear-gradient(90deg,var(--color-accent),#e0323d);z-index:200;transition:width .1s linear}
.to-top{position:fixed;right:1.25rem;bottom:1.25rem;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--color-surface-raised);border:1px solid var(--color-border);color:var(--color-text-muted);opacity:0;pointer-events:none;transform:translateY(8px);transition:opacity .2s,transform .2s,color .15s,border-color .15s;z-index:60}
.to-top.show{opacity:1;pointer-events:auto;transform:none}
.to-top:hover{color:var(--color-text);border-color:var(--color-border-hover)}

header{position:sticky;top:0;z-index:50;border-bottom:1px solid var(--color-border);background:rgba(10,10,12,.92);backdrop-filter:blur(10px)}
.header-inner{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1rem;height:3.75rem}
.logo{display:flex;align-items:center;gap:.5rem;font-family:var(--font-display);font-weight:800;font-size:1.05rem;letter-spacing:-.01em}
.logo-mark{width:38px;height:38px;object-fit:contain;flex:none;transition:transform .3s cubic-bezier(.16,.84,.44,1)}
.logo:hover .logo-mark{transform:scale(1.1) rotate(-4deg)}
.logo-word span{color:var(--color-accent)}

nav.kira-nav{display:flex;align-items:center;justify-content:center;gap:.35rem}
.kira-nav a{position:relative;padding:.5rem .8rem;border-radius:var(--radius-sm);font-size:.87rem;font-weight:600;color:var(--color-text-muted);transition:color .15s,background .15s}
.kira-nav a:hover,.kira-nav a.active{color:var(--color-text);background:rgba(255,255,255,.05)}
.kira-nav a.active::after{content:"";position:absolute;left:.8rem;right:.8rem;bottom:.15rem;height:2px;border-radius:2px;background:var(--color-accent)}

.header-actions{display:flex;align-items:center;gap:.6rem;justify-self:end}
.discord-btn{background:#5865F2}
.discord-btn:hover{background:#4a55d6}

.mobile-nav-btn{display:none;width:38px;height:38px;border-radius:var(--radius-sm);align-items:center;justify-content:center;border:1px solid var(--color-border)}
.mobile-nav-lines{display:flex;flex-direction:column;gap:4px;width:16px}
.mobile-nav-lines span{display:block;height:2px;background:var(--color-text);border-radius:2px}
.mobile-nav{display:none;flex-direction:column;padding:.5rem 1.25rem 1.25rem;border-top:1px solid var(--color-border);background:var(--color-bg)}
.mobile-nav a{padding:.75rem .25rem;border-bottom:1px solid var(--color-border);font-weight:600;font-size:.92rem;color:var(--color-text-muted)}
.mobile-nav a:last-child{border-bottom:none}
.mobile-nav.open{display:flex}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.7rem 1.3rem;border-radius:var(--radius);font-size:.88rem;font-weight:700;white-space:nowrap;transition:background .15s,border-color .15s,transform .15s,box-shadow .2s}
.btn:active{transform:scale(.98)}
.btn-primary{background:var(--color-accent);color:#fff}
.btn-primary:hover{background:var(--color-accent-hover);transform:translateY(-2px)}
.btn-secondary{border:1px solid var(--color-border);color:var(--color-text)}
.btn-secondary:hover{border-color:var(--color-border-hover);background:rgba(255,255,255,.03);transform:translateY(-2px)}
.discord-btn:hover{transform:translateY(-2px)}
.btn-sm{padding:.5rem .9rem;font-size:.8rem}
.btn-block{width:100%}
.btn[disabled]{opacity:.5;pointer-events:none}

.btn-icon{width:38px;height:38px;border-radius:var(--radius-sm);display:grid;place-items:center;border:1px solid var(--color-border);color:var(--color-text-muted);flex:none;transition:color .15s,border-color .15s}
.btn-icon:hover{color:var(--color-text);border-color:var(--color-border-hover)}
.cart-badge{position:absolute;top:-6px;right:-6px;min-width:17px;height:17px;padding:0 4px;border-radius:9999px;background:var(--color-accent);color:#fff;font-size:.62rem;font-weight:800;display:flex;align-items:center;justify-content:center;line-height:1}

.reveal-on-scroll{transition:opacity .6s cubic-bezier(.22,.61,.36,1),transform .6s cubic-bezier(.22,.61,.36,1),filter .6s cubic-bezier(.22,.61,.36,1)}
.js .reveal-on-scroll{opacity:0;transform:translateY(22px) scale(.98);filter:blur(6px)}
.reveal-on-scroll.in{opacity:1;transform:none;filter:blur(0)}
.products-grid>.reveal-on-scroll:nth-child(1),.how-grid>.reveal-on-scroll:nth-child(1),.features-grid>.reveal-on-scroll:nth-child(1){transition-delay:0s}
.products-grid>.reveal-on-scroll:nth-child(2),.how-grid>.reveal-on-scroll:nth-child(2),.features-grid>.reveal-on-scroll:nth-child(2){transition-delay:.08s}
.products-grid>.reveal-on-scroll:nth-child(3),.how-grid>.reveal-on-scroll:nth-child(3),.features-grid>.reveal-on-scroll:nth-child(3){transition-delay:.16s}
.how-grid>.reveal-on-scroll:nth-child(4),.features-grid>.reveal-on-scroll:nth-child(4){transition-delay:.24s}
.features-grid>.reveal-on-scroll:nth-child(5){transition-delay:.32s}
.features-grid>.reveal-on-scroll:nth-child(6){transition-delay:.4s}

.card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);transition:border-color .2s,transform .2s,box-shadow .2s}
.card:hover{border-color:var(--color-border-hover);transform:translateY(-3px);box-shadow:0 16px 32px -18px rgba(0,0,0,.55)}
.card.purchase-box:hover,.card.product-card-ghost:hover{transform:none;box-shadow:none}

.hero{padding:3.2rem 0 3rem;text-align:center}
.hero .container{display:flex;flex-direction:column;align-items:center}
.hero-logo{width:88px;height:88px;object-fit:contain;margin-bottom:1.1rem;animation:heroLogoFloat 5s ease-in-out infinite}
@media (prefers-reduced-motion: reduce){.hero-logo{animation:none}}
@keyframes heroLogoFloat{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-9px) rotate(-3deg)}}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem .9rem;border-radius:9999px;background:var(--color-surface-raised);border:1px solid var(--color-border);font-size:.78rem;font-weight:700;color:var(--color-text-muted);margin-bottom:1.4rem}
.hero-eyebrow-stars{color:#facc15;letter-spacing:1px;font-size:.7rem;animation:starTwinkle 2.4s ease-in-out infinite}
@keyframes starTwinkle{0%,100%{opacity:1}50%{opacity:.45}}
.hero h1{font-size:clamp(2.1rem,5.2vw,3.4rem);font-weight:800;letter-spacing:-.03em;line-height:1.08;max-width:44rem;margin-bottom:1.1rem}
.hero h1 span{background:linear-gradient(90deg,var(--color-accent) 0%,#ff5b64 25%,var(--color-accent) 50%,#ff5b64 75%,var(--color-accent) 100%);background-size:250% auto;-webkit-background-clip:text;background-clip:text;color:transparent;animation:shimmer 5s linear infinite}
@media (prefers-reduced-motion: reduce){.hero h1 span{animation:none;color:var(--color-accent);background:none}}
@keyframes shimmer{to{background-position:-250% center}}
.hero p{max-width:36rem;color:var(--color-text-muted);font-size:1.02rem;line-height:1.6;margin-bottom:2rem}
.hero-actions{display:flex;gap:.85rem;flex-wrap:wrap;justify-content:center;margin-bottom:2.8rem}
.hero-stats{display:flex;gap:2.6rem;flex-wrap:wrap;justify-content:center;max-width:26rem}
.stat-value{font-family:var(--font-display);font-size:1.7rem;font-weight:800;letter-spacing:-.02em}
.stat-label{font-size:.78rem;color:var(--color-text-subtle);margin-top:.15rem}
.text-center{text-align:center}

.category-pills{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-top:1.4rem}
.category-pill{padding:.45rem 1rem;border-radius:9999px;border:1px solid var(--color-border);color:var(--color-text-muted);font-size:.82rem;font-weight:700;transition:border-color .15s,color .15s,background .15s}
.category-pill:hover{border-color:var(--color-border-hover);color:var(--color-text)}
.category-pill.active{border-color:var(--color-accent);background:var(--color-accent-soft);color:var(--color-text)}

.section{padding:3.4rem 0}
.section-header{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1.75rem;flex-wrap:wrap}
.section-title{display:flex;align-items:center;gap:.55rem;font-family:var(--font-display);font-size:1.5rem;font-weight:800;letter-spacing:-.02em}
.section-title::before{content:"";width:5px;height:1.1em;border-radius:3px;background:var(--color-accent)}
.section-subtitle{color:var(--color-text-muted);font-size:.92rem;margin-top:.3rem}
.section-link{display:inline-flex;align-items:center;gap:.35rem;font-size:.85rem;font-weight:700;color:var(--color-accent);white-space:nowrap}
.section-link:hover{color:var(--color-accent-hover)}

.home-kicker{display:inline-flex;align-items:center;padding:.32rem .8rem;border-radius:9999px;background:var(--color-accent-muted);color:var(--color-accent);font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.9rem}
.home-h2{font-size:clamp(1.5rem,3vw,2.1rem);font-weight:800;letter-spacing:-.02em;line-height:1.2;margin-bottom:.6rem}
.home-lead{color:var(--color-text-muted);font-size:.95rem;max-width:34rem;line-height:1.6}

.products-grid{display:flex;flex-wrap:wrap;gap:1.25rem}
.product-card{will-change:transform}
.products-grid .product-card{flex:1 1 280px;max-width:340px}
.products-more{margin-top:1.25rem;display:flex;align-items:center;gap:1rem;padding:1.1rem 1.3rem;border-radius:var(--radius-lg);border:1px dashed var(--color-border-hover);background:repeating-linear-gradient(135deg,rgba(255,255,255,.015) 0 10px,transparent 10px 20px)}
.products-more-ic{flex:none;width:38px;height:38px;border-radius:50%;display:grid;place-items:center;color:var(--color-text-subtle);border:1px dashed var(--color-border-hover);animation:moreSpin 7s linear infinite}
@media (prefers-reduced-motion: reduce){.products-more-ic{animation:none}}
@keyframes moreSpin{to{transform:rotate(360deg)}}
.products-more-tx strong{display:block;font-size:.86rem;font-weight:700;color:var(--color-text-muted)}
.products-more-tx span{font-size:.8rem;color:var(--color-text-subtle)}
.product-card{overflow:hidden;position:relative}
.product-card:hover{border-color:var(--color-border-hover)}
.product-card::before{content:"";position:absolute;top:0;bottom:0;left:-60%;width:40%;z-index:3;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);transform:skewX(-20deg);transition:left .7s cubic-bezier(.22,.61,.36,1)}
.product-card:hover::before{left:130%}
.product-card-img{position:relative;aspect-ratio:16/9;background:linear-gradient(155deg,#1c1114,#0c0a0b 65%);display:flex;align-items:center;justify-content:center;overflow:hidden}
.product-card-img::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:22px 22px;mask-image:radial-gradient(ellipse 60% 60% at 50% 50%,#000 0%,transparent 100%)}
.product-card-img::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 30% 20%,rgba(116,15,22,.4),transparent 60%)}
.product-card-mark{position:relative;z-index:1;font-family:var(--font-display);font-weight:800;font-size:1.6rem;color:rgba(255,255,255,.92);letter-spacing:-.02em;transition:transform .3s cubic-bezier(.16,.84,.44,1)}
.product-card:hover .product-card-mark{transform:scale(1.06)}
.product-ribbon{position:absolute;top:.7rem;left:.7rem;z-index:2;padding:.3rem .65rem;border-radius:9999px;font-size:.68rem;font-weight:800;background:var(--color-accent);color:#fff;text-transform:uppercase;letter-spacing:.03em}
.product-ribbon.ok{background:var(--color-success);color:#06210f}
.product-card-body{padding:1.1rem 1.15rem 1.15rem;display:flex;flex-direction:column;gap:.85rem}
.product-card-game{font-size:.72rem;font-weight:700;color:var(--color-text-subtle);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.3rem}
.product-card-title{font-size:1.02rem;font-weight:800;letter-spacing:-.01em;line-height:1.3;transition:color .2s ease,transform .2s ease}
.product-card:hover .product-card-title{color:var(--color-accent);transform:translateX(2px)}
.product-card-stock{display:flex;align-items:center;gap:.4rem;margin-top:.4rem;font-size:.75rem;color:var(--color-text-subtle)}
.stock-dot{width:6px;height:6px;border-radius:50%;background:var(--color-success);flex:none}
.stock-dot.out{background:#ef4444}
.product-card-footer{display:flex;align-items:center;justify-content:space-between;gap:.6rem;padding-top:.7rem;border-top:1px solid var(--color-border)}
.product-price-label{font-size:.68rem;color:var(--color-text-subtle);margin-bottom:.1rem}
.product-price{font-size:1.05rem;font-weight:800;color:var(--color-accent)}
.btn-add{background:var(--color-surface-raised);border:1px solid var(--color-border);color:var(--color-text)}
.btn-add:hover{border-color:var(--color-accent);color:var(--color-accent)}

.products-empty-note{margin-top:1.5rem;padding:1.1rem 1.25rem;border-radius:var(--radius);border:1px dashed var(--color-border);color:var(--color-text-subtle);font-size:.85rem;text-align:center}

.how-head{text-align:center;max-width:34rem;margin:0 auto 2.4rem}
.how-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.how-step{text-align:center;padding:0 .5rem}
.how-mock{width:60px;height:60px;border-radius:var(--radius-lg);background:linear-gradient(155deg,var(--color-surface-raised),var(--color-surface));border:1px solid var(--color-border);display:grid;place-items:center;margin:0 auto .9rem;color:var(--color-accent);transition:border-color .2s,transform .2s,box-shadow .2s}
.how-step:hover .how-mock{border-color:var(--color-accent);transform:translateY(-2px)}
.how-num{display:block;font-size:.72rem;font-weight:800;color:var(--color-text-subtle);margin-bottom:.4rem;letter-spacing:.08em}
.how-step h3{font-size:.98rem;font-weight:800;margin-bottom:.4rem}
.how-step p{font-size:.85rem;color:var(--color-text-muted);line-height:1.55}

.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.feature-card{padding:1.5rem}
.feature-icon{width:42px;height:42px;border-radius:var(--radius);background:var(--color-accent-muted);color:var(--color-accent);display:grid;place-items:center;margin-bottom:1rem;transition:transform .2s,box-shadow .2s}
.feature-card:hover .feature-icon,.support-card:hover .feature-icon{transform:scale(1.08)}
.feature-card h3{font-size:1rem;font-weight:800;margin-bottom:.45rem}
.feature-card p{font-size:.87rem;color:var(--color-text-muted);line-height:1.55}

.rvh-stats-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-bottom:2.6rem;padding-bottom:2.4rem;border-bottom:1px solid var(--color-border)}
.rvh-stat-cell{text-align:center}
.rvh-stat-row{display:flex;align-items:baseline;justify-content:center;gap:.15rem}
.rvh-stat-ic{width:18px;height:18px;margin-right:.35rem}
.rvh-stat-big{font-family:var(--font-display);font-size:1.7rem;font-weight:800}
.rvh-stat-plus{font-family:var(--font-display);font-size:1.1rem;font-weight:800}
.rvh-stat-lbl{font-size:.78rem;color:var(--color-text-subtle);margin-top:.3rem}
.rvh-head{text-align:center;max-width:32rem;margin:0 auto 2.2rem}
.rvh-eyebrow{display:inline-flex;align-items:center;gap:.4rem;color:#facc15;font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.9rem}
.rvh-eyebrow svg{width:14px;height:14px}
.rvh-marquee{display:flex;flex-direction:column;gap:1.1rem}
.rvh-marquee-row{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent)}
.rvh-marquee-track{display:flex;width:max-content;gap:1.1rem;animation:rvhScrollLeft 46s linear infinite}
.rvh-marquee-row.reverse .rvh-marquee-track{animation-name:rvhScrollRight}
@media (prefers-reduced-motion: reduce){.rvh-marquee-track{animation:none}}
.rvh-marquee-row:hover .rvh-marquee-track{animation-play-state:paused}
@keyframes rvhScrollLeft{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes rvhScrollRight{from{transform:translateX(-50%)}to{transform:translateX(0)}}
.rvh-card-fixed{flex:none;width:280px}
.rvh-card-inner{padding:1.25rem;height:100%}
.rvh-card-stars{display:flex;gap:2px;color:#facc15;margin-bottom:.7rem}
.rvh-card-stars svg{width:13px;height:13px}
.rvh-text{font-size:.87rem;line-height:1.55;color:var(--color-text);margin-bottom:1rem}
.rvh-card-foot{display:flex;align-items:center;justify-content:space-between}
.rvh-id{display:flex;align-items:center;gap:.55rem}
.rvh-av{width:32px;height:32px;border-radius:50%;object-fit:cover;background:var(--color-surface-raised);flex:none;box-shadow:0 0 0 2px var(--color-surface),0 0 0 3px var(--color-border);display:flex;align-items:center;justify-content:center;color:var(--color-text-muted)}
.rvh-av svg{width:18px;height:18px}
.rvh-name{font-size:.82rem;font-weight:700}
.rvh-badge{display:inline-flex;align-items:center;gap:.3rem;font-size:.68rem;color:var(--color-text-subtle);font-weight:600}
.rvh-badge svg{width:11px;height:11px;color:#facc15}

.faq-grid{display:grid;grid-template-columns:1.6fr 1fr;gap:2.2rem}
.faq-head{margin-bottom:1.6rem}
.faq-eyebrow{color:var(--color-accent)}
.faq-list{display:flex;flex-direction:column;gap:.6rem}
.faq-list>.reveal-on-scroll:nth-child(1){transition-delay:0s}
.faq-list>.reveal-on-scroll:nth-child(2){transition-delay:.06s}
.faq-list>.reveal-on-scroll:nth-child(3){transition-delay:.12s}
.faq-list>.reveal-on-scroll:nth-child(4){transition-delay:.18s}
.faq-list>.reveal-on-scroll:nth-child(5){transition-delay:.24s}
.faq-item{border:1px solid var(--color-border);border-radius:var(--radius);background:var(--color-surface);overflow:hidden;transition:border-color .2s}
.faq-item.open{border-color:var(--color-border-hover)}
.faq-summary{all:unset;box-sizing:border-box;width:100%;display:flex;align-items:center;gap:.75rem;padding:1rem 1.15rem;cursor:pointer;font-weight:700;font-size:.9rem;color:var(--color-text)}
.faq-ic{width:30px;height:30px;border-radius:var(--radius-sm);background:var(--color-accent-muted);color:var(--color-accent);display:grid;place-items:center;flex:none;transition:background .2s,color .2s}
.faq-ic svg{width:15px;height:15px}
.faq-item.open .faq-ic{background:var(--color-accent);color:#fff}
.faq-q{flex:1}
.faq-toggle{color:var(--color-text-subtle);transition:transform .3s cubic-bezier(.4,0,.2,1)}
.faq-toggle svg{width:15px;height:15px}
.faq-item.open .faq-toggle{transform:rotate(45deg);color:var(--color-accent)}
.faq-panel{display:grid;grid-template-rows:0fr;transition:grid-template-rows .35s cubic-bezier(.4,0,.2,1)}
.faq-item.open .faq-panel{grid-template-rows:1fr}
.faq-body{overflow:hidden;opacity:0;transform:translateY(-4px);transition:opacity .2s ease,transform .2s ease}
.faq-item.open .faq-body{opacity:1;transform:none;transition:opacity .25s ease .1s,transform .25s ease .1s}
.faq-body p{margin:0;padding:0 1.15rem 1.1rem 3.6rem;font-size:.85rem;color:var(--color-text-muted);line-height:1.6}
.faq-list.no-icon .faq-body p{padding-left:1.15rem}

.faq-support-card{position:relative;overflow:hidden;padding:1.6rem;border-radius:var(--radius-lg);border:1px solid var(--color-border);background:linear-gradient(165deg,var(--color-accent-soft),var(--color-surface) 60%)}
.faq-support-badge{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .7rem;border-radius:9999px;background:var(--color-success-muted);color:var(--color-success);font-size:.7rem;font-weight:800;margin-bottom:1rem}
.faq-support-dot{width:6px;height:6px;border-radius:50%;background:var(--color-success)}
.faq-support-title{font-size:1.15rem;font-weight:800;margin-bottom:.55rem}
.faq-support-desc{font-size:.85rem;color:var(--color-text-muted);line-height:1.6;margin-bottom:1rem}
.faq-support-time{display:flex;align-items:center;gap:.45rem;font-size:.78rem;color:var(--color-text-subtle);margin-bottom:1.3rem}
.faq-support-time svg{width:14px;height:14px}
.faq-support-actions{display:flex;flex-direction:column;gap:.6rem}
.faq-support-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.7rem 1rem;border-radius:var(--radius);font-size:.85rem;font-weight:700}
.faq-support-btn.primary{background:#5865F2;color:#fff}
.faq-support-btn.primary:hover{background:#4a55d6}
.faq-support-btn.ghost{border:1px solid var(--color-border);color:var(--color-text)}
.faq-support-btn.ghost:hover{border-color:var(--color-border-hover)}

.cta-final{padding:1rem 0 4.5rem}
.cta-box{position:relative;overflow:hidden;text-align:center;padding:3.2rem 1.5rem;border-radius:var(--radius-lg);border:1px solid var(--color-border);background:linear-gradient(165deg,var(--color-accent-soft),var(--color-surface) 70%)}
.cta-title{font-size:clamp(1.5rem,3.4vw,2.2rem);font-weight:800;letter-spacing:-.02em;margin-bottom:.7rem}
.cta-sub{color:var(--color-text-muted);max-width:30rem;margin:0 auto 1.7rem}
.cta-actions{display:flex;gap:.85rem;flex-wrap:wrap;justify-content:center}

footer{border-top:1px solid var(--color-border);padding:3rem 0 1.5rem;margin-top:2rem}
.footer-main{display:grid;grid-template-columns:1.4fr repeat(2,1fr);gap:2rem;padding-bottom:2rem}
.footer-brand{font-family:var(--font-display);font-weight:800;font-size:1.05rem;margin-bottom:.6rem}
.footer-brand span{color:var(--color-accent)}
.footer-tagline{font-size:.83rem;color:var(--color-text-subtle);line-height:1.6;max-width:22rem}
.footer-col{display:flex;flex-direction:column;gap:.65rem}
.footer-col-label{font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-subtle);margin-bottom:.3rem}
.footer-col a{font-size:.85rem;color:var(--color-text-muted)}
.footer-col a:hover{color:var(--color-text)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem;padding-top:1.5rem;border-top:1px solid var(--color-border);font-size:.78rem;color:var(--color-text-subtle)}
.footer-credit{text-align:center;font-size:.72rem;color:var(--color-text-subtle);opacity:.6;margin-top:1rem}

.breadcrumb{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:var(--color-text-subtle);padding:1.4rem 0 0}
.breadcrumb a{color:var(--color-text-muted)}
.breadcrumb a:hover{color:var(--color-text)}

.product-layout{display:grid;grid-template-columns:1fr 360px;gap:2.4rem;padding:1.6rem 0 3rem;align-items:start}
.prd-badges{display:flex;gap:.5rem;margin-bottom:1rem}
.badge{display:inline-flex;align-items:center;padding:.3rem .7rem;border-radius:9999px;font-size:.72rem;font-weight:800}
.prd-game{font-size:.78rem;font-weight:700;color:var(--color-text-subtle);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}
.prd-title{font-size:clamp(1.5rem,3vw,2.1rem);font-weight:800;letter-spacing:-.02em;margin-bottom:.9rem}
.prd-desc{color:var(--color-text-muted);line-height:1.65;font-size:.95rem;max-width:42rem}

.product-media{margin-top:1.6rem;aspect-ratio:16/8;border-radius:var(--radius-lg);border:1px solid var(--color-border);background:linear-gradient(155deg,#1c1114,#0c0a0b 65%);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.product-media::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:26px 26px;mask-image:radial-gradient(ellipse 55% 65% at 50% 50%,#000 0%,transparent 100%)}
.product-media::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 20%,rgba(116,15,22,.4),transparent 60%)}
.product-media img{position:relative;z-index:1;width:100%;height:100%;object-fit:cover}
.product-media-mark{position:relative;z-index:1;font-family:var(--font-display);font-weight:800;font-size:2.4rem;color:rgba(255,255,255,.92);letter-spacing:-.02em}

.product-section-title{font-size:1.1rem;font-weight:800;margin:2.2rem 0 1rem}
.feature-groups{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.feature-detail{padding:1.15rem}
.feature-detail-header{display:flex;align-items:center;gap:.6rem;margin-bottom:.75rem;font-weight:800;font-size:.92rem}
.feature-detail-header .feature-icon{width:32px;height:32px;margin:0}
.feature-detail ul{display:flex;flex-direction:column;gap:.45rem}
.feature-detail li{position:relative;padding-left:1.1rem;font-size:.85rem;color:var(--color-text-muted);line-height:1.5}
.feature-detail li::before{content:"";position:absolute;left:0;top:.5em;width:5px;height:5px;border-radius:50%;background:var(--color-accent)}

.how-steps{display:flex;flex-direction:column;gap:.9rem}
.how-steps li{display:flex;gap:.9rem;align-items:flex-start;padding:1rem;border:1px solid var(--color-border);border-radius:var(--radius);background:var(--color-surface)}
.how-step-num{flex:none;width:30px;height:30px;border-radius:50%;background:var(--color-accent-muted);color:var(--color-accent);display:grid;place-items:center;font-weight:800;font-size:.85rem}
.how-tx strong{display:block;font-size:.9rem;margin-bottom:.15rem}
.how-tx span{font-size:.83rem;color:var(--color-text-muted);line-height:1.5}

.product-receive{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.product-receive-item{padding:1.1rem;border:1px solid var(--color-border);border-radius:var(--radius);background:var(--color-surface)}
.product-receive-item strong{display:block;font-size:.88rem;margin-bottom:.35rem}
.product-receive-item span{font-size:.82rem;color:var(--color-text-muted);line-height:1.5}

.prd-faq{display:flex;flex-direction:column;gap:.6rem}
.prd-faq .faq-summary{padding:.9rem 1.1rem}
.prd-faq .faq-body p{padding:0 1.1rem .95rem}

.purchase-box{position:sticky;top:5.5rem;padding:1.4rem;border-radius:var(--radius-lg)}
.purchase-top{display:flex;align-items:center;justify-content:space-between;gap:.6rem}
.purchase-secure{display:flex;align-items:center;gap:.35rem;font-size:.72rem;font-weight:700;color:var(--color-text-subtle)}
.purchase-secure svg{flex:none;color:var(--color-text-subtle)}
.purchase-game{font-size:.78rem;color:var(--color-text-subtle);margin:.7rem 0 1.1rem}
.plan-select-label{font-size:.68rem;font-weight:800;color:var(--color-text-subtle);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.6rem}
.plan-select{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;margin-bottom:1.1rem}
.plan-option{position:relative;display:flex;flex-direction:column;gap:.6rem;padding:.8rem .9rem;border-radius:var(--radius);border:1px solid var(--color-border);cursor:pointer;transition:border-color .15s,background .15s,box-shadow .15s}
.plan-option:hover{border-color:var(--color-border-hover)}
.plan-option.selected{border-color:var(--color-accent);background:var(--color-accent-soft);box-shadow:0 0 0 1px var(--color-accent)}
.plan-option.top{border-color:rgba(250,204,21,.4)}
.plan-option-top{display:flex;align-items:flex-start;justify-content:space-between;gap:.5rem}
.plan-name{font-size:.85rem;font-weight:700}
.plan-check{width:18px;height:18px;border-radius:5px;border:2px solid var(--color-border);flex:none;display:grid;place-items:center;color:transparent;transition:border-color .15s,background .15s,color .15s}
.plan-option.selected .plan-check{border-color:var(--color-accent);background:var(--color-accent);color:#fff}
.plan-option-bottom{display:flex;align-items:baseline;justify-content:space-between;gap:.5rem;flex-wrap:wrap}
.plan-price{display:flex;align-items:baseline;gap:.4rem}
.plan-price-main{color:var(--color-accent);font-weight:800;font-size:.9rem}
.plan-perday{font-size:.68rem;color:var(--color-text-subtle);text-decoration:line-through}
.plan-stock{font-size:.66rem;color:var(--color-text-subtle)}
.plan-saving{align-self:flex-start;font-size:.62rem;font-weight:800;color:var(--color-success);background:var(--color-success-muted);padding:.1rem .4rem;border-radius:9999px}
.plan-ribbon{position:absolute;top:-9px;right:12px;padding:.15rem .5rem;border-radius:9999px;background:#facc15;color:#3a2c02;font-size:.6rem;font-weight:800;letter-spacing:.03em}

.buy-price-row{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:.9rem;padding-top:.9rem;border-top:1px solid var(--color-border)}
.buy-price-label{font-size:.8rem;color:var(--color-text-muted)}
.buy-price{font-size:1.4rem;font-weight:800;color:var(--color-accent)}
.purchase-actions{display:flex;flex-direction:column;gap:.6rem}
.purchase-trust{display:flex;flex-direction:column;gap:.55rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--color-border)}
.purchase-trust-item{display:flex;align-items:center;gap:.5rem;font-size:.78rem;color:var(--color-text-subtle)}
.purchase-trust-item svg{flex:none;color:var(--color-success)}
.purchase-trust-item:nth-child(2) svg{color:#facc15}
.purchase-trust-item:nth-child(3) svg{color:var(--color-text-subtle)}

.reviews-title{font-size:1.3rem;font-weight:800;margin-bottom:.3rem}
.rev-verified{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;color:var(--color-text-subtle);margin-bottom:1.6rem}
.rev-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.rev-card{padding:1.1rem;border-radius:var(--radius-lg)}
.rev-card-head{display:flex;align-items:center;gap:.55rem;margin-bottom:.6rem}
.rev-card-name{font-size:.82rem;font-weight:700}
.rev-card-meta{font-size:.68rem;color:var(--color-text-subtle)}
.rev-card-stars{display:flex;gap:2px;color:#facc15;margin-bottom:.55rem}
.rev-card-stars svg{width:12px;height:12px}
.rev-card-text{font-size:.83rem;color:var(--color-text-muted);line-height:1.55}

.support-hero{text-align:center;padding:3.5rem 0 2.5rem}
.support-hero h1{font-size:clamp(1.9rem,4vw,2.6rem);font-weight:800;letter-spacing:-.02em;margin-bottom:.8rem}
.support-hero p{color:var(--color-text-muted);max-width:34rem;margin:0 auto}
.support-grid{display:grid;grid-template-columns:1.6fr 1fr;gap:2.2rem;padding-bottom:4rem}
.support-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:2.5rem}
.support-card{padding:1.25rem}
.support-card .feature-icon{margin-bottom:.9rem}
.support-card h3{font-size:.95rem;font-weight:800;margin-bottom:.4rem}
.support-card p{font-size:.83rem;color:var(--color-text-muted);line-height:1.5}

@media (max-width:960px){
  .kira-nav{display:none}
  .mobile-nav-btn{display:flex}
  .header-inner{grid-template-columns:auto auto}
  .how-grid{grid-template-columns:repeat(2,1fr)}
  .features-grid{grid-template-columns:1fr}
  .rvh-stats-bar{grid-template-columns:repeat(2,1fr);row-gap:1.5rem}
  .faq-grid{grid-template-columns:1fr}
  .footer-main{grid-template-columns:1fr 1fr;gap:1.75rem}
  .product-layout{grid-template-columns:1fr}
  .purchase-box{position:static}
  .feature-groups{grid-template-columns:1fr}
  .product-receive{grid-template-columns:1fr}
  .rev-grid{grid-template-columns:repeat(2,1fr)}
  .support-grid{grid-template-columns:1fr}
  .support-cards{grid-template-columns:1fr}
}
@media (max-width:600px){
  .hero{padding:3rem 0 2rem}
  .hero-actions .btn{flex:1 1 auto}
  .rvh-card-fixed{width:230px}
  .rvh-stats-bar{grid-template-columns:1fr 1fr}
  .footer-main{grid-template-columns:1fr}
  .rev-grid{grid-template-columns:1fr}
  .plan-select{grid-template-columns:1fr}
}