/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1b2a;
  --bg-card: #132033;
  --bg-card-hover: #1a2a40;
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.12);
  --amber-glow: rgba(245,158,11,0.25);
  --text: #e8edf5;
  --text-muted: #8899aa;
  --text-dim: #56667a;
  --border: rgba(255,255,255,0.07);
  --radius: 10px;
  --radius-sm: 6px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* === NAVBAR === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(12px);
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.topbar__links {
  display: flex;
  gap: 2rem;
}

.topbar__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.topbar__links a:hover { color: var(--text); }

/* === HERO === */
.hero {
  padding: 0;
}

.hero__stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.9rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}

.stat__value {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
}

.stat__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.stat-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.hero__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 3rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--amber-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__headline {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.headline-amber { color: var(--amber); }

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: #0d1b2a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
}

/* === DASHBOARD CARD === */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.08);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.dash-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2s ease-in-out infinite;
}

.dash-opportunities {
  padding: 0.5rem 0;
}

.opp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.opp:last-child { border-bottom: none; }
.opp:hover { background: rgba(255,255,255,0.03); }

.opp__info { display: flex; flex-direction: column; }
.opp__name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.opp__source { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.15rem; }

.opp__metrics { text-align: right; }
.opp__roi { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; color: #22c55e; }
.opp__roi--warm { color: var(--amber); }
.opp__roi--cool { color: #60a5fa; }
.opp__profit { font-size: 0.68rem; color: var(--text-muted); display: block; margin-top: 0.1rem; }

.dash-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.dash-link { color: var(--amber); text-decoration: none; font-weight: 500; }
.dash-link:hover { text-decoration: underline; }

/* === HOW SECTION === */
.how {
  padding: 5rem 3rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0f1e2e 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
}

.step {
  flex: 1;
  padding-right: 1.5rem;
}

.step__num {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step__content h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.step__content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  padding-top: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

/* === FEATURES === */
.features {
  padding: 5rem 3rem;
  background: #0f1e2e;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.feature {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.2s;
}

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

.feature__icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto__inner { max-width: 720px; margin: 0 auto; }

.manifesto__quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--amber);
  font-style: normal;
}

.manifesto__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.manifesto__body em { color: var(--text); font-style: italic; }

.manifesto__stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.manifesto__stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
}

.manifesto__stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === OPPORTUNITY TABLE === */
.opportunity {
  padding: 5rem 3rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0f1e2e 100%);
}

.opportunity__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.opportunity__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter.active, .filter:hover {
  background: var(--amber-dim);
  border-color: rgba(245,158,11,0.3);
  color: var(--amber);
}

.opp-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.opp-table__head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr 1fr 0.8fr;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.opp-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr 1fr 0.8fr;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  align-items: center;
  transition: background 0.15s;
}

.opp-table__row:last-child { border-bottom: none; }
.opp-table__row:hover { background: rgba(255,255,255,0.03); }

.opp-table__row--hot { background: rgba(245,158,11,0.04); }
.opp-table__row--hot:hover { background: rgba(245,158,11,0.07); }

.row-product { font-weight: 600; color: var(--text); }
.row-source { color: var(--text-muted); font-size: 0.78rem; }
.row-price { color: var(--text-muted); font-size: 0.78rem; }
.row-profit { color: #22c55e; font-weight: 600; font-size: 0.88rem; }
.row-roi { font-family: 'Sora', sans-serif; font-weight: 700; color: #22c55e; }
.row-bsr { color: var(--text-dim); font-size: 0.78rem; }

.row-buy {
  display: inline-block;
  background: var(--amber-dim);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid rgba(245,158,11,0.2);
}

.row-buy:hover { background: var(--amber); color: #0d1b2a; }

.opp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
  gap: 1rem;
}

.opp-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === CLOSING === */
.closing {
  padding: 6rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing__inner { max-width: 680px; margin: 0 auto; }

.closing__headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.closing__actions { display: flex; justify-content: center; }

/* === FOOTER === */
.footer {
  padding: 2.5rem 3rem 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer__brand p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__bottom span { font-size: 0.78rem; color: var(--text-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .opp-table__head, .opp-table__row { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .opp-table__head span:nth-child(n+5), .opp-table__row span:nth-child(n+5) { display: none; }
  .hero__stats-bar { overflow-x: auto; }
  .steps { flex-direction: column; gap: 1.5rem; }
  .step-connector { display: none; }
  .topbar { padding: 1rem 1.5rem; }
  .topbar__links { display: none; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .how, .features, .opportunity, .closing, .manifesto { padding: 3rem 1.5rem; }
  .hero__body { padding: 2.5rem 1.5rem 2rem; }
  .opp-table__head, .opp-table__row { grid-template-columns: 2fr 1fr 1fr; }
  .opp-table__head span:nth-child(n+4), .opp-table__row span:nth-child(n+4) { display: none; }
}