/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:     #070b0f;
  --bg2:    #0d1117;
  --bg3:    #111827;
  --bg4:    #1a2233;
  --border: #1f2937;
  --border2:#2d3748;
  --text:   #f0f4f8;
  --text2:  #9ca3af;
  --text3:  #6b7280;
  --gold:   #ffc300;
  --gold2:  #d4a017;
  --gold3:  #fff3b0;
  --green:  #22c55e;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   TOPNAV
═══════════════════════════════════════════════════════════ */
.topnav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.topnav-brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #000; letter-spacing: -.5px;
}
.topnav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text2);
  border-radius: 6px;
  transition: all .15s;
}
.nav-link:hover { background: var(--bg4); color: var(--text); text-decoration: none; }
.nav-dl {
  padding: 7px 18px;
  background: var(--gold);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
  transition: background .15s;
}
.nav-dl:hover { background: var(--gold2); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 12px;
  color: var(--text3);
  display: flex; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text3); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,195,0,.1);
  border: 1px solid rgba(255,195,0,.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255,195,0,.35);
  transition: all .15s;
}
.btn-primary:hover { background: var(--gold2); text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255,195,0,.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all .15s;
}
.btn-secondary:hover { background: var(--bg4); border-color: var(--text3); text-decoration: none; }
.hero-meta {
  font-size: 12px;
  color: var(--text3);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta span::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   APP PREVIEW
═══════════════════════════════════════════════════════════ */
.app-preview-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.app-preview-frame {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,195,0,.08);
}
.frame-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}
.frame-dot { width: 10px; height: 10px; border-radius: 50%; }
.frame-dot.r { background: #ff5f57; }
.frame-dot.y { background: #ffbd2e; }
.frame-dot.g { background: #28c840; }
.frame-url {
  flex: 1;
  background: var(--bg4);
  border-radius: 5px;
  height: 22px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: var(--text3);
}
.app-preview-frame img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 13px; color: var(--text2); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-section { background: var(--bg2); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s;
}
.step:hover { border-color: rgba(255,195,0,.4); }
.step-num {
  width: 44px; height: 44px;
  background: rgba(255,195,0,.12);
  border: 1px solid rgba(255,195,0,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--gold);
  margin-bottom: 20px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step p  { font-size: 14px; color: var(--text2); line-height: 1.65; }
.step-arrow {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--border2);
  font-size: 20px;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE TABS (SCREENSHOT SHOWCASE)
═══════════════════════════════════════════════════════════ */
.tabs-section { background: var(--bg); }
.tab-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
}
.tab-btn {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); background: var(--bg4); }
.tab-btn.active { background: var(--gold); color: #111; border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 768px) {
  .tab-panel.active { grid-template-columns: 1fr; }
}
.tab-info h3 { font-size: 26px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; color: #fff; }
.tab-info p  { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.tab-feats   { display: flex; flex-direction: column; gap: 10px; }
.tab-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.tab-feat::before { content: "✓"; color: var(--green); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.tab-screenshot {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.6);
}
.tab-screenshot img { width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════════
   FEATURE GRID
═══════════════════════════════════════════════════════════ */
.features-section { background: var(--bg2); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .2s;
}
.feature-card:hover {
  border-color: rgba(255,195,0,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.feat-icon {
  width: 46px; height: 46px;
  background: rgba(255,195,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   WHAT'S NEW
═══════════════════════════════════════════════════════════ */
.whatsnew-section { background: var(--bg); }
.whatsnew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.whatsnew-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .2s;
}
.whatsnew-card:hover {
  border-color: rgba(255,195,0,.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.whatsnew-shot {
  background: #0b1422;
  border-bottom: 1px solid var(--border);
}
.whatsnew-shot img { width: 100%; display: block; }
.whatsnew-card h3 { font-size: 16px; font-weight: 700; margin: 18px 22px 8px; color: #fff; }
.whatsnew-card p  { font-size: 13px; color: var(--text2); line-height: 1.6; margin: 0 22px 22px; }

/* ═══════════════════════════════════════════════════════════
   COMPARE TABLE
═══════════════════════════════════════════════════════════ */
.compare-section { background: var(--bg); }
.compare-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
}
thead th.highlight { color: var(--gold); }
tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg3); }
td.feat-name { color: var(--text); font-weight: 600; }
td.yes  { color: var(--green); font-weight: 700; }
td.no   { color: var(--text3); }
td.gold { color: var(--gold); font-weight: 700; }
.compare-table {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.col-ing { background: rgba(255,195,0,.04); }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg2); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 16px;
}
@media (max-width: 520px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg4); }
.faq-q::after { content: "+"; color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a2a0a 50%, #0d1117 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}
.cta-inner h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 18px;
}
.cta-inner p { font-size: 17px; color: var(--text2); margin-bottom: 36px; line-height: 1.65; }
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text3);
}
.cta-badges span::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   FOOTER MINI
═══════════════════════════════════════════════════════════ */
.footer-mini {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text3);
}
.footer-mini a { color: var(--text3); }
.footer-mini a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .topnav-links .nav-link { display: none; }
  .step-arrow { display: none; }
  .stats-inner { gap: 32px; }
}