@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
  --blue: #2563eb;
  --blue-dark: #1745b8;
  --black: #080b12;
  --text: #111827;
  --muted: #687386;
  --light: #f7f9fc;
  --border: #e6eaf0;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -5;

  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);

  background-size: 60px 60px;
  pointer-events: none;
}

.glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
  z-index: -3;
}

.glow-one {
  top: -250px;
  right: -150px;
  background: #2563eb;
}

.glow-two {
  bottom: -300px;
  left: -200px;
  background: #60a5fa;
}


/* =========================
   PREMIUM HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  height: 78px;
  padding: 0 5.5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(17, 24, 39, 0.07);

  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.035);

  transition:
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.logo-container img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-container:hover img {
  transform: scale(1.05);
}

.logo-divider {
  width: 1px;
  height: 34px;
  background: #dfe4eb;
}

.ecell-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.ecell-brand strong {
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.8px;
  white-space: nowrap;
}

.ecell-brand span {
  margin-top: 5px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.8px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 35px;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;

  color: #596273;
  font-size: 13px;
  font-weight: 500;

  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 0;
  height: 2px;

  border-radius: 20px;
  background: var(--blue);

  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--blue);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn-nav-cta {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 42px;
  padding: 0 17px;

  color: #ffffff;
  background: #0b0f17;

  border: 1px solid #0b0f17;
  border-radius: 9px;

  font-size: 11px;
  font-weight: 600;

  overflow: hidden;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(120deg,
      transparent 25%,
      rgba(255, 255, 255, 0.12),
      transparent 75%);

  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-nav-cta:hover::before {
  transform: translateX(120%);
}

.btn-nav-cta span {
  position: relative;
  z-index: 2;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}

.btn-nav-cta:hover span {
  transform: translate(2px, -2px);
}

.menu-btn {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;

  padding: 0;

  color: #111827;
  background: #f5f7fa;

  border: 1px solid #e3e7ee;
  border-radius: 9px;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.menu-btn:hover {
  color: var(--blue);
  background: #eef4ff;
  border-color: #d6e3ff;
  transform: translateY(-1px);
}

.menu-btn span {
  font-size: 24px;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: calc(100vh - 82px);

  padding: 80px 8%;

  display: grid;
  grid-template-columns: 1fr 0.9fr;

  align-items: center;
  gap: 50px;

  position: relative;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 13px;

  background: #f1f5ff;
  border: 1px solid #dce6ff;

  border-radius: 50px;

  color: #3156a7;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--blue);

  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.hero h1 {
  margin-top: 28px;

  font-size: clamp(5rem, 10vw, 9.5rem);

  font-weight: 800;

  line-height: 0.78;

  letter-spacing: -7px;

  color: var(--black);
}

.hero h1 span {
  display: block;

  margin-top: 12px;

  color: transparent;

  background: linear-gradient(110deg,
      #111827,
      #2563eb,
      #60a5fa);

  -webkit-background-clip: text;
  background-clip: text;
}

.hero-line {
  width: 70px;
  height: 4px;

  margin-top: 36px;

  background: var(--blue);

  border-radius: 20px;
}

.hero h2 {
  margin-top: 22px;

  font-size: clamp(1.7rem, 3vw, 2.8rem);

  line-height: 1.1;

  font-weight: 400;

  color: #252b35;
}

.hero h2 strong {
  font-weight: 700;
}

.hero-description {
  max-width: 530px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 48px;

  padding: 0 20px;

  border-radius: 8px;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  color: #333b48;
  border: 1px solid #dfe4ec;
}

.btn-secondary:hover {
  background: #f7f9fc;
  transform: translateY(-3px);
}

.hero-meta {
  display: flex;
  gap: 35px;

  margin-top: 50px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-size: 19px;
  color: var(--black);
}

.hero-meta span {
  margin-top: 3px;

  color: #8992a2;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.visual-orbit {
  position: absolute;

  border: 1px solid rgba(37, 99, 235, 0.13);

  border-radius: 50%;

  transform: rotate(-25deg);
}

.orbit-one {
  width: 460px;
  height: 460px;
}

.orbit-two {
  width: 360px;
  height: 360px;

  border-color: rgba(37, 99, 235, 0.2);
}

.orbit-three {
  width: 260px;
  height: 260px;

  border-color: rgba(37, 99, 235, 0.3);
}

.visual-center {
  width: 210px;
  height: 210px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  border-radius: 50%;

  background:
    radial-gradient(circle at 40% 30%,
      #fff,
      #edf3ff);

  border: 1px solid #d9e4ff;

  box-shadow:
    0 25px 70px rgba(37, 99, 235, 0.16),
    inset 0 0 40px rgba(255, 255, 255, 0.9);

  z-index: 5;
}

.center-ring {
  position: absolute;
  inset: -13px;

  border: 1px dashed rgba(37, 99, 235, 0.35);

  border-radius: 50%;

  animation: spin 18s linear infinite;
}

.center-icon {
  color: var(--blue);
  font-size: 48px;
}

.center-label {
  margin-top: 8px;

  display: flex;
  flex-direction: column;

  text-align: center;
}

.center-label span {
  font-size: 9px;
  letter-spacing: 3px;
  color: #7b8494;
}

.center-label strong {
  margin-top: 3px;

  font-size: 13px;
  letter-spacing: 1.5px;
}


/* FLOATING CARDS */

.floating-card {
  position: absolute;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 12px 16px;

  min-width: 160px;

  background: rgba(255, 255, 255, 0.88);

  border: 1px solid #e3e9f3;

  border-radius: 12px;

  box-shadow: 0 15px 35px rgba(21, 36, 64, 0.08);

  backdrop-filter: blur(15px);

  animation: float 5s ease-in-out infinite;
}

.floating-card>span {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--blue);

  background: #edf3ff;

  border-radius: 9px;

  font-size: 19px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  margin-top: 3px;

  color: #8a93a2;

  font-size: 9px;
}

.card-one {
  top: 14%;
  left: 4%;
}

.card-two {
  right: 2%;
  top: 37%;

  animation-delay: -1.5s;
}

.card-three {
  left: 9%;
  bottom: 15%;

  animation-delay: -3s;
}


/* =========================
   MARQUEE
========================= */

.marquee-section {
  overflow: hidden;

  padding: 22px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: #fbfcfe;
}

.marquee {
  width: max-content;

  display: flex;
  align-items: center;
  gap: 35px;

  animation: marquee 25s linear infinite;
}

.marquee span {
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #596273;
}

.marquee i {
  color: var(--blue);
  font-style: normal;
}


/* =========================
   SECTIONS
========================= */

.section {
  padding: 130px 9%;
}

.section-tag {
  color: var(--blue);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;
}

.section-heading {
  margin-top: 35px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 60px;
}

.section-heading h2,
.events-header h2,
.team-heading h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 0.95;

  letter-spacing: -3px;
}

.section-heading h2 span,
.events-header h2 span,
.team-heading h2 span,
.join-content h2 span {
  color: var(--blue);
}

.section-heading p {
  max-width: 420px;

  color: var(--muted);

  line-height: 1.7;

  font-size: 14px;
}


/* =========================
   ABOUT
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 16px;

  margin-top: 60px;
}

.about-card {
  min-height: 250px;

  padding: 30px;

  background: #f8fafc;

  border: 1px solid var(--border);

  border-radius: 18px;

  transition: 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);

  background: #fff;
  color: #000;
  box-shadow: 0 20px 50px rgba(19, 37, 70, 0.08);
}

.about-card>span {
  display: flex;

  width: 45px;
  height: 45px;

  align-items: center;
  justify-content: center;

  color: var(--blue);

  background: #eaf1ff;

  border-radius: 10px;
}

.about-card h3 {
  margin-top: 35px;

  font-size: 24px;
  line-height: 1.1;
}


.about-card p {
  margin-top: 15px;

  color: var(--muted);
  font-size: 13px;

  line-height: 1.6;
}

.large-card {
  background: var(--black);

  color: white;
}

.large-card p {
  color: #aeb7c6;
}

.large-card>span {
  background: rgba(255, 255, 255, 0.08);
}


/* =========================
   INITIATIVES
========================= */

.initiatives-section {
  background: #f8fafc;
}

.initiative-list {
  margin-top: 60px;

  border-top: 1px solid #dce2ea;
}

.initiative-item {
  display: grid;

  grid-template-columns: 70px 70px 1fr 30px;

  align-items: center;

  gap: 25px;

  min-height: 120px;

  border-bottom: 1px solid #dce2ea;

  transition: 0.3s ease;
}

.initiative-item:hover {
  padding-left: 15px;
}

.initiative-number {
  color: #9ba5b5;

  font-size: 12px;
  font-weight: 600;
}

.initiative-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: white;

  border: 1px solid #e0e6ef;

  border-radius: 10px;

  color: var(--blue);
}

.initiative-content h3 {
  font-size: 22px;
}

.initiative-content p {
  margin-top: 5px;

  color: var(--muted);

  font-size: 13px;
}

.initiative-arrow {
  color: #8d96a5;

  transition: 0.3s ease;
}

.initiative-item:hover .initiative-arrow {
  color: var(--blue);

  transform: translate(3px, -3px);
}


/* =========================
   EVENTS
========================= */

.events-header {
  margin-top: 40px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.events-header p {
  max-width: 380px;

  color: var(--muted);

  line-height: 1.7;
}

.event-placeholder {
  min-height: 300px;

  margin-top: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  border: 1px dashed #cdd5e2;

  border-radius: 20px;

  background:
    radial-gradient(circle,
      rgba(37, 99, 235, 0.05),
      transparent 65%);
}

.event-placeholder span {
  font-size: 45px;

  color: var(--blue);
}

.event-placeholder h3 {
  margin-top: 15px;

  font-size: 24px;
}

.event-placeholder p {
  margin-top: 8px;

  color: var(--muted);

  font-size: 13px;
}


/* =========================
   TEAM
========================= */

.team-section {
  background: #f8fafc;
}

.team-heading {
  margin-top: 40px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.team-heading p {
  max-width: 380px;

  color: var(--muted);

  line-height: 1.7;
}

.team-visual {
  height: 360px;

  margin-top: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background:
    linear-gradient(135deg,
      #f1f5fb,
      #ffffff);

  border: 1px solid var(--border);
}

.team-center {
  width: 170px;
  height: 170px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  border-radius: 50%;

  background: var(--black);

  color: white;

  box-shadow:
    0 0 0 25px rgba(37, 99, 235, 0.04),
    0 0 0 55px rgba(37, 99, 235, 0.025);
}

.team-center span {
  font-size: 35px;

  color: #72a0ff;
}

.team-center strong {
  margin-top: 7px;

  font-size: 15px;

  letter-spacing: 2px;
}

.team-center small {
  color: #929baa;

  letter-spacing: 3px;
}


/* =========================
   JOIN
========================= */

.join-section {
  min-height: 600px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 9%;

  overflow: hidden;

  background: var(--black);

  color: white;

  text-align: center;
}

.join-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: var(--blue);

  filter: blur(150px);

  opacity: 0.18;
}

.join-content {
  position: relative;
  z-index: 2;
}

.join-content .section-tag {
  color: #77a0ff;
}

.join-content h2 {
  margin-top: 25px;

  font-size: clamp(3.2rem, 7vw, 7rem);

  line-height: 0.95;

  letter-spacing: -4px;
}

.join-content p {
  margin-top: 25px;

  color: #aab3c2;

  font-size: 15px;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 35px;

  padding: 15px 22px;

  color: white;

  background: var(--blue);

  border-radius: 8px;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-join:hover {
  transform: translateY(-4px);

  background: #3975f0;

  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 60px 8% 25px;

  background: #06080d;

  color: white;
}

.footer-top {
  display: flex;

  justify-content: space-between;

  gap: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;

  gap: 14px;
}

.footer-logo img {
  width: 50px;
  height: 50px;

  object-fit: contain;
}

.footer-logo div {
  display: flex;
  flex-direction: column;
}

.footer-logo strong {
  letter-spacing: 2px;
}

.footer-logo span {
  margin-top: 3px;

  color: #6392ff;

  font-size: 10px;
  letter-spacing: 3px;
}

.footer-brand p {
  margin-top: 20px;

  color: #7e8796;

  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links div {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-links span {
  margin-bottom: 8px;

  color: #657080;

  font-size: 10px;

  letter-spacing: 2px;
}

.footer-links a {
  color: #b0b7c2;

  font-size: 12px;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 60px;

  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid #1c222d;

  color: #616a78;

  font-size: 10px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  display: none;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin {
  to {
    transform: rotate(335deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .nav {
    gap: 22px;
  }

  .hero {
    padding: 70px 6%;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-column: span 2;
  }

}


@media (max-width: 750px) {

  .header {
    height: 70px;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.94);
  }

  .logo-container img {
    width: 42px;
    height: 42px;
  }

  .logo-divider {
    display: block;

    width: 1px;
    height: 32px;

    background: #d8dde5;
  }

  .ecell-brand {
    display: flex;

    flex-direction: column;
    justify-content: center;

    line-height: 1;
  }

  .ecell-brand strong {
    display: block;

    color: #111827;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.6px;

    white-space: nowrap;
  }

  .ecell-brand span {
    display: block;

    margin-top: 4px;

    color: var(--blue);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.4px;

    white-space: nowrap;
  }

  .nav,
  .nav-actions {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;

    z-index: 999;

    padding: 22px 5% 28px;

    display: none;
    flex-direction: column;
    gap: 6px;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-bottom: 1px solid #e5e9ef;

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;

    min-height: 48px;
    padding: 0 14px;

    color: #4b5563;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;

    transition:
      color 0.25s ease,
      background 0.25s ease;
  }

  .mobile-menu a:hover {
    color: var(--blue);
    background: #f1f5ff;
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 10px;
    padding: 13px;

    color: #ffffff !important;
    background: var(--blue) !important;

    border-radius: 9px !important;
    font-weight: 600 !important;
  }

  .hero {
    min-height: auto;

    padding: 70px 6% 30px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 7rem);

    letter-spacing: -4px;
  }

  .hero h2 {
    font-size: 1.7rem;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    margin-top: 35px;
  }

  .hero-visual {
    min-height: 400px;

    transform: scale(0.8);
    margin-top: -30px;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
  }

  .orbit-three {
    width: 220px;
    height: 220px;
  }

  .floating-card {
    transform: scale(0.85);
  }

  .card-one {
    left: -3%;
  }

  .card-two {
    right: -3%;
  }

  .card-three {
    left: 0;
  }

  .section {
    padding: 90px 6%;
  }

  .section-heading,
  .events-header,
  .team-heading {
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;
  }

  .section-heading h2,
  .events-header h2,
  .team-heading h2 {
    font-size: 3.5rem;

    letter-spacing: -2px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-column: auto;
  }

  .initiative-item {
    grid-template-columns: 35px 50px 1fr;

    gap: 12px;

    padding: 20px 0;
  }

  .initiative-arrow {
    display: none;
  }

  .initiative-content h3 {
    font-size: 18px;
  }

  .initiative-content p {
    font-size: 11px;
  }

  .join-content h2 {
    font-size: 3.5rem;

    letter-spacing: -2px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }

}


@media (max-width: 450px) {

  .hero {
    padding-top: 55px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-visual {
    transform: scale(0.68);

    margin-top: -60px;
    margin-bottom: -50px;
  }

  .section-heading h2,
  .events-header h2,
  .team-heading h2 {
    font-size: 2.9rem;
  }

  .join-content h2 {
    font-size: 2.9rem;
  }

}

/* =========================
   TEAM DATABASE
========================= */

.team-container {
  margin-top: 65px;
}

.department-section {
  margin-bottom: 80px;
}

.department-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding-bottom: 18px;

  border-bottom: 1px solid #dfe4eb;
}

.department-label {
  color: #8a94a4;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}

.department-header h3 {
  margin-top: 6px;

  font-size: 28px;

  font-weight: 600;

  color: #151a22;
}

.member-count {
  color: #667085;

  font-size: 11px;
  font-weight: 600;

  padding: 7px 12px;

  border: 1px solid #e1e6ed;

  border-radius: 50px;

  background: white;
}


/* TEAM GRID */

.team-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;

  margin-top: 25px;
}


/* TEAM CARD */

.team-card {
  overflow: hidden;

  background: white;

  border: 1px solid #e3e8ef;

  border-radius: 16px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.team-card:hover {
  transform: translateY(-7px);

  border-color: #cdd9ef;

  box-shadow:
    0 20px 45px rgba(15, 30, 60, 0.09);
}


/* IMAGE */

.team-image {
  width: 100%;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background:
    linear-gradient(135deg,
      #edf3ff,
      #f7f9fc);
}

.team-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}


/* PLACEHOLDER */

.team-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #8da2c8;
}

.team-placeholder span {
  font-size: 65px;
}


/* INFO */

.team-info {
  padding: 20px;
}

.team-role {
  display: block;

  color: #2563eb;

  font-size: 9px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.3px;
}

.team-info h4 {
  margin-top: 8px;

  color: #111827;

  font-size: 19px;

  line-height: 1.2;
}

.team-info p {
  margin-top: 9px;

  color: #7a8494;

  font-size: 11px;

  line-height: 1.6;

  display: -webkit-box;

  --webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}


/* LOADING */

.team-loading {
  min-height: 200px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 14px;

  color: #7b8492;
}

.loading-spinner {
  width: 32px;
  height: 32px;

  border: 3px solid #e6ebf3;

  border-top-color: #2563eb;

  border-radius: 50%;

  animation: teamSpinner 0.8s linear infinite;
}

.team-loading p {
  font-size: 12px;
}


/* ERROR */

.team-error {
  min-height: 180px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 10px;

  color: #8a94a4;
}

.team-error span {
  font-size: 35px;
}

.team-error p {
  font-size: 13px;
}


/* EMPTY */

.empty-team {
  padding: 70px 20px;

  text-align: center;

  color: #7d8796;
}

.empty-team span {
  font-size: 40px;

  color: #8da2c8;
}

.empty-team h3 {
  margin-top: 12px;

  color: #252b35;
}

.empty-team p {
  margin-top: 5px;

  font-size: 13px;
}


/* HIDDEN */

.hidden {
  display: none !important;
}


/* ANIMATION */

@keyframes teamSpinner {

  to {
    transform: rotate(360deg);
  }

}


/* RESPONSIVE */

@media (max-width: 1100px) {

  .team-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

}


@media (max-width: 750px) {

  .department-header {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

  .team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 480px) {

  .team-grid {
    grid-template-columns: 1fr;
  }

  .department-header h3 {
    font-size: 23px;
  }

}

/* =========================
   TEAM PREVIEW
========================= */

.team-intro {
  max-width: 400px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 25px;
}

.team-intro p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}


/* VIEW TEAM BUTTON */

.view-team-btn {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 13px 18px;

  color: white;

  background: var(--black);

  border-radius: 8px;

  font-size: 12px;

  font-weight: 600;

  transition: 0.3s ease;
}

.view-team-btn span {
  font-size: 17px;

  transition: transform 0.3s ease;
}

.view-team-btn:hover {
  background: var(--blue);

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(37, 99, 235, 0.18);
}

.view-team-btn:hover span {
  transform: translateX(3px);
}


/* TEAM PREVIEW BOX */

.team-preview {

  position: relative;

  min-height: 280px;

  margin-top: 55px;

  padding: 50px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  overflow: hidden;

  border-radius: 20px;

  background:
    radial-gradient(circle at 80% 30%,
      rgba(37, 99, 235, 0.14),
      transparent 35%),
    linear-gradient(135deg,
      #f1f5fb,
      #ffffff);

  border: 1px solid var(--border);
}


/* GRID EFFECT */

.team-preview::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(37, 99, 235, 0.035) 1px,
      transparent 1px);

  background-size: 40px 40px;

  -webkit-mask-image:
    linear-gradient(to right,
      transparent,
      black);

  mask-image:
    linear-gradient(to right,
      transparent,
      black);

  pointer-events: none;
}


/* CONTENT */

.team-preview-content {

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 25px;
}

.preview-icon {

  width: 75px;

  height: 75px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  color: var(--blue);

  background: #e9f0ff;

  border: 1px solid #d9e5ff;
}

.preview-icon span {

  font-size: 36px;
}

.preview-label {

  color: #7b8493;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}

.team-preview h3 {

  margin-top: 8px;

  font-size: clamp(2rem,
      4vw,
      3.5rem);

  line-height: 1;

  letter-spacing: -2px;
}


/* ARROW */

.preview-arrow {

  position: relative;

  z-index: 3;

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  background: var(--black);

  border-radius: 50%;

  transition: 0.3s ease;
}

.preview-arrow span {

  font-size: 21px;

  transition: 0.3s ease;
}

.preview-arrow:hover {

  background: var(--blue);

  transform: scale(1.08);
}

.preview-arrow:hover span {

  transform: translate(2px,
      -2px);
}


/* MOBILE */

@media (max-width: 750px) {

  .team-intro {

    width: 100%;

    margin-top: 20px;
  }

  .team-preview {

    min-height: 250px;

    padding: 30px;

    align-items: flex-end;
  }

  .team-preview-content {

    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }

  .preview-icon {

    width: 58px;

    height: 58px;
  }

  .preview-icon span {

    font-size: 28px;
  }

  .team-preview h3 {

    font-size: 2rem;
  }

  .preview-arrow {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;
  }

}

/* =========================
   TEAM PAGE
========================= */

.team-page-hero {

  min-height: 520px;

  padding:
    100px 9%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(circle at 80% 50%,
      rgba(37, 99, 235, 0.08),
      transparent 35%);
}


.team-page-hero-content {

  max-width: 750px;

  position: relative;

  z-index: 2;
}


.team-page-hero h1 {

  margin-top: 30px;

  font-size:
    clamp(4rem,
      9vw,
      8rem);

  line-height: .85;

  letter-spacing: -6px;

  color: var(--black);
}


.team-page-hero h1 span {

  display: block;

  color: transparent;

  background:
    linear-gradient(110deg,
      #111827,
      #2563eb,
      #60a5fa);

  -webkit-background-clip: text;

  background-clip: text;
}


.team-page-hero p {

  max-width: 500px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.7;
}


/* HERO SYMBOL */

.team-hero-symbol {

  width: 280px;

  height: 280px;

  position: relative;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border:
    1px solid rgba(37,
      99,
      235,
      .15);
}


.team-hero-symbol::before {

  content: "";

  position: absolute;

  inset: 25px;

  border:
    1px dashed rgba(37,
      99,
      235,
      .25);

  border-radius: 50%;

  animation:
    spin 18s linear infinite;
}


.team-hero-symbol::after {

  content: "";

  position: absolute;

  inset: 55px;

  border:
    1px solid rgba(37,
      99,
      235,
      .18);

  border-radius: 50%;
}


.team-hero-symbol>span {

  position: relative;

  z-index: 4;

  width: 105px;

  height: 105px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--blue);

  background:
    linear-gradient(145deg,
      #ffffff,
      #edf3ff);

  box-shadow:
    0 20px 50px rgba(37,
      99,
      235,
      .15);

  font-size: 45px;
}


.team-hero-symbol>div {

  position: absolute;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--blue);
}


.team-hero-symbol>div:nth-child(2) {

  top: 30px;
  right: 50px;

}


.team-hero-symbol>div:nth-child(3) {

  bottom: 40px;
  left: 25px;

}


.team-hero-symbol>div:nth-child(4) {

  right: 15px;
  bottom: 80px;

}


/* DIRECTORY */

.team-directory {

  padding:
    120px 9%;

  background: #f8fafc;
}


.team-directory-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 50px;
}


.team-directory-header h2 {

  margin-top: 25px;

  font-size:
    clamp(3rem,
      6vw,
      5rem);

  line-height: .95;

  letter-spacing: -3px;
}


.team-directory-header h2 span {

  color: var(--blue);

}


.back-home {

  display: flex;

  align-items: center;

  gap: 8px;

  padding:
    11px 16px;

  border:
    1px solid #dce2ea;

  border-radius: 8px;

  background: white;

  color: #4c5666;

  font-size: 12px;

  font-weight: 600;

  transition: .3s ease;
}


.back-home:hover {

  color: white;

  background: var(--black);

  border-color: var(--black);

  transform: translateY(-2px);

}


.back-home span {

  font-size: 17px;

}


/* TEAM CTA */

.team-page-cta {

  min-height: 500px;

  padding:
    100px 9%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: var(--black);

  color: white;

  position: relative;

  overflow: hidden;
}


.team-page-cta::before {

  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: var(--blue);

  filter: blur(160px);

  opacity: .14;
}


.team-page-cta>* {

  position: relative;

  z-index: 2;

}


.team-page-cta h2 {

  margin-top: 25px;

  font-size:
    clamp(3.2rem,
      7vw,
      6rem);

  line-height: .95;

  letter-spacing: -4px;
}


.team-page-cta h2 span {

  color: #5f91ff;

}


/* ACTIVE NAV */

.nav a.active {

  color: var(--blue);

}


.nav a.active::after {

  width: 100%;

}


/* TEAM PAGE MOBILE */

@media (max-width: 750px) {

  .team-page-hero {

    min-height: auto;

    padding:
      80px 6%;

    flex-direction: column;

    align-items: flex-start;

  }


  .team-page-hero h1 {

    font-size: 4.5rem;

    letter-spacing: -4px;

  }


  .team-hero-symbol {

    width: 220px;

    height: 220px;

    align-self: center;

  }


  .team-directory {

    padding:
      80px 6%;

  }


  .team-directory-header {

    flex-direction: column;

    align-items: flex-start;

  }


  .team-directory-header h2 {

    font-size: 3rem;

    letter-spacing: -2px;

  }


  .team-page-cta h2 {

    font-size: 3.2rem;

    letter-spacing: -2px;

  }

}


/* =========================
           SEO / ACCESSIBILITY
        ========================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  padding: 10px 14px;
  color: #ffffff;
  background: #111827;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================
           BUILDATHON 2.0 EVENT
        ========================= */

.buildathon-event {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 42px 48px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(135deg, #f7faff 0%, #ffffff 58%, #eef4ff 100%);
  border: 1px solid #dce5f3;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(20, 40, 80, 0.06);
}

.buildathon-event::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -110px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
}

.buildathon-event::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: 40px;
  bottom: -90px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 50%;
}

.buildathon-event-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  max-width: 780px;
}

.buildathon-event-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: #eaf1ff;
  border: 1px solid #d9e6ff;
  border-radius: 16px;
}

.buildathon-event-icon span {
  font-size: 32px;
}

.buildathon-event-label {
  display: block;
  margin-bottom: 9px;
  color: #6b7788;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.buildathon-event-details h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -1.8px;
}

.buildathon-event-details p {
  max-width: 620px;
  margin: 15px 0 0;
  color: #6f7a8b;
  font-size: 13px;
  line-height: 1.7;
}

.buildathon-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.buildathon-event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  transition: 0.25s ease;
}

.buildathon-event-btn span {
  font-size: 17px;
}

.buildathon-event-btn.primary {
  color: #ffffff;
  background: #111827;
}

.buildathon-event-btn.primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.buildathon-event-btn.secondary {
  color: #273142;
  background: #ffffff;
  border: 1px solid #d9e1ec;
}

.buildathon-event-btn.secondary:hover {
  color: #2563eb;
  border-color: #bcd0f5;
  transform: translateY(-2px);
}

.buildathon-event-badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 145px;
  min-height: 145px;
  padding: 20px;
  color: #2563eb;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dce7fa;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

.buildathon-event-badge span:first-child {
  font-size: 28px;
}

.buildathon-event-badge span:last-child {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
}

@media (max-width: 750px) {
  .buildathon-event {
    min-height: auto;
    padding: 30px 24px;
    align-items: flex-start;
  }

  .buildathon-event-content {
    flex-direction: column;
    gap: 18px;
  }

  .buildathon-event-badge {
    display: none;
  }

  .buildathon-event-details h3 {
    font-size: 2.25rem;
  }

  .buildathon-event-actions {
    width: 100%;
  }

  .buildathon-event-btn {
    flex: 1;
  }
}
/* =========================================================
   EVENTS - VIEW MORE
========================================================= */

.events-more-wrapper {
    display: flex;
    justify-content: center;

    margin-top: 28px;
}


.events-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 130px;

    padding: 12px 20px;

    border: 1px solid #dfe4eb;
    border-radius: 999px;

    background: #ffffff;

    color: #111827;

    font-family: "Outfit", sans-serif;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.events-more-btn:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;

    transform: translateY(-2px);
}


.events-more-btn .material-symbols-rounded {
    font-size: 19px;

    transition:
        transform 0.25s ease;
}


/* =========================================================
   EVENT SWITCH ANIMATION
========================================================= */

.event-card {
    animation:
        eventFadeIn 0.35s ease;
}


@keyframes eventFadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   AI PRODUCT MANAGEMENT ICON
========================================================= */

#aiProductEvent
.buildathon-event-icon {
    background: rgba(37, 99, 235, 0.08);
}


#aiProductEvent
.buildathon-event-icon
.material-symbols-rounded {
    color: #2563eb;
}