/* — HERO — */
.hero {
  display: flex;
  flex-direction: column;
  padding: 2rem 2.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--subtext);
  max-width: 640px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* — STAT STRIP — */
.stat-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--surface);
}

.stat {
  flex: 1;
  min-width: 180px;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}
.stat:hover { background: rgba(200,16,46,0.06); cursor: pointer; }

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-value.red {
  color: var(--accent);
}

.stat-value.green {
  color: var(--green);
}

.stat-value.yellow {
  color: var(--yellow);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* — CTA ROW — */
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* — FINDINGS — */
section {
  padding: 2.5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--subtext);
  max-width: 580px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.finding-card {
  background: var(--surface);
  padding: 1.5rem;
  transition: background .2s;
}

.finding-card:hover {
  background: #141720;
}

.finding-soe {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.finding-entity {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.finding-value {
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.finding-desc {
  font-size: 12px;
  color: var(--subtext);
  line-height: 1.5;
}

/* — METHODOLOGY — */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.method-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
}

.method-number {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 0.3rem;
}

.method-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.method-desc {
  font-size: 12px;
  color: var(--subtext);
  line-height: 1.5;
}

/* — BRIEF — */
.brief-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 3rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.brief-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.brief-text {
  flex: 1;
  min-width: 260px;
}

.brief-form {
  min-width: 300px;
}

.brief-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.brief-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.brief-desc {
  font-size: 0.9rem;
  color: var(--subtext);
  line-height: 1.6;
}

.brief-bullets {
  list-style: none;
  margin-top: 1rem;
}

.brief-bullets li {
  font-size: 12px;
  color: var(--subtext);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.brief-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* — TICKER — */
.ticker-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.55rem 0;
}

.ticker {
  display: flex;
  gap: 4rem;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--subtext);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker-item .dot {
  color: var(--accent);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
