/* ═══════════════════════════════════════════════════
   Maa Fatima FZTahara AI — Landing Page Styles
   v1.0.4 · tahara-ai.belayetmedia.com
   ═══════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:    #f59e0b;
  --gold2:   #fbbf24;
  --bg:      #060608;
  --bg2:     #0c0c10;
  --bg3:     #12121a;
  --border:  rgba(245,158,11,0.15);
  --text:    #f0f0f0;
  --muted:   #666;
  --green:   #4ade80;
  --red:     #f87171;
  --blue:    #60a5fa;
  --purple:  #a78bfa;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Serif Bengali', serif;
  overflow-x: hidden;
  cursor: default;
}

/* ── Scroll Progress Bar ──────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  width: 0; transition: width 0.1s linear;
}

/* ── Starfield BG ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,158,11,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(99,102,241,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Stars ────────────────────────────────────────── */
.stars {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.stars span {
  position: absolute; border-radius: 50%;
  background: white; animation: twinkle var(--d) ease-in-out infinite;
  opacity: 0;
}
@keyframes twinkle {
  0%,100% { opacity: 0; transform: scale(0.8); }
  50%      { opacity: var(--o); transform: scale(1.2); }
}

/* ── Nav ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif; font-size: 16px;
  color: var(--gold); font-weight: 900; letter-spacing: 1px;
  text-decoration: none;
}
.nav-logo span { font-size: 24px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px;
  transition: color 0.2s; font-family: 'JetBrains Mono', monospace;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 8px 20px; border-radius: 6px;
  background: var(--gold); color: #000;
  text-decoration: none; font-weight: 700;
  font-size: 13px; font-family: 'JetBrains Mono', monospace;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(245,158,11,0.06);
  font-size: 12px; color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.5); }
}

.hero-moon {
  font-size: 72px; line-height: 1;
  animation: fadeUp 0.8s 0.1s ease both, float 6s ease-in-out infinite;
  margin-bottom: 16px;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 7vw, 76px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeUp 0.9s 0.2s ease both;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold2), #fff8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--muted); max-width: 560px;
  line-height: 1.8; margin: 20px auto 0;
  animation: fadeUp 1s 0.3s ease both;
}

/* ── Hero Stats Row ──────────────────────────────── */
.hero-stats {
  display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap; margin: 36px 0 0;
  animation: fadeUp 1s 0.35s ease both;
}
.hero-stat {
  text-align: center; min-width: 80px;
}
.hero-stat .stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 800;
  color: var(--gold); display: block;
}
.hero-stat .stat-label {
  font-size: 11px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ── Download Button (MAIN CTA) ───────────────────── */
.download-wrap {
  margin: 48px auto 0;
  animation: fadeUp 1s 0.4s ease both;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.btn-download {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000; text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; font-weight: 700;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
}
.btn-download::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2.5s ease infinite;
}
@keyframes shimmer {
  0%  { left: -100%; }
  100%{ left: 200%; }
}
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 50px rgba(245,158,11,0.5);
}
.btn-download .dl-icon { font-size: 24px; }
.btn-download .dl-text { display: flex; flex-direction: column; align-items: flex-start; }
.btn-download .dl-main { font-size: 18px; line-height: 1; }
.btn-download .dl-sub  { font-size: 11px; opacity: 0.7; margin-top: 3px; }

.download-meta {
  display: flex; gap: 24px;
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}
.download-meta span { display: flex; align-items: center; gap: 5px; }
.download-meta .ok { color: var(--green); }

.hero-also {
  font-size: 13px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-also a { color: var(--gold); text-decoration: underline; }

/* ── App Screenshot Mockup ────────────────────────── */
.mockup-wrap {
  position: relative; z-index: 1;
  max-width: 900px; margin: 60px auto 0;
  animation: fadeUp 1.2s 0.5s ease both;
}
.mockup {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.1),
    0 40px 120px rgba(0,0,0,0.8),
    0 0 80px rgba(245,158,11,0.06);
}
.mockup-bar {
  background: #0d0d14;
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 12px; height: 12px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #4ade80; }
.mockup-title {
  flex: 1; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
}
.mockup-body {
  display: grid; grid-template-columns: 56px 200px 1fr 220px;
  height: 380px; font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
/* Icon Rail */
.m-rail {
  background: #080810;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; padding: 16px 0; gap: 20px;
}
.m-rail-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: background 0.2s;
}
.m-rail-icon.active { background: rgba(245,158,11,0.15); }
/* File tree */
.m-tree {
  background: #0a0a12;
  border-right: 1px solid var(--border);
  padding: 12px 8px; overflow: hidden;
}
.m-tree-title {
  color: var(--muted); font-size: 10px;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0 8px 10px; margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.m-file {
  padding: 4px 8px; border-radius: 4px;
  color: #888; font-size: 11px;
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.m-file.active { background: rgba(245,158,11,0.1); color: var(--gold); }
.m-file:not(.active):hover { color: #bbb; }
/* Editor */
.m-editor { background: var(--bg3); padding: 16px; overflow: hidden; }
.m-line {
  display: flex; gap: 16px; padding: 1px 0;
  line-height: 1.6;
}
.m-ln { color: #333; min-width: 20px; text-align: right; user-select: none; }
.m-code { color: #8b8bbb; }
.m-kw  { color: #c084fc; }
.m-str { color: #86efac; }
.m-fn  { color: #67e8f9; }
.m-cursor {
  display: inline-block; width: 2px; height: 14px;
  background: var(--gold); vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
/* Chat panel */
.m-chat {
  background: #080810;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.m-chat-head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--gold); font-size: 11px;
}
.m-chat-body { flex: 1; padding: 10px; overflow: hidden; }
.m-bubble {
  padding: 6px 10px; border-radius: 8px;
  font-size: 11px; line-height: 1.5;
  margin-bottom: 8px; max-width: 90%;
}
.m-bubble.user {
  background: rgba(245,158,11,0.12);
  color: var(--gold); margin-left: auto;
}
.m-bubble.ai {
  background: rgba(255,255,255,0.04); color: #aaa;
}
.m-chat-input {
  padding: 8px 10px;
  border-top: 1px solid var(--border);
}
.m-input-bar {
  background: #12121c; border-radius: 6px;
  padding: 6px 10px; font-size: 11px;
  color: var(--muted); display: flex;
  align-items: center; justify-content: space-between;
}

/* ── Features ─────────────────────────────────────── */
section { position: relative; z-index: 1; }
.features {
  max-width: 1100px; margin: 120px auto;
  padding: 0 24px;
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 3px;
  text-align: center; margin-bottom: 16px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 40px);
  text-align: center; margin-bottom: 60px;
  color: var(--text);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.feat-icon { font-size: 36px; margin-bottom: 16px; }
.feat-title {
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.feat-badge {
  display: inline-block; margin-top: 12px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-family: 'JetBrains Mono', monospace;
  background: rgba(245,158,11,0.1); color: var(--gold);
  border: 1px solid rgba(245,158,11,0.2);
}

/* ── Pricing ──────────────────────────────────────── */
.pricing {
  max-width: 1100px; margin: 80px auto 120px;
  padding: 0 24px; text-align: center;
}

/* Currency toggle */
.currency-toggle {
  display: flex; justify-content: center;
  gap: 0; margin: 24px auto 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 4px;
  width: fit-content;
}
.currency-btn {
  padding: 6px 20px; border-radius: 100px;
  border: none; cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600;
  background: transparent; color: var(--muted);
  transition: all 0.2s;
}
.currency-btn.active {
  background: var(--gold); color: #000;
}

/* 4-tier pricing grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 24px;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 24px;
  position: relative; text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.price-card.pro {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(245,158,11,0.1);
}
.price-best {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.price-plan {
  font-family: 'Cinzel', serif;
  font-size: 18px; margin-bottom: 8px;
}
.price-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px; font-weight: 700;
  color: var(--gold); margin: 16px 0 4px;
}
.price-amount .price-unit {
  font-size: 14px; color: var(--muted); font-weight: 400;
}
.price-period { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  font-size: 13px; padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
  color: #bbb;
}
.price-features li .chk { color: var(--green); }
.price-features li .x   { color: var(--muted); }
.btn-price {
  display: block; width: 100%; padding: 12px;
  border-radius: 10px; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s;
}
.btn-price:hover { transform: translateY(-2px); }
.btn-price.free {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); color: var(--text);
}
.btn-price.pro-btn {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
}
.btn-price.biz-btn {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold);
}
.btn-price.team-btn {
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--purple);
}

/* ── Payment Info ─────────────────────────────────── */
.payment-info {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  margin-top: 24px; text-align: left;
}
.payment-title {
  color: var(--gold); font-weight: 700;
  margin-bottom: 16px; font-size: 15px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.payment-method {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  transition: border-color 0.2s;
}
.payment-method:hover {
  border-color: rgba(245,158,11,0.3);
}
.pm-label { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.pm-name  { color: var(--gold); font-weight: 700; font-size: 15px; }
.pm-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; color: var(--text);
  margin-top: 6px; letter-spacing: 1px;
}

/* ── Compare Section ───────────────────────────────── */
.compare-section { max-width: 900px; margin: 0 auto 80px; padding: 0 24px; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 32px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; font-family: 'JetBrains Mono', monospace; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare-table thead tr { background: rgba(245,158,11,0.06); }
.compare-table th { color: var(--muted); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.compare-table .nova-col { color: var(--green); font-weight: 600; }
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.modes-wrap { margin-top: 24px; }
.modes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; margin-top: 12px; }
.mode-chip { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; font-size: 12px; color: #bbb; }
.mode-chip .mode-icon { font-size: 16px; color: var(--gold); font-family: monospace; }
.mode-chip strong { color: var(--gold); margin-right: 4px; }
.verdict-box { margin-top: 28px; padding: 20px 24px; background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.2); border-radius: 12px; }
.verdict-label { font-size: 11px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.verdict-text { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── Download Section — 3-Platform Grid ──────────── */
.download-section {
  max-width: 800px; margin: 0 auto 120px;
  padding: 0 24px; text-align: center;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 32px 0;
}
.platform-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.platform-card.highlight {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(96,165,250,0.1);
}
.platform-icon { font-size: 40px; margin-bottom: 12px; }
.platform-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.platform-ext {
  font-size: 11px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 16px;
}
.btn-platform {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 8px;
  text-decoration: none; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-platform.win {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: #fff;
}
.btn-platform.mac {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
}
.btn-platform.linux {
  background: linear-gradient(135deg, #4ade80, #16a34a);
  color: #000;
}

.sys-req {
  margin-top: 24px; font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 40px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  color: var(--gold); font-weight: 900; font-size: 15px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--muted); text-decoration: none;
  font-size: 12px; font-family: 'JetBrains Mono', monospace;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .mockup-body { grid-template-columns: 48px 1fr; }
  .m-tree, .m-chat { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 8px 10px; font-size: 11px; }
  .modes-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .download-meta { flex-wrap: wrap; justify-content: center; }
}

/* ── Language Selector ────────────────────────────── */
.lang-selector {
  display: flex; gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 3px;
  margin-right: 12px;
}
.lang-btn {
  padding: 4px 12px; border-radius: 100px;
  border: none; cursor: pointer;
  font-size: 12px; font-weight: 600;
  background: transparent; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--gold); color: #000;
}
.lang-btn:hover:not(.active) { color: var(--text); }

/* ── RTL Support (Arabic) ────────────────────────── */
html[dir="rtl"] body {
  font-family: 'Noto Naskh Arabic', 'Noto Serif Bengali', serif;
}
html[dir="rtl"] .nav-links { direction: rtl; }
html[dir="rtl"] .feat-card,
html[dir="rtl"] .price-card,
html[dir="rtl"] .payment-info,
html[dir="rtl"] .verdict-box,
html[dir="rtl"] .cmp-faq-item { text-align: right; }
html[dir="rtl"] .price-features li { flex-direction: row-reverse; }
html[dir="rtl"] .download-meta span { flex-direction: row-reverse; }
html[dir="rtl"] .compare-table th,
html[dir="rtl"] .compare-table td { text-align: right; }
html[dir="rtl"] .cmp-agent-card { text-align: right; }
html[dir="rtl"] .mode-chip { flex-direction: row-reverse; }
html[dir="rtl"] nav { direction: rtl; }
html[dir="rtl"] .m-editor,
html[dir="rtl"] .m-tree,
html[dir="rtl"] .m-chat { direction: ltr; }

/* ── Comparison Page Link ────────────────────────── */
.cmp-full-link {
  color: var(--gold); text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 600;
  transition: opacity 0.2s;
}
.cmp-full-link:hover { opacity: 0.8; text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   COMPARISON PAGE STYLES (compare.html)
   ═══════════════════════════════════════════════════ */

/* ── Comparison Hero ─────────────────────────────── */
.cmp-hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: 140px 24px 60px;
}
.cmp-hero-badge {
  display: inline-block;
  padding: 6px 20px; border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(245,158,11,0.06);
  font-size: 12px; color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 24px;
}
.cmp-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 900; line-height: 1.3;
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.cmp-gold { color: var(--gold); }
.cmp-vs {
  font-size: 0.5em; color: var(--muted);
  font-weight: 400; letter-spacing: 0.1em;
}
.cmp-hero-sub {
  max-width: 640px; margin: 20px auto 0;
  font-size: 15px; color: var(--muted); line-height: 1.7;
}

/* ── Comparison Sections ─────────────────────────── */
.cmp-section {
  position: relative; z-index: 1;
  max-width: 960px; margin: 0 auto 60px;
  padding: 0 24px;
}
.cmp-section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 32px);
  text-align: center; margin-bottom: 24px;
  color: var(--text);
}
.cmp-section-sub {
  text-align: center; font-size: 14px;
  color: var(--muted); line-height: 1.7;
  max-width: 640px; margin: -8px auto 32px;
}
.cmp-full-table { font-size: 13px; }
.cmp-full-table th:first-child,
.cmp-full-table td:first-child { min-width: 160px; }

/* ── Agent Modes Grid (Compare Page) ─────────────── */
.cmp-agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.cmp-agent-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  transition: transform 0.25s, border-color 0.25s;
}
.cmp-agent-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,158,11,0.3);
}
.cmp-agent-card.cmp-agent-featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245,158,11,0.08);
}
.cmp-agent-icon {
  font-size: 28px; color: var(--gold);
  font-family: monospace; margin-bottom: 8px;
}
.cmp-agent-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; font-weight: 700;
  color: var(--gold); margin-bottom: 8px;
}
.cmp-agent-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; margin-bottom: 12px;
}
.cmp-agent-tools {
  font-size: 11px; color: #555;
  font-family: 'JetBrains Mono', monospace;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ── FAQ (Compare Page) ──────────────────────────── */
.cmp-faq-list { max-width: 720px; margin: 0 auto; }
.cmp-faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 10px;
  overflow: hidden;
}
.cmp-faq-item summary {
  padding: 16px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600;
  color: var(--text); list-style: none;
  display: flex; align-items: center;
  justify-content: space-between;
}
.cmp-faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--gold);
  transition: transform 0.2s;
}
.cmp-faq-item[open] summary::after {
  content: '-';
}
.cmp-faq-item summary::-webkit-details-marker { display: none; }
.cmp-faq-item p {
  padding: 0 20px 16px;
  font-size: 13px; color: var(--muted);
  line-height: 1.8;
}

/* ── CTA Section (Compare Page) ──────────────────── */
.cmp-cta-section { text-align: center; padding-bottom: 80px; }
.cmp-cta-sub {
  font-size: 15px; color: var(--muted);
  margin-bottom: 32px;
}
.cmp-cta-buttons {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.cmp-cta-dl { display: inline-flex; }
.cmp-cta-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center;
}
.cmp-cta-links a {
  color: var(--muted); text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; transition: color 0.2s;
}
.cmp-cta-links a:hover { color: var(--gold); }

/* ── Compare Page Responsive ─────────────────────── */
@media (max-width: 768px) {
  .cmp-hero-title { flex-direction: column; gap: 4px; }
  .cmp-agent-grid { grid-template-columns: 1fr; }
  .cmp-full-table th:first-child,
  .cmp-full-table td:first-child { min-width: 100px; }
  .lang-selector { margin-right: 8px; }
  .lang-btn { padding: 3px 8px; font-size: 11px; }
}

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-progress { transition: none; }
}
