:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --gold: #d4af37;
  --gold-light: #f0d77b;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f0d77b 50%, #d4af37 100%);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --success: #22c55e;
  --border: #2a2a2a;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: all 0.25s ease; text-decoration: none; font-family: inherit; }
.btn-primary { background: var(--gold-gradient); color: #0a0a0a; box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.45); color: #0a0a0a; }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(212,175,55,0.1); color: var(--gold-light); }
.btn-full { width: 100%; }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 40px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 42px; height: 42px; background: var(--gold-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: #0a0a0a; box-shadow: 0 0 20px rgba(212,175,55,0.4); }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong { font-size: 16px; letter-spacing: 1px; color: var(--gold); font-weight: 700; }
.logo-text span { font-size: 10px; color: var(--text-secondary); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 110px 24px 70px; background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(212,175,55,0.08) 0%, transparent 55%), linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 75% 40%, rgba(212,175,55,0.1) 0%, transparent 60%); pointer-events: none; z-index: 1; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, #0a0a0a 0%, transparent 100%); pointer-events: none; z-index: 1; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.hero-content { max-width: 480px; }
.hero-tag { display: inline-block; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; }
.hero-features { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.hero-feature svg { width: 18px; height: 18px; color: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-promo { flex: 0 1 340px; max-width: 360px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.5); border: 1px solid rgba(212,175,55,0.25); }
.hero-promo img { width: 100%; display: block; }
.hero-stats-card { background: rgba(18,18,18,0.85); border: 1px solid rgba(212,175,55,0.25); border-radius: 16px; padding: 24px 28px; backdrop-filter: blur(16px); min-width: 200px; flex-shrink: 0; }
.hero-stats-card .label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.hero-stats-card .value { font-size: 36px; font-weight: 800; color: var(--gold); }
.hero-stats-card .extra { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-secondary); }
.hero-stats-card .extra strong { color: var(--success); }
.section { padding: 80px 40px; max-width: 1280px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.section-title p { color: var(--text-secondary); font-size: 16px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.3s; }
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 20px; background: rgba(212,175,55,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: var(--gold); }
.feature-card p { font-size: 13px; color: var(--text-secondary); }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 60px; }
.strategy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.strategy-points { list-style: none; }
.strategy-points li { display: flex; gap: 14px; margin-bottom: 20px; font-size: 14px; color: var(--text-secondary); }
.strategy-points li .num { width: 28px; height: 28px; border-radius: 50%; background: rgba(212,175,55,0.15); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.example-box { background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04)); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius); padding: 28px; }
.example-box h3 { color: var(--gold); margin-bottom: 16px; font-size: 18px; }
.example-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
.example-row:last-child { border-bottom: none; }
.example-row strong { color: var(--gold); }
.steps { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 60px; flex-wrap: wrap; }
.step { flex: 1; min-width: 120px; text-align: center; }
.step-num { width: 56px; height: 56px; margin: 0 auto 14px; background: var(--bg-card); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); font-weight: 700; }
.step h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--gold); }
.step p { font-size: 12px; color: var(--text-secondary); max-width: 140px; margin: 0 auto; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.stat-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.stat-item .number { font-size: 32px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.stat-item .label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.testimonial { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testimonial .quote { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; font-style: italic; }
.testimonial .stars { color: var(--gold); margin-bottom: 14px; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #0a0a0a; font-size: 14px; }
.cta-banner { background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.cta-banner h3 { font-size: 24px; margin-bottom: 8px; }
.cta-banner p { color: var(--text-secondary); }
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px 40px 30px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-secondary); font-size: 13px; margin-top: 16px; max-width: 280px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-secondary); font-size: 14px; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
.form-control { width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); font-size: 14px; }
.form-control:focus { outline: none; border-color: var(--gold); }
/* Dashboard */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar { width: 260px; background: var(--bg-secondary); border-right: 1px solid var(--border); display: flex; flex-direction: column; padding: 24px 16px; position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; overflow-y: auto; }
.sidebar-logo { display: flex; align-items: center; gap: 10px; padding: 0 8px 24px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-nav { list-style: none; flex: 1; }
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(212,175,55,0.15); color: var(--gold); }
.sidebar-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-help { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin: 16px 0; }
.sidebar-help p { font-size: 12px; color: var(--text-secondary); margin-bottom: 12px; }
.sidebar-strategy { background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius); padding: 16px; text-align: center; }
.sidebar-strategy h4 { font-size: 13px; color: var(--gold); margin-bottom: 4px; }
.sidebar-strategy p { font-size: 11px; color: var(--text-secondary); }
.main-content { margin-left: 260px; flex: 1; min-height: 100vh; }
.topbar { height: 70px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 32px; background: var(--bg-secondary); position: sticky; top: 0; z-index: 50; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.user-menu { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #0a0a0a; font-size: 13px; }
.dashboard-body { padding: 32px; }
.welcome-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; flex-wrap: wrap; gap: 20px; }
.welcome-row h1 { font-size: 24px; font-weight: 700; }
.badge { display: inline-block; background: rgba(34,197,94,0.15); color: var(--success); font-size: 12px; padding: 4px 10px; border-radius: 20px; margin-left: 10px; font-weight: 500; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.kpi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: relative; }
.kpi-card .label { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.kpi-card .value { font-size: 24px; font-weight: 700; }
.kpi-card .sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.kpi-card.highlight .value { color: var(--gold); }
.charts-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; margin-bottom: 28px; }
.chart-card, .table-card, .actions-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.chart-card .header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.chart-card h3, .table-card h3, .actions-card h3 { font-size: 15px; font-weight: 600; }
.perf { font-size: 28px; font-weight: 800; color: var(--success); }
.perf-sub { font-size: 12px; color: var(--text-secondary); }
.fake-chart { height: 200px; }
.bottom-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; color: var(--text-muted); font-weight: 500; padding: 10px 8px; border-bottom: 1px solid var(--border); }
td { padding: 12px 8px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
td.positive { color: var(--success); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; background: rgba(34,197,94,0.15); color: var(--success); }
.action-btn { display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 16px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); font-size: 14px; margin-bottom: 10px; cursor: pointer; text-align: left; font-family: inherit; }
.action-btn:hover { border-color: var(--gold); color: var(--gold); }
.action-btn.primary { background: var(--gold-gradient); color: #0a0a0a; border: none; font-weight: 600; }
.risk-notice { background: rgba(234,179,8,0.08); border: 1px solid rgba(234,179,8,0.25); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 12px; color: var(--text-secondary); display: flex; gap: 10px; margin-top: 28px; }
.page-panel { display: none; }
.page-panel.active { display: block; }
.donut-wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.donut { width: 130px; height: 130px; border-radius: 50%; background: conic-gradient(#d4af37 0% 40%, #c9a227 40% 70%, #b8941f 70% 90%, #a07d15 90% 100%); position: relative; flex-shrink: 0; }
.donut::after { content: ''; position: absolute; inset: 26px; background: var(--bg-card); border-radius: 50%; }
.donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1; font-size: 13px; font-weight: 700; }
.legend { list-style: none; flex: 1; }
.legend li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.legend .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
@media (max-width: 1100px) {
  .features-grid, .kpi-grid, .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .charts-row, .bottom-row, .two-col, .strategy-grid { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-features, .hero-cta { justify-content: center; }
  .hero h1 { font-size: 36px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }
  .sidebar { transform: translateX(-100%); }
  .main-content { margin-left: 0; }
  .features-grid, .kpi-grid, .stats-bar, .testimonials, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 20px; }
}


/* Hero centered layout */
.hero-centered {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 40px;
}
.hero-centered .hero-tag {
  margin-bottom: 16px;
}
.hero-centered h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero-centered h1 span {
  color: var(--gold);
}
.hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-main-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.25);
}
.hero-main-img img {
  width: 100%;
  display: block;
  vertical-align: middle;
  animation: heroImgPulse 6s ease-in-out infinite;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.35) 100%);
  pointer-events: none;
}
@keyframes heroImgPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.02); filter: brightness(1.05); }
}
@media (max-width: 768px) {
  .hero-centered h1 { font-size: 34px; }
  .hero-lead { font-size: 15px; }
  .hero-main-img { border-radius: 12px; }
}
