/* ═══════════════════════════════════════════════
   HEX CUSTOMS — Vice Neon  |  style.css
   All colours/sizes driven from site.json via JS
   ═══════════════════════════════════════════════ */

/* ── Reset & Base ── */
:root {
  --A: #ff6a3d;
  --B: #ec4899;
  --C: #a855f7;
  --D: #7c3aed;
  --E: #00f5d4;
  --bg:    #060311;
  --bg2:   #0a0520;
  --card:  rgba(255,255,255,.055);
  --border:rgba(168,85,247,.18);
  --txt:   rgba(245,240,255,.94);
  --muted: rgba(196,181,253,.75);
  --r: 18px;
  --glow: 0 0 40px rgba(168,85,247,.25), 0 0 80px rgba(236,72,153,.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--txt);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Canvas background ── */
#heartCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: .96;
}

/* ── Shell ── */
.pageShell { min-height: 100vh; display: flex; flex-direction: column; position: relative; }
.pageMain  { flex: 1; position: relative; z-index: 1; padding: 50px 0 80px; }
.wrap      { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,3,17,.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,.12);
}
.nav__inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 20px; height: 62px;
  display: flex; align-items: center; gap: 14px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .12em;
  flex-shrink: 0;
}
.nav__badge {
  width: 32px; height: 32px; border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(168,85,247,.35);
  box-shadow: 0 0 12px rgba(168,85,247,.4);
}
.nav__links { margin-left: auto; display: flex; gap: 4px; }
.nav__links a {
  color: var(--muted); font-size: 14px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 10px;
  transition: all .2s;
}
.nav__links a:hover  { color: var(--txt); background: rgba(255,255,255,.06); }
.nav__links a.active {
  color: #fff;
  background: linear-gradient(135deg,rgba(168,85,247,.22),rgba(236,72,153,.14));
  border: 1px solid rgba(168,85,247,.25);
}
.nav__cta { display: flex; gap: 8px; margin-left: 12px; }

/* Mobile hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.ham span { width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: all .2s; }
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(6,3,17,.96);
    border-bottom: 1px solid rgba(168,85,247,.15);
    padding: 12px 20px 16px; z-index: 200;
  }
  .ham { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--A), var(--C));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(236,72,153,.3);
  transition: all .2s;
}
.btn:hover  { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 8px 32px rgba(236,72,153,.45); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,85,247,.28);
  box-shadow: none;
}
.btn--ghost:hover { border-color: rgba(168,85,247,.5); background: rgba(168,85,247,.1); }
.btn--lg { padding: 14px 28px; font-size: 15px; }

/* ── Page header ── */
.pageTitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px,5vw,72px); letter-spacing: .06em;
  background: linear-gradient(135deg,#fff,var(--B),var(--C));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.pageSub { font-size: 16px; color: var(--muted); }
.page-header { text-align: center; margin-bottom: 48px; }

/* ── Hero ── */
.hero { text-align: center; padding: 20px 0 40px; }
.hero__eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--E); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--E); opacity: .5;
}
.hero__banner {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--glow);
  margin-bottom: 36px;
  animation: floaty 6s ease-in-out infinite;
}
.hero__banner img { width: 100%; height: auto; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero__h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px,8vw,110px); line-height: .92; letter-spacing: .04em;
  background: linear-gradient(135deg,#fff 10%,var(--B) 50%,var(--C) 90%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.hero__h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px,7.5vw,100px); line-height: .92; letter-spacing: .04em;
  -webkit-text-stroke: 1.5px rgba(168,85,247,.6); color: transparent;
  margin-bottom: 22px;
}
.hero__desc {
  font-size: 17px; color: var(--muted);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.6;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Stats bar */
.statsBar {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(168,85,247,.12);
  border-radius: var(--r); overflow: hidden; margin-top: 48px;
}
.stat { background: var(--bg2); padding: 24px 20px; text-align: center; }
.stat__num {
  font-family: 'Bebas Neue', sans-serif; font-size: 42px;
  background: linear-gradient(135deg,var(--A),var(--C));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat__label { font-size: 13px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

/* ── Pills ── */
.pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.pill {
  padding: 8px 18px; border-radius: 50px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(168,85,247,.18);
  font-family: 'Rajdhani',sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: all .2s;
}
.pill:hover { border-color: rgba(168,85,247,.45); color: var(--txt); }
.pill.active {
  background: linear-gradient(135deg,rgba(236,72,153,.2),rgba(168,85,247,.2));
  border-color: var(--C); color: #fff;
}

/* ── Promo banner ── */
.promo {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 28px; border-radius: var(--r);
  background: linear-gradient(135deg,rgba(168,85,247,.14),rgba(236,72,153,.1));
  border: 1px solid rgba(168,85,247,.28);
  margin-bottom: 32px; cursor: pointer; transition: all .2s;
}
.promo:hover { border-color: rgba(168,85,247,.55); transform: translateY(-2px); }
.promo__left  { display: flex; align-items: center; gap: 16px; }
.promo__icon  {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg,var(--D),var(--B));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.promo__title { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.promo__sub   { font-size: 13px; color: var(--muted); }
.promo__btn   {
  padding: 9px 20px; border-radius: 50px;
  background: linear-gradient(135deg,var(--A),var(--C));
  font-size: 13px; font-weight: 700; letter-spacing: .06em; white-space: nowrap; color: #fff;
}

/* ── Product grid ── */
.gridProducts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
}
.pCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all .3s; cursor: pointer;
  display: flex; flex-direction: column;
}
.pCard:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,.45);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(168,85,247,.2);
}
.pImg { aspect-ratio: 16/10; overflow: hidden; background: #0d0824; }
.pImg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pCard:hover .pImg img { transform: scale(1.06); }
.pBody   { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pTop    { display: flex; align-items: center; justify-content: space-between; }
.pTag    {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.25); color: var(--C);
}
.pFeatured {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
  background: linear-gradient(135deg,rgba(255,106,61,.2),rgba(236,72,153,.15));
  border: 1px solid rgba(255,106,61,.3); color: var(--A); cursor: default;
}
.pName   { font-size: 17px; font-weight: 700; line-height: 1.3; }
.pDesc   { font-size: 14px; color: var(--muted); line-height: 1.5; flex: 1; }
.pBottom { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.pPrice  {
  font-family: 'Space Mono', monospace; font-size: 18px; font-weight: 700;
  background: linear-gradient(135deg,var(--A),var(--B));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pBuy {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  padding: 7px 14px; border-radius: 50px;
  background: linear-gradient(135deg,var(--D),var(--B)); color: #fff; transition: all .2s;
}
.pBuy:hover { filter: brightness(1.15); }

/* ── Blog grid ── */
.gridBlog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 24px;
}
.bCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all .3s; cursor: pointer; display: flex; flex-direction: column;
}
.bCard:hover { transform: translateY(-5px); border-color: rgba(168,85,247,.4); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.bImg         { aspect-ratio: 16/9; overflow: hidden; background: #0d0824; }
.bImg img     { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bCard:hover .bImg img { transform: scale(1.06); }
.bBody        { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bMeta        { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.bTag         {
  padding: 2px 9px; border-radius: 50px;
  background: rgba(236,72,153,.12); border: 1px solid rgba(236,72,153,.22);
  color: var(--B); font-weight: 700; letter-spacing: .06em;
}
.bTitle  { font-size: 20px; font-weight: 700; line-height: 1.3; }
.bDesc   { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.bMore   { font-size: 13px; font-weight: 700; color: var(--C); letter-spacing: .06em; display: flex; align-items: center; gap: 6px; margin-top: 4px; }

/* ── About ── */
.aboutTop {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 60px; align-items: start;
}
@media (max-width: 768px) { .aboutTop { grid-template-columns: 1fr; } }
.aboutImg {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--glow);
}
.aboutImg img { width: 100%; height: auto; }
.aBlock { margin-bottom: 28px; }
.aH     { font-family: 'Bebas Neue',sans-serif; font-size: 24px; letter-spacing: .08em; color: var(--C); margin-bottom: 8px; }
.aP     { font-size: 15px; color: var(--muted); line-height: 1.7; }
.valuesTitle {
  font-family: 'Bebas Neue',sans-serif; font-size: 36px;
  letter-spacing: .08em; text-align: center; margin-bottom: 28px;
  background: linear-gradient(135deg,var(--A),var(--C));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.valuesGrid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.vCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; text-align: center; transition: all .3s;
}
.vCard:hover { border-color: rgba(168,85,247,.4); transform: translateY(-4px); }
.vIcon  { font-size: 32px; margin-bottom: 12px; }
.vTitle { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.vText  { font-size: 14px; color: var(--muted); }

/* ── Contact ── */
.contactGrid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 40px; align-items: start;
}
@media (max-width: 768px) { .contactGrid { grid-template-columns: 1fr; } }
.contactInfo  { display: flex; flex-direction: column; gap: 16px; }
.contactH2    { font-family: 'Bebas Neue',sans-serif; font-size: 28px; letter-spacing: .08em; margin-bottom: 8px; }
.infoCard {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px; transition: all .2s;
}
.infoCard:hover { border-color: rgba(168,85,247,.35); }
.infoIcon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg,var(--D),var(--B));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.infoTitle { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.infoText  { font-size: 15px; font-weight: 600; }
.mutedLink { color: var(--C); transition: color .2s; }
.mutedLink:hover { color: var(--B); }
.contactFormWrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px;
}
.contactForm .fField { margin-bottom: 20px; }
.contactForm .fField label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.contactForm .fField input,
.contactForm .fField textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(168,85,247,.18); border-radius: 12px;
  color: var(--txt); font-family: 'Rajdhani',sans-serif; font-size: 15px;
  padding: 13px 16px; outline: none; transition: border-color .2s; resize: none;
}
.contactForm .fField input:focus,
.contactForm .fField textarea:focus { border-color: rgba(168,85,247,.5); }
.contactForm .fField textarea { height: 130px; }
.contactForm .fField input::placeholder,
.contactForm .fField textarea::placeholder { color: rgba(196,181,253,.35); }
.sendBtn { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }
.tinyNote { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }

/* ── Thanks ── */
.centerThanks { text-align: center; padding: 60px 20px; }
.thanksIcon   { font-size: 72px; margin-bottom: 20px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ── Glow divider ── */
.glowLine {
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--C),var(--B),transparent);
  margin: 40px 0; opacity: .35;
}

/* ── Footer ── */
.footer { position: relative; z-index: 2; border-top: 1px solid rgba(168,85,247,.1); background: rgba(6,3,17,.8); }
.footer__inner {
  max-width: 1160px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted); gap: 16px; flex-wrap: wrap;
}
.footer__brand {
  font-family: 'Bebas Neue',sans-serif; font-size: 16px; letter-spacing: .12em;
  background: linear-gradient(135deg,var(--A),var(--C));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── sectionTop ── */
.sectionTop { padding: 30px 0 20px; }


body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}
body::before {
  left: -12vw;
  bottom: -12vh;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(255,106,61,.18) 0%, rgba(255,106,61,.08) 34%, transparent 70%);
}
body::after {
  right: -8vw;
  top: -6vh;
  width: 38vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(168,85,247,.18) 0%, rgba(168,85,247,.08) 30%, transparent 72%);
}

.pageMain { padding: 0 0 80px; }
.wrap { max-width: 1240px; }
.nav { background: rgba(7,3,18,.82); }
.nav__inner { height: 74px; }
.nav__brand { font-size: 26px; color: transparent; }
.nav__brand span {
  background: linear-gradient(90deg, #ff7a59 0%, #ff5aa5 45%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(236,72,153,.18);
}

.nav__links { margin-left: 28px; }
.nav__links a { font-size: 12px; letter-spacing: .14em; padding: 10px 14px; }
.nav__cta { margin-left: auto; }
.btn { background: linear-gradient(90deg, #ff6a57, #ff5fa8); box-shadow: 0 10px 30px rgba(255,95,168,.18); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--txt); }
.btn--lg { min-width: 170px; }

.hero {
  padding: 110px 0 36px;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(400px, 1fr);
  gap: 74px;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,245,212,.24);
  background: rgba(0,245,212,.06);
}
.hero__eyebrow::before, .hero__eyebrow::after { width: 6px; height: 6px; border-radius: 999px; background: var(--E); opacity: 1; }
.hero__headline { margin-bottom: 24px; }
.hero__h1, .hero__h2, .hero__h3 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: .88;
  letter-spacing: .03em;
}
.hero__h1, .hero__h3 {
  font-size: clamp(88px, 11vw, 140px);
  color: rgba(245,242,255,.96);
  background: none;
  -webkit-text-fill-color: initial;
}
.hero__h2 {
  font-size: clamp(88px, 11vw, 140px);
  color: #ff6f61;
  -webkit-text-stroke: 0;
  margin: 0;
}
.hero__h3 { font-size: clamp(70px, 8vw, 108px); }
.hero__desc {
  max-width: 500px;
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(211,197,246,.58);
}
.hero__actions { justify-content: flex-start; }
.hero__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 18% 16% 12% 14%;
  background: radial-gradient(circle, rgba(255,106,61,.20) 0%, rgba(168,85,247,.11) 45%, transparent 75%);
  filter: blur(30px);
  animation: heroAuraPulse 5.8s ease-in-out infinite;
}
.hero__banner {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin: 0;
  border-radius: 22px;
  border-color: rgba(255,255,255,.08);
  background: rgba(9,4,28,.55);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  animation: heroCardFloat 5.8s ease-in-out infinite;
}
.hero__banner::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle at 50% 50%, rgba(236,72,153,.12), rgba(168,85,247,.05) 42%, transparent 70%);
  filter: blur(22px);
  opacity: .65;
  pointer-events: none;
  z-index: 1;
  animation: heroBannerGlow 5.8s ease-in-out infinite;
}
.hero__banner::after {
  content: "";
  position: absolute;
  inset: -12% 58% -12% -28%;
  background: linear-gradient(102deg, transparent 0%, rgba(255,255,255,.02) 32%, rgba(255,255,255,.09) 49%, rgba(0,245,212,.10) 52%, transparent 66%);
  opacity: .8;
  transform: translateX(-125%) skewX(-18deg);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
  animation: heroSweep 5.8s ease-in-out infinite;
}
.hero__banner img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  will-change: transform, filter;
  animation: heroImageDrift 5.8s ease-in-out infinite;
  filter: saturate(1.05) contrast(1.03);
}
.hero__cardLabel {
  position: absolute;
  z-index: 3;
  min-width: 168px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(6,3,17,.94);
  border: 1px solid rgba(168,85,247,.18);
  box-shadow: 0 16px 38px rgba(0,0,0,.44), 0 0 0 1px rgba(168,85,247,.06) inset;
  color: rgba(196,181,253,.82);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .06em;
}
.hero__cardLabel span {
  display: block;
  margin-top: 4px;
  color: var(--E);
  font-size: 14px;
  font-weight: 700;
}

.hero__cardLabel--top {
  left: -22px;
  top: 44px;
  animation: heroLabelFloatTop 5.8s ease-in-out infinite;
}
.hero__cardLabel--bottom {
  right: -26px;
  bottom: 14px;
  animation: heroLabelFloatBottom 5.8s ease-in-out infinite;
}

@keyframes heroCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.45deg); }
  25% { transform: translate3d(7px, -8px, 0) rotate(0.1deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(0.55deg); }
  75% { transform: translate3d(-8px, -7px, 0) rotate(0deg); }
}
@keyframes heroImageDrift {
  0%, 100% { transform: scale(1.035) translate3d(-0.8%, 0.6%, 0); }
  50% { transform: scale(1.075) translate3d(1.2%, -1.2%, 0); }
}
@keyframes heroSweep {
  0%, 15% { transform: translateX(-125%) skewX(-18deg); opacity: 0; }
  28% { opacity: .78; }
  50% { transform: translateX(235%) skewX(-18deg); opacity: .62; }
  100% { transform: translateX(235%) skewX(-18deg); opacity: 0; }
}
@keyframes heroBannerGlow {
  0%, 100% { transform: scale(.96); opacity: .46; }
  50% { transform: scale(1.06); opacity: .72; }
}
@keyframes heroAuraPulse {
  0%, 100% { transform: scale(.98); opacity: .9; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes heroLabelFloatTop {
  0%, 100% { transform: translate3d(0, 0, 28px) rotate(-1.5deg); }
  25% { transform: translate3d(-6px, -6px, 28px) rotate(-2deg); }
  50% { transform: translate3d(-12px, -12px, 28px) rotate(-1deg); }
  75% { transform: translate3d(-8px, -7px, 28px) rotate(-2.2deg); }
}
@keyframes heroLabelFloatBottom {
  0%, 100% { transform: translate3d(0, 0, 28px) rotate(1.3deg); }
  25% { transform: translate3d(7px, 5px, 28px) rotate(2deg); }
  50% { transform: translate3d(14px, 10px, 28px) rotate(1deg); }
  75% { transform: translate3d(8px, 7px, 28px) rotate(2.4deg); }
}

.statsBar {
  margin-top: 42px;
  max-width: 420px;
  background: transparent;
  gap: 28px;
  border-radius: 0;
  overflow: visible;
  border-top: 1px solid rgba(168,85,247,.12);
  padding-top: 30px;
}
.stat {
  background: transparent;
  padding: 0;
  text-align: left;
}
.stat__num { font-size: 52px; }
.stat__label { font-size: 11px; color: rgba(196,181,253,.55); }

.footer {
  background: rgba(7,3,18,.9);
  border-top: 1px solid rgba(168,85,247,.1);
}
.footer__featureRow {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(255,255,255,.02);
}
.footerFeature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  min-height: 92px;
  border-right: 1px solid rgba(255,255,255,.04);
}
.footerFeature:last-child { border-right: 0; }
.footerFeature__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.footerFeature strong { display: block; font-size: 16px; }
.footerFeature small { display: block; font-size: 13px; color: rgba(196,181,253,.7); }
.footer__inner { max-width: 100%; padding: 18px 32px; font-size: 12px; }
.footer__brand { font-size: 26px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .ham { display: flex; }
  .hero { min-height: auto; padding: 84px 0 26px; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; min-height: 0; }
  .hero__actions { flex-wrap: wrap; }
  .statsBar { max-width: none; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer__featureRow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav__inner { height: 68px; }
  .nav__cta { display: none; }
  .hero__h1, .hero__h2 { font-size: clamp(62px, 18vw, 100px); }
  .hero__h3 { font-size: clamp(52px, 14vw, 82px); }
  .hero__desc { font-size: 18px; }
  .hero__cardLabel { position: static; margin-top: 14px; }
  .hero__visual { display: block; }
  .hero__banner { width: 100%; }
  .statsBar { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .footer__featureRow { grid-template-columns: 1fr; }
  .footerFeature { justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.04); }
  .footerFeature:last-child { border-bottom: 0; }
  .footer__inner { justify-content: center; text-align: center; }
}
