:root {
  color-scheme: light;
  --bg-deep: #0A2540;
  --bg-soft: #F8FAFC;
  --ink: #3A3A3A;
  --accent: #00C06F;
  --card: #FFFFFF;
  --shadow: rgba(10, 37, 64, 0.14);
  --radius: 22px;
  --transition: 0.25s ease;
  --nav-height-desktop: 92px;
  --nav-height-mobile: 168px;


  --primary-400: #4DFF9B;
  --primary-500: #00C16E;
  --primary-700: #007945;

  /* --wis-300: #5ECD8C; */

  /* --mint-50:  #F7FDFB; */
  --mint-50: #E6FFF3;
  --mint-100: #E6F9F1;
  --mint-200: #D1F1E3;
  --mint-300: #BDE9D5;
  --mint-400: #A4E1C6;
  --mint-500: #89D4B0;

  --forest-100: #E6ECE9;
  --forest-700: #002E21;
  --forest-800: #00251B;
}

* {
  box-sizing: border-box;
}

main,
.hero-stage {
  flex: 1;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #F8FAFC;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

html,
body {
  background-color: #F8FAFC;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1.25rem 6vw 0.75rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.7) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(3, 126, 243, 0.1);
}

.nav-inner {
  width: min(1080px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 0.25rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.nav-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A2540;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1.4vw, 1rem);
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 126, 243, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.nav-links a {
  color: var(--forest-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--forest-700);
  background: rgba(77, 255, 155, 0.12);
}

.nav-links a[aria-current="page"] {
  color: var(--forest-700);
  background: rgba(77, 255, 155, 0.2);
  box-shadow: inset 0 0 0 1px rgba(77, 255, 155, 0.35);
}

.nav-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(10, 37, 64, 0.18);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.26rem;
  padding: 0;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--bg-deep);
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-register {
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-color: rgba(0, 193, 110, 0.75);
  box-shadow: 0 12px 24px rgba(0, 97, 52, 0.25);
}

.nav-register:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 16px 30px rgba(0, 97, 52, 0.32);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 192, 111, 0.65);
  box-shadow: 0 12px 24px rgba(0, 192, 111, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.cta-button:hover {
  transform: translateY(-1px);
  background: #00C06F;
  box-shadow: 0 16px 30px rgba(0, 192, 111, 0.34);
}

a {
  color: #037EF3;
}

h1,
h2,
h3 {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: #0A2540;
}

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

.grain {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(10, 37, 64, 0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-stage {
  min-height: calc(100vh - var(--nav-height-desktop));
  min-height: calc(100svh - var(--nav-height-desktop));
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.hero-visual {
  border-radius: 0;
  background: #F1F5F9;
  box-shadow: none;
  overflow: hidden;
  width: 100vw;
  min-height: 460px;
  height: clamp(460px, calc(100vh - var(--nav-height-desktop)), 860px);
  height: clamp(460px, calc(100svh - var(--nav-height-desktop)), 860px);
  border: none;
  position: relative;
}

.hero-visual picture,
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-visual img {
  object-fit: cover;
  object-position: center 32%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  padding: clamp(1.75rem, 5vw, 4rem);
  padding-top: clamp(2.8rem, 7vh, 5.5rem);
  padding-bottom: clamp(1.5rem, 5vh, 3.2rem);
  color: #F8FAFC;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(10, 37, 64, 0.55) 0%, rgba(10, 37, 64, 0.8) 70%, rgba(10, 37, 64, 0.92) 100%);
}

.hero-overlay > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: clamp(1.75rem, 6vw, 5rem);
  margin-left: clamp(0.5rem, 1.6vw, 1.25rem);
  bottom: clamp(1.4rem, 5vh, 4rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: min(650px, 82vw);
}

.hero-overlay h1 {
  color: #F8FAFC;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  max-width: 26ch;
}

.hero-highlight {
  color: var(--primary-400);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.95);
}

.hero-subhead {
  max-width: 48ch;
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(1rem, 1.9vw, 1.5rem);
}

.hero-actions {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-actions .cta-button {
  padding: 0.78rem 1.3rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-color: rgba(0, 193, 110, 0.75);
  box-shadow: 0 12px 24px rgba(0, 97, 52, 0.25);
}

.hero-actions .cta-button:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 16px 30px rgba(0, 97, 52, 0.32);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.74rem 1.2rem;
  border-radius: 999px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.14);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 255, 155, 0.35);
  background: rgba(77, 255, 155, 0.2);
  color: var(--primary-400);
}

.impact-section {
  padding: clamp(2.8rem, 7vw, 4.5rem) 6vw clamp(2.4rem, 6vw, 3.4rem);
  background: var(--mint-50);
}

.impact-header {
  margin-bottom: 1.3rem;
}

.impact-header .partners-eyebrow {
  color: var(--forest-700);
  background: rgba(77, 255, 155, 0.2);
  border-color: rgba(77, 255, 155, 0.35);
}

.impact-header h3,
.impact-header h2 {
  margin-top: 1rem;
}

.impact-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-card {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 255, 251, 0.95));
  border: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.1);
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 20px 36px rgba(10, 37, 64, 0.15), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.impact-value {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bg-deep);
  transition: color 0.3s ease, transform 0.3s ease;
}

.impact-value.is-counting {
  color: #00C06F;
  transform: translateY(-1px);
}

.impact-label {
  margin-top: 0.38rem;
  font-size: 1rem;
  color: rgba(10, 37, 64, 0.82);
  font-weight: 600;
}

.featured-events-section {
  padding: clamp(2.2rem, 6vw, 3.4rem) 6vw clamp(2.8rem, 7vw, 4.4rem);
  background: var(--forest-100);
}

.impact-section,
.featured-events-section,
.testimonials-section,
.partners-section {
  color: var(--forest-700);
}

.impact-section :is(h1, h2, h3, p, li, span, small, a:not(.cta-button)),
.featured-events-section :is(h1, h2, h3, p, li, span, small, a:not(.cta-button)),
.testimonials-section :is(h1, h2, h3, p, li, span, small, a:not(.cta-button)),
.partners-section :is(h1, h2, h3, p, li, span, small, a:not(.cta-button)) {
  color: var(--forest-700);
}

.featured-events-header {
  margin-bottom: 1.5rem;
}

.featured-events-header .partners-eyebrow {
  color: var(--forest-700);
  background: rgba(77, 255, 155, 0.2);
  border-color: rgba(77, 255, 155, 0.35);
}

.testimonials-section .partners-eyebrow,
.partners-header .partners-eyebrow {
  color: var(--forest-700);
  background: rgba(77, 255, 155, 0.2);
  border-color: rgba(77, 255, 155, 0.35);
}

.featured-events-grid {
  width: min(1220px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.featured-event-card {
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.12);
  box-shadow: 0 16px 32px rgba(10, 37, 64, 0.12);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.featured-event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 22px 40px rgba(10, 37, 64, 0.18), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.featured-event-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: rgba(10, 37, 64, 0.08);
}

.featured-event-body {
  padding: 1.4rem 1.3rem 1.45rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
  background: var(--mint-300);
}

.featured-event-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--bg-deep);
  line-height: 1.2;
}

.featured-event-subtext {
  color: rgba(10, 37, 64, 0.86);
  font-size: 1.04rem;
}

.featured-events-actions {
  width: min(1100px, 92vw);
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: center;
}

.featured-events-actions .cta-button {
  min-width: 190px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-color: rgba(0, 193, 110, 0.75);
  box-shadow: 0 12px 24px rgba(0, 97, 52, 0.25);
}

.featured-events-actions .cta-button:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 16px 30px rgba(0, 97, 52, 0.32);
}

.section-anchor {
  position: relative;
  top: -92px;
  visibility: hidden;
}

.registration-section {
  padding: clamp(3rem, 8vw, 5.5rem) 6vw clamp(4rem, 10vw, 6.5rem);
  background: var(--mint-50);
}

.partners-section {
  padding: clamp(2.8rem, 7vw, 4.2rem) 6vw clamp(3rem, 8vw, 4.8rem);
  background: var(--forest-100);
  border-top: 1px solid rgba(10, 37, 64, 0.12);
  border-bottom: 1px solid rgba(10, 37, 64, 0.12);
}

.partners-header {
  margin-bottom: 1.35rem;
}

.partners-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(3, 126, 243, 0.6);
  background: rgba(3, 126, 243, 0.16);
  color: rgba(10, 37, 64, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partners-header h2 {
  margin-top: 0.85rem;
  color: var(--bg-deep);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.partners-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: partners-marquee-scroll 28s linear infinite;
}

.partners-grid:hover .partners-marquee-track {
  animation-play-state: paused;
}

.partner-marquee-item {
  flex: 0 0 auto;
  width: clamp(132px, 16vw, 196px);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: 0 10px 20px rgba(10, 37, 64, 0.08);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner-marquee-item:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.12), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.partner-marquee-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes partners-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.registration-header {
  width: min(1100px, 92vw);
  margin: 0 auto 2rem;
}

.registration-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.registration-header p {
  color: rgba(58, 58, 58, 0.85);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.registration-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

#country-grid-all {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.registration-more {
  width: min(1100px, 92vw);
  margin: 1.5rem auto 0;
  padding: 0;
  display: grid;
  justify-items: stretch;
}

.registration-more[open] {
  padding: 0;
}

.registration-more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.25rem 0.2rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(10, 37, 64, 0.8);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.registration-more summary::after {
  content: "\25BE";
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.registration-more summary:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

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

.registration-more[open] summary {
  color: var(--accent);
}

.registration-more[open] summary::after {
  transform: rotate(180deg);
}

.registration-more .registration-grid {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
}

#country-grid-all {
  width: 100%;
  max-width: none;
}

.registration-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(10, 37, 64, 0.12);
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.08);
  cursor: pointer;
  outline: 0 solid rgba(77, 255, 155, 0);
  outline-offset: 4px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), outline-color var(--transition);
}

.registration-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
  flex-wrap: wrap;
}

.registration-card-header .cta-button {
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.registration-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  outline-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.18), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.registration-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  color: var(--bg-deep);
}

.registration-card p {
  color: rgba(58, 58, 58, 0.8);
}

.country-pics-section {
  padding: 0 6vw clamp(4rem, 10vw, 6.5rem);
  background: var(--mint-50);
}

.country-pics-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.country-pic-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.12);
  box-shadow: 0 14px 28px rgba(10, 37, 64, 0.08);
  background: var(--card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.country-pic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.12), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

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

.testimonials-section {
  padding: 0 6vw clamp(4rem, 10vw, 6.5rem);
  background: var(--mint-50);
}

.testimonials-section .registration-header {
  padding-top: 1.8rem;
}

.site-footer {
  padding: clamp(2.4rem, 6vw, 3.7rem) 6vw;
  background: var(--forest-800);
  color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(248, 250, 252, 0.28);
  padding: 0.2rem;
  box-shadow: 0 10px 24px rgba(2, 8, 16, 0.28);
}

.footer-brand h2 {
  font-size: clamp(1.35rem, 2.15vw, 1.86rem);
  margin: 0;
  color: #ffffff;
  max-width: none;
  white-space: normal;
  line-height: 1.15;
}

.footer-tagline {
  color: rgba(248, 250, 252, 0.82);
  max-width: 54ch;
  font-size: 1rem;
}

.footer-meta {
  font-weight: 600;
  color: rgba(248, 250, 252, 0.72);
  margin: 0;
}

.footer-meta-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 250, 252, 0.18);
}

.footer-dev {
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.92rem;
  margin: 0;
}

.footer-grid {
  justify-self: end;
  width: 100%;
  max-width: 320px;
}

.footer-column {
  min-width: 0;
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(248, 250, 252, 0.2);
  background: linear-gradient(160deg, rgba(248, 250, 252, 0.1) 0%, rgba(248, 250, 252, 0.03) 100%);
  backdrop-filter: blur(5px);
  box-shadow: 0 20px 40px rgba(3, 12, 22, 0.28);
}

.footer-column h3 {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links li {
  display: inline-flex;
}

.footer-links a,
.footer-link-button,
.footer-contact a {
  color: #F8FAFC;
  font: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color var(--transition), text-shadow var(--transition), opacity var(--transition);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 192, 111, 0.45);
  background: rgba(0, 192, 111, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 192, 111, 0.12);
}

.footer-social-icon {
  display: inline-flex;
  width: 19px;
  height: 19px;
  color: currentcolor;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentcolor;
}

.footer-subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: auto;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 192, 111, 0.48);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.footer-links a:hover,
.footer-link-button:hover,
.footer-contact a:hover {
  color: #00C06F;
  text-shadow: 0 0 12px rgba(0, 192, 111, 0.35);
}

.footer-social-link:hover {
  transform: translateY(-1px);
}

.footer-contact p {
  margin: 0 0 0.35rem;
  color: rgba(248, 250, 252, 0.8);
  font-size: 0.94rem;
}

.footer-role {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.6);
}

.footer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-note {
  margin-top: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
}

.testimonial-carousel {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  padding: 0 2.75rem;
}

.testimonial-track {
  display: grid;
  position: relative;
  z-index: 1;
  background: transparent;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  grid-template-rows: auto auto;
  scroll-snap-align: start;
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  background: rgba(10, 37, 64, 0.12);
  display: block;
  object-fit: contain;
  border: none;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-copy {
  padding: 0.85rem 0.35rem 0;
  display: grid;
  gap: 0;
}

.testimonial-copy h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--bg-deep);
}

.testimonial-copy p {
  color: rgba(58, 58, 58, 0.82);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.15);
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(8px);
  color: var(--bg-deep);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.15);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.carousel-arrow:hover {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-prev {
  left: 0.5rem;
}

.carousel-arrow-next {
  right: 0.5rem;
}

.carousel-dots {
  width: min(1100px, 92vw);
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: #00C06F;
}

.venue-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 6vw;
  z-index: 20;
}

.venue-modal.is-open {
  display: flex;
}

.venue-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(4px);
}

.venue-panel {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  padding: 2rem;
  width: min(720px, 92vw);
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.25);
  border: 1px solid rgba(10, 37, 64, 0.12);
  z-index: 1;
}

.venue-close {
  border: 1px solid rgba(10, 37, 64, 0.2);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 36px;
  color: var(--bg-deep);
}

.venue-header h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--bg-deep);
}

.venue-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.venue-title-row h3 {
  margin: 0;
}

.venue-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.venue-actions .cta-button {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  min-height: 36px;
  box-shadow: none;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 30;
}

.newsletter-modal.is-open {
  display: flex;
}

.newsletter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(4px);
}

.newsletter-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 92vw);
  border-radius: 20px;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: linear-gradient(165deg, rgba(248, 250, 252, 0.98) 0%, rgba(235, 245, 255, 0.96) 100%);
  border: 1px solid rgba(10, 37, 64, 0.14);
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.25);
}

.newsletter-header {
  margin-bottom: 1rem;
}

.newsletter-header h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  color: var(--bg-deep);
}

.newsletter-header p {
  color: rgba(58, 58, 58, 0.85);
}

.newsletter-form {
  display: grid;
  gap: 0.75rem;
}

.newsletter-label {
  font-weight: 600;
  color: var(--bg-deep);
}

.newsletter-input {
  width: 100%;
  border: 1px solid rgba(10, 37, 64, 0.2);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  min-height: 44px;
  line-height: 1.25;
  font-size: 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color var(--transition), box-shadow var(--transition);
}

select.newsletter-input {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(10, 37, 64, 0.78) 50%),
    linear-gradient(135deg, rgba(10, 37, 64, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) calc(50% + 1px),
    calc(100% - 0.7rem) calc(50% + 1px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.newsletter-input:focus-visible {
  outline: none;
  border-color: rgba(3, 126, 243, 0.8);
  box-shadow: 0 0 0 3px rgba(3, 126, 243, 0.18);
}

.newsletter-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
  color: rgba(58, 58, 58, 0.8);
}

.newsletter-status.is-success {
  color: #00C06F;
}

.newsletter-status.is-error {
  color: #037EF3;
}

.newsletter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.1rem;
}

.newsletter-actions .cta-button {
  box-shadow: none;
  min-height: 36px;
}

.newsletter-actions .venue-close {
  min-height: 36px;
}

.newsletter-success {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 37, 64, 0.4);
  backdrop-filter: blur(4px);
}

.newsletter-success.is-open {
  display: flex;
}

.newsletter-success-card {
  width: min(420px, 92vw);
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(248, 250, 252, 0.99) 0%, rgba(235, 245, 255, 0.97) 100%);
  border: 1px solid rgba(10, 37, 64, 0.14);
  box-shadow: 0 20px 46px rgba(10, 37, 64, 0.25);
}

.newsletter-success-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg-deep);
}

.newsletter-success-copy {
  margin: 0.45rem 0 1rem;
  color: rgba(58, 58, 58, 0.82);
}

.newsletter-success-card .cta-button {
  min-width: 120px;
  box-shadow: none;
}

@media (max-width: 720px) {
  .site-nav {
    padding-top: 0.7rem;
    padding-bottom: 0.55rem;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "menu menu";
    align-items: center;
    gap: 0.6rem;
  }

  .nav-brand {
    grid-area: brand;
    width: auto;
    justify-content: flex-start;
    min-width: 0;
  }

  .nav-logo {
    width: 40px;
    height: 40px;
  }

  .nav-title {
    font-size: 0.9rem;
    text-align: left;
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
  }

  .nav-menu {
    grid-area: menu;
    display: none;
    width: 100%;
    padding: 0.55rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(10, 37, 64, 0.18);
    backdrop-filter: blur(6px);
  }

  .site-nav.is-open .nav-menu {
    display: grid;
    gap: 0.5rem;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 16px;
  }

  .nav-links a {
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    text-align: left;
  }

  .nav-register {
    width: 100%;
    min-height: 42px;
  }

  .hero-actions {
    width: 100%;
    gap: 0.6rem;
  }

  .hero-actions .cta-button,
  .hero-secondary {
    width: 100%;
  }

  .impact-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
  }

  .featured-events-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
  }

  .featured-events-section {
    padding: clamp(1.8rem, 7vw, 2.4rem) 6vw clamp(2.2rem, 8vw, 2.8rem);
  }

  .featured-event-card {
    min-height: 0;
    border-radius: 18px;
  }

  .featured-event-image {
    aspect-ratio: 4 / 3;
  }

  .featured-event-body {
    padding: 1rem 0.95rem 1.1rem;
    gap: 0.45rem;
  }

  .featured-event-title {
    font-size: clamp(1.1rem, 5.2vw, 1.4rem);
    line-height: 1.25;
  }

  .featured-event-subtext {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .registration-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .registration-card-header .cta-button {
    width: 100%;
    justify-content: center;
  }

  .venue-header {
    margin-bottom: 0.75rem;
  }

  .newsletter-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .newsletter-actions .cta-button,
  .newsletter-actions .venue-close {
    width: 100%;
    justify-content: center;
  }

  .newsletter-panel {
    width: min(460px, 100%);
    max-height: calc(100vh - 1.5rem);
    padding: 1rem;
  }

  .newsletter-success-card {
    width: min(360px, 100%);
  }

  select.newsletter-input {
    min-height: 46px;
    font-size: 16px;
  }
}

.venue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.venue-item {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.venue-item strong {
  display: block;
  color: var(--bg-deep);
  margin-bottom: 0.25rem;
}

.venue-item span {
  color: rgba(58, 58, 58, 0.85);
}

.is-hidden {
  display: none;
}


@media (max-width: 720px) {
  .nav-inner,
  .partners-grid,
  .registration-header,
  .registration-grid,
  .registration-more,
  .country-pics-grid,
  .testimonial-carousel,
  .carousel-dots {
    width: 100%;
    max-width: none;
  }

  .footer-inner,
  .footer-column {
    width: 100%;
    max-width: none;
  }

  .hero-visual {
    min-height: 420px;
    height: clamp(420px, calc(100vh - var(--nav-height-mobile)), 760px);
    height: clamp(420px, calc(100svh - var(--nav-height-mobile)), 760px);
  }

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

  .partners-marquee-track {
    gap: 0.75rem;
    animation-duration: 24s;
  }

  .partner-marquee-item {
    width: clamp(118px, 34vw, 158px);
    height: 78px;
    padding: 0.62rem;
  }

  #country-grid-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-pics-grid {
    grid-template-columns: 1fr;
  }

  .venue-panel {
    padding: 1.5rem;
  }

  .carousel-arrow {
    position: static;
    transform: none;
    width: 100%;
    height: 46px;
    font-size: 1.35rem;
    border-width: 1px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(10, 37, 64, 0.14);
  }

  .carousel-arrow-prev {
    left: auto;
    grid-column: 1;
  }

  .carousel-arrow-next {
    right: auto;
    grid-column: 2;
  }

  .testimonial-carousel {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    align-items: start;
  }

  .testimonial-track {
    grid-column: 1 / -1;
  }

  .carousel-arrow:hover {
    transform: none;
  }

  .footer-grid {
    width: min(100%, 420px);
    max-width: none;
    justify-self: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-meta {
    text-align: center;
  }

  .footer-brand-top {
    justify-content: center;
  }

  .footer-meta-row {
    justify-content: center;
    text-align: center;
  }

  .footer-column {
    width: min(100%, 420px);
    text-align: center;
  }

  .footer-links {
    justify-items: center;
    justify-content: center;
  }

  .footer-social-link,
  .footer-subscribe-button {
    max-width: none;
  }

  .footer-contact {
    display: grid;
    justify-items: center;
  }

  .footer-links a,
  .footer-link-button,
  .footer-contact a {
    text-align: center;
  }

  .site-footer {
    padding: 1.7rem 6vw;
  }

  .footer-inner {
    gap: 1rem;
  }

  .footer-brand h2 {
    max-width: none;
    font-size: 1.35rem;
    white-space: normal;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }
}

@media (max-height: 860px) and (min-width: 721px) {
  .hero-visual {
    min-height: 420px;
    height: clamp(420px, calc(100svh - var(--nav-height-desktop)), 700px);
  }

  .hero-content {
    bottom: clamp(1.1rem, 3.5vh, 2.5rem);
    margin-left: 0.5rem;
  }
}

@media (min-width: 900px) {
  .hero-overlay {
    padding-top: clamp(4.5rem, 9vh, 6.5rem);
    padding-bottom: clamp(3.5rem, 12vh, 7rem);
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .featured-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-marquee-item {
    width: clamp(122px, 18vw, 178px);
  }

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

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

  .testimonial-track {
    grid-auto-columns: 100%;
  }
}

@media (max-width: 480px) {
  .featured-events-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .featured-events-header {
    margin-bottom: 1rem;
  }

  .featured-event-image {
    aspect-ratio: 1 / 1;
  }

  .featured-events-actions .cta-button {
    width: 100%;
    min-width: 0;
  }

  .partners-grid {
    mask-image: none;
  }

  .partners-marquee-track {
    gap: 0.6rem;
    animation-duration: 21s;
  }

  .partner-marquee-item {
    width: clamp(108px, 42vw, 140px);
    height: 72px;
    padding: 0.55rem;
  }

  .newsletter-modal {
    padding: 0.65rem;
  }

  .newsletter-panel {
    border-radius: 16px;
    padding: 0.9rem;
  }
}

.about-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-page .about-hero {
  background-color: var(--mint-50);
}

.about-page .phases-section {
  background-color: var(--forest-100);
}

.about-page .experience-section {
  background-color: var(--mint-50);
}

.about-page .about-hero,
.about-page .phases-section,
.about-page .experience-section {
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  box-sizing: border-box;
}

.about-page .about-hero .collaborate-hero,
.about-page .phases-header,
.about-page .phases-grid,
.about-page .experience-header,
.about-page .experience-grid {
  width: min(66vw, 820px);
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-hero .collaborate-hero {
  width: min(58vw, 760px);
  display: grid;
  gap: 0.8rem;
}

.about-page .about-hero .partners-eyebrow {
  justify-self: start;
  align-self: start;
  margin: 0 0 0.45rem;
}

.about-main .partners-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.8rem;
  width: fit-content;
  background: rgba(77, 255, 155, 0.2);
  color: var(--forest-700);
  border-color: rgba(77, 255, 155, 0.35);
}

.about-hero {
  min-height: 0;
  display: block;
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
  background: var(--mint-50);
}

.about-page .about-hero h2 {
  color: var(--forest-700);
}

.about-hero h1 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.18;
  color: var(--bg-deep);
}

.about-hero-copy {
  max-width: 60ch;
  display: grid;
  gap: 0.55rem;
}

.about-hero-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--forest-700);
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.65;
}

.about-hero-copy p {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.62;
  font-size: 0.98rem;
}

.about-hero-tags {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.15);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(10, 37, 64, 0.86);
  font-weight: 600;
  font-size: 0.9rem;
}

.phases-section {
  margin-top: 0;
}

.phases-header {
  margin-bottom: 0.95rem;
}

.phases-header h2 {
  margin-top: 0.9rem;
  margin-bottom: 0;
  color: var(--forest-700);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.14;
}

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

.phase-card {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  background: var(--mint-50);
  box-shadow: 0 16px 34px rgba(10, 37, 64, 0.11);
  padding: 1.05rem;
  display: grid;
  gap: 0.62rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.phase-card:nth-child(even) {
  background: var(--mint-50);
}

.phase-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: #00C06F;
  z-index: -1;
}

.phase-card::after {
  content: none;
  position: absolute;
  width: 130px;
  height: 130px;
  right: -52px;
  top: -52px;
  border-radius: 999px;
  background: none;
  z-index: -1;
}

.phase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 24px 42px rgba(10, 37, 64, 0.17), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.phase-icon {
  justify-self: center;
  line-height: 1;
  font-size: 2rem;
}

.phase-card h3 {
  margin: 0;
  color: var(--forest-700);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.28;
}

.phase-card p {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.62;
}

.about-page .phases-section :is(h1, h2, h3, h4, p, li, span, small, strong, em, a:not(.cta-button)) {
  color: var(--forest-700);
}

.experience-section {
  margin-top: 0;
}

.experience-header {
  margin-bottom: 0.95rem;
}

.experience-header h2 {
  margin-top: 0.9rem;
  margin-bottom: 0;
  color: var(--forest-700);
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.14;
}

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

.experience-card {
  border-radius: 18px;
  border: 1px solid rgba(10, 37, 64, 0.13);
  background: var(--forest-100);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.1);
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.experience-card:nth-child(even) {
  background: var(--forest-100);
}

.experience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 20px 36px rgba(10, 37, 64, 0.14), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.experience-card h3 {
  margin: 0;
  color: var(--forest-700);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.3;
}

.experience-card p {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.58;
}

@media (max-width: 720px) {
  .about-main {
    width: 100%;
    max-width: none;
    padding-top: 1.35rem;
    padding-left: 0;
    padding-right: 0;
  }

  .about-page .about-hero,
  .about-page .phases-section,
  .about-page .experience-section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .about-page .about-hero .collaborate-hero,
  .about-page .phases-header,
  .about-page .phases-grid,
  .about-page .experience-header,
  .about-page .experience-grid,
  .about-page .about-hero .about-hero-copy,
  .about-page .about-hero .about-hero-tags {
    width: 100%;
  }

  .about-hero {
    min-height: 0;
    border-radius: 14px;
    padding: 0.7rem;
    gap: 0.8rem;
  }

  .about-page .about-hero .collaborate-hero {
    margin: 0;
    padding: 0.75rem;
    border-radius: 14px;
  }

  .about-hero h1 {
    max-width: none;
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
  }

  .about-hero-tags {
    gap: 0.45rem;
  }

  .about-hero-tags span {
    font-size: 0.84rem;
  }

  .phases-section,
  .experience-section {
    margin-top: 0;
  }

  .phases-header h2,
  .experience-header h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
  }

  .phases-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .phase-card {
    padding: 0.95rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .experience-card {
    padding: 0.95rem;
  }
}

.events-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.events-hero {
  min-height: clamp(280px, 42vh, 420px);
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: clamp(1.3rem, 3.8vw, 2.4rem);
  border-radius: 24px;
  border: 1px solid rgba(10, 37, 64, 0.16);
  background:
    radial-gradient(circle at 84% 10%, rgba(3, 126, 243, 0.24) 0%, rgba(3, 126, 243, 0) 38%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 255, 0.9));
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.14);
}

.events-hero h1 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.15;
}

.events-section {
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
  width: 100%;
  box-sizing: border-box;
}

.events-section-header,
.events-grid {
  width: min(66vw, 980px);
  margin-left: auto;
  margin-right: auto;
}

.events-page .events-section:nth-of-type(odd) {
  background-color: var(--mint-50);
}

.events-page .events-section:nth-of-type(even) {
  background-color: var(--forest-100);
}

/* Ensure Upcoming Events section explicitly uses dark gray */
.events-page > .events-section:nth-of-type(2) {
  background-color: var(--forest-100) !important;
}

.events-page .events-section,
.events-page .events-section :is(h1, h2, h3, h4, p, li, span, small, strong, em, a:not(.cta-button)) {
  color: var(--forest-700);
}
.events-page .events-main {
  flex: 0;
}

.events-section-header h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.14;
}

.events-grid {
  display: grid;
  gap: 1rem;
}

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

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

.event-card {
  border-radius: 18px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.previous-events-grid .event-card {
  background: var(--forest-100);
}

.upcoming-events-grid .event-card {
  background: var(--mint-50);
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 22px 38px rgba(10, 37, 64, 0.16), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.event-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: rgba(10, 37, 64, 0.08);
}

.event-card-body {
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.event-card-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.3;
}

.event-card-meta {
  margin: 0;
  color: rgba(10, 37, 64, 0.82);
}

.event-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.4rem;
}

.event-card-folder-link {
  min-height: 34px;
  min-width: auto;
  padding: 0.35rem 0.78rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--forest-700);
  background: rgba(77, 255, 155, 0.26);
  border: 1px solid rgba(77, 255, 155, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.event-card-folder-link:hover {
  background: rgba(77, 255, 155, 0.34);
  color: #0A2540;
  border-color: rgba(77, 255, 155, 0.62);
  box-shadow: 0 6px 14px rgba(10, 37, 64, 0.12);
  transform: translateY(-1px);
  text-decoration: none;
}

.event-card-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.event-meta-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.event-meta-text {
  line-height: 1.4;
}

.event-card-upcoming {
  background: linear-gradient(155deg, rgba(248, 250, 252, 0.98), rgba(234, 247, 244, 0.9));
}

.events-empty {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(10, 37, 64, 0.24);
  color: rgba(10, 37, 64, 0.75);
  background: rgba(248, 250, 252, 0.72);
}

@media (max-width: 1024px) {
  .previous-events-grid,
  .upcoming-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .events-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    padding-top: 1.35rem;
    padding-left: 0;
    padding-right: 0;
  }

  .events-section-header,
  .events-grid {
    width: 100%;
    max-width: none;
  }

  .events-hero {
    min-height: 0;
    border-radius: 18px;
    padding: 1rem;
  }

  .events-section {
    margin-top: 1.25rem;
  }

  .events-section[aria-labelledby="upcoming-events-title"] {
    flex: 1;
  }

  .events-section-header h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.4rem, 7.5vw, 1.9rem);
  }

  .previous-events-grid,
  .upcoming-events-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .events-page .event-card {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .events-page .events-section-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.team-main {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.2rem) 0 clamp(3rem, 7vw, 4.5rem);
}

.team-page .team-main {
  background-color: transparent;
}

.team-main,
.team-main :is(h1, h2, h3, h4, h5, h6, p, li, span, small, strong, em, a:not(.cta-button), label) {
  color: var(--forest-700);
}

.team-hero {
  min-height: clamp(240px, 38vh, 360px);
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: clamp(1.25rem, 3.6vw, 2.2rem);
  border-radius: 24px;
  border: 1px solid rgba(10, 37, 64, 0.16);
  background:
    radial-gradient(circle at 86% 10%, rgba(3, 126, 243, 0.23) 0%, rgba(3, 126, 243, 0) 36%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(230, 246, 255, 0.9));
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.13);
}

.team-hero h1 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.6rem, 3.1vw, 2.45rem);
  line-height: 1.14;
}

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

.team-card {
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(10, 37, 64, 0.11);
  overflow: hidden;
  display: grid;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 155, 0.2);
  box-shadow: 0 24px 40px rgba(10, 37, 64, 0.16), 0 0 0 2px rgba(77, 255, 155, 0.2);
}

.team-header {
  padding: 1.25rem 1.25rem 0.85rem;
  display: flex;
  justify-content: center;
  background: var(--mint-100);
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: rgba(10, 37, 64, 0.08);
  border: 3px solid rgba(77, 255, 155, 0.4);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.12);
}

.team-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: grid;
  gap: 0.5rem;
  text-align: center;
  background: var(--mint-50);
}

.team-body h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.25;
}

.team-role {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.55;
}

.team-actions {
  display: grid;
  gap: 0.45rem;
}

.team-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--forest-700);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}

.team-action svg {
  width: 18px;
  height: 18px;
  fill: currentcolor;
}

.team-action:hover {
  color: var(--forest-700);
}

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

@media (max-width: 720px) {
  .team-main {
    width: 100%;
    max-width: none;
    padding-top: 1.35rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-hero {
    min-height: 0;
    border-radius: 18px;
    padding: 1rem;
  }

  .team-grid {
    margin-top: 1.2rem;
    gap: 0.8rem;
  }
}

.collaborate-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.collaborate-main .partners-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.8rem;
  width: fit-content;
  background: rgba(77, 255, 155, 0.2);
  border-color: rgba(77, 255, 155, 0.35);
}

.collaborate-hero {
  width: min(1120px, 92vw);
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.25rem, 3.6vw, 2.35rem);
  border-radius: 26px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  background: var(--forest-100);
  box-shadow: 0 24px 52px rgba(10, 37, 64, 0.14);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.collab-cards-grid,
.collaborate-form,
.collaborate-section-header {
  width: min(66vw, 980px);
  margin-left: auto;
  margin-right: auto;
}

.collaborate-hero-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.collaborate-hero-copy {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.collaborate-hero-copy h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.5vw, 2.95rem);
  line-height: 1.1;
}

.collaborate-hero-copy p {
  margin: 0;
  max-width: 68ch;
  color: rgba(10, 37, 64, 0.88);
  line-height: 1.63;
}

.collab-cards-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.collab-card {
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  background: var(--mint-50);
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.08);
  transition: all var(--transition);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.collab-card:hover {
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.12);
  transform: translateY(-4px);
}

.collab-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-deep);
}

.collab-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(10, 37, 64, 0.84);
}

.collaborate-section,
.collaborate-form-section {
  width: 100%;
  box-sizing: border-box;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.collaborate-section + .collaborate-section,
.collaborate-section + .collaborate-form-section,
.collaborate-form-section + .collaborate-section {
  margin-top: 4.5rem;
}

.collaborate-page .collaborate-section:nth-of-type(2),
.collaborate-page .collaborate-form-section {
  margin-top: 0;
}

.collaborate-form-section[aria-labelledby="contact-form-title"] {
  margin-bottom: 0;
}

.collaborate-page .collaborate-section:nth-of-type(2),
.collaborate-page .collaborate-form-section {
  color: var(--forest-700);
}

.collaborate-page .collaborate-section:nth-of-type(2) :is(h1, h2, h3, h4, p, li, span, small, strong, em, label, a:not(.cta-button)),
.collaborate-page .collaborate-form-section :is(h1, h2, h3, h4, p, li, span, small, strong, em, label, a:not(.cta-button)) {
  color: var(--forest-700);
}

.collaborate-page .collaborate-form-section .cta-button {
  color: #FFFFFF;
}

.collaborate-page .collaborate-hero {
  background-color: var(--mint-50);
}

.collaborate-page .collaborate-section:nth-of-type(1) {
  background-color: var(--forest-100);
}

.collaborate-page .collaborate-section:nth-of-type(2) {
  background-color: var(--forest-100);
}

.collaborate-page .collaborate-form-section {
  background-color: var(--mint-50);
}

.collaborate-section-header h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.14;
}

.collaborate-section-header p {
  margin: 0;
  color: rgba(10, 37, 64, 0.84);
}

.collab-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.collab-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.5rem;
  padding: 0.88rem 0.95rem;
  border-radius: 15px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  background: linear-gradient(140deg, rgba(248, 250, 252, 0.97), rgba(234, 246, 255, 0.9));
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.08);
}

.collab-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.collaborate-form {
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 250, 247, 0.9));
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.12);
  padding: 1.05rem;
  display: grid;
  gap: 0.7rem;
}

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

.collaborate-field {
  display: grid;
  gap: 0.35rem;
}

.collaborate-field:not(.collaborate-field-half) {
  grid-column: 1 / -1;
}

.collaborate-label {
  font-weight: 600;
  color: var(--bg-deep);
}

.collaborate-input {
  width: 100%;
  border: 1px solid rgba(10, 37, 64, 0.2);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  min-height: 44px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.collaborate-input:focus-visible {
  outline: none;
  border-color: rgba(3, 126, 243, 0.8);
  box-shadow: 0 0 0 3px rgba(3, 126, 243, 0.18);
}

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

.collaborate-status {
  min-height: 1.35rem;
  margin: 0.1rem 0 0;
  color: rgba(10, 37, 64, 0.8);
}

.collaborate-status.is-success {
  color: #00C06F;
}

.collaborate-status.is-error {
  color: #037EF3;
}

.collaborate-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .collaborate-page .collaborate-section[aria-labelledby="work-together-title"] {
    width: calc(100% + 2rem);
    max-width: none;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .collaborate-page .collaborate-section[aria-labelledby="work-together-title"] .collab-cards-grid {
    width: 100%;
    max-width: none;
  }

  .collaborate-page .collaborate-form-section[aria-labelledby="contact-form-title"] {
    width: calc(100% + 2rem);
    max-width: none;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .collaborate-main {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .collaborate-hero {
    min-height: 0;
    border-radius: 18px;
    padding: 1rem;
    gap: 0.8rem;
  }

  .collaborate-hero-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .collaborate-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.6rem, 8.4vw, 2.2rem);
    margin-bottom: 0.6rem;
  }

  .collaborate-hero-copy p {
    margin-bottom: 0.6rem;
  }

  .collaborate-section,
  .collaborate-form-section {
    margin-top: 1.25rem;
    padding: 0.95rem 0;
  }

  .collaborate-section-header,
  .collaborate-form {
    width: 100%;
    max-width: none;
  }

  .collaborate-section-header h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
    margin-bottom: 0.5rem;
  }

  .collaborate-section-header p {
    margin-bottom: 0.8rem;
  }

  .collaborate-form-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .collaborate-form {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .collaborate-field:not(.collaborate-field-half) {
    grid-column: auto;
  }

  .collaborate-actions .cta-button {
    width: 100%;
  }

  .collab-card-title {
    margin-bottom: 0.5rem;
  }
}
