/* ── CAPIT Website — Premium Design System ── */
:root {
  --gold: #FFD700;
  --gold2: #ff8c00;
  --cyan: #00e5ff;
  --purple: #a855f7;
  --pink: #ff2d78;
  --green: #00ff88;
  --bg: #030610;
  --bg2: #06091a;
  --card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.07);
  --font: 'Outfit', sans-serif;
  --mono: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TICKER ── */
.ticker {
  background: rgba(168,85,247,.06);
  border-bottom: 1px solid rgba(168,85,247,.2);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 200;
}
.ticker-inner {
  display: inline-block;
  animation: tick 30s linear infinite;
}
.ticker-inner span {
  display: inline-block;
  margin: 0 36px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  position: fixed;
  top: 33px;
  left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,6,16,.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: top .3s;
}
nav.scrolled { top: 0; background: rgba(3,6,16,.95); }
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo {
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  letter-spacing: .3px;
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-soc {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.nav-soc:hover { border-color: var(--purple); color: var(--purple); background: rgba(168,85,247,.1); }

.btn-connect {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
  letter-spacing: .3px;
}
.btn-connect:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(168,85,247,.5); }
.btn-connect.connected { background: linear-gradient(135deg, var(--cyan), var(--purple)); color: #000; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% -5%, rgba(168,85,247,.3) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(0,229,255,.12) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 85%, rgba(255,45,120,.12) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.orb1 { width: 500px; height: 500px; background: rgba(168,85,247,.12); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: rgba(0,229,255,.08); bottom: 0; right: -80px; animation-delay: -3s; }
.orb3 { width: 300px; height: 300px; background: rgba(255,45,120,.08); bottom: 100px; left: 20%; animation-delay: -5s; }
@keyframes orb-drift { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,20px) scale(1.05); } }

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--purple);
  background: rgba(168,85,247,.1);
  border: 1px solid rgba(168,85,247,.3);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-crab {
  font-size: clamp(90px, 13vw, 140px);
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 60px rgba(255,215,0,.7));
  animation: float 3.5s ease-in-out infinite;
  cursor: pointer;
  transition: transform .1s;
}
.hero-crab:active { transform: scale(.92); }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}
h1 {
  font-size: clamp(54px, 10vw, 112px);
  font-weight: 900;
  line-height: .92;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.grad-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-blue {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,.5);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  padding: 18px 44px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 900;
  transition: all .25s;
  letter-spacing: .3px;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 0 50px rgba(255,215,0,.5); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  padding: 18px 44px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: all .25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); background: rgba(168,85,247,.07); }
.btn-gold { border-color: rgba(255,215,0,.4); color: var(--gold); }
.btn-gold:hover { border-color: var(--gold); background: rgba(255,215,0,.1); color: var(--gold); }

/* CA Bar */
.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(168,85,247,.06);
  border: 1px solid rgba(168,85,247,.18);
  border-radius: 60px;
  padding: 16px 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.ca-item { text-align: left; }
.ca-label { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; }
.ca-val { font-family: var(--mono); font-size: 14px; color: var(--gold); font-weight: 700; cursor: pointer; }
.ca-div { width: 1px; height: 32px; background: rgba(255,255,255,.08); }
.social-bar { display: flex; gap: 10px; }
.soc-pill {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.04);
  transition: all .2s;
}
.soc-pill:hover { border-color: var(--purple); background: rgba(168,85,247,.12); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--mono);
  animation: fade-bob 2s ease-in-out infinite;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}
@keyframes fade-bob { 0%,100% { opacity:.4; transform: translateX(-50%) translateY(0); } 50% { opacity:.8; transform: translateX(-50%) translateY(6px); } }

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.01);
}
.stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(168,85,247,.04); }
.stat-val {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 6px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ── SECTIONS ── */
.section { padding: 110px 24px; }
.section-dark { background: var(--bg2); }
.section-inner { max-width: 1160px; margin: 0 auto; }
.sec-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  text-align: center;
}
.sec-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}
.sec-sub {
  font-size: 17px;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-bottom: 64px;
}

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.game-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  overflow: hidden;
  display: block;
}
.game-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,.08), rgba(0,229,255,.05));
  opacity: 0;
  transition: opacity .3s;
}
.game-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity .3s;
}
.game-card:hover { transform: translateY(-8px); border-color: rgba(168,85,247,.45); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.game-card:hover .game-glow { opacity: 1; }
.game-card:hover::after { opacity: 1; }
.game-card.featured { border-color: rgba(255,215,0,.25); background: rgba(255,215,0,.02); }
.game-card.featured::after { background: linear-gradient(90deg, var(--gold), var(--pink)); opacity: .6; }
.game-icon { font-size: 48px; display: block; margin-bottom: 16px; filter: drop-shadow(0 4px 16px rgba(168,85,247,.5)); position: relative; }
.game-name { font-size: 18px; font-weight: 800; margin-bottom: 10px; position: relative; }
.game-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; position: relative; }
.game-earn { margin-top: 16px; font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--gold); position: relative; }
.game-play { margin-top: 14px; font-size: 11px; letter-spacing: 2px; color: var(--cyan); font-family: var(--mono); opacity: 0; transform: translateY(4px); transition: all .2s; position: relative; }
.game-card:hover .game-play { opacity: 1; transform: translateY(0); }

/* ── HOW IT WORKS ── */
.steps { display: flex; gap: 24px; flex-wrap: nowrap; justify-content: center; margin-top: 56px; }
.step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  padding: 48px 28px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all .3s;
  opacity: 1 !important;
  transform: none !important;
}
.step:hover { transform: translateY(-6px); border-color: rgba(168,85,247,.3); }
.step-num {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
}
.step-icon { font-size: 42px; margin-bottom: 16px; display: block; }
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.step p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ── TOKENOMICS ── */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.token-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-top: 2px solid var(--accent, var(--purple));
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
}
.token-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.05); }
.token-pct {
  font-family: var(--mono);
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.token-name { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.token-amt { font-size: 11px; color: rgba(255,255,255,.35); font-family: var(--mono); }
.token-bar { height: 3px; background: rgba(255,255,255,.06); border-radius: 10px; margin-top: 16px; overflow: hidden; }
.token-fill { height: 100%; border-radius: 10px; transition: width 1.5s ease; }

/* ── ROADMAP ── */
.roadmap {
  position: relative;
  max-width: 760px;
  margin: 56px auto 0;
  padding-left: 32px;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), rgba(168,85,247,.1));
}
.rm-item {
  position: relative;
  padding: 0 0 44px 40px;
  opacity: .5;
  transition: opacity .3s;
}
.rm-item.done, .rm-item.active { opacity: 1; }
.rm-dot {
  position: absolute;
  left: -6px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid rgba(168,85,247,.4);
  transition: all .3s;
}
.rm-item.done .rm-dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 12px var(--green); }
.rm-item.active .rm-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 14px var(--gold); animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 14px var(--gold); } 50% { box-shadow: 0 0 28px var(--gold), 0 0 50px rgba(255,215,0,.3); } }
.rm-body { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; }
.rm-phase { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--purple); text-transform: uppercase; margin-bottom: 8px; }
.rm-item.done .rm-phase { color: var(--green); }
.rm-item.active .rm-phase { color: var(--gold); }
.rm-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.rm-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rm-body li { font-size: 14px; color: rgba(255,255,255,.55); padding-left: 20px; position: relative; }
.rm-body li::before { content: '→'; position: absolute; left: 0; color: var(--purple); }

/* ── COMMUNITY ── */
.community-cards { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.comm-card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
}
.comm-card:hover { transform: translateY(-8px); border-color: rgba(168,85,247,.4); background: rgba(168,85,247,.05); }
.comm-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.comm-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.comm-desc { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.comm-btn { font-family: var(--mono); font-size: 12px; color: var(--cyan); letter-spacing: 1px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 48px 36px; }
.footer-top { max-width: 1160px; margin: 0 auto; display: flex; gap: 60px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 52px; }
.footer-brand { max-width: 280px; }
.footer-logo { font-size: 26px; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.footer-sub { font-size: 13px; color: rgba(255,255,255,.3); margin-bottom: 24px; }
.footer-socs { display: flex; gap: 12px; }
.footer-socs a { padding: 8px 18px; border-radius: 20px; border: 1px solid var(--border); font-size: 13px; color: rgba(255,255,255,.5); transition: all .2s; }
.footer-socs a:hover { border-color: var(--purple); color: var(--purple); }
.footer-links-group { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,.25); text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1160px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 28px; text-align: center; font-size: 12px; color: rgba(255,255,255,.18); line-height: 1.7; }

/* ── PARTICLES ── */
.particle {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  animation: drift-up linear infinite;
  opacity: 0;
}
@keyframes drift-up {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: .5; }
  90% { opacity: .15; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .ca-bar { flex-direction: column; gap: 14px; border-radius: 24px; }
  .ca-div { display: none; }
  footer { padding: 48px 24px 28px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .rm-body ul { flex-direction: column; }
  .stats-bar { flex-wrap: wrap; }
  .stat { min-width: 50%; }
  /* Steps — wrap so no card is cut off */
  .steps { flex-wrap: wrap; gap: 16px; }
  .step { min-width: 280px; max-width: 100%; flex: 1 1 280px; }
  /* Hero — prevent overflow on small screens */
  .hero { padding: 120px 16px 64px; }
  .hero-btns { gap: 10px; }
  .btn-primary, .btn-outline { padding: 14px 28px; font-size: 15px; }
  /* Games grid — single column on very small screens */
  .games-grid { grid-template-columns: 1fr; }
  /* Token grid */
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  /* Roadmap */
  .roadmap { padding-left: 20px; }
  /* Section padding */
  .section { padding: 72px 16px; }
}

/* ── LIVE PLAYERS COUNTER ── */
.stat-live .stat-val {
  /* Override gradient clip so the live dot stays visible */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.live-players-val {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
}
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: live-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); transform: scale(1); }
  50%       { box-shadow: 0 0 18px var(--green), 0 0 32px rgba(0,255,136,.35); transform: scale(1.2); }
}

/* ── SOCIAL PROOF TICKER ── */
.proof-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: rgba(0,255,136,.04);
  border-top: 1px solid rgba(0,255,136,.1);
  border-bottom: 1px solid rgba(0,255,136,.1);
  padding: 11px 0;
}
.proof-inner {
  display: inline-block;
  animation: proof-scroll 55s linear infinite;
}
.proof-inner:hover { animation-play-state: paused; }
.proof-item {
  display: inline-block;
  margin: 0 52px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .5px;
}
@keyframes proof-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── AIRDROP URGENCY STRIP ── */
.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: linear-gradient(90deg, rgba(255,45,120,.08), rgba(255,140,0,.06), rgba(255,45,120,.08));
  border-top: 1px solid rgba(255,45,120,.2);
  border-bottom: 1px solid rgba(255,45,120,.2);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: var(--mono);
  letter-spacing: .4px;
}
.urgency-fire { font-size: 16px; }
.urgency-timer {
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255,215,0,.5);
}
.urgency-cta {
  display: inline-block;
  margin-left: 10px;
  background: linear-gradient(135deg, var(--pink), var(--gold2));
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
  transition: all .2s;
}
.urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,45,120,.4);
}
@media (max-width: 600px) {
  .urgency-strip { font-size: 11px; }
  .urgency-cta { margin-left: 0; }
}

