/* ============================
   PlaySlot — Shared Stylesheet
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #09090d;
  --surface:   #111116;
  --card:      #16161c;
  --border:    #1f1f27;
  --border-lg: #2a2a35;
  --primary:   #3fae45;
  --primary-d: #2d8f32;
  --primary-l: #52c957;
  --glow:      rgba(63,174,69,0.22);
  --glow-sm:   rgba(63,174,69,0.10);
  --text:      #ffffff;
  --muted:     #8888a0;
  --subtle:    #5a5a70;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font:      'Inter', system-ui, sans-serif;
  --font-d:    'Syne', sans-serif;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-lg); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--subtle); }

/* ── Selection ── */
::selection { background: rgba(63,174,69,0.28); color: #fff; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-d); line-height: 1.15; letter-spacing: -0.02em; }
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--primary-l) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.green-text { color: var(--primary); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Grid Bg ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Glow orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-green { background: radial-gradient(circle, rgba(63,174,69,0.35) 0%, transparent 70%); }
.orb-blue  { background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 70%); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: none;
}
.nav.scrolled {
  background: rgba(9,9,13,0.85);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(9,9,13,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { font-size: 18px; padding: 14px 16px; }
.mobile-menu .btn { width: 100%; margin-top: 12px; justify-content: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  box-shadow: 0 0 24px var(--glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-l), var(--primary));
  box-shadow: 0 0 40px var(--glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-lg);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 24px var(--glow);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--border-lg);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-glass {
  background: rgba(22,22,28,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ── Icon boxes ── */
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-green  { background: rgba(63,174,69,0.15);   color: var(--primary); }
.icon-box-blue   { background: rgba(56,189,248,0.12);  color: #38bdf8; }
.icon-box-purple { background: rgba(167,139,250,0.12); color: #a78bfa; }
.icon-box-amber  { background: rgba(251,191,36,0.12);  color: #fbbf24; }
.icon-box-pink   { background: rgba(244,114,182,0.12); color: #f472b6; }
.icon-box-cyan   { background: rgba(34,211,238,0.12);  color: #22d3ee; }
.icon-box-orange { background: rgba(251,146,60,0.12);  color: #fb923c; }
.icon-box-lg { width: 60px; height: 60px; border-radius: 16px; }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-green {
  background: rgba(63,174,69,0.12);
  color: var(--primary);
  border: 1px solid rgba(63,174,69,0.25);
}

/* ── Section headings ── */
.section-label {
  text-align: center;
  margin-bottom: 16px;
}
.section-title { text-align: center; font-size: clamp(28px, 4vw, 46px); }
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Stat block ── */
.stat-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ── Step ── */
.step-number {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(63,174,69,0.12);
  border: 1px solid rgba(63,174,69,0.25);
  color: var(--primary);
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Timeline connector ── */
.step-connector {
  position: absolute;
  left: 21px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(63,174,69,0.4), transparent);
}

/* ── Pricing card ── */
.pricing-card { position: relative; }
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px var(--glow-sm);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 99px;
}
.pricing-price {
  font-family: var(--font-d);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
.pricing-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.pricing-check svg { color: var(--primary); flex-shrink: 0; }
.pricing-check.active { color: var(--text); }

/* ── Testimonial ── */
.testimonial-card { position: relative; }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-d);
  font-size: 72px;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%;
  background: var(--card);
  border: none;
  text-align: left;
  padding: 20px 24px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--surface); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--muted);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ── Input ── */
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-label { font-size: 13px; font-weight: 500; color: var(--muted); }
.input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--glow-sm); }
textarea.input { resize: vertical; min-height: 120px; }
select.input { appearance: none; cursor: pointer; }

/* ── Footer ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-desc { color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--subtle); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover { color: var(--primary); border-color: var(--primary); background: rgba(63,174,69,0.1); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes count-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float 4s ease-in-out infinite 1.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Shimmer skeleton */
.shimmer {
  background: linear-gradient(90deg, var(--card) 25%, var(--surface) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  border-radius: 8px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Canvas particles */
#particles { position: absolute; inset: 0; z-index: 0; }

/* ── Hero phone mockup ── */
.phone-mockup {
  width: 260px;
  aspect-ratio: 9/18;
  background: var(--card);
  border-radius: 36px;
  border: 2px solid var(--border-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px var(--glow-sm), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  flex-shrink: 0;
}
.phone-notch {
  width: 80px; height: 24px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}
.phone-screen { padding: 0 12px 12px; }
.phone-app-bar {
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-logo-sm {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 6px;
}
.phone-venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 6px;
}
.phone-venue-img {
  width: 100%; height: 60px;
  background: linear-gradient(135deg, rgba(63,174,69,0.2), rgba(56,189,248,0.1));
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-tag {
  display: inline-block;
  background: rgba(63,174,69,0.15);
  color: var(--primary);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
}

/* ── Feature tabs ── */
.tab-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px;
  overflow-x: auto;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--card);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .hero-title { font-size: clamp(36px, 8vw, 56px); }
  .phone-mockup { width: 200px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Utilities ── */
.flex   { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.gap-12 { gap: 48px; }
.text-center { text-align: center; }
.text-sm   { font-size: 14px; }
.text-xs   { font-size: 12px; }
.text-lg   { font-size: 18px; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-muted  { color: var(--muted); }
.text-primary { color: var(--primary); }
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-2  { margin-bottom: 8px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.w-full  { width: 100%; }
.relative { position: relative; }
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Contact page map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 24px var(--glow);
  position: relative;
  z-index: 2;
}
.map-pin::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}

/* Blur glow under hero */
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,174,69,0.18) 0%, transparent 65%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Number counter */
.counter-value { display: inline-block; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.checklist-item svg { color: var(--primary); margin-top: 1px; flex-shrink: 0; }
.checklist-item span { color: var(--text); }

/* Process/timeline */
.process-line {
  position: absolute;
  top: 24px;
  left: calc(50% + 130px);
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* Toast notification demo */
.toast-demo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: fadeInUp 0.4s ease;
}
.toast-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--glow);
  flex-shrink: 0;
}

/* ── About page team cards ── */
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
}

/* ── Sport pills ── */
.sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.sport-pill:hover {
  background: rgba(63,174,69,0.1);
  border-color: rgba(63,174,69,0.4);
  color: var(--primary);
}
