.strategies-hub {
  --sh-accent: #0b7a4b;
  --sh-accent-soft: rgba(11, 122, 75, 0.12);
  --sh-accent-glow: rgba(62, 207, 142, 0.35);
  --sh-ink: #0f1a14;
  --sh-muted: #5a6b62;
  --sh-surface: #ffffff;
  --sh-surface-2: #f4faf7;
  --sh-border: rgba(15, 26, 20, 0.08);
  --sh-radius: 18px;
  --sh-shadow: 0 18px 50px rgba(15, 26, 20, 0.08);
  color: var(--sh-ink);
  margin: -1rem -1.25rem 0;
  padding-bottom: 2rem;
}

[data-scheme="dark"] .strategies-hub {
  --sh-ink: #e8f3ec;
  --sh-muted: #9bb0a4;
  --sh-surface: #1a2420;
  --sh-surface-2: #243029;
  --sh-border: rgba(232, 243, 236, 0.1);
  --sh-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --sh-accent: #3ecf8e;
  --sh-accent-soft: rgba(62, 207, 142, 0.14);
}

.strategies-hub * {
  box-sizing: border-box;
}

.sh-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, var(--sh-accent-soft), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(43, 65, 181, 0.08), transparent 55%),
    linear-gradient(165deg, var(--sh-surface-2) 0%, var(--sh-surface) 55%);
  border-bottom: 1px solid var(--sh-border);
}

.sh-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 220px;
  background: radial-gradient(circle, var(--sh-accent-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.sh-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--sh-accent-soft);
  color: var(--sh-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sh-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.sh-lead {
  max-width: 42rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--sh-muted);
}

.sh-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.sh-stat {
  padding: 0.65rem 1rem;
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  background: var(--sh-surface);
  font-size: 0.88rem;
  color: var(--sh-muted);
}

.sh-stat strong {
  color: var(--sh-ink);
}

.sh-section {
  padding: 2.5rem 1.5rem 0;
}

.sh-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sh-section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.sh-section-head p {
  margin: 0.35rem 0 0;
  color: var(--sh-muted);
  font-size: 0.95rem;
}

.sh-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  padding: 1.35rem;
  border-radius: calc(var(--sh-radius) + 4px);
  background: linear-gradient(135deg, #102219 0%, #163828 45%, #0b7a4b 100%);
  color: #f4fff8;
  box-shadow: var(--sh-shadow);
}

.sh-feature-copy h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
}

.sh-feature-copy p {
  margin: 0 0 1.1rem;
  color: rgba(244, 255, 248, 0.82);
  line-height: 1.6;
}

.sh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.sh-tag {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.sh-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: 12px;
  background: #3ecf8e;
  color: #0a1f14;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sh-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(62, 207, 142, 0.35);
  color: #0a1f14;
}

.sh-cta-secondary {
  background: transparent;
  color: #f4fff8;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-left: 0.65rem;
}

.sh-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.sh-feature-visual {
  border-radius: var(--sh-radius);
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sh-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.sh-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 150px;
  padding: 1.2rem 1.25rem;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-border);
  background: var(--sh-surface);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sh-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 122, 75, 0.28);
  box-shadow: var(--sh-shadow);
  color: inherit;
}

.sh-card.wide {
  grid-column: span 6;
}

.sh-card.tall {
  grid-column: span 4;
  min-height: 190px;
}

.sh-card.accent {
  background: linear-gradient(160deg, var(--sh-accent-soft), var(--sh-surface));
}

.sh-card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-accent);
}

.sh-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.sh-card p {
  margin: 0;
  color: var(--sh-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sh-card-arrow {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sh-accent);
}

.sh-reads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.sh-read {
  display: block;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--sh-border);
  background: var(--sh-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sh-read:hover {
  border-color: rgba(11, 122, 75, 0.3);
  transform: translateY(-2px);
  color: inherit;
}

.sh-read span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sh-accent);
  margin-bottom: 0.45rem;
}

.sh-read strong {
  display: block;
  line-height: 1.35;
}

.sh-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sh-tool {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--sh-border);
  background: var(--sh-surface-2);
  color: var(--sh-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sh-tool:hover {
  background: var(--sh-accent-soft);
  border-color: rgba(11, 122, 75, 0.25);
  color: var(--sh-ink);
}

@media (max-width: 900px) {
  .sh-feature {
    grid-template-columns: 1fr;
  }

  .sh-card,
  .sh-card.wide,
  .sh-card.tall {
    grid-column: span 12;
  }

  .sh-cta-secondary {
    margin-left: 0;
    margin-top: 0.65rem;
  }
}

@media (max-width: 640px) {
  .sh-hero {
    padding: 2.5rem 1rem 2rem;
  }

  .sh-section {
    padding: 2rem 1rem 0;
  }

  .sh-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
