:root {

  --bg: #f5f7f3;
  --surface: #ffffff;

  --dark: #07110d;
  --dark-2: #0c1b14;

  --green: #0b6b3a;
  --green-light: #18a866;
  --green-soft: #dff1e7;

  --text: #101512;
  --muted: #66706a;

  --line: #dfe5df;

  --max-width: 1180px;

  --radius: 24px;

}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


body {

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background: var(--bg);
  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


.container {

  width: min(calc(100% - 40px),
      var(--max-width));

  margin: 0 auto;

}


/* =========================================================
   BACKGROUND
========================================================= */

.noise {

  position: fixed;

  inset: 0;

  pointer-events: none;

  z-index: 100;

  opacity: 0.035;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

}


.orb {

  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;

  opacity: 0.35;

}


.orb-1 {

  width: 420px;
  height: 420px;

  background: #b7e6c9;

  top: 150px;
  right: -180px;

}


.orb-2 {

  width: 300px;
  height: 300px;

  background: #d8f2df;

  top: 800px;
  left: -160px;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

  position: absolute;

  width: 100%;

  top: 0;
  left: 0;

  z-index: 20;

}


.nav {

  height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

}


.brand {

  display: flex;

  align-items: center;

  gap: 12px;

  color: white;

}

/* 
.brand-symbol {

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 12px;

  font-weight: 800;

  font-size: 18px;

} */

.brand-symbol {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  overflow: hidden;

  flex-shrink: 0;
}

.brand-symbol img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}


.brand-name {

  font-weight: 800;

  font-size: 17px;

  letter-spacing: 0.12em;

}


.brand-sub {

  margin-top: -2px;

  font-size: 9px;

  letter-spacing: 0.13em;

  color: rgba(255, 255, 255, 0.55);

}


.nav-button {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 17px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 999px;

  color: white;

  font-size: 13px;

  font-weight: 600;

  transition: 0.25s ease;

}


.nav-button:hover {

  background: white;

  color: var(--dark);

  transform: translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero {

  position: relative;

  min-height: 900px;

  display: flex;

  align-items: center;

  background:

    radial-gradient(circle at 80% 35%,
      rgba(31, 143, 83, 0.25),
      transparent 32%),

    radial-gradient(circle at 30% 80%,
      rgba(25, 103, 61, 0.16),
      transparent 35%),

    linear-gradient(135deg,
      #06100c,
      #0a1d14 55%,
      #07120e);

  color: white;

  overflow: hidden;

}


.hero::before {

  content: "";

  position: absolute;

  width: 800px;
  height: 800px;

  border: 1px solid rgba(255, 255, 255, 0.04);

  border-radius: 50%;

  right: -350px;
  top: 80px;

}


.hero::after {

  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  border: 1px solid rgba(73, 201, 128, 0.08);

  border-radius: 50%;

  right: -240px;
  top: 180px;

}


.hero-grid {

  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;

  align-items: center;

  padding-top: 80px;

}


.status-pill {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 8px 13px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  color: #c9d8ce;

  font-size: 10px;

  letter-spacing: 0.14em;

  font-weight: 700;

  margin-bottom: 28px;

}


.status-dot {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #37d47b;

  box-shadow:
    0 0 0 5px rgba(55, 212, 123, 0.12),
    0 0 15px rgba(55, 212, 123, 0.6);

}


.eyebrow {

  color: #83a18f;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.18em;

  margin-bottom: 18px;

}


.hero h1 {

  max-width: 720px;

  font-size: clamp(50px,
      6.5vw,
      84px);

  line-height: 0.96;

  letter-spacing: -0.065em;

  font-weight: 750;

}


.hero h1 span {

  display: block;

  color: #a7b8ad;

}


.hero-highlight {

  margin-top: 24px;

  display: flex;

  flex-direction: column;

}


.hero-highlight span {

  color: #45d383;

  font-size: 16px;

  font-weight: 800;

  letter-spacing: 0.12em;

}


.hero-highlight strong {

  font-size: clamp(30px,
      4vw,
      52px);

  line-height: 1;

  letter-spacing: -0.04em;

}


.hero-text {

  max-width: 620px;

  margin-top: 30px;

  color: #a9b8ae;

  font-size: 18px;

  line-height: 1.65;

}


.tech-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 27px;

}


.tech-tags span {

  padding: 7px 11px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  border-radius: 999px;

  color: #b8c9bf;

  font-size: 10px;

  letter-spacing: 0.1em;

  background: rgba(255, 255, 255, 0.025);

}


.hero-actions {

  margin-top: 32px;

}


.button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 16px 22px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 750;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

}


.button:hover {

  transform: translateY(-3px);

}


.button-primary {

  background: #dff8e9;

  color: #092016;

  box-shadow:
    0 12px 35px rgba(30, 194, 104, 0.14);

}


.button-primary:hover {

  box-shadow:
    0 18px 45px rgba(30, 194, 104, 0.25);

}


.button-icon {

  font-size: 16px;

}


.button-arrow {

  font-size: 19px;

}


.hero-note {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 17px;

  color: #728279;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.13em;

}


.hero-note i {

  width: 3px;
  height: 3px;

  background: #526359;

  border-radius: 50%;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

  position: relative;

  min-height: 550px;

  display: flex;

  align-items: center;

  justify-content: center;

}


.visual-card {

  position: relative;

  width: min(440px, 90%);

  height: 500px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  border-radius: 32px;

  background:

    linear-gradient(145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025));

  backdrop-filter: blur(15px);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.35);

  overflow: hidden;

  animation: float 6s ease-in-out infinite;

}


.visual-card::before {

  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  background: #0d8b4d;

  filter: blur(100px);

  opacity: 0.28;

  right: -100px;
  top: 80px;

}


.visual-top {

  position: absolute;

  top: 24px;
  left: 25px;
  right: 25px;

  display: flex;

  justify-content: space-between;

  color: #6f8878;

  font-size: 9px;

  letter-spacing: 0.15em;

}


.visual-center {

  position: absolute;

  inset: 80px 0 90px;

  display: grid;

  place-items: center;

}


.big-d {

  position: relative;

  font-size: 270px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -0.12em;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(120, 231, 164, 0.35);

}


.big-d span {

  position: absolute;

  left: 50%;

  top: 50%;

  transform:
    translate(-25%, -50%) rotate(-8deg);

  color: #5de095;

  font-size: 52px;

  letter-spacing: -0.03em;

  -webkit-text-stroke: 0;

}


.circle-ring {

  position: absolute;

  width: 310px;
  height: 310px;

  border: 1px solid rgba(76, 221, 137, 0.14);

  border-radius: 50%;

  animation: spin 20s linear infinite;

}


.circle-ring::before {

  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #51d88b;

  box-shadow: 0 0 20px #51d88b;

  top: 22px;
  left: 65px;

}


.visual-bottom {

  position: absolute;

  bottom: 25px;
  left: 25px;
  right: 25px;

  display: flex;

  justify-content: space-between;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 20px;

  color: #8da294;

  font-size: 9px;

  letter-spacing: 0.14em;

}


/* FLOATING CARDS */

.floating-card {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 12px 15px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 15px;

  background: rgba(12, 28, 20, 0.85);

  backdrop-filter: blur(12px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3);

}


.floating-one {

  top: 85px;
  right: -5px;

}


.floating-two {

  bottom: 80px;
  left: -5px;

}


.floating-icon {

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: #164d31;

  color: #65dc98;

}


.floating-number {

  color: #58d98f;

  font-size: 11px;

  font-weight: 800;

}


.floating-card strong {

  display: block;

  color: white;

  font-size: 11px;

}


.floating-card small {

  display: block;

  margin-top: 2px;

  color: #789083;

  font-size: 9px;

}


.scroll-hint {

  position: absolute;

  z-index: 5;

  bottom: 28px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 10px;

  color: #63756b;

  font-size: 8px;

  letter-spacing: 0.18em;

}


.scroll-hint span {

  width: 25px;
  height: 1px;

  background: #4b6254;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

  padding: 125px 0;

}


.section-label {

  margin-bottom: 22px;

  color: var(--green);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.18em;

}


.statement {

  background: #f5f7f3;

}


.statement-grid {

  display: grid;

  grid-template-columns: 1fr 0.8fr;

  gap: 100px;

  align-items: start;

}


.statement h2 {

  max-width: 700px;

  font-size: clamp(42px,
      5.5vw,
      70px);

  line-height: 0.98;

  letter-spacing: -0.06em;

}


.statement h2 span {

  color: var(--green);

}


.statement-copy {

  padding-top: 35px;

}


.statement-copy p {

  margin-bottom: 22px;

  color: var(--muted);

  font-size: 16px;

}


.statement-copy .large-copy {

  color: var(--text);

  font-size: 22px;

  line-height: 1.45;

}


.statement-copy strong {

  color: var(--text);

}


/* =========================================================
   PROCESS
========================================================= */

.process {

  background: white;

}


.process-title {

  max-width: 800px;

  font-size: clamp(48px,
      7vw,
      88px);

  line-height: 0.92;

  letter-spacing: -0.065em;

  margin-bottom: 65px;

}


.process-title span {

  color: var(--green);

}


.process-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 1px;

  background: var(--line);

  border: 1px solid var(--line);

}


.process-card {

  min-height: 310px;

  padding: 30px;

  background: white;

  transition:
    background 0.3s ease,
    transform 0.3s ease;

}


.process-card:hover,
.process-card.active {

  background: #eff8f2;

}


.process-number {

  color: #9aa59e;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.12em;

}


.process-icon {

  margin-top: 45px;

  color: var(--green);

  font-size: 42px;

  line-height: 1;

}


.process-card h3 {

  margin-top: 25px;

  font-size: 25px;

  letter-spacing: -0.04em;

}


.process-card p {

  max-width: 220px;

  margin-top: 12px;

  color: var(--muted);

  font-size: 14px;

}


/* =========================================================
   BUILDER
========================================================= */

.builder {

  background:
    linear-gradient(135deg,
      #e9f5ed,
      #f7f9f6);

}


.builder-header {

  display: grid;

  grid-template-columns: 1fr 0.7fr;

  gap: 100px;

  align-items: end;

}


.builder h2 {

  max-width: 700px;

  font-size: clamp(45px,
      6vw,
      76px);

  line-height: 0.95;

  letter-spacing: -0.06em;

}


.builder h2 span {

  color: var(--green);

}


.builder-header>p {

  color: var(--muted);

  font-size: 18px;

}


.background-cloud {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 70px;

}


.background-cloud span {

  padding: 12px 17px;

  border: 1px solid #cbded1;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.55);

  color: #385143;

  font-size: 12px;

  font-weight: 650;

  transition: 0.25s ease;

}


.background-cloud span:hover {

  background: var(--dark);

  color: white;

  transform: translateY(-3px);

}


.welcome-line {

  margin-top: 50px;

  display: flex;

  align-items: center;

  gap: 15px;

  font-size: 12px;

  letter-spacing: 0.1em;

  color: #6d7d73;

}


.welcome-line strong {

  color: var(--green);

}


/* =========================================================
   IDEAS
========================================================= */

.ideas {

  background: var(--dark);

  color: white;

}


.ideas .section-label {

  color: #58d88f;

}


.ideas-heading {

  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 50px;

}


.ideas-heading h2 {

  max-width: 750px;

  font-size: clamp(48px,
      6vw,
      78px);

  line-height: 0.95;

  letter-spacing: -0.06em;

}


.ideas-heading h2 span {

  display: block;

  color: #55d98c;

}


.ideas-heading p {

  max-width: 290px;

  color: #82968a;

  font-size: 16px;

}


.idea-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;

  margin-top: 70px;

}


.idea-card {

  min-height: 170px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 24px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.035);

  transition:
    0.3s ease;

}


.idea-card:hover {

  border-color: rgba(82, 215, 139, 0.4);

  background: rgba(61, 178, 111, 0.08);

  transform: translateY(-5px);

}

.idea-emoji {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.idea-emoji svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.idea-card>span:last-child {

  color: #d1ddd5;

  font-size: 15px;

  font-weight: 650;

}


.ideas-question {

  margin-top: 55px;

  display: flex;

  flex-direction: column;

  gap: 6px;

}


.ideas-question span {

  color: #667c6e;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;

}


.ideas-question strong {

  color: #72e0a0;

  font-size: 17px;

}


/* =========================================================
   SURVEY CTA
========================================================= */

.survey-cta {

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(circle at 70% 50%,
      rgba(29, 142, 80, 0.3),
      transparent 35%),
    #0a1711;

  color: white;

  padding: 130px 0;

}


.survey-inner {

  position: relative;

  display: grid;

  grid-template-columns: 1fr 0.45fr;

  gap: 80px;

  align-items: center;

}


.survey-content {

  position: relative;

  z-index: 2;

}


.section-label.light {

  color: #62d994;

}


.survey-content h2 {

  max-width: 850px;

  font-size: clamp(50px,
      7vw,
      88px);

  line-height: 0.92;

  letter-spacing: -0.065em;

}


.survey-content h2 span {

  display: block;

  color: #62d994;

}


.survey-content p {

  max-width: 580px;

  margin-top: 28px;

  color: #9caf9f;

  font-size: 18px;

}


.button-light {

  margin-top: 35px;

  background: #e1f9e9;

  color: #09170f;

}


.survey-side {

  position: relative;

  min-height: 300px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

}


.big-question {

  width: 180px;
  height: 180px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(91, 220, 140, 0.25);

  border-radius: 50%;

  color: #59db8f;

  font-size: 120px;

  line-height: 1;

  font-weight: 200;

  box-shadow:
    0 0 100px rgba(47, 190, 108, 0.08);

  animation:
    pulse-ring 3s ease-in-out infinite;

}


.survey-side p {

  max-width: 230px;

  margin-top: 25px;

  color: #879c8e;

  font-size: 14px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

  background: #050c08;

  color: white;

  padding: 55px 0 25px;

}


.footer-inner {

  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  gap: 40px;

  align-items: start;

}


.footer-brand {

  display: flex;

  gap: 18px;

  align-items: center;

  color: #a5b4aa;

  font-size: 11px;

  line-height: 1.5;

}


.footer-logo {

  color: white;

  font-size: 25px;

  font-weight: 850;

  letter-spacing: 0.08em;

}


.footer-brand span {

  color: #52645a;

}


.footer-center {

  display: flex;

  flex-direction: column;

  gap: 6px;

}


.footer-center strong {

  color: #d5e1d9;

  font-size: 12px;

}


.footer-center span {

  color: #627269;

  font-size: 11px;

}


.footer-right {

  display: flex;

  flex-direction: column;

  align-items: flex-end;

  font-size: 11px;

  color: #617167;

}


.footer-right strong {

  color: #62d994;

  font-weight: 600;

}


.footer-bottom {

  margin-top: 50px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;

  justify-content: space-between;

  color: #47564e;

  font-size: 9px;

  letter-spacing: 0.12em;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes float {

  0%,
  100% {

    transform:
      translateY(0);

  }

  50% {

    transform:
      translateY(-12px);

  }

}


@keyframes spin {

  from {

    transform: rotate(0deg);

  }

  to {

    transform: rotate(360deg);

  }

}


@keyframes pulse-ring {

  0%,
  100% {

    transform: scale(1);

  }

  50% {

    transform: scale(1.04);

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {


  .mentors-heading {

    grid-template-columns: 1fr;

    gap: 35px;

  }


  .mentor-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .speaker-network {

    grid-template-columns: 1fr;

    gap: 20px;

  }


  .speaker-content {

    align-items: flex-start;

  }

  .container {

    width: min(calc(100% - 30px),
        var(--max-width));

  }


  .hero {

    min-height: auto;

    padding-bottom: 100px;

  }


  .nav {

    height: 76px;

  }


  .nav-button {

    padding: 8px 12px;

    font-size: 11px;

  }


  .hero-grid {

    grid-template-columns: 1fr;

    gap: 55px;

    padding-top: 130px;

  }


  .hero h1 {

    font-size:
      clamp(47px,
        13vw,
        72px);

  }


  .hero-text {

    font-size: 17px;

  }


  .hero-visual {

    min-height: 450px;

  }


  .visual-card {

    height: 430px;

  }


  .big-d {

    font-size: 230px;

  }


  .circle-ring {

    width: 260px;
    height: 260px;

  }


  .floating-one {

    right: 0;

  }


  .floating-two {

    left: 0;

  }


  .statement-grid,
  .builder-header,
  .survey-inner {

    grid-template-columns: 1fr;

    gap: 45px;

  }


  .statement-copy {

    padding-top: 0;

  }


  .process-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .idea-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .ideas-heading {

    flex-direction: column;

    align-items: flex-start;

  }


  .footer-inner {

    grid-template-columns: 1fr;

  }


  .footer-right {

    align-items: flex-start;

  }

}


@media (max-width: 600px) {


  .mentor-grid {

    grid-template-columns: 1fr;

  }


  .mentor-card {

    min-height: 155px;

  }


  .mentor-content {

    margin-top: 30px;

  }


  .speaker-network {

    padding: 24px;

  }


  .speaker-content {

    flex-direction: column;

    gap: 20px;

  }

  .nav-button {

    display: none;

  }


  .hero-grid {

    padding-top: 115px;

  }


  .status-pill {

    font-size: 8px;

  }


  .hero h1 {

    font-size: 48px;

  }


  .hero-highlight strong {

    font-size: 34px;

  }


  .hero-note {

    flex-wrap: wrap;

  }


  .hero-visual {

    min-height: 390px;

  }


  .visual-card {

    width: 100%;

    height: 380px;

    border-radius: 24px;

  }


  .big-d {

    font-size: 200px;

  }


  .circle-ring {

    width: 225px;
    height: 225px;

  }


  .floating-card {

    transform: scale(0.9);

  }


  .floating-one {

    top: 50px;

    right: -5px;

  }


  .floating-two {

    bottom: 50px;

    left: -5px;

  }


  .section {

    padding: 90px 0;

  }


  .statement h2,
  .builder h2 {

    font-size: 47px;

  }


  .process-title {

    font-size: 55px;

  }


  .process-grid {

    grid-template-columns: 1fr;

  }


  .process-card {

    min-height: 240px;

  }


  .process-icon {

    margin-top: 30px;

  }


  .idea-grid {

    grid-template-columns: 1fr;

  }


  .idea-card {

    min-height: 135px;

  }


  .survey-content h2 {

    font-size: 55px;

  }


  .survey-side {

    min-height: 220px;

  }


  .big-question {

    width: 140px;
    height: 140px;

    font-size: 90px;

  }


  .footer-bottom {

    flex-direction: column;

    gap: 8px;

  }

  .orb-1 {
    display: none;
  }
}


/* =========================================================
   INDUSTRY MENTOR TEAM
========================================================= */

.mentors {
  background: #f5f7f3;
}


/* HEADING */

.mentors-heading {

  display: grid;

  grid-template-columns: 1fr 0.65fr;

  gap: 100px;

  align-items: end;

}


.mentors-heading h2 {

  max-width: 700px;

  font-size: clamp(48px,
      6vw,
      78px);

  line-height: 0.95;

  letter-spacing: -0.06em;

}


.mentors-heading h2 span {

  display: block;

  color: var(--green);

}


.mentors-heading>p {

  max-width: 390px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.65;

}


/* MENTOR GRID */

.mentor-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;

  margin-top: 70px;

}


/* MENTOR CARD */

.mentor-card {

  min-height: 190px;

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 25px;

  border: 1px solid var(--line);

  border-radius: 18px;

  background: white;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;

}


.mentor-card:hover {

  transform: translateY(-5px);

  background: #eff8f2;

  border-color: #b9d9c5;

}


/* NUMBER */

.mentor-number {

  color: #9aa59e;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.14em;

}


/* CONTENT */

.mentor-content {

  margin-top: 45px;

}


.mentor-content h3 {

  font-size: 22px;

  line-height: 1.1;

  letter-spacing: -0.035em;

}


.mentor-role {

  max-width: 270px;

  margin-top: 9px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.5;

}


/* INDUSTRY SPEAKER NETWORK */

.speaker-network {

  margin-top: 12px;

  padding: 28px 30px;

  display: grid;

  grid-template-columns: 0.35fr 1fr;

  gap: 50px;

  align-items: center;

  border: 1px solid var(--line);

  border-radius: 18px;

  background: white;

}


.speaker-label {

  color: var(--green);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

}


.speaker-content {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

}


.speaker-content p {

  max-width: 650px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.6;

}


.speaker-link {

  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--green);

  font-size: 12px;

  font-weight: 750;

  white-space: nowrap;

}


.speaker-link span {

  font-size: 17px;

  transition: transform 0.2s ease;

}


.speaker-link:hover span {

  transform: translateX(4px);

}

/* =========================================================
   INDUSTRY MENTOR TEAM — FINAL RESPONSIVE OVERRIDES
   ========================================================= */

@media (max-width: 900px) {

  .mentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mentor-card {
    min-width: 0;
  }

}


@media (max-width: 600px) {

  .mentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mentor-card {
    min-width: 0;
    padding: 20px;
    min-height: 155px;
  }

  .mentor-content {
    margin-top: 30px;
  }

  .mentor-content h3 {
    font-size: 20px;
  }

  .mentor-role {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

}


@media (max-width: 360px) {

  .mentor-grid {
    grid-template-columns: 1fr;
  }

}