/* ── Hero ── */

.hero {
  padding: 140px 0 0;
}

.hero__eyebrow {
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 15px;
  color: var(--text-3);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 80px;
}

/* ── Hero feed (live opportunity cards) ── */

.hero__feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero__feed-col {
  display: flex;
  flex-direction: column;
}

.hero__feed-col:first-child {
  border-right: 1px solid var(--border);
}

/* ── Stats strip ── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stats__item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats__item:last-child { border-right: none; }

/* ── How section ── */

.how {
  padding: 100px 0;
}

.how__header {
  margin-bottom: 64px;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.how__step {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how__step-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-4);
}

.how__step-title {
  font-size: 17px;
  font-weight: 700;
}

.how__step-body {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── Features section ── */

.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.features__header {
  margin-bottom: 80px;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1px;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}

.feature + .feature {
  margin-top: 64px;
}

.feature__text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.feature__title { font-size: 24px; font-weight: 800; letter-spacing: -0.3px; }
.feature__body { font-size: 14px; color: var(--text-3); line-height: 1.7; max-width: 400px; }

.feature__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.feature__checks li {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature__checks li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--indigo);
  border-radius: 1px;
  flex-shrink: 0;
}

.feature__visual {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  border-left: 1px solid var(--border);
}

.feature--reverse .feature__text { order: 2; }
.feature--reverse .feature__visual { order: 1; border-left: none; border-right: 1px solid var(--border); }

/* ── CTA section ── */

.cta-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 36px;
}

/* ── Lens grid inside feature visual ── */

.lens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.lens-cell {
  background: var(--surface);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lens-cell__name { font-size: 13px; font-weight: 700; }

/* ── Verdict block inside feature visual ── */

.verdict {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verdict__bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.verdict__bar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.verdict__bar-fill {
  height: 100%;
  background: var(--text-1);
  border-radius: 2px;
}

/* ── Brief block ── */

.brief {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brief__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brief__metrics {
  display: flex;
  gap: 32px;
}

.brief__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
