/* ============================================================
   3TAG.shop — Dark Neon / Futuristic Gaming / Premium Tech
   ============================================================ */

:root {
  --bg: #05060f;
  --bg-alt: #080a1d;
  --surface: rgba(16, 20, 48, 0.55);
  --surface-solid: #0d1130;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 229, 255, 0.35);

  --cyan: #00e5ff;
  --blue: #4f7bff;
  --purple: #a855f7;
  --magenta: #ec4899;

  --grad-primary: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
  --grad-primary-hover: linear-gradient(90deg, var(--blue) 0%, var(--purple) 50%, var(--magenta) 100%);
  --grad-text: linear-gradient(90deg, #4ff0ff 0%, #6c8bff 45%, #cf6bff 100%);

  --text: #f3f5ff;
  --text-dim: #97a0c9;
  --text-faint: #5c628c;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- background fx ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(79, 123, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 123, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, black 20%, transparent 75%);
}
.bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
}
.bg-glow--cyan { top: -20%; left: -10%; background: var(--cyan); }
.bg-glow--magenta { top: 30%; right: -15%; background: var(--purple); animation: drift 22s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, 60px); }
}
.bg-particles { position: absolute; inset: 0; }
.bg-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: 0 0 6px 1px var(--cyan);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from { transform: translateY(0); opacity: 0; }
  10% { opacity: .6; }
  90% { opacity: .3; }
  to { transform: translateY(-100vh); opacity: 0; }
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 16px;
}
.eyebrow--center { justify-content: center; width: 100%; }
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 10px var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.section-title.center { text-align: center; }
.section-text {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 0 28px;
}
.section-text.center { max-width: 620px; margin-inline: auto; text-align: center; }

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-primary);
  color: #04060f;
  box-shadow: 0 0 0 rgba(0,229,255,0);
}
.btn-primary:hover {
  background: var(--grad-primary-hover);
  box-shadow: 0 8px 30px -6px rgba(168, 85, 247, 0.55), 0 0 24px -4px rgba(0, 229, 255, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--border-glow);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 22px -4px rgba(0, 229, 255, 0.45);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 32px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.link-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color .25s var(--ease);
}
.link-ghost:hover { color: var(--cyan); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(140%);
  background: rgba(5, 6, 15, 0.55);
  border-bottom: 1px solid var(--border);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--grad-primary);
  opacity: 0.5;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 2px; }
.brand-logo { height: 30px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-name--suffix { font-size: 1.05rem; }
.brand-dot { color: var(--cyan); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--grad-primary);
  transition: width .3s var(--ease);
  border-radius: 2px;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 168px 0 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 500px;
  margin: 0 0 34px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-badges li {
  font-size: 0.86rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badges li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
}

/* --- hero visual composition --- */
.hero-visual { display: flex; justify-content: center; }
.visual-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/3.6;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.phone-frame {
  position: absolute;
  inset: 6% 12%;
  border-radius: 42px;
  background: linear-gradient(160deg, #10143a, #05060f);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.15),
    0 30px 80px -20px rgba(79, 123, 255, 0.5),
    0 0 60px -10px rgba(168, 85, 247, 0.45);
  padding: 18px 16px;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #05060f;
  border-radius: 12px;
}
.phone-screen { padding-top: 22px; height: 100%; display: flex; flex-direction: column; }
.phone-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.phone-logo { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; }
.phone-logo b { color: var(--cyan); font-weight: 700; }
.phone-live { font-size: 0.6rem; color: #4ade80; letter-spacing: .05em; }
.phone-balance { margin-bottom: 16px; }
.phone-balance-label { display: block; font-size: 0.58rem; letter-spacing: .12em; color: var(--text-faint); margin-bottom: 4px; }
.phone-balance-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.phone-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.6rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.phone-tile .tile-icon { font-size: 1.2rem; }
.phone-tile--slot { box-shadow: inset 0 0 20px rgba(0,229,255,0.12); }
.phone-tile--roulette { box-shadow: inset 0 0 20px rgba(168,85,247,0.14); }
.phone-tile--cards { box-shadow: inset 0 0 20px rgba(236,72,153,0.12); }

.roulette-wheel {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: conic-gradient(#ec4899 0 10%, #05060f 0 20%, #ec4899 0 30%, #05060f 0 40%, #ec4899 0 50%, #05060f 0 60%, #ec4899 0 70%, #05060f 0 80%, #ec4899 0 90%, #05060f 0 100%);
  position: relative;
  animation: spin 6s linear infinite;
  box-shadow: 0 0 10px rgba(236,72,153,0.5);
}
.roulette-wheel::after {
  content: "";
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: #0d1130;
}
.roulette-wheel--sm { width: 30px; height: 30px; }
.roulette-wheel--lg { width: 90px; height: 90px; }
@keyframes spin { to { transform: rotate(360deg); } }

.phone-section-label { font-size: 0.6rem; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 8px; }
.phone-strip { display: flex; gap: 8px; margin-bottom: auto; }
.strip-card { flex: 1; height: 46px; border-radius: 10px; border: 1px solid var(--border); }
.strip-card--a { background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(0,229,255,0.02)); }
.strip-card--b { background: linear-gradient(135deg, rgba(168,85,247,0.28), rgba(168,85,247,0.02)); }
.strip-card--c { background: linear-gradient(135deg, rgba(236,72,153,0.25), rgba(236,72,153,0.02)); }

.phone-navbar {
  display: flex;
  justify-content: space-around;
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-faint);
}
.phone-navbar .active { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.6);
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  font-family: var(--font-display);
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card--chip {
  top: 4%; right: -4%;
  width: 74px; height: 74px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  border-color: rgba(236,72,153,0.4);
}
.chip-ring {
  position: absolute; inset: 4px;
  border-radius: 50%;
  border: 2px dashed rgba(236,72,153,0.5);
}
.chip-value { font-size: 0.72rem; font-weight: 700; color: var(--magenta); }
.float-card--stat {
  bottom: 22%; left: -10%;
  min-width: 170px;
}
.stat-dot { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; flex-shrink: 0; }
.float-card--stat strong { display: block; font-size: 1rem; color: var(--text); }
.float-card--stat small { color: var(--text-dim); font-size: 0.7rem; font-family: var(--font-body); }
.float-card--brand {
  bottom: -3%; right: 2%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  border-color: rgba(0,229,255,0.4);
}
.brand-tag { font-size: 0.6rem; letter-spacing: .1em; color: var(--cyan); }
.brand-url { font-size: 0.78rem; color: var(--text); font-family: var(--font-body); font-weight: 600; }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(79,123,255,0.05), transparent);
  padding: 34px 0;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.fs-item { display: flex; gap: 14px; align-items: flex-start; }
.fs-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 16px -4px rgba(0,229,255,0.4);
}
.fs-item h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.fs-item p { margin: 0; font-size: 0.82rem; color: var(--text-dim); }

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(79,123,255,0.04), transparent); }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.check-list { margin-bottom: 34px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 0.95rem; }
.check-list li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--grad-primary);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12l5 5L20 7" stroke="black" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}

/* ---- showcase gallery (real product screenshots) ---- */
.showcase-gallery {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: center;
}
.showcase-col { display: flex; flex-direction: column; gap: 20px; }
.showcase-shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glow);
  background: var(--surface-solid);
  box-shadow: 0 24px 50px -20px rgba(79,123,255,0.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.showcase-shot:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 30px 60px -16px rgba(0,229,255,0.4); }
.showcase-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-shot--game { aspect-ratio: 16/10; }
.showcase-shot--game::after {
  content: attr(data-label);
  position: absolute;
  left: 12px; bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(5,6,15,0.7);
  border: 1px solid var(--border-glow);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.showcase-col--left .showcase-shot:first-child { transform: rotate(-2deg); }
.showcase-col--left .showcase-shot:last-child { transform: rotate(2deg); }
.showcase-col--right .showcase-shot:first-child { transform: rotate(2deg); }
.showcase-col--right .showcase-shot:last-child { transform: rotate(-2deg); }

.showcase-center { position: relative; display: flex; justify-content: center; }
.showcase-phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  border-radius: 40px;
  background: linear-gradient(160deg, #10143a, #05060f);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.15),
    0 40px 90px -20px rgba(79,123,255,0.5),
    0 0 70px -14px rgba(168,85,247,0.5);
}
.showcase-phone .phone-notch { top: 8px; }
.showcase-phone-shot {
  border-radius: 26px;
  overflow: hidden;
  margin-top: 18px;
}
.showcase-phone-shot img { width: 100%; display: block; }
.showcase-phone-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--grad-primary);
  color: #04060f;
  white-space: nowrap;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .4s var(--ease);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -20px rgba(79,123,255,0.35); }
.product-card:hover::before { opacity: 1; }

.product-card--featured {
  background: linear-gradient(160deg, rgba(0,229,255,0.08), rgba(168,85,247,0.06));
  border-color: var(--border-glow);
  box-shadow: 0 30px 70px -20px rgba(0,229,255,0.28);
}
.product-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--grad-primary);
  color: #04060f;
  font-weight: 700;
  margin-bottom: 18px;
}
.product-mock {
  height: 140px;
  border-radius: 16px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  position: relative;
  overflow: hidden;
}
.product-mock--full {
  height: 220px;
  padding: 0;
  font-size: 0;
  background: #0a0d24;
}
.product-mock--full img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-mock--row {
  height: auto;
  padding: 0;
  gap: 6px;
  align-items: stretch;
}
.product-mock-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-mock-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.product-mock-item span {
  font-size: 0.62rem;
  font-family: var(--font-display);
  text-align: center;
  padding: 6px 4px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}
.product-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glow);
  margin-bottom: 16px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.product-card p.desc { color: var(--text-dim); font-size: 0.92rem; margin: 0 0 18px; }
.product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.product-features li { font-size: 0.84rem; color: var(--text-dim); display: flex; gap: 8px; align-items: center; }
.product-features li::before { content: "◆"; color: var(--cyan); font-size: 0.6rem; }
.product-card .btn { margin-top: auto; align-self: flex-start; }
.product-demo {
  font-size: 0.76rem;
  color: var(--text-faint);
  margin: -10px 0 18px;
  display: block;
}
.product-demo strong { color: var(--cyan); font-weight: 600; }

/* ============================================================
   WHY GRID
   ============================================================ */
.why-head { max-width: 640px; margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  background: var(--bg-alt);
  padding: 32px 26px;
  transition: background .3s var(--ease);
}
.why-item:hover { background: rgba(79,123,255,0.08); }
.why-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 20px;
  display: block;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ============================================================
   CASINO SPOTLIGHT
   ============================================================ */
.casino-spotlight { overflow: hidden; }
.spotlight-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(0,229,255,0.12), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 70%, rgba(168,85,247,0.16), transparent 60%);
}
.spotlight-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.spotlight-visual { position: relative; }

.spot-desktop {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glow);
  background: var(--surface-solid);
  box-shadow: 0 50px 100px -30px rgba(0,229,255,0.3), 0 0 80px -20px rgba(168,85,247,0.4);
}
.spot-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
}
.spot-logo { font-family: var(--font-display); font-weight: 700; }
.spot-logo b { color: var(--cyan); }
.spot-menu { color: var(--text-faint); flex: 1; }
.spot-user { color: var(--text-dim); }
.spot-hero-banner {
  margin: 18px;
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(0,229,255,0.2), rgba(236,72,153,0.2));
  border: 1px solid var(--border-glow);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
.spot-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 18px 22px; }
.spot-tile {
  aspect-ratio: 4/3;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 30%, rgba(79,123,255,0.22), transparent 70%), rgba(255,255,255,0.02);
  display: flex; align-items: center; justify-content: center;
}
.spot-tile--roulette { background: radial-gradient(circle at 50% 50%, rgba(168,85,247,0.2), transparent 70%), rgba(255,255,255,0.02); }

.theme-gallery { margin-top: 30px; }
.theme-gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.theme-gallery-head span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.theme-gallery-head .theme-count {
  font-size: 0.72rem;
  color: var(--cyan);
  padding: 4px 12px;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-pill);
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.theme-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.theme-thumb:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.theme-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.theme-thumb span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 6px 8px;
  font-size: 0.62rem;
  font-family: var(--font-display);
  background: linear-gradient(0deg, rgba(5,6,15,0.9), transparent);
  color: var(--text-dim);
}

.spot-phone {
  position: absolute;
  bottom: -8%; right: -6%;
  width: 130px;
  border-radius: 24px;
  background: linear-gradient(160deg, #10143a, #05060f);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 40px -10px rgba(0,229,255,0.4);
  padding: 14px 10px;
  animation: cardFloat 6s ease-in-out infinite;
}
.phone-notch--sm { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 34px; height: 10px; background: #05060f; border-radius: 8px; }
.spot-phone-screen { padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.spot-phone-screen strong { font-family: var(--font-display); font-size: 0.82rem; }
.spot-phone-grid { display: flex; gap: 6px; margin-top: 8px; }
.spot-phone-grid span { flex: 1; aspect-ratio: 1; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  background: linear-gradient(160deg, rgba(0,229,255,0.08), rgba(168,85,247,0.08));
  backdrop-filter: blur(14px);
  text-align: center;
  overflow: hidden;
}
.pricing-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, var(--cyan), var(--blue), var(--purple), var(--magenta), var(--cyan));
  opacity: 0.15;
  filter: blur(60px);
  animation: spin 14s linear infinite;
  z-index: 0;
}
.pricing-top, .pricing-value, .pricing-extra, .pricing-features, .pricing-cta { position: relative; z-index: 1; }
.pricing-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glow);
  color: var(--cyan);
  margin-bottom: 20px;
}
.pricing-top h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; max-width: 420px; margin: 0 auto 30px; color: var(--text-dim); }
.pricing-value { display: flex; align-items: flex-end; justify-content: center; gap: 4px; }
.pricing-currency { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; padding-bottom: 12px; }
.pricing-number { font-family: var(--font-display); font-weight: 800; font-size: 4.6rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing-number small { font-size: 1.8rem; font-weight: 700; }
.pricing-period { font-size: 1.1rem; color: var(--text-dim); padding-bottom: 14px; }
.pricing-extra { color: var(--text-dim); font-size: 0.95rem; margin: 8px 0 32px; }
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 36px;
}
.pricing-features li { font-size: 0.88rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: "✓"; color: var(--cyan); font-weight: 700; }
.pricing-cta { width: 100%; justify-content: center; }

/* ============================================================
   PARTNERS / INTEGRATIONS
   ============================================================ */
.partners {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-head { text-align: center; margin-bottom: 40px; }
.partners-head p {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0;
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 34px;
  display: flex;
  align-items: center;
}
.partner-logo img {
  height: 100%;
  width: auto;
  filter: grayscale(100%) brightness(1.8) opacity(0.55);
  transition: filter .35s var(--ease), transform .35s var(--ease);
}
.partner-logo:hover img {
  filter: grayscale(0%) brightness(1) opacity(1);
  transform: translateY(-2px);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { text-align: center; }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.final-cta-inner .btn { margin-top: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 14px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 24px;
  font-size: 0.8rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card--featured { order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .link-ghost { display: none; }
  .header-actions .btn-sm { display: none; }

  .site-header.is-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5,6,15,0.97);
    border-bottom: 1px solid var(--border-glow);
    padding: 12px 24px 24px;
  }
  .site-header.is-open .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .site-header.is-open .header-actions .link-ghost,
  .site-header.is-open .header-actions .btn-sm { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .visual-stage { margin-top: 40px; max-width: 340px; }

  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .section-split { grid-template-columns: 1fr; }
  .spotlight-inner { grid-template-columns: 1fr; }
  .spot-phone { display: none; }
  .pricing-features { grid-template-columns: 1fr; }
  .showcase-gallery { grid-template-columns: 1fr; }
  .showcase-col { flex-direction: row; }
  .showcase-center { order: -1; margin-bottom: 10px; }
  .theme-grid { grid-template-columns: repeat(4, 1fr); }
  .partners-grid { gap: 40px; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 70px; }
  .feature-strip-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 40px 24px; }
  .pricing-number { font-size: 3.2rem; }
  .showcase-col { flex-direction: column; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { gap: 28px; }
  .partner-logo { height: 26px; }
}
