

:root {
  --bg:     #06060e;
  --surface: rgba(255,255,255,0.045);
  --border:  rgba(255,255,255,0.07);
  --accent:  rgb(238,130,238);
  --ah:      238,130,238;   
  --text:    #e8e8f0;
  --muted:   #7a7a9a;
  --radius:  16px;
  --blur:    28px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--ah),.5) transparent;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(var(--ah),.45); border-radius: 3px; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, transform .8s var(--ease);
}
.loader.out {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: loaderIn .5s var(--ease) forwards;
}
@keyframes loaderIn {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.loader-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(var(--ah),.5));
  animation: glowFloat 2s var(--ease) infinite alternate;
}
@keyframes glowFloat {
  from { filter: drop-shadow(0 0 16px rgba(var(--ah),.35)); transform: translateY(0); }
  to   { filter: drop-shadow(0 0 50px rgba(var(--ah),.85)); transform: translateY(-6px); }
}

.loader-track {
  width: 200px;
  height: 1.5px;
  background: rgba(255,255,255,.07);
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 99px;
  animation: fillBar 1.8s var(--ease) forwards;
}
@keyframes fillBar {
  0%   { width: 0%; opacity: .6; }
  60%  { width: 78%; }
  100% { width: 100%; opacity: 1; }
}

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.b1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(var(--ah),.45) 0%, transparent 70%);
  top: -200px; left: -160px;
  opacity: .5;
  animation: blobDrift 22s ease-in-out infinite;
}
.b2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(160,40,140,.5) 0%, transparent 70%);
  bottom: -120px; right: -80px;
  opacity: .35;
  animation: blobDrift 28s ease-in-out infinite reverse;
}
.b3 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(var(--ah),.3) 0%, transparent 70%);
  top: 55%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: .3;
  animation: blobDrift 18s ease-in-out infinite 5s;
}
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-48px) scale(1.05); }
  66%      { transform: translate(-22px,32px) scale(.97); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 64px 64px;
}

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,6,14,.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .4s ease;
}
#nav.scrolled { background: rgba(6,6,14,.72); }

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(var(--ah),.3));
  transition: filter .5s var(--ease);
}
.nav-logo:hover img { filter: drop-shadow(0 0 22px rgba(var(--ah),.65)); }

.nav-links { display: flex; gap: 2px; flex: 1; justify-content: center; }

.nav-link {
  position: relative;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  border-radius: 10px;
  letter-spacing: .01em;
  transition: color .35s ease, background .35s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 18px; right: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .45s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.04);
  text-shadow: 0 0 16px rgba(255,255,255,.55), 0 0 40px rgba(255,255,255,.18);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-status-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.nav-status-btn:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.12); }
.nav-status-dot {
  --dot-rgb: 34,197,94;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
  animation: ping 2.5s ease infinite;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(88,101,242,.1);
  border: 1px solid rgba(88,101,242,.24);
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 600;
  color: #a5b0ff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .45s var(--ease), border-color .45s var(--ease),
              color .3s ease, box-shadow .45s var(--ease);
}
.discord-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.discord-btn:hover {
  background: rgba(88,101,242,.2);
  border-color: rgba(88,101,242,.45);
  color: #fff;
  box-shadow: 0 0 24px rgba(88,101,242,.2);
}

.nav-border {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--ah),.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .5s ease;
}
#nav.scrolled .nav-border { opacity: 1; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-img {
  position: absolute;
  inset: -40px;
  background: url('image/background.png') center / cover no-repeat;
  filter: blur(10px) brightness(.42) saturate(1.1);
  transform: scale(1.1);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,14,.38) 0%,
    rgba(6,6,14,.35) 50%,
    rgba(6,6,14,.82) 100%
  );
  z-index: -1;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

[data-hero] { opacity: 0; transform: translateY(50px); }
[data-hero].visible { animation: heroIn 1s var(--ease) forwards; }
[data-hero].visible:nth-child(2) { animation-delay: .08s; }
[data-hero].visible:nth-child(3) { animation-delay: .18s; }
[data-hero].visible:nth-child(4) { animation-delay: .28s; }
[data-hero].visible:nth-child(5) { animation-delay: .38s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  height: clamp(90px, 16vw, 140px);
  width: auto;
  animation:
    heroLogoReveal 1.1s var(--ease) .1s both,
    heroGlowPulse  3.5s ease-in-out 1.3s infinite alternate;
}
@keyframes heroLogoReveal {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroGlowPulse {
  from { filter: drop-shadow(0 0 18px rgba(var(--ah),.32)); }
  to   { filter: drop-shadow(0 0 52px rgba(var(--ah),.78)); }
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(var(--dot-rgb, 238,130,238), .7); }
  70%  { box-shadow: 0 0 0 8px rgba(var(--dot-rgb, 238,130,238), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--dot-rgb, 238,130,238), 0); }
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 520px;
}

em {
  font-style: normal;
  color: var(--accent);
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--accent);
  border: none;
  outline: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 28px rgba(var(--ah),.3);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .3s ease;
}
.btn-primary:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(var(--ah),.5);
  opacity: .9;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: background .5s var(--ease), border-color .4s ease, transform .5s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat strong { font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.stat span { font-size: .76rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.stat-sep { width: 1px; height: 34px; background: rgba(255,255,255,.07); }

.scroll-arrow-wrap {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowWrapIn 1.4s var(--ease) 2.6s both;
}
@keyframes arrowWrapIn {
  from { opacity: 0; transform: translateX(-50%) translateY(14px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: arrowBob 2.6s ease-in-out infinite;
  transition: background .45s var(--ease), border-color .4s ease,
              color .35s ease, box-shadow .45s var(--ease);
}
.scroll-arrow svg { width: 20px; height: 20px; }
.scroll-arrow:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  animation-play-state: paused;
}

@keyframes arrowBob {
  0%, 55%, 100% { transform: translateY(0); }
  28%            { transform: translateY(8px); }
}

section { position: relative; z-index: 1; padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

.sec-head {
  text-align: center;
  margin-bottom: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.sec-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(var(--ah),.08);
  border: 1px solid rgba(var(--ah),.16);
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.sec-head h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -1.5px; color: #fff; }
.sec-head p { font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.65; }

.glass {
  background: rgba(255,255,255,.042);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-radius: var(--radius);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.product-card {
  display: block;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    border-color .15s ease,
    background .15s ease;
}
.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.065);
  box-shadow:
    0 32px 64px rgba(0,0,0,.5),
    0 8px 24px rgba(0,0,0,.3);
}

.product-thumb {
  position: relative;
  padding: 36px 28px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  cursor: pointer;
}
.product-thumb-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.07) 0%, transparent 65%);
  transition: opacity .15s ease;
}
.product-card:hover .product-thumb-glow { opacity: 2; }

.product-thumb img {
  position: relative;
  width: 52%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255,255,255,.18));
  transition: filter .15s ease, transform .15s ease;
}
.product-card:hover .product-thumb img {
  filter: drop-shadow(0 0 28px rgba(255,255,255,.42));
  transform: scale(1.07) translateY(-4px);
}

.product-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

.product-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-header h3 { font-size: 1.12rem; font-weight: 700; color: #fff; letter-spacing: -.3px; }

.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 99px;
  font-size: .7rem; font-weight: 600; color: #4ade80; white-space: nowrap;
}
.status-dot {
  --dot-rgb: 34,197,94;
  width: 5px; height: 5px; border-radius: 50%; background: #4ade80;
  animation: ping 2.5s ease infinite;
}

.product-body p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

.product-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600; color: var(--accent);
  transition: gap .15s ease;
}
.product-cta svg { width: 15px; height: 15px; }
.product-card:hover .product-cta { gap: 10px; }

.product-soon {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 48px 32px; text-align: center;
  min-height: 280px; border-style: dashed;
  cursor: default;
  will-change: transform;
  transition: transform .15s ease, border-color .15s ease;
}
.product-soon:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.11); }

.soon-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2);
}
.soon-icon svg { width: 26px; height: 26px; }
.soon-tag { font-size: .73rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.25); }
.product-soon p { font-size: .85rem; color: rgba(255,255,255,.2); line-height: 1.6; }

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

.feat {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: default;
  will-change: transform;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease,
    border-color .15s ease;
}
.feat:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.072);
  border-color: rgba(var(--ah),.22);
  box-shadow:
    0 24px 48px rgba(0,0,0,.45),
    0 8px 20px rgba(0,0,0,.25),
    0 0 0 1px rgba(var(--ah),.06);
}

.feat-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: color .15s ease, filter .15s ease, transform .15s ease;
}
.feat-icon svg { width: 28px; height: 28px; }
.feat:hover .feat-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(var(--ah),.5));
  transform: scale(1.1);
}

.feat h4 { font-size: 1rem; font-weight: 700; color: #fff; }
.feat p  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  overflow: hidden;
  cursor: default;
  transition: border-color .5s var(--ease), background .5s var(--ease);
}
.faq-item:hover { border-color: rgba(255,255,255,.1); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none;
  color: rgba(232,232,240,.85);
  font-family: inherit; font-size: .95rem; font-weight: 600; text-align: left;
  cursor: pointer;
  transition: color .3s ease;
}
.faq-q:hover { color: #fff; }

.faq-arrow {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--muted);
  transition: transform .6s var(--ease), color .35s ease;
}
.faq-arrow svg { width: 20px; height: 20px; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height .38s ease;
}
.faq-a p {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.78;
}

footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 70px 24px 32px;
  background: rgba(6,6,14,.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo img {
  height: 30px; width: auto;
  filter: drop-shadow(0 0 8px rgba(var(--ah),.28));
  transition: filter .5s var(--ease);
}
.footer-logo:hover img { filter: drop-shadow(0 0 18px rgba(var(--ah),.55)); }

.footer-brand p { font-size: .875rem; color: var(--muted); line-height: 1.65; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; color: var(--muted);
  transition: background .45s var(--ease), color .3s ease,
              border-color .4s ease, transform .45s var(--ease);
}
.footer-socials a:hover {
  background: rgba(var(--ah),.1);
  border-color: rgba(var(--ah),.2);
  color: #fff;
  transform: translateY(-3px);
}
.footer-socials svg { width: 17px; height: 17px; }

.epvp-link {
  height: 36px !important;
  width: auto !important;
  padding: 0 10px !important;
  border-radius: 10px !important;
}
.epvp-link img {
  height: 20px;
  width: auto;
  display: block;
  opacity: .8;
  transition: opacity .15s ease;
}
.epvp-link:hover img { opacity: 1; }

.footer-col h5 { font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .875rem; color: var(--muted);
  transition: color .35s ease, transform .4s var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .8rem; color: var(--muted);
}
.footer-disclaimer { font-style: italic; opacity: .55; }

.product-hero {
  position: relative; z-index: 1;
  min-height: 60vh;
  display: flex; align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden; isolation: isolate;
  clip-path: inset(0);
}

.product-hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.product-hero-text { display: flex; flex-direction: column; gap: 22px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .3s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.18); }

.product-hero-text h1 {
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 900; letter-spacing: -2px; color: #fff; line-height: 1.1;
}
.product-hero-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 480px; }
.product-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.product-hero-img {
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.product-hero-img img {
  width: 80%; height: auto; object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(var(--ah),.38));
  animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.product-video-card {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.product-video-ratio {
  position: relative;
  aspect-ratio: 16 / 9;
}
.product-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.vc-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: pointer;
}
.vc-wrap iframe { pointer-events: none; }
.vc-wrap.controls-hidden { cursor: none; }

.vc-center-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: opacity .3s ease;
}
.vc-center-play svg {
  width: 96px;
  height: 96px;
  color: #fff;
  filter: drop-shadow(0 0 24px rgba(0,0,0,.75));
  transition: transform .35s var(--ease), filter .35s ease;
}
.vc-center-play:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 36px rgba(var(--ah),.6));
}
.vc-center-play.hidden { opacity: 0; pointer-events: none; }

.vc-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
  z-index: 4;
  cursor: default;
  transition: opacity .35s ease, transform .35s var(--ease);
}
.vc-wrap.controls-hidden .vc-bar {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.vc-btn {
  background: none;
  border: none;
  padding: 3px;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  transition: color .25s ease, transform .3s var(--ease);
}
.vc-btn:hover { color: #fff; transform: scale(1.15); }
.vc-btn svg { width: 28px; height: 28px; }

.vc-icon-pause,
.vc-icon-compress { display: none; }
.vc-wrap.playing .vc-icon-play  { display: none; }
.vc-wrap.playing .vc-icon-pause { display: inline; }
.vc-wrap.fullscreen .vc-icon-expand   { display: none; }
.vc-wrap.fullscreen .vc-icon-compress { display: inline; }

.vc-progress {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.2);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: height .2s ease;
}
.vc-progress:hover { height: 9px; }
.vc-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--accent);
  border-radius: 99px;
  pointer-events: none;
}
.vc-progress-thumb {
  position: absolute;
  top: 50%; left: 0%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.vc-progress:hover .vc-progress-thumb { opacity: 1; }

.vc-time {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
  letter-spacing: .01em;
}

.product-section { padding: 80px 24px; overflow: hidden; }
.product-section .container { max-width: 1200px; margin: 0 auto; }

.product-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

.product-feat {
  display: flex; align-items: flex-start; gap: 16px; padding: 22px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease),
              background .4s ease, border-color .4s ease;
}
.product-feat:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.product-feat .feat-icon { flex-shrink: 0; width: 42px; height: 42px; }
.product-feat h5 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.product-feat p { font-size: .85rem; color: var(--muted); line-height: 1.62; }

.feat-group-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: start;
}

.feat-group {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
  grid-column: span 3;
  transition:
    transform .55s var(--ease),
    box-shadow .55s var(--ease),
    background .4s ease,
    border-color .4s ease;
}
.feat-group.small { grid-column: span 2; }
.feat-group:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}

.feat-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feat-group-head svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.feat-group-head h4 {
  font-size: 1rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.feat-group-sub {
  font-size: .75rem; font-weight: 500;
  color: var(--muted); letter-spacing: .01em;
}

.feat-group-note {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.feat-group-note > p { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.feat-group-note ul { display: flex; flex-direction: column; gap: 5px; }
.feat-group-note li {
  font-size: .8rem; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 7px;
}
.feat-group-note li::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: rgba(var(--ah),.7); flex-shrink: 0;
}
.feat-group-note-sub { font-style: italic; font-size: .77rem; opacity: .65; }

.feat-group-list { display: grid; grid-template-columns: 1fr; gap: 7px; }
.feat-group-list.two-col { grid-template-columns: repeat(2, 1fr); }
.feat-group-list li {
  font-size: .84rem; color: rgba(232,232,240,.75);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.feat-group-list li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: rgba(var(--ah),.55);
  flex-shrink: 0; margin-top: 5px;
}

.web-radar-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 44px 48px;
  align-items: center;
  transition: border-color .4s ease, background .4s ease;
}
.web-radar-card:hover {
  border-color: rgba(var(--ah),.15);
  background: rgba(255,255,255,.055);
}

.web-radar-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.web-radar-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
}
.web-radar-text p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.72;
}

.web-radar-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.web-radar-point {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .875rem;
  color: rgba(232,232,240,.8);
  line-height: 1.45;
}
.web-radar-point svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

@media (max-width: 1024px) {
  .web-radar-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 32px; }
}
@media (max-width: 700px) {
  .web-radar-card { padding: 28px 24px; }
  .web-radar-points { grid-template-columns: 1fr; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonials-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.testimonials-cta p {
  max-width: 520px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}
.testimonials-cta strong { color: #a5b0ff; font-weight: 600; }
.testimonial {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  will-change: transform;
}
.testimonial:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: rgba(var(--ah),.18);
}
.testimonial-head { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.testimonial-name { font-size: .9rem; font-weight: 600; color: #fff; }
.testimonial-discord { width: 18px; height: 18px; color: #5865f2; flex-shrink: 0; }
.testimonial-text { font-size: .88rem; color: rgba(232,232,240,.7); line-height: 1.65; }

.product-cta-section {
  text-align: center;
  padding: 80px 24px;
  position: relative; z-index: 1;
}
.product-cta-box {
  max-width: 560px; margin: 0 auto;
  padding: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.product-cta-box h2 { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.product-cta-box p  { font-size: .95rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-features-grid { grid-template-columns: 1fr; }
  .feat-group-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-group, .feat-group.small { grid-column: span 1; }
}
@media (max-width: 700px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; gap: 12px; padding: 18px 20px; }
  .stat-sep { width: 40px; height: 1px; }
  .nav-wrap { gap: 12px; padding: 0 16px; }
  .feat-group-grid { grid-template-columns: 1fr; }
  .feat-group-list.two-col { grid-template-columns: 1fr; }

  
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 60px; }
  .sec-head { margin-bottom: 40px; gap: 12px; }
  .product-section { padding: 48px 20px; }
  footer { padding: 48px 20px 28px; }
  .footer-top { padding-bottom: 32px; }

  
  .product-body { padding: 18px; }
  .product-soon { padding: 36px 24px; }
  .product-thumb { padding: 28px 20px; }

  
  .feat { padding: 24px 20px; }

  
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  
  .product-hero { padding: 100px 20px 48px; }
  .product-hero-actions { flex-direction: column; }
  .product-cta-box { padding: 32px 24px; }
}
