/* ============================================================
   BoostHaus — premium DARK gradient theme (v3)
   ============================================================ */
:root {
  --bg: #06060d;
  --bg-2: #0c0c17;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --glass: rgba(18, 18, 30, 0.7);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.17);
  --text: #f5f5fb;
  --dim: #aab0c4;
  --faint: #6d728a;
  --faint: #6d728a;
  --brand: #a78bfa;
  --brand-2: #22d3ee;
  --brand-ink: #c4b5fd;
  --accent: #8b5cf6;
  --grad: linear-gradient(135deg, #8b5cf6 0%, #6366f1 42%, #22d3ee 100%);
  --grad-soft: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(34,211,238,0.14));
  --grad-text: linear-gradient(110deg, #c4b5fd 0%, #a78bfa 30%, #67e8f9 70%, #a78bfa 100%);
  --grad-warm: linear-gradient(135deg, #fbbf24, #f472b6 60%, #a78bfa);
  --success: #34d399;
  --warn: #fbbf24;
  --danger: #f87171;
  --shadow: 0 16px 50px -20px rgba(0, 0, 0, 0.9);
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 1);
  --glow: 0 10px 40px -10px rgba(139, 92, 246, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1160px;

  --c-instagram: #E1306C; --c-tiktok: #25F4EE; --c-youtube: #FF0000; --c-discord: #5865F2;
  --c-twitch: #9146FF; --c-twitter: #ffffff; --c-snapchat: #FFC700; --c-gunslol: #A78BFA;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
:target { scroll-margin-top: 86px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* animated ambient gradient glow */
.bg-glow {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(620px circle at 10% 4%, rgba(139, 92, 246, 0.22), transparent 45%),
    radial-gradient(720px circle at 92% 12%, rgba(34, 211, 238, 0.16), transparent 46%),
    radial-gradient(680px circle at 50% 102%, rgba(244, 114, 182, 0.12), transparent 50%);
  animation: floatGlow 16s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(0,-26px,0) scale(1.07); }
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 30%, transparent 78%);
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.028em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.8rem); }
.gradient-text {
  background: var(--grad-text); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.lead { font-size: clamp(1rem, 1.5vw, 1.16rem); color: var(--dim); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 14px; padding: 12px 22px;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, border-color 0.22s, color 0.22s, background 0.22s;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%); transform: translateX(-120%); transition: transform 0.6s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px -12px rgba(139,92,246,0.85); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-warm { background: var(--grad-warm); color: #1a1024; box-shadow: 0 10px 32px -12px rgba(244,114,182,0.7); }
.btn-warm:hover { transform: translateY(-2px); }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--text); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--brand); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 26px -12px rgba(139,92,246,0.5); }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-arrow .ar { transition: transform 0.18s; }
.btn-arrow:hover .ar { transform: translateX(4px); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(6,6,13,0.72); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; font-weight: 900; color: #fff; font-size: 18px; box-shadow: var(--glow); }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { font-size: 14.5px; color: var(--dim); font-weight: 600; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); border-radius: 2px; transition: width 0.25s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--text); background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3); padding: 5px 11px; border-radius: 999px; }
.nav-rating .stars { color: #fbbf24; letter-spacing: 1px; }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.sec-head { max-width: 660px; margin: 0 auto 46px; text-align: center; }
.sec-head h2 { margin: 12px 0 12px; }
.sec-head p { color: var(--dim); font-size: 1.04rem; }
.center { text-align: center; }

/* ---------- Hero (full viewport) ---------- */
.hero { position: relative; min-height: calc(100vh - 68px); display: flex; align-items: center; padding: 40px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-bg .hb-orb { pointer-events: none; }
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero > .wrap { position: relative; z-index: 1; }
.hb-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45; mix-blend-mode: screen; animation: orbDrift 18s ease-in-out infinite; }
.hb-1 { width: 520px; height: 520px; background: radial-gradient(circle, #8b5cf6, transparent 70%); top: -120px; left: -120px; }
.hb-2 { width: 460px; height: 460px; background: radial-gradient(circle, #22d3ee, transparent 70%); top: 20%; right: -140px; animation-delay: -6s; }
.hb-3 { width: 420px; height: 420px; background: radial-gradient(circle, #f472b6, transparent 70%); bottom: -150px; left: 30%; animation-delay: -12s; }
@keyframes orbDrift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  33%     { transform: translate3d(40px,-30px,0) scale(1.1); }
  66%     { transform: translate3d(-30px,30px,0) scale(0.95); }
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 28px; height: 46px; border-radius: 999px; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--dim); cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.hero-scroll span { width: 4px; height: 10px; border-radius: 2px; background: var(--brand); animation: scrollDot 1.6s ease-in-out infinite; }
.hero-scroll:hover { border-color: var(--brand); }
@keyframes scrollDot { 0%,100% { transform: translateY(-6px); opacity: 0.4; } 50% { transform: translateY(6px); opacity: 1; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.hero h1 { margin: 16px 0 18px; }
.hero-sub { max-width: 500px; margin-bottom: 22px; }
.hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--dim); }
.hero-trust .av-row { display: flex; }
.hero-trust .av-row span { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); border: 2px solid var(--bg); margin-left: -8px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; }
.hero-trust .av-row span:first-child { margin-left: 0; }

/* count-up stats band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.stat { text-align: left; }
.stat .num { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { font-size: 12px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.03em; }

/* Quick-order widget — animated gradient border */
.qo { position: relative; border-radius: 22px; padding: 24px; background: var(--glass); backdrop-filter: blur(18px); box-shadow: var(--shadow-lg); }
.qo::before {
  content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1.5px;
  background: linear-gradient(130deg, rgba(139,92,246,0.9), rgba(34,211,238,0.6), rgba(244,114,182,0.5), rgba(139,92,246,0.9));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: borderFlow 8s linear infinite; pointer-events: none;
}
@keyframes borderFlow { to { background-position: 300% 0; } }
.qo-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.qo-head h3 { font-size: 17px; }
.qo-head .live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--success); }
.qo-head .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(52,211,153,0.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.45); } 70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.qo-label { font-size: 11px; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: block; }
.qo-platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.qo-pf { aspect-ratio: 1; border: 1px solid var(--line-2); border-radius: 12px; display: grid; place-items: center; cursor: pointer; font-weight: 800; font-size: 13px; color: var(--dim); transition: all 0.16s; background: var(--surface); }
.qo-pf:hover { border-color: var(--brand); color: #fff; }
.qo-pf.sel { color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--glow); }
.qo-row { margin-bottom: 16px; }
.qo-select { width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text); background: var(--bg-2); cursor: pointer; }
.qo-select:focus { outline: none; border-color: var(--brand); }
.qo-select option { background: var(--bg-2); color: var(--text); }
.qo-qty { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.qo-qty b { font-size: 15px; }
.qo-slider { width: 100%; -webkit-appearance: none; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.1); outline: none; }
.qo-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); cursor: pointer; box-shadow: var(--glow); border: 3px solid var(--bg-2); }
.qo-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--bg-2); }
.qo-price { display: flex; align-items: baseline; justify-content: space-between; margin: 18px 0 14px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.qo-price .lbl { font-size: 13px; color: var(--dim); }
.qo-price .amt { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.qo-note { font-size: 11.5px; color: var(--faint); text-align: center; margin-top: 10px; }

/* ---------- Live feed ---------- */
.feed { display: flex; flex-direction: column; gap: 8px; }
.feed-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; transition: border-color 0.2s; }
.feed-row:hover { border-color: var(--line-2); }
.feed-row .l { display: flex; align-items: center; gap: 9px; }
.feed-row .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 11px; }
.feed-row .t1 { font-size: 12.5px; font-weight: 600; }
.feed-row .t2 { font-size: 10.5px; color: var(--faint); }
.feed-row .amt { font-size: 12.5px; font-weight: 800; color: var(--success); }

/* ---------- Platform marquee (JS-driven, smooth braking) ---------- */
.pf-band { background: rgba(255,255,255,0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; overflow: hidden; position: relative; }
.pf-band-title { text-align: center; font-size: 12px; color: var(--faint); font-family: var(--mono); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 26px; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; will-change: transform; }
.mq-item { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 16px; color: var(--dim); font-weight: 700; font-size: 21px; padding: 8px 14px; transition: color 0.25s, transform 0.25s; }
.mq-item img { height: 42px; width: auto; opacity: 0.85; filter: drop-shadow(0 6px 18px rgba(139,92,246,0.22)); transition: opacity 0.25s, transform 0.25s; }
.mq-item:hover { color: #fff; transform: translateY(-2px); }
.mq-item:hover img { opacity: 1; transform: scale(1.1); }

/* ---------- (legacy platform grid below) ---------- */
.pf-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.pf-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); transition: all 0.2s; cursor: pointer; }
.pf-tile:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--shadow); background: var(--surface-2); }
.pf-tile .badge { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px; }
.pf-tile span { font-size: 12.5px; font-weight: 700; color: var(--dim); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform 0.22s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s, border-color 0.22s, background 0.22s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); background: var(--surface-2); }

/* platform feature block */
.pblock { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center; padding: 36px 0; }
.pblock.rev { direction: rtl; }
.pblock.rev > * { direction: ltr; }
.pblock-info .emoji { font-size: 40px; }
.pblock-info h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 10px 0 12px; }
.pblock-info p { color: var(--dim); margin-bottom: 18px; max-width: 420px; }
.pblock-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini { padding: 18px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); transition: all 0.2s; }
.mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); background: var(--surface-2); }
.mini .mtitle { font-size: 14px; font-weight: 700; }
.mini .mfrom { font-size: 12px; color: var(--faint); margin-top: 4px; }
.mini .mfrom b { color: var(--brand); font-size: 15px; }

/* service card */
.svc-card { display: flex; flex-direction: column; cursor: pointer; }
.svc-card .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; font-weight: 800; font-size: 14px; color: #fff; }
.svc-card h3 { font-size: 16px; margin-bottom: 7px; }
.svc-card .desc { font-size: 13px; color: var(--dim); flex: 1; margin-bottom: 16px; }
.svc-card .foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.svc-card .price { font-size: 12.5px; color: var(--faint); }
.svc-card .price b { color: var(--text); font-size: 16px; }
.svc-card .go { color: var(--brand-2); font-size: 18px; transition: transform 0.18s; }
.svc-card:hover .go { transform: translateX(4px); }
.tag { position: absolute; top: 13px; right: 13px; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(139,92,246,0.2); color: var(--brand-ink); border: 1px solid rgba(139,92,246,0.4); }

.feature .ficon { font-size: 28px; }
.feature h3 { font-size: 17px; margin: 10px 0 7px; }
.feature p { font-size: 13.5px; color: var(--dim); }

/* ---------- Comparison ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.compare { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 560px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--faint); font-weight: 700; }
.compare thead th.us { color: var(--brand); }
.compare td.feat { font-weight: 600; color: var(--text); }
.compare td.us { font-weight: 700; color: #fff; background: rgba(139,92,246,0.1); }
.compare td.them { color: var(--dim); }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--success); font-weight: 700; }
.compare .no { color: var(--danger); }

/* ---------- Free money banner ---------- */
.freemoney { border-radius: 24px; padding: 44px; background: linear-gradient(135deg, rgba(139,92,246,0.16), rgba(34,211,238,0.1)), var(--bg-2); border: 1px solid var(--line-2); color: #fff; display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.freemoney::after { content: "💸"; position: absolute; font-size: 200px; right: -20px; bottom: -50px; opacity: 0.1; }
.freemoney h2 { color: #fff; }
.freemoney p { color: var(--dim); margin: 12px 0 0; max-width: 460px; }
.freemoney .stat-row { display: flex; gap: 26px; margin-top: 22px; }
.freemoney .stat-row .n { font-size: 26px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.freemoney .stat-row .l { font-size: 12px; color: var(--faint); }

/* ---------- Reviews ---------- */
.review .stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 10px; }
.review .body { font-size: 14px; margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 10px; }
.review .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 800; color: #fff; }
.review .nm { font-size: 14px; font-weight: 700; }
.review .src { font-size: 11px; color: var(--faint); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--brand); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-size: 15px; font-weight: 700; padding: 17px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--sans); }
.faq-q .ic { color: var(--brand); font-size: 20px; transition: transform 0.25s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a div { padding: 0 18px 17px; color: var(--dim); font-size: 13.5px; }
.faq-item.open .faq-a { max-height: 260px; }

/* ---------- CTA ---------- */
.cta-block { text-align: center; padding: 56px 24px; border-radius: 24px; border: 1px solid var(--line-2); background: radial-gradient(700px circle at 50% 0%, rgba(139,92,246,0.18), transparent 60%), var(--surface); box-shadow: var(--shadow); }
.cta-block h2 { margin: 12px 0 16px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 50px 0 32px; margin-top: 36px; background: rgba(255,255,255,0.012); }
/* 4-col layout (used by JS-mounted footer on storefront pages: brand + Platforms + Support + Account)
   Falls back to 1.6fr + 3 equal columns. SEO server-rendered footer also uses this — its 5th column
   doesn't exist anymore (consolidated into Support). */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 32px; }
.footer-about p { font-size: 13px; color: var(--dim); margin-top: 12px; max-width: 300px; }
.footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { font-size: 14px; color: var(--dim); transition: color 0.2s; }
.footer ul a:hover { color: var(--brand-2); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--faint); }
.footer-bottom-links { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--dim); }
.footer-bottom-links a:hover { color: var(--brand-2); }
.footer-bottom-links .dot { color: var(--faint); }

/* Legal pages — generic class kept for compatibility */
.legal-page { padding: 56px 22px 80px; max-width: 820px; }

/* ============================================================
   Refund-policy v2 — proper layout with icon cards
   ============================================================ */
.rp-page { padding: 38px 22px 80px; max-width: 880px; }
.rp-head { text-align: center; margin-bottom: 32px; }
.rp-head .back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.rp-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 12px 0 14px; letter-spacing: -0.025em; }
.rp-head .lead { max-width: 560px; margin: 0 auto; }

.rp-tldr {
  margin: 0 auto 28px;
  padding: 22px 24px;
  background: linear-gradient(140deg, rgba(167,139,250,0.10), rgba(34,211,238,0.04));
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 18px;
}
.rp-tldr h3 { font-size: 11px; font-weight: 800; color: var(--faint); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--mono); }
.rp-tldr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.rp-tldr-cell { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,0.03); border-radius: 10px; font-size: 13.5px; color: var(--dim); }
.rp-tldr-cell.ok b { color: #34d399; }
.rp-tldr-cell.no b { color: #f87171; }
.rp-tldr-cell svg { flex-shrink: 0; }

.rp-sections { display: flex; flex-direction: column; gap: 14px; }
.rp-card {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  padding: 24px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.rp-card:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-1px); }
.rp-card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line-2); }
.rp-card-icon.ok-glow { background: rgba(52,211,153,0.10); border-color: rgba(52,211,153,0.35); box-shadow: 0 10px 24px -16px rgba(52,211,153,0.5); }
.rp-card-icon.no-glow { background: rgba(248,113,113,0.10); border-color: rgba(248,113,113,0.35); box-shadow: 0 10px 24px -16px rgba(248,113,113,0.5); }
.rp-card-icon.warn-glow { background: rgba(251,191,36,0.10); border-color: rgba(251,191,36,0.35); box-shadow: 0 10px 24px -16px rgba(251,191,36,0.5); }
.rp-card-icon.brand-glow { background: rgba(167,139,250,0.10); border-color: rgba(167,139,250,0.35); box-shadow: 0 10px 24px -16px rgba(167,139,250,0.5); }
.rp-card h2 { font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -0.015em; }
.rp-card p { color: var(--dim); font-size: 14.5px; line-height: 1.65; margin-bottom: 10px; }
.rp-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.rp-list li { position: relative; padding-left: 18px; color: var(--dim); font-size: 14px; line-height: 1.6; }
.rp-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
.rp-list a, .rp-card p a { color: var(--brand-2); font-weight: 700; }
.rp-list a:hover, .rp-card p a:hover { text-decoration: underline; }
.rp-note { background: linear-gradient(160deg, rgba(167,139,250,0.10), rgba(167,139,250,0.04)) !important; border-color: rgba(167,139,250,0.35) !important; }

.rp-cta { margin-top: 32px; padding: 32px; text-align: center; border-radius: 22px; background: radial-gradient(700px circle at 50% 0%, rgba(139,92,246,0.16), transparent 60%), var(--surface); border: 1px solid var(--line-2); }
.rp-cta h3 { font-size: 1.4rem; margin-bottom: 8px; }
.rp-cta p { color: var(--dim); margin-bottom: 18px; }

@media (max-width: 640px) {
  .rp-tldr-grid { grid-template-columns: 1fr; }
  .rp-card { grid-template-columns: 1fr; }
  .rp-card-icon { width: 44px; height: 44px; }
}

/* ============================================================
   Referral panel, credit pill, ref-link share
   ============================================================ */
.nav-credit {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(52,211,153,0.18), rgba(34,211,238,0.14));
  border: 1px solid rgba(52,211,153,0.45);
  color: #34d399; font-weight: 800; font-size: 13px;
  padding: 6px 13px; border-radius: 999px;
  font-family: var(--mono); letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-credit:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -10px rgba(52,211,153,0.5); }

/* Referral nav badge */
.nav-refer {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(167,139,250,0.16), rgba(244,114,182,0.12));
  border: 1px solid rgba(167,139,250,0.45);
  color: #c4b5fd; font-weight: 800; font-size: 12.5px;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.nav-refer::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s;
}
.nav-refer:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(167,139,250,0.55); }
.nav-refer:hover::before { transform: translateX(120%); }
.nav-refer-dot { width: 8px; height: 8px; border-radius: 50%; background: #f472b6; box-shadow: 0 0 0 0 rgba(244,114,182,0.55); animation: refDotPulse 1.6s infinite; }
@keyframes refDotPulse { 0% { box-shadow: 0 0 0 0 rgba(244,114,182,0.55); } 70% { box-shadow: 0 0 0 8px rgba(244,114,182,0); } 100% { box-shadow: 0 0 0 0 rgba(244,114,182,0); } }
@media (max-width: 900px) {
  .nav-refer-text { display: none; }
  .nav-refer { padding: 6px 9px; }
}

.credit-pill {
  display: inline-flex; align-items: center; margin-left: 8px;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(52,211,153,0.16); color: #34d399;
  font-family: var(--mono); font-size: 11px; font-weight: 800; letter-spacing: 0.02em;
}
.dash-tab.active .credit-pill { background: rgba(255,255,255,0.18); color: #fff; }

.ref-banner {
  padding: 10px 13px; background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.35);
  color: #c4b5fd; border-radius: 12px; font-size: 12.5px; margin-bottom: 18px; text-align: left;
}
.ref-banner b { color: #fff; font-family: var(--mono); }

/* Referral hero (3D coins + ring + card) */
.ref-hero {
  display: grid; grid-template-columns: 360px 1fr; gap: 32px; align-items: center;
  background: linear-gradient(150deg, rgba(139,92,246,0.10), rgba(34,211,238,0.06));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 22px; padding: 26px; overflow: hidden; position: relative;
  margin-bottom: 22px;
}
.ref-stage { position: relative; height: 240px; }
.ref-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px circle at 50% 50%, rgba(139,92,246,0.25), transparent 65%);
  pointer-events: none;
}
.ref-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.13); transform: translate(-50%,-50%); animation: refSpin 22s linear infinite; }
.ref-ring.r1 { width: 220px; height: 220px; }
.ref-ring.r2 { width: 150px; height: 150px; border-style: dotted; animation-direction: reverse; animation-duration: 14s; }
@keyframes refSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.ref-coin {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, #fbbf24, #f59e0b);
  display: grid; place-items: center; color: #4a2200; font-weight: 900; font-size: 22px;
  box-shadow: 0 12px 28px -10px rgba(251,191,36,0.7), inset 0 1px 0 rgba(255,255,255,0.4);
  animation: refFloat 5s ease-in-out infinite;
}
.ref-coin.c1 { left: 12%; top: 18%; animation-delay: 0s; }
.ref-coin.c2 { right: 18%; top: 22%; animation-delay: -1.4s; width: 38px; height: 38px; font-size: 18px; }
.ref-coin.c3 { left: 28%; bottom: 16%; animation-delay: -2.8s; width: 36px; height: 36px; font-size: 18px; }
.ref-coin.c4 { right: 12%; bottom: 20%; animation-delay: -4s; }
@keyframes refFloat { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-10px) rotate(6deg); } }
.ref-card-shape {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(-8deg);
  width: 180px; height: 110px; border-radius: 14px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 22px 50px -16px rgba(139,92,246,0.7), inset 0 1px 0 rgba(255,255,255,0.25);
  display: flex; flex-direction: column; justify-content: space-between; padding: 14px;
}
.rcs-corner { display: block; width: 30px; height: 22px; border-radius: 4px; background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.rcs-mark { color: rgba(255,255,255,0.45); font-weight: 900; font-size: 14px; align-self: flex-end; }
.rcs-text { color: rgba(255,255,255,0.9); font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; font-weight: 800; }

.ref-info h2 { margin: 6px 0 10px; font-size: clamp(1.6rem, 2.6vw, 2rem); }
.ref-info .lead { font-size: 14.5px; max-width: 460px; margin-bottom: 16px; }
.ref-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.ref-stats div { display: flex; flex-direction: column; }
.ref-stats b { font-size: 22px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.02em; }
.ref-stats span { font-size: 11px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; }

.ref-share { padding: 22px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 18px; margin-bottom: 22px; }
.ref-share label { display: block; font-size: 11px; font-weight: 800; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.ref-share-row { display: flex; gap: 10px; }
.ref-share-row input {
  flex: 1; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  color: var(--text); font-family: var(--mono); font-size: 13px;
}
.ref-share-row input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139,92,246,0.16); }
.ref-share-meta { margin-top: 12px; font-size: 12px; color: var(--dim); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ref-share-meta code { background: var(--surface-2); padding: 2px 7px; border-radius: 6px; color: #fff; font-family: var(--mono); font-size: 12px; }
.ref-share-meta .dot { color: var(--faint); }

.ref-ledger h3 { font-size: 15px; margin-bottom: 12px; }
.ledger-table { display: flex; flex-direction: column; gap: 8px; }
.ledger-row {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 12px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
}
.ledger-row:hover { border-color: var(--line-2); }
.lr-label { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.lr-kind {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; display: inline-block; width: max-content;
  background: var(--surface-2); border: 1px solid var(--line-2); color: var(--dim);
}
.lr-kind.referral { background: rgba(167,139,250,0.16); border-color: rgba(167,139,250,0.4); color: #c4b5fd; }
.lr-kind.spend { background: rgba(34,211,238,0.12); border-color: rgba(34,211,238,0.3); color: #67e8f9; }
.lr-kind.refund_credit { background: rgba(52,211,153,0.14); border-color: rgba(52,211,153,0.3); color: #34d399; }
.lr-kind.admin_adjust { background: rgba(251,191,36,0.14); border-color: rgba(251,191,36,0.3); color: var(--warn); }
.lr-note { font-size: 12px; color: var(--faint); font-family: var(--mono); }
.lr-meta { text-align: right; }
.lr-amt { font-family: var(--mono); font-weight: 800; font-size: 15px; }
.lr-amt.pos { color: var(--success); }
.lr-amt.neg { color: var(--brand-2); }
.lr-when { font-size: 11px; color: var(--faint); margin-top: 2px; }

/* Apply-credit row with custom styled checkbox */
.apply-credit-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: linear-gradient(135deg, rgba(52,211,153,0.12), rgba(34,211,238,0.06));
  border: 1px solid rgba(52,211,153,0.35);
  border-radius: 12px; margin-bottom: 14px; cursor: pointer;
  font-size: 13.5px; color: var(--text); user-select: none;
  transition: border-color 0.2s, background 0.2s;
}
.apply-credit-row:hover { border-color: rgba(52,211,153,0.6); background: linear-gradient(135deg, rgba(52,211,153,0.16), rgba(34,211,238,0.09)); }
.apply-credit-row input {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  border: 1.5px solid rgba(52,211,153,0.55);
  background: rgba(0,0,0,0.35); cursor: pointer; position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.apply-credit-row input:hover { transform: scale(1.05); border-color: var(--success); }
.apply-credit-row input:checked {
  background: linear-gradient(135deg, #34d399, #10b981);
  border-color: #34d399;
  box-shadow: 0 6px 16px -8px rgba(52,211,153,0.7);
}
.apply-credit-row input:checked::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 6px; height: 11px; border: solid #fff;
  border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.apply-credit-row b { color: var(--success); font-family: var(--mono); font-weight: 800; }

@media (max-width: 720px) {
  .ref-hero { grid-template-columns: 1fr; }
  .ref-stage { height: 200px; }
}

/* ============================================================
   Standalone /referrals page — much bigger / cooler
   ============================================================ */
.referrals-page { position: relative; min-height: calc(100vh - 68px); padding: 50px 22px 70px; overflow: hidden; }
.ref-page-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.ref-pg-orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.5; mix-blend-mode: screen; }
.ref-pg-orb.o1 { width: 540px; height: 540px; background: radial-gradient(circle, #a78bfa, transparent 70%); top: -130px; left: -130px; animation: orbDrift 22s ease-in-out infinite; }
.ref-pg-orb.o2 { width: 460px; height: 460px; background: radial-gradient(circle, #fbbf24, transparent 70%); top: 30%; right: -150px; animation: orbDrift 22s ease-in-out infinite -8s; }
.ref-pg-orb.o3 { width: 400px; height: 400px; background: radial-gradient(circle, #f472b6, transparent 70%); bottom: -150px; left: 30%; animation: orbDrift 22s ease-in-out infinite -14s; }

.ref-pg-coins { position: absolute; inset: 0; }
.ref-pg-coin {
  position: absolute; display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(140deg, #fbbf24, #f59e0b);
  color: #4a2200; font-weight: 900; font-size: 24px;
  box-shadow: 0 16px 36px -10px rgba(251,191,36,0.6), inset 0 1px 0 rgba(255,255,255,0.45);
  animation: refFloat 7s ease-in-out infinite;
  opacity: 0.85;
}
.ref-pg-coin.pc1 { left: 6%; top: 12%; animation-delay: 0s; }
.ref-pg-coin.pc2 { right: 9%; top: 18%; animation-delay: -1.4s; width: 42px; height: 42px; font-size: 20px; }
.ref-pg-coin.pc3 { left: 14%; bottom: 28%; animation-delay: -2.8s; width: 38px; height: 38px; font-size: 18px; }
.ref-pg-coin.pc4 { right: 12%; bottom: 14%; animation-delay: -4s; }
.ref-pg-coin.pc5 { left: 60%; top: 8%; animation-delay: -5.2s; width: 36px; height: 36px; font-size: 16px; opacity: 0.7; }
.ref-pg-coin.pc6 { left: 40%; bottom: 6%; animation-delay: -6s; width: 46px; height: 46px; font-size: 22px; }

.ref-page-hero { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; text-align: center; }
.ref-page-hero > .eyebrow { display: inline-flex; }
.ref-page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); letter-spacing: -0.03em; line-height: 1.08; margin: 14px auto 18px; max-width: 740px; }
.ref-page-hero .lead { max-width: 620px; margin: 0 auto 28px; font-size: clamp(1rem, 1.3vw, 1.1rem); }

/* Side-by-side: stats card on the left, share card on the right (stack on mobile) */
.ref-page-stats {
  display: inline-flex; align-items: center; gap: 30px;
  padding: 18px 28px; margin: 0 auto 28px;
  background: linear-gradient(140deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line-2); border-radius: 18px;
  flex-wrap: wrap; justify-content: center;
}
.ref-page-stats div { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.ref-page-stats b { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; letter-spacing: -0.02em; }
.ref-page-stats span { font-size: 11px; color: var(--faint); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.ref-page-stat-sep { width: 1px; align-self: stretch; background: var(--line); }

.ref-page-share {
  position: relative; max-width: 620px; margin: 0 auto 60px;
  padding: 2px; border-radius: 22px;
  background: linear-gradient(130deg, rgba(167,139,250,0.9), rgba(34,211,238,0.6), rgba(244,114,182,0.6), rgba(167,139,250,0.9));
  background-size: 300% 300%;
  animation: borderFlow 9s linear infinite;
}
.ref-page-share-inner {
  padding: 24px 26px;
  background: rgba(13,13,22,0.95);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}
.ref-page-share-label { font-size: 11px; font-weight: 800; color: var(--faint); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.ref-page-share-input { display: flex; gap: 10px; }
.ref-page-share-input input {
  flex: 1; padding: 14px 16px;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  color: var(--text); font-family: var(--mono); font-size: 14px;
  text-align: center;
}
.ref-page-share-input input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }
.ref-page-share-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; flex-wrap: wrap; gap: 12px; }
.ref-page-share-code { font-size: 12.5px; color: var(--dim); }
.ref-page-share-code code { background: var(--surface-2); padding: 3px 9px; border-radius: 6px; color: #fff; font-family: var(--mono); margin-left: 4px; }
.ref-page-share-social { display: flex; gap: 8px; }
.ref-page-share-social a {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--dim);
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.ref-page-share-social a:hover { color: #fff; border-color: var(--brand); transform: translateY(-2px); background: rgba(139,92,246,0.14); }

.ref-page-how { position: relative; z-index: 1; max-width: 980px; margin: 24px auto 56px; }
.ref-page-how h2 { font-size: clamp(1.4rem, 2vw, 1.7rem); letter-spacing: -0.02em; margin-bottom: 20px; text-align: center; }
.ref-page-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ref-how-step {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s;
  min-height: 200px; display: flex; flex-direction: column;
}
.ref-how-step::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee, #f472b6);
  opacity: 0.5; border-radius: 20px 20px 0 0;
}
.ref-how-step:hover { border-color: rgba(139,92,246,0.55); transform: translateY(-4px); box-shadow: 0 24px 56px -28px rgba(139,92,246,0.55); }
.ref-how-num {
  font-family: var(--mono); font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--brand); margin-bottom: 14px;
  display: inline-block; padding: 3px 11px; border-radius: 999px;
  background: rgba(139,92,246,0.16); border: 1px solid rgba(139,92,246,0.4);
  align-self: flex-start;
}
.ref-how-step h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -0.015em; }
.ref-how-step p { color: var(--dim); font-size: 13.5px; line-height: 1.65; }
.ref-how-step p b { color: var(--text); }

.ref-page-ledger { max-width: 760px; margin: 0 auto 50px; position: relative; z-index: 1; }
.ref-page-ledger-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
.ref-page-ledger-head h2 { font-size: 1.3rem; letter-spacing: -0.015em; }
.ref-page-ledger-link { color: var(--brand-2); font-weight: 700; font-size: 13px; }

.ref-page-faq { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.ref-page-faq h2 { font-size: 1.3rem; margin-bottom: 14px; text-align: center; letter-spacing: -0.015em; }

@media (max-width: 720px) {
  .ref-page-how-grid { grid-template-columns: 1fr; }
  .ref-page-stat-sep { display: none; }
}
.status-ok { display: inline-flex; align-items: center; gap: 7px; }
.status-ok::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }

/* ---------- Forms / auth ---------- */
.auth-wrap { min-height: calc(100vh - 68px); display: grid; place-items: center; padding: 40px 22px; }
.auth-card { width: 100%; max-width: 420px; }
.auth-card h1 { font-size: 1.8rem; margin-bottom: 8px; }
.auth-card .sub { color: var(--dim); font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 12px; color: var(--dim); margin-bottom: 7px; font-weight: 700; }
.field input, .field select { width: 100%; padding: 13px 15px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--text); font-size: 14px; font-family: var(--sans); transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139,92,246,0.2); }
.field .hint { font-size: 11.5px; color: var(--faint); margin-top: 6px; }
.alert { padding: 12px 15px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; display: none; }
.alert.show { display: block; }
.alert-err { background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.35); color: #fca5a5; }
.alert-ok { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.35); color: #6ee7b7; }
.auth-alt { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--dim); }
.auth-alt a { color: var(--brand-2); font-weight: 700; }

/* ---------- Order page ---------- */
.order-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 34px; align-items: start; }
.back-link { display: inline-flex; align-items: center; gap: 7px; color: var(--dim); font-size: 13px; margin-bottom: 22px; font-weight: 600; transition: color 0.2s; }
.back-link:hover { color: var(--brand-2); }
.op-head { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.op-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 16px; }
.op-meta { display: flex; gap: 16px; flex-wrap: wrap; margin: 16px 0 26px; }
.op-meta .m { font-size: 12.5px; color: var(--dim); display: flex; align-items: center; gap: 7px; }
.op-meta .m b { color: var(--text); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.pkg { border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 15px; cursor: pointer; position: relative; transition: all 0.16s; background: var(--surface); }
.pkg:hover { border-color: var(--brand); transform: translateY(-2px); }
.pkg.sel { border-color: var(--brand); background: rgba(139,92,246,0.12); box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }
.pkg .q { font-size: 18px; font-weight: 800; }
.pkg .q small { font-size: 11px; color: var(--faint); font-weight: 500; }
.pkg .p { font-size: 14px; color: var(--brand-2); font-weight: 800; margin-top: 4px; }
.pkg .perk { font-size: 10.5px; color: var(--faint); }
.pkg .ptag { position: absolute; top: -9px; right: 10px; font-size: 9px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: var(--grad); color: #fff; }
.order-form { background: var(--glass); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 88px; box-shadow: var(--shadow); }
.summary { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 15px 0; margin: 18px 0; display: flex; flex-direction: column; gap: 8px; }
.summary .sr { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--dim); }
.summary .sr b { color: var(--text); }
.summary .total { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; border-top: 1px dashed var(--line-2); margin-top: 4px; }
.summary .total b { font-size: 22px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.coins { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-bottom: 6px; }
.coin { border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 11px 13px; cursor: pointer; display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; transition: all 0.16s; background: var(--surface); }
.coin:hover { border-color: var(--brand); }
.coin.sel { border-color: var(--brand); background: rgba(139,92,246,0.12); }
.coin .cdot { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 10px; font-weight: 800; color: #fff; }
.upi-note { font-size: 12px; color: var(--dim); margin-top: 14px; padding: 12px; border-radius: var(--radius-sm); border: 1px dashed var(--line-2); background: var(--surface); }
.upi-note a { color: var(--brand-2); font-weight: 700; }
.stock-box { margin-bottom: 14px; }
.custom-row { margin-top: 18px; padding: 16px 18px; border: 1px dashed var(--line-2); border-radius: 14px; background: rgba(255,255,255,0.025); }
.custom-row-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-size: 12.5px; color: var(--dim); font-weight: 700; }
.custom-row-head .custom-range { font-family: var(--mono); font-weight: 500; color: var(--faint); font-size: 11px; }
.custom-input { display: flex; gap: 0; align-items: stretch; }
.custom-input input { flex: 1; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--line-2); border-right: none; border-radius: 12px 0 0 12px; color: var(--text); font-size: 14.5px; font-family: var(--sans); font-weight: 600; }
.custom-input input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139,92,246,0.16); position: relative; z-index: 1; }
.custom-input input::-webkit-outer-spin-button, .custom-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.custom-input input[type=number] { -moz-appearance: textfield; }
.custom-input .custom-unit { display: inline-flex; align-items: center; padding: 0 16px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 0 12px 12px 0; color: var(--dim); font-size: 13px; font-weight: 600; }
/* Shake animation when user types above the maximum allowed quantity */
.custom-input.shake input { border-color: var(--danger) !important; background: rgba(248,113,113,0.08); color: var(--danger); animation: customShake 0.4s cubic-bezier(.36,.07,.19,.97); }
.custom-input.shake .custom-unit { border-color: var(--danger); color: var(--danger); }
@keyframes customShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80%      { transform: translateX(6px); }
}

/* ---------- Invoice ---------- */
.invoice-wrap { max-width: 460px; margin: 0 auto; }
.invoice-card { background: var(--glass); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); }
.inv-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.inv-amount { font-size: 30px; font-weight: 800; }
.inv-amount small { font-size: 14px; color: var(--dim); font-weight: 600; }
.qr-box { width: 220px; height: 220px; margin: 8px auto 18px; background: #fff; border-radius: 14px; padding: 10px; }
.qr-box img { width: 100%; height: 100%; }
.copy-row { margin-bottom: 13px; }
.copy-row label { font-size: 11px; color: var(--faint); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700; }
.copy-field { display: flex; align-items: center; gap: 8px; margin-top: 6px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 10px 12px; }
.copy-field code { font-family: var(--mono); font-size: 12px; color: var(--text); word-break: break-all; flex: 1; }
.copy-btn { background: var(--surface-2); border: 1px solid var(--line-2); color: var(--dim); font-size: 11px; padding: 5px 10px; border-radius: 7px; cursor: pointer; transition: all 0.16s; font-weight: 700; }
.copy-btn:hover { color: #fff; border-color: var(--brand); }
.inv-status { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warn); animation: pulse 1.8s infinite; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.sp-pending { background: rgba(251,191,36,0.14); color: var(--warn); border: 1px solid rgba(251,191,36,0.3); }
.sp-active { background: rgba(34,211,238,0.14); color: var(--brand-2); border: 1px solid rgba(34,211,238,0.3); }
.sp-completed { background: rgba(52,211,153,0.14); color: var(--success); border: 1px solid rgba(52,211,153,0.3); }
.sp-cancelled { background: rgba(248,113,113,0.14); color: var(--danger); border: 1px solid rgba(248,113,113,0.3); }
.sp-refunded { background: var(--surface-2); color: var(--dim); border: 1px solid var(--line-2); }

/* ---------- Dashboard / orders ---------- */
.page-head { padding: 38px 0 24px; }
.page-head h1 { font-size: 2rem; }
.page-head p { color: var(--dim); margin-top: 6px; }
.order-list { display: flex; flex-direction: column; gap: 14px; }
.order-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: border-color 0.2s, background 0.2s; }
.order-card:hover { border-color: var(--line-2); background: var(--surface-2); }
.oc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.oc-title { display: flex; align-items: center; gap: 12px; }
.oc-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 13px; }
.oc-title .nm { font-size: 15px; font-weight: 700; }
.oc-title .id { font-size: 11px; color: var(--faint); font-family: var(--mono); }
.oc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px 20px; }
.oc-field .k { font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.oc-field .v { font-size: 13.5px; color: var(--text); font-weight: 600; word-break: break-all; }
.oc-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.empty { text-align: center; padding: 56px 20px; color: var(--faint); }

/* ---------- Admin ---------- */
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 68px); }
.admin-side { border-right: 1px solid var(--line); padding: 26px 14px; background: rgba(255,255,255,0.012); }
.admin-side h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); padding: 0 12px; margin-bottom: 12px; }
.admin-nav { display: flex; flex-direction: column; gap: 3px; margin-bottom: 24px; }
.admin-nav button { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; text-align: left; background: none; border: none; color: var(--dim); font-size: 14px; font-weight: 600; padding: 10px 12px; border-radius: 9px; cursor: pointer; font-family: var(--sans); transition: all 0.15s; }
.admin-nav button:hover { background: var(--surface); color: var(--text); }
.admin-nav button.active { background: var(--surface-2); color: #fff; }
.admin-nav .count { font-size: 11px; font-family: var(--mono); background: var(--surface-2); padding: 2px 8px; border-radius: 999px; color: var(--dim); }
.admin-nav button.active .count { background: var(--accent); color: #fff; }
.admin-main { padding: 30px; overflow: auto; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-bottom: 30px; }
.stat-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.stat-box .k { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.stat-box .v { font-size: 28px; font-weight: 800; margin-top: 8px; letter-spacing: -0.03em; }
.stat-box .v.money { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.select-sm { background: var(--bg-2); border: 1px solid var(--line-2); color: var(--text); font-size: 12px; padding: 7px 10px; border-radius: 8px; font-family: var(--sans); cursor: pointer; font-weight: 600; }
.select-sm option { background: var(--bg-2); }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }

/* Analytics range picker */
.analytics-range { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line); background: var(--surface); border-radius: 12px; }
.analytics-range button { background: none; border: none; color: var(--dim); font-family: var(--sans); font-weight: 700; font-size: 12px; padding: 7px 11px; border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.analytics-range button:hover { color: var(--text); background: var(--surface-2); }
.analytics-range button.active { color: #fff; background: var(--grad); box-shadow: 0 6px 16px -8px rgba(139,92,246,0.6); }

/* Stock list */
.stock-list { display: flex; flex-direction: column; gap: 10px; }
.stock-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.stock-row:hover { border-color: var(--line-2); }
.sr-meta { display: flex; gap: 12px; align-items: center; min-width: 0; }
.sr-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; }
.sr-name { font-size: 14.5px; font-weight: 700; }
.sr-platform { font-size: 11.5px; color: var(--faint); font-family: var(--mono); }
.sr-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.sr-field { display: flex; flex-direction: column; gap: 4px; }
.sr-field span { font-size: 10.5px; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; }
.sr-field input { width: 130px; padding: 8px 10px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 8px; color: var(--text); font-size: 13px; font-family: var(--mono); font-weight: 600; }
.sr-field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139,92,246,0.16); }
.sr-toggle { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--dim); font-weight: 600; cursor: pointer; }
.sr-toggle input { width: 16px; height: 16px; accent-color: var(--brand); }

/* Admin sidebar section headings */
.admin-side h4 + .admin-nav { margin-bottom: 18px; }

/* ============================================================
   SEO landing pages (platforms, services, blog, about)
   ============================================================ */
.crumbs { font-size: 12.5px; color: var(--faint); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--mono); }
.crumbs a { color: var(--dim); }
.crumbs a:hover { color: var(--brand-2); }
.crumbs .crumb-sep { color: var(--faint); opacity: 0.6; }

/* Platform pages: services-first layout */
.plat-services { padding: 18px 22px 28px; }

/* Bigger, breathable service cards */
.svc-card-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.svc-card-big { padding: 26px 24px; border-radius: 20px; gap: 14px; min-height: 230px; }
.svc-card-big .svc-card-ico { width: 60px; height: 60px; border-radius: 16px; }
.svc-card-big .svc-card-ico img { width: 30px; height: 30px; }
.svc-card-big h3 { font-size: 19px; letter-spacing: -0.015em; }
.svc-card-big .svc-blurb { font-size: 14px; line-height: 1.55; }
.svc-card-big .svc-from-amt { font-size: 24px; }
.svc-card-big .svc-foot { padding-top: 16px; }
.svc-card-big .svc-cta { font-size: 13px; }

/* Group banner: more prominent header above cards */
.svc-group-banner { padding: 22px 26px; border-radius: 20px; margin-bottom: 22px; }
.svc-group-banner .sgb-ico { width: 56px; height: 56px; border-radius: 16px; }
.svc-group-banner .sgb-left h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.svc-group-banner .sgb-count { font-size: clamp(2.4rem, 3.4vw, 2.8rem); }

/* Fade divider used between commerce blocks and SEO copy */
.fade-divider { height: 1px; margin: 26px auto; max-width: 1160px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* The H1 + intro now live inside the article, below the divider */
.seo-article-head { padding: 8px 0 22px; max-width: 78ch; }
.seo-article-head h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.1; }
.seo-article-head .lead { color: var(--dim); font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.7; }
.seo-article-head .lead strong { color: var(--text); }

.seo-hero { padding: 38px 0 28px; position: relative; }
.seo-hero-grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 40px; align-items: start; }
.seo-platform-badge { display: inline-flex; align-items: center; gap: 12px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-2); font-weight: 700; font-size: 13.5px; margin-bottom: 18px; }
.seo-platform-badge img { width: 28px; height: 28px; }
.seo-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.1; }
.seo-hero .lead { font-size: clamp(1rem, 1.3vw, 1.1rem); max-width: 620px; }
.seo-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 18px; }
.seo-hero-trust { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12.5px; color: var(--dim); }
.seo-hero-trust span { font-weight: 600; }

.seo-hero-card { padding: 22px; border-radius: 18px; background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid var(--line-2); box-shadow: 0 16px 40px -22px rgba(0,0,0,0.7); }
.seo-hero-card-head { margin-bottom: 14px; }
.seo-hero-card-head h3 { font-size: 17px; margin: 6px 0 6px; }
.seo-hero-card-head p { color: var(--dim); font-size: 13px; }
.seo-hero-card-list { list-style: none; display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0; }
.seo-hero-card-list a { display: flex; justify-content: space-between; align-items: center; padding: 11px 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 11px; font-size: 13.5px; color: var(--text); transition: border-color 0.2s, transform 0.2s, background 0.2s; }
.seo-hero-card-list a:hover { border-color: rgba(139,92,246,0.5); background: rgba(139,92,246,0.06); transform: translateX(2px); }
.seo-hero-card-list a b { color: var(--brand-2); font-family: var(--mono); font-weight: 800; font-size: 13px; }
.seo-hero-card-list .pkg-tag { font-size: 9.5px; padding: 2px 7px; border-radius: 999px; background: var(--grad); color: #fff; font-style: normal; margin-left: 6px; letter-spacing: 0.03em; }
.seo-hero-card-foot { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); font-size: 11.5px; color: var(--faint); text-align: center; }

/* SEO long-form article: stacked, left-aligned, clear hierarchy.
   Each section gets its own padded card-ish block. */
.seo-article { padding: 28px 22px 60px; max-width: 880px; margin: 0 auto; }
.seo-section { padding: 26px 0 6px; text-align: left; }
.seo-section + .seo-section { border-top: 1px solid var(--line); margin-top: 4px; }
.seo-section h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: 0 0 14px; letter-spacing: -0.015em; line-height: 1.25; text-align: left; }
.seo-section p { color: var(--dim); font-size: 15px; line-height: 1.75; margin: 0 0 14px; text-align: left; max-width: 78ch; }
.seo-section p a { color: var(--brand-2); font-weight: 600; }
.seo-section p a:hover { text-decoration: underline; }
.seo-section strong, .seo-section b { color: var(--text); }
.seo-section em { color: var(--dim); font-style: italic; }
.seo-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin: 0 0 16px; }
.seo-list li { position: relative; padding-left: 22px; color: var(--dim); font-size: 14.5px; line-height: 1.65; max-width: 78ch; }
.seo-list li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.seo-list li a { color: var(--brand-2); font-weight: 700; }
.seo-list li a:hover { text-decoration: underline; }
/* FAQ inside seo-article should also stay left-aligned */
.seo-section .faq-list { max-width: none; }
.seo-section .faq-item { background: rgba(255,255,255,0.025); }
.seo-section .related-grid { margin-top: 4px; }

/* Detail-based FAQ (no JS needed) */
.faq-item.open-able summary { list-style: none; cursor: pointer; user-select: none; }
.faq-item.open-able summary::-webkit-details-marker { display: none; }
.faq-item.open-able[open] { border-color: var(--brand); }
.faq-item.open-able[open] .faq-q .ic { transform: rotate(45deg); }
.faq-item.open-able .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open-able[open] .faq-a { max-height: 600px; padding-bottom: 4px; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.related-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); transition: border-color 0.2s, transform 0.2s, box-shadow 0.25s; }
.related-card:hover { border-color: rgba(139,92,246,0.5); transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(139,92,246,0.4); }
.related-card h3 { font-size: 15px; margin-bottom: 2px; }
.related-card p { font-size: 12.5px; color: var(--dim); margin: 0; }
.related-card .ar { margin-left: auto; color: var(--brand-2); font-weight: 800; }

/* Blog */
.blog-index-hero { padding: 48px 0 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.blog-card { display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: 18px; background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid var(--line-2); color: var(--text); transition: transform 0.2s, border-color 0.25s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-3px); border-color: rgba(139,92,246,0.5); box-shadow: 0 22px 50px -28px rgba(139,92,246,0.55); }
.blog-card-date { font-size: 11px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; }
.blog-card h2 { font-size: 17px; line-height: 1.3; letter-spacing: -0.015em; }
.blog-card p { color: var(--dim); font-size: 13.5px; line-height: 1.6; flex: 1; }
.blog-card-cta { color: var(--brand-2); font-weight: 700; font-size: 13px; margin-top: 6px; }

.blog-article { max-width: 760px; padding: 36px 22px 80px; }
.blog-article-head { margin-bottom: 28px; }
.blog-article-head h1 { font-size: clamp(1.9rem, 3.2vw, 2.4rem); margin: 14px 0 14px; letter-spacing: -0.025em; line-height: 1.15; }
.blog-article-meta { font-size: 12.5px; color: var(--faint); font-family: var(--mono); display: flex; gap: 8px; flex-wrap: wrap; }
.blog-article-body p { color: var(--dim); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.blog-article-body h2 { font-size: 1.4rem; margin: 32px 0 14px; letter-spacing: -0.015em; }
.blog-article-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.blog-article-body ul, .blog-article-body ol { padding-left: 22px; margin-bottom: 16px; color: var(--dim); font-size: 16px; line-height: 1.75; }
.blog-article-body li { margin-bottom: 8px; }
.blog-article-body a { color: var(--brand-2); font-weight: 600; }
.blog-article-body a:hover { text-decoration: underline; }
.blog-article-body strong { color: var(--text); }
.blog-article-foot { margin-top: 40px; padding: 28px; border-radius: 18px; background: linear-gradient(160deg, rgba(139,92,246,0.12), rgba(34,211,238,0.06)); border: 1px solid rgba(139,92,246,0.3); text-align: center; }
.blog-article-foot h3 { font-size: 19px; margin-bottom: 8px; }
.blog-article-foot p { color: var(--dim); margin-bottom: 16px; }

@media (max-width: 760px) {
  .seo-hero-grid { grid-template-columns: 1fr; }
  .seo-article, .blog-article { padding: 24px 18px 60px; }
}

/* Users table */
.users-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.users-tbl { width: 100%; border-collapse: collapse; min-width: 900px; font-size: 13px; }
.users-tbl th, .users-tbl td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.users-tbl th { font-size: 11px; font-weight: 800; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; background: var(--surface-2); position: sticky; top: 0; }
.users-tbl tr:last-child td { border-bottom: none; }
.users-tbl tr:hover td { background: rgba(139,92,246,0.04); }
.users-tbl code { background: var(--surface-2); padding: 2px 7px; border-radius: 5px; font-family: var(--mono); font-size: 11.5px; color: #fff; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--surface-2); backdrop-filter: blur(12px); border: 1px solid var(--line-2); color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 200; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Real logos ---------- */
.pf-logo { object-fit: contain; display: block; }
.pf-abbr { font-weight: 800; }

/* ---------- Custom dropdown ---------- */
.dd { position: relative; }
.dd-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--bg-2); color: var(--text); font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color 0.2s; }
.dd-btn:hover, .dd.open .dd-btn { border-color: var(--brand); }
.dd-label { display: flex; align-items: center; gap: 9px; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.dd-caret { color: var(--dim); transition: transform 0.2s; flex-shrink: 0; }
.dd.open .dd-caret { transform: rotate(180deg); }
.dd-menu { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #11111c; border: 1px solid var(--line-2); border-radius: 12px; padding: 6px; box-shadow: var(--shadow-lg); z-index: 40; max-height: 300px; overflow: auto; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 0.16s, transform 0.16s; }
.dd.open .dd-menu { opacity: 1; transform: none; pointer-events: auto; }
.dd-opt { width: 100%; text-align: left; display: flex; align-items: center; gap: 9px; padding: 10px 11px; border: none; background: none; color: var(--dim); font-family: var(--sans); font-size: 13.5px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.dd-opt:hover { background: var(--surface); color: var(--text); }
.dd-opt.sel { background: rgba(139, 92, 246, 0.16); color: #fff; }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.logo-strip a { display: inline-flex; align-items: center; gap: 9px; color: var(--faint); font-weight: 700; font-size: 13px; transition: color 0.2s, transform 0.2s; }
.logo-strip a img { height: 22px; width: auto; opacity: 0.65; transition: opacity 0.2s; }
.logo-strip a:hover { color: var(--text); transform: translateY(-2px); }
.logo-strip a:hover img { opacity: 1; }

/* ---------- Quick-order platform tiles (logo version) ---------- */
.qo-pf .pf-logo { width: 22px; height: 22px; }
.qo-pf.sel { background: rgba(139, 92, 246, 0.14) !important; border-color: var(--brand) !important; }

/* ---------- Services page (grouped by platform) ---------- */
.svc-group { margin-bottom: 46px; }
.svc-group-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.svc-group-head .gico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line-2); }
.svc-group-head h3 { font-size: 1.45rem; }
.svc-group-head .gcount { font-size: 12px; color: var(--faint); font-family: var(--mono); margin-left: auto; }
.svc-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.svc-filter { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--dim); font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.18s; }
.svc-filter:hover { color: var(--text); border-color: var(--line-2); }
.svc-filter.active { color: #fff; border-color: var(--brand); background: rgba(139, 92, 246, 0.14); }
.svc-filter img { width: 17px; height: 17px; }
.svc-card .ico { background: var(--surface) !important; border: 1px solid var(--line-2); }

/* ---------- Tooltip ---------- */
.tip { position: relative; cursor: help; color: var(--faint); font-size: 12px; margin-left: 5px; }
.tip::after { content: attr(data-tip); position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px); background: #11111c; border: 1px solid var(--line-2); color: var(--text); font-size: 11px; font-weight: 600; padding: 6px 9px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.16s, transform 0.16s; box-shadow: var(--shadow-lg); z-index: 60; }
.tip:hover { color: var(--brand); }
.tip:hover::after { opacity: 1; transform: translateX(-50%); }

/* ---------- Charts (admin analytics) ---------- */
.chart { display: flex; align-items: flex-end; gap: 6px; height: 150px; }
.chart .bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.chart .bar { width: 100%; max-width: 26px; border-radius: 6px 6px 0 0; background: var(--grad); min-height: 3px; position: relative; transition: height 0.7s cubic-bezier(.2,.8,.2,1), filter 0.15s; cursor: default; }
.chart .bar:hover { filter: brightness(1.25); }
.chart .bar[data-tip]:hover::after { content: attr(data-tip); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: #11111c; border: 1px solid var(--line-2); color: var(--text); font-size: 11px; font-weight: 700; padding: 5px 8px; border-radius: 7px; white-space: nowrap; box-shadow: var(--shadow-lg); z-index: 60; }
.chart .bar-lbl { font-size: 9px; color: var(--faint); font-family: var(--mono); }
.top-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.top-row:last-child { border-bottom: none; }
.top-row .tname { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; min-width: 190px; }
.top-row .tbar { flex: 1; height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.top-row .tbar i { display: block; height: 100%; background: var(--grad); border-radius: 999px; transition: width 0.7s cubic-bezier(.2,.8,.2,1); }
.top-row .tval { font-size: 12.5px; font-weight: 700; color: var(--dim); font-family: var(--mono); min-width: 78px; text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-rating { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); padding: 20px 22px; border-bottom: 1px solid var(--line); gap: 14px; margin-left: 0; }
  .nav-links.open a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .order-grid { grid-template-columns: 1fr; }
  .order-form { position: static; }
  .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: repeat(4, 1fr); }
  .pblock, .pblock.rev { grid-template-columns: 1fr; direction: ltr; }
  .freemoney { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { border-right: none; border-bottom: 1px solid var(--line); }
  .admin-nav { flex-direction: row; flex-wrap: wrap; }
  .admin-nav button { width: auto; }
}
@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .coins { grid-template-columns: 1fr; }
  .pblock-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   3D feature cards — fanned at rest, breathing rock, pop-forward
   on hover with a shine sweep. Plain transforms, max compat.
   ============================================================ */
.tilt-grid { gap: 24px; perspective: 1400px; }
.tilt { position: relative; display: block; isolation: isolate; }

/* Reset the generic .card styling so the inner tilt surface is the only card */
.card.tilt {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.card.tilt:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.tilt .tilt-inner {
  position: relative; padding: 36px 32px 34px; min-height: 270px;
  background: #13131e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  box-shadow: 0 14px 36px -22px rgba(0,0,0,0.85),
              inset 0 1px 0 rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  transform-origin: center center;
  overflow: hidden;
  display: flex; flex-direction: column;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.5s ease,
              border-color 0.5s ease,
              background 0.5s ease;
}

/* Each card sits fanned at its own resting angle and gently floats up/down.
   Base transform is set inline so it shows even if animations are disabled. */
.tilt-grid > .tilt:nth-child(1) .tilt-inner {
  transform: rotateX(4deg) rotateY(11deg);
  animation: float-left 7s ease-in-out infinite;
}
.tilt-grid > .tilt:nth-child(2) .tilt-inner {
  transform: rotateX(4deg) rotateY(0deg);
  animation: float-center 7s ease-in-out infinite -2.3s;
}
.tilt-grid > .tilt:nth-child(3) .tilt-inner {
  transform: rotateX(4deg) rotateY(-11deg);
  animation: float-right 7s ease-in-out infinite -4.6s;
}

@keyframes float-left {
  0%, 100% { transform: rotateX(4deg) rotateY(11deg)  translateY(0)    translateZ(0); }
  50%      { transform: rotateX(5deg) rotateY(10deg)  translateY(-12px) translateZ(6px); }
}
@keyframes float-center {
  0%, 100% { transform: rotateX(4deg) rotateY(0deg)   translateY(0)    translateZ(0); }
  50%      { transform: rotateX(5deg) rotateY(-1deg)  translateY(-12px) translateZ(6px); }
}
@keyframes float-right {
  0%, 100% { transform: rotateX(4deg) rotateY(-11deg) translateY(0)    translateZ(0); }
  50%      { transform: rotateX(5deg) rotateY(-10deg) translateY(-12px) translateZ(6px); }
}

/* HOVER — pop forward toward viewer, face flat, glow */
.tilt:hover .tilt-inner {
  animation: none;
  transform: rotateX(0deg) rotateY(0deg) translateZ(70px) scale(1.04);
  background: #181828;
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 40px 80px -28px rgba(139,92,246,0.55),
              0 12px 30px -14px rgba(34,211,238,0.25),
              inset 0 1px 0 rgba(255,255,255,0.14);
  z-index: 2;
}

/* Gradient stroke that fades in on hover (border-only, no interior bleed) */
.tilt .tilt-inner::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 50%, #f472b6 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.45s ease;
  pointer-events: none;
}
.tilt:hover .tilt-inner::after { opacity: 1; }

/* Diagonal SHINE — sweeps from top-left to bottom-right on hover */
.tilt .tilt-inner::before {
  content: ""; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(135deg,
    transparent 42%,
    rgba(255,255,255,0.30) 50%,
    transparent 58%);
  transform: translate(-50%, -50%);
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.tilt:hover .tilt-inner::before {
  transform: translate(50%, 50%);
  opacity: 1;
}

/* Accent bar */
.tilt-bar {
  position: absolute; left: 0; top: 30px; bottom: 30px; width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #8b5cf6, #22d3ee);
  transform: scaleY(0.3); transform-origin: center;
  opacity: 0; transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.tilt:hover .tilt-bar { opacity: 1; transform: scaleY(1); }

/* Number badge — parallax in z */
.tilt-num {
  position: absolute; top: 22px; right: 28px;
  font-family: var(--mono); font-weight: 800; letter-spacing: -0.04em;
  font-size: 56px; line-height: 1;
  color: rgba(255,255,255,0.13);
  transform: translateZ(40px);
  transition: color 0.4s ease;
}
.tilt:hover .tilt-num {
  color: transparent;
  background: linear-gradient(120deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icon tile — sits forward of the surface, lifts further on hover */
.tilt-ico {
  font-size: 28px; margin-bottom: 18px;
  display: inline-grid; place-items: center;
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(140deg, #8b5cf6, #6366f1);
  box-shadow: 0 14px 32px -14px rgba(139,92,246,0.7), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateZ(50px);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.tilt:hover .tilt-ico {
  transform: translateZ(80px) rotate(-8deg) scale(1.05);
  box-shadow: 0 22px 50px -16px rgba(139,92,246,0.95), inset 0 1px 0 rgba(255,255,255,0.32);
}
.tilt-ico img { display: block; }

.tilt h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.015em; transform: translateZ(30px); }
.tilt p  { color: var(--dim); font-size: 14px; line-height: 1.6; transform: translateZ(20px); }

.tilt-shine { display: none; }

/* Channel-icon tints (support page) */
.ti-discord { background: linear-gradient(140deg, #5865F2, #4338ca) !important; box-shadow: 0 14px 32px -14px rgba(88,101,242,0.75) !important; }
.ti-refund  { background: linear-gradient(140deg, #fbbf24, #f97316) !important; box-shadow: 0 14px 32px -14px rgba(251,191,36,0.6) !important; }
.ti-status  { background: linear-gradient(140deg, #34d399, #10b981) !important; box-shadow: 0 14px 32px -14px rgba(52,211,153,0.6) !important; }

@media (prefers-reduced-motion: reduce) {
  .tilt .tilt-inner { animation: none; }
}

/* ============================================================
   Platform-themed icon tints (for service cards, dashboard rows, etc.)
   ============================================================ */
.pf-ico { background: var(--surface) !important; border: 1px solid var(--line-2); }
.pf-ico[data-pf="instagram"] { background: linear-gradient(135deg, rgba(225,48,108,0.18), rgba(245,166,35,0.12)) !important; border-color: rgba(225,48,108,0.35); }
.pf-ico[data-pf="tiktok"]    { background: linear-gradient(135deg, rgba(37,244,238,0.16), rgba(255,255,255,0.06)) !important; border-color: rgba(37,244,238,0.35); }
.pf-ico[data-pf="youtube"]   { background: linear-gradient(135deg, rgba(255,0,0,0.18), rgba(255,255,255,0.05)) !important; border-color: rgba(255,0,0,0.35); }
.pf-ico[data-pf="discord"]   { background: linear-gradient(135deg, rgba(88,101,242,0.20), rgba(255,255,255,0.04)) !important; border-color: rgba(88,101,242,0.4); }
.pf-ico[data-pf="twitch"]    { background: linear-gradient(135deg, rgba(145,70,255,0.22), rgba(255,255,255,0.05)) !important; border-color: rgba(145,70,255,0.4); }
.pf-ico[data-pf="twitter"]   { background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(29,155,240,0.10)) !important; border-color: rgba(255,255,255,0.25); }
.pf-ico[data-pf="snapchat"]  { background: linear-gradient(135deg, rgba(255,252,0,0.18), rgba(255,255,255,0.04)) !important; border-color: rgba(255,252,0,0.4); }
.pf-ico[data-pf="gunslol"]   { background: linear-gradient(135deg, rgba(167,139,250,0.22), rgba(244,114,182,0.12)) !important; border-color: rgba(167,139,250,0.4); }

/* ============================================================
   Services page polish
   ============================================================ */
.svc-card { color: var(--text); position: relative; }
.svc-card h3 { color: var(--text); }
.svc-card .desc { color: var(--dim); }
.svc-card .foot { color: var(--text); }
.svc-card .price b { color: var(--text); }
.svc-card .ico img { width: 22px; height: 22px; }
.svc-card:hover { border-color: rgba(139,92,246,0.45); box-shadow: 0 22px 60px -28px rgba(139,92,246,0.45); }
.svc-group-head { gap: 14px; }
.svc-group-head .gico[data-pf="instagram"] { box-shadow: 0 0 0 1px rgba(225,48,108,0.45), 0 8px 24px -10px rgba(225,48,108,0.5); }
.svc-group-head .gico[data-pf="tiktok"]    { box-shadow: 0 0 0 1px rgba(37,244,238,0.45), 0 8px 24px -10px rgba(37,244,238,0.4); }
.svc-group-head .gico[data-pf="youtube"]   { box-shadow: 0 0 0 1px rgba(255,0,0,0.45), 0 8px 24px -10px rgba(255,0,0,0.4); }
.svc-group-head .gico[data-pf="discord"]   { box-shadow: 0 0 0 1px rgba(88,101,242,0.5), 0 8px 24px -10px rgba(88,101,242,0.5); }
.svc-group-head .gico[data-pf="twitch"]    { box-shadow: 0 0 0 1px rgba(145,70,255,0.55), 0 8px 24px -10px rgba(145,70,255,0.55); }
.svc-group-head .gico[data-pf="twitter"]   { box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 8px 24px -10px rgba(255,255,255,0.18); }
.svc-group-head .gico[data-pf="snapchat"]  { box-shadow: 0 0 0 1px rgba(255,252,0,0.55), 0 8px 24px -10px rgba(255,252,0,0.45); }
.svc-group-head .gico[data-pf="gunslol"]   { box-shadow: 0 0 0 1px rgba(167,139,250,0.55), 0 8px 24px -10px rgba(167,139,250,0.55); }
.svc-filter { color: var(--dim); }
.svc-filter:hover { color: var(--text); }
.svc-filter.active { color: #fff; border-color: var(--brand); background: rgba(139, 92, 246, 0.18); box-shadow: 0 6px 18px -10px rgba(139,92,246,0.7); }

/* ============================================================
   Auth v2 — centered, large card, animated 3D background icons
   ============================================================ */
.auth-body { overflow-x: hidden; }
.auth-stage-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ab-orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.5; mix-blend-mode: screen; }
.ab-1 { width: 580px; height: 580px; background: radial-gradient(circle, #8b5cf6, transparent 70%); top: -150px; left: -150px; animation: orbDrift 22s ease-in-out infinite; }
.ab-2 { width: 520px; height: 520px; background: radial-gradient(circle, #22d3ee, transparent 70%); top: 30%; right: -160px; animation: orbDrift 22s ease-in-out infinite -8s; }
.ab-3 { width: 460px; height: 460px; background: radial-gradient(circle, #f472b6, transparent 70%); bottom: -180px; left: 28%; animation: orbDrift 22s ease-in-out infinite -16s; }

.ab-floats { position: absolute; inset: 0; }
.ab-float { position: absolute; opacity: 0.10; filter: drop-shadow(0 14px 30px rgba(139,92,246,0.35)); animation: floatRot 18s ease-in-out infinite; will-change: transform; }
.ab-float.f1 { width: 80px; height: 80px; top: 15%; left: 8%; animation-delay: 0s; }
.ab-float.f2 { width: 64px; height: 64px; top: 70%; left: 12%; animation-delay: -3s; }
.ab-float.f3 { width: 72px; height: 72px; top: 22%; right: 10%; animation-delay: -5s; }
.ab-float.f4 { width: 92px; height: 92px; top: 64%; right: 8%; animation-delay: -7s; }
.ab-float.f5 { width: 68px; height: 68px; top: 8%; right: 38%; animation-delay: -9s; }
.ab-float.f6 { width: 56px; height: 56px; bottom: 10%; left: 42%; animation-delay: -11s; }
.ab-float.f7 { width: 60px; height: 60px; top: 46%; left: 4%; animation-delay: -13s; }
@keyframes floatRot {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); }
  50%     { transform: translate3d(20px,-30px,0) rotate(8deg); }
}

.auth-wrap-v2 {
  min-height: calc(100vh - 68px);
  display: grid; place-items: center;
  padding: 60px 22px 80px;
}
.auth-card-v2 {
  width: 100%; max-width: 480px;
  border-radius: 26px;
  background: linear-gradient(170deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,1), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  position: relative;
}
.auth-card-v2::before {
  content: ""; position: absolute; inset: 0; border-radius: 26px; padding: 1.5px;
  background: linear-gradient(130deg, rgba(139,92,246,0.85), rgba(34,211,238,0.5), rgba(244,114,182,0.5), rgba(139,92,246,0.85));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: borderFlow 10s linear infinite; pointer-events: none;
}
.auth-card-inner { padding: 44px 38px 36px; position: relative; z-index: 1; }
.auth-mark { display: flex; justify-content: center; margin-bottom: 22px; }
.auth-mark .brand-mark { width: 64px; height: 64px; border-radius: 18px; font-size: 30px; box-shadow: 0 16px 36px -10px rgba(139,92,246,0.7), inset 0 1px 0 rgba(255,255,255,0.25); }
.auth-card-inner h1 { font-size: clamp(1.7rem, 3vw, 2.1rem); text-align: center; margin-bottom: 10px; }
.auth-sub { text-align: center; color: var(--dim); font-size: 14px; margin-bottom: 26px; }

/* Stable, never-overlap field layout */
.field-v2 { margin-bottom: 18px; }
.field-v2 label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--dim); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.field-v2 .lbl-hint { font-weight: 600; color: var(--faint); text-transform: none; letter-spacing: 0; }
.field-v2 .field-input { position: relative; }
.field-v2 input {
  width: 100%; padding: 14px 16px 14px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  color: var(--text); font-size: 14.5px; font-family: var(--sans);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  caret-color: var(--brand);
}
.field-v2 .field-input input[type="password"],
.field-v2 .field-input input[type="text"] { padding-right: 78px; }
.field-v2 input::placeholder { color: var(--faint); }
.field-v2 input:focus { outline: none; border-color: var(--brand); background: rgba(139,92,246,0.06); box-shadow: 0 0 0 4px rgba(139,92,246,0.18); }
.field-v2 .eye {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: rgba(139,92,246,0.16);
  border: 1px solid rgba(139,92,246,0.45);
  cursor: pointer;
  color: var(--brand-ink); font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
}
.field-v2 .eye:hover { color: #fff; background: rgba(139,92,246,0.3); border-color: var(--brand); transform: translateY(-50%) scale(1.05); }
.field-v2 .eye.on { color: #fff; background: rgba(34,211,238,0.25); border-color: var(--brand-2); }
.field-v2 .hint { margin-top: 8px; font-size: 11.5px; color: var(--faint); }

.pwd-meter { height: 4px; border-radius: 999px; background: rgba(255,255,255,0.07); margin-top: 12px; overflow: hidden; }
.pwd-meter i { display: block; width: 0%; height: 100%; background: var(--danger); transition: width 0.3s, background 0.3s; border-radius: inherit; }
.pwd-meter i[data-level="ok"] { background: var(--warn); }
.pwd-meter i[data-level="strong"] { background: var(--success); }

.auth-alt { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--dim); }
.auth-alt a { color: var(--brand-2); font-weight: 700; }
.btn.loading { opacity: 0.7; cursor: wait; }

/* ============================================================
   Support page
   ============================================================ */
.support-hero { padding: 56px 0 24px; }
.support-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.support-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.support-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 18px; }
.support-stats div { display: flex; flex-direction: column; }
.support-stats b { font-size: 22px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.support-stats span { font-size: 11.5px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; }

.orb-stage { position: relative; height: 380px; perspective: 1100px; display: grid; place-items: center; }
.orb { position: absolute; width: 130px; height: 130px; border-radius: 32px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  --rx: 0deg; --ry: 0deg;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s;
  animation: orbFloat 7s ease-in-out infinite;
}
.orb-discord { background: linear-gradient(140deg, #5865F2 0%, #404eed 100%); box-shadow: 0 28px 70px -18px rgba(88,101,242,0.7); left: 12%; top: 14%; animation-delay: 0s; width: 150px; height: 150px; }
.orb-ticket  { background: linear-gradient(140deg, rgba(34,211,238,0.85), rgba(139,92,246,0.6)); right: 14%; top: 22%; animation-delay: -2s; }
.orb-shield  { background: linear-gradient(140deg, rgba(52,211,153,0.85), rgba(34,211,238,0.5)); left: 28%; bottom: 14%; animation-delay: -4s; width: 110px; height: 110px; }
.orb:hover { box-shadow: 0 40px 100px -20px rgba(139,92,246,0.7); }
@keyframes orbFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -16px; }
}
.orb-ring, .orb-ring.r2 { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.08); animation: spin 28s linear infinite; }
.orb-ring { width: 320px; height: 320px; }
.orb-ring.r2 { width: 220px; height: 220px; border-style: dotted; animation-direction: reverse; animation-duration: 18s; }
@keyframes spin { to { transform: rotate(360deg); } }

.discord-card {
  --rx: 0deg; --ry: 0deg;
  position: relative; border-radius: 28px; padding: 0; overflow: hidden;
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 55%, #4338ca 100%);
  box-shadow: 0 36px 90px -30px rgba(88,101,242,0.7);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1);
}
.discord-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px circle at var(--mx,50%) var(--my,30%), rgba(255,255,255,0.18), transparent 50%); pointer-events: none; }
.dc-inner { display: grid; grid-template-columns: auto 1fr; gap: 28px; padding: 38px 40px; align-items: center; position: relative; z-index: 1; }
.dc-icon {
  width: 110px; height: 110px; border-radius: 30px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 18px 40px -14px rgba(0,0,0,0.4);
  animation: orbFloat 5s ease-in-out infinite;
}
.dc-body h2 { color: #fff; margin: 6px 0 10px; }
.dc-body .eyebrow { color: #fff; opacity: 0.8; }
.dc-body p { color: rgba(255,255,255,0.85); margin-bottom: 18px; max-width: 480px; font-size: 14.5px; }
.dc-body .btn-primary { background: #fff; color: #4338ca; box-shadow: 0 10px 26px -10px rgba(255,255,255,0.6); }
.dc-body .btn-primary:hover { background: #f5f4ff; transform: translateY(-2px); }

/* ============================================================
   Dashboard v2
   ============================================================ */
.dash-shell { padding: 38px 22px 60px; }
.dash-hero { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.dash-hero h1 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 8px 0 6px; }
.dash-hero-right { display: flex; gap: 10px; flex-wrap: wrap; }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.kpi {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.kpi:hover { transform: translateY(-2px); border-color: rgba(139,92,246,0.4); box-shadow: 0 16px 40px -22px rgba(139,92,246,0.45); }
.kpi-ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-size: 20px; background: var(--grad); box-shadow: 0 12px 28px -12px rgba(139,92,246,0.6);
}
.kpi-k { font-size: 11px; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.kpi-v { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }

.dash-tab-bar { margin-bottom: 22px; }
.dash-tabs { display: inline-flex; gap: 4px; padding: 5px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; flex-wrap: wrap; }
.dash-tab { background: none; border: none; color: var(--dim); font-family: var(--sans); font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: 10px; cursor: pointer; transition: all 0.18s; }
.dash-tab:hover { color: var(--text); background: var(--surface-2); }
.dash-tab.active { color: #fff; background: var(--grad); box-shadow: 0 8px 22px -10px rgba(139,92,246,0.6); }

.dash-panel { display: none; }
.dash-panel.active { display: block; }

.dash-toolbar { display: flex; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; align-items: center; }
.dash-search { flex: 1; min-width: 260px; position: relative; }
.dash-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--faint); }
.dash-search input { width: 100%; padding: 13px 16px 13px 42px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 14px; color: var(--text); font-size: 14px; font-family: var(--sans); }
.dash-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(139,92,246,0.15); }
.dash-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-chip { background: var(--surface); border: 1px solid var(--line); color: var(--dim); font-family: var(--sans); font-weight: 700; font-size: 12.5px; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all 0.16s; }
.dash-chip:hover { color: var(--text); border-color: var(--line-2); }
.dash-chip.active { color: #fff; background: rgba(139,92,246,0.18); border-color: var(--brand); box-shadow: 0 6px 16px -8px rgba(139,92,246,0.6); }

.order-card { padding: 22px 24px; border-radius: 18px; transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s; }
.order-card:hover { transform: translateY(-2px); border-color: rgba(139,92,246,0.4); box-shadow: 0 18px 50px -24px rgba(139,92,246,0.4); }
.oc-status { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.sp-expired { background: rgba(255,255,255,0.06); color: var(--dim); border: 1px solid var(--line-2); }
.sp-refund-pending { background: rgba(251,191,36,0.14); color: var(--warn); border: 1px solid rgba(251,191,36,0.3); }
.sp-refund-approved { background: rgba(52,211,153,0.14); color: var(--success); border: 1px solid rgba(52,211,153,0.3); }
.sp-refund-denied { background: rgba(248,113,113,0.14); color: var(--danger); border: 1px solid rgba(248,113,113,0.3); }

/* ============================================================
   Invoice / receipt
   ============================================================ */
.receipt { max-width: 720px; margin: 0 auto; }
.receipt-paper {
  background: #fff;
  color: #1a1a2a;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
  font-family: var(--sans);
}
.receipt-paper h3 { color: #1a1a2a; font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #6a6d83; margin-bottom: 10px; border-bottom: 1px solid #e7e7ee; padding-bottom: 8px; }
.receipt-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; padding-bottom: 24px; border-bottom: 2px solid #1a1a2a; margin-bottom: 24px; }
.receipt-brand { display: flex; align-items: center; gap: 14px; }
.receipt-brand .brand-mark { width: 44px; height: 44px; border-radius: 12px; font-size: 22px; box-shadow: none; }
.receipt-brand-name { font-size: 20px; font-weight: 800; color: #1a1a2a; }
.receipt-brand-tag { font-size: 12.5px; color: #6a6d83; }
.receipt-meta { text-align: right; }
.rcpt-mlabel { font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #6a6d83; }
.rcpt-mval { font-size: 14px; font-weight: 700; color: #1a1a2a; font-family: var(--mono); }

.receipt-status-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding: 12px 14px; background: #f3f3f8; border-radius: 10px; }
.rcpt-status-text { color: #1a1a2a; font-size: 13.5px; flex: 1; }
.receipt-status-row .status-pill { background: #1a1a2a !important; color: #fff !important; border-color: transparent !important; }

.receipt-section { margin-bottom: 22px; }
.rcpt-row { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 13.5px; color: #1a1a2a; gap: 14px; }
.rcpt-row + .rcpt-row { border-top: 1px dashed #e7e7ee; }
.rcpt-row > span { color: #6a6d83; }
.rcpt-row > b { font-weight: 700; text-align: right; }

.receipt-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; margin: 26px 0 22px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1); color: #fff;
  border-radius: 14px;
}
.receipt-total span { font-size: 14px; font-weight: 600; opacity: 0.9; }
.receipt-total b { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; font-family: var(--sans); }

.receipt-foot { font-size: 11px; color: #8a8da3; line-height: 1.6; text-align: center; border-top: 1px solid #e7e7ee; padding-top: 14px; }

.receipt-actions { display: flex; gap: 10px; justify-content: center; margin: 22px 0 0; }

/* Print styles: hide the chrome, keep just the receipt paper at full width */
@media print {
  body { background: #fff !important; color: #1a1a2a !important; }
  .bg-glow, .bg-grid, .nav, .footer, [data-no-print] { display: none !important; }
  .section, .wrap, .invoice-wrap { padding: 0 !important; max-width: none !important; }
  .receipt-paper { box-shadow: none !important; border-radius: 0 !important; padding: 0 !important; }
  .receipt-total { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .receipt-status-row { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* Refund-decision reply note, visible to both customer and admin */
.refund-reply { margin-top: 14px; padding: 14px 16px; border-radius: 12px; border: 1px solid; }
.refund-reply.ok  { background: rgba(52,211,153,0.08);  border-color: rgba(52,211,153,0.35); }
.refund-reply.bad { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.35); }
.refund-reply.neutral { background: var(--surface); border-color: var(--line-2); }
.refund-reply .rr-head { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.refund-reply .rr-body { white-space: pre-wrap; color: var(--text); font-size: 13.5px; line-height: 1.6; }

.support-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-mini {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  padding: 22px; border-radius: 18px;
  background: linear-gradient(140deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line-2);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
}
.support-mini:hover { transform: translateY(-3px); border-color: rgba(139,92,246,0.5); box-shadow: 0 24px 60px -28px rgba(139,92,246,0.5); }
.support-mini .sm-ico { width: 58px; height: 58px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; font-size: 24px; box-shadow: 0 14px 30px -12px rgba(139,92,246,0.55); }
.support-mini .sm-ico img { display: block; }
.support-mini h3 { font-size: 16px; margin-bottom: 4px; }
.support-mini p { color: var(--dim); font-size: 13px; }
.support-mini .sm-arrow { font-size: 20px; color: var(--brand-2); transition: transform 0.2s; }
.support-mini:hover .sm-arrow { transform: translateX(4px); }

/* Refund modal */
.modal-back { position: fixed; inset: 0; background: rgba(6,6,13,0.75); backdrop-filter: blur(8px); display: grid; place-items: center; z-index: 200; padding: 20px; animation: fadeIn 0.18s ease; }
.modal-back[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card { width: 100%; max-width: 480px; padding: 28px; background: linear-gradient(170deg, rgba(20,20,32,0.96), rgba(10,10,20,0.94)); border: 1px solid var(--line-2); border-radius: 22px; box-shadow: 0 40px 100px -20px rgba(0,0,0,1); }
.modal-card h3 { font-size: 21px; margin-bottom: 6px; }
.modal-card .sub { color: var(--dim); font-size: 13px; margin-bottom: 20px; word-break: break-all; }
.modal-card .field { margin-bottom: 14px; }
.modal-card .field label { display: block; font-size: 11.5px; color: var(--dim); margin-bottom: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.modal-card select, .modal-card textarea { width: 100%; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px; color: var(--text); font-size: 14px; font-family: var(--sans); resize: vertical; }
.modal-card select:focus, .modal-card textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(139,92,246,0.16); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* Responsive add-ons */
@media (max-width: 900px) {
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .support-mini-grid { grid-template-columns: 1fr; }
  .support-hero-grid { grid-template-columns: 1fr; }
  .orb-stage { height: 320px; }
  .dc-inner { grid-template-columns: 1fr; text-align: center; }
  .dc-icon { margin: 0 auto; }
  .auth-card-inner { padding: 36px 24px 30px; }
  .pf-tile-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .svc-card-grid { grid-template-columns: 1fr !important; }
  .dash-hero { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Support page — discord card + orb fixes
   ============================================================ */
.discord-card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 30%;
  position: relative; border-radius: 28px; padding: 0; overflow: hidden;
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 55%, #4338ca 100%);
  box-shadow: 0 36px 90px -30px rgba(88,101,242,0.7);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
}
.discord-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px circle at var(--mx) var(--my), rgba(255,255,255,0.2), transparent 55%); pointer-events: none; }
.dc-inner { display: grid; grid-template-columns: auto 1fr; gap: 30px; padding: 44px 44px; align-items: center; position: relative; z-index: 1; }
.dc-icon {
  width: 120px; height: 120px; border-radius: 32px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 22px 50px -16px rgba(0,0,0,0.45);
  animation: floatBob 5s ease-in-out infinite;
}
.dc-icon img { display: block; }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.dc-body h2 { color: #fff; margin: 6px 0 12px; }
.dc-body .eyebrow { color: rgba(255,255,255,0.85); }
.dc-body p { color: rgba(255,255,255,0.88); margin-bottom: 22px; max-width: 500px; font-size: 14.5px; line-height: 1.6; }
.gradient-text-light { background: linear-gradient(110deg, #ffffff, #c4b5fd 50%, #ffffff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.btn-white { background: #ffffff !important; color: #4338ca !important; box-shadow: 0 14px 32px -12px rgba(255,255,255,0.6) !important; }
.btn-white:hover { background: #f5f4ff !important; transform: translateY(-2px); }

.dc-bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dc-bubbles span { position: absolute; bottom: -40px; border-radius: 50%; background: rgba(255,255,255,0.08); animation: bubbleRise 9s linear infinite; }
.dc-bubbles span:nth-child(1) { width: 80px; height: 80px; left: 20%; animation-delay: 0s; }
.dc-bubbles span:nth-child(2) { width: 50px; height: 50px; left: 60%; animation-delay: -3s; }
.dc-bubbles span:nth-child(3) { width: 110px; height: 110px; left: 82%; animation-delay: -6s; }
@keyframes bubbleRise { from { transform: translateY(0) scale(1); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } to { transform: translateY(-380px) scale(0.6); opacity: 0; } }

.orb-stage { position: relative; height: 420px; display: grid; place-items: center; perspective: 1200px; }
.orb { --rx:0deg; --ry:0deg;
  position: absolute; width: 130px; height: 130px; border-radius: 32px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  animation: floatBob 6.5s ease-in-out infinite;
}
.orb img, .orb svg { transform: translateZ(20px); display: block; }
.orb-discord { background: linear-gradient(140deg, #5865F2 0%, #4338ca 100%); box-shadow: 0 28px 70px -18px rgba(88,101,242,0.7); left: 14%; top: 12%; width: 150px; height: 150px; animation-delay: 0s; }
.orb-ticket  { background: linear-gradient(140deg, rgba(34,211,238,0.9), rgba(139,92,246,0.65)); right: 14%; top: 24%; animation-delay: -2s; }
.orb-shield  { background: linear-gradient(140deg, rgba(52,211,153,0.9), rgba(16,185,129,0.55)); left: 30%; bottom: 12%; width: 115px; height: 115px; animation-delay: -4s; }
.orb-ring, .orb-ring.r2 { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.08); animation: spin 28s linear infinite; pointer-events: none; }
.orb-ring { width: 360px; height: 360px; }
.orb-ring.r2 { width: 240px; height: 240px; border-style: dotted; animation-direction: reverse; animation-duration: 18s; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Services page — single viewport, text on top, BIG platform tiles below
   ============================================================ */
.svc-page {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 0 40px;
  overflow: hidden;
}
.svc-page-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.svc-page-bg .hb-orb { pointer-events: none; }
.svc-page-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 28px;
  width: 100%;
}
.svc-page-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.svc-page-head h1 {
  font-family: "Space Grotesk", var(--sans);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.03em; line-height: 1.05;
  max-width: 720px;
}
.svc-page-head .lead { font-size: 1rem; max-width: 560px; }
.svc-page-content { min-width: 0; width: 100%; }

.svc-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.svc-filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--dim); font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: all 0.18s;
}
.svc-filter:hover { color: var(--text); border-color: var(--line-2); }
.svc-filter.active { color: #fff; border-color: var(--brand); background: rgba(139,92,246,0.2); box-shadow: 0 8px 22px -10px rgba(139,92,246,0.7); }
.svc-filter img { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .svc-page { min-height: 0; padding: 30px 0 40px; }
  .svc-page-inner { gap: 22px; }
}

/* BIG platform tiles for "All" view — 4×2 grid */
.pf-tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pf-tile-big {
  position: relative; padding: 26px 22px 22px; border-radius: 22px; cursor: pointer;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line-2); color: var(--text); text-align: left; font-family: var(--sans);
  display: flex; flex-direction: column; gap: 16px; overflow: hidden;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), border-color 0.25s, box-shadow 0.3s;
}
.pf-tile-glow { position: absolute; inset: -1px; border-radius: 22px; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.pf-tile-big[data-pf="instagram"] .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(225,48,108,0.35), transparent 60%); }
.pf-tile-big[data-pf="tiktok"]    .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(37,244,238,0.3), transparent 60%); }
.pf-tile-big[data-pf="youtube"]   .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(255,0,0,0.32), transparent 60%); }
.pf-tile-big[data-pf="discord"]   .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(88,101,242,0.42), transparent 60%); }
.pf-tile-big[data-pf="twitch"]    .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(145,70,255,0.42), transparent 60%); }
.pf-tile-big[data-pf="twitter"]   .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(255,255,255,0.18), transparent 60%); }
.pf-tile-big[data-pf="snapchat"]  .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(255,252,0,0.32), transparent 60%); }
.pf-tile-big[data-pf="gunslol"]   .pf-tile-glow { background: radial-gradient(420px circle at 50% 0%, rgba(167,139,250,0.45), transparent 60%); }
.pf-tile-big:hover { transform: translateY(-4px); border-color: rgba(139,92,246,0.5); box-shadow: 0 28px 70px -28px rgba(139,92,246,0.55); }
.pf-tile-big:hover .pf-tile-glow { opacity: 1; }
.pf-tile-ico { width: 80px; height: 80px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--line-2); }
.pf-tile-ico img { width: 48px; height: 48px; }
.pf-tile-meta h3 { font-size: 20px; margin-bottom: 4px; letter-spacing: -0.02em; }
.pf-tile-meta p { color: var(--faint); font-size: 12.5px; font-family: var(--mono); }
.pf-tile-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.pf-tile-foot .from { color: var(--dim); font-size: 12.5px; }
.pf-tile-foot .from b { color: var(--text); font-size: 16px; font-weight: 800; }
.pf-tile-foot .arrow { color: var(--brand-2); font-size: 19px; transition: transform 0.2s; }
.pf-tile-big:hover .pf-tile-foot .arrow { transform: translateX(5px); }

/* Service group banner + cards (platform filtered view) */
.svc-group { margin-bottom: 0; }
.svc-group-banner {
  position: relative; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: 18px; margin-bottom: 16px;
  background: linear-gradient(140deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2); overflow: hidden;
}
.sgb-glow { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; }
.svc-group-banner[data-pf="instagram"] .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(225,48,108,0.32), transparent 60%); }
.svc-group-banner[data-pf="tiktok"]    .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(37,244,238,0.28), transparent 60%); }
.svc-group-banner[data-pf="youtube"]   .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(255,0,0,0.28), transparent 60%); }
.svc-group-banner[data-pf="discord"]   .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(88,101,242,0.38), transparent 60%); }
.svc-group-banner[data-pf="twitch"]    .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(145,70,255,0.38), transparent 60%); }
.svc-group-banner[data-pf="twitter"]   .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(255,255,255,0.16), transparent 60%); }
.svc-group-banner[data-pf="snapchat"]  .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(255,252,0,0.3), transparent 60%); }
.svc-group-banner[data-pf="gunslol"]   .sgb-glow { background: radial-gradient(500px circle at 0% 50%, rgba(167,139,250,0.4), transparent 60%); }
.sgb-left { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.sgb-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.sgb-left h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-top: 2px; letter-spacing: -0.02em; }
.sgb-right { position: relative; z-index: 1; text-align: right; }
.sgb-count { font-size: clamp(2rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.04em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; display: block; }
.sgb-count-lbl { font-size: 11px; color: var(--faint); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }

.svc-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.svc-card-big {
  position: relative; padding: 20px; border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2); color: var(--text);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), border-color 0.25s, box-shadow 0.3s;
}
.svc-card-big:hover { transform: translateY(-3px); border-color: rgba(139,92,246,0.45); box-shadow: 0 24px 60px -28px rgba(139,92,246,0.55); }
.svc-card-head { display: flex; justify-content: space-between; align-items: flex-start; }
.svc-card-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; }
.svc-card-ico img { width: 26px; height: 26px; }
.svc-tag { font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--grad); color: #fff; box-shadow: 0 6px 16px -6px rgba(139,92,246,0.7); }
.svc-card-big h3 { font-size: 17px; letter-spacing: -0.015em; }
.svc-blurb { color: var(--dim); font-size: 13.5px; flex: 1; }
.svc-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 11.5px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.02em; }
.svc-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.svc-from-lbl { font-size: 11px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.svc-from-amt { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.svc-stock { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; align-self: flex-start; font-family: var(--mono); letter-spacing: 0.02em; }
.svc-stock.live { background: rgba(52,211,153,0.12); color: var(--success); border: 1px solid rgba(52,211,153,0.3); }
.svc-stock.live i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 var(--success); animation: stockBlink 1.6s infinite; }
.svc-stock.out { background: rgba(248,113,113,0.12); color: var(--danger); border: 1px solid rgba(248,113,113,0.35); }
@keyframes stockBlink { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.45); } 70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.svc-card-big.is-oos { opacity: 0.55; filter: grayscale(0.4); cursor: not-allowed; }
.svc-card-big.is-oos:hover { transform: none; box-shadow: none; }
.svc-cta { font-size: 12.5px; font-weight: 700; color: var(--brand-2); display: inline-flex; align-items: center; gap: 6px; }
.svc-cta .ar { transition: transform 0.2s; }
.svc-card-big:hover .svc-cta .ar { transform: translateX(4px); }

@media (max-width: 720px) {
  .pf-tile-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-card-grid { grid-template-columns: 1fr; }
  .svc-group-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sgb-right { text-align: left; }
}

