:root {
  --white: #fff;
  --black: #0a0a0a;
  --grey-100: #f5f5f3;
  --grey-200: #e8e8e4;
  --grey-600: #6b6b65;
  --grey-800: #2a2a26;
  --c1: #f5d800;
  --c2: #4db848;
  --c3: #00a0dc;
  --c4: #eb008b;
  --c5: #f7941d;
  --c6: #00bcd4;
  --gradient: linear-gradient(
    135deg,
    #f5d800 0%,
    #4db848 20%,
    #00a0dc 45%,
    #eb008b 75%,
    #c0392b 100%
  );
  --gradient-subtle: linear-gradient(
    135deg,
    rgba(245, 216, 0, 0.12) 0%,
    rgba(77, 184, 72, 0.12) 25%,
    rgba(0, 160, 220, 0.12) 50%,
    rgba(235, 0, 139, 0.12) 75%,
    rgba(192, 57, 43, 0.12) 100%
  );
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
.icon-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-svg-sm {
  width: 16px;
  height: 16px;
}
.icon-svg-lg {
  width: 24px;
  height: 24px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.nav-logo-ring span {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-brand {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a18;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 0.3s;
}
.nav-brand small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.nav-active {
  color: rgba(0, 0, 0, 0.9);
}
.nav-cta {
  background: var(--gradient);
  border: none;
  border-radius: 40px;
  padding: 9px 22px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 40px 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a18;
  text-decoration: none;
  padding: 16px 0;
  letter-spacing: -0.02em;
  opacity: 0.7;
  transition: opacity 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  text-align: center;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  opacity: 1;
  color: #1a1a18;
}
.mobile-menu a.nav-active {
  opacity: 1;
  color: #1a1a18;
}
.mobile-menu .mobile-cta {
  margin-top: 32px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 40px;
  padding: 14px 40px;
  font-size: 16px;
  border-bottom: none;
  opacity: 1;
  width: auto;
}
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient);
  opacity: 0.18;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(38px, 9vw, 110px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 900px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}
.hero-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin-top: 32px;
  max-width: 560px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.btn-primary {
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 15px 32px;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}
section {
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label-line {
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.section-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 8vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}
#about {
  background: #0e0e0c;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 20px;
}
.about-text p:first-child {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.82);
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px 28px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.pillar:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.pillar h3 {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  clip-path: inset(0 round 20px);
  transform: translateZ(0);
  will-change: transform;
}
.stat-card {
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  will-change: contents;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.value-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.value-row:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.value-num {
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  width: 24px;
}
.value-name {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  flex: 1;
}
.value-tag {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
}
#membership {
  background: #0a0a08;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 64px;
}
.member-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
}
.member-card.featured {
  border-color: transparent;
  border-width: 2px;
  background:
    linear-gradient(#0a0a08, #0a0a08) padding-box,
    var(--gradient) border-box;
}
.member-card.featured::before {
  content: "Recommended";
  position: absolute;
  top: 34px;
  right: 28px;
  background: var(--gradient);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  color: #fff;
  line-height: 1;
}
.member-card.featured h3 {
  padding-right: 120px;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.member-journey-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 8px;
}
.member-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.member-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
  min-height: 44px;
}
.member-fee {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.member-fee strong {
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  font-family: "Syne", sans-serif;
}
.member-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  flex-grow: 1;
}
.member-perks li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
}
.perk-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
}
.perk-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.member-join {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.member-join.grad {
  background: var(--gradient);
  color: var(--white);
}
.member-join.outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}
.member-join.outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
/* GNN tooltip */
.gnn-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  vertical-align: middle;
}
.gnn-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
  font-weight: 700;
  line-height: 1;
  font-family: "Syne", sans-serif;
  flex-shrink: 0;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.gnn-tooltip-wrap:hover .gnn-hint {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}
.gnn-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 240px;
  background: #1e1e1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.12s 0.3s,
    visibility 0s 0.42s;
  z-index: 200;
  white-space: normal;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.gnn-tooltip-wrap:hover .gnn-tooltip {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.12s 0s,
    visibility 0s 0s;
}
.gnn-tooltip a {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 9px;
  color: var(--c3);
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.gnn-tooltip a:hover {
  text-decoration: underline;
}
.gnn-tooltip a .arrow {
  font-size: 9px;
  line-height: 1;
}
.member-card-wrap {
  display: flex;
  flex-direction: column;
}
.member-card-wrap .member-card {
  flex: 1;
}
.membership-grid > .member-card {
  margin-bottom: 32px;
}
.subtle-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
}
#committee {
  background: #0e0e0c;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.team-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: 0s;
}
.team-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.team-avatar {
  aspect-ratio: 9 / 7;
  background: var(--gradient-subtle);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.avatar-initials {
  font-family: "Syne", sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-info {
  padding: 32px 36px 40px;
}
.team-name {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}
.team-org {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  letter-spacing: 0.03em;
}
#mentors {
  background: var(--black);
}
#events {
  background: #0a0a08;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.event-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}
.event-header {
  padding: 28px 28px 20px;
  position: relative;
  flex: 1;
}
.event-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.event-tag.workshop {
  background: rgba(0, 160, 220, 0.15);
  color: var(--c3);
  border: 1px solid rgba(0, 160, 220, 0.45);
}
.event-tag.meetup {
  background: rgba(77, 184, 72, 0.15);
  color: var(--c2);
  border: 1px solid rgba(77, 184, 72, 0.45);
}
.event-tag.partner {
  background: rgba(235, 0, 139, 0.12);
  color: var(--c4);
  border: 1px solid rgba(235, 0, 139, 0.4);
}
.event-tag.yail {
  background: rgba(245, 216, 0, 0.14);
  color: var(--c1);
  border: 1px solid rgba(245, 216, 0, 0.45);
}
/* Event filter dropdown */
.event-filters {
  margin-top: 36px;
}
.event-filter-dropdown {
  position: relative;
  display: inline-block;
}
/* Trigger — base (dark theme) */
.event-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}
.event-filter-trigger[data-active="yail"] {
  background: rgba(245, 216, 0, 0.14);
  border-color: rgba(245, 216, 0, 0.45);
  color: var(--c1);
}
.event-filter-trigger[data-active="partner"] {
  background: rgba(235, 0, 139, 0.12);
  border-color: rgba(235, 0, 139, 0.4);
  color: var(--c4);
}
.event-filter-trigger[data-active="meetup"] {
  background: rgba(77, 184, 72, 0.15);
  border-color: rgba(77, 184, 72, 0.45);
  color: var(--c2);
}
.event-filter-trigger[data-active="workshop"] {
  background: rgba(0, 160, 220, 0.15);
  border-color: rgba(0, 160, 220, 0.45);
  color: var(--c3);
}
.event-filter-dropdown.open .event-filter-trigger svg {
  transform: rotate(180deg);
}
/* Menu panel */
.event-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.event-filter-dropdown.open .event-filter-menu {
  display: flex;
}
/* Options — pill style */
.event-filter-option {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 40px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.event-filter-option[data-filter="all"]:hover,
.event-filter-option[data-filter="all"].active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}
.event-filter-option[data-filter="yail"]:hover,
.event-filter-option[data-filter="yail"].active {
  background: rgba(245, 216, 0, 0.14);
  border-color: rgba(245, 216, 0, 0.45);
  color: var(--c1);
}
.event-filter-option[data-filter="partner"]:hover,
.event-filter-option[data-filter="partner"].active {
  background: rgba(235, 0, 139, 0.12);
  border-color: rgba(235, 0, 139, 0.4);
  color: var(--c4);
}
.event-filter-option[data-filter="meetup"]:hover,
.event-filter-option[data-filter="meetup"].active {
  background: rgba(77, 184, 72, 0.15);
  border-color: rgba(77, 184, 72, 0.45);
  color: var(--c2);
}
.event-filter-option[data-filter="workshop"]:hover,
.event-filter-option[data-filter="workshop"].active {
  background: rgba(0, 160, 220, 0.15);
  border-color: rgba(0, 160, 220, 0.45);
  color: var(--c3);
}
.event-card.hidden {
  display: none;
}
.event-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-date svg {
  width: 14px;
  height: 14px;
}
.event-title {
  font-family: "Syne", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 52px;
}
.event-location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.event-location svg {
  width: 14px;
  height: 14px;
}
.event-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-link-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.event-card:hover .event-link-text {
  color: var(--white);
}
#news {
  background: var(--black);
}
.news-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  margin-bottom: 40px;
}
.news-highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 0s,
    border-color 0s,
    text-decoration 0s;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.news-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}
.highlight-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news-highlight-card .news-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}
.news-highlight-card .news-title {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 40px;
}
.news-highlight-card .news-excerpt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}
.news-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-col .news-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-col .news-body {
  flex: 1;
}
.news-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0s,
    border-color 0s,
    text-decoration 0s;
  color: inherit;
  display: block;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}
.news-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.news-thumb.small {
  height: 140px;
}
.news-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s;
}
.news-card:hover .news-thumb-bg {
  transform: scale(1.04);
}
.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-body {
  padding: 24px;
}
.news-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.news-title {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-title.small {
  font-size: 15px;
}
.news-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
#partners {
  background: #0e0e0c;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.partner-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    opacity 0.25s;
}
.partner-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}
.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.partner-logo-fallback {
  font-size: 14px;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partner-card.partner-placeholder {
  border-style: dashed;
  opacity: 0.3;
  pointer-events: none;
}
.partner-cta {
  margin-top: 48px;
  text-align: center;
}
#contact {
  background: #0a0a08;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
.contact-quote {
  display: flex;
  align-items: center;
  padding-right: 32px;
}
.contact-quote blockquote {
  padding: 40px;
  border: none;
  background: transparent;
  font-family: "Syne", sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.contact-quote blockquote::before {
  content: "\201C";
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 175px;
  line-height: 0.9;
  margin-bottom: 6px;
  font-style: normal;
  background: linear-gradient(to left, #f5d800, #4db848, #00a0dc, #eb008b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-quote cite {
  display: block;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.form-group input:not([type="radio"]),
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.form-group select option {
  background: #1a1a18;
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  padding: 2px 0 2px 4px;
  cursor: pointer;
}
.consent-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.consent-checkbox .checkbox-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.consent-checkbox input[type="checkbox"]:checked + .checkbox-box {
  background: #4db848;
  border-color: transparent;
}
.consent-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.consent-checkbox,
.consent-checkbox span:last-child {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.form-privacy-notice {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.35);
  margin-top: -8px;
  margin-bottom: 0;
  text-align: center;
}
.form-privacy-notice a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-privacy-notice a:hover {
  color: rgba(0, 0, 0, 0.75);
}
.form-submit {
  background: var(--gradient);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  margin-top: 4px;
}
.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.referral-field,
.membership-type-field,
.physical-events-field,
.other-specify-field {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s;
  opacity: 0;
}
.referral-field.show,
.membership-type-field.show,
.physical-events-field.show,
.other-specify-field.show {
  max-height: 250px;
  opacity: 1;
  padding-top: 16px;
}
.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 0 2px;
}
.radio-option {
  cursor: pointer;
}
.radio-option input[type="radio"] {
  display: none;
}
.radio-option-label {
  display: inline-block;
  padding: 9px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  user-select: none;
}
.radio-option input[type="radio"]:checked + .radio-option-label {
  border-color: var(--c3);
  color: var(--c3);
  background: rgba(0, 160, 220, 0.1);
}
footer {
  background: #060604;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-powered {
  margin-top: -16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
}
.footer-bottom p:last-child {
  text-align: right;
  white-space: nowrap;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  transition: 0.2s;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.09);
  color: #1a1a18;
}
.modal-content h3 {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1a1a18;
  margin-bottom: 8px;
}
.modal-meta {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.modal-body {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
}
.modal-body p {
  margin-bottom: 16px;
}
.modal-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.modal-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a18;
  text-decoration: none;
  padding: 11px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.modal-cta a:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.03);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* ── Tablet ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── Narrow tablet ── */
@media (max-width: 1060px) {
  .radio-group {
    flex-direction: column;
    gap: 6px;
  }
  .radio-option-label {
    display: block;
    text-align: center;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #home {
    padding: 100px 24px 60px;
  }
  .hero-scroll {
    display: none;
  }
  .section-inner {
    padding: 70px 24px;
  }
  .hero-sub {
    font-size: 15px;
    margin-top: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-quote {
    text-align: center;
    padding-right: 0;
    align-items: center;
    justify-content: center;
  }
  .contact-quote blockquote::before {
    text-align: center;
  }
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }
  .gnn-tooltip {
    width: min(240px, calc(100vw - 48px));
    left: auto;
    right: 0;
  }
  .member-card {
    padding: 24px 20px;
  }
  .member-card.featured h3 {
    padding-right: 110px;
  }
  .membership-grid > .member-card {
    margin-bottom: 0;
  }
  .news-grid,
  .news-highlights,
  .events-grid {
    grid-template-columns: 1fr;
  }
  .news-grid .news-card {
    min-height: 0;
  }
  .news-grid .news-thumb,
  .news-grid .news-thumb.small {
    height: 160px;
  }
  .news-grid .news-title,
  .news-grid .news-title.small {
    font-size: 16px;
  }
  .news-grid .news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  footer {
    padding: 40px 24px;
  }
}

/* ── Narrow mobile ── */
@media (max-width: 550px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  #committee .team-card {
    width: 80%;
  }
  .partners-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .partners-grid .partner-card {
    width: 50%;
    max-width: 50%;
  }
}

.footer-break {
  display: none;
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-break {
    display: inline;
  }
  .footer-bottom p:last-child {
    text-align: left;
    white-space: normal;
  }
}
/* ── Light theme for everything below hero ── */
#about {
  background: #f5f5f3;
}
#about .section-inner {
  padding-top: 140px;
}

#committee {
  background: #fff;
}
#mentors {
  background: #f5f5f3;
}
#partners {
  background: #fff;
}
#events {
  background: #f5f5f3;
}
#membership {
  background: #fff;
}
#news {
  background: #f5f5f3;
}
#contact {
  background: #fff;
}
/* Section labels and titles */
#home ~ section .section-label span {
  color: rgba(0, 0, 0, 0.45);
}
#home ~ section .section-label-line {
  background: var(--gradient);
}
#home ~ section .section-title {
  color: #1a1a18;
}
#home ~ section .section-title span[style*="opacity"] {
  color: rgba(0, 0, 0, 0.4) !important;
}
/* About */
#about .about-text p {
  color: rgba(0, 0, 0, 0.6);
}
#about .about-text p:first-child {
  color: rgba(0, 0, 0, 0.8);
}
#about .pillar {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
}
#about .pillar:hover {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.02);
}
#about .pillar h3 {
  color: #1a1a18;
}
#about .pillar p {
  color: rgba(0, 0, 0, 0.55);
}
#about .pillar-icon {
  color: rgba(0, 0, 0, 0.65);
}
/* Mission / Stats */
#about .stats-grid {
  border-color: rgba(0, 0, 0, 0.07);
  margin-top: 72px;
}
#about .stat-card {
  background: #fff;
}
#about .stat-card:hover {
  background: rgba(0, 0, 0, 0.02);
}
#about .stat-label {
  color: rgba(0, 0, 0, 0.5);
}

/* Membership */
#membership .member-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
}
#membership .member-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
}
#membership .member-card.featured {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  border-width: 2px;
}
#membership .member-card.featured::before {
  color: #fff;
}
#membership .member-journey-label {
  color: rgba(0, 0, 0, 0.42);
}
#membership .member-card h3 {
  color: #1a1a18;
}
#membership .member-desc {
  color: rgba(0, 0, 0, 0.4);
}
#membership .member-fee {
  color: rgba(0, 0, 0, 0.4);
}
#membership .member-fee strong {
  color: #1a1a18;
}
#membership .member-perks li {
  color: rgba(0, 0, 0, 0.6);
}
#membership .perk-icon {
  color: rgba(0, 0, 0, 0.35);
}
#membership .gnn-hint {
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.35);
}
#membership .gnn-tooltip-wrap:hover .gnn-hint {
  border-color: rgba(0, 0, 0, 0.45);
  color: rgba(0, 0, 0, 0.6);
}
#membership .gnn-tooltip {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
#membership .member-join.outline {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.6);
}
#membership .member-join.outline:hover {
  border-color: rgba(0, 0, 0, 0.35);
  color: #1a1a18;
}
#membership .subtle-note {
  color: rgba(0, 0, 0, 0.3);
}
/* Mentor Carousel */
.mentor-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}
.mentor-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.mentor-carousel-track .team-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .mentor-carousel {
    padding: 0 15%;
  }
  .mentor-carousel-track .team-card {
    flex: 0 0 100%;
  }
}
@media (max-width: 550px) {
  .mentor-carousel {
    padding: 0 10%;
  }
  .mentor-carousel-track .team-card {
    flex: 0 0 100%;
    width: 100%;
  }
}
.mentor-carousel-track .team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mentor-carousel-track .team-desc {
  flex-grow: 1;
}
.mentor-carousel-track .team-org {
  margin-top: auto;
  padding-top: 20px;
}
.mentor-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  flex-shrink: 0;
}
.carousel-btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}
.carousel-btn:disabled {
  opacity: 0.2;
  cursor: default;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: rgba(255, 255, 255, 0.6);
  width: 22px;
}
#mentors .carousel-btn {
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.4);
}
#mentors .carousel-btn:hover:not(:disabled) {
  border-color: rgba(0, 0, 0, 0.35);
  color: rgba(0, 0, 0, 0.8);
}
#mentors .carousel-dot {
  background: rgba(0, 0, 0, 0.12);
}
#mentors .carousel-dot.active {
  background: rgba(0, 0, 0, 0.45);
}
/* Executive Committee & Mentors */
#committee .team-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
}
#mentors .team-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
}
#committee .team-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
}
#mentors .team-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
}
#committee .team-name,
#mentors .team-name {
  color: #1a1a18;
}
#committee .team-desc,
#mentors .team-desc {
  color: rgba(0, 0, 0, 0.5);
}
#committee .team-org,
#mentors .team-org {
  color: rgba(0, 0, 0, 0.35);
}
/* Events */
#events .event-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
}
#events .event-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
}
#events .event-date {
  color: rgba(0, 0, 0, 0.4);
}
#events .event-title {
  color: #1a1a18;
}
#events .event-location {
  color: rgba(0, 0, 0, 0.35);
}
#events .event-excerpt {
  color: rgba(0, 0, 0, 0.5);
}
#events .event-footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}
#events .event-link-text {
  color: rgba(0, 0, 0, 0.45);
}
#events .event-card:hover .event-link-text {
  color: #1a1a18;
}
/* Light theme: trigger */
#events .event-filter-trigger {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.55);
}
#events .event-filter-trigger[data-active="yail"] {
  background: rgba(245, 216, 0, 0.14);
  border-color: rgba(245, 216, 0, 0.45);
  color: #8a7000;
}
#events .event-filter-trigger[data-active="partner"] {
  background: rgba(235, 0, 139, 0.12);
  border-color: rgba(235, 0, 139, 0.4);
  color: var(--c4);
}
#events .event-filter-trigger[data-active="meetup"] {
  background: rgba(77, 184, 72, 0.15);
  border-color: rgba(77, 184, 72, 0.45);
  color: var(--c2);
}
#events .event-filter-trigger[data-active="workshop"] {
  background: rgba(0, 160, 220, 0.15);
  border-color: rgba(0, 160, 220, 0.45);
  color: var(--c3);
}
#events .event-filter-menu {
  background: rgba(250, 250, 248, 0.97);
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
#events .event-filter-option {
  color: rgba(0, 0, 0, 0.35);
}
#events .event-filter-option[data-filter="all"]:hover,
#events .event-filter-option[data-filter="all"].active {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.65);
}
#events .event-filter-option[data-filter="yail"]:hover,
#events .event-filter-option[data-filter="yail"].active {
  background: rgba(245, 216, 0, 0.14);
  border-color: rgba(245, 216, 0, 0.45);
  color: #8a7000;
}
#events .event-filter-option[data-filter="partner"]:hover,
#events .event-filter-option[data-filter="partner"].active {
  background: rgba(235, 0, 139, 0.12);
  border-color: rgba(235, 0, 139, 0.4);
  color: var(--c4);
}
#events .event-filter-option[data-filter="meetup"]:hover,
#events .event-filter-option[data-filter="meetup"].active {
  background: rgba(77, 184, 72, 0.15);
  border-color: rgba(77, 184, 72, 0.45);
  color: var(--c2);
}
#events .event-filter-option[data-filter="workshop"]:hover,
#events .event-filter-option[data-filter="workshop"].active {
  background: rgba(0, 160, 220, 0.15);
  border-color: rgba(0, 160, 220, 0.45);
  color: var(--c3);
}
/* News */
#news .news-highlight-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#news .highlight-badge {
  -webkit-text-fill-color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  border: none;
  padding: 0;
  font-size: 9px;
}
#news .news-highlight-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
  background: #fff;
}
#news .news-highlight-card .news-date {
  color: rgba(0, 0, 0, 0.35);
  margin-top: 14px;
}
#news .news-highlight-card .news-title {
  color: #1a1a18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.3em * 2);
}
#news .news-highlight-card .news-excerpt {
  color: rgba(0, 0, 0, 0.45);
}
#news .news-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
  text-decoration: none;
}
#news .news-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}
#news .news-body .news-date {
  color: rgba(0, 0, 0, 0.35);
}
#news .news-body .news-title {
  color: #1a1a18;
}
#news .news-body .news-excerpt {
  color: rgba(0, 0, 0, 0.5);
}
#news .news-tag {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
#news .btn-ghost {
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.6);
}
#news .btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.35);
  color: #1a1a18;
}
/* Strategic Partner */
.strategic-partner {
  margin-top: 64px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 33, 77, 0.15);
  border-radius: 20px;
  padding: 44px 48px;
  background: rgba(216, 174, 94, 0.35);
}
.strategic-partner-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(180, 140, 60, 0.9);
  margin-bottom: 24px;
}
.strategic-partner-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.strategic-partner-logo {
  flex-shrink: 0;
  width: calc((min(1200px, 100vw) - 120px - 4 * 10px) / 5);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}
.strategic-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strategic-partner-info {
  flex: 1;
}
.strategic-partner-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a18;
}
.strategic-partner-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}
@media (max-width: 1024px) {
  .strategic-partner-logo {
    width: calc((100vw - 120px - 3 * 10px) / 4);
  }
}
@media (max-width: 768px) {
  .strategic-partner-logo {
    width: calc((100vw - 48px - 2 * 10px) / 3);
  }
}
@media (max-width: 700px) {
  .strategic-partner {
    padding: 24px 20px;
  }
  .strategic-partner-inner {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
}
@media (max-width: 550px) {
  .strategic-partner-logo {
    width: calc((100vw - 48px) / 2);
  }
}

/* Partners */
#partners .partner-card {
  border-color: rgba(0, 0, 0, 0.07);
  background: rgba(0, 0, 0, 0.03);
}
/* Neutral partner card style */
#partners .partners-grid .partner-card {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.09);
}
#partners .partners-grid .partner-card .partner-logo-fallback {
  color: rgba(0, 0, 0, 0.35);
}
#partners .partners-grid .partner-card img {
  filter: none;
}
#partners .partner-logo-fallback {
  color: rgba(0, 0, 0, 0.2);
}
#partners .partner-cta p {
  color: rgba(0, 0, 0, 0.45);
}
#partners .btn-ghost {
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.6);
}
#partners .btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.35);
  color: #1a1a18;
}
/* Contact */
#contact .contact-quote blockquote {
  color: rgba(0, 0, 0, 0.78);
}
#contact .contact-quote cite {
  color: rgba(0, 0, 0, 0.35);
  border-top-color: rgba(0, 0, 0, 0.08);
}
#contact .form-group label {
  color: rgba(0, 0, 0, 0.45);
}
#contact .form-group input:not([type="radio"]),
#contact .form-group select,
#contact .form-group textarea {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a18;
}
#contact .form-group input:not([type="radio"]):focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
  border-color: rgba(0, 0, 0, 0.3);
}
#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
#contact .form-group select option {
  background: #fff;
}
#contact .radio-option-label {
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.03);
}
#contact .radio-option input[type="radio"]:checked + .radio-option-label {
  border-color: var(--c3);
  color: var(--c3);
  background: rgba(0, 160, 220, 0.08);
}
/* Light-theme description text with inline style */
#membership > div > p {
  color: rgba(0, 0, 0, 0.5) !important;
}
/* Footer */
footer {
  background: #f0f0ee !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-brand p {
  font-family: "Syne";
  color: rgba(0, 0, 0, 0.4);
}
.footer-brand .nav-brand {
  color: #1a1a18;
}
.footer-brand .nav-brand small {
  color: rgba(0, 0, 0, 0.4);
}
.footer-col h4 {
  color: rgba(0, 0, 0, 0.35);
}
.footer-col a {
  color: rgba(0, 0, 0, 0.5);
}
.footer-col a:hover {
  color: #1a1a18;
}
.footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}
.footer-bottom p {
  color: rgba(0, 0, 0, 0.3);
}
.footer-social a {
  color: rgba(0, 0, 0, 0.3);
}
.footer-social a:hover {
  color: rgba(0, 0, 0, 0.7);
}

/* ── About ── */
#about .section-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility classes for inline style extraction ── */
.section-title-faded {
  opacity: 0.45;
  color: rgba(0, 0, 0, 0.4) !important;
}
.about-subsection-label {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35) !important;
  margin-bottom: 40px !important;
}
.about-subsection-label-sm {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35) !important;
  margin-bottom: 16px;
}
.team-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.mentor-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.leo,
.noah,
.ladina {
  object-position: center 10%;
}

.leo {
  transform: scale(1.5);
}

.noah {
  transform: scale(1.4);
}

.ozgur {
  transform: scale(1.15);
}

.barkin {
  object-position: center 12%;
  transform: scale(1.2);
}

.ladina {
  transform: scale(1.5);
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.icon-14 {
  width: 14px;
  height: 14px;
}
.icon-13 {
  width: 13px;
  height: 13px;
}
.icon-12 {
  width: 12px;
  height: 12px;
}
.event-filter-icon {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  transition: transform 0.2s;
}
.news-excerpt-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-cta-wrap {
  margin-top: 40px;
  text-align: center;
}
.modal-event-tag {
  margin-bottom: 20px;
}
.form-success {
  display: none;
  margin-top: 36px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(77, 184, 72, 0.18);
  border: 2px solid rgba(30, 100, 30, 0.9);
  font-size: 15px;
  font-weight: 600;
  color: rgba(30, 100, 30, 0.9);
}
.footer-logo-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  align-items: flex-start;
}
.footer-logo-img {
  height: 160px;
  width: auto;
  display: block;
}
.footer-nav-brand {
  margin-left: 0;
}
.membership-subtitle {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  line-height: 1.7;
}
