*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #020510;
  --bg: #030814;
  --bg-card: #060d1f;
  --bg-card-2: #0a1428;
  --bg-modal: #050a18;
  --blue: #4a9eff;
  --blue-dim: #2e7acc;
  --blue-glow: rgba(74,158,255,0.18);
  --blue-glow-soft: rgba(74,158,255,0.08);
  --gold: #f5c842;
  --gold-dim: rgba(245,200,66,0.85);
  --purple: #8b9eff;
  --white: #e8f0ff;
  --grey: #7a95c0;
  --grey-dim: #3a4d70;
  --border: rgba(255,255,255,0.055);
  --border-blue: rgba(74,158,255,0.28);
  --border-gold: rgba(245,200,66,0.25);
  --border-purple: rgba(139,158,255,0.3);
  --discord: #5865F2;
  --ease-out: cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg); color: var(--white);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden; min-height: 100vh;
}

body.modal-locked { overflow: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 2px; }

a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }

.scanline {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(0,0,0,.04) 3px, rgba(0,0,0,.04) 4px);
}

.noise-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.bg-hex {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33z' fill='none' stroke='rgba(74,158,255,0.04)' stroke-width='1'/%3E%3Cpath d='M28 100L0 84V51l28-16 28 16v33z' fill='none' stroke='rgba(74,158,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
}

#meteor-canvas { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

.orb-red {
  position: fixed; width: 900px; height: 420px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(56,120,255,.15) 0%, rgba(100,60,255,.08) 45%, transparent 70%);
  top: -220px; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0;
  filter: blur(20px); animation: auroraPulse 14s ease-in-out infinite alternate;
}

.orb-blue {
  position: fixed; width: 600px; height: 340px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20,200,220,.10) 0%, rgba(40,80,255,.06) 50%, transparent 75%);
  top: -140px; right: -120px; pointer-events: none; z-index: 0;
  filter: blur(28px); animation: auroraPulseNoCenter 20s ease-in-out infinite alternate-reverse;
}

.orb-extra {
  position: fixed; width: 500px; height: 280px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(120,40,255,.09) 0%, rgba(60,100,255,.05) 50%, transparent 75%);
  top: -100px; left: -100px; pointer-events: none; z-index: 0;
  filter: blur(30px); animation: auroraPulseNoCenter 18s ease-in-out infinite alternate;
}

@keyframes auroraPulse {
  0% { opacity: .5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
  100% { opacity: .6; transform: translateX(-50%) scale(.97); }
}
@keyframes auroraPulseNoCenter {
  0% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: .6; transform: scale(.97); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
@keyframes barSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* NAV */
header { position: relative; z-index: 200; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(3,8,20,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }

.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(74,158,255,.4);
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.nav-logo-text {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 17px;
  letter-spacing: .04em; color: var(--white); line-height: 1;
}
.nav-logo-text span { color: var(--blue); }

.nav-logo-sub {
  font-size: 10px; font-weight: 400; color: var(--grey-dim);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 1px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }

/* LANG TOGGLE — hanya ID/ENG */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}

.lang-toggle-btn {
  padding: 7px 13px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; color: var(--grey-dim);
  transition: all .18s ease; cursor: pointer;
  border: none; background: none;
}

.lang-toggle-btn.active {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 12px rgba(74,158,255,.4);
}

.lang-toggle-btn:not(.active):hover { color: var(--white); background: rgba(255,255,255,.06); }

.nav-discord-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: var(--discord); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  border-radius: 8px; text-decoration: none; letter-spacing: .02em;
  transition: all .2s ease; box-shadow: 0 4px 16px rgba(88,101,242,.35);
}
.nav-discord-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(88,101,242,.5); }
.nav-discord-btn svg { width: 16px; height: 16px; }

main { position: relative; z-index: 1; }

/* HERO — diperkecil, min-height dikurangi */
.hero {
  min-height: 75vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 90px 40px 40px; position: relative;
}

.hero-banner-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 18px; background: rgba(74,158,255,.1);
  border: 1px solid var(--border-blue); border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 24px;
  animation: fadeIn .7s ease both;
}

.tag-icon { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: statusPulse 2s ease infinite; }

.hero-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(44px, 7vw, 92px); line-height: .9;
  letter-spacing: -.01em; margin-bottom: 10px;
  animation: fadeIn .7s .1s ease both;
}

.word-alva { color: var(--white); display: block; }
.word-dev { color: var(--blue); display: block; text-shadow: 0 0 60px rgba(74,158,255,.5); }
.word-prod { color: var(--white); display: block; opacity: .3; font-size: .48em; letter-spacing: .16em; }

.hero-desc {
  font-size: 15px; font-weight: 300; color: var(--grey);
  max-width: 400px; line-height: 1.65; margin-bottom: 32px;
  animation: fadeIn .7s .2s ease both;
}

.hero-cta-group {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeIn .7s .3s ease both;
}

.cta-main {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; background: var(--blue); color: #fff;
  font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 10px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: all .25s ease; box-shadow: 0 8px 32px rgba(74,158,255,.4);
}
.cta-main::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .4s ease;
}
.cta-main:hover::before { left: 100%; }
.cta-main:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(74,158,255,.55); }
.cta-main svg { width: 16px; height: 16px; }

.cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; background: rgba(255,255,255,.05);
  border: 1px solid var(--border); color: var(--grey);
  font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 10px; text-decoration: none; transition: all .25s ease;
}
.cta-secondary:hover {
  background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.15); color: var(--white);
  transform: translateY(-2px);
}
.cta-secondary svg { width: 16px; height: 16px; }

.hero-divider {
  width: 100%; max-width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
  margin: 40px auto 0; animation: fadeIn .7s .4s ease both;
}

.hero-badges {
  display: flex; gap: 28px; justify-content: center; margin-top: 28px;
  animation: fadeIn .7s .5s ease both; flex-wrap: wrap;
}
.hero-badge { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.badge-val { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: var(--white); }
.badge-val span { color: var(--blue); }
.badge-lbl { font-size: 11px; color: var(--grey-dim); letter-spacing: .06em; text-transform: uppercase; }

/* PRODUCTS */
.products-section { padding: 60px 40px 80px; max-width: 1200px; margin: 0 auto; }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px; padding: 5px 16px;
  border: 1px solid var(--border-blue); border-radius: 100px;
  background: var(--blue-glow-soft);
}
.sec-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(30px, 4vw, 48px); letter-spacing: .01em;
  line-height: 1.1; margin-bottom: 12px;
}
.sec-title span { color: var(--blue); }
.sec-sub { font-size: 15px; font-weight: 300; color: var(--grey); max-width: 400px; margin: 0 auto; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pcard {
  position: relative; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: all .35s var(--ease-out);
  display: flex; flex-direction: column;
}
.pcard::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74,158,255,.05) 100%);
  pointer-events: none; border-radius: inherit;
}
.pcard:hover {
  border-color: var(--border-blue); transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px var(--border-blue), 0 0 40px var(--blue-glow-soft);
}
.pcard-featured {
  border-color: var(--border-blue);
  box-shadow: 0 0 0 1px var(--border-blue), 0 12px 40px rgba(74,158,255,.08);
}

.pcard-banner {
  position: relative; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-card-2);
}
.pcard-banner-image picture,
.pcard-banner-image picture img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.pcard-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,8,20,.1) 0%, rgba(3,8,20,.5) 75%, rgba(3,8,20,.85) 100%);
  display: flex; align-items: flex-end; padding: 14px; z-index: 2;
}

.bg-balap {
  background: radial-gradient(ellipse at 50% 50%, rgba(245,200,66,.1) 0%, transparent 60%),
    linear-gradient(160deg, #141108 0%, #0e0c14 100%);
}
.bg-dj {
  background: radial-gradient(ellipse at 50% 50%, rgba(88,101,242,.12) 0%, transparent 60%),
    linear-gradient(160deg, #080c1e 0%, #0d0812 100%);
}

.pcard-banner-art {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.art-icon-wrap {
  width: 72px; height: 72px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.art-icon-wrap svg { width: 36px; height: 36px; position: relative; z-index: 1; }
.art-icon-big { width: 96px; height: 96px; border-radius: 20px; }
.art-icon-big svg { width: 48px; height: 48px; }
.art-icon-balap { background: rgba(245,200,66,.1); border: 1px solid rgba(245,200,66,.22); box-shadow: 0 0 30px rgba(245,200,66,.12); }
.art-icon-dj { background: rgba(88,101,242,.12); border: 1px solid rgba(88,101,242,.25); box-shadow: 0 0 30px rgba(88,101,242,.15); }

.pcard-rank {
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; display: inline-block;
}
.rank-blue { background: rgba(74,158,255,.18); border: 1px solid rgba(74,158,255,.35); color: var(--blue); backdrop-filter: blur(8px); }
.rank-gold { background: rgba(245,200,66,.1); border: 1px solid rgba(245,200,66,.25); color: var(--gold-dim); }
.rank-purple { background: rgba(88,101,242,.12); border: 1px solid rgba(88,101,242,.3); color: var(--purple); }

.pcard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }
.pcard-cat { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 6px; }
.pcard-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: .02em; color: var(--white); margin-bottom: 4px; line-height: 1.1; }
.pcard-by { font-size: 13px; color: var(--grey-dim); font-weight: 300; margin-bottom: 18px; }
.pcard-sep { height: 1px; background: var(--border); margin-bottom: 18px; }
.pcard-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; list-style: none; }
.pcard-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--grey); }
.feat-arrow { font-size: 10px; flex-shrink: 0; }
.fa-blue { color: var(--blue); }
.fa-gold { color: var(--gold-dim); }
.fa-purple { color: var(--purple); }

.pcard-price-row { margin-bottom: 16px; margin-top: auto; padding: 12px 14px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 10px; }
.pcard-price { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-dim); font-weight: 600; }
.price-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 20px; color: var(--white); letter-spacing: .01em; }
.price-soon { color: var(--gold-dim); font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }

.pcard-btn-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.pcard-detail-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 10px; border-radius: 10px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--grey); transition: all .2s ease;
}
.pcard-detail-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: var(--white); }
.pcard-detail-btn svg { width: 14px; height: 14px; }

.pcard-order-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border-radius: 10px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: all .25s ease; position: relative; overflow: hidden;
}
.pcard-order-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transition: left .45s ease;
}
.pcard-order-btn:hover::before { left: 150%; }
.btn-blue-fill { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(74,158,255,.3); }
.btn-blue-fill:hover { box-shadow: 0 8px 32px rgba(74,158,255,.5); transform: translateY(-1px); }
.btn-gold-fill { background: linear-gradient(135deg, #f5c842, #e6a61e); color: #0a0800; box-shadow: 0 4px 20px rgba(245,200,66,.25); }
.btn-gold-fill:hover { box-shadow: 0 8px 32px rgba(245,200,66,.4); transform: translateY(-1px); }
.btn-purple-fill { background: var(--discord); color: #fff; box-shadow: 0 4px 20px rgba(88,101,242,.3); }
.btn-purple-fill:hover { box-shadow: 0 8px 32px rgba(88,101,242,.5); transform: translateY(-1px); }
.pcard-order-btn svg { width: 14px; height: 14px; }

/* SHOWCASE SECTION */
.showcase-section { padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; }

.showcase-wrapper {
  position: relative; background: var(--bg-card);
  border: 1px solid var(--border-blue); border-radius: 20px;
  overflow: hidden;
}
.showcase-wrapper::before {
  content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.showcase-inner {
  display: flex; align-items: stretch; min-height: 360px;
}

.showcase-video-col {
  flex: 0 0 420px; position: relative; background: #000;
  border-right: 1px solid var(--border);
}

.showcase-video-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(74,158,255,.08) 0%, transparent 70%);
  cursor: pointer; transition: background .25s ease;
  gap: 14px; padding: 24px;
}
.showcase-video-placeholder:hover { background: radial-gradient(ellipse at 50% 50%, rgba(74,158,255,.14) 0%, transparent 70%); }

.showcase-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(74,158,255,.15); border: 2px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.showcase-video-placeholder:hover .showcase-play-btn {
  background: rgba(74,158,255,.28); border-color: var(--blue);
  box-shadow: 0 0 24px rgba(74,158,255,.4);
}
.showcase-play-btn svg { width: 24px; height: 24px; color: var(--blue); margin-left: 3px; }
.showcase-play-label { font-size: 12px; color: var(--grey); letter-spacing: .08em; text-align: center; }
.showcase-play-source { font-size: 11px; color: var(--grey-dim); margin-top: 2px; }

.showcase-video-frame {
  width: 100%; height: 100%; min-height: 320px;
  border: none; display: none;
}
.showcase-video-frame.active { display: block; }

.showcase-info-col {
  flex: 1; padding: 32px 36px; display: flex; flex-direction: column; justify-content: center;
}

.showcase-nav {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}

.showcase-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); transition: all .2s ease; cursor: pointer; flex-shrink: 0;
}
.showcase-nav-btn:hover { background: rgba(74,158,255,.12); border-color: var(--border-blue); color: var(--blue); }
.showcase-nav-btn svg { width: 16px; height: 16px; }

.showcase-dots { display: flex; gap: 6px; }
.showcase-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--grey-dim);
  transition: all .2s ease; cursor: pointer;
}
.showcase-dot.active { background: var(--blue); width: 18px; border-radius: 3px; }

.showcase-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px;
  letter-spacing: .02em; color: var(--white); margin-bottom: 8px;
}
.showcase-desc { font-size: 14px; color: var(--grey); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }

.showcase-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.showcase-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--blue-glow-soft); border: 1px solid var(--border-blue); color: var(--blue);
}

/* MODAL */
.modal-root { position: relative; z-index: 1000; }
.modal {
  position: fixed; inset: 0; z-index: 1001;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(2,5,16,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.modal-panel {
  position: relative; width: 100%; max-width: 760px;
  max-height: calc(100vh - 48px);
  background: var(--bg-modal); border: 1px solid var(--border-blue);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.65), 0 0 0 1px var(--border-blue), 0 0 60px rgba(74,158,255,.1);
  transform: translateY(20px) scale(.97);
  transition: transform .28s var(--ease-out);
}
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.08);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  z-index: 10; backdrop-filter: blur(8px); transition: all .2s ease;
}
.modal-close:hover { background: rgba(0,0,0,.8); border-color: var(--border-blue); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }
.modal-header { position: relative; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.modal-header-image picture,
.modal-header-image picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,8,20,0) 50%, rgba(3,8,20,.85) 100%);
  display: flex; align-items: flex-end; padding: 20px 24px;
}
.modal-header-gradient { display: flex; align-items: center; justify-content: center; }
.modal-header-art { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.modal-badge {
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
}
.modal-body { padding: 32px; overflow-y: auto; flex: 1; }
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }
.modal-cat { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.modal-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(24px, 3.5vw, 34px); line-height: 1.1; letter-spacing: .01em; color: var(--white); margin-bottom: 4px; }
.modal-sub { font-size: 14px; color: var(--grey-dim); font-weight: 400; margin-bottom: 22px; letter-spacing: .04em; }
.modal-tagline { font-size: 15px; line-height: 1.75; color: var(--grey); font-weight: 300; padding: 18px 20px; background: rgba(74,158,255,.05); border-left: 3px solid var(--blue); border-radius: 4px 10px 10px 4px; margin-bottom: 28px; }
.modal-sect { margin-bottom: 26px; }
.modal-sect-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.modal-feat-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 14px; }
.modal-feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--grey); padding: 7px 0; line-height: 1.45; }
.feat-num { font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700; color: var(--blue); background: rgba(74,158,255,.1); border: 1px solid var(--border-blue); border-radius: 6px; padding: 2px 5px; min-width: 26px; text-align: center; flex-shrink: 0; letter-spacing: .04em; }
.modal-callout { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; border: 1px solid; }
.modal-callout-blue { background: rgba(74,158,255,.06); border-color: var(--border-blue); }
.modal-callout-gold { background: rgba(245,200,66,.05); border-color: var(--border-gold); }
.modal-callout-purple { background: rgba(139,158,255,.06); border-color: var(--border-purple); }
.callout-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .18em; margin-bottom: 6px; }
.modal-callout-blue .callout-title { color: var(--blue); }
.modal-callout-gold .callout-title { color: var(--gold-dim); }
.modal-callout-purple .callout-title { color: var(--purple); }
.callout-text { font-size: 13px; line-height: 1.7; color: var(--grey); font-weight: 300; }
.modal-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.price-card { padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--border-blue); border-radius: 12px; transition: all .25s ease; }
.price-card:hover { background: var(--bg-card-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,158,255,.12); }
.price-card-lbl { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 6px; }
.price-card-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 26px; color: var(--blue); margin-bottom: 6px; letter-spacing: .01em; }
.price-card-note { font-size: 12px; color: var(--grey); line-height: 1.5; font-weight: 300; }
.modal-buy-text { font-size: 14px; line-height: 1.7; color: var(--grey); margin-bottom: 14px; font-weight: 300; }
.modal-buy-text strong { color: var(--blue); font-weight: 600; font-family: 'Rajdhani', sans-serif; letter-spacing: .02em; }
.modal-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--blue); color: #fff; font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 10px; text-decoration: none; transition: all .25s ease; box-shadow: 0 6px 24px rgba(74,158,255,.35); }
.modal-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(74,158,255,.5); }
.modal-cta svg { width: 16px; height: 16px; }
.modal-cta-gold { background: linear-gradient(135deg, #f5c842, #e6a61e); color: #0a0800; box-shadow: 0 6px 24px rgba(245,200,66,.3); }
.modal-cta-gold:hover { box-shadow: 0 10px 32px rgba(245,200,66,.5); }
.modal-cta-purple { background: var(--discord); box-shadow: 0 6px 24px rgba(88,101,242,.35); }
.modal-cta-purple:hover { box-shadow: 0 10px 32px rgba(88,101,242,.5); }

/* REQUEST */
.request-section { padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; }
.request-box { position: relative; background: var(--bg-card); border: 1px solid var(--border-blue); border-radius: 20px; padding: 56px; overflow: hidden; text-align: center; }
.request-box::before { content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.request-box-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(74,158,255,.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(88,101,242,.05) 0%, transparent 50%); pointer-events: none; }
.request-content { position: relative; z-index: 1; }
.request-icon { width: 56px; height: 56px; background: var(--blue-glow-soft); border: 1px solid var(--border-blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.request-icon svg { width: 26px; height: 26px; color: var(--blue); }
.request-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(26px, 3.5vw, 40px); letter-spacing: .01em; margin-bottom: 12px; line-height: 1.15; }
.request-title span { color: var(--blue); }
.request-desc { font-size: 15px; font-weight: 300; color: var(--grey); max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }
.request-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rbtn-main { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: var(--blue); color: #fff; font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 10px; text-decoration: none; transition: all .25s ease; box-shadow: 0 8px 32px rgba(74,158,255,.4); position: relative; overflow: hidden; }
.rbtn-main::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); transition: left .4s ease; }
.rbtn-main:hover::before { left: 100%; }
.rbtn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(74,158,255,.6); }
.rbtn-main svg { width: 17px; height: 17px; }
.rbtn-alt { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: rgba(88,101,242,.1); border: 1px solid rgba(88,101,242,.3); color: var(--purple); font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 10px; text-decoration: none; transition: all .25s ease; }
.rbtn-alt:hover { background: rgba(88,101,242,.2); border-color: rgba(88,101,242,.5); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(88,101,242,.3); }
.rbtn-alt svg { width: 17px; height: 17px; }

/* ABOUT */
.about-section { padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-main { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 44px; position: relative; overflow: hidden; }
.about-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }
.about-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.about-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 28px; letter-spacing: .01em; margin-bottom: 14px; }
.about-text { font-size: 14px; font-weight: 300; color: var(--grey); line-height: 1.8; }
.about-stats-col { display: flex; flex-direction: column; gap: 20px; }
.about-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; display: flex; align-items: center; gap: 18px; transition: border-color .25s ease; flex: 1; }
.about-stat-card:hover { border-color: var(--border-blue); }
.stat-icon-box { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon-box svg { width: 20px; height: 20px; }
.sib-blue { background: var(--blue-glow-soft); border: 1px solid var(--border-blue); color: var(--blue); }
.sib-gold { background: rgba(245,200,66,.08); border: 1px solid rgba(245,200,66,.2); color: var(--gold-dim); }
.sib-purple { background: rgba(88,101,242,.08); border: 1px solid rgba(88,101,242,.2); color: var(--purple); }
.stat-info-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 26px; color: var(--white); line-height: 1; }
.stat-info-lbl { font-size: 13px; color: var(--grey); margin-top: 2px; }

/* FAQ */
.faq-section { padding: 0 40px 80px; max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; transition: border-color .25s ease; }
.faq-item:hover, .faq-item[open] { border-color: var(--border-blue); }
.faq-item summary { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: .02em; color: var(--white); cursor: pointer; list-style: none; padding-right: 30px; position: relative; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--blue); font-weight: 400; transition: transform .25s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--grey); font-weight: 300; line-height: 1.75; }
.faq-item p strong { color: var(--blue); font-weight: 600; }

/* FLOATING BAR */
.floating-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 300;
  display: flex; align-items: center; gap: 12px;
  background: rgba(3,8,20,.97); border: 1px solid var(--border-blue);
  border-radius: 100px; padding: 10px 10px 10px 22px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px var(--border-blue);
  animation: barSlide .8s .6s ease both; white-space: nowrap;
}
.bar-text { font-size: 13px; font-weight: 500; color: var(--grey); }
.bar-text span { color: var(--white); font-weight: 600; }
.bar-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; background: var(--blue); color: #fff; font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 100px; text-decoration: none; transition: all .2s ease; box-shadow: 0 4px 16px rgba(74,158,255,.4); }
.bar-btn:hover { box-shadow: 0 6px 24px rgba(74,158,255,.6); transform: translateY(-1px); }
.bar-btn svg { width: 13px; height: 13px; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 26px; height: 26px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo-name { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 14px; color: var(--grey); }
.footer-logo-name span { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--grey-dim); }
.footer-discord { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey); text-decoration: none; transition: color .2s ease; }
.footer-discord:hover { color: var(--purple); }
.footer-discord svg { width: 16px; height: 16px; }

/* ANIM */
.anim-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.anim-in.showed { opacity: 1; transform: translateY(0); }
.anim-in:nth-child(2) { transition-delay: .1s; }
.anim-in:nth-child(3) { transition-delay: .2s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .modal-feat-list { grid-template-columns: 1fr; }
  .modal-price-grid { grid-template-columns: 1fr; }
  .showcase-inner { flex-direction: column; }
  .showcase-video-col { flex: none; border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { padding: 82px 20px 36px; min-height: 70vh; }
  .products-section, .showcase-section, .request-section, .about-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .request-box { padding: 32px 20px; }
  .about-main { padding: 28px 20px; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px 80px; }
  .floating-bar { width: calc(100% - 28px); justify-content: space-between; padding: 10px 10px 10px 18px; }
  .modal { padding: 0; align-items: flex-end; }
  .modal-panel { max-height: 92vh; border-radius: 20px 20px 0 0; }
  .modal-body { padding: 24px 18px; }
  .pcard-btn-group { grid-template-columns: 1fr; }
  .showcase-info-col { padding: 24px 20px; }
  .lang-toggle-btn { padding: 6px 10px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  #meteor-canvas { display: none; }
}