:root {
  --black: #050505;
  --black-2: #090909;
  --card: #0b0b0b;
  --card-hover: #0d0d0d;
  --white: #f7f7f5;
  --muted: #a3a3a3;
  --muted-2: #777;
  --green: #00f58a;
  --green-2: #00d978;
  --green-dark: #003f29;
  --line: #262626;
  --radius: 24px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection {
  background: var(--green);
  color: #000;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* Subtle grid used throughout the reference design. */
.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 74px;
  z-index: 1000;
  background: rgba(4, 4, 4, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.7px;
  white-space: nowrap;
}
.logo-dot {
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav-links a {
  color: #a9a9a9;
  font-size: 13px;
  font-weight: 700;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.nav-links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}
.nav-cta,
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: var(--green);
  color: #001b10;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(0, 245, 138, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.nav-cta {
  padding: 12px 26px;
  font-size: 13px;
}
.nav-cta:hover,
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 245, 138, 0.27);
  background: #17ff9a;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 24px;
}

section {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 142px 0 90px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(0, 245, 138, 0.13),
      transparent 35%
    ),
    radial-gradient(circle at 50% 65%, rgba(0, 100, 60, 0.09), transparent 48%),
    var(--black);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 45%, #000 5%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  padding: 9px 20px;
  border: 1px solid rgba(0, 245, 138, 0.45);
  background: rgba(0, 245, 138, 0.07);
  color: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 34px auto 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(58px, 8.1vw, 104px);
  line-height: 0.99;
  letter-spacing: -5px;
  font-weight: 800;
  max-width: 850px;
}
.hero h1 span {
  color: var(--green);
  display: block;
}
.hero-copy {
  max-width: 720px;
  margin: 0 auto 42px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.btn-green {
  padding: 17px 30px;
  font-size: 16px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 30px;
  border-radius: 999px;
  background: #202020;
  border: 1px solid #3a3a3a;
  color: #f3f3f3;
  font-weight: 800;
  transition: 0.25s ease;
}
.btn-dark:hover {
  transform: translateY(-3px);
  background: #292929;
  border-color: #555;
}

/* Shared section headings */
.section {
  padding: 108px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 62px;
}
.section-head h2 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 800;
}
.section-head p {
  max-width: 650px;
  margin: 0 auto;
  color: #9d9d9d;
  font-size: 16px;
  font-weight: 600;
}
.accent {
  color: var(--green);
}

/* ABOUT */
.about {
  background: #090909;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.about-copy h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 0 0 30px;
}
.about-copy p {
  color: #aaa;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 24px;
  max-width: 620px;
}
.mission {
  margin-top: 36px;
  padding: 28px 30px 28px 34px;
  position: relative;
  border: 1px solid #2b2b2b;
  border-radius: 22px;
  background: #060606;
  overflow: hidden;
  transition: 0.3s ease;
}
.mission::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--green);
}
.mission:hover {
  border-color: rgba(0, 245, 138, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 245, 138, 0.06);
}
.mission h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.mission p {
  margin: 0;
  font-size: 15px;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.value-card,
.service-card,
.why-card,
.team-card,
.stat-card {
  background: linear-gradient(145deg, #0c0c0c, #163423);
  border: 2px solid #292929;
  border-radius: 22px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.value-card {
  min-height: 215px;
  padding: 28px;
}
.value-card:hover,
.service-card:hover,
.team-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 138, 0.7);
  box-shadow: 0 18px 50px rgba(0, 245, 138, 0.08);
  background: #0d0d0d;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(0, 245, 138, 0.08);
  color: var(--green);
  font-size: 23px;
  margin-bottom: 26px;
}
.value-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.value-card p {
  margin: 0;
  color: #9d9d9d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* SERVICES */
.services {
  background: #030303;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
}
.service-card p {
  color: #999;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}
.service-card.custom {
  background: var(--green);
  color: #001b10;
  border-color: var(--green);
}
.service-card.custom:hover {
  background: #14ff98;
  box-shadow: 0 18px 50px rgba(0, 245, 138, 0.18);
}
.service-card.custom p {
  color: #003d26;
}
.service-card.custom .icon {
  background: #000;
  color: var(--green);
}
.service-card.custom .btn-mini {
  background: #000;
  color: white;
}
.btn-mini {
  margin-top: auto;
  align-self: flex-start;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #001b10;
  font-weight: 800;
  font-size: 13px;
}

/* WHY */
.why {
  background: #090909;
}
.why-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why-intro h2 {
  margin: 0 0 25px;
  font-family: "Plus Jakarta Sans";
  font-size: 55px;
  line-height: 1.02;
  letter-spacing: -3px;
}
.why-intro p {
  color: #9f9f9f;
  font-size: 16px;
  font-weight: 600;
  max-width: 390px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  min-height: 250px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.why-number {
  color: var(--green);
  font-size: 25px;
  font-weight: 800;
}
.why-bg-number {
  position: absolute;
  top: 2px;
  right: 22px;
  color: rgba(0, 245, 138, 0.09);
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
}
.why-card h3 {
  position: relative;
  margin: 62px 0 12px;
  font-size: 18px;
  max-width: 240px;
  line-height: 1.2;
}
.why-card p {
  position: relative;
  margin: 0;
  color: #999;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* PROCESS */
/* PROCESS */
.process {
  background: #030303;
}

.process-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 92px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #333 70%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

/* Base style for step circles */
.process-step .step-circle {
  width: 66px;
  height: 66px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b0b0b;
  border: 1px solid #111;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  box-shadow: none;
  transition: all 0.25s ease;
}

/* Highlight current hovered step & preceding steps */
.process-step:hover .step-circle,
.process-step:has(~ .process-step:hover) .step-circle {
  background: var(--green);
  color: #001b10;
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(0, 245, 138, 0.18);
}

.process-step h3 {
  font-size: 17px;
  margin: 0 0 12px;
  line-height: 1.25;
}

.process-step p {
  color: #999;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 680px) {
  /* Reset track alignment */
  .process-track {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 36px !important;
    margin-top: 40px !important;
    position: relative !important;
    width: 100% !important;
  }

  /* Force vertical line to pin to the left side */
  .process-track::before {
    left: 32px !important;
    right: auto !important;
    top: 33px !important;
    bottom: 33px !important;
    width: 3px !important;
    height: calc(100% - 66px) !important;
    background: linear-gradient(180deg, var(--green), #333) !important;
  }

  /* Flex item alignment */
  .process-step {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 20px !important;
    width: 100% !important;
  }

  /* Lock circle size and position */
  .process-step .step-circle {
    min-width: 66px !important;
    width: 66px !important;
    height: 66px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .process-step h3 {
    margin: 4px 0 8px 0 !important;
  }

  .process-step p {
    text-align: left !important;
  }
}

/* TEAM */
.team {
  background: #090909;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  padding: 30px 24px;
  min-height: 315px;
  text-align: center;
}
.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #242424;
  border: 1px solid rgba(0, 245, 138, 0.4);
  font-size: 20px;
  font-weight: 800;
}
.team-card:last-child .avatar {
  background: var(--green);
  color: #001b10;
  border-color: var(--green);
}
.team-card h3 {
  margin: 0 0 5px;
  font-size: 18px;
}
.role {
  color: var(--green);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.team-card p {
  margin: 18px 0 0;
  color: #999;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

/* RESULTS */
.results {
  background: #030303;
  overflow: hidden;
}
.results::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -260px;
  top: 50px;
  background: rgba(0, 245, 138, 0.1);
  filter: blur(100px);
  border-radius: 50%;
}
.results-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.result-eyebrow {
  display: inline-flex;
  padding: 7px 16px;
  border: 1px solid rgba(0, 245, 138, 0.5);
  border-radius: 999px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.results-copy h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 0 0 25px;
}
.results-copy p {
  color: #999;
  max-width: 530px;
  font-size: 15px;
  font-weight: 600;
}
.results-copy .btn-light {
  display: inline-flex;
  margin-top: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
}
.stats {
  display: grid;
  gap: 18px;
}
.stat-card {
  min-height: 116px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat-value {
  color: var(--green);
  font-family: "Plus Jakarta Sans";
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -3px;
  min-width: 195px;
}
.stat-label {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

/* CONTACT */
.contact-wrap {
  background: var(--green);
  color: #000;
  padding: 66px 0 72px;
}
.contact-wrap.grid-bg {
  background-color: var(--green);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
}
.contact-card {
  max-width: 770px;
  margin: 0 auto;
  padding: 48px;
  background: #050505;
  color: #fff;
  border-radius: 36px;
  border: 1px solid #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}
.contact-card h2 {
  text-align: center;
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans";
  font-size: 45px;
  letter-spacing: -2px;
}
.contact-card > p {
  text-align: center;
  color: #999;
  margin: 0 0 38px;
  font-weight: 600;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  margin: 0;
  font-size: 18px;
}
.contact-item h3 {
  font-size: 15px;
  margin: 0 0 5px;
}
.contact-item p {
  color: #999;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.contact-action .btn-green {
  width: 100%;
  padding: 20px;
  font-size: 16px;
}
.contact-note {
  color: #777;
  font-size: 12px;
  font-weight: 600;
  margin-top: 28px;
}

/* FOOTER */
footer {
  background: #050505;
  padding: 48px 0 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 45px;
}
.footer-tagline {
  color: #777;
  margin-top: 8px;
  font-size: 14px;
}
.socials {
  display: flex;
  gap: 12px;
}
.social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #eee;
  transition: 0.25s ease;
}
.social:hover {
  background: var(--green);
  color: #000;
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
  color: #555;
  font-size: 11px;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 18px;
  }
  .nav-cta {
    padding: 11px 18px;
  }
  .about-layout,
  .why-layout,
  .results-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-intro p {
    max-width: 650px;
  }
  .results-copy h2 {
    font-size: 44px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .site-header {
    height: 68px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 20px 22px 25px;
    background: #050505;
    border-bottom: 1px solid #222;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    padding: 120px 0 72px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(47px, 14vw, 76px);
    letter-spacing: -3px;
  }
  .hero-copy {
    font-size: 15px;
    line-height: 1.65;
  }
  .section {
    padding: 78px 0;
  }
  .section-head h2,
  .about-copy h2,
  .why-intro h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .values,
  .service-grid,
  .why-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .value-card,
  .service-card {
    min-height: 0;
  }
  .process-track {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 50px;
  }
  .process-track::before {
    left: 50%;
    right: auto;
    top: 33px;
    width: 3px;
    height: calc(100% - 66px);
    background: linear-gradient(var(--green), #333);
  }
  .process-step p {
    max-width: 330px;
    margin: 0 auto;
  }
  .stat-card {
    padding: 22px;
    gap: 16px;
  }
  .stat-value {
    font-size: 40px;
    min-width: 135px;
  }
  .stat-label {
    font-size: 14px;
  }
  .contact-card {
    padding: 34px 24px;
    border-radius: 28px;
  }
  .contact-card h2 {
    font-size: 38px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

/* RECENT EVENTS */
.events {
  background: #050505;
  overflow: hidden;
}
.events-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 2px 10px;
}
.events-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.event-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 300px;
  padding: 28px;
  border: 1px solid #292929;
  border-radius: 24px;
  background: linear-gradient(145deg, #0d0d0d, #080808);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 0,
    rgba(0, 245, 138, 0.13),
    transparent 38%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.event-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 245, 138, 0.75);
  box-shadow: 0 20px 55px rgba(0, 245, 138, 0.08);
}
.event-card:hover::before {
  opacity: 1;
}
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.event-card h3 {
  position: relative;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.event-card p {
  position: relative;
  color: #999;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 24px;
}
.event-tag {
  position: absolute;
  left: 28px;
  bottom: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 245, 138, 0.08);
  color: var(--green);
  border: 1px solid rgba(0, 245, 138, 0.22);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.events-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.event-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #303030;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.25s ease;
}
.event-arrow:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  transform: translateY(-2px);
}
.event-dots {
  display: flex;
  gap: 7px;
}
.event-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #3b3b3b;
  cursor: pointer;
  transition: 0.25s ease;
}
.event-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--green);
}

/* TEAM IMAGES */
.team-card {
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: auto -35px -65px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 245, 138, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.team-card:hover::after {
  opacity: 1;
}
.team-photo {
  width: 116px;
  height: 145px;
  margin: 0 auto 22px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 3px solid rgba(0, 245, 138, 0.28);
  background: #171717;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
  filter: saturate(0.9);
}
.team-card:hover .team-photo {
  transform: translateY(-5px) scale(1.035);
  border-color: var(--green);
  box-shadow: 0 12px 35px rgba(0, 245, 138, 0.16);
  filter: saturate(1.08);
}
.team-card:hover .role {
  text-shadow: 0 0 14px rgba(0, 245, 138, 0.45);
}

/* CONTACT MODAL */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(9px);
}
.contact-modal.open {
  display: flex;
}
.contact-dialog {
  width: min(680px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  background: #080808;
  border: 1px solid #333;
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.25s ease-out;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contact-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px 18px;
  border-bottom: 1px solid #222;
}
.contact-dialog-head h2 {
  margin: 0 0 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  letter-spacing: -1.2px;
}
.contact-dialog-head p {
  margin: 0;
  color: #888;
  font-size: 13px;
  font-weight: 600;
}
.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.25s ease;
}
.modal-close:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.contact-form {
  padding: 26px 30px 30px;
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  font-size: 12px;
  font-weight: 800;
  color: #ddd;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #2d2d2d;
  border-radius: 13px;
  background: #111;
  color: #fff;
  padding: 13px 14px;
  outline: none;
  transition: 0.2s ease;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #666;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 245, 138, 0.08);
}
.form-required {
  color: var(--green);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}
.btn-modal-cancel {
  padding: 13px 20px;
  border: 1px solid #333;
  border-radius: 999px;
  background: #111;
  color: #ddd;
  font-weight: 800;
  cursor: pointer;
}
.btn-modal-send {
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #001b10;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 245, 138, 0.13);
  transition: 0.25s ease;
}
.btn-modal-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 138, 0.25);
  background: #17ff9a;
}
.form-hint {
  margin: 0;
  color: #666;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .event-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (max-width: 680px) {
  .event-card {
    flex-basis: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-dialog-head {
    padding: 24px 20px 16px;
  }
  .contact-form {
    padding: 22px 20px 24px;
  }
  .contact-dialog-head h2 {
    font-size: 24px;
  }
  .team-photo {
    width: 105px;
    height: 132px;
  }
  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .btn-modal-cancel,
  .btn-modal-send {
    width: 100%;
  }
}
