/* ============================================================
   VstPluginz.com — About Pages Master Stylesheet v2
   Deep navy · Electric blue · Indigo · Hot pink accents
   Glassmorphism panels · Scroll animations · Premium feel
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  /* Core palette — matched to site screenshot */
  --vp-bg:        #06060f;
  --vp-bg2:       #0b0b1e;
  --vp-navy:      #090920;
  --vp-indigo:    #1a1060;
  --vp-blue:      #2d1cb5;
  --vp-elec:      #4f3fff;   /* electric indigo/blue — nav bar */
  --vp-royal:     #5b30ff;
  --vp-pink:      #e8189a;   /* hot pink — search btn / VIP */
  --vp-pink2:     #ff38d1;
  --vp-cyan:      #00d4ff;   /* electric cyan highlights */
  --vp-cyan2:     #7af0ff;
  --vp-ink:       #f0eeff;
  --vp-muted:     #9b93c9;
  --vp-soft:      #cec7ff;
  --vp-line:      rgba(100,120,255,.18);
  --vp-glass:     rgba(15,10,50,.55);
  --vp-glass2:    rgba(30,20,80,.4);
  --vp-radius:    22px;
  --vp-radius-sm: 14px;

  /* Gradient shorthands */
  --grad-primary: linear-gradient(135deg, #5b30ff 0%, var(--vp-elec) 55%, var(--vp-cyan) 100%);
  --grad-elec:    linear-gradient(135deg, var(--vp-elec), var(--vp-blue));
  --grad-text:    linear-gradient(90deg, #fff 0%, var(--vp-cyan2) 40%, var(--vp-pink2) 80%);
}


/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(79,63,255,.38) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 5%,  rgba(232,24,154,.22) 0%, transparent 45%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,212,255,.12) 0%, transparent 50%),
    linear-gradient(180deg, #06060f 0%, #0e0830 40%, #07061a 100%);
  color: var(--vp-ink);
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
p  { color: var(--vp-soft); }

/* ── Noise texture overlay (subtle depth) ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='1'/%3E%3C/svg%3E");
  opacity: .022;
}

/* ── Page & Shell ── */
.vp-page   { position: relative; min-height: 100vh; padding: 24px 16px 80px; z-index: 1; }
.vp-shell  { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

/* ── Floating orbs ── */
.vp-float {
  position: fixed; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .28; animation: orb-drift 18s ease-in-out infinite alternate;
}
.vp-float.one  { width: 480px; height: 480px; background: var(--vp-elec);  right: -8%;  top: -6%;  animation-delay: 0s;   }
.vp-float.two  {width: 360px;height: 360px;background: #7318e8;left: -6%;bottom: 10%;animation-delay: -7s;}
.vp-float.three{ width: 280px; height: 280px; background: var(--vp-cyan);  left: 40%;   top: 55%;  animation-delay: -13s; filter: blur(100px); opacity: .14; }

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

/* ── Top Bar ── */
.vp-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 12px 20px; margin-bottom: 28px;
  background: var(--vp-glass);
  border: 1px solid var(--vp-line);
  border-radius: var(--vp-radius);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: 0 8px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.07);
  position: sticky; top: 12px; z-index: 100;
  animation: slide-down .55s cubic-bezier(.22,1,.36,1) both;
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vp-brand { display: flex; align-items: center; gap: 12px; min-width: 180px; }
.vp-logo-img {height: 70px;width: auto;display: block;object-fit: contain;/* filter: drop-shadow(0 0 10px rgba(79,63,255,.5)); */}

.vp-brand-title { font-size: 16px; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.vp-brand-sub   { font-size: 10px; color: var(--vp-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-top: 3px; }

.vp-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.vp-nav a {
  padding: 8px 13px; border-radius: 999px;
  background: rgba(79,63,255,.12); border: 1px solid rgba(79,63,255,.22);
  color: var(--vp-soft); font-size: 11.5px; font-weight: 700;
  transition: all .2s ease; white-space: nowrap;
}
.vp-nav a:hover {
  background: linear-gradient(135deg, var(--vp-elec), var(--vp-blue));
  border-color: rgba(255,255,255,.25);
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79,63,255,.4);
}
.vp-nav a.is-active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  /* box-shadow: 0 4px 16px rgba(232,24,154,.35); */
}

/* ── Back link ── */
.vp-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 24px; padding: 9px 16px; border-radius: 999px;
  background: rgba(79,63,255,.1); border: 1px solid var(--vp-line);
  font-weight: 700; color: var(--vp-soft); font-size: 13px;
  transition: all .2s ease;
  animation: fade-up .5s .2s cubic-bezier(.22,1,.36,1) both;
}
.vp-back:hover { background: rgba(79,63,255,.22); transform: translateX(-3px); }

/* ── SCROLL ANIMATION SYSTEM ── */
.vp-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.vp-reveal.is-visible { opacity: 1; transform: translateY(0); }

.vp-reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.vp-reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.vp-reveal-left.is-visible, .vp-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.vp-reveal-d1 { transition-delay: .08s; }
.vp-reveal-d2 { transition-delay: .16s; }
.vp-reveal-d3 { transition-delay: .24s; }
.vp-reveal-d4 { transition-delay: .32s; }

/* ── Hero ── */
.vp-hero {
  display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap: 20px; align-items: stretch;
  animation: fade-up .6s .15s cubic-bezier(.22,1,.36,1) both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Glassmorphism panel base */
.vp-glass-panel {
  background: var(--vp-glass);
  border: 1px solid var(--vp-line);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}

.vp-hero-copy {
  padding: 48px 44px; border-radius: var(--vp-radius);
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; flex-direction: column; justify-content: center;
}
.vp-hero-copy.vp-glass-panel { border-radius: var(--vp-radius); }

/* Decorative corner glow inside hero */
.vp-hero-copy::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(24 73 232 / 30%), transparent 65%);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
}
.vp-hero-copy::before {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.18), transparent 65%);
  top: -50px; left: -40px; pointer-events: none;
}

.vp-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content; padding: 8px 14px; border-radius: 999px;
  background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.28);
  color: var(--vp-cyan2); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .13em; margin-bottom: 20px;
}

.vp-headline {
  font-size: clamp(26px, 4.2vw, 52px); line-height: .92;
  letter-spacing: -.065em; font-weight: 900; margin-bottom: 20px;
}
.vp-headline .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline;
}

/* Animated underline on headline grad */
.vp-headline .grad::after {
  content: ''; display: block; height: 3px; width: 100%;
  background: var(--grad-primary); border-radius: 4px; margin-top: 4px;
  transform: scaleX(0); transform-origin: left;
  animation: underline-in .8s 1s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

.vp-sub { font-size: 15.5px; color: var(--vp-soft); max-width: 580px; margin-bottom: 30px; line-height: 1.75; font-weight: 400; }

.vp-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.vp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-weight: 800; font-size: 13.5px;
  border: 1px solid transparent; cursor: pointer; transition: all .22s ease;
  font-family: 'Outfit', sans-serif; min-height: 46px; position: relative; overflow: hidden;
}
.vp-btn.primary {
  background: var(--grad-primary);
  /* box-shadow: 0 10px 36px rgba(232,24,154,.38); */
  color: #fff;
}
.vp-btn.primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .22s;
}
.vp-btn.primary:hover::before {background: rgba(255,255,255,.1);}
.vp-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(232,24,154,.5); }

.vp-btn.secondary {
  background: rgba(79,63,255,.14); border-color: var(--vp-line); color: var(--vp-soft);
}
.vp-btn.secondary:hover {
  background: rgba(79,63,255,.28); border-color: rgba(79,63,255,.5);
  color: #fff; transform: translateY(-2px);
}

/* ── Media card ── */
.vp-media-card {
  border-radius: var(--vp-radius); overflow: hidden; position: relative;
  min-height: 520px; border: 1px solid var(--vp-line);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.vp-media-card img, .vp-media-card video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  display: block;
  filter: saturate(1.15) contrast(1.05);
  transition: transform .6s ease;
}
.vp-media-card:hover img { transform: scale(1.03); }
.vp-media-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(6,6,20,.85) 0%, rgba(6,6,20,.1) 55%, transparent 100%);
}

.vp-play {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: #2d1cb5;
  font-size: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s;
  display: none;
}
.vp-play:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(79,63,255,.5); }

.vp-media-caption {
  position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 24px;
}
.vp-media-caption h2 { font-size: 20px; font-weight: 800; letter-spacing: -.04em; margin-bottom: 5px; }
.vp-media-caption p  { font-size: 13px; color: #c5bde8; font-weight: 600; margin: 0; }

/* ── Stats strip ── */
.vp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0;
}
.vp-stat {
  padding: 20px 18px; border-radius: 18px; min-height: 100px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s;
}
.vp-stat.vp-glass-panel { border-radius: 18px; }
.vp-stat:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(79,63,255,.25); }
.vp-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-primary); opacity: .7;
}
.vp-stat strong {
  display: block; font-size: 26px; font-weight: 900;
  letter-spacing: -.05em; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.vp-stat span {
  display: block; margin-top: 8px; color: var(--vp-muted);
  font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
}

/* ── Section headings ── */
.vp-section { margin-top: 30px; }
.vp-section-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; margin-bottom: 18px; }
.vp-section-title {
  font-size: 24px; font-weight: 900; letter-spacing: -.05em; line-height: 1;
  position: relative; display: inline-block;
}
.vp-section-title::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 40px; height: 3px; border-radius: 4px;
  background: var(--grad-primary);
}
.vp-section-sub { margin: 10px 0 0; color: var(--vp-muted); font-weight: 600; font-size: 14px; }

/* ── Cards grid ── */
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.vp-card {
  padding: 28px 24px; border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s;
  position: relative; overflow: hidden;
}
.vp-card.vp-glass-panel { border-radius: 20px; }
.vp-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(79,63,255,.08), rgba(232,24,154,.05));
  opacity: 0; transition: opacity .3s;
}
.vp-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.vp-card:hover::before { opacity: 1; }

/* Accent line top of card */
.vp-card::after {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: var(--grad-primary); opacity: .4;
}
.vp-card-icon {
  font-size: 28px; margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(232,24,154,.4));
}
.vp-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; color: #fff; }
.vp-card p  { font-size: 14px; color: #b0a5d0; line-height: 1.7; }

/* ── Split panel ── */
.vp-split {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px;
}
.vp-panel {
  padding: 30px 28px; border-radius: 20px;
}
.vp-panel.vp-glass-panel { border-radius: 20px; }
.vp-panel h2 { font-size: 18px; font-weight: 800; letter-spacing: -.04em; margin-bottom: 14px; color: #fff; }
.vp-panel p  { color: #b8b0d8; font-size: 14.5px; line-height: 1.75; }

/* CTA inside panel */
.vp-panel .vp-cta { margin-top: 20px; }

/* ── Accordion ── */
.vp-info-list { display: grid; gap: 10px; }
.vp-acc {
  border: 1px solid var(--vp-line); border-radius: 16px;
  background: rgba(10,8,32,.5); overflow: hidden;
  transition: border-color .2s;
}
.vp-acc[open] { border-color: rgba(79,63,255,.45); }
.vp-acc summary {
  cursor: pointer; list-style: none; padding: 16px 20px;
  font-weight: 800; font-size: 14.5px; display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
  color: var(--vp-soft); transition: color .2s;
}
.vp-acc summary::-webkit-details-marker { display: none; }
.vp-acc summary::after {
  content: '+'; font-size: 20px; font-weight: 300; color: var(--vp-cyan);
  transition: transform .3s, color .2s;
  flex-shrink: 0;
}
.vp-acc[open] summary { color: #fff; }
.vp-acc[open] summary::after { content: '−'; transform: rotate(180deg); }

.vp-acc-body { padding: 0 20px 20px; }
.vp-acc-body p  { color: #b0a8cc; font-size: 14px; margin-bottom: 10px; line-height: 1.75; }
.vp-acc-body p:last-child { margin-bottom: 0; }
.vp-acc-body ul { margin: 0; padding-left: 18px; color: #b0a8cc; font-size: 14px; }
.vp-acc-body strong { color: #fff; }

/* ── Notice banner ── */
.vp-notice {
  margin-top: 22px; border-radius: 18px; padding: 20px 24px;
  border: 1px solid rgba(0,212,255,.28);
  background: linear-gradient(135deg, rgba(0,212,255,.08), rgba(79,63,255,.1));
  font-size: 14px; font-weight: 600; color: var(--vp-soft);
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.vp-notice::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-primary);
}
.vp-notice strong { color: var(--vp-cyan2); }

/* ── Footer ── */
.vp-foot {
  margin-top: 40px; padding: 20px 0;
  border-top: 1px solid var(--vp-line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--vp-muted); font-size: 13px; font-weight: 500;
}
.vp-foot a {
  font-weight: 800; color: var(--vp-soft);
  transition: color .2s;
}
.vp-foot a:hover { color: var(--vp-cyan); }

/* ── Divider line with glow ── */
.vp-divider {
  height: 1px; margin: 28px 0;
  background: linear-gradient(90deg, transparent, rgba(79,63,255,.5), rgba(0,212,255,.4), transparent);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .vp-topbar { flex-direction: column; align-items: flex-start; position: static; }
  .vp-nav    { justify-content: flex-start; }
  .vp-hero   { grid-template-columns: 1fr; }
  .vp-hero-copy { min-height: auto; padding: 32px 28px; }
  .vp-media-card, .vp-media-card img { min-height: 300px; }
  .vp-stats  { grid-template-columns: repeat(2, 1fr); }
  .vp-grid   { grid-template-columns: 1fr; }
  .vp-split  { grid-template-columns: 1fr; }
  .vp-headline { font-size: 32px; }
  .vp-float  { display: none; }
}

@media (max-width: 560px) {
  .vp-page { padding: 12px 10px 50px; }
  .vp-topbar { border-radius: 16px; padding: 12px 14px; }
  .vp-nav a  { font-size: 10.5px; padding: 7px 10px; }
  .vp-hero-copy { padding: 22px 20px; border-radius: 18px; }
  .vp-headline  { font-size: 22px; }
  .vp-stats     { grid-template-columns: repeat(2, 1fr); }
  .vp-btn       { width: 100%; justify-content: center; }
  .vp-media-card, .vp-media-card img { min-height: 240px; }
  .vp-media-caption h2 { font-size: 18px; }
  .vp-card { padding: 22px 18px; }
  .vp-panel { padding: 22px 18px; }
}

/* ── Scrollbar styling ── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--vp-bg2); }
::-webkit-scrollbar-thumb { background: var(--vp-elec); border-radius: 8px; }

/* ── Selection highlight ── */
::selection { background: rgba(79,63,255,.4); color: #fff; }
