/* ============================================================
   DROPSY · LANDING (cinematic + premium SaaS)
   Self-contained. Twitch-violet primary · Kick-green = "live".
   Display: Clash-ish via Space Grotesk fallback? -> Use
   "Sora" (display) + "Plus Jakarta Sans" (body) + IBM Plex Mono.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg:        #08080c;
  --bg-2:      #0c0c12;
  --surface-1: #121119;
  --surface-2: #17161f;
  --surface-3: #201f2b;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.13);

  --text-1: #f5f4f8;
  --text-2: #a09fb0;
  --text-3: #67667a;

  --primary:      #9146ff;
  --primary-600:  #7b2cff;
  --primary-300:  #c2a8ff;
  --primary-soft: rgba(145,70,255,0.14);
  --primary-line: rgba(145,70,255,0.35);

  --kick:       #53fc18;
  --kick-soft:  rgba(83,252,24,0.12);
  --kick-line:  rgba(83,252,24,0.32);

  --blue: #5b8bff;

  --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-ui: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text-1);
  min-height: 100dvh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--primary-soft); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--surface-3) transparent; }
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: var(--r-pill); }

/* ---------- atmospheric background ---------- */
.scene { position: fixed; inset: 0; z-index: -2; pointer-events: none; background: var(--bg); }
.scene::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 38% at 50% -6%, rgba(145,70,255,0.22), transparent 70%),
    radial-gradient(40% 30% at 84% 8%, rgba(91,139,255,0.10), transparent 70%),
    radial-gradient(46% 34% at 10% 22%, rgba(83,252,24,0.06), transparent 70%);
}
/* grid texture */
.scene::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.aurora {
  position: fixed; inset: -30%; z-index: -1; pointer-events: none;
  filter: blur(90px); opacity: .6;
  background:
    radial-gradient(26% 30% at 30% 32%, rgba(145,70,255,0.55), transparent 60%),
    radial-gradient(24% 26% at 70% 60%, rgba(123,44,255,0.42), transparent 62%),
    radial-gradient(18% 20% at 58% 20%, rgba(83,252,24,0.12), transparent 60%);
  animation: aurora 22s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate(0,0) rotate(0) scale(1); }
  100% { transform: translate(3%,-4%) rotate(12deg) scale(1.15); }
}
#stars { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .55; }
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- shell ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px,5vw,40px); }

/* ---------- nav ---------- */
nav.top {
  position: sticky; top: 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px clamp(20px,5vw,40px);
  background: rgba(8,8,12,0.55); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
nav.top.scrolled { border-bottom-color: var(--border); background: rgba(8,8,12,0.8); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 11px; overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--primary), var(--primary-600));
  box-shadow: 0 6px 20px -6px var(--primary);
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.mark-img { width: 100%; height: 100%; object-fit: contain; }
/* SVG mascot logo is self-contained — drop the gradient tile behind it */
.brand .mark:has(.mark-img) { background: transparent; box-shadow: none; border-radius: 0; overflow: visible; }
.brand .mark:has(.mark-img) .mark-img { transform: scale(1.2); filter: drop-shadow(0 6px 14px rgba(145,70,255,0.55)); }
.brand .logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.lnk { font-size: 14px; color: var(--text-2); font-weight: 500; transition: color .15s; position: relative; }
.nav-links a.lnk::after { content:""; position:absolute; left:0; bottom:-5px; height:1.5px; width:0; background: var(--primary-300); transition: width .22s; }
.nav-links a.lnk:hover { color: var(--text-1); }
.nav-links a.lnk:hover::after { width: 100%; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 14.5px; cursor: pointer;
  border: 1px solid transparent; padding: 11px 20px; border-radius: var(--r-md);
  color: #fff; background: var(--primary); display: inline-flex; align-items: center; gap: 9px;
  transition: transform .14s, box-shadow .2s, background .2s; white-space: nowrap;
}
.btn:hover { background: var(--primary-600); box-shadow: 0 12px 30px -10px var(--primary); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 16px; }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text-1); border-color: var(--border-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); box-shadow: none; transform: translateY(-1px); }
/* shine sweep */
/* auth-aware nav user menu */
.usermenu { position: relative; }
.usermenu-btn { display: inline-flex; align-items: center; gap: 9px; padding: 6px 12px 6px 6px; border-radius: 999px;
  background: var(--surface-1, rgba(255,255,255,0.04)); border: 1px solid var(--border, rgba(255,255,255,0.1));
  color: var(--text-1); cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; transition: border-color .15s, background .15s; }
.usermenu-btn:hover { border-color: var(--primary-line); background: var(--primary-soft); }
.usermenu-btn img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; background: var(--surface-3, #201f2b); }
.um-caret { width: 15px; height: 15px; opacity: .7; transition: transform .2s; }
.usermenu.open .um-caret { transform: rotate(180deg); }
.usermenu-pop { position: absolute; right: 0; top: calc(100% + 10px); min-width: 220px; padding: 7px;
  background: var(--surface-1, #17161f); border: 1px solid var(--border-2, rgba(255,255,255,0.13)); border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7); opacity: 0; transform: translateY(-6px) scale(.98);
  pointer-events: none; transition: opacity .16s, transform .16s; z-index: 80; }
.usermenu.open .usermenu-pop { opacity: 1; transform: none; pointer-events: auto; }
.um-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 11px 12px; border-radius: 9px;
  background: none; border: none; color: var(--text-1); font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; text-align: left; transition: background .14s; }
.um-item svg { width: 17px; height: 17px; opacity: .8; }
.um-item:hover { background: var(--primary-soft); }
.um-danger { color: #ff6b6b; } .um-danger:hover { background: rgba(255,107,107,0.1); }

.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content:""; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.btn-shine:hover::after { left: 130%; }

/* ---------- reveal util ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .aurora, .brand .mark, #stars { animation: none !important; }
}

/* ---------- pill / eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  padding: 7px 14px 7px 8px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-2); color: var(--text-2);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--kick); box-shadow: 0 0 10px var(--kick); animation: blink 2.2s infinite; }
.eyebrow b { color: var(--text-1); font-weight: 600; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(60px,10vh,110px) 0 clamp(40px,7vh,80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,64px); align-items: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 6vw, 70px); line-height: 1.02; letter-spacing: -0.035em;
  margin: 22px 0 20px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--primary-300) 10%, var(--blue) 55%, var(--kick) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { color: var(--text-2); font-size: clamp(16px,1.5vw,19px); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.trust .avis { display: flex; }
.trust .avis span {
  width: 32px; height: 32px; border-radius: 50%; margin-left: -9px;
  border: 2px solid var(--bg); background: linear-gradient(135deg,var(--surface-3),var(--primary-600));
  display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff;
}
.trust .avis span:first-child { margin-left: 0; }
.trust small { color: var(--text-2); font-size: 13px; }
.trust small b { color: var(--text-1); }

/* ---- hero mockup (live dashboard preview) ---- */
.mock {
  position: relative; border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--surface-1), var(--bg-2));
  border: 1px solid var(--border-2);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 16px; transform: perspective(1400px) rotateY(-9deg) rotateX(4deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.mock:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.mock::before {
  content:""; position:absolute; inset:-1px; border-radius: var(--r-xl); padding:1px; pointer-events:none;
  background: linear-gradient(150deg, var(--primary-line), transparent 40%, transparent 62%, var(--kick-line));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 4px 6px 12px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); }
.mock-bar i:nth-child(1){ background:#ff5f57;} .mock-bar i:nth-child(2){ background:#febc2e;} .mock-bar i:nth-child(3){ background:#28c840;}
.mock-bar .url { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); background: var(--bg); padding: 4px 12px; border-radius: 7px; border: 1px solid var(--border); }
.mock-body { background: var(--bg); border-radius: 16px; border: 1px solid var(--border); padding: 16px; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 12px; }
.mst { background: var(--surface-1); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.mst .n { font-family: var(--font-mono); font-size: 21px; font-weight: 600; }
.mst .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.mst .n.kick { color: var(--kick); }
.mrow { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 10px; background: var(--surface-1); border: 1px solid var(--border); }
.mrow + .mrow { margin-top: 7px; }
.mrow .av { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg,var(--surface-3),var(--primary-600)); flex-shrink: 0; }
.mrow .nm { font-size: 12.5px; font-weight: 600; flex: 1; }
.mrow .plat { font-family: var(--font-mono); font-size: 9px; letter-spacing:.05em; text-transform: uppercase; padding: 3px 7px; border-radius: 6px; color: var(--primary-300); background: var(--primary-soft); border: 1px solid var(--primary-line); }
.mrow .plat.k { color: var(--kick); background: var(--kick-soft); border-color: var(--kick-line); }
.mrow .st { font-family: var(--font-mono); font-size: 9.5px; padding: 3px 9px; border-radius: 999px; background: var(--kick-soft); color: var(--kick); display: inline-flex; align-items: center; gap: 5px; }
.mrow .st i { width: 5px; height: 5px; border-radius: 50%; background: var(--kick); box-shadow: 0 0 6px var(--kick); animation: blink 1.8s infinite; }
.mbar { height: 7px; border-radius: 999px; background: var(--surface-3); overflow: hidden; margin-top: 12px; }
.mbar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg,var(--primary),var(--kick)); animation: fill 3s ease-in-out infinite alternate; }
@keyframes fill { from { width: 32%; } to { width: 88%; } }

/* floating chips around mockup */
.float-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px;
  padding: 10px 13px; border-radius: 13px; font-size: 12.5px; font-weight: 600;
  background: rgba(18,17,25,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border-2); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.8);
  animation: bob 5s ease-in-out infinite;
}
.float-chip .ic { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; }
.float-chip.fc1 { top: 6%; left: -7%; }
.float-chip.fc2 { bottom: 9%; right: -6%; animation-delay: 1.3s; }
.float-chip .ic.v { background: var(--primary-soft); border: 1px solid var(--primary-line); }
.float-chip .ic.k { background: var(--kick-soft); border: 1px solid var(--kick-line); }
.float-chip small { display: block; color: var(--text-3); font-weight: 500; font-size: 10.5px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* logo strip */
.logos { padding: 30px 0 8px; }
.logos .lbl { text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }
.logos .row { display: flex; justify-content: center; align-items: center; gap: clamp(26px,5vw,60px); flex-wrap: wrap; opacity: .75; }
.logos .row b { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-2); letter-spacing: -0.02em; }
.plat-row { opacity: 1 !important; gap: 20px !important; }
.plat-chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
  border: 1px solid transparent; transition: transform .18s, box-shadow .18s; }
.plat-chip svg { width: 24px; height: 24px; }
.plat-chip:hover { transform: translateY(-3px); }
.plat-chip.twitch { color: #c2a8ff; background: rgba(145,70,255,0.12); border-color: rgba(145,70,255,0.34); }
.plat-chip.twitch:hover { box-shadow: 0 16px 34px -16px rgba(145,70,255,0.7); }
.plat-chip.kick { color: #53fc18; background: rgba(83,252,24,0.1); border-color: rgba(83,252,24,0.32); }
.plat-chip.kick:hover { box-shadow: 0 16px 34px -16px rgba(83,252,24,0.6); }

/* terms */
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.terms-card { background: linear-gradient(165deg, var(--surface-1), var(--bg-2)); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px; transition: transform .22s, border-color .22s; }
.terms-card:hover { transform: translateY(-3px); border-color: var(--primary-line); }
.terms-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 10px; }
.terms-card p { color: var(--text-2); font-size: 14px; line-height: 1.65; }
.terms-card a { color: var(--primary-300); text-decoration: underline; }
@media (max-width: 960px) { .terms-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section.block { padding: clamp(64px,10vh,110px) 0; position: relative; }
.sec-head { max-width: 660px; margin: 0 auto clamp(40px,6vh,64px); text-align: center; }
.sec-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-300); }
.sec-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px,4vw,44px); letter-spacing: -0.03em; margin: 12px 0 14px; line-height: 1.08; }
.sec-head p { color: var(--text-2); font-size: 17px; }

/* ---------- features bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.feat {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--surface-1), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.feat:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: 0 26px 50px -26px rgba(0,0,0,0.7); }
.feat::after { content:""; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, var(--primary-line), transparent); opacity:0; transition: opacity .25s; }
.feat:hover::after { opacity: 1; }
.feat.lg { grid-column: span 3; } .feat.sm { grid-column: span 2; } .feat.wide { grid-column: span 3; }
.feat .fi { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: var(--primary-soft); border: 1px solid var(--primary-line); }
.feat .fi svg { width: 23px; height: 23px; stroke: var(--primary-300); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat .fi.k { background: var(--kick-soft); border-color: var(--kick-line); }
.feat .fi.k svg { stroke: var(--kick); }
.feat h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.feat p { color: var(--text-2); font-size: 14.5px; }
.feat .glow { position: absolute; right: -40px; bottom: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, var(--primary-soft), transparent 70%); filter: blur(10px); opacity: .6; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; }
.steps::before { content:""; position:absolute; top: 38px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-line), var(--kick-line), transparent); }
.step { position: relative; text-align: center; padding: 0 14px; }
.step .num {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 22px; position: relative;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 26px;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--border-2);
  color: var(--primary-300); box-shadow: 0 16px 36px -18px rgba(0,0,0,0.8);
}
.step .num::after { content:""; position:absolute; inset:-1px; border-radius: 22px; padding:1px;
  background: linear-gradient(150deg, var(--primary-line), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.step p { color: var(--text-2); font-size: 14.5px; max-width: 280px; margin: 0 auto; }

/* ---------- stats band ---------- */
.statband {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  padding: clamp(30px,4vw,46px); border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(145,70,255,0.08), rgba(83,252,24,0.03));
  border: 1px solid var(--border-2); position: relative; overflow: hidden;
}
.statband::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 100% at 50% 0%, var(--primary-soft), transparent 70%); }
.sb { text-align: center; position: relative; }
.sb .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4.5vw,48px); letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff, var(--primary-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sb .l { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); margin-top: 6px; }

/* ---------- pricing ---------- */
.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
.prices.prices-3 { grid-template-columns: repeat(3, 1fr); max-width: 1140px; align-items: stretch; }
.prices.prices-3 .price { display: flex; flex-direction: column; padding: 28px; }
.prices.prices-3 .price ul { flex: 1; }
/* Pro Max tier */
.price.promax { border-color: var(--kick, #53fc18); box-shadow: 0 30px 70px -34px rgba(83,252,24,0.55); }
.price.promax::before { content:""; position:absolute; inset:-1px; border-radius: var(--r-xl); padding:1px; pointer-events:none;
  background: linear-gradient(150deg, #53fc18, transparent 45%, transparent 60%, var(--primary));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:.7; }
.price .tag.tag-max { background: rgba(83,252,24,0.12); color: #53fc18; border-color: rgba(83,252,24,0.34); }
.btn-max { background: linear-gradient(120deg, #53fc18, #2fd406); color: #06210a; }
.price {
  position: relative; background: linear-gradient(165deg, var(--surface-1), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px;
  transition: transform .25s, border-color .25s;
}
.price:hover { transform: translateY(-4px); }
.price.pro { border-color: var(--primary-line); box-shadow: 0 30px 70px -34px var(--primary); }
.price.pro::before { content:""; position:absolute; inset:-1px; border-radius: var(--r-xl); padding:1px; pointer-events:none;
  background: linear-gradient(150deg, var(--primary), transparent 45%, transparent 60%, var(--kick));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:.7; }
.price .tier { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.price .tier h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.price .tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--primary-soft); color: var(--primary-300); border: 1px solid var(--primary-line); }
.price .cost { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 6px; }
.price .cost .amt { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.03em; }
.price .cost .per { color: var(--text-3); font-size: 14px; }
.price .desc { color: var(--text-2); font-size: 14px; margin-bottom: 22px; }
.price ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.price li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-1); }
.price li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.price li.off { color: var(--text-3); } .price li.off svg { opacity: .4; }
.price .btn { width: 100%; justify-content: center; }

/* ---------- longer-plan offers ---------- */
.offers-head { text-align: center; margin: 60px auto 30px; max-width: 640px; }
.offers-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--kick, #53fc18); padding: 6px 14px; border-radius: 999px;
  background: rgba(83,252,24,0.08); border: 1px solid rgba(83,252,24,0.22);
}
.offers-eyebrow svg { width: 13px; height: 13px; }
.offers-head h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,4vw,40px); letter-spacing: -0.03em; margin: 16px 0 8px; }
.offers-head p { color: var(--text-2); font-size: 15.5px; }
.offers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1160px; margin: 0 auto; align-items: stretch; }

.offer {
  position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: stretch;
  padding: 26px 22px 24px; border-radius: var(--r-xl); isolation: isolate;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(145,70,255,0.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  border: 1px solid var(--border-2);
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s, border-color .2s;
}
.offer.max { background:
    radial-gradient(120% 80% at 100% 0%, rgba(83,252,24,0.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008)); }
.offer.pro { border-color: var(--primary-line); }
.offer.max { border-color: rgba(83,252,24,0.28); }
.offer:hover { transform: translateY(-6px); }
.offer.pro:hover { box-shadow: 0 30px 70px -34px var(--primary); border-color: var(--primary); }
.offer.max:hover { box-shadow: 0 30px 70px -34px rgba(83,252,24,0.55); border-color: rgba(83,252,24,0.6); }

/* animated gradient border on the featured 1-year cards */
.offer.offer-hot { transform: translateY(-8px); }
.offer.offer-hot:hover { transform: translateY(-13px); }
.offer.offer-hot::before {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1.4px; pointer-events:none; z-index:0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  background-size: 200% 200%; animation: offer-border 5s linear infinite;
}
.offer.pro.offer-hot::before { background-image: linear-gradient(120deg, var(--primary), rgba(145,70,255,0.1), var(--primary)); }
.offer.max.offer-hot::before { background-image: linear-gradient(120deg, #53fc18, rgba(83,252,24,0.1), #53fc18); }
@keyframes offer-border { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }

/* shine sweep on hover */
.offer::after {
  content:""; position:absolute; top:0; left:-60%; width:45%; height:100%; z-index:1; pointer-events:none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: skewX(-18deg); transition: left .55s ease;
}
.offer:hover::after { left: 130%; }
.offer > * { position: relative; z-index: 2; }

/* ribbon tab hanging from the top edge (stays inside the clipped card) */
.offer.offer-hot { padding-top: 40px; }
.offer-ribbon {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding: 5px 16px; border-radius: 0 0 12px 12px; white-space: nowrap;
  background: var(--primary); color: #fff; box-shadow: 0 8px 18px -8px var(--primary);
}
.offer-ribbon.max { background: #53fc18; color: #06210a; box-shadow: 0 8px 18px -8px rgba(83,252,24,0.9); }

/* big corner discount */
.offer-cut {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
  padding: 5px 11px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary-300); border: 1px solid var(--primary-line);
}
.offer-cut.max { background: rgba(83,252,24,0.12); color: #6dff3c; border-color: rgba(83,252,24,0.32); }

.offer-head { margin-bottom: 18px; }
.offer-plan { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.offer-plan.max { color: #53fc18; }
.offer-dur { display: block; color: var(--text-3); font-size: 13px; margin-top: 2px; }

.offer-price { display: flex; align-items: baseline; gap: 10px; }
.offer-price b { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.03em; line-height: 1; }
.offer.pro.offer-hot .offer-price b { color: var(--primary-300); text-shadow: 0 0 30px rgba(145,70,255,0.5); }
.offer.max.offer-hot .offer-price b { color: #6dff3c; text-shadow: 0 0 30px rgba(83,252,24,0.45); }
.offer-was { color: var(--text-3); font-size: 15px; text-decoration: line-through; }

.offer-meta { display: flex; flex-direction: column; gap: 2px; margin: 12px 0 22px; }
.offer-save {
  align-self: flex-start; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary-300); border: 1px solid var(--primary-line);
}
.offer-save.max { background: rgba(83,252,24,0.1); color: #6dff3c; border-color: rgba(83,252,24,0.3); }
.offer-permo { color: var(--text-3); font-size: 12.5px; margin-top: 6px; }
.offer .btn { width: 100%; justify-content: center; margin-top: auto; }

@media (max-width: 900px) { .offers { grid-template-columns: repeat(2, 1fr); } .offer.offer-hot, .offer.offer-hot:hover { transform: none; } }
@media (max-width: 520px) { .offers { grid-template-columns: 1fr; } }

/* ---------- join community band ---------- */
.join-band {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  justify-content: space-between; padding: clamp(26px,4vw,44px);
  border-radius: var(--r-xl); border: 1px solid var(--border-2);
  background: linear-gradient(150deg, rgba(88,101,242,0.14), rgba(145,70,255,0.06));
}
.join-copy { position: relative; z-index: 1; max-width: 560px; }
.join-copy .sec-tag { margin-bottom: 12px; }
.join-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,3.6vw,36px); letter-spacing: -0.03em; margin-bottom: 10px; }
.join-copy p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; }
.join-cta {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none; padding: 14px 24px; border-radius: var(--r-lg, 14px);
  font-family: var(--font-ui); font-weight: 700; font-size: 15.5px; color: #fff;
  background: #5865F2; border: 1px solid #5865F2;
  box-shadow: 0 18px 40px -16px rgba(88,101,242,0.95); transition: transform .16s, background .16s;
}
.join-cta:hover { transform: translateY(-3px); background: #4752c4; }
.join-cta svg { width: 24px; height: 24px; }
@media (max-width: 640px) { .join-cta { width: 100%; justify-content: center; } }

/* ---------- final CTA ---------- */
.cta-final { text-align: center; position: relative; padding: clamp(60px,9vh,100px) 0; }
.cta-final .panel {
  position: relative; overflow: hidden; max-width: 900px; margin: 0 auto;
  padding: clamp(40px,6vw,72px) 28px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(145,70,255,0.14), rgba(83,252,24,0.04));
  border: 1px solid var(--border-2);
}
.cta-final .panel::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 50% 0%, var(--primary-soft), transparent 70%); }
.cta-final h2 { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,5vw,52px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
.cta-final p { position: relative; color: var(--text-2); font-size: 18px; max-width: 480px; margin: 0 auto 30px; }
.cta-final .btn { position: relative; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; align-items: start; gap: 40px; }
.foot-brand { max-width: 300px; }
.foot-brand p { color: var(--text-2); font-size: 14px; margin-top: 14px; line-height: 1.6; }
.foot-cols { display: contents; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text-2); font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--text-1); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.foot-bot small { color: var(--text-3); font-size: 13px; }
.foot-bot .mono { font-family: var(--font-mono); }

/* ============================================================
   AUTH / LOGIN
   ============================================================ */
.auth-shell {
  min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 80px 22px 40px; position: relative; z-index: 1;
}
.auth-stack > * { opacity: 0; transform: translateY(22px) scale(.985); animation: auth-rise .85s cubic-bezier(.2,.7,.2,1) both; }
.auth-stack > :nth-child(1){ animation-delay:.04s; } .auth-stack > :nth-child(2){ animation-delay:.14s; }
.auth-stack > :nth-child(3){ animation-delay:.24s; } .auth-stack > :nth-child(4){ animation-delay:.36s; }
.auth-stack > :nth-child(5){ animation-delay:.46s; }
@keyframes auth-rise { to { opacity: 1; transform: none; } }

.auth-back {
  position: fixed; top: 22px; left: clamp(20px,5vw,40px); z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-2); padding: 9px 15px 9px 12px;
  border-radius: var(--r-pill); border: 1px solid var(--border-2);
  background: rgba(8,8,12,0.5); backdrop-filter: blur(12px); transition: color .15s, border-color .15s, transform .15s;
}
.auth-back:hover { color: var(--text-1); border-color: var(--border-2); transform: translateX(-2px); }
.auth-back svg { width: 16px; height: 16px; }

.auth-mark {
  position: relative; width: 88px; height: 88px; border-radius: 26px; margin: 0 auto;
  display: grid; place-items: center; overflow: visible;
  background: linear-gradient(150deg, var(--primary), var(--primary-600));
  box-shadow: 0 26px 64px -20px var(--primary);
}
.auth-mark img { width: 88px; height: 88px; border-radius: 24px; object-fit: cover; }
.auth-mark svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 2.2; }
.auth-mark::after {
  content: ""; position: absolute; inset: -14px; border-radius: 34px;
  border: 1px solid var(--primary-line); animation: halo 3.4s ease-in-out infinite;
}
@keyframes halo { 0%,100% { transform: scale(1); opacity: .7; } 55% { transform: scale(1.18); opacity: 0; } }

.auth-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,6vw,48px); letter-spacing: -0.035em; margin-top: 24px; }
.auth-tag { color: var(--text-2); max-width: 380px; margin: 10px auto 0; font-size: 15.5px; }

.auth-card {
  position: relative; width: 100%; max-width: 400px; margin: 30px auto 0; text-align: left;
  padding: 28px; border-radius: var(--r-xl);
  background: rgba(18,17,25,0.72); backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 40px 90px -34px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.04);
}
.auth-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-xl); padding: 1px; pointer-events: none;
  background: linear-gradient(150deg, var(--primary-line), transparent 42%, transparent 60%, var(--kick-line));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.auth-card h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.auth-card .ahint { color: var(--text-2); font-size: 14px; margin: 6px 0 20px; }
.auth-divider { height: 1px; background: var(--border); margin: -2px 0 18px; }

.discord-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; cursor: pointer; border: 0;
  padding: 15px 22px; border-radius: var(--r-md); color: #fff; background: #5865F2;
  transition: filter .15s, transform .14s, box-shadow .2s; position: relative; overflow: hidden;
}
.discord-btn::after {
  content:""; position:absolute; top:0; left:-120%; width:55%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.discord-btn:hover { filter: brightness(1.08); box-shadow: 0 14px 34px -12px #5865F2; transform: translateY(-1px); }
.discord-btn:hover::after { left: 130%; }
.discord-btn:active { transform: translateY(0); }
.discord-btn svg { width: 22px; height: 22px; }

.auth-secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 12.5px; color: var(--text-3); }
.auth-secure svg { width: 14px; height: 14px; stroke: var(--kick); fill: none; stroke-width: 1.9; }

.auth-perks { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.auth-perks span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.auth-perks span i { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-300); }
.auth-perks span:nth-child(2) i { background: var(--kick); }
.auth-perks span:nth-child(3) i { background: var(--blue); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .prices.prices-3 { grid-template-columns: 1fr; max-width: 460px; }
  .hero-grid { grid-template-columns: 1fr; }
  .mock { transform: none; margin-top: 10px; } .mock:hover { transform: none; }
  .float-chip { display: none; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .feat.lg, .feat.sm, .feat.wide { grid-column: span 1; }
  .statband { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .nav-links .lnk { display: none; }
  .steps { grid-template-columns: 1fr; } .steps::before { display: none; }
  .prices, .prices.prices-3 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .usermenu .um-name { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .foot-brand { grid-column: 1 / -1; max-width: none; }
}

/* ============================================================
   LEVEL-UP PASS — bring every section up to hero energy
   (hero + pricing intentionally untouched)
   ============================================================ */

/* section headers: tag becomes a glowing pill with side rays */
.sec-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; border-radius: 999px;
  color: var(--primary-300); background: var(--primary-soft);
  border: 1px solid var(--primary-line);
  box-shadow: 0 0 24px -6px rgba(145,70,255,0.45);
}
.sec-tag::before, .sec-tag::after {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-line));
}
.sec-tag::after { background: linear-gradient(90deg, var(--primary-line), transparent); }

/* ── feature cards: glass + pointer spotlight ── */
.feat {
  --mx: 50%; --my: 50%;
  border-radius: 20px;
  background:
    radial-gradient(340px 240px at var(--mx) var(--my), rgba(145,70,255,0.10), transparent 60%),
    linear-gradient(165deg, var(--surface-1), var(--bg-2));
  backdrop-filter: blur(6px);
}
.feat::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background:
    radial-gradient(240px 180px at var(--mx) var(--my), rgba(194,168,255,0.55), transparent 65%),
    linear-gradient(165deg, rgba(255,255,255,0.09), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: .55; transition: opacity .25s;
}
.feat:hover::before { opacity: 1; }
.feat:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -30px rgba(145,70,255,0.35); }
.feat .fi { position: relative; transition: transform .25s ease; box-shadow: 0 10px 26px -12px var(--primary); }
.feat .fi.k { box-shadow: 0 10px 26px -12px var(--kick); }
.feat:hover .fi { transform: translateY(-3px) scale(1.06); }
.feat h3 { font-size: 20px; }

/* ── steps: numbered orbs pulse + animated connector ── */
.steps::before {
  height: 2px; background: linear-gradient(90deg,
    transparent, var(--primary-line) 20%, var(--kick-line) 80%, transparent);
  background-size: 200% 100%; animation: step-flow 4s linear infinite;
}
@keyframes step-flow { to { background-position: -200% 0; } }
.step { padding: 28px 18px 22px; border-radius: 20px; transition: transform .22s ease, background .22s ease; }
.step:hover { transform: translateY(-4px); background: rgba(255,255,255,0.02); }
.step .num { box-shadow: 0 14px 34px -12px var(--primary); }
.step:nth-child(2) .num { animation-delay: .4s; }
.step:nth-child(3) .num { animation-delay: .8s; }

/* ── stat band: gradient numbers + aurora sweep ── */
.statband { border-radius: 26px; overflow: hidden; }
.statband::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(194,168,255,0.07) 48%, transparent 60%);
  background-size: 250% 100%; animation: band-sweep 5.5s ease-in-out infinite;
}
@keyframes band-sweep { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
.sb .n {
  background: linear-gradient(120deg, #fff 30%, var(--primary-300) 70%, var(--primary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sb:nth-child(2) .n {
  background: linear-gradient(120deg, #fff 30%, #a8ffb0 70%, var(--kick));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── terms: cards get corner glow + top accent ── */
.terms-card { position: relative; overflow: hidden; border-radius: 18px; }
.terms-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent 65%); opacity: .5;
  transition: opacity .2s;
}
.terms-card:hover::before { opacity: 1; }
.terms-card::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 150px; height: 150px;
  border-radius: 50%; background: radial-gradient(circle, var(--primary-soft), transparent 70%);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.terms-card:hover::after { opacity: 1; }

/* ── final CTA: gradient ring + floating glow orbs ── */
.cta-final .panel { position: relative; overflow: hidden; border-radius: 30px; }
.cta-final .panel::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--primary-line), transparent 35%, transparent 65%, var(--kick-line));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(30px); pointer-events: none; opacity: .5;
  animation: orb-float 9s ease-in-out infinite alternate;
}
.cta-orb.o1 { width: 220px; height: 220px; left: -60px; bottom: -80px; background: var(--primary); opacity: .22; }
.cta-orb.o2 { width: 180px; height: 180px; right: -50px; top: -70px; background: var(--kick); opacity: .10; animation-delay: 2s; }
@keyframes orb-float { from { transform: translateY(0) scale(1); } to { transform: translateY(-18px) scale(1.12); } }

/* footer polish */
footer { position: relative; }
footer::before {
  content: ""; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-line), transparent);
}
.foot-col a { transition: color .15s, transform .15s; display: block; }
.foot-col a:hover { color: var(--primary-300); transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .steps::before, .statband::after, .cta-orb { animation: none; }
}

/* ============================================================
   ADD-BOT INVITE SECTION
   ============================================================ */
.invite-panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(88,101,242,0.10), transparent 55%), var(--surface-1);
  border: 1px solid var(--border-2);
}
.invite-panel::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(88,101,242,0.5), transparent 35%, transparent 65%, var(--primary-line));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.invite-copy { position: relative; z-index: 1; }
.invite-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.03em; line-height: 1.1; margin: 14px 0 12px; }
.invite-copy h2 .grad { background: linear-gradient(100deg, #8ea1ff, var(--primary-300));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.invite-copy > p { color: var(--text-2); font-size: 15.5px; line-height: 1.65; max-width: 480px; }
.invite-perks { list-style: none; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 9px; }
.invite-perks li { position: relative; padding-inline-start: 26px; font-size: 14px; color: var(--text-2); }
.invite-perks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: #8ea1ff;
  background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.35);
}
.btn-discord {
  background: #5865F2; border: 0;
  box-shadow: 0 14px 34px -12px #5865F2;
}
.btn-discord:hover { background: #6a76f4; box-shadow: 0 18px 40px -12px #5865F2; }
.btn-discord svg { width: 21px; height: 21px; }
.invite-note { display: block; margin-top: 12px; color: var(--text-3); font-size: 12px; }

/* mock discord messages */
.invite-mock { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.dc-msg {
  display: flex; gap: 12px; padding: 16px;
  border-radius: 16px; background: #313338;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7);
  transform: rotate(-1deg);
}
.dc-msg.dc-live { transform: rotate(1.2deg) translateX(14px); }
.dc-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--primary), var(--primary-600));
}
.dc-av.live { background: linear-gradient(150deg, var(--kick), #2fb80a); }
.dc-body { min-width: 0; flex: 1; }
.dc-head { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.dc-head b { font-size: 14px; color: #f2f3f5; }
.dc-tag { font-size: 9.5px; font-weight: 700; padding: 2px 5px; border-radius: 4px; background: #5865F2; color: #fff; }
.dc-head small { font-size: 11px; color: #949ba4; }
.dc-embed {
  border-left: 4px solid var(--primary); border-radius: 6px;
  background: #2b2d31; padding: 12px 14px; font-size: 13px; color: #dbdee1;
}
.dc-embed.green { border-left-color: var(--kick); }
.dc-embed-t { font-weight: 700; font-size: 14px; color: #f2f3f5; }
.dc-embed-g { color: #b5bac1; margin: 4px 0 8px; }
.dc-line { margin-top: 3px; }
.dc-line b { color: #f2f3f5; }
.dc-drops { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.08); line-height: 1.7; color: #b5bac1; }
@media (max-width: 960px) {
  .invite-panel { grid-template-columns: 1fr; }
  .dc-msg, .dc-msg.dc-live { transform: none; }
}
