
/* ============================================================
   MISSION
   ============================================================ */
.mission {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 260px 205px 220px;
  background: var(--color-bg);
  contain: paint;
}

.mission__text {
  font-size: var(--fs-body-large);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  max-width: 1030px;
  margin: 0 auto;
}

/* ============================================================
   IDEAS
   ============================================================ */
.ideas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 12vw, 140px) clamp(24px, 15vw, 180px) clamp(100px, 20vw, 220px);
  background: var(--color-bg);
}



.ideas__title {
  font-size: var(--fs-section-head);
  line-height: 1;
  letter-spacing: -3px;
}

/* ============================================================
   BRANDS GRID
   ============================================================ */
.brands {
  padding: 80px 54px 160px;
  background: var(--color-bg);
  contain: paint;
}

.brands__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.brands__row:last-child {
  margin-bottom: 0;
}

.brand-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-bg-card);
  height: var(--card-height-fluid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* background transition removed — triggers paint on every hover frame */
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform;
  text-decoration: none;
}

.brand-card:hover {
  transform: scale(1.02);
  opacity: 0.85;
}

.brand-card__logo {
  max-width: 60%;
  max-height: 30%;
  object-fit: contain;
}




/* ============================================================
   GET STARTED
   ============================================================ */
.get-started {
  padding: 220px 130px 0px;
  background: var(--color-bg);
}

.get-started__label {
  font-size: var(--fs-label);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.get-started__title {
  font-size: var(--fs-section-head);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -3px;
}


/* ============================================================
   LAPTOP / SMALLER MONITOR SCREENS
   ============================================================ */
@media (min-width: 769px) and (max-width: 1280px) {

  /* Mission */
  .mission {
    padding: 120px 80px 180px;
  }

  .mission__text {
    font-size: clamp(20px, 2.4vw, 32px);
  }

  /* Ideas */
  .ideas {
    padding: 120px 100px 180px;
  }




  /* Get Started */
  .get-started {
    padding: 100px 80px 0px;
  }

  .get-started__title {
    font-size: clamp(52px, 7vw, 90px);
    letter-spacing: -2px;
  }
}

/* ============================================================
   MOBILE SCREENS
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --fs-hero: 48px;
    --fs-section-head: 44px;
    --fs-card-title: 28px;
  }

  /* Hero */
  .hero {
    padding: 80px 24px;
    min-height: 300px;
  }

  .hero__title {
    font-size: 15vw;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 20px;
    white-space: nowrap;
  }

  .hero__sub {
    font-size: clamp(11px, 3vw, 14px);
    width: 100%;
    max-width: 100%;
    color: #888888 !important;
  }

  .hero__video {
    height: 240px;
  }

  /* Mission */
  .mission {
    min-height: 100svh;
    padding: 80px 24px 120px;
  }

  .mission__text {
    font-size: clamp(18px, 5vw, 26px);
    line-height: 1.4;
  }

  /* Ideas */
  .ideas {
    min-height: unset;
    padding: 70px 24px 100px;
    justify-content: flex-start;
  }

  .ideas__title {
    font-size: 44px;
    letter-spacing: -1px;
    max-width: none;
  }

  .ideas__title br {
    display: block;
  }

  .ideas__title br::after {
    content: none;
  }
  
  /* Brands */
  .brands {
    padding: 24px;
  }

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

  /* Get Started */
  .get-started {
    padding: 60px 24px 0px;
  }

  .get-started__label {
    font-size: 13px;
  }

  .get-started__title {
    font-size: 44px;
    letter-spacing: -1px;
  }
}