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

:root {
  --bg-dark: #0f0f12;
  --bg-sidebar: #0a0a0d;
  --bg-card: #18181c;
  --bg-card-hover: #1f1f24;
  --bg-elevated: #222228;
  --bg-input: #2a2a32;
  --accent-blue: #3b8cf8;
  --accent-blue-dim: rgba(59, 140, 248, 0.12);
  --accent-green: #22c55e;
  --accent-green-dim: rgba(34, 197, 94, 0.15);
  --accent-red: #ef4444;
  --accent-red-dim: rgba(239, 68, 68, 0.15);
  --accent-purple: #6366f1;
  --accent-pink: #d63bf8;
  --text-primary: #f4f4f8;
  --text-secondary: #9494a8;
  --text-muted: #5c5c6e;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 32px rgba(0,0,0,0.4);
  --gradient-brand: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; height: auto; }

/* ── NAV ── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(10, 10, 13, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.35px;
}

.nav-brand-title .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 20px; height: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 16px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 18px;
  border: 1px solid #9e9e9e;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
}

.btn-outline:hover { color: var(--text-primary); border-color: var(--border-strong); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-yes,
.btn-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  flex: 1;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-yes:active,
.btn-no:active {
  transform: scale(0.97);
}

.btn-yes {
  background: linear-gradient(145deg, rgba(34,197,94,0.15) 0%, rgba(34,197,94,0.06) 100%);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.28);
}
.btn-yes:hover {
  background: linear-gradient(145deg, rgba(34,197,94,0.25) 0%, rgba(34,197,94,0.12) 100%);
  border-color: rgba(34,197,94,0.45);
  box-shadow: 0 2px 12px rgba(34,197,94,0.18);
  transform: translateY(-1px);
}

.btn-no {
  background: linear-gradient(145deg, rgba(239,68,68,0.15) 0%, rgba(239,68,68,0.06) 100%);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.28);
}
.btn-no:hover {
  background: linear-gradient(145deg, rgba(239,68,68,0.25) 0%, rgba(239,68,68,0.12) 100%);
  border-color: rgba(239,68,68,0.45);
  box-shadow: 0 2px 12px rgba(239,68,68,0.18);
  transform: translateY(-1px);
}

.btn-yes .btn-vote-icon,
.btn-no .btn-vote-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 120px 24px 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  opacity: 0.25;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.18), transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 50px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.hero-h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.hero-h1 .gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(214,59,248,0.08) 100%);
  border: 1px solid rgb(0 0 0 / 20%);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.4;
}
.hero-bonus strong {
  color: #c4b5fd;
  font-weight: 700;
}
.hero-bonus-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #a78bfa;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.hero-card-image {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #111116, #241f3e);
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}

.hero-card:hover .hero-card-image img {
  transform: scale(1.06);
}

.hero-card-body {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card-prices {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-sidebar);
  padding: 20px 24px;
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-primary);
}

.trust-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── MARKET CARDS ── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.market-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.market-card-image {
  display: block;
  position: relative;
  width: 100%;
  height: 170px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #111116, #241f3e);
}

.market-card-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}

.market-card:hover .market-card-image img {
  transform: scale(1.04);
}

.market-card-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: var(--text-muted);
}

.card-timer {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}
.card-timer::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: card-timer-pulse 2s ease-in-out infinite;
}
.card-timer.soon::before { background: #facc15; box-shadow: 0 0 6px #facc15; }
.card-timer.urgent::before { background: #f87171; box-shadow: 0 0 6px #f87171; }
.card-timer.ended { opacity: 0.65; }
.card-timer.ended::before { background: #888; box-shadow: none; animation: none; }
@keyframes card-timer-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-card-image { position: relative; }

.market-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 18px 18px;
  flex: 1;
}

.market-card--compact { padding: 14px; gap: 10px; }

.market-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.market-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9494d8;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.market-volume {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.market-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.2px;
  flex: 1;
}

.market-title a:hover { color: #a5b4fc; }

.market-odds {
  display: flex;
  gap: 8px;
}

.market-prob-bar {
  display: flex;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.market-prob-yes,
.market-prob-no {
  height: 100%;
  transform: scaleX(0);
}

.market-prob-yes {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  transform-origin: left center;
  animation: market-bar-fill 0.7s cubic-bezier(0.22, 0.8, 0.32, 1) 0.04s both;
}

.market-prob-no {
  flex: 1;
  background: linear-gradient(180deg, #fb7185 0%, #e11d48 100%);
  transform-origin: right center;
  animation: market-bar-fill 0.7s cubic-bezier(0.22, 0.8, 0.32, 1) 0.12s both;
}

@keyframes market-bar-fill {
  0% { transform: scaleX(0.004); filter: brightness(0.9); }
  100% { transform: scaleX(1); filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
  .market-prob-yes, .market-prob-no {
    animation: none;
    transform: none;
  }
}

.market-prob-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}

.market-prob-yes-label { color: var(--accent-green); }
.market-prob-no-label { color: var(--accent-red); }

.market-card-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #a5b4fc;
  margin-top: 28px;
  transition: gap 0.2s;
}

.section-link:hover { gap: 10px; }
.section-link svg { width: 16px; height: 16px; }

/* ── SECTIONS ── */
.section {
  padding: 72px 24px;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #818cf8;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-header--center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.section-header--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section--alt { background: var(--bg-sidebar); }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: background 0.2s, border-color 0.2s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--accent-blue-dim);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-icon svg { width: 20px; height: 20px; color: #818cf8; }

.feature-title {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 8px;
  letter-spacing: -0.15px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.step-title {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 8px;
}

.step-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
}

.category-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.category-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue-dim);
  flex-shrink: 0;
}

.category-icon svg { width: 16px; height: 16px; color: #818cf8; }
.category-name { font-size: 14px; font-weight: 600; }

/* ── FAQ TEASER ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.faq-q {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 8px;
  letter-spacing: -0.15px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── CTA ── */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(99, 102, 241, 0.12), transparent);
}

.cta-content { max-width: 520px; margin: 0 auto; }

.cta-title {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  background: var(--bg-sidebar);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.footer-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  overflow: hidden;
}

.footer-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name { font-size: 15px; font-weight: 600; }
.footer-copy { font-size: 13px; color: var(--text-muted); }

.disclaimer-banner {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 480px;
}

/* ── INFO PAGES ── */
.page-hero {
  padding: 110px 24px 48px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99, 102, 241, 0.1), transparent);
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 36px 0 12px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p,
.page-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.page-content ul,
.page-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.page-content li { margin-bottom: 8px; }

.page-content a {
  color: #818cf8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 24px 0;
}

.info-callout strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.info-callout p { margin-bottom: 0; font-size: 14px; }

.faq-full .faq-item { margin-bottom: 12px; }
.faq-full .faq-item + .faq-item { margin-top: 0; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 13, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }

.mobile-menu-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mobile-menu-cta .btn { flex: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-preview { display: none; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .landing-nav { padding: 12px 16px; }
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .markets-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { justify-content: center; }
  .trust-divider { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MARKETS PAGE ── */
.markets-page {
  padding: 100px 24px 72px;
}

.markets-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.markets-page-header {
  margin-bottom: 32px;
}

.markets-page-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
}

.markets-page-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
}

.markets-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-tab {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-tab:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.filter-tab.is-active {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
}

.markets-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.markets-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
