/* ═══════════════════════════════════════════
   Emas Cinonet — Shared Design System
   Light theme for ibubapa/investor audience
   Used by: index.html (info page) + dashboard/index.html
   ═══════════════════════════════════════════ */

:root {
  --bg:        #FBF9F4;
  --card:      #FFFFFF;
  --card-alt:  #FEF9ED;
  --border:    #E8E2D5;
  --border-sub:#F0EBE0;
  --text:      #2D2416;
  --muted:     #8B7E6A;
  --muted2:    #A89880;
  --gold:      #B8860B;
  --gold-lt:   #D4A843;
  --gold-bg:   #FEF9ED;
  --gold-subtle:rgba(184,134,11,0.08);
  --green:     #059669;
  --green-bg:  rgba(5,150,105,0.07);
  --red:       #DC2626;
  --red-bg:    rgba(220,38,38,0.07);
  --blue:      #3B82F6;
  --amber:     #D97706;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius:    16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font:      'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: radial-gradient(120% 90% at 50% 0%, #FDFAF3 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav (PAJSK-style: sticky header + hamburger drawer) ─ */
.nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-header .logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700; letter-spacing: -0.3px;
  text-decoration: none; color: var(--text);
}
.nav-header .logo:link,
.nav-header .logo:visited,
.nav-header .logo:hover,
.nav-header .logo:active {
  color: var(--text);
  text-decoration: none;
}
.nav-header .logo span { color: var(--gold); }
.nav-header .logo .ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gold-bg); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-header .hamburger {
  display: none; /* Hidden on desktop */
  align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  margin-right: -8px;
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.nav-header .hamburger:hover { background: var(--bg); color: var(--text); }
.nav-header .hamburger svg { width: 22px; height: 22px; }

/* Desktop horizontal nav */
.desktop-nav {
  display: flex; align-items: center; gap: 4px;
}
.desktop-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.2s;
}
.desktop-nav a:link,
.desktop-nav a:visited { color: var(--muted); text-decoration: none; }
.desktop-nav a:hover { background: var(--bg); color: var(--text); }
.desktop-nav a.active { background: var(--gold-bg); color: var(--gold); font-weight: 600; }

/* ── Slide-in Drawer (all screen sizes) ──── */
.mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu-backdrop.open {
  opacity: 1; pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px; max-width: 85vw; z-index: 50;
  background: var(--card);
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.3s;
  display: flex; flex-direction: column;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-sub);
  font-weight: 700; font-size: 16px;
}
.drawer-brand span { color: var(--gold); }
.drawer-brand .ic {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gold-bg); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.drawer-nav {
  flex: 1; overflow-y: auto;
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.drawer-nav a,
.drawer-nav button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  font-family: var(--font);
  text-decoration: none; border: none;
  background: none; cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
  text-align: left;
}
.drawer-nav a:link,
.drawer-nav a:visited {
  color: var(--muted);
  text-decoration: none;
}
.drawer-nav a:hover,
.drawer-nav button:hover {
  background: var(--bg);
  color: var(--text);
}
.drawer-nav a.active {
  background: var(--gold-bg);
  color: var(--gold);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(184,134,11,0.08);
}

.drawer-user {
  padding: 16px 20px;
  border-top: 1px solid var(--border-sub);
}
.drawer-user .user-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg); border-radius: 12px;
}
.drawer-user .user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-bg); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.drawer-user .user-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.drawer-user .user-info { flex: 1; min-width: 0; }
.drawer-user .user-info .name { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drawer-user .user-info .email { font-size: 12px; color: var(--muted2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drawer-user .logout-btn {
  display: block; width: 100%; margin-top: 8px;
  padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  font-family: var(--font);
  border: none; background: none; cursor: pointer;
  color: var(--red);
  text-align: left;
  transition: all 0.2s;
}
.drawer-user .logout-btn:hover { background: var(--red-bg); }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px; font-size: 14px;
  font-weight: 600; cursor: pointer; text-decoration: none;
  transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
  border: none; font-family: var(--font);
}
.btn-primary {
  background: var(--gold); color: #fff;
  box-shadow: 0 2px 12px rgba(184,134,11,0.25);
}
.btn-primary:hover {
  background: var(--gold-lt); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,134,11,0.35);
}
.btn-outline {
  background: var(--card); color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold-lt); color: var(--gold);
  transform: translateY(-1px);
}
.btn-soft {
  background: var(--gold-bg); color: var(--gold);
  border: 1px solid rgba(184,134,11,0.15);
}
.btn-soft:hover { background: #FFF5DC; transform: translateY(-1px); }
.btn-sm { padding: 6px 14px; font-size: 13px; }

/* ── Section Labels ───────────────────────── */
.sec-lbl {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.sec-lbl::after {
  content: ""; flex: 1; height: 1px;
  background: var(--border);
}
.sec-lbl.centered { justify-content: center; margin: 48px 0 16px; }
.sec-lbl.centered::before {
  content: ""; flex: 1; height: 1px;
  background: var(--border);
}

/* ── Info Page: Hero ──────────────────────── */
.hero { padding: 64px 0 48px; text-align: center; }
.hero .badge {
  display: inline-block;
  background: var(--gold-bg); color: var(--gold);
  padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(184,134,11,0.18);
}
.hero h1 {
  font-size: 46px; font-weight: 800; line-height: 1.12;
  margin-bottom: 16px; letter-spacing: -0.8px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.hero h1 span { color: var(--gold); }
.hero > p {
  font-size: 18px; color: var(--muted);
  max-width: 540px; margin: 0 auto 32px; line-height: 1.6;
}
.hero-cta {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}

/* ── Proof Pills ──────────────────────────── */
.proofrow { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.proof {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--muted2);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 18px; background: var(--card);
  box-shadow: var(--shadow-sm);
}
.proof b { color: var(--gold); font-weight: 700; }

/* ── Feature Cards ────────────────────────── */
.features-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 48px; }
.feat-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card); border: 1px solid var(--border-sub);
  border-radius: var(--radius); padding: 22px 24px;
  transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: var(--shadow-sm);
}
.feat-card:hover { transform: translateY(-2px); border-color: var(--gold-lt); box-shadow: var(--shadow-md); }
.feat-card .ic {
  font-size: 28px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-subtle); border-radius: 12px; flex-shrink: 0;
}
.feat-card .body { flex: 1; min-width: 0; }
.feat-card .ttl { font-size: 16px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.2px; }
.feat-card .desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.feat-card.highlight {
  border-color: var(--gold-lt);
  background: linear-gradient(135deg, rgba(184,134,11,0.06), rgba(184,134,11,0.015));
  box-shadow: 0 0 0 1px rgba(184,134,11,0.12), 0 8px 30px rgba(184,134,11,0.1);
}
.feat-card.highlight .ic { background: var(--gold-bg); border: 1px solid rgba(184,134,11,0.2); }

/* ── How It Works ─────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.how-card {
  background: var(--card); border: 1px solid var(--border-sub);
  border-radius: var(--radius); padding: 28px;
  border-left: 4px solid transparent; box-shadow: var(--shadow-sm);
}
.how-card.red { border-left-color: var(--red); }
.how-card.green { border-left-color: var(--green); }
.how-card .icon { font-size: 32px; margin-bottom: 12px; }
.how-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.how-card ul { list-style: none; color: var(--muted); font-size: 15px; }
.how-card ul li { padding: 6px 0; display: flex; align-items: center; gap: 10px; }

/* ── Screenshot Mockup (dark — contrast) ──── */
.screenshot-wrap {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid #334155; max-width: 900px; margin: 0 auto;
}
.screenshot-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid #334155;
}
.screenshot-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.screenshot-header .dot.r { background: #ef4444; }
.screenshot-header .dot.y { background: #f59e0b; }
.screenshot-header .dot.g { background: #22c55e; }
.screenshot-body { padding: 20px 24px; display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.screenshot-card {
  background: #1e293b; border: 1px solid #334155;
  border-radius: 10px; padding: 16px; font-size: 12px; color: #94a3b8;
}

/* ── FAQ ──────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm); padding: 24px; transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--gold-lt); box-shadow: var(--shadow-md); }
.faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CTA Footer ───────────────────────────── */
.cta-card {
  background: linear-gradient(135deg, var(--gold-bg) 0%, #FFF5DC 100%);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius); padding: 48px; text-align: center;
  margin: 48px 0 32px; box-shadow: var(--shadow-sm);
}
.cta-card h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.cta-card p { color: var(--muted); margin-bottom: 24px; font-size: 16px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ── Section Spacing ──────────────────────── */
.section { padding: 64px 0; }
.section h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.section .sub { font-size: 16px; color: var(--muted); max-width: 480px; margin-bottom: 36px; }

/* ═══════════════════════════════════════════
   DASHBOARD STYLES (light theme)
   ═══════════════════════════════════════════ */

/* Dashboard header */
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.dash-header h1 { font-size: 22px; font-weight: 700; }
.dash-header h1 span { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 12px; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.last-update { font-size: 11px; color: var(--muted); }

/* Dashboard grids */
.dash-grid-2 { display: grid; grid-template-columns: 1fr 340px; gap: 20px; margin-bottom: 24px; }
.dash-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.dash-grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; margin-bottom: 24px; }

/* Dashboard cards */
.dash-card {
  background: var(--card); border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm); padding: 16px;
  box-shadow: var(--shadow-sm);
}
.dash-card .d-label {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 4px; font-weight: 600;
}
.dash-card .d-value { font-size: 28px; font-weight: 700; }

/* Price Cards — Light Theme */
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.price-card {
  background: var(--card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm);
  padding: 24px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}
.price-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-lt);
  box-shadow: var(--shadow-md);
}
.price-card.buy { border-left: 3px solid var(--green); }
.price-card.sell { border-left: 3px solid var(--red); }
.price-card .pc-label {
  font-size: 13px; font-weight: 600;
  color: var(--muted2); text-transform: uppercase;
  letter-spacing: 0.8px; margin-bottom: 8px;
}
.price-card .pc-value {
  font-size: 32px; font-weight: 800;
  color: var(--text); letter-spacing: -0.5px;
}
.price-card .pc-sub { font-size: 12px; color: var(--muted2); margin-top: 6px; }

/* Signal status bar */
.signal-status {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm); padding: 14px 20px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.signal-status .sig-badge { font-size: 20px; font-weight: 800; }
.signal-status .sig-reason { font-size: 13px; color: var(--muted); flex: 1; min-width: 200px; }
.signal-status .sig-meta { display: flex; gap: 20px; font-size: 13px; color: var(--muted); }

/* Dashboard sections */
.dash-section { margin-bottom: 24px; }
.dash-section h2 {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px;
}

/* Tables */
.table-wrap {
  background: var(--card); border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  text-align: left; padding: 10px 16px; background: var(--gold-bg);
  color: var(--muted); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.5px; font-weight: 600;
}
td { padding: 10px 16px; border-top: 1px solid var(--border-sub); }
tr:hover { background: var(--gold-bg); }
.num { text-align: right; font-variant-numeric: tabular-nums; }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.badge-buy { background: var(--green-bg); color: var(--green); }
.badge-sell { background: var(--red-bg); color: var(--red); }
.badge-hold { background: var(--gold-bg); color: var(--amber); }
.badge-correct { background: var(--green-bg); color: var(--green); }
.badge-wrong { background: var(--red-bg); color: var(--red); }
.badge-pending { background: #F5F2EC; color: var(--muted); }

/* Chart */
.chart-wrap { position: relative; height: 280px; }
.chart-wrap svg { width: 100%; height: 100%; }
.chart-legend { display: flex; gap: 16px; margin-top: 8px; font-size: 12px; color: var(--muted); }
.chart-legend span { display: flex; align-items: center; gap: 4px; }
.chart-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.chart-tooltip {
  position: absolute; background: var(--card); border: 1px solid var(--gold);
  border-radius: var(--radius-xs); padding: 8px 12px; font-size: 12px;
  pointer-events: none; opacity: 0; transition: opacity 0.15s; z-index: 10;
  white-space: nowrap; box-shadow: var(--shadow-md);
}
.chart-tooltip.show { opacity: 1; }

/* News */
.news-list { max-height: 460px; overflow-y: auto; }
.news-item { padding: 10px 0; border-bottom: 1px solid var(--border-sub); font-size: 13px; }
.news-item:last-child { border-bottom: none; }
.news-item a { color: var(--text); text-decoration: none; }
.news-item a:hover { color: var(--gold); }
.news-item .news-date { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* DCA Calculator */
.dca-form { display: flex; flex-direction: column; gap: 10px; }
.dca-form label { font-size: 13px; color: var(--muted); font-weight: 500; }
.dca-input {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 10px 14px;
}
.dca-input span { color: var(--muted); font-size: 14px; }
.dca-input input {
  flex: 1; background: none; border: none; color: var(--text);
  font-size: 18px; font-weight: 700; outline: none;
  font-family: var(--font); -moz-appearance: textfield;
}
.dca-input input::-webkit-inner-spin-button { display: none; }
.dca-result {
  background: var(--gold-bg); border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius-xs); padding: 14px; font-size: 14px;
}
.dca-result strong { color: var(--gold); }
.dca-result .row { display: flex; justify-content: space-between; padding: 4px 0; }
.dca-result .row .h { color: var(--muted); }

/* Commentary */
.commentary-card {
  background: linear-gradient(135deg, var(--gold-bg) 0%, #FFF8E7 100%);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius-sm); padding: 20px 24px;
  font-size: 15px; line-height: 1.7;
}
.commentary-card .c-disclaimer {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid rgba(184,134,11,0.12);
  font-size: 11px; color: var(--muted); font-style: italic;
}

/* Accuracy */
.accuracy-row { display: flex; gap: 16px; }
.accuracy-card-item { flex: 1; text-align: center; }
.accuracy-card-item .big { font-size: 32px; font-weight: 700; }

/* Compare cards */
.compare-card { text-align: center; }

/* Loading */
.loading { text-align: center; padding: 60px; color: var(--muted); }
.spinner {
  width: 32px; height: 32px; border: 3px solid var(--border);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* User pill */
.user-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); padding: 6px 14px;
  border-radius: 999px; font-size: 13px;
  border: 1px solid var(--border); font-weight: 500;
}
.user-pill img { width: 26px; height: 26px; border-radius: 50%; }

/* Toast */
.toast {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--card); border: 1px solid var(--green);
  border-radius: var(--radius-xs); padding: 10px 16px;
  font-size: 13px; opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 100; pointer-events: none;
  box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* Footer */
footer {
  text-align: center; padding: 24px 0;
  color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .nav-header .hamburger { display: flex; }
  .hero h1 { font-size: 30px; }
  .hero > p { font-size: 16px; }
  .features-wrap { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .screenshot-body { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .cta-card { padding: 32px 20px; }
  .dash-grid-2, .dash-grid-3, .dash-grid-4 { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .signal-status { flex-direction: column; align-items: flex-start; }
  .signal-status .sig-meta { width: 100%; flex-wrap: wrap; }
  .accuracy-row { flex-direction: column; }
  .proofrow { flex-direction: column; align-items: center; }
  .dash-header { flex-direction: column; align-items: flex-start; }
  .about-link { display: none !important; }
  .header-live-dot { display: none !important; }
  #headerUserName { display: none !important; }
}
