@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #fafaf9;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-solid: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;

  --primary: #065f46;
  /* Emerald Green */
  --primary-light: #10b981;
  --primary-soft: rgba(16, 185, 129, 0.1);

  --secondary: #b45309;
  /* Deep Gold/Amber */
  --secondary-light: #f59e0b;
  --secondary-soft: rgba(245, 158, 11, 0.1);

  --accent: #1e3a8a;
  /* Indigo/Navy */

  --green: var(--primary);
  --navy: var(--accent);
  --gold: var(--secondary);
  --muted: var(--text-muted);

  --border: rgba(15, 23, 42, 0.08);
  --border-glass: rgba(255, 255, 255, 0.2);

  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  --shadow-strong: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
  --shadow: var(--shadow-md);

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-blur: blur(12px);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(at 0% 0%, hsla(158, 82%, 96%, 1) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(38, 92%, 96%, 1) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(217, 91%, 95%, 1) 0, transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand-copy strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

body::before {
  content: '';
  position: fixed;
  inset: 0 auto 0 0;
  width: 16px;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 54, 27, 0.98), rgba(8, 54, 27, 0.98)),
    repeating-linear-gradient(135deg,
      #0f5b2f 0 10px,
      #f6f4ee 10px 18px,
      #d6a01d 18px 28px,
      #b21f35 28px 38px);
  opacity: 0.94;
}

a {
  color: inherit;
}

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

.page-shell {
  position: relative;
  z-index: 1;
}

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

.glass-panel {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  min-height: 180px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-copy strong {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-copy span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-nav {
  display: flex;
  gap: 2rem;
}

.top-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.top-nav a:hover {
  color: var(--primary);
}

.top-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.top-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.23);
}

.btn-secondary {
  color: var(--green);
  background: #fff;
  border: 1px solid rgba(15, 91, 47, 0.22);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #f3f9f5;
}

.btn-dark {
  background: linear-gradient(135deg, #064e3b, #022c22);
  color: white;
  box-shadow: 0 12px 28px rgba(6, 78, 59, 0.2);
}

.btn-accent {
  background: linear-gradient(135deg, #d99c18, #f1b12f);
  color: #10243c;
  box-shadow: 0 12px 28px rgba(217, 156, 24, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--green);
  box-shadow: none;
}

.mobile-only-cta {
  display: none;
}

.nav-cta {
  padding-inline: 1.35rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 100;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  position: relative;
  transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: transform 0.2s ease, top 0.2s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

/* Hero: pale gradient, centered giant headline (screenshot style) */
.hero-section {
  position: relative;
  padding: 6.5rem 0 5rem;
  background: linear-gradient(120deg, #f6fbf8 0%, #f6f4f9 55%, #f9f7f6 100%);
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy-centered {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title-giant {
  font-size: clamp(3.2rem, 8.2vw, 5.6rem);
  line-height: 1.02;
  margin: 0.6rem auto 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}


.hero-lead-centered {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions-centered {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}

.hero-actions-centered .btn-primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  color: #fff;
}

.hero-actions-centered .btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(16, 33, 27, 0.06);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(236, 252, 246, 0.65), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95));
  pointer-events: none;
  z-index: 0;
}

.hero-centered {
  padding: 10rem 0 8rem;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--text);
  max-width: 12ch;
  margin-inline: auto;
}

.hero-lead {
  margin: 1.75rem auto 0;
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-actions .btn {
  min-width: 180px;
}

.hero-copy-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.about-action-row {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.hero-title-giant {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-title-giant {
  text-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hero-lead-centered {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-actions-centered {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-stat {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  min-height: 96px;
  display: grid;
  gap: 0.35rem;
  place-content: center;
  text-align: center;
}

.hero-stat strong {
  font-size: 1.35rem;
  display: block;
  color: var(--text);
}

.hero-stat span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-giant {
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.15;
}

.blob-1 {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--primary);
}

.blob-2 {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
}

.relative-z {
  position: relative;
  z-index: 2;
}

.section {
  padding: 8rem 0;
}

section {
  scroll-margin-top: 100px;
}

.section-soft {
  background-color: #f8fafc;
}

.subpage-hero {
  padding: 5rem 0 2rem;
}

.subpage-shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 4rem;
  background: linear-gradient(135deg, #0f5b2f 0%, #053d31 55%, #0b1f3a 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.subpage-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.22), transparent 30%);
  pointer-events: none;
}

.subpage-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.subpage-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.subpage-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.subpage-lead {
  max-width: 72ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.subpage-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 600;
}

.page-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-link-row .btn {
  min-width: 190px;
}

.details-section {
  padding-top: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.details-panel {
  padding: 2rem;
  border-radius: 28px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.details-panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li+li {
  margin-top: 0.85rem;
}

.details-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
}

.details-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary-light);
}

.agenda-list {
  display: grid;
  gap: 1rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f7fbf8;
  border: 1px solid rgba(6, 95, 70, 0.08);
}

.agenda-item strong {
  color: var(--primary);
}

.agenda-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.agenda-item p {
  margin: 0;
  color: var(--text-muted);
}

.resource-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.resource-page-section {
  padding-top: 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.25rem;
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-top: 0.5rem;
}

.section-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
}

.section-kicker.light {
  color: var(--secondary-light);
}

.hidden {
  display: none !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}

.about-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-media-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  position: relative;
}

.about-media-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-media-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-lead {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text);
  max-width: 72ch;
  margin: 0;
}

.about-feature-list {
  display: grid;
  gap: 1.15rem;
}

.about-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(229, 243, 237, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-xl);
  padding: 1rem 1.2rem;
}

.about-feature h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--text);
}

.about-feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-icon-green {
  background: var(--primary);
}

.feature-icon-gold {
  background: var(--secondary);
}

.feature-icon-red {
  background: #dc2626;
}

.media-card-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.about-list li {
  font-size: 1.1rem;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.about-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.principle-card {
  padding: 1.75rem 1.6rem;
}

.principle-badge {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0;
}

.principle-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.2rem;
}

.value-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.about-media {
  min-width: 0;
}

.media-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow);
}

.media-img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: 62% center;
}

.about-copy p,
.register-copy p,
.cta-banner p,
.resource-card p,
.principle-card p,
.event-copy p,
.footer-brand p,
.footer-col p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-copy {
  padding: 0.5rem 0 0.5rem 0.6rem;
}

.about-copy .btn {
  margin-top: 1.25rem;
}

.identity-section {
  background-color: #faf9f6;
  padding: 6rem 0 10rem;
  text-align: center;
}

.identity-header {
  max-width: 650px;
  margin: 0 auto 5rem;
}

.identity-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.identity-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.identity-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.identity-cards-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 4rem;
}

.values-floating-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  border-radius: 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  max-width: 800px;
  padding: 2.5rem 2rem;
  z-index: 10;
  box-shadow: 0 20px 40px -10px rgba(6, 95, 70, 0.4);
}

.value-item {
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.value-item svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.value-item span {
  font-size: 1rem;
  font-weight: 500;
}

.mv-main-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 10rem 4rem 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.mv-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.mv-col {
  flex: 1;
  text-align: left;
}

.mv-divider {
  width: 1px;
  background: #e2e8f0;
  align-self: stretch;
}

.mv-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.mv-heading svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.mv-col p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

.mv-action-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.mv-btn {
  display: inline-block;
  background: var(--primary);
  border-radius: 12px;
  padding: 1rem 2.5rem;
  color: white !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(6, 95, 70, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mv-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  padding: 2.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  height: 100%;
}

.program-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.program-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.program-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.program-icon-primary {
  background: var(--primary-soft);
  color: var(--primary);
}

.program-icon-secondary {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.program-icon-accent {
  background: rgba(30, 58, 138, 0.1);
  color: var(--accent);
}

.badge-green {
  background: var(--primary-soft);
  color: var(--primary);
}

.badge-gold {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.badge-red {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.event-banner {
  background: linear-gradient(135deg, var(--primary), #064e3b);
  border-radius: var(--radius-xl);
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.event-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  transform: rotate(-15deg);
}

.event-copy h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.event-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.event-btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: transparent;
}

.event-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.btn-icon-right {
  margin-right: 6px;
}

.btn-full {
  width: 100%;
}

.countdown-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.countdown-unit {
  text-align: center;
}

.countdown-unit strong {
  font-size: 2.5rem;
  display: block;
}

.countdown-unit span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

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

.impact-card {
  padding: 1.4rem;
  display: grid;
  gap: 0.5rem;
  text-align: left;
}

.impact-card strong {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  letter-spacing: -0.05em;
  color: #0f172a;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
}

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

.resource-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
}

.resource-label {
  min-width: initial;
  min-height: initial;
  padding: 0.45rem 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green);
  background: rgba(15, 91, 47, 0.12);
}

.resources-intro {
  max-width: 70ch;
  margin: 0.85rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.resource-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #0f172a;
}

.resource-card p {
  flex: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-top: auto;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.resource-link::after {
  content: '>';
  transition: transform 0.2s ease;
}

.resource-link:hover::after,
.resource-link:focus-visible::after {
  transform: translateX(3px);
}

.resource-card-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  border-color: rgba(6, 95, 70, 0.12);
  box-shadow: 0 22px 40px -24px rgba(6, 95, 70, 0.25);
}

.resource-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.resource-points li+li {
  margin-top: 0.45rem;
}

.tor-details {
  margin-top: 0.35rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 95, 70, 0.1);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.tor-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--green);
  list-style: none;
}

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

.tor-details summary::after {
  content: '+';
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 91, 47, 0.08);
  color: var(--green);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.tor-details[open] summary::after {
  content: '-';
}

.tor-body {
  padding: 0 1.1rem 1.1rem;
}

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

.tor-body h4 {
  margin: 1rem 0 0.35rem;
  font-size: 1.02rem;
  color: #0f172a;
}

.tor-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 95, 70, 0.95);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
  z-index: 1200;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--primary-light);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 2rem;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #022c22);
  box-shadow: var(--shadow-strong);
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.cta-banner p {
  max-width: 56ch;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.cta-banner-large {
  padding: 4rem 3rem;
  border-radius: 40px;
}

.cta-kicker {
  color: var(--secondary-light);
  margin-bottom: 1rem;
  display: inline-block;
}

.cta-title {
  font-size: 2.5rem;
  margin-top: 0;
}

.cta-subtitle {
  font-size: 1.15rem;
}

.cta-action-right {
  text-align: right;
}

.cta-btn-large {
  padding: 1.2rem 2.5rem;
  border-radius: 20px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-icon {
  margin-left: 8px;
  vertical-align: text-bottom;
}

.register-subtitle {
  max-width: 600px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.google-form-container {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto 0;
  border: 1px solid var(--border);
}

.register-list {
  margin: 1.4rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.register-list li+li {
  margin-top: 0.65rem;
}

.register-copy .eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.register-copy h3 {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  color: #0f172a;
}

.register-card.card {
  padding: 2rem;
}

.btn.btn-secondary.large {
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.register-note {
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 91, 47, 0.14);
  background: #eef8f0;
  color: var(--green);
  font-weight: 600;
}

.register-card {
  padding: 1.5rem;
}

.panel {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.alert {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 91, 47, 0.14);
  background: rgba(238, 248, 238, 0.9);
  color: var(--green);
}

.field-label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #182033;
}

.btn.large {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
}

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

.community-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
}

.community-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  color: #0f172a;
}

.reg-form {
  display: grid;
  gap: 1rem;
}

.reg-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: #182033;
}

.reg-form input,
.reg-form select {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fbfcfe;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.reg-form input::placeholder {
  color: #98a2b3;
}

.reg-form input:focus,
.reg-form select:focus {
  border-color: rgba(15, 91, 47, 0.4);
  box-shadow: 0 0 0 4px rgba(15, 91, 47, 0.1);
  background: #fff;
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.consent input {
  margin-top: 0.18rem;
  width: auto;
  accent-color: var(--green);
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.form-actions .btn {
  width: 100%;
}

.msg {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.msg.success {
  border: 1px solid rgba(15, 91, 47, 0.18);
  color: #14532d;
  background: #edf9f0;
}

.msg.error {
  border: 1px solid rgba(212, 75, 42, 0.2);
  color: #9a3412;
  background: #fff0eb;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, #091b14 0%, #071520 100%);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-brand-link {
  color: #fff;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  color: #fff;
}

.footer-col a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  line-height: 1.9;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
}

.email-interactive {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.email-interactive:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.email-icon {
  color: var(--secondary);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.social-row a:hover,
.social-row a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #fff;
}

/* Vibrant About Section Modernization */
.about-copy-vibrant {
  padding-left: 1rem;
}

.about-media-wrapper {
  position: relative;
}

.media-decorative-blob {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 250px;
  height: 250px;
  background: var(--secondary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
}

.media-card-vibrant {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(6, 95, 70, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.media-card-vibrant .media-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-card-vibrant:hover .media-img {
  transform: scale(1.03);
}

.glow-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.about-heading-vibrant {
  text-align: left;
  margin-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary), #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vibrant-title {
  font-size: 2.75rem;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.about-lead-vibrant {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.vibrant-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.bg-green-light {
  background: var(--primary-soft);
  color: var(--primary);
}

.bg-gold-light {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.bg-red-light {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.feature-item strong {
  display: block;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.feature-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.action-group-modern {
  margin-top: 3rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.shadow-glow {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* ─── Section sub-heading ──────────────────────────────────────────────── */
.section-sub {
  max-width: 68ch;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── Social Proof Badge ─────────────────────────────────────────────────── */
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/* ─── Founding Partners Banner ───────────────────────────────────────────── */
.partners-banner-section {
  padding: 2rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.partners-logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.partners-logo-strip .partner-logo-item {
  flex: 1 1 180px;
  min-width: 180px;
}

.partner-logo-item {
  display: flex;
  align-items: stretch;
}

.partner-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.2rem 2rem;
  border-radius: 22px;
  border: 1px solid rgba(16, 33, 27, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbf8);
  min-width: 140px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-logo-placeholder.has-logo {
  gap: 0.55rem;
}

.partner-logo-image {
  display: block;
  width: 160px;
  height: 96px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.partner-logo-image-knbs {
  width: 160px;
  height: 96px;
}

.partner-logo-image-oi {
  width: 160px;
  height: 96px;
}

.partner-logo-image-sdg {
  width: 160px;
  height: 96px;
}

.partner-logo-image-coat {
  width: 160px;
  height: 96px;
}

.partner-logo-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(4, 20, 14, 0.12);
  border-color: rgba(16, 33, 27, 0.12);
}

.partner-logo-placeholder span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.partner-logo-placeholder small {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.patron-attribution {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.patron-name {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.logo-knbs span {
  color: #003a8c;
}

.logo-sdg span {
  color: #065f46;
}

.logo-oi span {
  color: #b45309;
}

.patron-item .partner-logo-placeholder {
  background: linear-gradient(135deg, #fdf6ec, #fef3c7);
  border-color: rgba(180, 83, 9, 0.2);
}

.logo-patron {
  gap: 0.3rem;
}

.logo-patron svg {
  stroke: var(--secondary);
}

.logo-patron small {
  color: var(--secondary);
  font-weight: 600;
}

.patron-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .partner-logo-image-knbs {
    width: 130px;
    height: 78px;
  }

  .partner-logo-image-oi {
    width: 130px;
    height: 78px;
  }

  .partner-logo-image-sdg {
    width: 130px;
    height: 78px;
  }

  .partner-logo-image-coat {
    width: 130px;
    height: 78px;
  }
}

/* ─── Countdown Extras ───────────────────────────────────────────────────── */
.countdown-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 1rem;
}

.countdown-sub {
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
  margin: 1rem 0 0;
  font-style: italic;
}

/* ─── Leadership Section ─────────────────────────────────────────────────── */
.leadership-section {
  background: var(--bg);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.leader-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.leader-chair .leader-avatar {
  background: var(--primary-soft);
  color: var(--primary);
}

.leader-secretariat .leader-avatar {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.leader-info {
  flex: 1;
}

.leader-role {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.3rem;
}

.leader-name {
  font-size: 1.25rem;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.leader-institution {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.75rem;
}

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

/* ─── Spotlight Carousel ─────────────────────────────────────────────────── */
.spotlight-section {
  background: var(--bg);
}

.spotlight-carousel {
  max-width: 780px;
  margin: 0 auto;
}

.spotlight-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.spotlight-card {
  min-width: 100%;
  padding: 3rem 3.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.spotlight-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-green {
  background: var(--primary-soft);
  color: var(--primary);
}

.avatar-gold {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.avatar-navy {
  background: rgba(30, 58, 138, 0.1);
  color: var(--accent);
}

.spotlight-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  max-width: 60ch;
}

.spotlight-meta strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.spotlight-meta span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.spotlight-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.spotlight-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.spotlight-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ─── Membership Tiers ───────────────────────────────────────────────────── */
.membership-section {
  background: #f8fafc;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.tier-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  height: 100%;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.tier-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  position: relative;
}

.tier-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

.tier-individual {
  background: var(--primary-soft);
  color: var(--primary);
}

.tier-student {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.tier-institutional {
  background: rgba(30, 58, 138, 0.1);
  color: var(--accent);
}

.tier-partner {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.tier-benefits li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.tier-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 800;
}

.tier-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
}

.btn-primary.tier-cta {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}

.btn-primary.tier-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary.tier-cta {
  color: var(--primary);
  background: transparent;
  border: 1px solid rgba(6, 95, 70, 0.25);
}

.btn-secondary.tier-cta:hover {
  background: var(--primary-soft);
}

/* ─── Sponsor Section ────────────────────────────────────────────────────── */
.sponsors-section {
  background: var(--bg);
}

.sponsor-tiers {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.sponsor-tier {
  text-align: center;
}

.sponsor-tier-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.sponsor-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 220px;
  transition: all 0.3s ease;
}

.sponsor-placeholder:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--primary-soft);
}

.sponsor-lg {
  min-width: 340px;
  padding: 2.5rem 4rem;
  font-size: 1.05rem;
}

.sponsor-sm {
  min-width: 150px;
  padding: 1.1rem 2rem;
}

.sponsor-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.sponsor-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* ─── Founder Quotes ─────────────────────────────────────────────────────── */
.founder-quotes-section {
  background: linear-gradient(160deg, #faf9f6 0%, #f0faf5 100%);
}

.founder-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.founder-quote-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.founder-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.fq-icon {
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.founder-quote-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}

.fq-author {
  margin-top: auto;
}

.fq-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.fq-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Resource actions / download ────────────────────────────────────────── */
.resource-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(180, 83, 9, 0.25);
  border-radius: 6px;
  transition: all 0.25s ease;
}

.resource-download:hover {
  background: var(--secondary-soft);
  border-color: var(--secondary);
}

/* ─── Google Form embed ──────────────────────────────────────────────────── */
.google-form-container {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto 0;
  border: 1px solid var(--border);
  min-height: 520px;
}

.google-form-container iframe {
  display: block;
  width: 100%;
  min-height: 700px;
}

/* CTA card shown when using external form link */
.register-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem;
  box-sizing: border-box;
  min-height: 240px;
}

.register-cta-inner {
  text-align: center;
  max-width: 640px;
}

.register-cta-inner h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--text);
}

.register-cta-inner .form-sub {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.register-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modal: registration form in-site */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.6);
  z-index: 1200;
  padding: 2rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  width: min(1120px, 100%);
  height: min(92vh, 100%);
  background: var(--surface-solid);
  border-radius: 14px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .modal-content {
    height: 94vh;
    border-radius: 10px;
  }

  .modal-header h3 {
    font-size: 1rem;
  }
}

.form-fallback-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-fallback-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .container {
    width: min(calc(100% - 2.5rem), var(--container));
  }
}

@media (max-width: 1080px) {

  .hero-grid,
  .about-grid-modern,
  .event-banner,
  .register-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

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

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

  /* New sections */
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-title-giant {
    font-size: clamp(2.6rem, 5.4vw, 4.0rem);
  }

  .hero-lead-centered {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.25rem 0;
  }

  .subpage-hero {
    padding-top: 3.5rem;
  }

  .subpage-shell {
    padding: 2.25rem 1.5rem;
    border-radius: 28px;
  }

  .subpage-meta {
    gap: 0.65rem;
  }

  .meta-pill {
    width: 100%;
    justify-content: center;
  }

  .page-link-row .btn {
    width: 100%;
  }

  .identity-section {
    padding: 4rem 0 8rem;
  }

  .values-floating-card {
    width: 95%;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .value-item {
    min-width: 40%;
  }

  .mv-main-card {
    padding: 14rem 2rem 4rem;
  }

  .mv-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .mv-divider {
    width: 100%;
    height: 1px;
  }

  .mv-heading {
    justify-content: center;
  }

  .mv-col {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid,
  .tor-columns,
  .resource-columns,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .agenda-item {
    grid-template-columns: 1fr;
  }

  .event-banner {
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
  }

  .event-copy h2 {
    font-size: 2rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .resource-card-highlight {
    grid-column: auto;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  /* New sections */
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .founder-quotes-grid {
    grid-template-columns: 1fr;
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    padding: 2rem 1.5rem;
  }

  .sponsor-placeholder {
    min-width: 160px;
  }

  .sponsor-lg {
    min-width: 240px;
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 1rem 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .top-nav {
    position: fixed;
    top: 180px;
    left: 0;
    width: 100%;
    height: calc(100vh - 180px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

  .menu-open .top-nav {
    transform: translateX(0);
  }

  .top-nav a {
    font-size: 1.5rem;
  }

  .top-nav .mobile-only-cta {
    display: inline-flex;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-section {
    padding: 3.25rem 0;
  }

  .hero-title-giant {
    font-size: clamp(1.8rem, 9.2vw, 2.55rem);
  }


  .hero-lead-centered {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-stat {
    padding: 1rem 1rem;
  }

  .google-form-container {
    max-width: 100%;
    margin: 1.5rem auto 0;
  }

  .google-form-container iframe {
    min-height: 620px;
  }

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

  body::before {
    width: 8px;
  }
}

/* ─── Page: Resources ───────────────────────────────────────────────────────── */
.resource-accordion {
  display: flex;
  gap: 1.25rem;
  min-height: 520px;
  margin-top: 3.5rem;
  align-items: stretch;
}

.accordion-item {
  flex: 1;
  position: relative;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem !important;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.accordion-item::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.8;
}

.accordion-item:hover,
.accordion-item.active {
  flex: 3.5;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.accordion-item .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2rem;
  transition: transform 0.5s ease;
}

.accordion-item:hover .icon-wrapper {
  transform: scale(1.1);
}

.accordion-item h3 {
  font-size: 1.6rem;
  margin: 0 0 1.25rem;
  white-space: nowrap;
  color: var(--text);
}

.accordion-content {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  pointer-events: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.accordion-item:hover .accordion-content,
.accordion-item.active .accordion-content {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.accordion-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 480px;
}

.accordion-footer {
  margin-top: auto;
}

.resource-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px var(--primary-soft);
}

.resource-download-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px var(--primary-soft);
}

/* Collapsed indicator */
.collapsed-label {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.accordion-item:hover .collapsed-label {
  opacity: 0;
}

@media (max-width: 992px) {
  .resource-accordion {
    flex-direction: column;
    min-height: auto;
  }

  .accordion-item {
    flex: none !important;
    min-height: 200px;
    padding-bottom: 2.5rem !important;
  }

  .accordion-content {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .collapsed-label {
    display: none;
  }
}

/* ─── Page: Membership ──────────────────────────────────────────────────────── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 1200px) {
  .membership-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  }
}

.tier-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2.5rem 2rem !important;
  background: var(--surface-solid) !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.tier-card.tier-featured {
  border-top: 5px solid var(--secondary) !important;
  background: linear-gradient(180deg, var(--surface-solid), #fffdf9) !important;
  box-shadow: var(--shadow-lg) !important;
}

.tier-featured::after {
  content: 'Recommended';
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.roadmap-timeline {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
  opacity: 0.3;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  align-items: center;
}

.roadmap-step:nth-child(even) {
  direction: rtl;
}

.roadmap-step:nth-child(even)>* {
  direction: ltr;
}

.roadmap-step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border: 4px solid var(--surface-solid);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px var(--primary-soft);
  z-index: 2;
}

.roadmap-content {
  background: var(--surface-solid);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.roadmap-step-number {
  display: inline-flex;
  background: var(--primary-soft);
  color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.tier-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tier-category-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.tier-category-header h3 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  color: var(--text);
}

.tier-category-desc {
  margin: 0;
  color: var(--text-muted);
}

.tier-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.tier-benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.tier-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 992px) {
  .roadmap-timeline::before {
    left: 32px;
  }

  .roadmap-step {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 64px;
  }

  .roadmap-step::after {
    left: 32px;
  }

  .roadmap-step:nth-child(even) {
    direction: ltr;
  }
}

/* ─── Compact Registration CTA ─── */
.registration-compact-card {
  max-width: 900px;
  margin: 3rem auto 0;
  background: var(--surface-solid);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.registration-compact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.registration-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.registration-compact-card h3 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.registration-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.registration-actions-unified {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.registration-footer-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.registration-footer-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .registration-compact-card {
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
  }

  .registration-compact-card h3 {
    font-size: 1.75rem;
  }

  .registration-actions-unified {
    flex-direction: column;
    gap: 1rem;
  }

  .registration-actions-unified .btn {
    width: 100%;
  }
}
