/* ============================================================
   ARTIFO — Landing page styles
   Palette: deep violet base · violet/blue/green/orange/pink accents
   Type: Saira Condensed (display) + Manrope (body)
   ============================================================ */

:root {
  /* base */
  --bg-900: #0a0514;
  --bg-850: #0f0822;
  --bg-800: #160b2e;
  --bg-700: #1d1140;
  --bg-card: #1a1030;

  /* accents */
  --violet: #8b5cf6;
  --violet-d: #7c3aed;
  --violet-l: #a78bfa;
  --blue: #3b82f6;
  --blue-d: #2563eb;
  --green: #22c55e;
  --green-d: #16a34a;
  --orange: #f97316;
  --orange-d: #ea580c;
  --gold: #fbbf24;
  --pink: #ec4899;
  --magenta: #d946ef;
  --cyan: #22d3ee;

  /* text */
  --tx: #f4f0ff;
  --tx-2: #c3b6e6;
  --tx-3: #8e7fb8;

  /* surfaces */
  --glass: rgba(255, 255, 255, .045);
  --glass-2: rgba(255, 255, 255, .07);
  --stroke: rgba(167, 139, 250, .16);
  --stroke-2: rgba(255, 255, 255, .10);

  /* gradients */
  --grad-primary: linear-gradient(105deg, #7c3aed, #c026d3 55%, #ec4899);
  --grad-text: linear-gradient(100deg, #a78bfa, #e879f9 55%, #f0abfc);
  --grad-pack: linear-gradient(160deg, #3b82f6, #1d4ed8 60%, #1e3a8a);

  --shadow-glow: 0 0 0 1px var(--stroke), 0 24px 60px -20px rgba(124, 58, 237, .55);
  --radius: 18px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg-900);
  color: var(--tx);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* page-wide ambient gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 78% -5%, rgba(124, 58, 237, .35), transparent 60%),
    radial-gradient(900px 600px at 8% 18%, rgba(59, 130, 246, .18), transparent 55%),
    radial-gradient(1000px 800px at 50% 120%, rgba(217, 70, 239, .16), transparent 60%),
    linear-gradient(180deg, #150a2c, #0a0514 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(rgba(167, 139, 250, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 85%);
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px
}

/* ---------- typography helpers ---------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.kicker {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 13px;
  color: var(--violet-l);
  text-transform: uppercase;
  display: inline-block;
}

.kicker::before {
  content: "— ";
  color: var(--pink)
}

.kicker.center {
  display: block;
  text-align: center
}

/* ---------- buttons ---------- */
.btn {
  --b: transparent; 
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 16px;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .3s, filter .3s;
  white-space: nowrap;
  color: #fff;
  background: var(--b);
  background: "black";
}

.btn svg {
  flex: 0 0 auto
}

.btn-sm {
  padding: 9px 15px;
  font-size: 14px;
  border-radius: 11px
}

.btn-lg {
  padding: 16px 28px;
  font-size: 18px
}

.btn-primary {
  background: var(--grad-primary);
  box-shadow: 0 12px 30px -8px rgba(217, 70, 239, .6), 0 0 0 1px rgba(255, 255, 255, .08) inset
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px rgba(217, 70, 239, .85), 0 0 22px rgba(168, 85, 247, .5)
}

.btn-glass {
  background: var(--glass-2);
  border-color: var(--stroke-2);
  backdrop-filter: blur(10px)
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 24px rgba(139, 92, 246, .35)
}

.btn-ghost {
  background: rgba(124, 58, 237, .18);
  border-color: rgba(167, 139, 250, .4)
}

.btn-ghost:hover {
  background: rgba(124, 58, 237, .35);
  box-shadow: 0 0 18px rgba(139, 92, 246, .5)
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent
}

.nav.scrolled {
  background: rgba(12, 6, 26, .72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--stroke)
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(217, 70, 239, .7), 0 0 0 1px rgba(255, 255, 255, .12) inset
}

.brand-word {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .06em
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 8px
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--tx-2);
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width .25s var(--ease);
  border-radius: 2px
}

.nav-links a:hover {
  color: #fff
}

.nav-links a:hover::after {
  width: 100%
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px
}

.nav-help {
  font-weight: 600;
  color: var(--tx-2);
  font-size: 15px
}

.nav-help:hover {
  color: #fff
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 148px 0 40px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .6
}

.orb-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -120px;
  right: -80px;
  animation: float1 14s ease-in-out infinite
}

.orb-b {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
  bottom: -140px;
  left: -100px;
  animation: float2 18s ease-in-out infinite
}

.orb-c {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #d946ef, transparent 70%);
  top: 30%;
  left: 45%;
  opacity: .35;
  animation: float1 20s ease-in-out infinite
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(167, 139, 250, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(167, 139, 250, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse at 60% 40%, #000, transparent 75%)
}

.pitch-arc {
  position: absolute;
  width: 900px;
  height: 900px;
  border: 2px solid rgba(167, 139, 250, .12);
  border-radius: 50%;
  bottom: -620px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 120px rgba(124, 58, 237, .25)
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  width: 100%
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--violet-l);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, .12);
  border: 1px solid var(--stroke)
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green)
}

.hero-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .94;
  letter-spacing: .01em;
  margin: 20px 0 18px;
  text-shadow: 0 4px 40px rgba(124, 58, 237, .4)
}

.hero-sub {
  font-size: 18px;
  color: var(--tx-2);
  max-width: 540px;
  margin-bottom: 30px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-cta.center {
  justify-content: center
}

.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px
}

.trust li {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx-3);
  letter-spacing: .04em;
  position: relative;
  padding-left: 18px;
  text-transform: uppercase;
  font-family: 'Saira Condensed', sans-serif
}

.trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-l);
  box-shadow: 0 0 8px var(--violet)
}

/* hero stage / floating cluster */
.hero-stage {
  position: relative;
  height: 520px;
  perspective: 1400px
}

.tilt {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .25s ease-out
}

.stage-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217, 70, 239, .5), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse 5s ease-in-out infinite
}

.float-chip {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 8px 13px;
  border-radius: 11px;
  background: rgba(20, 12, 40, .82);
  border: 1px solid var(--stroke-2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .6)
}

.chip-1 {
  top: 6%;
  left: -4%;
  animation: bob 5s ease-in-out infinite
}

.chip-2 {
  bottom: 9%;
  right: -2%;
  animation: bob 6s ease-in-out infinite .8s
}

.tier-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%
}

.t-gold {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold)
}

.t-pink {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink)
}

/* collectible card */
.ccard {
  position: absolute;
  width: 212px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #241346, #160b2c);
  border: 1px solid var(--stroke-2);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
  transform-style: preserve-3d
}

.ccard-photo {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(160deg, #3b1d6e, #10081f); */
  overflow: hidden
}

.ccard-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.ccard-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, transparent 40%, rgba(13, 5, 20, .9)) */
}

.ccard-foil {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .22) 47%, rgba(217, 70, 239, .25) 52%, transparent 70%);
  background-size: 250% 250%;
  mix-blend-mode: screen;
  animation: foil 6s linear infinite;
  pointer-events: none
}

.ccard-rim {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1.5px solid rgba(251, 191, 36, .55);
  box-shadow: 0 0 24px rgba(251, 191, 36, .4) inset;
  pointer-events: none
}

.ccard-head {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3
}

.ccard-rating {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: .8;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6)
}

.ccard-pos {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  background: rgba(0, 0, 0, .4);
  padding: 4px 8px;
  border-radius: 7px
}

.ccard-foot {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3
}

.ccard-name {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .03em;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7)
}

.ccard-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px
}

.tier-pill {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 3px 9px;
  border-radius: 7px;
  background: var(--violet-d)
}

.tier-pill.t-gold {
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  color: #3a2400
}

.ccard-club {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--tx-3);
  font-family: 'Saira Condensed', sans-serif
}

.ccard-front {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-3deg);
  z-index: 5;
  animation: bob 7s ease-in-out infinite
}

.ccard-back-l {
  left: 6%;
  top: 30%;
  width: 180px;
  height: 256px;
  transform: rotateZ(-13deg);
  opacity: .92;
  z-index: 3;
  animation: bob 8s ease-in-out infinite .4s
}

.ccard-back-r {
  right: 4%;
  top: 34%;
  width: 180px;
  height: 256px;
  transform: rotateZ(11deg);
  opacity: .92;
  z-index: 3;
  animation: bob 9s ease-in-out infinite .9s
}

/* pack */
.pack {
  position: absolute;
  right: -2%;
  top: 4%;
  width: 208px;
  height: 284px;
  border-radius: 20px;
  background: var(--grad-pack);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 36px 70px -22px rgba(37, 99, 235, .7), 0 0 0 1px rgba(255, 255, 255, .12) inset;
  z-index: 4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* padding: 20px 16px; */
  animation: bob 8s ease-in-out infinite .3s
}

.pack-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .4) 50%, transparent 65%);
  background-size: 250% 250%;
  animation: foil 5s linear infinite;
  mix-blend-mode: screen
}

#first img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#third img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pack img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pack-top {
  text-align: center;
  color: #fff;
  z-index: 2
}

.pack-logo {
  display: block;
  margin: 6px auto 10px;
  opacity: .95
}

.pack-name {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: .1em;
  display: block
}

.pack-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, .8);
  display: block;
  margin-top: 6px;
  font-style: italic
}

.pack-open {
  z-index: 2;
  border: 0;
  cursor: pointer;
  width: 100%;
  padding: 11px;
  border-radius: 11px;
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  color: #3a2400;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  transition: transform .2s
}

.pack-open:hover {
  transform: scale(1.04)
}

.pack-price {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5a3a00
}

.gem {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: #7c3aed;
  transform: rotate(45deg);
  box-shadow: 0 0 8px #a78bfa
}

/* ticker */
.ticker {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--tx-2);
  white-space: nowrap;
  flex-shrink: 0
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.6s infinite
}

.ticker-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 94%, transparent);
}

.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 11px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  font-size: 13px;
  white-space: nowrap
}

.ticker-item b {
  font-weight: 700;
  color: #fff
}

.ti-ic {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 11px;
  background: var(--violet-d)
}

/* ===================== SECTION SHELL ===================== */
.section {
  position: relative;
  padding: 96px 0
}

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px
}

.sec-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: .01em;
  margin: 14px 0 16px
}

.sec-lede {
  font-size: 18px;
  color: var(--tx-2)
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.cap {
  padding: 26px 20px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--stroke);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s
}

.cap:hover {
  transform: translateY(-6px);
  border-color: var(--stroke-2);
  box-shadow: 0 24px 50px -22px rgba(124, 58, 237, .6)
}

.cap-ic {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin-bottom: 16px;
  color: #fff
}

.cap-ic.v {
  background: linear-gradient(150deg, #8b5cf6, #6d28d9)
}

.cap-ic.b {
  background: linear-gradient(150deg, #3b82f6, #1d4ed8)
}

.cap-ic.g {
  background: linear-gradient(150deg, #22c55e, #15803d)
}

.cap-ic.p {
  background: linear-gradient(150deg, #ec4899, #be185d)
}

.cap-ic.o {
  background: linear-gradient(150deg, #f97316, #c2410c)
}

.cap h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 7px;
  letter-spacing: .01em
}

.cap p {
  font-size: 14px;
  color: var(--tx-3)
}

/* ---------- how it works / timeline ---------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(167, 139, 250, .14);
  border-radius: 3px;
  overflow: hidden
}

.tl-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #8b5cf6, #3b82f6 35%, #22c55e 68%, #f97316);
  box-shadow: 0 0 16px rgba(139, 92, 246, .7)
}

.tl-step {
  position: relative;
  width: 50%;
  padding: 0 46px;
  margin-bottom: 54px
}

.tl-step.left {
  left: 0;
  text-align: right
}

.tl-step.right {
  left: 50%
}

.tl-node {
  position: absolute;
  top: 6px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  z-index: 3;
  border: 3px solid var(--bg-900);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, .12)
}

.tl-step.left .tl-node {
  right: -27px
}

.tl-step.right .tl-node {
  left: -27px
}

.tl-node.v {
  background: linear-gradient(150deg, #8b5cf6, #6d28d9);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .18), 0 0 24px rgba(139, 92, 246, .6)
}

.tl-node.b {
  background: linear-gradient(150deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .18), 0 0 24px rgba(59, 130, 246, .6)
}

.tl-node.g {
  background: linear-gradient(150deg, #22c55e, #15803d);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .18), 0 0 24px rgba(34, 197, 94, .6)
}

.tl-node.o {
  background: linear-gradient(150deg, #f97316, #c2410c);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .18), 0 0 24px rgba(249, 115, 22, .6)
}

.tl-card {
  position: relative;
  padding: 24px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(36, 19, 70, .7), rgba(20, 11, 40, .6));
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), box-shadow .3s
}

.tl-step:hover .tl-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(124, 58, 237, .7)
}

.tl-ic {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  margin-bottom: 14px;
  color: #fff
}

.tl-step.left .tl-ic {
  margin-left: auto
}

.tl-ic.v {
  background: rgba(139, 92, 246, .22);
  color: var(--violet-l)
}

.tl-ic.b {
  background: rgba(59, 130, 246, .22);
  color: #93c5fd
}

.tl-ic.g {
  background: rgba(34, 197, 94, .22);
  color: #86efac
}

.tl-ic.o {
  background: rgba(249, 115, 22, .22);
  color: #fdba74
}

.tl-card h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 9px
}

.tl-card p {
  font-size: 15px;
  color: var(--tx-2)
}

.tl-flag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Saira Condensed', sans-serif;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(59, 130, 246, .16);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, .3);
  text-transform: uppercase
}

.tl-flag.o {
  background: rgba(249, 115, 22, .16);
  color: #fdba74;
  border-color: rgba(249, 115, 22, .3)
}

.how-cta {
  text-align: center;
  margin-top: 30px
}

/* ---------- mini games ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.game {
  position: relative;
  padding: 30px 26px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(30, 17, 60, .9), rgba(16, 9, 32, .92));
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s
}

.game::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .45;
  transition: opacity .35s
}

.game-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--g1), transparent 70%);
  filter: blur(50px);
  top: -60px;
  right: -40px;
  opacity: .4;
  transition: opacity .35s
}

.game:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 36px 70px -26px var(--g1)
}

.game:hover::before {
  opacity: 1
}

.game:hover .game-glow {
  opacity: .75
}

.game.feature {
  transform: translateY(-14px)
}

.game.feature:hover {
  transform: translateY(-22px)
}

.game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2
}

.game-ic {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(150deg, var(--g1), var(--g2));
  box-shadow: 0 12px 28px -8px var(--g1)
}

.game-badge {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--glass-2);
  border: 1px solid var(--stroke-2);
  color: var(--tx-2)
}

.game-badge.hot {
  background: linear-gradient(120deg, var(--g1), var(--g2));
  color: #fff;
  border-color: transparent
}

.game h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 27px;
  margin-bottom: 11px;
  position: relative;
  z-index: 2
}

.game p {
  font-size: 15px;
  color: var(--tx-2);
  position: relative;
  z-index: 2;
  min-height: 96px
}

.game-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
  position: relative;
  z-index: 2
}

.game-stat {
  font-size: 13px;
  color: var(--tx-3);
  font-weight: 600
}

.game-stat b {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 800
}

.game-play {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  color: var(--violet-l);
  transition: gap .2s
}

.game-play:hover {
  color: #fff
}

/* ---------- leaderboard ---------- */
.lb-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 26px;
  align-items: start
}

.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 22px
}

.pod {
  position: relative;
  text-align: center;
  padding: 20px 12px 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(36, 19, 70, .8), rgba(18, 10, 38, .6));
  border: 1px solid var(--stroke);
  border-bottom: 0
}

.pod-av {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 8px auto 10px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--stroke-2)
}

.pod-rank {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: var(--glass-2);
  border: 1px solid var(--stroke-2)
}

.pod-name {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px
}

.pod-pts {
  font-size: 14px;
  color: var(--violet-l);
  font-weight: 700;
  margin: 2px 0 8px
}

.pod-pts::after {
  content: " pts";
  font-size: 11px;
  color: var(--tx-3)
}

.pod-reward {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Saira Condensed', sans-serif;
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--glass-2);
  color: var(--tx-2);
  display: inline-block;
  margin-bottom: 14px
}

.pod-reward.gold {
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  color: #3a2400
}

.pod-bar {
  height: 14px;
  border-radius: 0
}

.pod-1 {
  transform: translateY(0)
}

.pod-1 .pod-bar {
  height: 64px;
  background: linear-gradient(180deg, rgba(251, 191, 36, .5), rgba(251, 191, 36, .05))
}

.pod-1 {
  border-color: rgba(251, 191, 36, .4);
  box-shadow: 0 0 40px -8px rgba(251, 191, 36, .4)
}

.pod-2 .pod-bar {
  height: 42px;
  background: linear-gradient(180deg, rgba(167, 139, 250, .4), transparent)
}

.pod-3 .pod-bar {
  height: 28px;
  background: linear-gradient(180deg, rgba(59, 130, 246, .4), transparent)
}

.pod-crown {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, .7))
}

.pod-1 .pod-rank {
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  color: #3a2400;
  border-color: transparent
}

.lb-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.lb-row {
  display: grid;
  grid-template-columns: 34px 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 16px;
  border-radius: 13px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  transition: transform .2s, background .2s, border-color .2s
}

.lb-row:hover {
  transform: translateX(4px);
  background: var(--glass-2);
  border-color: var(--stroke-2)
}

.lb-pos {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--tx-3)
}

.lb-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--stroke-2)
}

.lb-user {
  font-weight: 700;
  font-size: 15px
}

.lb-user small {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--tx-3)
}

.lb-pts {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--violet-l);
  white-space: nowrap
}

.lb-side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lb-card {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(36, 19, 70, .7), rgba(18, 10, 38, .6));
  border: 1px solid var(--stroke)
}

.lb-card h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 16px
}

.earn {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.earn li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--tx-2);
  font-weight: 600
}

.earn-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--glass-2);
  border: 1px solid var(--stroke);
  font-size: 16px
}

.lb-card.reset {
  background: linear-gradient(150deg, rgba(124, 58, 237, .25), rgba(217, 70, 239, .12));
  border-color: rgba(167, 139, 250, .3)
}

.reset-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.reset-row span {
  font-size: 14px;
  color: var(--tx-2)
}

.reset-row strong {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff
}

.lb-card.reset p {
  font-size: 14px;
  color: var(--tx-3)
}

/* ---------- marketplace ---------- */
.market-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start
}

.market-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.mf {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  transition: transform .25s, border-color .25s, box-shadow .25s
}

.mf:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-2);
  box-shadow: 0 18px 40px -22px rgba(124, 58, 237, .6)
}

.mf-ic {
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--glass-2);
  border: 1px solid var(--stroke);
  flex: 0 0 auto
}

.mf h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px
}

.mf p {
  font-size: 13px;
  color: var(--tx-3)
}

.trade {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(36, 19, 70, .85), rgba(16, 9, 32, .92));
  border: 1px solid var(--stroke-2);
  box-shadow: 0 30px 60px -28px rgba(124, 58, 237, .7)
}

.trade-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 13px;
  color: var(--tx-2);
  margin-bottom: 18px
}

.trade-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center
}

.trade-side {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.trade-label {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--tx-3);
  text-transform: uppercase
}

.trade-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--stroke)
}

.ti-thumb {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
  background-color: #3b1d6e
}

.trade-item b {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 16px;
  display: block
}

.trade-item small {
  font-size: 11px;
  color: var(--tx-3)
}

.ti-gem {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  flex: 0 0 auto;
  background: linear-gradient(150deg, #8b5cf6, #6d28d9);
  position: relative
}

.ti-gem::after {
  content: "◆";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px
}

.trade-swap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(217, 70, 239, .5)
}

.trade-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.trade-actions .btn {
  flex: 1;
  justify-content: center
}

/* ---------- shipping ---------- */
.ship-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(36, 19, 70, .7), rgba(16, 9, 32, .85));
  border: 1px solid var(--stroke)
}

.ship-copy .sec-title {
  margin-top: 12px
}

.ship-note {
  margin-top: 20px;
  font-size: 15px;
  color: var(--tx-2);
  padding: 14px 16px;
  border-radius: 13px;
  background: rgba(249, 115, 22, .1);
  border: 1px solid rgba(249, 115, 22, .28)
}

.note-tag {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--orange);
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(249, 115, 22, .2)
}

.ship-countries {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.cnt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  transition: transform .25s, border-color .25s
}

.cnt:hover {
  transform: translateX(6px);
  border-color: var(--stroke-2)
}

.cnt span {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--violet-l);
  padding: 3px 9px;
  border-radius: 7px;
  background: rgba(139, 92, 246, .18)
}

.cnt.base {
  background: linear-gradient(120deg, rgba(124, 58, 237, .3), rgba(217, 70, 239, .12));
  border-color: rgba(167, 139, 250, .4)
}

/* ---------- why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px
}

.why-card {
  grid-column: span 2;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(30, 17, 60, .7), rgba(16, 9, 32, .8));
  border: 1px solid var(--stroke);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s
}

.why-card.big {
  grid-column: span 2
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--stroke-2);
  box-shadow: 0 30px 60px -26px rgba(124, 58, 237, .7)
}

.why-card:nth-child(4) {
  grid-column: span 3
}

.why-card:nth-child(5) {
  grid-column: span 3
}

.why-ic {
  font-size: 34px;
  display: block;
  margin-bottom: 16px
}

.why-card h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 23px;
  margin-bottom: 9px
}

.why-card p {
  font-size: 15px;
  color: var(--tx-2)
}

/* ---------- final cta ---------- */
.final {
  padding: 120px 0;
  overflow: hidden;
  text-align: center
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.orb-d {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -200px;
  left: 10%;
  animation: float1 16s ease-in-out infinite
}

.orb-e {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d946ef, transparent 70%);
  bottom: -220px;
  right: 10%;
  animation: float2 19s ease-in-out infinite
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 840px
}

.final-title {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: .98;
  margin: 16px 0 18px;
  text-shadow: 0 4px 50px rgba(124, 58, 237, .5)
}

.final-sub {
  font-size: 19px;
  color: var(--tx-2);
  max-width: 620px;
  margin: 0 auto 32px
}

.final-tag {
  margin-top: 40px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: .3em;
  color: transparent;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text
}

/* ===================== FOOTER ===================== */
.footer {
  position: relative;
  padding: 70px 0 40px;
  background: linear-gradient(180deg, transparent, rgba(10, 5, 20, .6));
  border-top: 1px solid var(--stroke)
}

.news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 34px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(124, 58, 237, .2), rgba(217, 70, 239, .1));
  border: 1px solid rgba(167, 139, 250, .3);
  margin-bottom: 56px
}

.news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--violet-l)
}

.news-ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--grad-primary)
}

.news h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  margin: 8px 0 4px;
  letter-spacing: .02em
}

.news p {
  font-size: 14px;
  color: var(--tx-2)
}

.news-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 300px;
  max-width: 440px
}

.news-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(10, 5, 20, .55);
  border: 1px solid var(--stroke-2);
  color: #fff;
  font-family: inherit;
  font-size: 15px
}

.news-form input:focus {
  outline: none;
  border-color: var(--violet)
}

.news-form input::placeholder {
  color: var(--tx-3)
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px
}

.foot-brand p {
  font-size: 14px;
  color: var(--tx-3);
  margin-top: 14px;
  max-width: 300px
}

.foot-col h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tx-2);
  margin-bottom: 14px
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--tx-3);
  padding: 5px 0;
  transition: color .2s
}

.foot-col a:hover {
  color: #fff
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--stroke);
  font-size: 13px;
  color: var(--tx-3)
}

.foot-motto {
  color: var(--violet-l)
}

/* ===================== REVEAL / MOTION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.cap.reveal,
.mf.reveal,
.why-card.reveal {
  transition-delay: calc(var(--i, 0)*70ms)
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-30px, 30px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -26px)
  }
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0) var(--rz, )
  }

  50% {
    transform: translateY(-14px) var(--rz, )
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.08)
  }
}

@keyframes foil {
  0% {
    background-position: 0% 0%
  }

  100% {
    background-position: 200% 200%
  }
}

/* the bob keyframe needs explicit rotate per card */
.ccard-front {
  --rz: rotateZ(-3deg)
}

.ccard-back-l {
  --rz: rotateZ(-13deg)
}

.ccard-back-r {
  --rz: rotateZ(11deg)
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1080px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-card,
  .why-card.big,
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: span 1
  }
}

@media (max-width:900px) {
  .nav-links {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .hero {
    padding-top: 120px;
    min-height: auto
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .hero-stage {
    height: 440px;
    margin-top: 20px;
    order: 2
  }

  .hero-copy {
    order: 1;
    text-align: center
  }

  .hero-cta,
  .trust {
    justify-content: center
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }

  .lb-layout,
  .market-layout,
  .ship-wrap {
    grid-template-columns: 1fr
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .game.feature {
    transform: none
  }
}

@media (max-width:760px) {
  .section {
    padding: 70px 0
  }

  .about-grid {
    grid-template-columns: 1fr 1fr
  }

  .timeline {
    max-width: 520px
  }

  .tl-line {
    left: 24px
  }

  .tl-step {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 0 64px
  }

  .tl-step.left .tl-node,
  .tl-step.right .tl-node {
    left: -2px;
    right: auto
  }

  .tl-step.left .tl-ic {
    margin-left: 0
  }

  .market-features {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .ticker {
    display: none
  }
}

@media (max-width:520px) {

  .about-grid,
  .why-grid,
  .foot-grid {
    grid-template-columns: 1fr
  }

  .hero-stage {
    height: 380px
  }

  .ccard-back-l,
  .ccard-back-r {
    display: none
  }

  .news {
    flex-direction: column;
    align-items: flex-start
  }

  .news-form {
    max-width: none;
    width: 100%
  }

  .foot-bottom {
    flex-direction: column
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ============================================================
   TERMS & CONDITIONS MODAL
   ============================================================ */

.tc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 2, 15, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.tc-overlay[hidden] { display: none; }
.tc-overlay.tc-visible { opacity: 1; }

.tc-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(167,139,250,.1), 0 40px 120px -20px rgba(124,58,237,.55);
  overflow: hidden;
  transform: translateY(20px) scale(.97);
  transition: transform .28s var(--ease);
}
.tc-overlay.tc-visible .tc-modal { transform: translateY(0) scale(1); }

/* header */
.tc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--stroke);
  flex-shrink: 0;
}
.tc-modal-title {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tc-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--glass);
  color: var(--tx-2);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s, border-color .18s;
}
.tc-close:hover {
  background: rgba(139,92,246,.18);
  border-color: var(--violet);
  color: var(--tx);
}

/* scrollable body */
.tc-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--violet-d) transparent;
}
.tc-modal-body::-webkit-scrollbar { width: 5px; }
.tc-modal-body::-webkit-scrollbar-track { background: transparent; }
.tc-modal-body::-webkit-scrollbar-thumb { background: var(--violet-d); border-radius: 3px; }

.tc-updated {
  color: var(--tx-3);
  font-size: .8rem;
  margin-bottom: 1.5rem;
}

.tc-modal-body h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tx);
  margin: 1.75rem 0 .5rem;
  padding-top: .25rem;
}
.tc-modal-body h3:first-of-type { margin-top: 0; }

.tc-modal-body h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--violet-l);
  margin: 1.25rem 0 .4rem;
  letter-spacing: .02em;
}

.tc-modal-body p {
  color: var(--tx-2);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}

.tc-modal-body strong { color: var(--tx); }

.tc-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 .75rem 0;
}
.tc-modal-body ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--tx-2);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: .3rem;
}
.tc-modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}

.tc-modal-body a { color: var(--violet-l); text-decoration: underline; }
.tc-modal-body a:hover { color: var(--tx); }

/* notice boxes */
.tc-notice {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: .825rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.tc-notice strong { display: block; margin-bottom: .2rem; }

.tc-notice--amber {
  background: rgba(251,191,36,.07);
  border: 1px solid rgba(251,191,36,.28);
  color: #fde68a;
}
.tc-notice--amber strong { color: #fbbf24; }

.tc-notice--violet {
  background: rgba(167,139,250,.07);
  border: 1px solid rgba(167,139,250,.28);
  color: var(--tx-2);
}
.tc-notice--violet strong { color: var(--violet-l); }

.tc-notice--blue {
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.28);
  color: #bfdbfe;
}
.tc-notice--blue strong { color: #93c5fd; }

.tc-notice--green {
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.28);
  color: #bbf7d0;
}
.tc-notice--green strong { color: #86efac; }

/* footer */
.tc-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--stroke);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .tc-modal-header { padding: 1rem 1.25rem; }
  .tc-modal-body { padding: 1.25rem; }
  .tc-modal-footer { padding: .875rem 1.25rem; }
}