.store-policies { width: min(1180px, calc(100% - 40px)); margin: 24px auto 16px; color: #f5f9ff; text-align: right; }
.store-policies > header { margin-bottom: 12px; }
.store-policies > header > span, .store-policies header p { display: none; }
.store-policies h2 { font-size: 20px; margin: 0; }
.policy-sections { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; align-items: start; }
.policy-sections details { min-width: 0; border: 1px solid rgba(0,216,255,.25); border-radius: 10px; background: #07101f; overflow: hidden; }
.policy-sections details[open] { grid-column: 1 / -1; }
.policy-sections summary { min-height: 44px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; list-style: none; }
.policy-sections summary::-webkit-details-marker { display: none; }
.policy-sections summary::after { content: "+"; font-size: 20px; color: #00d8ff; flex-shrink: 0; }
.policy-sections details[open] summary::after { content: "−"; }
.policy-sections summary:focus-visible { outline: 2px solid #00d8ff; outline-offset: -4px; }
.policy-sections summary strong { display: block; font-size: 15px; line-height: 1.5; }
.policy-sections summary small { display: block; text-align: right; font-size: 12px; color: #9ab5d2; margin-top: 2px; }
.policy-content { padding: 8px 18px 18px; border-top: 1px solid rgba(0,216,255,.15); font-size: 16px; line-height: 2; color: #c0cce0; }
.policy-content ul { padding-inline-start: 24px; }
.policy-content li { margin: 12px 0; }
.policy-content strong { color: #f5f9ff; }
.policy-support { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 0 0; margin-top: 10px; font-size: 14px; }
.policy-support a { color: #00d8ff; overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 4px; }
@media(max-width: 600px) { .store-policies { width: calc(100% - 28px); margin-top: 20px; } .store-policies h2 { font-size: 18px; } .policy-sections { grid-template-columns: 1fr; gap: 8px; } .policy-sections summary { padding: 8px 12px; } }
:root {
  --bg: #02050d;
  --panel: #07101f;
  --panel-2: #0a1628;
  --line: rgba(83, 160, 255, .17);
  --line-bright: rgba(0, 214, 255, .46);
  --cyan: #00d8ff;
  --blue: #056dff;
  --text: #f5f9ff;
  --muted: #8d9bb1;
  --success: #22d3a7;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  overflow-x: hidden;
}

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  z-index: -1;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 5%, rgba(0, 114, 255, .2), transparent 32%),
    radial-gradient(circle at 8% 52%, rgba(0, 216, 255, .08), transparent 28%),
    linear-gradient(180deg, #030918 0%, #02050d 55%, #030812 100%);
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .08;
  background: repeating-linear-gradient(180deg, transparent 0 3px, #000 4px);
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 19px;
  background: rgba(4, 9, 20, .76);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(22px);
  z-index: 30;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { direction: ltr; display: grid; gap: 1px; }
.brand-copy b { font-size: 15px; letter-spacing: 1.7px; font-weight: 800; }
.brand-copy em { color: var(--cyan); font-style: normal; }
.brand-copy small { color: #66809f; font-size: 7px; letter-spacing: 2.1px; }

.main-nav { display: flex; align-items: center; gap: 35px; color: #9aa8bc; }
.main-nav a { position: relative; padding: 25px 0; font-size: 14px; transition: color .25s; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 14px;
  width: 18px; height: 2px;
  transform: translateX(-50%);
  background: var(--cyan);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--cyan);
}

.cart-trigger {
  height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,110,255,.22), rgba(0,216,255,.08));
  border: 1px solid rgba(0, 191, 255, .28);
  border-radius: 13px;
  cursor: pointer;
  transition: .25s ease;
}
.cart-trigger:hover { border-color: var(--cyan); transform: translateY(-1px); }
.cart-trigger svg { width: 20px; }
.cart-trigger span { font-size: 13px; font-weight: 700; }
.cart-trigger b {
  min-width: 21px; height: 21px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--cyan);
  color: #00131c;
  font-size: 11px;
}

.hero {
  min-height: 100svh;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 28px 70px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 45px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 104px -180px 50px;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(2,5,13,.94) 8%, rgba(2,5,13,.66) 58%, rgba(2,5,13,.9)), url("assets/banner.webp") center/cover;
  opacity: .16;
  filter: saturate(1.35);
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 80%, transparent);
}

.hero-glow {
  position: absolute;
  width: 460px; height: 460px;
  left: 8%; top: 30%;
  border-radius: 50%;
  background: rgba(0, 110, 255, .15);
  filter: blur(100px);
  z-index: -1;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow, .kicker {
  color: #8fcfff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 23px; }
.eyebrow span { width: 27px; height: 1px; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }
.hero h1 {
  margin: 0;
  font-size: clamp(49px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -3.6px;
  max-width: 680px;
}
.hero h1 strong {
  color: transparent;
  background: linear-gradient(100deg, #fff 8%, #24e0ff 48%, #1676ff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(0, 176, 255, .22));
}
.hero-copy > p {
  max-width: 550px;
  margin: 27px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; }
.button-primary {
  color: #001018;
  background: linear-gradient(135deg, #0ee2ff, #0878ff);
  box-shadow: 0 12px 34px rgba(0, 130, 255, .24), inset 0 1px rgba(255,255,255,.5);
}
.button-primary:hover { box-shadow: 0 16px 40px rgba(0, 152, 255, .36); }
.button-ghost { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(0,216,255,.45); }
.trust-row { display: flex; gap: 23px; margin-top: 36px; color: #8999ad; font-size: 12px; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row i { color: var(--cyan); font-style: normal; }

.hero-visual {
  position: relative;
  height: min(580px, 52vw);
  min-height: 460px;
  display: grid;
  place-items: center;
  direction: ltr;
}
.logo-stage {
  position: relative;
  width: min(420px, 34vw);
  aspect-ratio: 1;
  z-index: 2;
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(60, 181, 255, .19);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(0, 120, 255, .12), 0 0 70px rgba(0, 120, 255, .12);
}
.logo-stage img { position: relative; width: 100%; filter: drop-shadow(0 25px 45px rgba(0,0,0,.7)); }
.logo-halo {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  background: rgba(0, 142, 255, .3);
  filter: blur(65px);
}
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(61, 169, 255, .17); }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.orbit-one { width: 94%; aspect-ratio: 1; animation: rotate 18s linear infinite; }
.orbit-one::before { top: 14%; left: 12%; }
.orbit-one::after { right: 6%; bottom: 26%; }
.orbit-two { width: 77%; aspect-ratio: 1; border-style: dashed; animation: rotate 24s linear infinite reverse; }
.orbit-two::before { left: -4px; top: 50%; }
.orbit-two::after { right: 11%; top: 12%; }
.status-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(5, 12, 28, .82);
  box-shadow: 0 15px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(15px);
  color: #aab6c7;
  font-size: 11px;
}
.status-top { top: 21%; right: 1%; }
.status-top i { width: 7px; height: 7px; background: var(--success); border-radius: 50%; box-shadow: 0 0 12px var(--success); }
.status-bottom { left: 1%; bottom: 22%; }
.status-bottom strong { color: var(--cyan); font-size: 18px; }
.status-bottom span { max-width: 55px; line-height: 1.3; }
.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  direction: ltr;
  color: #52657e;
  font-size: 9px;
  letter-spacing: 2px;
}
.scroll-cue i { width: 24px; height: 36px; border: 1px solid #33445d; border-radius: 20px; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: var(--cyan); border-radius: 4px; transform: translateX(-50%); animation: scroll 1.7s infinite; }

.products-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0;
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 32px; }
.kicker { display: block; margin-bottom: 12px; color: var(--cyan); }
.section-heading h2, .how-copy h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -1.8px;
}
.section-heading h2 em, .how-copy h2 em { color: #4a5d77; font-style: normal; }
.section-heading > p { max-width: 385px; margin: 0; color: var(--muted); line-height: 1.8; font-size: 14px; }
.filters { display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto; padding-bottom: 3px; }
.filter {
  flex: 0 0 auto;
  padding: 9px 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  color: #7f90a8;
  background: rgba(255,255,255,.025);
  cursor: pointer;
  font-size: 12px;
  transition: .2s ease;
}
.filter:hover, .filter.active { color: #fff; border-color: rgba(0,208,255,.38); background: rgba(0,132,255,.13); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(12, 24, 43, .93), rgba(4, 9, 18, .94));
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-7px); border-color: rgba(0,196,255,.32); box-shadow: 0 30px 70px rgba(0,0,0,.38), 0 0 35px rgba(0,100,255,.08); }
.product-card.featured { grid-column: span 2; grid-row: span 2; }
.product-media { position: relative; height: 360px; overflow: hidden; background: #031025; }
.product-media::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(transparent, rgba(4,9,18,.92)); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 8px 12px; border-radius: 9px; color: #00161d; background: var(--cyan); font-size: 11px; font-weight: 900; box-shadow: 0 0 25px rgba(0,216,255,.4); }
.product-art {
  height: 170px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.product-art::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.03), transparent 55%); }
.product-art::after { content: ""; position: absolute; width: 190px; height: 1px; bottom: 18px; background: linear-gradient(90deg, transparent, currentColor, transparent); opacity: .45; }
.product-art svg { width: 76px; height: 76px; position: relative; stroke: none; fill: currentColor; filter: drop-shadow(0 0 22px currentColor); }
.art-orb { position: absolute; width: 120px; height: 120px; border: 1px solid currentColor; border-radius: 50%; opacity: .14; box-shadow: 0 0 50px currentColor, inset 0 0 50px currentColor; }
.discord-art { color: #8f8cff; background: radial-gradient(circle, rgba(100,93,255,.19), transparent 60%); }
.steam-art { color: #55c3ff; background: radial-gradient(circle, rgba(0,143,255,.18), transparent 60%); }
.xbox-art { color: #68ef88; background: radial-gradient(circle, rgba(34,211,92,.15), transparent 60%); }
.tv-art { color: #08d9ff; background: radial-gradient(circle, rgba(0,203,255,.17), transparent 60%); }
.tv-art svg { fill: none; stroke-width: 2; }
.product-body { padding: 20px; }
.featured .product-body { padding: 24px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.product-meta span { color: var(--cyan); font: 700 9px/1 Arial, sans-serif; letter-spacing: 1.8px; direction: ltr; }
.product-meta i { color: #6e8098; font-size: 10px; font-style: normal; }
.product-meta i::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-left: 5px; border-radius: 50%; background: var(--success); box-shadow: 0 0 7px var(--success); }
.product-body h3 { margin: 0 0 9px; font-size: 20px; }
.featured .product-body h3 { font-size: 27px; }
.product-body p { min-height: 45px; margin: 0; color: #7d8ca2; font-size: 12px; line-height: 1.75; }
.product-footer { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: 18px; }
.price { display: flex; align-items: baseline; gap: 6px; }
.price strong { font-size: 23px; letter-spacing: -1px; }
.price span { color: #75869c; font-size: 10px; }
.price.ask { display: grid; gap: 3px; }
.price.ask strong { font-size: 14px; letter-spacing: 0; }
.add-button {
  height: 39px;
  padding: 0 13px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: #c9f8ff;
  border: 1px solid rgba(0,213,255,.24);
  border-radius: 11px;
  background: rgba(0,146,255,.1);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: .2s ease;
}
.add-button svg { width: 15px; }
.add-button:hover { color: #00131b; background: var(--cyan); box-shadow: 0 0 20px rgba(0,216,255,.3); }
.add-button.icon-only { width: 39px; padding: 0; border-radius: 50%; }
.product-card.hidden { display: none; }

.how-section { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 90px 0 80px; }
.how-panel {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 60px;
  border: 1px solid rgba(0,179,255,.18);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(5,12,25,.96), rgba(5,12,25,.75)),
    url("assets/welcome.webp") center/cover;
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05);
}
.how-panel::after { content: ""; position: absolute; width: 330px; height: 330px; left: 9%; top: 18%; border-radius: 50%; background: rgba(0,132,255,.14); filter: blur(90px); }
.how-copy { position: relative; z-index: 2; }
.how-copy p { max-width: 430px; margin: 24px 0 28px; color: var(--muted); line-height: 1.9; font-size: 14px; }
.steps { position: relative; z-index: 2; display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.steps li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: rgba(4, 10, 22, .75);
  backdrop-filter: blur(10px);
}
.steps b { font: 800 28px/1 Arial, sans-serif; color: transparent; -webkit-text-stroke: 1px rgba(0,216,255,.7); text-align: center; }
.steps div { display: grid; gap: 5px; padding-right: 16px; border-right: 1px solid rgba(255,255,255,.1); }
.steps strong { font-size: 15px; }
.steps span { color: #77889f; font-size: 12px; }
.service-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; background: rgba(7,15,29,.7); overflow: hidden; }
.service-strip > div { min-height: 100px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; border-left: 1px solid rgba(255,255,255,.06); }
.service-strip > div:last-child { border-left: 0; }
.service-strip > div > span { display: grid; place-items: center; width: 39px; height: 39px; color: var(--cyan); border: 1px solid rgba(0,216,255,.2); border-radius: 12px; background: rgba(0,151,255,.08); }
.service-strip p { display: grid; gap: 4px; margin: 0; }
.service-strip strong { font-size: 12px; }
.service-strip small { color: #68788e; font-size: 9px; }

.site-footer {
  width: min(1180px, calc(100% - 36px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #65758b;
  font-size: 10px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 45px; height: 45px; object-fit: contain; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand strong { color: #dce8f8; direction: ltr; letter-spacing: 1px; font-size: 11px; }
.footer-brand span { font-size: 9px; }
.socials { display: flex; gap: 20px; }
.socials a { transition: color .2s; }
.socials a:hover { color: var(--cyan); }
.site-footer > p { justify-self: end; direction: ltr; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 39; background: rgba(0,3,9,.75); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .3s ease; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(430px, 100%);
  height: 100dvh;
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-left: 1px solid rgba(0,205,255,.22);
  background: #050b16;
  box-shadow: -35px 0 80px rgba(0,0,0,.48);
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
.drawer-head span { color: var(--cyan); font-size: 10px; }
.drawer-head h2 { margin: 4px 0 0; font-size: 24px; }
.close-cart { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #8da0b8; background: rgba(255,255,255,.03); cursor: pointer; font-size: 24px; }
.cart-items { display: grid; gap: 10px; overflow-y: auto; padding: 18px 2px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 15px; background: rgba(255,255,255,.025); }
.cart-item div { display: grid; gap: 5px; }
.cart-item strong { font-size: 13px; }
.cart-item span { color: #73839a; font-size: 10px; }
.remove-item { width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #77889e; background: transparent; cursor: pointer; }
.remove-item:hover { color: #ff758a; border-color: rgba(255,89,114,.3); }
.empty-cart { flex: 1; display: grid; place-content: center; justify-items: center; text-align: center; gap: 8px; color: #6d7c91; }
.empty-cart div { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 6px; border: 1px dashed rgba(0,216,255,.22); border-radius: 50%; color: var(--cyan); font-size: 26px; }
.empty-cart strong { color: #aebbd0; font-size: 14px; }
.empty-cart span { max-width: 220px; font-size: 11px; line-height: 1.7; }
.drawer-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07); }
.drawer-foot p { margin: 0 0 14px; color: #697a91; font-size: 10px; line-height: 1.6; }
.whatsapp-order { width: 100%; height: 53px; display: flex; align-items: center; justify-content: center; gap: 11px; border: 0; border-radius: 14px; color: #00130c; background: linear-gradient(135deg, #4af1a8, #18c876); font-weight: 900; cursor: pointer; box-shadow: 0 14px 30px rgba(22,199,118,.16); }
.whatsapp-order svg { width: 20px; fill: currentColor; stroke: none; }
.whatsapp-order:disabled { cursor: not-allowed; filter: grayscale(1); opacity: .35; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 50; transform: translate(-50%, 30px); padding: 11px 17px; color: #c8fff0; background: #09251e; border: 1px solid rgba(57,225,162,.25); border-radius: 11px; font-size: 11px; opacity: 0; visibility: hidden; transition: .3s ease; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cart-choice-backdrop { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 20px; background: rgba(0, 3, 10, .82); backdrop-filter: blur(9px); opacity: 0; transition: opacity .18s ease; }
.cart-choice-backdrop.open { opacity: 1; }
.cart-choice-backdrop[hidden] { display: none; }
.cart-choice { position: relative; width: min(470px, 100%); padding: 34px; overflow: hidden; text-align: center; border: 1px solid rgba(0, 216, 255, .28); border-radius: 25px; background: radial-gradient(circle at 50% -20%, rgba(0, 174, 255, .2), transparent 42%), #06101f; box-shadow: 0 34px 100px rgba(0,0,0,.62), 0 0 40px rgba(0, 174, 255, .09); transform: translateY(16px) scale(.97); transition: transform .22s cubic-bezier(.22,1,.36,1); }
.cart-choice-backdrop.open .cart-choice { transform: none; }
.cart-choice-close { position: absolute; top: 15px; left: 15px; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; color: #8999ae; background: rgba(255,255,255,.035); cursor: pointer; font-size: 22px; }
.cart-choice-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 14px; border: 1px solid rgba(47, 229, 169, .32); border-radius: 21px; color: #071810; background: linear-gradient(135deg, #61f5bc, #1bc77e); box-shadow: 0 12px 32px rgba(27,199,126,.18); font-size: 30px; font-weight: 900; }
.cart-choice > span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .5px; }
.cart-choice h2 { margin: 7px 0 8px; color: #f5f9ff; font-size: 28px; }
.cart-choice p { margin: 0 auto; max-width: 360px; color: #9aaabd; font-size: 14px; line-height: 1.8; }
.cart-choice-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 25px; }
.cart-choice-actions button { min-height: 49px; border-radius: 13px; cursor: pointer; font: 800 13px/1 "Segoe UI", Tahoma, Arial, sans-serif; }
.choice-buy { border: 0; color: #00131c; background: linear-gradient(135deg, #087cff, #00d8ff); box-shadow: 0 12px 28px rgba(0,166,255,.22); }
.choice-continue { border: 1px solid rgba(0,216,255,.24); color: #bdefff; background: rgba(0,216,255,.055); }
.cart-choice small { display: block; margin-top: 16px; color: #62758d; font-size: 10px; }
.site-error-alert { position: fixed; left: 50%; bottom: 24px; z-index: 120; width: min(620px, calc(100% - 28px)); transform: translate(-50%, 35px); padding: 13px 16px; color: #ffd2d6; background: rgba(40, 7, 17, .96); border: 1px solid rgba(255, 86, 100, .38); border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); font-size: 12px; line-height: 1.7; text-align: center; opacity: 0; visibility: hidden; transition: .28s ease; overflow-wrap: anywhere; }
.site-error-alert.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal { opacity: 1; transform: none; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero h1 { font-size: clamp(48px, 7vw, 68px); }
  .logo-stage { width: min(370px, 41vw); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .how-panel { padding: 44px; gap: 34px; }
}

@media (max-width: 720px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 62px; border-radius: 16px; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy b { font-size: 12px; }
  .brand-copy small { font-size: 5.5px; }
  .cart-trigger { width: 43px; height: 43px; padding: 0; justify-content: center; }
  .cart-trigger span { display: none; }
  .cart-trigger b { position: absolute; top: 5px; left: 5px; min-width: 16px; width: 16px; height: 16px; font-size: 8px; }
  .hero { width: calc(100% - 24px); min-height: auto; padding: 110px 4px 74px; grid-template-columns: 1fr; text-align: center; }
  .hero::before { inset: 80px -80px 0; }
  .hero-copy { order: 2; }
  .eyebrow { justify-content: center; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px); letter-spacing: -2.5px; }
  .hero-copy > p { margin: 20px auto 25px; font-size: 14px; }
  .hero-actions { justify-content: center; }
  .hero-actions .button { flex: 1; min-width: 150px; padding: 0 14px; }
  .trust-row { justify-content: center; gap: 13px; margin-top: 25px; }
  .hero-visual { order: 1; height: 350px; min-height: 0; }
  .logo-stage { width: 290px; }
  .status-top { top: 15%; right: 2%; }
  .status-bottom { left: 2%; bottom: 14%; }
  .scroll-cue { display: none; }
  .products-section, .how-section { width: calc(100% - 24px); padding: 70px 0; }
  .section-heading { display: grid; gap: 14px; margin-bottom: 23px; }
  .section-heading h2, .how-copy h2 { font-size: 38px; }
  .section-heading > p { font-size: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: auto; grid-row: auto; }
  .product-media { height: 310px; }
  .how-panel { min-height: 0; grid-template-columns: 1fr; padding: 30px 20px; border-radius: 24px; }
  .how-copy { text-align: center; }
  .how-copy p { margin: 18px auto 22px; }
  .service-strip { grid-template-columns: 1fr 1fr; }
  .service-strip > div { border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 30px 0; gap: 20px; }
  .site-footer > p { justify-self: center; }
  .socials { gap: 15px; flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Layout v3 — centered storefront direction */
.site-header {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 84px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 205, 255, .18);
  border-radius: 0;
  background: rgba(1, 5, 11, .88);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .28);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.header-inner .brand { justify-self: start; }
.header-inner .main-nav { justify-self: center; }
.header-inner .cart-trigger { justify-self: end; }

.main-nav { gap: 42px; }
.main-nav a { padding: 31px 0; color: #b3bdcc; font-weight: 700; }
.main-nav a.active::after { bottom: 20px; }

.hero {
  width: 100%;
  min-height: 760px;
  margin: 0;
  padding: 126px 20px 75px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  inset: 84px 0 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 15, .86), rgba(2, 6, 15, .95)),
    url("assets/banner.webp") center/cover;
  opacity: .34;
  filter: saturate(1.1);
  mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
}

.hero-grid {
  position: absolute;
  inset: 84px 0 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(0, 179, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 179, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.hero-glow {
  left: 50%;
  top: 38%;
  width: 560px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: rgba(0, 129, 255, .19);
  filter: blur(110px);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(810px, 100%);
  display: grid;
  justify-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: 138px;
  aspect-ratio: 1;
  margin-bottom: 15px;
}

.hero-logo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .6));
}

.logo-ring {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0, 216, 255, .35);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(0, 179, 255, .3);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
  color: #91a8c1;
}

.hero .eyebrow span { width: 32px; }

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.1;
  letter-spacing: -2.8px;
}

.hero h1 strong {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #0086ff, #11ddff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content > p {
  max-width: 630px;
  margin: 20px 0 27px;
  color: #a3afc0;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions { justify-content: center; }

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #73859d;
  font-size: 10px;
}

.live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}

.benefits-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 105px 0 115px;
}

.center-heading { max-width: 670px; margin: 0 auto 45px; text-align: center; }
.center-heading h2, .contact-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -1.8px;
}
.center-heading h2 strong { color: var(--cyan); }
.center-heading p, .contact-heading p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  border: 1px solid rgba(0, 195, 255, .18);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(9, 18, 34, .86), rgba(3, 7, 15, .96));
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
  transition: .3s ease;
}
.benefit-card::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: .6; }
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(0, 216, 255, .42); box-shadow: 0 28px 60px rgba(0, 0, 0, .36), 0 0 35px rgba(0, 133, 255, .08); }
.benefit-number { position: absolute; top: 14px; left: 16px; color: rgba(87, 153, 220, .2); font: 800 26px/1 Arial, sans-serif; }
.benefit-icon { width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid rgba(0, 216, 255, .23); border-radius: 20px; color: var(--cyan); background: rgba(0, 132, 255, .08); box-shadow: inset 0 0 24px rgba(0, 143, 255, .08); }
.benefit-icon svg { width: 36px; height: 36px; }
.benefit-card h3 { margin: 0 0 10px; color: #dff9ff; font-size: 18px; }
.benefit-card p { max-width: 220px; margin: 0; color: #77879c; font-size: 12px; line-height: 1.75; }

.products-section {
  width: min(1180px, calc(100% - 36px));
  padding: 105px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card.featured { grid-column: auto; grid-row: auto; }
.offer-card .product-media { height: 310px; }
.offer-card .product-media img { object-position: center; }
.offer-card .product-body { padding: 20px; }
.offer-card .product-body h3 { font-size: 21px; }
.offer-card .product-badge.green { color: #00150a; background: #66eb80; box-shadow: 0 0 25px rgba(76, 226, 115, .35); }

.contact-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 205, 255, .16);
  background: linear-gradient(180deg, #050b15, #020509 65%);
}
.contact-footer::before { content: ""; position: absolute; width: 520px; height: 260px; top: -120px; left: 50%; transform: translateX(-50%); background: rgba(0, 137, 255, .13); filter: blur(100px); }
.contact-inner { position: relative; width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 90px 0 24px; }
.contact-heading { text-align: center; }
.contact-heading .kicker { margin-bottom: 8px; }
.contact-heading h2 { color: transparent; background: linear-gradient(100deg, #0588ff, #08dcff); -webkit-background-clip: text; background-clip: text; }
.social-buttons { display: flex; justify-content: center; gap: 12px; margin: 40px 0 70px; }
.social-button { min-width: 142px; height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(0, 203, 255, .3); border-radius: 13px; background: rgba(6, 14, 25, .8); font-size: 13px; font-weight: 800; transition: .25s ease; }
.social-button svg { width: 25px; height: 25px; flex: 0 0 25px; fill: currentColor; transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .28s ease; }
.social-button:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 12px 28px rgba(0, 0, 0, .3); }
.social-button:hover svg { transform: scale(1.13) rotate(-5deg); filter: drop-shadow(0 0 8px currentColor); }
.social-button.whatsapp { color: #25d366; }
.social-button.telegram { color: #2aabee; }
.social-button.discord { color: #7b86ff; }
.social-button.facebook { color: #4194ff; }
.social-button span { color: #f3f5f8; }
.social-button.whatsapp:hover { border-color: #32dc89; background: rgba(22, 196, 111, .12); }
.social-button.telegram:hover { border-color: #28a9ea; background: rgba(40, 169, 234, .12); }
.social-button.discord:hover { border-color: #818cf8; background: rgba(99, 102, 241, .12); }
.social-button.facebook:hover { border-color: #4794ff; background: rgba(45, 120, 230, .12); }

.footer-columns { display: grid; grid-template-columns: 1.35fr .65fr 1fr; gap: 80px; padding: 42px 0; border-top: 1px solid rgba(255, 255, 255, .065); }
.footer-columns h3 { margin: 0 0 17px; color: var(--cyan); font-size: 14px; }
.footer-about p { max-width: 420px; margin: 15px 0 0; color: #7f8b9c; font-size: 12px; line-height: 1.9; }
.footer-logo { display: flex; align-items: center; gap: 11px; direction: ltr; }
.footer-logo img { width: 48px; height: 48px; object-fit: contain; }
.footer-logo strong { letter-spacing: 1.2px; font-size: 15px; }
.footer-logo em { color: var(--cyan); font-style: normal; }
.footer-links, .footer-info { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links a, .footer-info > span, .footer-info a { color: #8491a3; font-size: 12px; transition: color .2s; }
.footer-links a:hover, .footer-info a:hover { color: var(--cyan); }
.footer-info a { display: flex; align-items: center; gap: 10px; }
.footer-info a b { color: #b6c4d8; font-weight: 600; }
.open-cart { margin-top: 8px; padding: 9px 13px; border: 1px solid rgba(0, 206, 255, .22); border-radius: 9px; color: #a9ecff; background: rgba(0, 153, 255, .08); cursor: pointer; font-size: 11px; }
.copyright { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .055); color: #536176; font-size: 10px; }

.mobile-dock { display: none; }

@keyframes pulse-ring {
  0%, 100% { transform: scale(.96); opacity: .55; }
  50% { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-inner .main-nav { display: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns { gap: 40px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .site-header { top: 0; width: 100%; height: 68px; border-radius: 0; }
  .header-inner { width: calc(100% - 24px); }
  .header-inner .brand img { width: 44px; height: 44px; }
  .hero { width: 100%; min-height: 690px; padding: 100px 18px 65px; }
  .hero::before { inset: 68px 0 0; }
  .hero-grid { inset: 68px 0 0; }
  .hero-logo-wrap { width: 116px; }
  .hero h1 { font-size: clamp(38px, 11.5vw, 52px); letter-spacing: -1.8px; }
  .hero h1 strong { display: block; margin-top: 6px; }
  .hero-content > p { margin-top: 16px; font-size: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; min-width: 145px; }
  .benefits-section, .products-section { width: calc(100% - 24px); padding: 75px 0 82px; }
  .center-heading { margin-bottom: 30px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .benefit-card { min-height: 220px; padding: 24px 13px; border-radius: 17px; }
  .benefit-icon { width: 54px; height: 54px; border-radius: 16px; }
  .benefit-icon svg { width: 29px; }
  .benefit-card h3 { font-size: 15px; }
  .benefit-card p { font-size: 10px; }
  .product-grid { grid-template-columns: 1fr; }
  .offer-card .product-media { height: auto; aspect-ratio: 1; }
  .contact-inner { width: calc(100% - 24px); padding-top: 72px; }
  .social-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 30px 0 55px; }
  .social-button { min-width: 0; }
  .footer-columns { grid-template-columns: 1fr; gap: 30px; }
  .copyright { display: grid; justify-content: center; text-align: center; }
  .mobile-dock { position: fixed; right: 12px; left: 12px; bottom: 10px; z-index: 31; height: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(0, 206, 255, .19); border-radius: 17px; background: rgba(4, 11, 22, .91); box-shadow: 0 14px 35px rgba(0, 0, 0, .5); backdrop-filter: blur(18px); }
  .mobile-dock a { display: grid; place-content: center; justify-items: center; gap: 3px; color: #8291a5; font-size: 8px; }
  .mobile-dock svg { width: 19px; height: 19px; }
  .mobile-dock a:hover { color: var(--cyan); }
}

/* NEO 4K entertainment */
.view-plans {
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(0, 213, 255, .24);
  border-radius: 11px;
  color: #c9f8ff;
  background: rgba(0, 146, 255, .1);
  font-size: 11px;
  font-weight: 800;
  transition: .2s ease;
}
.view-plans:hover { color: #00131b; background: var(--cyan); box-shadow: 0 0 20px rgba(0, 216, 255, .3); }

.neo-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 75px;
  border: 1px solid rgba(104, 73, 255, .28);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 12%, rgba(119, 60, 255, .18), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(0, 207, 255, .13), transparent 28%),
    linear-gradient(150deg, #080a1b, #040812 65%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .05);
}
.neo-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(121, 104, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 104, 255, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}
.neo-showcase.hidden { display: none; }

.neo-hero {
  position: relative;
  z-index: 1;
  min-height: 525px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 45px;
  padding: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.neo-copy { position: relative; z-index: 2; }
.neo-badges { display: flex; gap: 8px; margin-bottom: 22px; }
.neo-badges span { padding: 7px 11px; border: 1px solid rgba(139, 108, 255, .35); border-radius: 100px; color: #d2c8ff; background: rgba(106, 76, 255, .11); font-size: 9px; font-weight: 800; }
.neo-badges span:last-child { color: #afffea; border-color: rgba(44, 227, 174, .3); background: rgba(34, 211, 167, .08); }
.neo-overline { margin: 0 0 10px; color: #6d7e9c; font: 700 9px/1 Arial, sans-serif; letter-spacing: 3.5px; direction: ltr; text-align: right; }
.neo-copy h2 { direction: ltr; width: max-content; margin: 0; font: 900 clamp(58px, 7vw, 92px)/.9 Arial, sans-serif; letter-spacing: -5px; }
.neo-copy h2 strong { color: #f6f8ff; }
.neo-copy h2 em { color: transparent; background: linear-gradient(135deg, #8a68ff, #dd46ff 54%, #16dcff); -webkit-background-clip: text; background-clip: text; font-style: normal; filter: drop-shadow(0 0 22px rgba(182, 65, 255, .24)); }
.neo-lead { max-width: 560px; margin: 25px 0 24px; color: #9aa7bb; font-size: 14px; line-height: 1.9; }
.neo-features { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; max-width: 540px; }
.neo-features span { display: flex; align-items: center; gap: 9px; color: #b5c1d3; font-size: 11px; }
.neo-features i { min-width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(135, 92, 255, .25); border-radius: 9px; color: #c58cff; background: rgba(118, 64, 255, .08); font: 800 9px/1 Arial, sans-serif; }
.neo-actions { display: flex; gap: 10px; margin-top: 29px; }
.neo-trial { color: #fff; background: linear-gradient(135deg, #8b5cff, #d43cff); box-shadow: 0 13px 34px rgba(156, 64, 255, .26); }
.neo-trial:hover { box-shadow: 0 17px 42px rgba(187, 62, 255, .37); }

.neo-visual { position: relative; min-height: 390px; display: grid; place-items: center; direction: ltr; }
.neo-screen {
  position: relative;
  z-index: 3;
  width: min(390px, 90%);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 2px solid rgba(133, 88, 255, .7);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 55, 255, .34), transparent 32%),
    linear-gradient(145deg, rgba(52, 25, 112, .92), rgba(5, 14, 29, .96));
  box-shadow: 0 0 0 8px rgba(106, 78, 255, .06), 0 28px 80px rgba(0, 0, 0, .55), 0 0 45px rgba(146, 54, 255, .2);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
}
.neo-screen::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .08) 48%, transparent 60%); transform: translateX(-70%); animation: neo-shine 4.5s ease-in-out infinite; }
.neo-screen span { font: 900 54px/.8 Arial, sans-serif; letter-spacing: -3px; }
.neo-screen strong { font: 900 77px/.95 Arial, sans-serif; color: transparent; background: linear-gradient(135deg, #b58cff, #ed4cff, #25e2ff); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 18px rgba(201, 72, 255, .4)); }
.neo-screen small { margin-top: 10px; color: #a8a7c5; font: 700 7px/1 Arial, sans-serif; letter-spacing: 3px; }
.neo-screen > i { position: absolute; right: 18px; bottom: 16px; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .08); font-size: 9px; font-style: normal; }
.neo-orbit { position: absolute; border: 1px solid rgba(132, 94, 255, .18); border-radius: 50%; animation: rotate 22s linear infinite; }
.neo-orbit.one { width: 420px; height: 420px; }
.neo-orbit.two { width: 320px; height: 320px; border-style: dashed; animation-direction: reverse; }
.neo-device { position: absolute; z-index: 4; padding: 8px 11px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 9px; color: #9caac2; background: rgba(6, 10, 24, .83); box-shadow: 0 12px 30px rgba(0, 0, 0, .35); font: 700 7px/1 Arial, sans-serif; letter-spacing: 1px; }
.device-tv { top: 18%; right: 1%; }
.device-mobile { bottom: 16%; left: 0; }

.neo-compatibility { position: relative; z-index: 1; min-height: 70px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 25px; border-bottom: 1px solid rgba(255, 255, 255, .07); flex-wrap: wrap; }
.neo-compatibility span { margin-left: 6px; color: #64728a; font-size: 10px; }
.neo-compatibility b { padding: 8px 11px; border: 1px solid rgba(255, 255, 255, .075); border-radius: 8px; color: #99a7ba; background: rgba(255, 255, 255, .025); font: 600 8px/1 Arial, sans-serif; direction: ltr; }

.neo-pricing-head { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 40px; padding: 55px 55px 28px; }
.neo-pricing-head h3 { margin: 0; font-size: 31px; }
.neo-pricing-head p { max-width: 420px; margin: 0; color: #7f8ca0; font-size: 12px; line-height: 1.8; }
.neo-plans { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; padding: 0 28px 34px; }
.neo-plan { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 24px 16px 16px; border: 1px solid rgba(141, 83, 255, .22); border-radius: 18px; background: linear-gradient(160deg, rgba(28, 19, 58, .75), rgba(5, 9, 20, .95)); transition: .28s ease; }
.neo-plan:hover { transform: translateY(-5px); border-color: rgba(174, 82, 255, .52); box-shadow: 0 20px 42px rgba(0, 0, 0, .38), 0 0 30px rgba(139, 63, 255, .09); }
.neo-plan.popular { border-color: rgba(229, 57, 255, .62); background: linear-gradient(160deg, rgba(80, 21, 89, .58), rgba(9, 9, 24, .96)); box-shadow: 0 0 35px rgba(201, 53, 255, .12); }
.popular-label { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); width: max-content; padding: 5px 10px; border-radius: 100px; color: #fff; background: linear-gradient(90deg, #a852ff, #df3eff); font-size: 8px; font-weight: 800; }
.plan-duration { color: #bdc6d5; font-size: 11px; font-weight: 800; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 20px; direction: ltr; }
.plan-price strong { color: #f6f3ff; font: 900 27px/1 Arial, sans-serif; letter-spacing: -1px; }
.popular .plan-price strong { color: #f37dff; }
.plan-price small { color: #7f739c; font-size: 9px; }
.neo-plan ul { display: grid; gap: 9px; margin: 0 0 20px; padding: 0; list-style: none; color: #78869a; font-size: 9px; }
.neo-plan li::before { content: "✓"; margin-left: 6px; color: #b96fff; }
.neo-plan .add-button { width: 100%; height: 42px; margin-top: auto; color: #e5d8ff; border-color: rgba(161, 93, 255, .3); background: rgba(132, 75, 255, .1); }
.neo-plan .add-button:hover { color: #fff; background: linear-gradient(135deg, #8d57ff, #ce3fff); }
.neo-note { position: relative; z-index: 1; margin: 0 28px 28px; padding: 13px 16px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 11px; color: #65738a; background: rgba(255, 255, 255, .02); font-size: 9px; line-height: 1.7; }
.neo-note span { color: #bfaaff; font-weight: 800; }

@keyframes neo-shine {
  0%, 55% { transform: translateX(-80%); }
  85%, 100% { transform: translateX(90%); }
}

@media (max-width: 1000px) {
  .neo-hero { grid-template-columns: 1fr; padding: 48px; }
  .neo-copy { text-align: center; }
  .neo-overline { text-align: center; }
  .neo-copy h2 { margin: 0 auto; }
  .neo-lead, .neo-features { margin-right: auto; margin-left: auto; }
  .neo-badges, .neo-actions { justify-content: center; }
  .neo-visual { min-height: 360px; }
  .neo-pricing-head { align-items: start; }
  .neo-plans { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .neo-showcase { margin-top: 52px; border-radius: 24px; }
  .neo-hero { min-height: 0; padding: 38px 18px 28px; gap: 24px; }
  .neo-copy h2 { font-size: 63px; }
  .neo-lead { font-size: 12px; }
  .neo-features { grid-template-columns: 1fr; width: max-content; }
  .neo-actions { flex-direction: column; }
  .neo-actions .button { width: 100%; }
  .neo-visual { min-height: 290px; }
  .neo-screen { width: 90%; border-radius: 18px; }
  .neo-screen span { font-size: 42px; }
  .neo-screen strong { font-size: 59px; }
  .neo-orbit.one { width: 300px; height: 300px; }
  .neo-orbit.two { width: 230px; height: 230px; }
  .device-tv { right: 0; }
  .neo-compatibility { justify-content: flex-start; padding: 15px; }
  .neo-pricing-head { display: grid; gap: 12px; padding: 42px 18px 25px; }
  .neo-pricing-head h3 { font-size: 25px; }
  .neo-plans { grid-template-columns: 1fr; gap: 9px; padding: 0 14px 20px; }
  .neo-plan { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px 15px; padding: 19px 16px; }
  .neo-plan .plan-price { margin: 0; }
  .neo-plan ul { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); margin: 4px 0; }
  .neo-plan .add-button { grid-column: 1 / -1; }
  .neo-note { margin: 0 14px 18px; }
}

/* NEO 4K — Cyber Store entertainment experience */
.neo-showcase {
  border-color: rgba(0, 205, 255, .34);
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 131, 255, .22), transparent 31%),
    radial-gradient(circle at 92% 20%, rgba(0, 217, 255, .15), transparent 27%),
    radial-gradient(circle at 76% 67%, rgba(255, 187, 38, .06), transparent 23%),
    linear-gradient(150deg, #031126, #030a14 66%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .48), 0 0 48px rgba(0, 180, 255, .07), inset 0 1px rgba(255, 255, 255, .05);
}
.neo-showcase::before {
  opacity: .32;
  background-image:
    linear-gradient(rgba(0, 198, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 255, .06) 1px, transparent 1px);
}
.neo-hero { min-height: 620px; grid-template-columns: .92fr 1.08fr; gap: 48px; padding: 54px; }
.neo-service-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 17px; }
.neo-service-brand img { width: 78px; height: 65px; object-fit: contain; filter: drop-shadow(0 5px 12px rgba(255, 185, 34, .2)); }
.neo-service-brand span { color: #7f94ae; font-size: 12px; }
.neo-service-brand b { display: block; margin-top: 3px; color: #19d9ff; font: 800 13px/1 Arial, sans-serif; direction: ltr; }
.neo-badges span { color: #a5efff; border-color: rgba(0, 203, 255, .36); background: rgba(0, 151, 255, .1); }
.neo-badges span:last-child { color: #ffd86e; border-color: rgba(255, 195, 39, .35); background: rgba(255, 183, 22, .075); }
.neo-overline { color: #5985a8; }
.neo-copy h2 { direction: rtl; width: min(520px, 100%); color: #f3f9ff; font: 900 clamp(43px, 5vw, 66px)/1.1 "Segoe UI", Tahoma, Arial, sans-serif; letter-spacing: -2.8px; }
.neo-copy h2 em { color: transparent; background: linear-gradient(105deg, #0780ff, #06d9ff 62%, #9af3ff); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 20px rgba(0, 198, 255, .16)); }
.neo-lead { color: #9baec3; font-size: 14px; }
.neo-features i { min-width: 38px; color: #23dcff; border-color: rgba(0, 205, 255, .28); background: rgba(0, 143, 255, .09); font-size: 8px; }
.neo-trial { background: linear-gradient(120deg, #087cff, #00d7ff); box-shadow: 0 13px 34px rgba(0, 177, 255, .24); }
.neo-trial:hover { box-shadow: 0 17px 42px rgba(0, 205, 255, .34); }

.neo-visual { min-height: 520px; direction: ltr; isolation: isolate; }
.neo-visual::before { content: ""; position: absolute; inset: 8% 4%; z-index: -1; border-radius: 50%; background: rgba(0, 171, 255, .18); filter: blur(65px); }
.neo-poster { position: absolute; overflow: hidden; margin: 0; border: 1px solid rgba(0, 213, 255, .52); border-radius: 20px; background: #06101e; box-shadow: 0 24px 55px rgba(0, 0, 0, .55), 0 0 30px rgba(0, 189, 255, .1); }
.neo-poster img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.neo-poster:hover img { transform: scale(1.045); filter: brightness(1.08); }
.neo-poster figcaption { position: absolute; right: 10px; bottom: 10px; padding: 7px 11px; border: 1px solid rgba(0, 220, 255, .33); border-radius: 100px; color: #fff; background: rgba(2, 10, 23, .84); box-shadow: 0 5px 18px rgba(0, 0, 0, .35); backdrop-filter: blur(9px); font-size: 10px; font-weight: 800; }
.neo-poster-main { top: 0; left: 1%; z-index: 1; width: 58%; height: 100%; transform: rotate(-1.5deg); }
.neo-poster-main img { object-position: center top; }
.neo-poster-sports { right: 0; bottom: 18px; z-index: 3; width: 48%; height: 72%; transform: rotate(2.2deg); border-color: rgba(45, 141, 255, .58); }
.neo-poster-sports img { object-position: center top; }
.neo-logo-seal { position: absolute; top: 19px; right: 2%; z-index: 5; width: 122px; height: 100px; display: grid; place-items: center; padding: 9px; border: 1px solid rgba(255, 196, 43, .42); border-radius: 18px; background: rgba(2, 8, 18, .88); box-shadow: 0 13px 30px rgba(0, 0, 0, .5), 0 0 24px rgba(255, 182, 24, .11); backdrop-filter: blur(12px); animation: neo-seal-float 4s ease-in-out infinite; }
.neo-logo-seal img { width: 100%; height: 74px; object-fit: contain; }
.neo-logo-seal span { position: absolute; bottom: 7px; color: #d7b55a; font: 700 6px/1 Arial, sans-serif; letter-spacing: 2px; }

.neo-content-map { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; padding: 22px 28px; border-bottom: 1px solid rgba(255, 255, 255, .07); background: rgba(0, 6, 15, .45); }
.neo-content-map > span { min-width: 0; min-height: 132px; display: grid; place-items: center; align-content: center; padding: 14px 9px; border: 1px solid rgba(0, 197, 255, .15); border-radius: 15px; background: linear-gradient(155deg, rgba(0, 120, 221, .09), rgba(3, 10, 22, .88)); text-align: center; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.neo-content-map > span:hover { transform: translateY(-5px); border-color: rgba(0, 218, 255, .48); box-shadow: 0 14px 30px rgba(0, 0, 0, .3), 0 0 22px rgba(0, 190, 255, .08); }
.neo-content-map b { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 9px; border: 1px solid rgba(0, 211, 255, .24); border-radius: 12px; background: rgba(0, 153, 255, .1); font-size: 21px; }
.neo-content-map > span:nth-child(3) b, .neo-content-map > span:nth-child(4) b { border-color: rgba(255, 196, 45, .27); background: rgba(255, 183, 26, .075); }
.neo-content-map strong { color: #eefaff; font-size: 13px; }
.neo-content-map small { margin-top: 5px; color: #73869d; font-size: 9px; line-height: 1.5; }

.neo-compatibility b { border-color: rgba(0, 201, 255, .13); color: #9ab7cb; background: rgba(0, 143, 255, .045); }
.neo-plan { border-color: rgba(0, 192, 255, .22); background: linear-gradient(160deg, rgba(4, 34, 69, .82), rgba(3, 9, 19, .97)); }
.neo-plan:hover { border-color: rgba(0, 216, 255, .53); box-shadow: 0 20px 42px rgba(0, 0, 0, .38), 0 0 30px rgba(0, 186, 255, .09); }
.neo-plan.popular { border-color: rgba(255, 195, 40, .62); background: linear-gradient(160deg, rgba(62, 44, 7, .5), rgba(4, 15, 29, .98)); box-shadow: 0 0 35px rgba(255, 185, 30, .1); }
.popular-label { color: #06111d; background: linear-gradient(90deg, #e6a61b, #ffdb73); font-weight: 900; }
.popular .plan-price strong { color: #ffd566; }
.plan-price small { color: #6289a5; }
.neo-plan li::before { color: #1cdaff; }
.neo-plan .add-button { color: #c1f1ff; border-color: rgba(0, 198, 255, .3); background: rgba(0, 136, 255, .1); }
.neo-plan .add-button:hover { background: linear-gradient(120deg, #087cff, #00d7ff); }
.neo-note span { color: #43dcff; }

@keyframes neo-seal-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px) rotate(-1.5deg); }
}

@media (max-width: 1000px) {
  .neo-hero { grid-template-columns: 1fr; padding: 48px; }
  .neo-service-brand, .neo-badges, .neo-actions { justify-content: center; }
  .neo-service-brand { text-align: right; }
  .neo-copy h2 { margin: 0 auto; }
  .neo-visual { width: min(630px, 100%); min-height: 620px; margin: 0 auto; }
  .neo-content-map { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .neo-hero { padding: 36px 16px 24px; }
  .neo-service-brand img { width: 67px; height: 57px; }
  .neo-copy h2 { font-size: 40px; letter-spacing: -1.7px; }
  .neo-visual { min-height: 440px; }
  .neo-poster-main { width: 61%; }
  .neo-poster-sports { width: 52%; height: 68%; }
  .neo-logo-seal { top: 10px; right: 0; width: 95px; height: 80px; border-radius: 14px; }
  .neo-logo-seal img { height: 58px; }
  .neo-content-map { grid-template-columns: repeat(2, 1fr); gap: 7px; padding: 14px; }
  .neo-content-map > span { min-height: 120px; }
}

/* Exact homepage reference layout */
.exact-home {
  margin: 0;
  color: #f4f4f4;
  background: #03060a;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.team-access-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 15px;
  border: 1px solid rgba(0, 216, 255, .18);
  border-radius: 999px;
  color: #6f8199;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.team-access-link:hover {
  color: var(--cyan);
  border-color: rgba(0, 216, 255, .46);
  background: rgba(0, 216, 255, .05);
}

.cart-quantity { display: flex; align-items: center; gap: 6px; }
.cart-quantity button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 216, 255, .28);
  border-radius: 8px;
  background: rgba(0, 216, 255, .06);
  color: var(--cyan);
  cursor: pointer;
}
.exact-home::before {
  opacity: .18;
  background-size: 54px 54px;
}
.exact-home .scanlines, .exact-home .ambient { display: none; }

.exact-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 84px;
  border-bottom: 1px solid rgba(0, 205, 240, .24);
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(14px);
}
.exact-header-inner {
  width: min(1480px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exact-brand { display: flex; align-items: center; gap: 13px; color: #00bfff; direction: ltr; }
.exact-brand img { width: 54px; height: 54px; object-fit: contain; animation: exact-logo-float 4.2s ease-in-out infinite; filter: drop-shadow(0 0 10px rgba(0, 202, 255, .22)); }
.exact-brand strong { font-size: 25px; letter-spacing: -.7px; }
.exact-header nav { display: flex; align-items: center; gap: 72px; }
.exact-header nav a { position: relative; padding: 31px 0; color: #eee; font-size: 14px; font-weight: 700; }
.exact-header nav a::after { content: ""; position: absolute; right: 0; left: 0; bottom: 18px; height: 2px; border-radius: 10px; background: #00cfff; transform: scaleX(0); transition: transform .2s ease; }
.exact-header nav a:hover::after, .exact-header nav a.active::after { transform: scaleX(1); }

.exact-hero {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 80px 20px 70px;
  text-align: center;
  background: linear-gradient(100deg, #000714 0%, #00080d 48%, #001217 100%);
}
.exact-hero-inner { width: min(760px, 100%); }
.exact-hero h1 { margin: 0; color: transparent; background: linear-gradient(105deg, #0781ff 8%, #00d9ff 42%, #d8faff 50%, #00cfff 58%, #0781ff 92%); background-size: 240% 100%; -webkit-background-clip: text; background-clip: text; font-size: clamp(38px, 4.2vw, 57px); letter-spacing: -1.8px; animation: exact-enter .75s cubic-bezier(.16,1,.3,1) both, exact-title-shimmer 5s ease-in-out 1s infinite; }
.exact-hero h1 span { color: #087dff; direction: ltr; display: inline-block; }
.exact-hero p { margin: 26px 0 42px; color: #acacb4; font-size: clamp(18px, 1.7vw, 26px); font-weight: 300; animation: exact-enter .75s .14s cubic-bezier(.16,1,.3,1) both; }
.exact-hero p b { margin-left: 7px; color: #ffad11; font-size: 24px; }
.exact-actions { display: flex; align-items: center; justify-content: center; gap: 4px; animation: exact-enter .75s .28s cubic-bezier(.16,1,.3,1) both; }
.exact-actions a { min-width: 160px; height: 60px; display: grid; place-items: center; border-radius: 12px; font-size: 14px; font-weight: 800; }
.exact-primary { color: #fff; background: linear-gradient(120deg, #087dff, #00cfff); box-shadow: 0 10px 28px rgba(0, 190, 255, .35); }
.exact-secondary { color: #00d4ff; border: 2px solid #00caf2; background: transparent; }
.exact-actions a { transition: transform .25s ease, filter .25s ease, box-shadow .25s ease; }
.exact-actions a:hover { transform: translateY(-4px); filter: brightness(1.14); box-shadow: 0 14px 34px rgba(0, 202, 255, .35); }

.exact-about {
  min-height: 500px;
  padding: 20px 30px 80px;
  border-bottom: 1px solid rgba(0, 213, 255, .22);
  background: linear-gradient(100deg, #000714 0%, #00080d 48%, #001217 100%);
}
.exact-about h2 { margin: 0 0 72px; color: #00c9ff; text-align: center; font-size: clamp(34px, 3.4vw, 48px); animation: exact-enter .7s .34s cubic-bezier(.16,1,.3,1) both; }
.exact-about h2 span { color: #087dff; direction: ltr; display: inline-block; }
.exact-benefits { width: min(1360px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.exact-benefits article { min-height: 290px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 35px; border: 1px solid rgba(0, 192, 224, .28); border-radius: 17px; background: #090909; text-align: center; transition: transform .32s cubic-bezier(.2,.8,.2,1), border-color .32s ease, box-shadow .32s ease, background .32s ease; animation: exact-card-in .72s cubic-bezier(.16,1,.3,1) both; }
.exact-benefits article:nth-child(1) { animation-delay: .42s; }
.exact-benefits article:nth-child(2) { animation-delay: .52s; }
.exact-benefits article:nth-child(3) { animation-delay: .62s; }
.exact-benefits article:nth-child(4) { animation-delay: .72s; }
.exact-benefits article:hover { transform: translateY(-9px); border-color: rgba(0, 220, 255, .82); background: #0a0d10; box-shadow: 0 18px 42px rgba(0, 0, 0, .42), 0 0 28px rgba(0, 207, 255, .12), inset 0 1px rgba(255, 255, 255, .04); }
.exact-emoji { height: 75px; display: grid; place-items: center; margin-bottom: 16px; font-size: 48px; }
.exact-benefits article:hover .exact-emoji { animation: exact-icon-pop .55s cubic-bezier(.2,.8,.2,1); }
.exact-benefits h3 { margin: 0 0 18px; color: #00d2f5; font-size: 22px; font-weight: 500; }
.exact-benefits p { margin: 0; color: #c1bfc2; font-size: 15px; line-height: 1.8; }

.exact-contact { padding: 60px 20px 0; background: #080808; }
.exact-contact-panel { width: min(1360px, 100%); margin: 0 auto; padding: 66px 70px 32px; background: #080d15; }
.exact-contact-panel > h2 { margin: 0 0 66px; color: #058eff; text-align: center; font-size: clamp(38px, 3.8vw, 54px); text-shadow: 0 0 28px rgba(0, 142, 255, .18); animation: exact-enter .75s cubic-bezier(.16,1,.3,1) both; }
.exact-socials { display: flex; justify-content: center; gap: 18px; margin-bottom: 68px; }
.exact-socials a { min-width: 154px; height: 59px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 2px solid rgba(0, 195, 222, .5); border-radius: 12px; color: #f1f1f1; background: #090909; font-size: 14px; font-weight: 800; transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, background .28s ease, box-shadow .28s ease; animation: exact-social-in .62s cubic-bezier(.16,1,.3,1) both; }
.exact-socials a:nth-child(2) { animation-delay: .08s; }
.exact-socials a:nth-child(3) { animation-delay: .16s; }
.exact-socials a:nth-child(4) { animation-delay: .24s; }
.exact-socials svg { width: 24px; height: 24px; flex: 0 0 24px; fill: currentColor; transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .28s ease; }
.exact-socials a:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0, 0, 0, .38); }
.exact-socials a:hover svg { transform: scale(1.14) rotate(-5deg); filter: drop-shadow(0 0 8px currentColor); }
.exact-socials .whatsapp { color: #25d366; }
.exact-socials .telegram { color: #2aabee; }
.exact-socials .discord { color: #7b86ff; }
.exact-socials .facebook { color: #4194ff; }
.exact-socials a span { color: #f1f1f1; }
.exact-socials .whatsapp:hover { border-color: #25d366; background: rgba(37, 211, 102, .10); box-shadow: 0 14px 32px rgba(37, 211, 102, .13); }
.exact-socials .telegram:hover { border-color: #2aabee; background: rgba(42, 171, 238, .10); box-shadow: 0 14px 32px rgba(42, 171, 238, .13); }
.exact-socials .discord:hover { border-color: #5865f2; background: rgba(88, 101, 242, .11); box-shadow: 0 14px 32px rgba(88, 101, 242, .14); }
.exact-socials .facebook:hover { border-color: #1877f2; background: rgba(24, 119, 242, .10); box-shadow: 0 14px 32px rgba(24, 119, 242, .14); }
.exact-footer-columns { display: grid; grid-template-columns: 1.4fr .75fr 1fr; gap: 100px; padding: 0 0 48px; }
.exact-footer-columns > div { display: flex; flex-direction: column; align-items: flex-start; }
.exact-footer-columns h3 { margin: 0 0 24px; color: #00cfe8; font-size: 17px; font-weight: 500; }
.exact-footer-columns p, .exact-footer-columns a { margin: 0 0 9px; color: #bdbdc0; font-size: 13px; line-height: 1.85; }
.exact-footer-columns a:hover { color: #00d4ef; }
.exact-copyright { display: grid; justify-items: center; gap: 8px; padding: 28px 0 0; border-top: 1px solid rgba(0, 211, 235, .16); color: #aaaab0; font-size: 12px; }
.exact-mobile-nav { display: none; }

@keyframes exact-enter {
  from { opacity: 0; transform: translateY(24px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes exact-card-in {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes exact-social-in {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes exact-logo-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-4px) rotate(-2deg); }
}
@keyframes exact-title-shimmer {
  0%, 18% { background-position: 100% 50%; }
  55%, 100% { background-position: -100% 50%; }
}
@keyframes exact-icon-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-7px) scale(1.13) rotate(-4deg); }
}

@media (max-width: 900px) {
  .exact-header-inner { width: calc(100% - 30px); }
  .exact-header nav { gap: 28px; }
  .exact-brand strong { display: none; }
  .exact-benefits { grid-template-columns: repeat(2, 1fr); }
  .exact-footer-columns { gap: 45px; }
}

@media (max-width: 650px) {
  .exact-home { padding-bottom: 68px; }
  .exact-header { height: 67px; }
  .exact-brand img { width: 47px; height: 47px; }
  .exact-header nav { gap: 18px; }
  .exact-header nav a { padding: 25px 0; font-size: 11px; }
  .exact-header nav a:nth-child(3), .exact-header nav a:nth-child(4) { display: none; }
  .exact-hero { min-height: 480px; padding: 80px 16px 65px; }
  .exact-hero h1 { font-size: 38px; }
  .exact-hero h1 span { display: block; margin-top: 4px; }
  .exact-hero p { margin: 22px 0 33px; font-size: 16px; }
  .exact-actions a { min-width: 0; flex: 1; height: 55px; }
  .exact-about { padding: 15px 12px 65px; }
  .exact-about h2 { margin-bottom: 35px; font-size: 32px; }
  .exact-about h2 span { display: block; }
  .exact-benefits { grid-template-columns: 1fr 1fr; gap: 9px; }
  .exact-benefits article { min-height: 235px; padding: 22px 13px; border-radius: 13px; }
  .exact-emoji { height: 58px; font-size: 38px; }
  .exact-benefits h3 { font-size: 16px; }
  .exact-benefits p { font-size: 10px; }
  .exact-contact { padding: 28px 12px 0; }
  .exact-contact-panel { padding: 45px 16px 24px; }
  .exact-contact-panel > h2 { margin-bottom: 36px; font-size: 38px; }
  .exact-socials { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 50px; }
  .exact-socials a { min-width: 0; height: 53px; }
  .exact-footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .exact-copyright { text-align: center; }
  .exact-mobile-nav { position: fixed; right: 12px; bottom: 9px; left: 12px; z-index: 40; height: 56px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border: 1px solid rgba(0, 209, 241, .3); border-radius: 15px; background: rgba(4, 9, 16, .94); backdrop-filter: blur(14px); }
  .exact-mobile-nav a { text-align: center; color: #9aa4b2; font-size: 10px; }
}

/* Keep support details together and animate only the brand lettering. */
.exact-footer .footer-email, .footer-info .footer-email { display: block; width: fit-content; max-width: 100%; overflow-wrap: anywhere; margin-top: 8px; color: #00cfff; }
.exact-brand .brand-neon, .brand-copy .brand-neon {
  display: inline-block;
  background: linear-gradient(110deg, #00cfff 0%, #00cfff 30%, #12449b 42%, #428bff 48%, #b0e5ff 50%, #205bcc 54%, #00cfff 66%, #00cfff 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: brand-neon-flow 2.4s linear infinite !important;
}
@keyframes brand-neon-flow { from { background-position: 100% 50%; } to { background-position: 0% 50%; } }

