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

:root {
  --bg-main: #07090e;
  --bg-panel: rgba(15, 19, 29, 0.75);
  --bg-card: rgba(20, 25, 38, 0.85);
  --gold: #f5c430;
  --gold-glow: rgba(245, 196, 48, 0.25);
  --cyan: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.2);
  --green: #10b981;
  --red: #f43f5e;
  --purple: #8b5cf6;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(245, 196, 48, 0.5);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

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

.ambient-glow {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 15%, rgba(245, 196, 48, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 75%, rgba(0, 229, 255, 0.04) 0%, transparent 45%);
}

.grid-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Live SentX Ticker Strip under Header */
.sentx-ticker {
  background: linear-gradient(90deg, rgba(245, 196, 48, 0.12) 0%, rgba(0, 229, 255, 0.12) 100%);
  border-bottom: 1px solid rgba(245, 196, 48, 0.25);
  padding: 8px 5%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
}

.ticker-text {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  animation: pulseTicker 2s infinite ease-in-out;
}

@keyframes pulseTicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.ticker-btn {
  background: var(--gold);
  color: #000;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.72rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s;
}

.ticker-btn:hover {
  transform: scale(1.05);
  background: #ffcf33;
}

/* Fixed Institutional Navbar */
.navbar {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: rgba(8, 11, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, #d49a00 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-text span {
  color: var(--gold);
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

/* Navbar Controls */
.nav-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-pill {
  height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-music {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.btn-music:hover, .btn-music.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-music .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.2s;
}

.btn-music.active .pulse-dot {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.btn-wallet {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan);
}

.btn-wallet:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.btn-wallet.connected {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--green);
  color: var(--green);
}

.btn-primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
  background: #ffcf33;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 196, 48, 0.4);
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: inline-flex;
  }
}

/* Floating Anthem Player */
.floating-player {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(12, 16, 27, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.player-waves {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 18px;
}

.wave-bar {
  width: 3px;
  background: var(--gold);
  border-radius: 1px;
  animation: bounceWave 1s infinite ease-in-out;
}
.wave-bar:nth-child(2) { animation-delay: 0.2s; }
.wave-bar:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounceWave {
  0%, 100% { height: 4px; }
  50% { height: 18px; }
}

/* Institutional Custom Dialog Modal (Replaces Browser Native Alert/Confirm/Prompt) */
.custom-dialog-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.custom-dialog-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.custom-dialog-card {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.95);
  text-align: center;
  color: #fff;
  transform: scale(0.95);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dialog-overlay.active .custom-dialog-card {
  transform: scale(1);
}

.dialog-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(245, 196, 48, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}

.dialog-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.dialog-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.dialog-input {
  width: 100%;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  margin-bottom: 24px;
  display: none;
}

.dialog-input:focus {
  border-color: var(--cyan);
}

.dialog-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-dialog-cancel {
  flex: 1;
  height: 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-dialog-cancel:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-dialog-ok {
  flex: 1;
  height: 46px;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 10px;
  color: #000;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px var(--cyan-glow);
}

.btn-dialog-ok:hover {
  background: #33ebff;
  transform: translateY(-1px);
}

/* Reown / AppKit Style Connect Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.reown-card {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  width: 100%;
  max-width: 400px;
  padding: 20px 16px 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  color: #fff;
}

.reown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 16px;
}

.reown-icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.reown-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.reown-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.2px;
}

.reown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease;
}

.reown-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.reown-row.highlight {
  background: rgba(255, 255, 255, 0.04);
}

.reown-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reown-icon-box {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.reown-wallet-name {
  font-weight: 600;
  font-size: 0.98rem;
  color: #ffffff;
}

.reown-row-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reown-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reown-badge.recent {
  background: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.reown-badge.qrcode {
  background: rgba(49, 130, 206, 0.3);
  color: #63b3ed;
}

.reown-badge.installed {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.reown-chevron {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
}

.reown-search-row {
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}

.reown-search-row:hover {
  background: rgba(255, 255, 255, 0.09);
}

.reown-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reown-pill {
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hero Section */
.hero {
  padding: 4rem 5% 5rem;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero-title .gold-accent {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* Key Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 550px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: left;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.metric-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

.metric-val span {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Banner Frame */
.banner-container {
  position: relative;
  border-radius: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.banner-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Live SentX Activities Arena Table */
.activity-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 14px;
  transition: all 0.2s;
}

.activity-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

/* Sections */
.section {
  padding: 5rem 5%;
  max-width: 1320px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* NFT Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.nft-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nft-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-img-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: #000;
}

.card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.tag-cap {
  position: absolute; top: 12px; left: 12px;
  background: rgba(244, 63, 94, 0.9);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
}

.tag-prize {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
}

/* Live Mainnet Verification Box */
.verify-box {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem 0;
}

.countdown-strip {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.cd-box {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  min-width: 90px;
  text-align: center;
}

.cd-num {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 2.2rem; color: var(--gold);
  display: block; line-height: 1;
}

.cd-lbl {
  font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
}

.input-group {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.text-input {
  flex: 1; min-width: 200px;
  height: 46px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  padding: 0 16px;
  outline: none;
  transition: border 0.2s;
}

.text-input:focus {
  border-color: var(--cyan);
}

/* Squad Layout */
.squad-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .squad-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.pitch-graphic {
  background: radial-gradient(circle at center, #0f3622 0%, #081d12 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 2rem;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}

.pitch-row {
  display: flex; justify-content: space-around;
}

.pitch-node {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.pitch-node:hover, .pitch-node.active {
  background: var(--gold); color: #000;
  transform: scale(1.08);
}

.pitch-node.captain {
  background: var(--gold); color: #000; font-weight: bold;
}

.payout-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.payout-item:hover, .payout-item.active {
  border-color: var(--gold);
  background: rgba(245, 196, 48, 0.08);
}

/* Teams Explorer */
.filters-bar {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem;
}

.filter-chip {
  height: 38px; padding: 0 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 600; font-size: 0.8rem;
  cursor: pointer; transition: all 0.2s;
}

.filter-chip.active, .filter-chip:hover {
  background: #fff; color: #000; border-color: #fff;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
}

.team-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 1.2rem;
  text-align: center; cursor: pointer; transition: all 0.2s;
}

.team-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}

/* FAQ */
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
}

.faq-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; overflow: hidden;
}

.faq-q {
  padding: 1.2rem 1.5rem; font-weight: 700; color: #fff; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}

.faq-a {
  padding: 0 1.5rem 1.2rem; color: var(--text-muted); font-size: 0.95rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem;
}

/* Footer */
footer {
  background: #050508;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 5%;
  text-align: center;
}
