/* ─── Hero ─── */
.insights-hero {
  background: var(--navy);
  padding: 80px 40px 72px;
  position: relative;
  overflow: hidden;
}

.insights-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.014) 48px,
    rgba(255,255,255,0.014) 49px
  );
  pointer-events: none;
}

.insights-hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

/* ─── Auour Thoughts wordmark ─── */
.at-wordmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.at-auour {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.at-thoughts {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--navy-pale);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.at-wordmark-sm .at-auour { font-size: 22px; }
.at-wordmark-sm .at-thoughts { font-size: 14px; letter-spacing: 0.1em; }

.insights-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy-pale);
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 32px;
}

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

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

/* ─── Featured grid ─── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.featured-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;
}

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

.fl-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;
}

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

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

.fl-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.fl-read {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

.featured-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

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

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

/* ─── Categories ─── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 28px;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}

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

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-icon-amber { background: var(--amber-pale); color: var(--amber-mid); }
.cat-icon-blue  { background: var(--blue-pale);  color: var(--blue-mid);  }
.cat-icon-teal  { background: #E1F5EE; color: #0F6E56; }

.cat-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.cat-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}

.cat-cadence {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* ─── Signup section ─── */
.signup-section {
  background: var(--navy);
  padding: 80px 40px;
}

.signup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.signup-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 14px;
}

.signup-sub {
  font-size: 15px;
  color: var(--navy-pale);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 22px;
}

.signup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signup-list li {
  font-size: 13px;
  color: var(--navy-pale);
  display: flex;
  align-items: center;
  gap: 8px;
}

.signup-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Signup card ─── */
.signup-form-wrap { display: flex; flex-direction: column; gap: 10px; }

.signup-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
}

.signup-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.signup-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ghost-signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signup-submit { margin-top: 4px; justify-content: center; }

.signup-fine {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ─── Signup success ─── */
.signup-success {
  text-align: center;
  padding: 24px 0 8px;
}

.ss-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EAF3DE;
  color: #3B6D11;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
}

.ss-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.ss-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Ghost note ─── */
.signup-ghost-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--navy-pale);
  opacity: 0.7;
}

.signup-ghost-note a { color: var(--navy-pale); text-decoration: underline; }
.signup-ghost-note strong { color: var(--white); }
.signup-ghost-note svg { flex-shrink: 0; }

/* ─── Ghost bridge section ─── */
.ghost-bridge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ghost-domain-link {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.ghost-domain-link:hover { opacity: 0.75; }

.gb-recent-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.gb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gb-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--text-mid);
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gb-tag:hover {
  border-color: rgba(12,35,64,0.2);
  background: var(--white);
  color: var(--text);
}

.gb-tag-more {
  color: var(--gold);
  border-color: rgba(184,134,11,0.2);
  background: var(--gold-pale);
}

.gb-tag-more:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

/* ─── Reveal ─── */

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .insights-hero { padding: 60px 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .signup-section { padding: 60px 20px; }
  .signup-inner { grid-template-columns: 1fr; gap: 36px; }
  .ghost-bridge { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .at-wordmark { flex-direction: column; gap: 4px; }
}
