:root {
  --navy: #06142f;
  --navy-2: #0b1d3f;
  --navy-3: #10264f;
  --blue: #10264f;
  --blue-2: #1a3567;
  --gold: #d9a91e;
  --gold-2: #f4cf5d;
  --red: #d9a91e;
  --red-2: #f4cf5d;
  --green: #d9a91e;
  --white: #ffffff;
  --cream: #fbf7ea;
  --bg: #f7f5ee;
  --surface: rgba(255, 255, 255, 0.88);
  --ink: #07162e;
  --muted: #5d6b82;
  --line: rgba(6, 20, 47, 0.12);
  --line-strong: rgba(6, 20, 47, 0.2);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow: 0 18px 55px rgba(6, 20, 47, 0.12);
  --shadow-strong: 0 30px 90px rgba(6, 20, 47, 0.22);
  --content: 1180px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 20, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 20, 47, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(246, 200, 0, 0.9);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(6, 20, 47, 0.08);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 24px);
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 220px;
  gap: 10px;
}

.brand-logo {
  width: 58px;
  height: 46px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  padding: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.site-header .brand-text small {
  display: none;
}

.brand-text small {
  max-width: 220px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 0.7vw, 12px);
  min-width: 0;
  white-space: nowrap;
}

.site-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 10px clamp(8px, 0.8vw, 12px);
  border-radius: 999px;
  color: var(--navy);
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(246, 200, 0, 0.2);
  color: var(--navy);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-social {
  flex-wrap: nowrap;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  padding: 0;
}

.social-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.nav-social {
  display: none;
}

.social-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 169, 30, 0.7);
  background: rgba(217, 169, 30, 0.14);
}

.language-toggle {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-btn {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 9px 10px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn.is-active {
  background: var(--gold);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.section,
.hero,
.page-hero {
  position: relative;
}

.section {
  padding: 78px 0;
}

.hero,
.page-hero {
  overflow: hidden;
  padding: 96px 0;
}

.brand-band {
  color: var(--white);
  background: var(--navy);
}

.red-panel {
  color: var(--white);
  background: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: 58px;
}

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

.eyebrow,
.card-kicker,
.sponsor-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-band .eyebrow,
.red-panel .eyebrow,
.event-dashboard .eyebrow,
.cta-card .eyebrow {
  color: var(--gold-2);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: inherit;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 1.03;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
  color: inherit;
  font-size: 1.12rem;
  line-height: 1.25;
}

.lede,
.info-card p,
.pricing-card p,
.event-info p,
.contact-list,
.site-footer p {
  line-height: 1.72;
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 600;
}

.section .lede,
.info-card p,
.pricing-card p {
  color: var(--muted);
}

.narrow-copy {
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.centered-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(6, 20, 47, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button[data-en*="$"],
.button[data-es*="$"] {
  white-space: nowrap;
}

.button::after {
  content: "→";
  font-weight: 950;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 20, 47, 0.2);
}

.button:hover::after {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-secondary {
  background: var(--navy);
  color: var(--white);
}

.brand-band .button-secondary,
.red-panel .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 12px 28px rgba(6, 20, 47, 0.16);
}

.hero-visual,
.card-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border-radius: var(--radius-lg);
  background: rgba(217, 169, 30, 0.18);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 430px;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--white);
  object-fit: contain;
  padding: 20px;
}

.surface-panel {
  background: rgba(255, 255, 255, 0.62);
}

.three-up,
.card-grid,
.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 34px;
}

.info-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
}

.partner-logo-panel,
.community-partner-logo-area {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 108px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #071735;
  padding: 20px;
}

.info-card .partner-logo-panel {
  width: min(240px, 100%);
  min-height: 112px;
  margin: 0 0 20px;
  border-radius: var(--radius-md);
}

.partner-logo-panel img,
.community-partner-logo-area img {
  width: min(180px, 70%);
  max-height: 70px;
  border-radius: var(--radius-sm);
  background: #f3f4f6;
  object-fit: contain;
  padding: 12px 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.partner-logo {
  width: min(180px, 70%);
  max-height: 70px;
  object-fit: contain;
}

.info-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--gold);
}

.accent-yellow::before {
  background: var(--gold);
}

.accent-blue::before {
  background: var(--navy);
}

.accent-red::before {
  background: var(--gold-2);
}

.info-card h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.025em;
}

.info-card p:last-child,
.pricing-card p:last-child {
  margin-bottom: 0;
}

.card-kicker {
  margin-top: 10px;
}

.section-intro {
  margin-bottom: 36px;
}

.section-intro.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro.centered .lede {
  margin-right: auto;
  margin-left: auto;
}

.official-copy {
  max-width: 920px;
}

.official-copy h2 {
  color: var(--navy);
}

.official-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

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

.clean-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 26px;
}

.clean-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

.conversion-section .section-intro {
  margin-bottom: 30px;
}

.conversion-section .feature-card {
  min-height: 100%;
}

.trust-strip {
  border-block: 1px solid rgba(6, 20, 47, 0.08);
  background: var(--white);
  padding: 26px 0;
}

.trust-strip-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.trust-strip p {
  max-width: 860px;
  margin: 0;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.45;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-items span {
  border: 1px solid rgba(217, 169, 30, 0.34);
  border-radius: 999px;
  background: rgba(217, 169, 30, 0.12);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 950;
}

.partner-sales-section .lede {
  color: var(--muted);
}

.member-benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
}

.member-benefits h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.member-benefits p {
  color: var(--muted);
}

.member-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.member-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.member-benefit-item .card-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: 0;
}

.sponsor-strip {
  padding: 54px 0;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.sponsor-container {
  display: grid;
  gap: 24px;
}

.sponsor-label {
  color: var(--gold-2);
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.sponsor-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: #071735;
  padding: 18px 24px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sponsor-logos a:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.sponsor-logos img {
  max-height: 52px;
  border-radius: var(--radius-sm);
  background: #f3f4f6;
  object-fit: contain;
  padding: 10px 14px;
}

.community-partners .section-intro {
  margin-bottom: 28px;
}

.community-partners h2 {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

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

.community-partner-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  justify-items: stretch;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 0;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.community-partner-card:hover {
  transform: scale(1.05);
  border-color: rgba(246, 200, 0, 0.78);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.community-partner-body {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px 18px 24px;
}

.community-partner-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.community-partner-card p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
}

.partner-placeholder {
  opacity: 0.5;
  box-shadow: none;
}

.partner-slot-mark > span {
  border: 1px solid rgba(217, 169, 30, 0.44);
  border-radius: 999px;
  color: var(--gold-2);
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.partner-placeholder .community-partner-body > span {
  color: var(--navy);
  font-weight: 950;
}

.event-dashboard-section {
  padding-top: 84px;
}

.event-dashboard {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.dashboard-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 34px 18px;
}

.section > .container > .dashboard-header {
  padding: 0 0 24px;
  color: var(--ink);
}

.event-list {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.event-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.event-row:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 200, 0, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.event-row.featured {
  background: rgba(217, 169, 30, 0.18);
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 74px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy);
  text-align: center;
  box-shadow: inset 0 -4px 0 rgba(246, 200, 0, 0.45);
}

.event-date span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-date strong {
  font-size: 1.75rem;
  line-height: 1;
}

.event-info p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.event-row > a:not(.button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-2);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.event-row > a:not(.button):hover {
  transform: translateY(-1px);
  background: rgba(246, 200, 0, 0.18);
}

.dashboard-footer {
  padding: 0 34px 34px;
}

.cta-section {
  padding-top: 42px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  padding: clamp(28px, 5vw, 46px);
  box-shadow: var(--shadow-strong);
}

.cta-card h2 {
  max-width: 780px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  padding: 30px;
}

.pricing-card h3 {
  margin: 10px 0 16px;
  color: var(--navy);
  font-size: clamp(2.65rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.pricing-grid.four-grid .pricing-card h3 {
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
}

.pricing-card h3.card-big-word {
  display: grid;
  place-items: center;
  min-height: 116px;
  max-width: 100%;
  margin: 8px 0 18px;
  font-size: clamp(2.85rem, 4.4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  overflow-wrap: normal;
  text-align: center;
  word-break: keep-all;
}

.pricing-card h3 small {
  white-space: nowrap;
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.pricing-card .card-icon {
  width: 46px;
  height: 46px;
}

.impact-card .card-icon,
.feature-card .card-icon {
  margin-bottom: 16px;
}

.plan-description {
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 26px;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.featured-tier {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.leadership-section {
  background: rgba(255, 255, 255, 0.62);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.leader-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(100%);
}

.leader-card h3 {
  padding: 16px 18px 4px;
  color: var(--navy);
  font-size: 1rem;
}

.leader-card p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-list p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.contact-list a {
  color: var(--blue);
  font-weight: 900;
}

.class-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.68fr);
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 4vw, 34px);
}

.class-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.03em;
}

.class-card p {
  color: var(--muted);
}

.class-details {
  display: grid;
  gap: 12px;
}

.class-details p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px 14px;
}

.class-details strong {
  color: var(--navy);
}

.class-details .button {
  margin-top: 8px;
}

.academy-class-grid {
  display: grid;
  gap: 24px;
}

.academy-class-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
}

.academy-class-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  letter-spacing: -0.03em;
}

.academy-class-main {
  min-width: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid rgba(217, 169, 30, 0.42);
  border-radius: 999px;
  background: rgba(217, 169, 30, 0.15);
  color: var(--navy);
  padding: 7px 11px;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-open {
  border-color: rgba(217, 169, 30, 0.44);
  background: rgba(217, 169, 30, 0.16);
}

.status-almost-full {
  border-color: rgba(217, 169, 30, 0.72);
  background: rgba(217, 169, 30, 0.28);
}

.status-full,
.status-closed,
.status-completed {
  border-color: rgba(93, 107, 130, 0.28);
  background: rgba(93, 107, 130, 0.1);
  color: var(--muted);
}

.status-confirmed {
  border-color: rgba(217, 169, 30, 0.52);
  background: rgba(217, 169, 30, 0.18);
}

.status-waitlisted {
  border-color: rgba(93, 107, 130, 0.32);
  background: rgba(93, 107, 130, 0.12);
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.62;
  box-shadow: none;
}

.feature-card .button {
  margin-top: 16px;
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.confirmation-card {
  display: grid;
  gap: 18px;
}

.checkin-code-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(217, 169, 30, 0.44);
  border-radius: var(--radius-md);
  background: rgba(217, 169, 30, 0.12);
  padding: 18px;
  color: var(--navy);
}

.checkin-code-card span {
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkin-code-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.checkin-link {
  overflow-wrap: anywhere;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.compact-form {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.academy-admin-stack {
  display: grid;
  gap: 26px;
}

.academy-admin-class {
  display: grid;
  gap: 24px;
}

.academy-admin-class-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

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

.platform-grid,
.directory-grid,
.media-grid,
.partner-grid,
.impact-grid,
.timeline-grid,
.benefit-grid,
.form-grid {
  display: grid;
  gap: 24px;
}

.platform-grid,
.directory-grid,
.media-grid,
.partner-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card,
.directory-card,
.media-card,
.partner-card,
.impact-card,
.timeline-card,
.payment-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.directory-card:hover,
.media-card:hover,
.partner-card:hover,
.impact-card:hover,
.timeline-card:hover,
.payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 200, 0, 0.45);
  box-shadow: var(--shadow-strong);
}

.feature-card h3,
.directory-card h3,
.media-card h3,
.partner-card h3,
.impact-card h3,
.timeline-card h3,
.payment-card h3 {
  color: var(--navy);
}

.feature-card p,
.directory-card p,
.media-card p,
.partner-card p,
.impact-card p,
.timeline-card p,
.payment-card p {
  color: var(--muted);
  line-height: 1.65;
}

.badge,
.tier-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(246, 200, 0, 0.18);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 14px 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 38px);
}

.opportunities-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.directory-toolbar {
  max-width: 940px;
  margin-inline: auto;
}

.opportunities-search {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 16px 18px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.opportunities-search:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(217, 169, 30, 0.18), var(--shadow);
}

.opportunity-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opportunity-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.opportunity-filter:hover {
  transform: translateY(-1px);
}

.opportunity-filter.is-active {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.opportunity-empty {
  margin-top: 18px;
}

.directory-soft-cta {
  padding-top: 0;
}

.directory-get-listed-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.directory-get-listed-cta h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.directory-get-listed-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.55;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.logo-upload-field {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 20, 47, 0.03);
  padding: 18px;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.upload-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.upload-status.success {
  color: var(--green);
}

.upload-status.error {
  color: var(--red);
}

.logo-preview {
  width: min(280px, 100%);
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 14px;
}

.logo-preview img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(217, 169, 30, 0.18);
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.placeholder-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.sponsor-text-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sponsor-text-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: var(--white);
  text-align: left;
}

.sponsor-text-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.event-actions .button {
  min-height: 40px;
  padding: 11px 15px;
  font-size: 0.86rem;
}

.event-row.detailed {
  align-items: start;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.event-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.narrow-container {
  max-width: 760px;
}

.compact-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.listing-topline,
.profile-actions,
.admin-toolbar,
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-edit-panel {
  margin: 22px 0;
}

.admin-edit-form {
  box-shadow: var(--shadow-strong);
}

.sample-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(6, 20, 47, 0.08);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-logo {
  width: 100%;
  height: 92px;
  margin: 18px 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  object-fit: contain;
  padding: 14px;
}

.business-profile-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.profile-logo {
  width: min(280px, 100%);
  max-height: 150px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  object-fit: contain;
  padding: 18px;
}

.video-carousel {
  display: grid;
  grid-auto-columns: minmax(260px, 340px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
}

.video-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-card a {
  display: grid;
  height: 100%;
}

.video-card h3,
.video-card p {
  margin: 0;
  padding: 0 18px;
}

.video-card h3 {
  padding-top: 16px;
  color: var(--navy);
}

.video-card p {
  padding-top: 8px;
  padding-bottom: 18px;
  color: var(--muted);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

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

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 15px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-upsell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 24px;
  align-items: start;
}

.youtube-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.youtube-player {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.youtube-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.youtube-thumbs {
  display: grid;
  max-height: 520px;
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
}

.youtube-thumb {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 10px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.youtube-thumb:hover,
.youtube-thumb.is-active {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 14px 30px rgba(6, 20, 47, 0.12);
  transform: translateY(-1px);
}

.youtube-thumb .video-thumb {
  grid-row: span 2;
  border-radius: 12px;
}

.youtube-thumb strong {
  align-self: end;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.25;
}

.youtube-thumb small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.split-layout > .youtube-feature {
  grid-template-columns: 1fr;
}

.split-layout > .youtube-feature .youtube-thumbs {
  max-height: none;
}

.payment-note,
.disclaimer {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 18px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}

.checkbox-group {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.checkbox-group legend {
  padding: 0 8px;
  color: var(--navy);
  font-weight: 950;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 12px 6px 0;
  color: var(--muted);
  font-weight: 850;
}

.form-message {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 850;
}

.form-message.info {
  background: rgba(217, 169, 30, 0.14);
  color: var(--navy);
}

.form-message.success {
  background: rgba(217, 169, 30, 0.14);
  color: var(--navy);
}

.form-message.error {
  background: rgba(6, 20, 47, 0.08);
  color: var(--navy);
}

.admin-nav {
  margin-top: 24px;
}

.admin-nav a,
.mini-button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 9px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 900;
}

.mini-button {
  border-color: var(--line);
  background: var(--navy);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(6, 20, 47, 0.06);
  color: var(--navy);
  font-weight: 950;
  text-transform: capitalize;
}

.admin-table .mini-button {
  margin: 2px;
  padding: 7px 10px;
  font-size: 0.75rem;
}

.sponsor-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 86px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 950;
}

.credit a {
  color: var(--white);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  padding: 34px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p,
.credit p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-inner nav a {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease;
}

.footer-inner nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-2);
}

.footer-social {
  justify-content: flex-end;
}

.footer-social a {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  border-color: rgba(217, 169, 30, 0.7);
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.12);
}

.credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.72;
}

#wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

#wa-link {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#wa-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wa-icon {
  font-size: 18px;
  line-height: 1;
}

.wa-text {
  font-size: 14px;
}

@media (max-width: 1120px) {
  .header-social {
    display: none;
  }
}

@media (max-width: 1040px) {
  .community-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .topbar {
    min-height: 78px;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text small {
    max-width: 190px;
    font-size: 0.76rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex: 0 0 100%;
    width: 100%;
    overflow: visible;
    border-top: 1px solid var(--line);
    padding: 12px 0 16px;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-nav a {
    width: 100%;
    background: rgba(6, 20, 47, 0.04);
    padding: 13px 14px;
  }

  .site-nav.is-open .nav-social {
    display: flex;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .site-nav.is-open .nav-social a {
    width: 36px;
    padding: 0;
    background: rgba(255, 255, 255, 0.72);
  }

  .hero,
  .page-hero,
  .section {
    padding: 62px 0;
  }

  .hero-grid,
  .split-layout,
  .directory-get-listed-cta,
  .member-benefits,
  .class-card,
  .academy-class-card,
  .business-profile-grid,
  .dashboard-grid,
  .video-upsell,
  .youtube-feature,
  .three-up,
  .card-grid,
  .contact-columns,
  .program-grid,
  .leadership-grid,
  .platform-grid,
  .directory-grid,
  .media-grid,
  .partner-grid,
  .impact-grid,
  .timeline-grid,
  .benefit-grid,
  .form-grid,
  .sponsor-text-grid,
  .pricing-grid,
  .pricing-grid.four-grid,
  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .member-benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions,
  .cta-card,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .payment-actions,
  .event-actions {
    flex-direction: column;
  }

  .dashboard-header {
    align-items: start;
    flex-direction: column;
    padding: 28px 22px 10px;
  }

  .event-list {
    padding: 14px;
  }

  .event-row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .event-row > a:not(.button) {
    grid-column: 1 / -1;
    width: 100%;
  }

  .featured-tier {
    transform: none;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .youtube-thumbs {
    grid-auto-columns: minmax(240px, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 4px 4px 14px;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 12px;
  }

  .brand-text small {
    display: none;
  }

  .language-toggle {
    order: 2;
  }

  .menu-toggle {
    padding-inline: 12px;
  }

  .hero-actions {
    gap: 10px;
  }

  .youtube-thumb {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .event-date {
    width: 86px;
  }

  .sponsor-logos a {
    width: 100%;
  }

  .community-partner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wa-text {
    display: none;
  }

  #wa-link {
    border-radius: 50%;
    padding: 14px;
  }
}
