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

:root {
  --bg: #05070d;
  --surface: #0f131c;
  --surface2: #161b28;
  --border: rgba(255,255,255,.08);
  --text: #f5f7ff;
  --body: #c2cee0;
  --muted: #8493a8;
  --a1: #6fff00;
  --a2: #34f5c5;
  --grad: linear-gradient(135deg, #6fff00, #34f5c5);
  --warn: #fbbf24;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  min-height: 100vh;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(5,7,13,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0;
}
.brand { font-weight: 800; font-size: 1.1rem; color: var(--text); text-decoration: none; letter-spacing: -.02em; }
.header-nav { display: flex; gap: 1.25rem; }
.header-nav a { font-size: .85rem; font-weight: 600; color: var(--muted); text-decoration: none; }
.header-nav a:hover { color: var(--a2); }

/* Hero */
.hero {
  padding: 2.5rem 0 1.5rem;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(111,255,0,.1), transparent);
}
.eyebrow { font-size: .85rem; font-weight: 700; color: var(--a2); margin-bottom: .5rem; }
.hero h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: .75rem; }
.lead { font-size: 1rem; color: var(--muted); max-width: 640px; margin-bottom: 1.25rem; }
.lead strong { color: var(--a1); }
.lead em { color: var(--warn); font-style: normal; }
.stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: .65rem 1.1rem; min-width: 90px;
}
.stat b { display: block; font-size: 1.4rem; font-weight: 800; color: var(--a1); line-height: 1; }
.stat span { font-size: .75rem; color: var(--muted); }

.legal-bar {
  font-size: .8rem; color: #d4a574;
  background: rgba(251,191,36,.07);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 8px; padding: .7rem 1rem;
  margin-bottom: 1.5rem;
}

/* Funnel */
.funnel { margin-bottom: 1.5rem; }
.funnel-box {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 1.5rem; border-radius: 14px;
  background: linear-gradient(135deg, rgba(111,255,0,.08), rgba(52,245,197,.05));
  border: 1px solid rgba(111,255,0,.2);
}
.pill {
  display: inline-block; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--grad); color: #06130a;
  padding: .2rem .5rem; border-radius: 4px; margin-bottom: .35rem;
}
.funnel h2 { font-size: 1.1rem; color: var(--text); margin-bottom: .2rem; }
.funnel p { font-size: .88rem; color: var(--muted); }
.btn-main {
  display: inline-block; padding: .7rem 1.3rem;
  background: var(--grad); color: #06130a;
  font-weight: 800; font-size: .9rem; text-decoration: none;
  border-radius: 10px; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(111,255,0,.2);
}
.btn-main:hover { filter: brightness(1.08); }

/* Controls */
.controls { margin-bottom: 1rem; }
#search {
  width: 100%; padding: .85rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 1rem;
  font-family: inherit; outline: none; margin-bottom: .85rem;
}
#search:focus { border-color: rgba(52,245,197,.4); }
.toolbar {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: .5rem;
}
.cats { display: flex; flex-wrap: wrap; gap: .4rem; flex: 1; }
.cat {
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer; font-family: inherit;
  transition: all .15s;
}
.cat:hover { border-color: rgba(52,245,197,.3); color: var(--text); }
.cat.on { background: rgba(52,245,197,.12); border-color: var(--a2); color: var(--a2); }
.aff-toggle { font-size: .8rem; color: var(--muted); cursor: pointer; white-space: nowrap; padding-top: .35rem; }
.aff-toggle input { accent-color: var(--a1); }
.meta { font-size: .78rem; color: var(--muted); margin-bottom: .75rem; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: .85rem;
  padding-bottom: 2.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(52,245,197,.25); transform: translateY(-2px); }
.card.featured {
  border-color: rgba(111,255,0,.35);
  background: linear-gradient(180deg, rgba(111,255,0,.06), var(--surface));
  grid-column: 1 / -1;
  max-width: 100%;
}
@media(min-width:700px){ .card.featured { grid-column: span 2; } }

.badges { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .5rem; min-height: 1.2rem; }
.badge {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: .15rem .45rem; border-radius: 4px;
}
.badge.pick { background: rgba(111,255,0,.12); color: var(--a1); border: 1px solid rgba(111,255,0,.25); }
.badge.aff { background: rgba(249,115,22,.12); color: #fb923c; border: 1px solid rgba(249,115,22,.25); }

.top { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .5rem; }
.ico { font-size: 1.5rem; line-height: 1; }
.card h3 { font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.val { font-size: .78rem; font-weight: 600; color: var(--a2); }
.desc { font-size: .84rem; color: var(--muted); margin-bottom: .45rem; flex: 1; }
.how { font-size: .76rem; color: var(--muted); margin-bottom: .75rem; }
.how strong { color: var(--body); }

.go {
  display: block; text-align: center; padding: .55rem;
  border-radius: 8px; font-size: .82rem; font-weight: 700;
  text-decoration: none; color: var(--text);
  border: 1px solid var(--border); margin-top: auto;
  transition: all .15s;
}
.go:hover { border-color: var(--a2); color: var(--a2); }
.go.aff { border-color: rgba(249,115,22,.35); color: #fb923c; }
.go.aff:hover { background: rgba(249,115,22,.08); }
.card.featured .go { background: var(--grad); color: #06130a; border: none; font-weight: 800; }

.empty { text-align: center; color: var(--muted); padding: 2rem; }

.legal-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0; background: var(--surface);
}
.legal-footer h3 { font-size: .9rem; color: var(--text); margin-bottom: .5rem; }
.legal-footer p { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.legal-footer a { color: var(--a2); }

.footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding: 1.25rem 0 2rem; font-size: .8rem; color: var(--muted);
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--a2); }

@media(max-width:600px){
  .funnel-box { flex-direction: column; align-items: flex-start; }
  .btn-main { width: 100%; text-align: center; }
  .grid { grid-template-columns: 1fr; }
  .card.featured { grid-column: 1; }
}
