:root {
  --blue: #1684cb;
  --blue-dark: #0e2133;
  --green: #15945f;
  --text: #536276;
  --heading: #0e2133;
  --border: #e4edf3;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(227,246,255,.78) 0%, rgba(255,255,255,.96) 22%, rgba(255,255,255,.96) 76%, rgba(234,250,241,.85) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16,132,203,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,132,203,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 23%, rgba(97,191,237,.20), transparent 27%),
    radial-gradient(circle at 89% 22%, rgba(140,221,178,.18), transparent 26%),
    radial-gradient(circle at 50% 5%, rgba(255,255,255,.88), transparent 40%);
  z-index: -1;
}

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

.page {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-top: 28px;
}

.container {
  width: min(1225px, calc(100% - 48px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 20px;
  z-index: 9999;
  height: 64px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(226,238,246,.9);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(25, 88, 130, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 20px;
  backdrop-filter: blur(16px);
}


/* ==============================
   DROPDOWN MENU
================================= */

.navbar {
  overflow: visible;
}

.menu li {
  position: relative;
}

.chev {
  font-size: 11px;
  line-height: 1;
  margin-left: 5px;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  list-style: none;
  background: rgba(255,255,255,.94);
  border: 1px solid #e1ebf2;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 45px rgba(20, 80, 120, .10);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .22s ease;
  z-index: 99999;
}

.has-dropdown:hover > .submenu,
.has-dropdown:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  width: 100%;
}

.submenu a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #26384d;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.submenu a:hover {
  color: var(--blue);
  background: #edf8ff;
}

.has-submenu-right {
  position: relative;
}

.submenu-level-2 {
  top: 0;
  left: calc(100% + 10px);
}

/* little gap hover bridge */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

/* ==============================
   MOBILE DROPDOWN MENU
================================= */

@media (max-width: 980px) {
  .menu li {
    width: 100%;
  }

  .menu .has-dropdown::after {
    display: none;
  }

  .menu-toggle:checked ~ .menu .submenu {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(237,248,255,.55);
    border: 1px solid #e4edf3;
    border-radius: 14px;
    padding: 8px;
    margin-top: 8px;
  }

  .menu-toggle:checked ~ .menu .submenu-level-2 {
    margin-left: 0;
    background: rgba(255,255,255,.72);
  }

  .menu-toggle:checked ~ .menu .submenu a {
    justify-content: center;
    font-size: 13px;
    padding: 11px 14px;
  }

  .chev {
    margin-left: 7px;
  }
}

.submenu a {
  justify-content: flex-start !important;
  text-align: left !important;
}

.submenu {
  text-align: left !important;
}

@media (max-width: 980px) {
  .menu-toggle:checked ~ .menu .submenu a {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}


.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: auto;
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-text {
  display: none;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #26384d;
}

.menu a,
.login-link {
  transition: .2s ease;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu a:hover,
.login-link:hover {
  color: var(--blue);
  background: #edf8ff;
}

.menu .active {
  color: var(--blue);
  background: #edf8ff;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #126da5;
  white-space: nowrap;
}

.join-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1491d8, #126fb0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 26px rgba(20, 132, 203, .25);
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #dfeaf2;
  background: rgba(255,255,255,.75);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 19px;
  height: 2px;
  background: #10243a;
  border-radius: 999px;
  display: block;
}

.hero {
  padding-top: 118px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 550px;
  align-items: center;
  gap: 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #127fc1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #1189cf;
  border-radius: 50%;
  display: block;
}

h1 {
  color: var(--heading);
  font-size: 63px;
  line-height: 1.08;
  letter-spacing: -3.6px;
  font-weight: 800;
  margin-bottom: 28px;
  max-width: 720px;
}

h1 .blue {
  color: #137fc1;
}

h1 .green {
  color: #15995d;
}

.hero-text {
  font-size: 18px;
  line-height: 1.68;
  color: #4c5d70;
  max-width: 650px;
  margin-bottom: 38px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.primary-btn,
.secondary-btn {
  height: 57px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.primary-btn {
  background: linear-gradient(135deg, #1694db, #1279be);
  color: #fff;
  box-shadow: 0 17px 35px rgba(22, 132, 203, .28);
}

.secondary-btn {
  background: rgba(255,255,255,.72);
  color: #17283b;
  border: 1px solid #dfeaf2;
  box-shadow: 0 10px 30px rgba(20, 80, 120, .05);
}

.member-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #536276;
  font-size: 14px;
  font-weight: 500;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border: 3px solid rgba(255,255,255,.9);
  margin-left: -9px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.green {
  background: #168e59;
}

.avatar.sky {
  background: #4faee3;
}

.avatar.dark {
  background: #0f314c;
}

.avatar.blue {
  background: #1684cb;
}

.member-strip strong {
  color: #10243a;
  font-weight: 800;
}

.right-visual {
  position: relative;
  min-height: 420px;
}

.event-card {
  position: absolute;
  top: 58px;
  right: 53px;
  width: 468px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(224,235,243,.95);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(21, 57, 83, .12);
  padding: 38px 30px 28px;
  backdrop-filter: blur(14px);
}

.event-icon {
  position: absolute;
  right: 31px;
  top: 28px;
  width: 25px;
  height: 25px;
  color: #1887c9;
  opacity: .95;
}

.event-card h2 {
  color: #142438;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.5px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-right: 40px;
}

.event-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #5b6878;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 420px;
}

.event-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #25364a;
  font-size: 14px;
  font-weight: 700;
}

.meta-item svg {
  color: #198bd1;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.register-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #0e2235;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(14,34,53,.14);
}

.floating-box {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid #e2edf4;
  border-radius: 17px;
  box-shadow: 0 16px 37px rgba(15,65,100,.10);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.floating-box span {
  display: block;
  color: #697587;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.floating-box strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.4px;
}

.mentor-box {
  left: 8px;
  top: 5px;
  width: 225px;
  padding: 17px 18px;
}

.mentor-box strong {
  color: #137fc1;
}

.charity-box {
  right: 21px;
  bottom: 27px;
  width: 154px;
  padding: 17px 18px;
}

.charity-box strong {
  color: #15945f;
}

/* This strip is intentionally NOT fixed, so it scrolls with the page */
.specialties-wrap {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 90px;
  overflow: hidden;
  pointer-events: none;
}

.specialties {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding-left: 28px;
}

.pill {
  height: 34px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid #e3edf4;
  color: #526174;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 10px 22px rgba(20,70,105,.05);
  white-space: nowrap;
}

.pill.fade {
  opacity: .32;
}

.dot {
  width: 6px;
  height: 6px;
  background: #31bf78;
  border-radius: 50%;
  display: inline-block;
}

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

/* Section 2: Stats */
.stats-section {
  padding: 82px 0 105px;
}

.stats-box {
  max-width: 1225px;
  margin: 0 auto;
  background: rgba(255,255,255,.72);
  border: 1px solid #e1ebf2;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(20, 80, 120, .035);
}

.stat-item {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  border-right: 1px solid #e1ebf2;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item h3 {
  font-size: 38px;
  line-height: 1;
  color: #137fc1;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.stat-item p {
  font-size: 14px;
  color: #17283b;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Section 3: Four Pillars */
.pillars-section {
  padding: 0 0 130px;
}

.section-title-area {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-badge {
  height: 29px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef8ff;
  color: #137fc1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #137fc1;
  border-radius: 50%;
  display: block;
}

.section-title-area h2 {
  font-size: 37px;
  line-height: 1.16;
  letter-spacing: -1.7px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 17px;
}

.section-title-area p {
  font-size: 17px;
  line-height: 1.55;
  color: #243548;
  font-weight: 400;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.pillar-card {
  min-height: 318px;
  background: rgba(255,255,255,.76);
  border: 1px solid #e1ebf2;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 13px 34px rgba(20, 80, 120, .045);
}

.pillar-icon {
  width: 51px;
  height: 51px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
}

.pillar-icon svg {
  width: 27px;
  height: 27px;
}

.icon-blue {
  background: #eef8ff;
  color: #137fc1;
}

.icon-green {
  background: #eef9f4;
  color: #15945f;
}

.icon-red {
  background: #fff1f1;
  color: #db3d3d;
}

.icon-orange {
  background: #fff8e8;
  color: #ef8b00;
}

.pillar-card h3 {
  font-size: 18px;
  line-height: 1.28;
  color: #0e2133;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 15px;
  line-height: 1.56;
  color: #455468;
  font-weight: 400;
}

/* Future section placeholders */
.future-section {
  min-height: 1px;
}

@media (max-width: 1150px) {
  .navbar {
    padding: 0 14px;
  }

  .menu {
    gap: 4px;
    font-size: 13px;
  }

  .menu a,
  .login-link {
    padding: 9px 12px;
  }

  .join-btn {
    padding: 0 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 520px;
    gap: 45px;
  }

  h1 {
    font-size: 56px;
  }
}

@media (max-width: 980px) {
  .page {
    padding-top: 16px;
  }

  .navbar {
    top: 12px;
    height: auto;
    min-height: 64px;
    padding: 10px 14px;
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 20px;
  }

  .hamburger {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .logo {
    order: 1;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .menu,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .menu-toggle:checked ~ .menu {
    display: flex;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #e4edf3;
  }

  .menu-toggle:checked ~ .nav-actions {
    display: flex;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 4px;
  }

  .menu li,
  .menu a,
  .login-link,
  .join-btn {
    width: 100%;
  }

  .menu a,
  .login-link {
    display: flex;
    justify-content: center;
    padding: 13px 18px;
  }

  .join-btn {
    justify-content: center;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  h1 {
    font-size: 48px;
  }

  .right-visual {
    min-height: 620px;
  }

  .event-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .mentor-box {
    left: calc(50% - 310px);
  }

  .charity-box {
    right: calc(50% - 310px);
  }

  .stats-section {
    padding: 65px 0 85px;
  }

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid #e1ebf2;
  }

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

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1225px);
  }

  .hero {
    padding-top: 48px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 24px;
    letter-spacing: .4px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    height: 54px;
  }

  .member-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .right-visual {
    min-height: 620px;
  }

  .event-card {
    width: 100%;
    top: 74px;
    padding: 34px 22px 24px;
  }

  .event-card h2 {
    font-size: 21px;
  }

  .mentor-box {
    left: 0;
    top: 0;
    width: 170px;
  }

  .charity-box {
    right: 0;
    bottom: 0;
  }

  .specialties-wrap {
    margin-top: 40px;
  }

  .specialties {
    overflow-x: auto;
    width: 100%;
    padding: 0 14px 10px;
  }

  .stats-section {
    padding: 55px 0 75px;
  }

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

  .stat-item {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid #e1ebf2;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-item h3 {
    font-size: 34px;
  }

  .pillars-section {
    padding-bottom: 90px;
  }

  .section-title-area {
    margin-bottom: 42px;
  }

  .section-title-area h2 {
    font-size: 31px;
  }

  .section-title-area p {
    font-size: 15.5px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pillar-card {
    min-height: auto;
    padding: 28px 24px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  .event-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .floating-box span {
    font-size: 11px;
  }

  .floating-box strong {
    font-size: 19px;
  }

  .mentor-box {
    width: 158px;
  }

  .charity-box {
    width: 145px;
  }
}


/* ==============================
   SECTION 4: Upcoming Events
================================= */

.events-section {
  padding: 90px 0 90px;
}

.events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 42px;
}

.events-title {
  max-width: 650px;
}

.mini-badge {
  height: 29px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef8ff;
  color: #137fc1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mini-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #137fc1;
  border-radius: 50%;
  display: block;
}

.events-title h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 14px;
}

.events-title p {
  font-size: 16px;
  line-height: 1.6;
  color: #425268;
  max-width: 630px;
}

.view-events-btn {
  height: 45px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #9dd7f7;
  color: #087bbb;
  background: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: .25s ease;
}

.view-events-btn:hover {
  background: #eef8ff;
  transform: translateY(-2px);
}

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

.event-box {
  min-height: 214px;
  background: rgba(255,255,255,.80);
  border: 1px solid #e1ebf2;
  border-radius: 20px;
  padding: 27px 26px 24px;
  box-shadow: 0 12px 32px rgba(20, 80, 120, .045);
  transition: .25s ease;
}

.event-box:hover {
  border-color: #b9dff5;
  box-shadow: 0 18px 42px rgba(20, 80, 120, .09);
  transform: translateY(-5px);
}

.event-box:hover h3 {
  color: #137fc1;
}

.event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.event-tag {
  height: 25px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
}

.tag-green {
  background: #eef9f4;
  color: #15945f;
}

.tag-red {
  background: #fff1f1;
  color: #db3d3d;
}

.tag-yellow {
  background: #fff8e8;
  color: #ef8b00;
}

.event-date {
  font-size: 12px;
  color: #243548;
  font-weight: 700;
}

.event-box h3 {
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.5px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 12px;
  transition: .25s ease;
}

.event-box p {
  font-size: 14px;
  line-height: 1.55;
  color: #455468;
  margin-bottom: 25px;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526174;
  font-size: 13px;
  font-weight: 600;
}

.event-location svg {
  width: 16px;
  height: 16px;
  color: #1684cb;
  flex: 0 0 auto;
}


/* ==============================
   SECTION 5: AMC Pathway
================================= */

.amc-section {
  padding: 0 0 105px;
}

.amc-panel {
  background:
    radial-gradient(circle at 15% 86%, rgba(47, 196, 128, .22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(24, 132, 203, .24), transparent 30%),
    linear-gradient(135deg, #0c2c45 0%, #0d314f 52%, #0a2a43 100%);
  border-radius: 32px;
  padding: 64px 58px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.amc-content {
  max-width: 520px;
}

.amc-badge {
  height: 31px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(70, 196, 141, .13);
  color: #77dca6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.amc-badge::before {
  content: "✣";
  font-size: 13px;
}

.amc-content h2 {
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: -1.6px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
}

.amc-content p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin-bottom: 31px;
}

.amc-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #39c77c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(57, 199, 124, .22);
  transition: .25s ease;
}

.amc-btn:hover {
  transform: translateY(-3px);
  background: #42d486;
}

.amc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.amc-card {
  min-height: 164px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 24px 22px;
  transition: .25s ease;
}

.amc-card:hover {
  border-color: #39c77c;
  box-shadow: 0 0 0 2px rgba(57,199,124,.16);
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.amc-card svg {
  width: 23px;
  height: 23px;
  color: #39c77c;
  margin-bottom: 19px;
}

.amc-card h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.amc-card p {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.55;
}


/* Responsive */
@media (max-width: 980px) {
  .events-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .amc-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px 34px;
  }
}

@media (max-width: 650px) {
  .events-section {
    padding: 70px 0 70px;
  }

  .events-title h2,
  .amc-content h2 {
    font-size: 30px;
  }

  .event-box {
    padding: 24px 22px;
  }

  .amc-section {
    padding-bottom: 80px;
  }

  .amc-panel {
    border-radius: 24px;
    padding: 38px 22px;
  }

  .amc-cards {
    grid-template-columns: 1fr;
  }
}



/* ==============================
   SECTION 6: Voices / Testimonials
================================= */

.voices-section {
  padding: 0 0 100px;
}

.voices-head {
  text-align: center;
  margin-bottom: 50px;
}

.voices-badge {
  height: 29px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef9f4;
  color: #15945f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.voices-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #15945f;
  border-radius: 50%;
  display: block;
}

.voices-head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #0e2133;
  font-weight: 800;
}

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

.voice-card {
  min-height: 250px;
  background: rgba(255,255,255,.80);
  border: 1px solid #e1ebf2;
  border-radius: 21px;
  padding: 34px 32px 28px;
  box-shadow: 0 12px 32px rgba(20, 80, 120, .045);
  transition: .25s ease;
}

.voice-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20, 80, 120, .09);
  transform: translateY(-5px);
}

.quote-icon {
  color: #a9daf6;
  font-size: 48px;
  line-height: .7;
  font-weight: 800;
  margin-bottom: 22px;
  font-family: Georgia, serif;
}

.voice-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #0e2133;
  font-weight: 600;
  margin-bottom: 28px;
}

.voice-divider {
  height: 1px;
  background: #edf2f6;
  margin-bottom: 22px;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 auto;
}

.voice-avatar.light-blue {
  background: #42aee8;
}

.voice-avatar.dark-blue {
  background: #0e639d;
}

.voice-avatar.blue {
  background: #1684cb;
}

.voice-info h4 {
  font-size: 14px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 3px;
}

.voice-info span {
  font-size: 13px;
  color: #536276;
  font-weight: 500;
}


/* ==============================
   SECTION 7: News & Announcements
================================= */

.news-section {
  padding: 0 0 115px;
}

.news-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 82px;
  align-items: start;
}

.news-left {
  max-width: 410px;
}

.news-badge {
  height: 29px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef8ff;
  color: #137fc1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.news-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #137fc1;
  border-radius: 50%;
  display: block;
}

.news-left h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 18px;
}

.news-left p {
  font-size: 16px;
  line-height: 1.65;
  color: #425268;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  background: rgba(255,255,255,.80);
  border: 1px solid #e1ebf2;
  border-radius: 18px;
  padding: 23px 28px;
  box-shadow: 0 12px 32px rgba(20, 80, 120, .04);
  transition: .25s ease;
}

.news-item:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20, 80, 120, .09);
  transform: translateY(-4px);
}

.news-item:hover h3 {
  color: #137fc1;
}

.news-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eef8ff;
  display: grid;
  place-items: center;
  color: #137fc1;
}

.news-icon svg {
  width: 24px;
  height: 24px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.news-tag {
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eef9f4;
  color: #15945f;
  font-size: 11px;
  font-weight: 800;
}

.news-date {
  font-size: 13px;
  color: #536276;
  font-weight: 600;
}

.news-content h3 {
  font-size: 16px;
  line-height: 1.3;
  color: #0e2133;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  transition: .25s ease;
}

.news-content p {
  font-size: 14px;
  line-height: 1.55;
  color: #455468;
}


/* Responsive */
@media (max-width: 980px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-left {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .voices-section {
    padding-bottom: 75px;
  }

  .voices-head h2,
  .news-left h2 {
    font-size: 30px;
  }

  .voice-card {
    min-height: auto;
    padding: 30px 24px 26px;
  }

  .news-section {
    padding-bottom: 85px;
  }

  .news-item {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
}




/* ==============================
   SECTION 8: Membership
================================= */

.membership-section {
  padding: 0 0 110px;
}

.membership-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.membership-badge {
  height: 29px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef8ff;
  color: #137fc1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.membership-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #137fc1;
  border-radius: 50%;
  display: block;
}

.membership-head h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 14px;
}

.membership-head p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #425268;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  min-height: 320px;
  background: rgba(255,255,255,.82);
  border: 1px solid #e1ebf2;
  border-radius: 20px;
  padding: 30px 28px 26px;
  box-shadow: 0 12px 32px rgba(20, 80, 120, .045);
  transition: .25s ease;
}

.pricing-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20, 80, 120, .09);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: #f4fbff;
  border-color: #55b6ee;
  box-shadow: 0 16px 45px rgba(20, 132, 203, .10);
}

.popular-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1684cb;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 16px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  min-height: 40px;
  font-size: 12px;
  line-height: 1.45;
  color: #455468;
  margin-bottom: 21px;
}

.price {
  color: #0e2133;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.price span {
  font-size: 13px;
  color: #536276;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #314155;
  font-size: 12.5px;
  font-weight: 500;
}

.plan-list li::before {
  content: "✓";
  color: #15945f;
  font-weight: 800;
  font-size: 13px;
}

.plan-btn {
  width: 100%;
  height: 41px;
  border-radius: 9px;
  border: 1px solid #d9e7f0;
  background: #fff;
  color: #0e2133;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: .25s ease;
}

.plan-btn:hover {
  border-color: #9dd7f7;
  background: #eef8ff;
  color: #137fc1;
}

.plan-btn.primary {
  background: #1684cb;
  color: #fff;
  border-color: #1684cb;
}

.plan-btn.primary:hover {
  background: #0f75b7;
  color: #fff;
  transform: translateY(-2px);
}


/* ==============================
   SECTION 9: Member Portal CTA
================================= */

.portal-section {
  padding: 0 0 80px;
}

.portal-box {
  max-width: 940px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 50px 28px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 82%, rgba(46, 194, 123, .34), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(29, 139, 215, .30), transparent 28%),
    linear-gradient(135deg, #1684cb 0%, #0d739f 46%, #15945f 100%);
  position: relative;
}

.portal-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .45;
  pointer-events: none;
}

.portal-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.portal-content h2 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -1.3px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.portal-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.90);
  margin-bottom: 29px;
}

.portal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.portal-btn {
  height: 43px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .25s ease;
}

.portal-btn.white {
  background: #fff;
  color: #0e75b7;
}

.portal-btn.white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

.portal-btn.outline {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.portal-btn.outline:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-3px);
}


/* ==============================
   FOOTER
================================= */

.site-footer {
  background:
    radial-gradient(circle at 35% 0%, rgba(22,132,203,.22), transparent 30%),
    linear-gradient(135deg, #0b2a42 0%, #0d314f 100%);
  color: rgba(255,255,255,.68);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .7fr;
  gap: 78px;
  padding-bottom: 55px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.footer-logo img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.footer-about p {
  max-width: 390px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.75);
  display: grid;
  place-items: center;
  transition: .25s ease;
}

.footer-social a:hover {
  background: #1684cb;
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #39c77c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 13px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  transition: .25s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.footer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom svg {
  width: 15px;
  height: 15px;
  color: #39c77c;
}


/* Responsive */
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 650px) {
  .membership-section {
    padding-bottom: 80px;
  }

  .membership-head h2,
  .portal-content h2 {
    font-size: 29px;
  }

  .portal-box {
    border-radius: 24px;
    padding: 42px 22px;
  }

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

  .portal-btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* ==============================
   ABOUT PAGE
================================= */

.about-page {
  padding: 88px 0 110px;
}

.about-hero {
  position: relative;
  padding: 72px 0 72px;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.about-kicker {
  height: 31px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef8ff;
  color: #137fc1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #137fc1;
  border-radius: 50%;
  display: block;
}

.about-hero h1 {
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -3px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 25px;
  max-width: 720px;
}

.about-hero h1 span {
  color: #137fc1;
}

.about-hero-lead {
  font-size: 18px;
  line-height: 1.72;
  color: #425268;
  max-width: 670px;
}

.about-visual-card {
  position: relative;
  min-height: 425px;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(22,132,203,.16), transparent 30%),
    radial-gradient(circle at 85% 78%, rgba(21,148,95,.16), transparent 28%),
    rgba(255,255,255,.78);
  border: 1px solid #e1ebf2;
  box-shadow: 0 22px 60px rgba(20, 80, 120, .09);
  overflow: hidden;
}

.about-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,132,203,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,132,203,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.about-year-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e1ebf2;
  border-radius: 24px;
  padding: 30px;
  max-width: 270px;
  box-shadow: 0 16px 40px rgba(20, 80, 120, .08);
}

.about-year-box strong {
  display: block;
  font-size: 56px;
  line-height: 1;
  color: #137fc1;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.about-year-box span {
  font-size: 14px;
  line-height: 1.5;
  color: #425268;
  font-weight: 600;
}

.about-floating-note {
  position: absolute;
  right: 30px;
  bottom: 34px;
  z-index: 1;
  max-width: 285px;
  background: #0e2133;
  color: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(14,33,51,.16);
}

.about-floating-note p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.about-mini-stat {
  background: rgba(255,255,255,.80);
  border: 1px solid #e1ebf2;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 32px rgba(20, 80, 120, .04);
}

.about-mini-stat h3 {
  color: #137fc1;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.about-mini-stat p {
  color: #425268;
  font-size: 13px;
  font-weight: 600;
}

/* Story intro */
.about-story-section {
  padding: 40px 0 95px;
}

.about-section-head {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.about-section-head h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -1.8px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: #425268;
}

.about-story-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.about-story-aside {
  position: sticky;
  top: 110px;
  background:
    radial-gradient(circle at 15% 12%, rgba(57,199,124,.14), transparent 32%),
    linear-gradient(135deg, #0c2c45, #0d314f);
  border-radius: 28px;
  padding: 35px 32px;
  color: #fff;
  overflow: hidden;
}

.about-story-aside h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.about-story-aside p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.65;
}

.about-story-content {
  display: grid;
  gap: 22px;
}

.about-text-card {
  background: rgba(255,255,255,.82);
  border: 1px solid #e1ebf2;
  border-radius: 22px;
  padding: 30px 32px;
  box-shadow: 0 12px 34px rgba(20,80,120,.045);
  transition: .25s ease;
}

.about-text-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20,80,120,.08);
  transform: translateY(-4px);
}

.about-text-card p {
  color: #344457;
  font-size: 15.5px;
  line-height: 1.75;
}

/* Timeline */
.about-timeline-section {
  padding: 0 0 105px;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 122px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: #dcebf5;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 34px;
  align-items: start;
}

.timeline-year {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 48px;
  border-radius: 999px;
  background: #eef8ff;
  border: 1px solid #ccecff;
  color: #137fc1;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  margin-left: 66px;
}

.timeline-card {
  background: rgba(255,255,255,.82);
  border: 1px solid #e1ebf2;
  border-radius: 20px;
  padding: 25px 28px;
  box-shadow: 0 12px 32px rgba(20,80,120,.04);
  transition: .25s ease;
}

.timeline-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20,80,120,.08);
  transform: translateY(-4px);
}

.timeline-card h3 {
  font-size: 19px;
  color: #0e2133;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}

.timeline-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #425268;
}

/* People and future */
.about-people-section {
  padding: 0 0 105px;
}

.about-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.people-card {
  background: rgba(255,255,255,.82);
  border: 1px solid #e1ebf2;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(20,80,120,.04);
  transition: .25s ease;
}

.people-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20,80,120,.08);
  transform: translateY(-4px);
}

.people-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef9f4;
  color: #15945f;
  margin-bottom: 18px;
}

.people-card h3 {
  font-size: 18px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 12px;
}

.people-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #425268;
}

.about-future-box {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 58px 52px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 78%, rgba(57,199,124,.28), transparent 35%),
    radial-gradient(circle at 12% 15%, rgba(24,132,203,.35), transparent 28%),
    linear-gradient(135deg, #0c2c45 0%, #0d314f 100%);
  position: relative;
  overflow: hidden;
}

.about-future-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.20) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .45;
}

.about-future-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.about-future-content h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-future-content p {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.future-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.future-list span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 15px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-aside {
    position: relative;
    top: auto;
  }

  .about-hero h1 {
    font-size: 48px;
  }

  .about-people-grid,
  .future-list {
    grid-template-columns: 1fr;
  }

  .about-timeline::before {
    left: 24px;
  }

  .timeline-item {
    grid-template-columns: 54px 1fr;
    gap: 20px;
  }

  .timeline-year {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-left: 0;
    font-size: 12px;
  }
}

@media (max-width: 650px) {
  .about-page {
    padding-top: 60px;
  }

  .about-hero {
    padding: 50px 0;
  }

  .about-hero h1 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .about-hero-lead {
    font-size: 16px;
  }

  .about-visual-card {
    min-height: 410px;
    padding: 24px;
  }

  .about-floating-note {
    right: 22px;
    left: 22px;
    bottom: 24px;
    max-width: none;
  }

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

  .about-section-head h2,
  .about-future-content h2 {
    font-size: 30px;
  }

  .about-text-card,
  .timeline-card,
  .people-card {
    padding: 24px;
  }

  .about-future-box {
    padding: 42px 24px;
    border-radius: 24px;
  }
}

/* ==============================
   ABOUT EXTRA: Mission Vision
================================= */

.about-mission-vision {
  padding: 0 0 82px;
}

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

.mv-card {
  min-height: 250px;
  background: rgba(255,255,255,.82);
  border: 1px solid #e1ebf2;
  border-radius: 22px;
  padding: 32px 34px;
  box-shadow: 0 12px 34px rgba(20,80,120,.045);
  transition: .25s ease;
}

.mv-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20,80,120,.08);
  transform: translateY(-4px);
}

.mv-card.mission {
  background: linear-gradient(180deg, rgba(238,248,255,.82), rgba(255,255,255,.82));
}

.mv-card.vision {
  background: linear-gradient(180deg, rgba(238,249,244,.82), rgba(255,255,255,.82));
}

.mv-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 22px;
}

.mv-card.mission .mv-icon {
  background: #1684cb;
}

.mv-card.vision .mv-icon {
  background: #15945f;
}

.mv-card h3 {
  font-size: 20px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 18px;
}

.mv-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.mv-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #425268;
}

.mv-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.mv-card.mission li::before {
  background: #1684cb;
}

.mv-card.vision li::before {
  background: #15945f;
}


/* ==============================
   ABOUT EXTRA: Leadership
================================= */

.about-leadership-section {
  padding: 0 0 105px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 940px;
  margin: 0 auto 58px;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid #e1ebf2;
  border-radius: 15px;
  padding: 17px 18px;
  box-shadow: 0 12px 32px rgba(20,80,120,.04);
  transition: .25s ease;
}

.leader-card:hover {
  border-color: #9dd7f7;
  box-shadow: 0 18px 45px rgba(20,80,120,.08);
  transform: translateY(-4px);
}

.leader-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 auto;
}

.leader-blue { background: #1684cb; }
.leader-green { background: #15945f; }
.leader-red { background: #dc3f3f; }
.leader-dark { background: #0e639d; }
.leader-light { background: #42aee8; }
.leader-mint { background: #39c77c; }

.leader-info h4 {
  font-size: 13px;
  line-height: 1.25;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 2px;
}

.leader-info span {
  font-size: 11px;
  line-height: 1.25;
  color: #137fc1;
  font-weight: 700;
}

.past-presidents-box {
  max-width: 940px;
  margin: 0 auto 34px;
  background: rgba(238,248,255,.68);
  border: 1px solid #dcebf5;
  border-radius: 22px;
  padding: 30px;
}

.past-presidents-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0e2133;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}

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

.past-card {
  background: #fff;
  border: 1px solid #e1ebf2;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(20,80,120,.04);
  transition: .25s ease;
}

.past-card:hover {
  border-color: #9dd7f7;
  transform: translateY(-4px);
}

.past-card h4 {
  color: #0e2133;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.past-card p {
  color: #536276;
  font-size: 12px;
  margin-bottom: 9px;
}

.past-card span {
  display: inline-flex;
  height: 22px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef9f4;
  color: #15945f;
  font-size: 10px;
  font-weight: 800;
}

.governance-box {
  max-width: 940px;
  margin: 0 auto;
  background: #eef8ff;
  border: 1px solid #dcebf5;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.governance-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.governance-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1684cb;
  background: rgba(255,255,255,.72);
}

.governance-box h3 {
  color: #0e2133;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.governance-box p {
  color: #425268;
  font-size: 13px;
}

.governance-btn {
  height: 43px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1684cb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  transition: .25s ease;
  white-space: nowrap;
}

.governance-btn:hover {
  background: #0f75b7;
  transform: translateY(-3px);
}


/* Responsive */
@media (max-width: 980px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

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

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

  .governance-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .mv-card {
    padding: 28px 24px;
  }

  .leadership-grid,
  .past-grid {
    grid-template-columns: 1fr;
  }

  .governance-left {
    align-items: flex-start;
  }

  .governance-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==============================
   JOIN BMS SECTION
================================= */

.join-bms-section {
  padding: 90px 0 120px;
  min-height: 760px;
  position: relative;
}

.join-bms-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.join-bms-head {
  max-width: 650px;
  margin-bottom: 58px;
}

.join-badge {
  height: 29px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #eef8ff;
  color: #137fc1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.join-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #137fc1;
  border-radius: 50%;
  display: block;
}

.join-bms-head h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -2.4px;
  color: #0e2133;
  font-weight: 800;
  margin-bottom: 20px;
}

.join-bms-head h1 span {
  background: linear-gradient(90deg, #1684cb, #15945f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.join-bms-head p {
  font-size: 17px;
  line-height: 1.65;
  color: #2f4054;
  font-weight: 500;
}

.join-bms-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 40px;
  align-items: start;
}

.join-step-title {
  color: #6b7c90;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.membership-options {
  display: grid;
  gap: 14px;
}

.membership-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.membership-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.membership-card {
  background: rgba(255,255,255,.82);
  border: 1px solid #dce8f1;
  border-radius: 15px;
  padding: 23px 24px;
  box-shadow: 0 10px 28px rgba(20,80,120,.035);
  transition: .25s ease;
}

.membership-option:hover .membership-card {
  border-color: #9dd7f7;
  box-shadow: 0 16px 40px rgba(20,80,120,.08);
  transform: translateY(-3px);
}

.membership-option input:checked + .membership-card {
  background: #eef8ff;
  border-color: #1684cb;
  box-shadow: 0 16px 42px rgba(22,132,203,.12);
}

.membership-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
}

.membership-card h3 {
  color: #0e2133;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.membership-price {
  color: #137fc1;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.membership-price span {
  color: #536276;
  font-size: 11px;
  font-weight: 500;
}

.membership-card p {
  color: #425268;
  font-size: 13px;
  line-height: 1.5;
}

.membership-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.membership-benefits li {
  color: #26384d;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}

.membership-benefits li::before {
  content: "✓";
  color: #15945f;
  font-weight: 800;
  font-size: 13px;
}

/* Payment box */
.payment-box {
  margin-top: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid #dce8f1;
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 32px rgba(20,80,120,.04);
}

.payment-box-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.payment-box-head span {
  display: block;
  color: #137fc1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 5px;
}

.payment-box-head h3 {
  color: #0e2133;
  font-size: 17px;
  font-weight: 800;
}

.payment-amount {
  text-align: right;
  color: #137fc1;
  white-space: nowrap;
}

.payment-amount strong {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
}

.payment-amount span {
  font-size: 12px;
  color: #536276;
  font-weight: 600;
}

.payment-details {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.payment-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f6;
}

.payment-details div:last-child {
  border-bottom: 0;
}

.payment-details span {
  color: #6b7c90;
  font-size: 12px;
  font-weight: 700;
}

.payment-details strong {
  color: #0e2133;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.payment-box p {
  color: #425268;
  font-size: 12.5px;
  line-height: 1.55;
  background: #eef9f4;
  border-radius: 12px;
  padding: 12px 14px;
}

.join-privacy {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  background: rgba(238,249,244,.62);
  border-radius: 15px;
  padding: 18px 20px;
  color: #425268;
  font-size: 13px;
  line-height: 1.55;
}

.join-privacy svg {
  width: 22px;
  height: 22px;
  color: #15945f;
  margin-top: 2px;
}

.join-form-box {
  background: rgba(255,255,255,.86);
  border: 1px solid #dce8f1;
  border-radius: 20px;
  padding: 38px 38px 34px;
  box-shadow: 0 16px 45px rgba(20,80,120,.07);
}

.join-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.join-form-group {
  display: grid;
  gap: 9px;
}

.join-form-group.full {
  grid-column: 1 / -1;
}

.join-form-group label {
  color: #0e2133;
  font-size: 13px;
  font-weight: 800;
}

.join-form-group label span {
  color: #536276;
  font-weight: 500;
}

.join-form-group input,
.join-form-group select,
.join-form-group textarea {
  width: 100%;
  height: 48px;
  border: 1px solid #dce8f1;
  border-radius: 10px;
  background: #f8fbfd;
  color: #0e2133;
  padding: 0 15px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: .25s ease;
}

.join-form-group textarea {
  height: 96px;
  resize: vertical;
  padding-top: 14px;
  line-height: 1.5;
}

.join-form-group input::placeholder,
.join-form-group textarea::placeholder {
  color: #8a9aad;
}

.join-form-group input:focus,
.join-form-group select:focus,
.join-form-group textarea:focus {
  border-color: #1684cb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22,132,203,.10);
}

.join-submit-btn {
  margin-top: 24px;
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 10px;
  background: #2488cb;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: .25s ease;
  box-shadow: 0 14px 32px rgba(22,132,203,.18);
}

.join-submit-btn:hover {
  background: #1176b9;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(22,132,203,.25);
}

.join-demo-note {
  text-align: center;
  color: #7b8ba0;
  font-size: 12px;
  margin-top: 14px;
}

/* Popup */
.join-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(14,33,51,.34);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.join-popup-overlay.show {
  display: flex;
}

.join-popup {
  position: relative;
  width: min(650px, 100%);
  min-height: 430px;
  background: rgba(255,255,255,.96);
  border: 1px solid #dce8f1;
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(14,33,51,.18);
  padding: 70px 50px 58px;
  text-align: center;
  animation: joinPopupIn .28s ease;
}

@keyframes joinPopupIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.join-popup-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef8ff;
  color: #0e2133;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}

.join-popup-close:hover {
  background: #1684cb;
  color: #fff;
}

.join-popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: #1684cb;
}

.join-popup-icon svg {
  width: 72px;
  height: 72px;
}

.join-popup h2 {
  color: #0e2133;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.join-popup p {
  max-width: 430px;
  margin: 0 auto 34px;
  color: #425268;
  font-size: 16px;
  line-height: 1.65;
}

.join-popup-btn {
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  background: #2488cb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 800;
  transition: .25s ease;
  box-shadow: 0 14px 32px rgba(22,132,203,.22);
}

.join-popup-btn:hover {
  background: #1176b9;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 980px) {
  .join-bms-section {
    padding: 70px 0 90px;
  }

  .join-bms-grid {
    grid-template-columns: 1fr;
  }

  .join-bms-head {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .join-bms-section {
    padding: 55px 0 75px;
  }

  .join-bms-head h1 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .join-bms-head p {
    font-size: 16px;
  }

  .join-form-box {
    padding: 28px 22px;
  }

  .join-form-grid {
    grid-template-columns: 1fr;
  }

  .membership-card-top {
    flex-direction: column;
    gap: 8px;
  }

  .payment-box-head {
    flex-direction: column;
  }

  .payment-amount {
    text-align: left;
  }

  .payment-details div {
    flex-direction: column;
    gap: 4px;
  }

  .payment-details strong {
    text-align: left;
  }

  .join-popup {
    min-height: auto;
    padding: 58px 24px 42px;
  }

  .join-popup h2 {
    font-size: 25px;
  }

  .join-popup p {
    font-size: 15px;
  }

  .join-popup-btn {
    width: 100%;
    justify-content: center;
  }
}



.field-error {
  border-color: #dc3f3f !important;
  background: #fff8f8 !important;
  box-shadow: 0 0 0 4px rgba(220,63,63,.08) !important;
}


