@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ebe7e2;
  --bg-deep: #251b13;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #251b13;
  --muted: #6d5848;
  --brand: #815b41;
  --brand-soft: #d8c7b7;
  --accent: #d6b252;
  --accent-strong: #f1c862;
  --teal: #35d8c6;
  --border: rgba(129, 91, 65, 0.18);
  --shadow: 0 24px 60px rgba(37, 27, 19, 0.12);
  --shadow-soft: 0 14px 34px rgba(37, 27, 19, 0.08);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, #ebe7e2 0%, #e0d3c4 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(129, 91, 65, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 91, 65, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-left {
  top: -4rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(129, 91, 65, 0.22);
}

.glow-right {
  right: -8rem;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(214, 178, 82, 0.22);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(37, 27, 19, 0.08);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(37, 27, 19, 0.12);
  padding: 1rem 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.nav-logo-text .pre {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: .7rem;
  color: #e0d3c4;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-logo-text .main {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.mobile-nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #251b13;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}

.nav-links a::after,
.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #35d8c6;
  transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: #815b41;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a.is-active::after {
  width: 100%;
}

.nav-cta {
  background: #35d8c6 !important;
  color: #251b13 !important;
  padding: .55rem 1.5rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #22c4b2 !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(129, 91, 65, .18);
  border-radius: 999px;
  background: rgba(129, 91, 65, 0.06);
  backdrop-filter: blur(10px);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #251b13;
  content: '';
  transition: 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded='true'] span {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] span::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span::after {
  transform: rotate(-45deg) translate(1px, -1px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 5.4rem;
  right: 1.5rem;
  z-index: 490;
}

.mobile-nav-inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  min-width: 240px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(129, 91, 65, .14);
  box-shadow: 0 20px 50px rgba(37, 27, 19, .18);
}

.hero,
.section {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 5rem 0 4rem;
}

main .hero:first-child {
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background: var(--bg-deep);
  overflow: hidden;
}

main .hero:first-child::before,
main .hero:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

main .hero:first-child::before {
  background:
    linear-gradient(135deg, rgba(53, 216, 198, 0.07), transparent 45%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(129, 91, 65, 0.2) 0%, transparent 70%);
}

main .hero:first-child::after {
  opacity: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
}

main .hero:first-child h1,
main .hero:first-child h2,
main .hero:first-child h3,
main .hero:first-child p,
main .hero:first-child .meta {
  position: relative;
  z-index: 1;
}

main .hero:first-child h1,
main .hero:first-child h2 {
  color: #ffffff;
}

main .hero:first-child .lead,
main .hero:first-child .meta {
  color: #e0d3c4;
}

main .hero:first-child .accent {
  color: #35d8c6;
}

main .hero:first-child .eyebrow {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(53, 216, 198, .22);
  color: #35d8c6;
}

main .hero:first-child .btn.secondary {
  border-color: rgba(255, 255, 255, .16);
  color: #e0d3c4;
}

main .hero:first-child .btn.secondary:hover {
  color: #ffffff;
  border-color: rgba(53, 216, 198, .35);
  background: rgba(255, 255, 255, .04);
}

.about-hero,
main .hero.about-hero:first-child {
  overflow: hidden;
  background: #251b13;
}

.about-hero::before {
  background:
    linear-gradient(135deg, rgba(53, 216, 198, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(129, 91, 65, 0.18) 0%, transparent 70%);
}

.about-hero-grid {
  grid-template-columns: 1fr;
}

.about-hero .eyebrow {
  padding: 0.55rem 0.7rem;
}

.hero-parallax-bg {
  position: absolute;
  inset: -3%;
  will-change: transform;
}

.about-hero-bg {
  background:
    linear-gradient(rgba(20, 14, 10, 0.72), rgba(20, 14, 10, 0.72)),
    linear-gradient(135deg, rgba(53, 216, 198, 0.14), transparent 45%),
    url("/assets/media/data-center-coworkers-laughing-having-fun.jpg");
  background-size: cover;
  background-position: center;
}

.impact-hero,
main .hero.impact-hero:first-child {
  overflow: hidden;
  background: #251b13;
}

.impact-hero::before {
  background:
    linear-gradient(135deg, rgba(53, 216, 198, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(129, 91, 65, 0.18) 0%, transparent 70%);
}

.impact-hero-bg {
  background:
    linear-gradient(rgba(20, 14, 10, 0.78), rgba(20, 14, 10, 0.78)),
    linear-gradient(135deg, rgba(53, 216, 198, 0.12), transparent 45%),
    url("/assets/media/business-people-working-laptop.jpg");
  background-size: cover;
  background-position: center;
}

.resource-hero-bg {
  background:
    linear-gradient(rgba(20, 14, 10, 0.78), rgba(20, 14, 10, 0.78)),
    linear-gradient(135deg, rgba(53, 216, 198, 0.12), transparent 45%),
    url("/assets/media/group-afro-americans-working-together.jpg");
  background-size: cover;
  background-position: center;
}

.members-hero-bg {
  background:
    linear-gradient(rgba(20, 14, 10, 0.78), rgba(20, 14, 10, 0.78)),
    linear-gradient(135deg, rgba(53, 216, 198, 0.12), transparent 45%),
    url("/assets/media/high-angle-underground-hip-hop-musician.jpg");
  background-size: cover;
  background-position: center;
}

.event-hero-bg {
  background:
    linear-gradient(rgba(20, 14, 10, 0.78), rgba(20, 14, 10, 0.78)),
    linear-gradient(135deg, rgba(53, 216, 198, 0.12), transparent 45%),
    url("/assets/media/group-afro-americans-working.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero>.container,
.impact-hero>.container {
  position: relative;
  z-index: 1;
}

.impact-hero .eyebrow {
  justify-self: center;
}

.resource-hero,
main .hero.resource-hero:first-child {
  overflow: hidden;
  background: #251b13;
}

.resource-hero::before {
  background:
    linear-gradient(135deg, rgba(53, 216, 198, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(129, 91, 65, 0.18) 0%, transparent 70%);
}

.resource-hero-bg {
  background:
    linear-gradient(rgba(20, 14, 10, 0.76), rgba(20, 14, 10, 0.76)),
    linear-gradient(135deg, rgba(53, 216, 198, 0.12), transparent 45%),
    url("/assets/media/business-people-working-laptop.jpg");
  background-size: cover;
  background-position: center;
}

.resource-hero>.container {
  position: relative;
  z-index: 1;
}

.resource-hero .eyebrow {
  justify-self: center;
}

.hero-grid,
.split-grid,
.cards-3,
.cards-4,
.cards-2,
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.eyebrow {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.75;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.accent {
  color: var(--brand);
}

.text-light,
.dark-section .lead,
.dark-section p,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #fff;
}

.dark-section {
  background: var(--bg-deep);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card,
.panel,
.quote-card,
.team-card,
.stat-card,
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dark-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.standfor-head {
  justify-items: center;
  text-align: center;
}

.standfor-head .eyebrow {
  justify-self: center;
}

.dark-card-wide {
  grid-column: 1 / -1;
}

.card,
.quote-card,
.stat-card,
.timeline-card {
  padding: 1.6rem;
}

.panel {
  overflow: hidden;
}

.card:hover,
.panel:hover,
.quote-card:hover,
.team-card:hover,
.stat-card:hover,
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(53, 216, 198, 0.28);
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack {
  display: grid;
  gap: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.cta-band .btn {
  border-radius: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 1rem 2.1rem;
  border-radius: 2px;
  border: 1px solid #35d8c6;
  background: #35d8c6;
  color: #251b13;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #22c4b2;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: rgba(129, 91, 65, 0.22);
}

.btn.dark {
  color: var(--bg-deep);
}

.pill-row,
.tag-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill,
.tag,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.filter.is-active {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

.metrics {
  display: grid;
  gap: 1.5rem;
}

.metrics strong,
.stat-value {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.6rem;
  color: var(--text);
}

.quote-card blockquote,
.article-intro {
  font-size: 1.08rem;
  color: var(--muted);
  border-left: 3px solid rgba(129, 91, 65, 0.35);
  padding-left: 1rem;
}

.feature-list,
.check-list,
.timeline-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.timeline-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list li::before,
.check-list li::before,
.timeline-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.team-card img {
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: top;
}

.team-card .content,
.article-card .content {
  padding: 1.2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.mission-vision-section {
  background: #ebe7e2;
}

.mission-vision-title {
  max-width: 560px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #251b13;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3.5rem;
  background: #4a3527;
}

.mv-card {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.mv-card-tag {
  display: block;
  margin-bottom: 1.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #35d8c6;
}

.mv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #251b13;
}

.mv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.8;
  color: #815b41;
}

.mv-card-num {
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: #ebe7e2;
  user-select: none;
  pointer-events: none;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.milestone-card {
  background: #ffffff;
  border: 1px solid #e0d3c4;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #35d8c6, #22c4b2);
}

.milestone-card::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent #ebe7e2 transparent;
}

.milestone-quarter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #35d8c6;
  margin-bottom: 1rem;
  display: block;
}

.milestone-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #251b13;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.milestone-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #815b41;
}

.stats-section {
  position: relative;
  padding: 6rem 0;
  background: #ebe7e2;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #35d8c6, transparent);
  opacity: 0.35;
}

.stats-section-head {
  text-align: center;
}

.stats-section-head h2 {
  margin-bottom: 3.5rem;
}

.stats-eyebrow {
  margin-bottom: 3.5rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #815b41;
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e0d3c4;
  border-radius: 6px;
  background: #e0d3c4;
}

.stat-card-new {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  background: #f7f4ef;
  transition: background 0.25s ease;
}

.stat-card-new:hover {
  background: #ffffff;
}

.stat-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 2px;
  opacity: 0;
  transform: translateX(-50%);
  background: #35d8c6;
  transition: opacity 0.3s ease;
}

.stat-card-new:hover::before {
  opacity: 1;
}

.stat-card-new-wide {
  grid-column: 1 / -1;
  border-top: 1px solid #e0d3c4;
}

.stat-value-new {
  display: block;
  margin-bottom: 0.6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #251b13;
}

.stat-value-new .suffix {
  font-size: 0.55em;
  vertical-align: super;
  color: #22c4b2;
}

.stat-label-new {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #251b13;
}

.stat-desc-new {
  font-size: 0.83rem;
  line-height: 1.55;
  color: #815b41;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.05s;
}

.reveal-delay-2 {
  transition-delay: 0.12s;
}

.reveal-delay-3 {
  transition-delay: 0.19s;
}

.reveal-delay-4 {
  transition-delay: 0.26s;
}

@media (max-width: 780px) {
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-new {
    grid-template-columns: 1fr;
  }

  .stat-card-new-wide {
    grid-column: auto;
    border-top: 0;
  }
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 32px;
  border: 1px solid rgba(53, 216, 198, 0.18);
  background: linear-gradient(145deg, rgba(37, 27, 19, 0.95), rgba(129, 91, 65, 0.82));
  box-shadow: var(--shadow);
}

.media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(37, 27, 19, 0.7);
  backdrop-filter: blur(16px);
  color: white;
  font-size: 0.9rem;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(53, 216, 198, 0.16);
  color: #9ff3ea;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-meta,
.meta {
  color: var(--muted);
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}

.cta-band {
  padding: 5rem 0 5.5rem;
}

.cta-box {
  border-radius: 36px;
  padding: 2.4rem;
  color: white;
  background: linear-gradient(135deg, #251b13 0%, #815b41 58%, #35d8c6 155%);
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.input,
.textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.theme-footer {
  margin-top: 4rem;
  background: #160f09;
  padding: 5rem 8rem 3rem;
  color: white;
  position: relative;
  z-index: 1;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.foot-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: #35d8c6;
  margin: 1rem 0 .5rem;
}

.foot-desc {
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  font-weight: 400;
  max-width: 250px;
}

.foot-desc a {
  color: inherit;
  text-decoration: none;
}

.foot-desc a:hover {
  color: #35d8c6;
}

.foot-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .78);
  margin: 0 0 1.5rem;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .72rem;
  padding: 0;
  margin: 0;
}

.foot-col a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 400;
  transition: color .25s;
}

.foot-col a:hover {
  color: #35d8c6;
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.foot-bot p {
  font-size: .74rem;
  color: rgba(255, 255, 255, .58);
  font-weight: 400;
}

.faq-item {
  padding: 1.35rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 1rem;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

.team-content {
  padding: 1.5rem;
}

.team-name {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.team-role {
  display: block;
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.team-bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

.team-bio-details {
  margin-top: 1rem;
}

.team-bio-summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.team-bio-summary:hover {
  color: var(--text);
}

.team-bio-summary::-webkit-details-marker {
  display: none;
}

.team-bio-summary::before {
  content: '+ ';
  margin-right: 0.4rem;
  font-weight: 700;
}

.team-bio-details[open] .team-bio-summary::before {
  content: '− ';
}

.team-bio-details[open] .team-bio {
  margin-top: 0.8rem;
  animation: slideDown 0.2s ease;
}

.carousel-controls {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .team-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .team-list {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .team-list::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    min-width: min(90vw, 320px);
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--brand);
    border-radius: 50%;
    background: white;
    color: var(--brand);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-btn:hover {
    background: var(--brand);
    color: white;
  }

  .carousel-btn:active {
    transform: scale(0.95);
  }

  .carousel-pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .pagination-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .pagination-dot.active {
    background: var(--brand);
    width: 24px;
    border-radius: 4px;
  }
}

.reveal-block {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 980px) {

  .hero-grid,
  .split-grid,
  .mv-grid,
  .cards-4,
  .cards-3,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero>.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cta-box {
    padding: 2rem;
  }

  .button-row {
    gap: 1rem;
  }
}

@media (max-width: 760px) {

  .nav-links,
  .site-nav>.nav-links {
    display: none;
  }

  .menu-toggle,
  .mobile-nav.is-open {
    display: block;
  }

  .site-nav {
    padding: 1.2rem 1.5rem;
  }

  .site-nav.scrolled {
    padding: .95rem 1.5rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid,
  .split-grid,
  .cards-4,
  .cards-3,
  .cards-2,
  .stats-grid,
  .mv-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .dark-card-wide {
    grid-column: auto;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .btn {
    width: 100%;
  }

  .mv-card {
    padding: 1.5rem;
  }

  .mv-card-num {
    font-size: 5rem;
    right: 0.7rem;
    bottom: -0.2rem;
  }

  .milestone-card {
    padding: 1.6rem 1.4rem;
  }

  .team-card {
    width: 100%;
  }

  .team-card .content {
    padding: 1rem;
  }


  .cta-box,
  .card,
  .panel,
  .quote-card,
  .stat-card,
  .timeline-card {
    border-radius: 24px;
  }

  .whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .theme-footer {
    padding: 4rem 1.5rem 2rem;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }
}

.story-section {
  padding: 5rem 0;
  background: #f7f4ef;
}

.eyebrow-new {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #35d8c6;
}

.eyebrow-new::before,
.eyebrow-new::after {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(53, 216, 198, 0.5);
}

.story-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid #e0d3c4;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.story-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: #251b13;
}

.intro-text {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #815b41;
}

.timeline-new {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  counter-reset: tl;
  position: relative;
}

.timeline-new::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(53,216,198,.45), rgba(53,216,198,0));
}

.timeline-new li {
  counter-increment: tl;
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.75rem;
}

.timeline-new li:last-child {
  margin-bottom: 0;
}

.timeline-new li::before {
  content: counter(tl);
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #35d8c6;
  color: #251b13;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(53,216,198,.1);
}

.timeline-new .timeline-card {
  padding: 1.8rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(129,91,65,0.14);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(37,27,19,.08);
}

.timeline-label {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #35d8c6;
}

.timeline-item-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  color: #251b13;
}

.timeline-item-text {
  margin: 0;
  color: #6d5848;
  line-height: 1.85;
}

.timeline-new li:last-child .timeline-card {
  border-color: rgba(53,216,198,.25);
}

.story-quote {
  margin: 1.5rem 0 2rem;
  padding: 1.4rem 1.75rem;
  border-radius: 12px;
  background: #251b13;
}

.story-quote p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.story-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold,
.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.8rem;
  border: 1px solid;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn-gold {
  background: #35d8c6;
  border-color: #35d8c6;
  color: #251b13;
}

.btn-gold:hover {
  background: #22c4b2;
  border-color: #22c4b2;
}

.btn-ink {
  background: #251b13;
  border-color: #251b13;
  color: #ffffff;
}

.btn-ink:hover {
  background: #4a3527;
  border-color: #4a3527;
}

.partner-impact-section {
  padding: 6rem 0;
  background: #ebe7e2;
}

.partner-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.partner-impact-copy h2 {
  margin: 0.85rem 0 1rem;
  max-width: 620px;
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.partner-impact-copy p {
  max-width: 680px;
  color: #6d5848;
  line-height: 1.8;
}

.partner-impact-copy p + p {
  margin-top: 0.85rem;
}

.partner-impact-copy .story-actions {
  margin-top: 1.6rem;
}

.partner-impact-panel {
  overflow: hidden;
  border: 1px solid #e0d3c4;
  border-radius: 8px;
  background: #f7f4ef;
  box-shadow: 0 24px 70px rgba(37, 27, 19, 0.1);
}

.partner-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #e0d3c4;
}

.partner-stat-grid div {
  min-height: 150px;
  padding: 1.5rem;
  background: #ffffff;
}

.partner-stat-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.partner-stat-grid span {
  color: #815b41;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.partner-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.partner-path-card {
  padding: clamp(1.6rem, 4vw, 2.25rem);
  border: 1px solid #e0d3c4;
  border-radius: 8px;
  background: #f7f4ef;
}

.partner-path-card span {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #15796c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-path-card h3 {
  max-width: 560px;
  margin-bottom: 0.75rem;
  color: #251b13;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.18;
}

.partner-path-card p {
  color: #6d5848;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .partner-impact-grid,
  .partner-path-grid {
    grid-template-columns: 1fr;
  }

  .partner-stat-grid div {
    min-height: 130px;
  }
}

@media (max-width: 560px) {
  .partner-stat-grid {
    grid-template-columns: 1fr;
  }
}

body.resource-page {
  background:
    radial-gradient(circle at top left, rgba(53, 216, 198, .14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(129, 91, 65, .14), transparent 30%),
    #f3eee8;
  color: #251b13;
}

body.resource-page .glow {
  opacity: .16;
}

body.resource-page .glow-left {
  background: #35d8c6;
}

body.resource-page .glow-right {
  background: #815b41;
}

body.resource-page .resource-hero {
  padding: 8rem 0 5rem;
}

body.resource-page .resource-hero::before {
  background:
    linear-gradient(rgba(20, 14, 10, .76), rgba(20, 14, 10, .76)),
    linear-gradient(135deg, rgba(53, 216, 198, .08), transparent 45%);
}

body.resource-page .resource-hero-bg {
  opacity: 1;
  transform: scale(1.03);
}

body.resource-page .resource-hero-copy {
  max-width: 920px;
  justify-items: center;
  text-align: center;
}

body.resource-page .resource-hero h2 {
  max-width: 880px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: 0.96;
}

body.resource-page .resource-hero .accent {
  background: linear-gradient(90deg, #35d8c6, #f1dd9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.resource-page .resource-hero .lead {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #e0d3c4;
}

body.resource-page .resource-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 720px);
  margin-top: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
}

body.resource-page .resource-hero-stats div {
  display: grid;
  gap: .28rem;
  min-height: 108px;
  align-content: center;
  padding: 1rem;
  background: rgba(20, 14, 10, .44);
  backdrop-filter: blur(16px);
}

body.resource-page .resource-hero-stats strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1;
  color: #35d8c6;
}

body.resource-page .resource-hero-stats span {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.resource-page .resource-hero .btn {
  border-radius: 999px;
  box-shadow: none;
}

body.resource-page .resource-hero .btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #e0d3c4;
  backdrop-filter: none;
}

body.resource-page .resource-hero .stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

body.resource-page .resource-hero .stat-card {
  padding: 1.8rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

body.resource-page .resource-hero .stat-card h2 {
  margin-bottom: .45rem;
  background: linear-gradient(90deg, #35d8c6, #f1dd9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.resource-page .section {
  padding: 5.5rem 0;
}

body.resource-page .section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(243, 238, 232, .72));
  border-top: 1px solid rgba(129, 91, 65, .12);
  border-bottom: 1px solid rgba(129, 91, 65, .12);
}

body.resource-page .section-heading {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

body.resource-page .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body.resource-page .section-heading p {
  color: #815b41;
  line-height: 1.8;
}

body.resource-page .eyebrow {
  justify-self: center;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(129, 91, 65, .16);
  color: #251b13;
  backdrop-filter: blur(10px);
}

body.resource-page .section > .container.stack {
  gap: clamp(2rem, 4vw, 3rem);
}

body.resource-page .button-row {
  gap: 1rem;
  align-items: center;
}

body.resource-page .btn {
  border-radius: 999px;
}

body.resource-page .card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(129, 91, 65, .12);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(37, 27, 19, .08);
}

body.resource-page .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .42), transparent 44%);
  opacity: 0;
  transition: .35s ease;
}

body.resource-page .card:hover::before {
  opacity: 1;
}

body.resource-page .card:hover {
  border-color: rgba(53, 216, 198, .24);
  box-shadow: 0 28px 70px rgba(37, 27, 19, .12);
}

body.resource-page .meta {
  background: rgba(53, 216, 198, .12);
  color: #15796c !important;
  border: 1px solid rgba(53, 216, 198, .16);
}

body.resource-page .resource-card,
body.resource-page .template-card,
body.resource-page .tool-card,
body.resource-page .value-card,
body.resource-page .access-card {
  padding-top: 4.9rem;
}

body.resource-page .access-card {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.2rem);
  padding-left: clamp(2rem, 5vw, 3.2rem);
  padding-top: clamp(5.4rem, 7vw, 6rem);
  background:
    linear-gradient(135deg, rgba(53, 216, 198, .16), transparent 42%),
    linear-gradient(90deg, rgba(37, 27, 19, .96), rgba(74, 53, 39, .92));
  color: #ffffff;
}

body.resource-page .access-card h2 {
  max-width: 720px;
  color: #ffffff;
}

body.resource-page .access-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
}

body.resource-page .access-card .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(53, 216, 198, .24);
  color: #35d8c6;
}

body.resource-page .access-card .btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .22);
}

body.resource-page .access-points {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .7rem;
}

body.resource-page .access-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .72rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  font-weight: 700;
}

body.resource-page .access-card::after,
body.resource-page .resource-card::after,
body.resource-page .template-card::after,
body.resource-page .tool-card::after,
body.resource-page .value-card::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: #251b13;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  box-shadow: 0 14px 30px rgba(37, 27, 19, .12);
  pointer-events: none;
  z-index: 0;
}

body.resource-page .access-card > .stack {
  position: relative;
  z-index: 1;
}

body.resource-page .access-card::after {
  background-color: #35d8c6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='m4 7 8 5 8-5'/%3E%3C/svg%3E");
}

body.resource-page .resource-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6.5A2.5 2.5 0 0 1 6.5 4H19a1 1 0 0 1 1 1v13.5a1.5 1.5 0 0 1-2.4 1.2L14 17l-3.6 2.7A1.5 1.5 0 0 1 8 18.5V6.5A2.5 2.5 0 0 0 5.5 4H5'/%3E%3Cpath d='M8 6h9'/%3E%3C/svg%3E");
}

body.resource-page .resource-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M7 16V8'/%3E%3Cpath d='M12 16V5'/%3E%3Cpath d='M17 16v-6'/%3E%3C/svg%3E");
}

body.resource-page .resource-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='3'/%3E%3Cpath d='M7 9h10'/%3E%3Cpath d='M7 13h6'/%3E%3C/svg%3E");
}

body.resource-page .resource-card:nth-child(4)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 5-3.5 7.5-7 9-3.5-1.5-7-4-7-9V7l7-4Z'/%3E%3Cpath d='m9.5 12 1.7 1.7 3.3-3.4'/%3E%3C/svg%3E");
}

body.resource-page .resource-card:nth-child(1),
body.resource-page .resource-card:nth-child(2),
body.resource-page .resource-card:nth-child(3),
body.resource-page .resource-card:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .94)),
    url("/assets/media/community-circle.png");
  background-repeat: no-repeat;
  background-size: auto, 120px;
  background-position: 0 0, calc(100% - 1.4rem) 1.4rem;
}

body.resource-page .template-card:nth-child(1)::after,
body.resource-page .template-card:nth-child(2)::after,
body.resource-page .template-card:nth-child(3)::after,
body.resource-page .template-card:nth-child(4)::after,
body.resource-page .template-card:nth-child(5)::after,
body.resource-page .template-card:nth-child(6)::after {
  background-color: #ebe7e2;
}

body.resource-page .template-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 8 8 5 8-5'/%3E%3C/svg%3E");
}

body.resource-page .template-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M7 12h10'/%3E%3Cpath d='M9 17h6'/%3E%3C/svg%3E");
}

body.resource-page .template-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12h6'/%3E%3Cpath d='M12 9v6'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
}

body.resource-page .template-card:nth-child(4)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
}

body.resource-page .template-card:nth-child(5)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h5l2 3 4-6 2 3h3'/%3E%3C/svg%3E");
}

body.resource-page .template-card:nth-child(6)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23251b13' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4h9l3 3v13H6z'/%3E%3Cpath d='M15 4v4h4'/%3E%3C/svg%3E");
}

body.resource-page .tool-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3Cpath d='M7 9h10'/%3E%3Cpath d='M7 13h7'/%3E%3C/svg%3E");
}

body.resource-page .tool-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='M7 16V8'/%3E%3Cpath d='M12 16V5'/%3E%3Cpath d='M17 16v-6'/%3E%3C/svg%3E");
}

body.resource-page .tool-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 5-3.5 7.5-7 9-3.5-1.5-7-4-7-9V7l7-4Z'/%3E%3C/svg%3E");
}

body.resource-page .platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.resource-page .platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 42px;
  padding: 0.55rem 0.8rem 0.55rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(129, 91, 65, .14);
  color: #251b13;
  font-size: 0.82rem;
  font-weight: 600;
}

body.resource-page .platform-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 27, 19, .12);
}

body.resource-page .platform-icon.mailchimp {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

body.resource-page .platform-icon.klaviyo {
  background: linear-gradient(135deg, #1f2937, #374151);
}

body.resource-page .platform-icon.convertkit {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

body.resource-page .platform-icon.brevo {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

body.resource-page .platform-icon.claude {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

body.resource-page .platform-icon.jasper {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

body.resource-page .platform-icon.hemingway {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

body.resource-page .platform-icon.analytics {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

body.resource-page .platform-icon.mailmodo {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

body.resource-page .platform-icon.canva {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

body.resource-page .platform-icon.litmus {
  background: linear-gradient(135deg, #475569, #1e293b);
}

body.resource-page .platform-icon.tester {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

body.resource-page .platform-icon.glockapps {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

body.resource-page .value-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h5l2 3 4-6 2 3h3'/%3E%3C/svg%3E");
}

body.resource-page .value-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M4 7c2 1 5 2 8 2s6-.7 8-2'/%3E%3Cpath d='M4 17c2-1 5-2 8-2s6 .7 8 2'/%3E%3C/svg%3E");
}

body.resource-page .value-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d8c6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M15 9h.01'/%3E%3Cpath d='M12 21c4.97 0 9-3.58 9-8s-4.03-8-9-8-9 3.58-9 8c0 2.13.91 4.08 2.43 5.57L4 22l4.29-1.17A10.2 10.2 0 0 0 12 21Z'/%3E%3C/svg%3E");
}

body.resource-page .tag {
  background: rgba(255, 255, 255, .64);
  border-color: rgba(129, 91, 65, .14);
  color: #251b13;
}

body.resource-page .tag:hover {
  background: linear-gradient(135deg, #35d8c6, #22c4b2);
  color: #251b13;
}

body.resource-page .resource-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .32rem .58rem;
  border-radius: 999px;
  background: rgba(235, 231, 226, .9);
  color: #815b41;
  border: 1px solid rgba(129, 91, 65, .1);
  font-size: .75rem;
  font-weight: 700;
}

body.resource-page .resource-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  margin: 1.15rem 0 1.25rem;
}

body.resource-page .video-library-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .3), transparent),
    transparent;
}

body.resource-page .video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.9rem);
}

body.resource-page .video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(129, 91, 65, .12);
  box-shadow: 0 12px 32px rgba(37, 27, 19, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.resource-page .video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 216, 198, .3);
  box-shadow: 0 22px 54px rgba(37, 27, 19, .13);
}

body.resource-page .video-thumb {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

body.resource-page .video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(37, 27, 19, .8), rgba(37, 27, 19, .18)),
    linear-gradient(135deg, rgba(53, 216, 198, .18), transparent 46%);
  z-index: -1;
}

body.resource-page .video-thumb-aida,
body.resource-page .video-thumb-deliverability {
  background-image: url("/assets/media/business-people-working-laptop.jpg");
}

body.resource-page .video-thumb-retention {
  background-image: url("/assets/media/group-afro-americans-working.jpg");
}

body.resource-page .video-thumb-automation {
  background-image: url("/assets/media/data-center-coworkers-laughing-having-fun.jpg");
}

body.resource-page .video-badge,
body.resource-page .video-time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.resource-page .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
}

body.resource-page .video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

body.resource-page .video-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1.6rem;
}

body.resource-page .video-copy h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.2rem, 2vw, 1.42rem);
  line-height: 1.25;
  color: #251b13;
}

body.resource-page .video-copy p {
  color: #815b41;
  line-height: 1.8;
}

body.resource-page .resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #251b13;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.resource-page .resource-link:hover {
  background: #35d8c6;
  color: #251b13;
  box-shadow: 0 12px 26px rgba(53, 216, 198, .22);
  transform: translateY(-2px);
}

body.resource-page .template-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 250px;
  padding: 5.05rem 1.55rem 1.45rem;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82)),
    radial-gradient(circle at 100% 0, rgba(53, 216, 198, .22), transparent 34%);
}

body.resource-page .template-type {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 1.05rem;
  padding: .28rem .58rem;
  border: 1px solid rgba(129, 91, 65, .13);
  border-radius: 999px;
  background: rgba(53, 216, 198, .1);
  color: #15796c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.resource-page .template-card h4 {
  margin-bottom: .72rem;
  font-size: clamp(1.2rem, 1.8vw, 1.36rem);
  line-height: 1.18;
}

body.resource-page .template-card p {
  color: #6d5848;
}

body.resource-page .resource-templates-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 216, 198, .18), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(129, 91, 65, .13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(243, 238, 232, .92));
}

body.resource-page .resource-templates-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

body.resource-page .resource-templates-section > .container {
  position: relative;
  z-index: 1;
}

body.resource-page .resource-templates-section .section-heading p {
  max-width: 680px;
}

body.resource-page .template-grid {
  gap: clamp(1rem, 2.5vw, 1.45rem);
}

body.resource-page .template-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

body.resource-page .template-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: .34rem .62rem;
  border-radius: 999px;
  background: rgba(37, 27, 19, .06);
  color: #5b4534;
  font-size: .72rem;
  font-weight: 800;
}

body.resource-page .template-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(129, 91, 65, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #6d5848;
  box-shadow: 0 18px 44px rgba(37, 27, 19, .08);
}

body.resource-page .template-note strong {
  flex: 0 0 auto;
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
}

body.resource-page .template-note span {
  line-height: 1.6;
}

body.resource-page .cta-box {
  background:
    linear-gradient(145deg, rgba(53, 216, 198, .18), rgba(129, 91, 65, .08)),
    rgba(255, 255, 255, .72);
  border: 1px solid rgba(129, 91, 65, .12);
  box-shadow: 0 26px 80px rgba(37, 27, 19, .12);
}

body.resource-page .cta-box::before {
  background: rgba(255, 255, 255, .18);
}

body.resource-page .cta-box h2,
body.resource-page .cta-box p,
body.resource-page .cta-box .eyebrow {
  color: #251b13;
}

body.resource-page .cta-box .eyebrow {
  background: rgba(255, 255, 255, .7);
}

@media (max-width: 980px) {
  body.resource-page .resource-hero {
    padding: 8rem 0 5rem;
  }

  body.resource-page .resource-hero .stats-grid {
    grid-template-columns: 1fr;
  }

  body.resource-page .video-grid {
    grid-template-columns: 1fr;
  }

  body.resource-page .resource-hero-stats {
    width: min(100%, 620px);
  }
}

@media (max-width: 640px) {
  body.resource-page .section {
    padding: 4rem 0;
  }

  body.resource-page .card,
  body.resource-page .resource-card,
  body.resource-page .template-card,
  body.resource-page .tool-card,
  body.resource-page .value-card {
    padding-top: 4.8rem;
  }

  body.resource-page .access-card {
    padding: 5rem 1.25rem 1.45rem;
  }

  body.resource-page .resource-hero h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  body.resource-page .resource-hero-stats {
    grid-template-columns: 1fr;
  }

  body.resource-page .resource-hero-stats div {
    min-height: 84px;
  }

  body.resource-page .lead {
    font-size: 1rem;
  }

  body.resource-page .template-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 8px;
  }
}

.projects-section {
  padding: 6rem 0;
  background: #f7f4ef;
}

body.impact-page .theme-footer {
  margin-top: 0;
}

body.impact-page .projects-section {
  padding-bottom: 4rem;
}

body.impact-page .boss-placement-section,
body.impact-page .boss-services-section {
  padding: 6.5rem 0;
}

body.impact-page .boss-placement-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(53, 216, 198, 0.12), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(241, 200, 82, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f4ef 0%, #ede4d9 100%);
  color: var(--bg-deep);
}

body.impact-page .icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.impact-page .icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.impact-page .btn .icon,
body.impact-page .btn-gold .icon {
  width: 1rem;
  height: 1rem;
}

body.impact-page .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(53, 216, 198, 0.18), rgba(241, 200, 98, 0.16)),
    #ffffff;
  color: var(--brand);
  border: 1px solid rgba(53, 216, 198, 0.2);
  box-shadow: 0 14px 28px rgba(37, 27, 19, 0.08);
}

body.impact-page .icon-badge-large {
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  color: var(--teal);
  background: rgba(37, 27, 19, 0.94);
  border-color: rgba(53, 216, 198, 0.25);
}

body.impact-page .icon-badge .icon {
  width: 1.35rem;
  height: 1.35rem;
}

body.impact-page .boss-placement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.82) 50%, rgba(247, 244, 239, 0.68) 100%),
    url('/assets/media/group-afro-americans-working-together.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}

body.impact-page .boss-placement-section > .container,
body.impact-page .boss-services-section > .container,
body.impact-page .boss-audience-section > .container {
  position: relative;
  z-index: 1;
}

body.impact-page .boss-placement-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

body.impact-page .boss-placement-section .partner-impact-copy h2,
body.impact-page .boss-placement-section .boss-process-copy h2,
body.impact-page .boss-audience-section h2,
body.impact-page .boss-services-section h2 {
  color: var(--bg-deep);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
}

body.impact-page .boss-placement-section .partner-impact-copy p,
body.impact-page .boss-placement-section .boss-process-copy p,
body.impact-page .boss-audience-section .lead,
body.impact-page .boss-services-section .lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
}

body.impact-page .boss-placement-card,
body.impact-page .boss-info-card,
body.impact-page .boss-value-card,
body.impact-page .boss-process-panel,
body.impact-page .boss-stat-strip > div,
body.impact-page .boss-audience-section .card,
body.impact-page .boss-services-section .card {
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

body.impact-page .boss-placement-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

body.impact-page .boss-placement-card > span,
body.impact-page .boss-info-card > span,
body.impact-page .boss-value-card > h3,
body.impact-page .boss-process-copy > .eyebrow-new,
body.impact-page .boss-audience-section .meta,
body.impact-page .boss-services-section .meta {
  color: var(--teal);
}

body.impact-page .boss-placement-card h3,
body.impact-page .boss-info-card h3,
body.impact-page .boss-value-card h3,
body.impact-page .boss-process-steps h3,
body.impact-page .boss-audience-section h3,
body.impact-page .boss-services-section h3 {
  color: inherit;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.05;
}

body.impact-page .boss-mini-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

body.impact-page .boss-mini-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(53, 216, 198, 0.08);
}

body.impact-page .boss-mini-list .icon {
  margin-top: 0.18rem;
  color: var(--brand);
}

body.impact-page .boss-mini-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
  color: var(--bg-deep);
}

body.impact-page .boss-mini-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

body.impact-page .boss-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  overflow: visible;
  border: 0;
  background: transparent;
}

body.impact-page .boss-stat-strip > div {
  min-height: 140px;
  padding: 1.5rem 1.35rem;
  background: #ffffff;
  backdrop-filter: none;
  text-align: center;
}

body.impact-page .stat-icon {
  width: 1.45rem;
  height: 1.45rem;
  margin: 0 auto 0.7rem;
  color: var(--teal);
}

body.impact-page .boss-stat-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

body.impact-page .boss-stat-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

body.impact-page .boss-placement-grid,
body.impact-page .boss-values-grid,
body.impact-page .boss-process-steps,
body.impact-page .cards-3,
body.impact-page .cards-2 {
  gap: 1rem;
}

body.impact-page .boss-placement-grid,
body.impact-page .boss-values-grid,
body.impact-page .boss-process-steps {
  margin-top: 2rem;
}

body.impact-page .boss-placement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.impact-page .boss-info-card,
body.impact-page .boss-value-card,
body.impact-page .boss-process-panel,
body.impact-page .boss-audience-section .card,
body.impact-page .boss-services-section .card {
  padding: 2rem;
  background: #ffffff;
}

body.impact-page .boss-info-card,
body.impact-page .boss-value-card,
body.impact-page .boss-audience-section .card,
body.impact-page .boss-services-section .card,
body.impact-page .boss-placement-card {
  position: relative;
  overflow: hidden;
}

body.impact-page .boss-info-card::after,
body.impact-page .boss-value-card::after,
body.impact-page .boss-audience-section .card::after,
body.impact-page .boss-services-section .card::after,
body.impact-page .boss-placement-card::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(53, 216, 198, 0.08);
  pointer-events: none;
}

body.impact-page .boss-process-panel {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.impact-page .boss-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.impact-page .boss-process-steps div {
  position: relative;
  padding: 2rem 1.6rem 1.7rem;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

body.impact-page .boss-process-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

body.impact-page .process-icon {
  position: absolute;
  top: 2.25rem;
  right: 1.6rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--teal);
}

body.impact-page .boss-process-steps p,
body.impact-page .boss-info-card p,
body.impact-page .boss-value-card p,
body.impact-page .boss-audience-section p,
body.impact-page .boss-services-section p {
  color: var(--muted);
  line-height: 1.7;
}

body.impact-page .boss-audience-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 244, 239, 0.95));
}

body.impact-page .boss-services-section {
  background: linear-gradient(180deg, #f7f4ef 0%, #efe3d4 100%);
  color: var(--text);
}

body.impact-page .boss-services-section .card {
  background: #ffffff;
}

body.impact-page .boss-services-section .card {
  padding-top: 2.2rem;
}

body.impact-page .quote-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

body.impact-page .boss-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.impact-page .placement-modal .placement-dialog {
  width: min(100%, 980px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.88)),
    var(--light-surface);
}

body.impact-page .placement-modal .cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.impact-page .placement-modal .card {
  background: #ffffff;
  border: 1px solid var(--border);
}

body.impact-page .placement-modal .input {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.98);
}

body.impact-page .placement-modal .btn {
  width: 100%;
}

body.impact-page .placement-modal .success-message {
  color: var(--brand);
}

.projects-section .section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.projects-section .section-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-top: 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #251b13;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.projects-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.project-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  border: 1px solid #e0d3c4;
  border-radius: 6px;
  background: #f7f4ef;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.project-card:hover {
  border-color: #35d8c6;
  transform: translateX(4px);
}

.project-card:hover .proj-num {
  color: #22a99a;
  background: rgba(53, 216, 198, 0.12);
}

.proj-num {
  font-family: 'Montserrat', sans-serif;
  margin-top: 4px;
  padding: 0.5rem 0;
  height: fit-content;
  text-align: center;
  border-radius: 3px;
  background: #ebe7e2;
  color: #815b41;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.25s ease, background 0.25s ease;
}

.proj-body h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #251b13;
  line-height: 1.3;
}

.proj-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #815b41;
}

.proj-status {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proj-status.active {
  background: rgba(53, 216, 198, 0.14);
  color: #1a6040;
}

.proj-status.soon {
  background: rgba(129, 91, 65, 0.12);
  color: #815b41;
}

.proj-status.partner {
  background: rgba(37, 27, 19, 0.08);
  color: #251b13;
}

.project-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.9rem;
  color: #15796c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-link:hover {
  color: #251b13;
}

body.hiring-page {
  background: #f5f7fb;
}

body.hiring-page .hiring-shell {
  background: #f5f7fb;
}

body.hiring-page .hiring-hero {
  padding: 4rem 0 3rem;
  background: #f5f7fb;
}

body.hiring-page .hiring-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

body.hiring-page .hiring-hero-copy {
  padding-top: 1.5rem;
}

body.hiring-page .hiring-eyebrow {
  color: #2f3f98;
}

body.hiring-page .hiring-hero h1,
body.hiring-page .hiring-section-head h2,
body.hiring-page .hiring-why-copy h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #0f1f8a;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body.hiring-page .hiring-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin: 0 0 1.2rem;
  max-width: 12ch;
}

body.hiring-page .hiring-hero p,
body.hiring-page .hiring-section-head p,
body.hiring-page .hiring-why-copy p,
body.hiring-page .hiring-step p,
body.hiring-page .company-card span,
body.hiring-page .difference-stat span {
  color: #46539d;
}

body.hiring-page .hiring-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

body.hiring-page .hiring-hero-panel {
  display: flex;
  justify-content: center;
}

body.hiring-page .hiring-panel-card {
  width: 100%;
  max-width: 520px;
  padding: 1.4rem;
  background: transparent;
}

body.hiring-page .hiring-panel-card h3,
body.hiring-page .hiring-section-head h2,
body.hiring-page .hiring-why h2 {
  margin: 0;
}

body.hiring-page .hiring-panel-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #0f1f8a;
  text-align: center;
}

body.hiring-page .hiring-panel-card > p {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0.75rem 0 2rem;
}

body.hiring-page .company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

body.hiring-page .company-card {
  background: #eef2f8;
  border-radius: 28px;
  padding: 2rem 1rem 1.35rem;
  text-align: center;
  box-shadow: 0 18px 36px rgba(15, 31, 138, 0.05);
}

body.hiring-page .company-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #3440a3;
  font-size: 2rem;
  background: rgba(255,255,255,0.5);
  box-shadow: inset 0 0 0 1px rgba(15,31,138,0.06);
}

body.hiring-page .company-card strong,
body.hiring-page .hiring-step h3,
body.hiring-page .hiring-difference h3,
body.hiring-page .difference-stat strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #0f1f8a;
}

body.hiring-page .company-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

body.hiring-page .hiring-how {
  background: #e9edf4;
  padding: 1rem 0 4rem;
}

body.hiring-page .hiring-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

body.hiring-page .hiring-section-head h2 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  margin-bottom: 0.6rem;
}

body.hiring-page .hiring-section-head p {
  font-size: 1.15rem;
}

body.hiring-page .hiring-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

body.hiring-page .hiring-step {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 4rem 1.7rem 1.9rem;
  min-height: 310px;
  box-shadow: 0 16px 34px rgba(15, 31, 138, 0.08);
}

body.hiring-page .step-badge {
  position: absolute;
  top: -1.15rem;
  left: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f1f8a;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  box-shadow: 0 12px 20px rgba(15,31,138,0.2);
}

body.hiring-page .step-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #bdd2f5;
  color: #0f1f8a;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

body.hiring-page .hiring-step h3 {
  font-size: 1.7rem;
  margin: 0 0 1rem;
}

body.hiring-page .hiring-step p {
  font-size: 1.05rem;
  line-height: 1.58;
}

body.hiring-page .hiring-why {
  padding: 4rem 0 5rem;
  background: #f5f7fb;
}

body.hiring-page .hiring-why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

body.hiring-page .hiring-why-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 0 0 1rem;
}

body.hiring-page .hiring-checks {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

body.hiring-page .hiring-checks li {
  position: relative;
  padding-left: 2.4rem;
  color: #0f1f8a;
  font-size: 1.1rem;
  line-height: 1.5;
}

body.hiring-page .hiring-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #bdd2f5;
  color: #0f1f8a;
  font-weight: 800;
}

body.hiring-page .hiring-difference {
  background: #0f1f8a;
  color: #fff;
  border-radius: 34px;
  padding: 2rem 2.2rem;
  display: grid;
  align-content: start;
  gap: 1.3rem;
  box-shadow: 0 18px 38px rgba(15,31,138,0.18);
}

body.hiring-page .hiring-difference h3 {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

body.hiring-page .difference-stat {
  margin-top: 0.4rem;
}

body.hiring-page .difference-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 0.2rem;
}

body.hiring-page .difference-stat span {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

body.hiring-page .hiring-projects {
  padding-top: 1rem;
}

body.hiring-page .hiring-projects .section-header h2,
body.hiring-page .hiring-projects .section-header p {
  color: #0f1f8a;
}

body.hiring-page .hiring-projects .card {
  background: #fff;
  border: 0;
  box-shadow: 0 16px 34px rgba(15,31,138,0.08);
}

@media (max-width: 1100px) {
  body.hiring-page .hiring-hero-inner,
  body.hiring-page .hiring-why-inner {
    grid-template-columns: 1fr;
  }

  body.hiring-page .hiring-hero-copy {
    padding-top: 0;
  }

  body.hiring-page .hiring-panel-card {
    max-width: none;
  }

  body.hiring-page .company-grid,
  body.hiring-page .hiring-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.hiring-page .hiring-hero {
    padding-top: 2.5rem;
  }

  body.hiring-page .hiring-hero h1 {
    max-width: none;
  }

  body.hiring-page .company-grid,
  body.hiring-page .hiring-steps {
    grid-template-columns: 1fr;
  }

  body.hiring-page .hiring-section-head h2,
  body.hiring-page .hiring-why-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  body.hiring-page .hiring-step {
    min-height: 0;
  }
}

body.hiring-page {
  background: #ebe7e2;
  color: #251b13;
}

body.hiring-page .hiring-shell {
  background:
    radial-gradient(circle at 8% 10%, rgba(53, 216, 198, 0.13), transparent 24rem),
    linear-gradient(180deg, #f7f4ef 0%, #ebe7e2 100%);
}

body.hiring-page .hiring-hero,
body.hiring-page .hiring-trusted,
body.hiring-page .hiring-why,
body.hiring-page .hiring-cta {
  background: transparent;
}

body.hiring-page .hiring-hero {
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

body.hiring-page .hiring-hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
}

body.hiring-page .hiring-hero-copy {
  padding-top: 0;
}

body.hiring-page .hiring-eyebrow,
body.hiring-page .hiring-projects .card .meta {
  color: #815b41;
}

body.hiring-page .hiring-hero h1,
body.hiring-page .hiring-section-head h2,
body.hiring-page .hiring-why-copy h2,
body.hiring-page .hiring-cta h2 {
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

body.hiring-page .hiring-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 4.8rem, 4.8rem);
  margin: 0 0 1.25rem;
}

body.hiring-page .hiring-hero p,
body.hiring-page .hiring-section-head p,
body.hiring-page .hiring-why-copy p,
body.hiring-page .hiring-step p,
body.hiring-page .company-card p,
body.hiring-page .difference-stat span,
body.hiring-page .hiring-cta p {
  color: #6d5848;
  font-family: 'Montserrat', sans-serif;
}

body.hiring-page .hiring-hero-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(129, 91, 65, 0.14);
  box-shadow: 0 24px 60px rgba(37, 27, 19, 0.12);
}

body.hiring-page .hiring-hero-card h2 {
  margin: 0 0 1.5rem;
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  line-height: 1.05;
}

body.hiring-page .hiring-hero-stats {
  display: grid;
  gap: 0.85rem;
}

body.hiring-page .hiring-hero-stats div {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(53, 216, 198, 0.1);
}

body.hiring-page .hiring-hero-stats strong {
  display: block;
  color: #815b41;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

body.hiring-page .hiring-hero-stats span {
  color: #6d5848;
}

body.hiring-page .hiring-trusted {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

body.hiring-page .hiring-section-head {
  max-width: 820px;
  margin: 0 auto 3rem;
}

body.hiring-page .hiring-section-head h2 {
  font-size: clamp(2.4rem, 4.2rem, 4.2rem);
}

body.hiring-page .company-grid {
  max-width: 780px;
  margin: 0 auto;
}

body.hiring-page .company-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(129, 91, 65, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(37, 27, 19, 0.08);
}

body.hiring-page .company-icon {
  background: rgba(53, 216, 198, 0.12);
  color: #815b41;
  position: relative;
}

body.hiring-page .company-icon::before {
  content: '';
  width: 28px;
  height: 38px;
  border: 4px solid currentColor;
  border-radius: 6px;
  box-shadow:
    inset 0 -8px 0 rgba(129, 91, 65, 0.16),
    9px 0 0 -5px currentColor;
}

body.hiring-page .company-icon::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    8px 0 0 currentColor,
    16px 0 0 currentColor,
    0 9px 0 currentColor,
    8px 9px 0 currentColor,
    16px 9px 0 currentColor,
    0 18px 0 currentColor,
    8px 18px 0 currentColor,
    16px 18px 0 currentColor;
  transform: translateY(-7px);
}

body.hiring-page .company-card h3,
body.hiring-page .hiring-step h3,
body.hiring-page .hiring-difference h3,
body.hiring-page .difference-stat strong {
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
}

body.hiring-page .company-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

body.hiring-page .company-card p {
  margin: 0;
}

body.hiring-page .hiring-how {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: #e0d3c4;
}

body.hiring-page .hiring-steps {
  gap: 1.6rem;
}

body.hiring-page .hiring-step {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(37, 27, 19, 0.1);
}

body.hiring-page .step-badge {
  background: #251b13;
}

body.hiring-page .step-icon {
  background: rgba(53, 216, 198, 0.18);
  color: #815b41;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

body.hiring-page .hiring-why {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

body.hiring-page .hiring-difference {
  background: #251b13;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(37, 27, 19, 0.18);
}

body.hiring-page .hiring-difference h3,
body.hiring-page .hiring-difference .difference-stat strong {
  color: #ffffff;
}

body.hiring-page .difference-stat span {
  color: rgba(255, 255, 255, 0.78);
}

body.hiring-page .hiring-checks li {
  color: #251b13;
}

body.hiring-page .hiring-checks li::before {
  content: '\2713';
  background: rgba(53, 216, 198, 0.18);
  color: #815b41;
}

body.hiring-page .hiring-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

body.hiring-page .hiring-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(37, 27, 19, 0.12);
}

body.hiring-page .hiring-cta h2 {
  margin: 0 auto 1rem;
  max-width: 760px;
  font-size: clamp(2.2rem, 3.8rem, 3.8rem);
}

body.hiring-page .hiring-cta p {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  body.hiring-page .hiring-hero-inner {
    grid-template-columns: 1fr;
  }

  body.hiring-page .hiring-hero h1 {
    max-width: 13ch;
  }
}

@media (max-width: 720px) {
  body.hiring-page .hiring-hero {
    padding-top: 4.5rem;
  }

  body.hiring-page .hiring-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 3rem, 3rem);
  }

  body.hiring-page .hiring-actions {
    flex-direction: column;
  }

  body.hiring-page .hiring-actions .btn,
  body.hiring-page .hiring-actions .btn-gold {
    justify-content: center;
    width: 100%;
  }

  body.hiring-page .hiring-section-head h2,
  body.hiring-page .hiring-why-copy h2,
  body.hiring-page .hiring-cta h2 {
    font-size: clamp(2rem, 2.7rem, 2.7rem);
  }
}

/* Final hiring page polish: keep the shared hero style and lighten placement sections. */
body.hiring-page .page-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, #ebe7e2 0%, #e0d3c4 100%);
}

body.hiring-page .hiring-hero,
main .hero.hiring-hero:first-child {
  min-height: min(78vh, 680px);
  padding: 6.5rem 0 4rem;
  text-align: center;
}

body.hiring-page .hiring-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

body.hiring-page .hiring-hero h2 {
  color: #ffffff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.45rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

body.hiring-page .hiring-hero .lead {
  max-width: 700px;
  margin: 1rem auto 0;
  color: #e0d3c4;
}

body.hiring-page .hiring-hero .hiring-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

body.hiring-page .hiring-actions .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

body.hiring-page .hiring-actions .btn-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.hiring-page .hiring-trusted,
body.hiring-page .hiring-how,
body.hiring-page .hiring-why,
body.hiring-page .hiring-cta {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

body.hiring-page .hiring-section-head {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

body.hiring-page .hiring-section-head h2,
body.hiring-page .hiring-why-copy h2,
body.hiring-page .hiring-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.06;
}

body.hiring-page .company-grid {
  max-width: 760px;
  gap: 1rem;
}

body.hiring-page .company-card {
  border-radius: 18px;
  padding: 1.35rem 1rem 1.1rem;
  box-shadow: 0 12px 28px rgba(37, 27, 19, 0.06);
}

body.hiring-page .company-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.8rem;
  border-radius: 14px;
}

body.hiring-page .company-icon::before {
  width: 22px;
  height: 30px;
  border-width: 3px;
}

body.hiring-page .company-icon::after {
  width: 3px;
  height: 3px;
  box-shadow:
    7px 0 0 currentColor,
    14px 0 0 currentColor,
    0 7px 0 currentColor,
    7px 7px 0 currentColor,
    14px 7px 0 currentColor,
    0 14px 0 currentColor,
    7px 14px 0 currentColor,
    14px 14px 0 currentColor;
  transform: translateY(-6px);
}

body.hiring-page .hiring-how {
  background: rgba(255, 255, 255, 0.45);
}

body.hiring-page .hiring-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.hiring-page .hiring-step {
  min-height: 0;
  border-radius: 18px;
  padding: 3.2rem 1.25rem 1.35rem;
  box-shadow: 0 12px 28px rgba(37, 27, 19, 0.07);
}

body.hiring-page .step-badge {
  top: -0.95rem;
  left: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.15rem;
}

body.hiring-page .step-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1.25rem;
  border-radius: 13px;
  font-size: 0.95rem;
}

body.hiring-page .hiring-step h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

body.hiring-page .hiring-step p {
  font-size: 0.92rem;
  line-height: 1.6;
}

body.hiring-page .hiring-why-inner {
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

body.hiring-page .hiring-checks {
  gap: 0.75rem;
  margin-top: 1.4rem;
}

body.hiring-page .hiring-checks li {
  font-size: 0.98rem;
  padding-left: 2rem;
}

body.hiring-page .hiring-checks li::before {
  width: 24px;
  height: 24px;
}

body.hiring-page .hiring-difference {
  border-radius: 24px;
  padding: 1.65rem 1.8rem;
  gap: 1rem;
}

body.hiring-page .hiring-difference h3 {
  font-size: 1.65rem;
}

body.hiring-page .difference-stat strong {
  font-size: clamp(2rem, 3vw, 3rem);
}

body.hiring-page .hiring-cta-inner {
  max-width: 820px;
  border-radius: 24px;
  padding: clamp(1.7rem, 4vw, 2.6rem);
}

@media (max-width: 1100px) {
  body.hiring-page .hiring-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.hiring-page .hiring-hero,
  main .hero.hiring-hero:first-child {
    min-height: auto;
    padding: 5.5rem 0 3.25rem;
  }

  body.hiring-page .hiring-hero h2 {
    font-size: clamp(2.05rem, 9vw, 2.8rem);
  }

  body.hiring-page .hiring-hero .hiring-actions,
  body.hiring-page .hiring-actions {
    flex-direction: column;
    width: 100%;
  }

  body.hiring-page .hiring-actions .btn,
  body.hiring-page .hiring-actions .btn-gold {
    width: 100%;
    justify-content: center;
  }

  body.hiring-page .company-grid,
  body.hiring-page .hiring-steps,
  body.hiring-page .hiring-why-inner {
    grid-template-columns: 1fr;
  }

  body.hiring-page .hiring-trusted,
  body.hiring-page .hiring-how,
  body.hiring-page .hiring-why,
  body.hiring-page .hiring-cta {
    padding: 3rem 0;
  }
}

@media (max-width: 980px) {
  body.impact-page .boss-placement-hero,
  body.impact-page .boss-process-steps,
  body.impact-page .boss-placement-grid,
  body.impact-page .boss-values-grid,
  body.impact-page .placement-modal .cards-2 {
    grid-template-columns: 1fr;
  }

  body.impact-page .boss-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.impact-page .boss-stat-strip,
  body.impact-page .placement-modal .cards-2 {
    grid-template-columns: 1fr;
  }

  body.impact-page .boss-placement-section,
  body.impact-page .boss-services-section {
    padding: 4rem 0;
  }
}

@media (max-width: 760px) {
  .project-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.4rem;
  }

  .proj-num {
    width: 56px;
  }
}


/* ════════════════════════════════
   MTJE EVENTS & MEMBERS PAGE STYLES
════════════════════════════════ */
:root {
  --gold: #35d8c6;
  --gold-dark: #22c4b2;
  --gold-mid: #815b41;
  --gold-light: rgba(255, 255, 255, 0.6);
  --dark-bg: #251b13;
  --dark-surface: rgba(255, 255, 255, 0.05);
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-border-soft: rgba(255, 255, 255, 0.05);
  --light-bg: transparent;
  --light-alt: rgba(255, 255, 255, 0.4);
  --light-surface: rgba(255, 255, 255, 0.8);
  --light-border: rgba(129, 91, 65, 0.18);
  --text-dark: #251b13;
  --text-muted: #6d5848;
  --radius-sm: 8px;
}

/* ── SHARED COMPONENTS ── */
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: var(--gold-light);
  border: 1px solid var(--light-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.eyebrow-light::before {
  content: '◆';
  font-size: 7px;
}

.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.eyebrow-dark::before {
  content: '◆';
  font-size: 7px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #35d8c6;
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid #35d8c6;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #22c4b2;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(129, 91, 65, 0.22);
  color: var(--gold-mid);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dark);
  border-color: rgba(53, 216, 198, 0.35);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #35d8c6;
  color: #251b13;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid #35d8c6;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-dark:hover {
  background: #22c4b2;
  transform: translateY(-1px);
}

/* ── FILTER BAR (MEMBERS) ── */
.sec-filter {
  background: var(--light-surface);
  border-bottom: 1px solid var(--light-border);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.filter-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-select,
.filter-select-label {
  display: none;
}

.filter-btn {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--light-border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  background: var(--gold-light);
}

.filter-btn.is-active {
  background: #35d8c6;
  border-color: #35d8c6;
  color: #251b13;
}

/* ── MEMBER CARDS (MEMBERS) ── */
.sec-cards {
  background: var(--light-bg);
  padding: 4.5rem 2rem;
}

.cards-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.member-card {
  min-height: 340px;
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(216, 199, 183, 0.3)),
    var(--light-surface);
  border: 1px solid rgba(129, 91, 65, 0.16);
  border-radius: 24px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(37, 27, 19, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.member-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #35d8c6, var(--accent-strong), var(--brand));
  border-radius: 24px 24px 0 0;
  opacity: 0.85;
}

.member-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(216, 199, 183, 0.38)),
    var(--light-surface);
  box-shadow: 0 28px 70px rgba(37, 27, 19, 0.14);
  border-color: rgba(53, 216, 198, 0.32);
}

.member-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-border);
}

.member-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(53, 216, 198, 0.2), rgba(214, 178, 82, 0.28));
  border: 1px solid rgba(129, 91, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-mid);
  flex-shrink: 0;
}

.member-header-text h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 3px;
}

.member-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 0;
}

.ba-block {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.ba-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ba-block.after .ba-label {
  color: var(--gold-mid);
}

.ba-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: var(--text-dark);
  line-height: 1.38;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.key-win {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(129, 91, 65, 0.2);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: var(--text-dark);
  line-height: 1.4;
  overflow: hidden;
}

.key-win::before {
  content: '★';
  color: var(--gold-mid);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.member-quote {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(109, 88, 72, 0.95);
  line-height: 1.42;
  padding-top: 0.65rem;
  border-top: 1px solid var(--light-border);
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-quote::before {
  content: '"';
  color: var(--gold-mid);
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.member-review-btn {
  width: fit-content;
  margin-top: auto;
  border: 1px solid rgba(53, 216, 198, 0.32);
  border-radius: 999px;
  background: rgba(53, 216, 198, 0.12);
  color: var(--text-dark);
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.member-review-btn:hover,
.member-review-btn:focus-visible {
  background: #35d8c6;
  border-color: #35d8c6;
  transform: translateY(-1px);
  outline: none;
}

.member-card.hidden {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.testimonial-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.testimonial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 27, 19, 0.72);
  backdrop-filter: blur(10px);
}

.testimonial-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(84vh, 760px);
  overflow: auto;
  border: 1px solid rgba(129, 91, 65, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(216, 199, 183, 0.38)),
    var(--light-surface);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--text-dark);
}

.testimonial-dialog:focus {
  outline: none;
}

.testimonial-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(129, 91, 65, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-close:hover,
.testimonial-close:focus-visible {
  background: #35d8c6;
  outline: none;
}

.testimonial-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(53, 216, 198, 0.12);
  border: 1px solid rgba(53, 216, 198, 0.24);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-dialog h2 {
  margin: 0;
  padding-right: 2.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--text-dark);
}

.testimonial-role {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-body {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-border);
}

.testimonial-body p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.join-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.join-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.join-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 27, 19, 0.72);
  backdrop-filter: blur(10px);
}

.join-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  border: 1px solid rgba(129, 91, 65, 0.2);
  border-radius: 18px;
  background: #fffaf4;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  padding: clamp(1.3rem, 4vw, 2rem);
  color: var(--text);
}

.join-modal-dialog:focus {
  outline: none;
}

.join-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(129, 91, 65, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.join-modal-close:hover,
.join-modal-close:focus-visible {
  background: #35d8c6;
  outline: none;
}

.join-modal-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(53, 216, 198, 0.12);
  border: 1px solid rgba(53, 216, 198, 0.24);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.join-modal-dialog h2 {
  padding-right: 2.4rem;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--text);
}

.join-modal-dialog p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.join-modal-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.join-modal-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.join-modal-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(129, 91, 65, 0.2);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  padding: 0.85rem 0.95rem;
}

.join-modal-form input:focus {
  border-color: #35d8c6;
  outline: 2px solid rgba(53, 216, 198, 0.2);
}

.join-modal-form button {
  min-height: 50px;
  border: 1px solid #35d8c6;
  border-radius: 2px;
  background: #35d8c6;
  color: #251b13;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-modal-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.join-modal-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.86rem;
}

.join-modal-status.is-error {
  color: #9f2d18;
}

.join-modal-status.is-success {
  color: #16725f;
}

.join-modal-status.is-pending {
  color: var(--muted);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .cards-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-card {
    min-height: 330px;
  }
}

/* ── VIDEO TESTIMONIALS (MEMBERS) ── */
.sec-video {
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 178, 82, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(216, 199, 183, 0.34)),
    var(--light-alt);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 5rem 2rem;
  position: relative;
}

.sec-video .inner {
  max-width: 980px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0.75rem 0 0.75rem;
}

.video-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(129, 91, 65, 0.12);
  box-shadow: 0 18px 44px rgba(37, 27, 19, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.video-slot {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(216, 199, 183, 0.28));
  border: 1px solid rgba(129, 91, 65, 0.18);
  border-radius: 22px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(37, 27, 19, 0.1);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.video-slot::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.38) 36%, transparent 58%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 620ms ease;
  z-index: 2;
  pointer-events: none;
}

.video-slot-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid rgba(129, 91, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 18px;
}

.video-card > span {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  padding: 0 0.35rem 0.25rem;
  transition: color 220ms ease, transform 220ms ease;
}

.video-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(214, 178, 82, 0.32);
  box-shadow: 0 28px 80px rgba(37, 27, 19, 0.12);
}

.video-card:hover .video-slot,
.video-card:focus-within .video-slot {
  border-color: rgba(214, 178, 82, 0.72);
  box-shadow: 0 26px 70px rgba(37, 27, 19, 0.18), 0 0 0 1px rgba(214, 178, 82, 0.18);
}

.video-card:hover .video-slot::before,
.video-card:focus-within .video-slot::before {
  opacity: 1;
  transform: translateX(45%);
}

.video-card:hover > span,
.video-card:focus-within > span {
  color: var(--brand);
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sec-filter {
    padding: 0.9rem 1rem;
  }

  .filter-inner {
    display: block;
  }

  .filter-btn {
    display: none;
  }

  .filter-select-label {
    display: block;
    margin-bottom: 0.45rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .filter-select {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 0 2.8rem 0 1rem;
    border: 1px solid rgba(129, 91, 65, 0.22);
    border-radius: 14px;
    background:
      linear-gradient(45deg, transparent 50%, var(--gold-mid) 50%) calc(100% - 19px) 50% / 7px 7px no-repeat,
      linear-gradient(135deg, var(--gold-mid) 50%, transparent 50%) calc(100% - 14px) 50% / 7px 7px no-repeat,
      rgba(255, 255, 255, 0.88);
    color: var(--text-dark);
    font-weight: 700;
    appearance: none;
    box-shadow: 0 12px 30px rgba(37, 27, 19, 0.08);
  }

  .sec-cards,
  .sec-video {
    overflow: hidden;
  }

  .sec-cards::after,
  .sec-video::after {
    content: '\2190  \2022  \2022  \2022  \2192';
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0.35rem auto 0;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(129, 91, 65, 0.16);
    color: var(--gold-mid);
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    box-shadow: 0 10px 24px rgba(37, 27, 19, 0.08);
  }

  .cards-inner,
  .video-grid {
    display: flex;
    gap: 16px;
    max-width: none;
    margin-inline: -1rem;
    padding: 0 1rem 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .cards-inner::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .member-card,
  .video-card {
    flex: 0 0 min(84vw, 380px);
    scroll-snap-align: center;
  }

  .video-card {
    flex-basis: min(86vw, 400px);
  }
}

/* ── JOIN CTA (MEMBERS) ── */
.sec-join {
  background: var(--light-bg);
  padding: 5rem 2rem;
  text-align: center;
}

.sec-join .inner {
  max-width: 800px;
  margin: 0 auto;
}

.sec-join h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0 0 2rem;
}

.sec-join h2 .accent {
  color: var(--gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── SHARE WIN (MEMBERS) ── */
.sec-share {
  background: var(--dark-bg);
  padding: 5.5rem 2rem;
  text-align: center;
}

.sec-share .inner {
  max-width: 820px;
  margin: 0 auto;
}

.sec-share h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

.sec-share .lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #e0d3c4;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

body.members-page .theme-footer {
  margin-top: 0;
}

/* ── UPCOMING SESSIONS (EVENTS) ── */
.sec-upcoming {
  background:
    radial-gradient(circle at top left, rgba(53, 216, 198, 0.12), transparent 28%),
    linear-gradient(180deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.88) 100%);
  padding: 5.5rem 2rem;
}

.sec-upcoming .inner {
  max-width: 980px;
  margin: 0 auto;
  width: min(calc(100% - 2rem), 1180px);
}

.upcoming-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 216, 198, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 18px 42px rgba(37, 27, 19, 0.09);
}

.upcoming-card::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(129, 91, 65, 0.08);
  pointer-events: none;
}

.upcoming-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-border);
  position: relative;
  z-index: 1;
}

.upcoming-top h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.meta-pill {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gold-mid);
  border: 1px solid var(--light-border);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.upcoming-top p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 64ch;
}

.learn-label {
  font-size: 0.78rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  box-shadow: 0 8px 18px rgba(37, 27, 19, 0.04);
}

.learn-item::before {
  content: '→';
  color: var(--gold-mid);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.upcoming-card .btn-primary {
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(53, 216, 198, 0.22);
  white-space: nowrap;
}

.upcoming-card .btn-primary.is-disabled {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(0.2);
}

/* ── WHY DIFFERENT (EVENTS) ── */
.sec-dark {
  background: var(--dark-bg);
  padding: 5.5rem 2rem;
}

.sec-dark .inner {
  max-width: 920px;
  margin: 0 auto;
  width: min(calc(100% - 2rem), 1180px);
}

.sec-dark h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.2rem;
  line-height: 1.1;
  max-width: 620px;
}

.sec-dark .lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #e0d3c4;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.benefit-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 1.25rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background: rgba(53, 216, 198, 0.12);
  border: 1px solid rgba(53, 216, 198, 0.2);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}

/* ── MISSED SESSION (EVENTS) ── */
.sec-archive {
  background: var(--light-bg);
  padding: 5rem 2rem;
  text-align: center;
}

.sec-archive .inner {
  max-width: 680px;
  margin: 0 auto;
  width: min(calc(100% - 2rem), 1180px);
}

.sec-archive h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.sec-archive .lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── FAQ (EVENTS) ── */
.sec-faq {
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 5.5rem 2rem;
}

.sec-faq .inner {
  max-width: 860px;
  margin: 0 auto;
  width: min(calc(100% - 2rem), 1180px);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0.8rem 0 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(37, 27, 19, 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.faq-q h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 1.1rem 1.5rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--light-border);
}

.faq-item.open .faq-a {
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .upcoming-top {
    grid-template-columns: 1fr;
  }

  .sec-dark h2 {
    font-size: 1.55rem;
  }

  .upcoming-card {
    padding: 1.2rem;
  }

  .upcoming-card .btn-primary {
    justify-self: stretch;
    width: 100%;
    min-height: 50px;
  }

  .meta-row {
    gap: 0.5rem;
  }

  .meta-pill {
    font-size: 10px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  body.members-page .before-after {
    grid-template-columns: 1fr 1fr;
  }

  .sec-join h2 {
    font-size: 1.5rem;
  }

  .sec-share h2 {
    font-size: 1.5rem;
  }
}

/* ════════════════════════════════
   MTJE BLOG PAGE STYLES
════════════════════════════════ */
.blog-filter .filter-inner {
  max-width: 1100px;
}
.blog-filter .filter-btn.is-active {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: #fff;
}

/* ── BLOG LAYOUT ── */
.sec-blog {
  background: var(--light-bg);
  padding: 4rem 2rem 5rem;
}
.blog-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

/* ── FEATURED CARD ── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(160,130,80,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.featured-card:hover {
  box-shadow: 0 6px 24px rgba(160,130,80,0.13);
  transform: translateY(-2px);
}
.featured-image {
  background: linear-gradient(135deg, #f3ede0 0%, #e8dcc8 100%);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.45;
}
.featured-image-placeholder .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196,154,60,0.15);
  border: 1px solid rgba(196,154,60,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-mid);
}
.featured-image-placeholder span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-mid);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
}
.featured-body {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}
.meta-cat {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: var(--gold-light);
  border: 1px solid rgba(196,154,60,0.2);
  padding: 3px 9px;
  border-radius: 100px;
}
.meta-dot {
  color: var(--light-border);
  font-size: 12px;
}
.meta-info {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}.featured-body h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 0.85rem;
}
.featured-body p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-decoration: none;
  font-weight: 700;
}
.video-testimonial { position: relative; overflow: hidden; cursor: pointer; }
.video-testimonial .video-thumb { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; border: 0; border-radius: inherit; transition: filter 260ms ease, transform 520ms ease; }
.video-testimonial .video-overlay {
  position: absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 0.9rem;
  width: 100%;
  border: 0;
  border-radius: inherit;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(37, 27, 19, 0.04), rgba(37, 27, 19, 0.74)),
    radial-gradient(circle at center, rgba(214, 178, 82, 0.28), transparent 38%);
  opacity: 1;
  color: #fff;
  cursor: pointer;
  transition: background 260ms ease, opacity 220ms ease, transform 260ms ease;
  z-index: 3;
}
.video-testimonial .video-slot-icon {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 40px rgba(37, 27, 19, 0.28), 0 0 0 12px rgba(255, 255, 255, 0.12);
  transform: translateY(10px) scale(0.92);
  transition: transform 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}
.video-overlay-copy {
  display: grid;
  gap: 0.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.video-overlay-copy strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}
.video-overlay-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.video-testimonial:hover .video-overlay,
.video-testimonial:focus-within .video-overlay { transform: translateY(-2px); }
.video-testimonial:hover .video-slot-icon,
.video-testimonial:focus-within .video-slot-icon {
  background: var(--accent-strong);
  color: var(--text);
  box-shadow: 0 20px 46px rgba(37, 27, 19, 0.32), 0 0 0 16px rgba(214, 178, 82, 0.18);
  transform: translateY(0) scale(1);
}
.video-testimonial:hover .video-overlay-copy,
.video-testimonial:focus-within .video-overlay-copy { opacity: 1; transform: translateY(0); }
.video-testimonial:hover .video-thumb,
.video-testimonial:focus-within .video-thumb { filter: saturate(1.08) contrast(1.03); transform: scale(1.065); }
.video-card.is-playing .video-overlay {
  opacity: 0;
  visibility: hidden;
}
.video-card.is-playing .video-thumb {
  filter: none;
  transform: none;
}
.read-link::after {
  content: '→';
  transition: transform 0.18s;
}
.featured-card:hover .read-link::after { transform: translateX(4px); }

/* ── GRID CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.blog-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(160,130,80,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 16px rgba(160,130,80,0.12);
  transform: translateY(-2px);
}
.blog-card.hidden { display: none; }
.card-thumb {
  height: 140px;
  background: linear-gradient(135deg, #f3ede0 0%, #e8dcc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-thumb-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196,154,60,0.12);
  border: 1px solid rgba(196,154,60,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-mid);
  opacity: 0.5;
}
.card-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--light-surface);
  color: var(--gold-mid);
  border: 1px solid rgba(196,154,60,0.2);
  padding: 3px 9px;
  border-radius: 100px;
}
.card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0 0 0.65rem;
}
.card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.1rem;
  flex: 1;
}
.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--light-border);
}
.card-date {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.card-read {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-read::after { content: '→'; }
.blog-card:hover .card-read::after { margin-left: 2px; }

@media (max-width: 700px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 180px; }
  .featured-body { padding: 1.5rem; }
  .featured-body h2 { font-size: 1.25rem; }
}

/* Academy page */
body.academy-page .theme-footer {
  margin-top: 0;
}

.academy-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background: #251b13;
  color: #ffffff;
}

.academy-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.92) 0%, rgba(20, 14, 10, 0.74) 48%, rgba(20, 14, 10, 0.58) 100%),
    linear-gradient(135deg, rgba(53, 216, 198, 0.16), transparent 42%),
    url("/assets/media/group-afro-americans-working-together.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.academy-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.academy-hero-copy {
  display: grid;
  gap: 1.25rem;
  max-width: 760px;
}

.academy-hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
}

.academy-hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.academy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.academy-hero .btn.secondary,
.academy-final .btn.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.academy-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.academy-proof div {
  min-height: 104px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.academy-proof strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  color: #35d8c6;
}

.academy-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.5;
}

.academy-hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  color: #251b13;
}

.academy-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #35d8c6, #f1c862, #815b41);
}

.academy-panel-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: #815b41;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.academy-hero-panel h2 {
  color: #251b13;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.academy-hero-panel p {
  margin-top: 0.75rem;
  color: #6d5848;
  font-size: 0.94rem;
}

.academy-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.academy-form .success-message {
  color: #815b41;
  font-weight: 700;
}

.academy-section {
  padding: 5.5rem 0;
  background: #ebe7e2;
}

.academy-intro {
  border-bottom: 1px solid rgba(129, 91, 65, 0.16);
}

.academy-intro-grid,
.academy-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.academy-intro h2,
.academy-section-head h2,
.academy-experience-copy h2,
.academy-final-box h2 {
  margin-top: 0.85rem;
  color: #251b13;
}

.academy-section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.academy-track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.academy-track {
  min-height: 240px;
  padding: 1.5rem;
  border: 1px solid rgba(129, 91, 65, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(37, 27, 19, 0.08);
}

.academy-track span {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: #35d8c6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.academy-track h3 {
  color: #251b13;
  font-size: 1.15rem;
  line-height: 1.25;
}

.academy-track p {
  margin-top: 0.9rem;
  color: #6d5848;
  font-size: 0.9rem;
  line-height: 1.7;
}

.academy-experience {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(235, 231, 226, 1)),
    #f7f4ef;
}

.academy-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(37, 27, 19, 0.16);
}

.academy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-experience-copy {
  display: grid;
  gap: 1rem;
}

.academy-feature-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.academy-feature-list div {
  padding: 1rem 1.1rem;
  border-left: 3px solid #35d8c6;
  background: rgba(255, 255, 255, 0.68);
}

.academy-feature-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #251b13;
}

.academy-feature-list p {
  color: #6d5848;
  font-size: 0.92rem;
  line-height: 1.65;
}

.academy-final {
  padding: 5.5rem 0;
  background: #251b13;
}

.academy-final-box {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  text-align: center;
  justify-items: center;
  color: #ffffff;
}

.academy-final-box h2 {
  max-width: 760px;
  color: #ffffff;
}

.academy-final-box p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.academy-final .button-row {
  justify-content: center;
}

@media (max-width: 920px) {
  .academy-hero-grid,
  .academy-intro-grid,
  .academy-experience-grid {
    grid-template-columns: 1fr;
  }

  .academy-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-media {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .academy-hero {
    min-height: auto;
    padding: 8rem 0 3.5rem;
  }

  .academy-proof,
  .academy-track-grid {
    grid-template-columns: 1fr;
  }

  .academy-proof div {
    min-height: auto;
  }

  .academy-actions,
  .academy-actions .btn,
  .academy-final .button-row,
  .academy-final .btn {
    width: 100%;

  /* Join page */
  body.join-page .theme-footer {
    margin-top: 0;
  }

  body.join-page {
    background:
      radial-gradient(circle at top left, rgba(53, 216, 198, 0.12), transparent 28%),
      radial-gradient(circle at 85% 18%, rgba(241, 200, 98, 0.1), transparent 26%),
      #f4efe8;
  }

  body.join-page .glow {
    opacity: 0.42;
  }

  body.join-page .hero {
    position: relative;
    min-height: min(92vh, 860px);
    display: flex;
    align-items: center;
    padding: 8.75rem 0 5rem;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(20, 14, 10, 0.95) 0%, rgba(20, 14, 10, 0.82) 42%, rgba(20, 14, 10, 0.62) 100%),
      linear-gradient(135deg, rgba(53, 216, 198, 0.12), transparent 44%),
      linear-gradient(180deg, #251b13 0%, #18110c 100%);
    color: #ffffff;
  }

  body.join-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(53, 216, 198, 0.14), transparent 18%),
      radial-gradient(circle at 78% 14%, rgba(241, 200, 98, 0.08), transparent 16%);
    pointer-events: none;
  }

  body.join-page .hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }

  body.join-page .join-hero-copy {
    gap: 1.15rem;
  }

  body.join-page .join-eyebrow,
  body.join-page .join-section-heading .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: #f7e8c1;
    border-color: rgba(255, 255, 255, 0.14);
  }

  body.join-page .join-hero h1 {
    max-width: 720px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }

  body.join-page .join-hero .accent {
    color: #35d8c6;
  }

  body.join-page .join-hero .lead {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
  }

  body.join-page .join-actions {
    margin-top: 0.35rem;
  }

  body.join-page .join-hero .btn.secondary {
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
  }

  body.join-page .join-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 0.8rem;
    max-width: 680px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
  }

  body.join-page .join-hero-stats div {
    min-height: 100px;
    padding: 1.05rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
  }

  body.join-page .join-hero-stats strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #35d8c6;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.45rem;
  }

  body.join-page .join-hero-stats span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    line-height: 1.55;
  }

  body.join-page .join-hero-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 1.85rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
    color: #251b13;
  }

  body.join-page .join-panel-top {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
  }

  body.join-page .join-panel-top h2 {
    color: #251b13;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    line-height: 1.02;
  }

  body.join-page .join-hero-panel img {
    border-radius: 16px;
  }

  body.join-page .join-section {
    padding: 5.25rem 0;
  }

  body.join-page .join-audience-section {
    background: linear-gradient(180deg, #f4efe8 0%, #ece3d7 100%);
  }

  body.join-page .join-benefits-section {
    background: #22170f;
  }

  body.join-page .join-benefits-section .join-section-heading h2,
  body.join-page .join-benefits-section .join-section-heading p,
  body.join-page .join-benefits-section .join-section-heading .eyebrow {
    color: #ffffff;
  }

  body.join-page .join-benefits-section .join-section-heading p {
    color: rgba(255, 255, 255, 0.78);
  }

  body.join-page .join-role-card,
  body.join-page .join-benefit-card,
  body.join-page .join-step-card,
  body.join-page .join-faq-card,
  body.join-page .join-proof-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(129, 91, 65, 0.16);
    box-shadow: 0 16px 38px rgba(37, 27, 19, 0.08);
  }

  body.join-page .join-role-card {
    min-height: 250px;
  }

  body.join-page .join-role-card .meta {
    color: #35d8c6;
  }

  body.join-page .join-role-card h3,
  body.join-page .join-step-card h3,
  body.join-page .join-faq-card h3,
  body.join-page .join-proof-card h2,
  body.join-page .join-benefit-card {
    color: #251b13;
  }

  body.join-page .join-benefits-section .join-benefit-card {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.08);
  }

  body.join-page .join-steps-section {
    background: linear-gradient(180deg, #ece3d7 0%, #f4efe8 100%);
  }

  body.join-page .join-step-card .stat-value {
    color: #35d8c6;
  }

  body.join-page .join-proof-section {
    background: #f4efe8;
  }

  body.join-page .join-proof-media {
    min-height: 520px;
  }

  body.join-page .join-faq-section {
    background: linear-gradient(180deg, #f4efe8 0%, #ece3d7 100%);
  }

  body.join-page .join-faq-card h3 {
    color: #251b13;
  }

  @media (max-width: 920px) {
    body.join-page .hero-grid {
      grid-template-columns: 1fr;
    }

    body.join-page .join-proof-media {
      min-height: 360px;
    }
  }

  @media (max-width: 640px) {
    body.join-page .hero {
      min-height: auto;
      padding: 8rem 0 3.5rem;
    }

    body.join-page .join-hero-stats {
      grid-template-columns: 1fr;
    }

    body.join-page .join-actions,
    body.join-page .join-actions .btn {
      width: 100%;
    }

    body.join-page .join-section {
      padding: 4rem 0;
    }
  }
  }

  .academy-section,
  .academy-final {
    padding: 4rem 0;
  }
}

/* Resource Templates Section - Remove Grid Background */
.resource-templates-section {
  background: #ffffff !important;
  position: relative;
  z-index: 1;
  padding-bottom: 5.5rem !important;
}

.resource-templates-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
  z-index: -1;
}

body.resource-page .theme-footer {
  margin-top: 0;
}

body.about-page .about-proof-section {
  padding: 4.5rem 0 5rem;
  background: #f7f4ef;
}

body.about-page .about-proof-section::before {
  opacity: 0.18;
}

body.about-page .about-proof-section .stats-section-head {
  display: grid;
  gap: 1rem;
}

body.about-page .about-proof-section .stats-eyebrow,
body.about-page .about-proof-section .stats-section-head h2 {
  margin-bottom: 0;
}

body.about-page .about-proof-section .stats-grid-new {
  margin-top: 1.5rem;
}

body.about-page .mv-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

body.about-page .mv-card p + p {
  margin-top: 0.25rem;
}

body.about-page .team-list {
  margin-top: 0.5rem;
}

body.about-page .about-final-cta {
  margin-top: 0;
  padding-top: 5rem;
}
