:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #1A1A1A;
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-dim: rgba(34,197,94,0.12);
  --orange: #F59E0B;
  --orange-dim: rgba(245,158,11,0.15);
  --text: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --border: #1F1F1F;
  --border-light: #2A2A2A;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  color: var(--green-dark);
}

/* ── HEADER ── */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}

header.site .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--green);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--green);
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover {
  background: var(--green-dark);
  color: #000 !important;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  background: var(--bg-card);
  color: var(--text) !important;
}

.btn-header {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 20px;
}

/* ── HERO ── */
.hero {
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-dim);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.hero h1 .accent {
  color: var(--green);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 480px;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.btn-hero {
  padding: 14px 32px !important;
  font-size: 1.05rem !important;
}

/* Inline trust strip */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.hero-trust-strip span {
  white-space: nowrap;
}

/* Feature chips */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-feat .feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.feat-icon.green  { background: var(--green-dim); }
.feat-icon.orange { background: var(--orange-dim); }

.hero-feat strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 1px;
}

.hero-feat .feat-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Hero video card */
.hero-video-card {
  background: var(--bg-card);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 24px rgba(34,197,94,0.15), 0 2px 12px rgba(0,0,0,0.4);
}

.hero-video-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--border-light);
  background: #000;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-caption {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── LIVE OUTPUT SAMPLE ── */
.live-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.live-demo-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}

.match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.match-left {
  background: #1A1A1A;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-score {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}

.match-right {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-right::before {
  content: '\2713';
  font-weight: 700;
}

.live-demo-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: monospace;
}

/* ── SECTIONS ── */
.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section.block {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

section.block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

section.block h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

section.block p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}
.card:hover {
  border-color: var(--border-light);
}

.card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.card p, .card {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
ol.steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

ol.steps li {
  counter-increment: step-counter;
  padding: 16px 0 16px 56px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

ol.steps li:last-child {
  border-bottom: none;
}

ol.steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 14px;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ── CHECKLIST ── */
ul.check {
  list-style: none;
  padding: 0;
}

ul.check li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

ul.check li:last-child {
  border-bottom: none;
}

ul.check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── FAQ ── */
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 8px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.faq details p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── CTA ── */
.cta-block {
  text-align: center;
  padding: 4rem 2rem;
}

.cta-block h2 {
  margin-bottom: 1.5rem;
}

/* ── TRUST BAR ── */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 2rem;
  padding: 14px 20px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--green);
}

/* ── FOOTER ── */
footer.site {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
}

footer.site a {
  color: var(--text-dim);
}
footer.site a:hover {
  color: var(--text-muted);
}

/* ── NOTE ── */
.note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1rem;
}
