/* ─── Hero ─── */
.hero-section {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-compass {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-inner { max-width: 620px; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-h1 em {
  font-style: italic;
  color: var(--navy-ghost);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy-pale);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 40px;
  border-top: 1px solid var(--navy-light);
  background: rgba(15, 42, 69, 0.6);
}

.hero-stat { flex: 1; padding: 0 32px; }
.hero-stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num span { font-size: 24px; color: var(--gold); }

.stat-label {
  font-size: 12px;
  color: var(--navy-pale);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--navy-light);
  flex-shrink: 0;
}

/* ─── Differentiators ─── */
.diff-header { margin-bottom: 48px; }

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

.diff-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}

.diff-card:hover { background: var(--cream); }

.diff-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.diff-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.diff-card .body-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.diff-link {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.diff-link:hover { opacity: 0.75; }

/* ─── Audience grid ─── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.audience-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 36px;
  transition: border-color 0.25s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.audience-card:hover {
  border-color: rgba(12,35,64,0.2);
  transform: translateY(-2px);
}

.audience-card-green:hover { border-color: rgba(59,109,17,0.25); }

.aud-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-weight: 500;
}

.aud-badge-blue { background: var(--blue-pale); color: var(--blue-mid); }
.aud-badge-green { background: var(--green-pale); color: var(--green-mid); }

.aud-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.aud-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.aud-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.aud-feature {
  font-size: 11px;
  background: var(--blue-pale);
  color: var(--blue-mid);
  padding: 3px 8px;
  border-radius: 3px;
}

.aud-feature-green { background: var(--green-pale); color: var(--green-mid); }

.aud-cta {
  font-size: 13px;
  color: var(--blue-mid);
  font-weight: 500;
}

/* ─── Insights ─── */
.insights-header { margin-bottom: 32px; }

.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.insight-lead {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 32px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.insight-lead:hover { border-color: rgba(12,35,64,0.2); transform: translateY(-2px); }

.insight-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber-pale);
  color: var(--amber-mid);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 14px;
  font-weight: 500;
}

.insight-lead-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.insight-lead-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.insights-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-small {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px 20px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
}

.insight-small:hover { background: var(--cream); border-color: rgba(12,35,64,0.15); }

.insight-tag-small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.insight-small-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}

.insight-small-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── Reveal animations ─── */

/* ─── Homepage newsletter strip ─── */
.home-newsletter {
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  padding: 48px 40px;
}

.hn-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.at-wordmark-home {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.at-auour-home {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.at-thoughts-home {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--navy-pale);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.hn-text { flex: 1; min-width: 240px; }

.hn-sub {
  font-size: 13px;
  color: var(--navy-pale);
  line-height: 1.6;
  max-width: 380px;
}

.hn-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.hn-form {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--navy-muted);
}

.hn-input {
  font-family: var(--font-body);
  font-size: 13px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  padding: 10px 14px;
  outline: none;
  width: 220px;
  transition: background 0.2s;
}

.hn-input::placeholder { color: var(--navy-muted); }
.hn-input:focus { background: rgba(255,255,255,0.1); }

.hn-btn {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.hn-btn:hover { background: var(--gold-light); }

.hn-success {
  font-size: 13px;
  color: #97C459;
  padding: 10px 0;
}

.hn-browse {
  font-size: 12px;
  color: var(--navy-pale);
  text-align: center;
  transition: color 0.2s;
}

.hn-browse:hover { color: var(--white); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .home-newsletter { padding: 40px 20px; }
  .hn-inner { gap: 28px; }
  .hn-input { width: 180px; }
  .hero-compass { display: none; }
  .hero-content { padding: 48px 20px 32px; }
  .hero-stats { padding: 20px; gap: 0; }
  .hero-stat { padding: 0 16px; }
  .diff-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-stat { padding: 0; }
}
