/* ============================================
   Unbreakable Harvest — Design System
   ============================================ */

:root {
  --oasis-blue: #3CA7D2;
  --charcoal: #12110E;
  --light-grey: #D7D7D7;
  --white: #FFFFFF;
  --nav-height: 70px;
  --ease-arrow: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset ---- */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lenis */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: '29LT Bukra', 'Helvetica Neue', Arial, sans-serif;
  background: var(--light-grey);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--oasis-blue);
  border-top: 3px solid var(--charcoal);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(60, 167, 210, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  padding-left: 1.5rem;
  padding-right: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.nav__icon {
  height: 26px;
  width: auto;
}

.nav__wordmark-link {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  margin-right: auto;
}

.nav__wordmark {
  height: 13px;
  width: auto;
}

/* White vertical dividers — full height of nav */
.nav__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.4);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2rem;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.nav__link:hover {
  opacity: 0.5;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.25rem;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav__cta-text {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__cta-arrow {
  opacity: 0;
  transform: translate(-8px, 4px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__cta:hover .nav__cta-text {
  transform: translateX(-4px);
}

.nav__cta:hover .nav__cta-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   First Fold — locks to 100vh
   ============================================ */

.first-fold {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

/* Wrapper for scroll parallax — separate from image for transform isolation */
.hero__image-wrap {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform-origin: 55% 60%;
}

/* Gradient overlay — darkens on scroll to ease transition */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(18, 17, 14, 0.35));
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 4% 3.5% 0;
  z-index: 2;
}

.hero__title {
  width: 100%;
}

.hero__line {
  display: block;
  font-weight: 500;
  font-size: clamp(3rem, 6.2vw, 6.5rem);
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero__line--1 {
  text-align: left;
}

.hero__line--2 {
  text-align: right;
  margin-top: 0.1em;
}

/* Word-split masked reveal — each word rises from behind overflow: hidden mask */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word__inner {
  display: inline-block;
  padding-bottom: 0.08em;
}

/* ---- Scroll cue ---- */

.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.hero__scroll-label {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero__scroll-fill {
  width: 100%;
  height: 6px;
  background: var(--white);
  position: absolute;
  top: -6px;
  animation: scroll-fill 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scroll-fill {
  0%   { transform: translateY(0); }
  100% { transform: translateY(38px); }
}

/* ============================================
   Intro Section
   ============================================ */

.intro {
  background: var(--light-grey);
  padding: 4rem 3.5% 4.5rem;
  display: flex;
  align-items: center;
}

.intro__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.intro__content {
  max-width: 460px;
  margin-left: auto;
  margin-right: 18%;
}

.intro__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--oasis-blue);
  margin-bottom: 2.5rem;
}

.intro__ctas {
  display: flex;
  gap: 2.5rem;
}

/* ============================================
   CTA Component
   ============================================ */

a.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--oasis-blue);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.cta__arrow {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-arrow);
}

.cta:hover .cta__arrow {
  transform: translate(3px, -3px);
}

/* ============================================
   Mission Section
   ============================================ */

.mission {
  position: relative;
}

.mission__frame {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

.mission__image {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.mission__card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46%;
  max-width: 640px;
  z-index: 2;
}

.mission__card-head {
  background: var(--oasis-blue);
  padding: 2.5rem 3rem;
}

.mission__heading {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
}

.mission__card-body {
  background: var(--white);
  padding: 2rem 3rem 2.5rem;
}

.mission__card-body p {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.mission__card-body p:last-of-type {
  margin-bottom: 1.75rem;
}

/* ============================================
   Quote Section
   ============================================ */

.quote {
  background: var(--light-grey);
  padding: 6rem 3.5%;
}

.quote__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote__avatar-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 3rem;
  border-radius: 50%;
  overflow: hidden;
}

.quote__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.quote__text {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--oasis-blue);
  margin-bottom: 2rem;
}

.quote__cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--oasis-blue);
  opacity: 0.7;
}

/* ============================================
   Divider
   ============================================ */

.divider {
  border: none;
  border-top: 1px solid var(--white);
  margin: 0;
}

/* ============================================
   Venture Intro
   ============================================ */

.venture-intro {
  background: var(--light-grey);
  padding: 10rem 3.5% 2rem;
  text-align: center;
}

.venture-intro__inner {
  max-width: 600px;
  margin: 0 auto;
}

.venture-intro__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.venture-intro__icon {
  position: absolute;
  width: 140px;
  height: 140px;
}

.venture-intro__heading {
  position: relative;
  font-size: 3rem;
  font-weight: 500;
  color: var(--oasis-blue);
}

.venture-intro__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--oasis-blue);
  margin-bottom: 2rem;
}

.venture-intro__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.venture-intro__mouse {
  width: 44px;
  height: 44px;
  opacity: 0.6;
}

.venture-intro__scroll-text {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--oasis-blue);
  opacity: 0.6;
}

/* ============================================
   Venture Slides (pinned)
   ============================================ */

.venture-slides {
  position: relative;
  background: var(--light-grey);
  --img-w: 65%;
  --img-h: 80%;
  --img-top: calc((100% - var(--img-h)) / 2);
}

.venture-slides__frame {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.venture-slides__titles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: difference;
}

.venture-slides__title {
  position: absolute;
  top: var(--img-top);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
}

/* Images layer */
.venture-slides__image-wrap {
  position: relative;
  width: var(--img-w);
  height: var(--img-h);
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}

.venture-slides__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}


/* Descs layer: IN FRONT of image */
.venture-slides__descs {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.venture-slides__desc {
  position: absolute;
  top: calc(var(--img-top) + 6rem);
  left: 50%;
  transform: translateX(-50%);
  max-width: 420px;
  width: 80%;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.venture-slides__counter {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.4;
  z-index: 4;
}

/* ============================================
   Challenges Section
   ============================================ */

.challenges {
  background: var(--light-grey);
}

.challenges__slides {
  position: relative;
  background: var(--light-grey);
  --ch-w: 50%;
  --ch-gap: 4rem;
  --ch-img-top: 17rem;
}

.challenges__frame {
  position: relative;
  height: 100vh;
  isolation: isolate;
}

.challenges__heading {
  position: absolute;
  top: var(--ch-gap);
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-weight: 500;
  color: var(--oasis-blue);
  white-space: nowrap;
  z-index: 5;
}

.challenges__titles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: difference;
}

.challenges__title-group {
  position: absolute;
  inset: 0;
}

.challenges__label {
  position: absolute;
  top: calc(var(--ch-gap) * 2 + 3.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.challenges__name {
  position: absolute;
  top: calc(var(--ch-img-top) + (100% - var(--ch-img-top) - 10rem) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
}

.challenges__image-wrap {
  position: absolute;
  top: var(--ch-img-top);
  left: 50%;
  transform: translateX(-50%);
  width: var(--ch-w);
  bottom: 10rem;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}

.challenges__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.challenges__descs {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.challenges__desc {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 560px;
  width: 70%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.75;
}

.challenges__counter {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.4;
  z-index: 4;
}

/* ============================================
   Tech Cards (horizontal scroll)
   ============================================ */

.tech {
  background: var(--light-grey);
}

.tech__pin {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
}

.tech__heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  color: var(--oasis-blue);
  padding: 0 3.5%;
  margin-bottom: 3rem;
  flex-shrink: 0;
}

.tech__track {
  display: flex;
  gap: 1.25rem;
  padding: 0 3.5%;
  padding-right: 0;
}


.tech__card {
  flex: 0 0 380px;
  height: 420px;
  background: var(--oasis-blue);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--white);
}

.tech__card--secondary {
  background: var(--white);
  color: var(--charcoal);
}

.tech__card-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.tech__card-title {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.tech__card-text {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.8;
}

.tech__card-num {
  position: absolute;
  bottom: 1.25rem;
  left: 2.5rem;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.12;
}

/* ============================================
   Process / DNA Journey
   ============================================ */

.process {
  background: var(--white);
}

.process__pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.process__content {
  position: relative;
  width: 38%;
  padding-left: 8%;
  z-index: 2;
  display: grid;
}

.process__step {
  grid-area: 1 / 1;
}

.process__step-num {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--oasis-blue);
  margin-bottom: 0.75rem;
}

.process__step-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.process__step-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  opacity: 0.7;
  max-width: 340px;
}

.process__visual {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  --circle-size: min(680px, 80vh);
  width: var(--circle-size);
  height: var(--circle-size);
}

.process__circle {
  position: relative;
  width: 100%;
  height: 100%;
}

.process__dna {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process__dna--ghost {
  opacity: 0.35;
}

.process__dna--active {
  clip-path: inset(0 0 80% 0);
}

.process__badge {
  position: absolute;
  top: 15.4%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--oasis-blue);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.process__counter {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.4;
  z-index: 4;
}

/* ============================================
   Charcoal Breaker
   ============================================ */

.breaker {
  position: relative;
  z-index: 10;
  border: none;
  border-top: 1px solid var(--charcoal);
  margin: 0;
}

/* ============================================
   Application Form
   ============================================ */

.apply {
  position: relative;
  z-index: 10;
  background: var(--white);
  padding: 6rem 8% 8rem;
}

.apply__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.apply__content {
  max-width: 460px;
}

.apply__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--oasis-blue);
  margin-bottom: 1.5rem;
}

.apply__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
  opacity: 0.7;
}

.apply__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.apply__cta-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--oasis-blue);
  transition: transform 0.5s var(--ease-arrow);
}

.apply__cta:hover .apply__cta-arrow {
  transform: translate(4px, -4px);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
  background: var(--oasis-blue);
  color: var(--white);
  padding: 5rem 8%;
}

.faq__intro {
  max-width: 560px;
  margin-bottom: 4rem;
}

.faq__lead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.faq__desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.85;
}

.faq__columns {
  display: flex;
  gap: 6%;
}

.faq__col {
  flex: 1;
}

.faq__col-heading {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Sessions column */

.faq__sessions-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.faq__session {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq__session-name {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
}

.faq__session-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.faq__session-arrow {
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-arrow);
}

.faq__session-cta:hover {
  opacity: 1;
}

.faq__session-cta:hover .faq__session-arrow {
  transform: translate(2px, -2px);
}

/* FAQ Accordion */

.faq__list {
}

.faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.faq__icon {
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  opacity: 0.7;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq__answer-inner {
  padding-bottom: 1.5rem;
}

.faq__answer-inner p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.faq__answer-inner p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Final CTA
   ============================================ */

.divider--white {
  border-top-color: var(--white);
}

.final-cta {
  background: var(--oasis-blue);
  padding: 8rem 8%;
  text-align: center;
}

.final-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.final-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.final-cta__arrow {
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-arrow);
}

.final-cta__link:hover .final-cta__arrow {
  transform: translate(4px, -4px);
}

.final-cta__sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  opacity: 0.7;
}

/* ============================================
   Page Content Wrapper (for footer reveal)
   ============================================ */

.page-content {
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  background: var(--light-grey);
  padding: 4rem 8%;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.site-footer__block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__block--right {
  margin-left: auto;
}

.site-footer__label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white);
  white-space: nowrap;
}

.site-footer__logo {
  display: block;
}

.site-footer__logo--ibex {
  height: 80px;
  width: auto;
}

.site-footer__logo--silal {
  height: 64px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.site-footer__logo--io {
  height: 220px;
  width: auto;
}

/* ============================================
   Divider variants
   ============================================ */

.divider--charcoal {
  border-top-color: var(--charcoal);
}

/* ============================================
   About: Organisations
   ============================================ */

.about-orgs {
  background: var(--oasis-blue);
  padding: 6rem 8%;
  isolation: isolate;
}

.about-orgs__inner {
  display: flex;
  gap: 6%;
}

.about-orgs__col {
  flex: 1;
}

.about-orgs__logo {
  height: 65px;
  width: auto;
  display: block;
  margin-bottom: 2rem;
}

.about-orgs__logo--io {
  filter: brightness(0) invert(1);
}

.about-orgs__logo--silal,
.about-orgs__logo--adq {
  height: 55px;
}

.about-orgs__logo-wrap {
  display: inline-block;
  background: var(--oasis-blue);
  line-height: 0;
}

.about-orgs__logo-wrap img {
  mix-blend-mode: screen;
}

.about-orgs__name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.about-orgs__text {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.about-orgs__text:last-child {
  margin-bottom: 0;
}

/* ============================================
   About: Partners
   ============================================ */

.about-partners {
  background: var(--white);
  padding: 5rem 8% 6rem;
}

.about-partners__heading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4rem;
}

.about-partners__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-partners__logo {
  width: 140px;
  height: 60px;
  object-fit: contain;
}

/* Per-logo sizing to visually equalise */
.about-partners__logo--limagrain {
  width: 150px;
}

.about-partners__logo--iyris {
  width: 120px;
  transform: translateY(4px);
}

.about-partners__logo--desolenator {
  width: 160px;
}

.about-partners__logo--rnz {
  width: 80px;
  height: 70px;
}

.about-partners__logo--dana {
  width: 80px;
  height: 70px;
}

/* ============================================
   Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .nav__inner {
    padding-left: 1.25rem;
  }

  .nav__links {
    gap: 1.5rem;
  }

  .hero__line {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .intro__content {
    max-width: 400px;
    margin-left: auto;
    margin-right: 8%;
  }

  .mission__card {
    width: 55%;
  }

  .mission__card-head {
    padding: 2rem 2.5rem;
  }

  .mission__card-body {
    padding: 1.75rem 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav__links,
  .nav__inner > .nav__divider:last-of-type {
    display: none;
  }

  .nav__cta {
    margin-left: auto;
  }

  .hero__line {
    font-size: clamp(1.75rem, 7vw, 2.75rem);
  }

  .intro {
    padding: 3rem 6%;
  }

  .intro__content {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .intro__ctas {
    flex-direction: column;
    gap: 1.25rem;
  }

  .mission__frame {
    min-height: auto;
  }

  .mission__card {
    width: 100%;
    max-width: 100%;
  }

  .mission__card-head {
    padding: 1.75rem 1.5rem;
  }

  .mission__card-body {
    padding: 1.5rem 1.5rem 2rem;
  }

  .quote {
    padding: 4rem 6%;
  }

  .quote__avatar-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
  }

  .venture-intro {
    padding: 2.5rem 6% 1.5rem;
  }

  .venture-slides {
    --img-w: 90%;
    --img-h: 70%;
  }

  .venture-slides__title {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .venture-slides__counter {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .challenges__slides {
    --ch-w: 85%;
    --ch-gap: 2.5rem;
    --ch-img-top: 12rem;
  }

  .challenges__name {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .challenges__counter {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .tech__pin {
    padding: 3rem 0 2rem;
  }

  .tech__heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .tech__track {
    gap: 1rem;
    padding: 0 6%;
  }

  .tech__card {
    flex: 0 0 280px;
    height: 360px;
    padding: 2rem;
  }

  .tech__card-num {
    font-size: 2.5rem;
  }

  .process__content {
    width: 100%;
    padding: 0 6%;
    z-index: 3;
  }

  .process__step-text {
    max-width: 100%;
  }

  .process__visual {
    right: 50%;
    transform: translate(50%, -50%);
    --circle-size: min(350px, 50vh);
    opacity: 0.25;
    z-index: 1;
  }

  .process__badge {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .apply {
    padding: 4rem 6% 5rem;
  }

  .apply__inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .apply__cta {
    font-size: 1.5rem;
  }

  .apply__cta-arrow {
    width: 22px;
    height: 22px;
  }

  .faq {
    padding: 3.5rem 6%;
  }

  .faq__columns {
    flex-direction: column;
    gap: 3rem;
  }

  .faq__session {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-footer {
    padding: 3rem 6%;
  }

  .site-footer__inner {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .site-footer__block--right {
    flex-basis: 100%;
    margin-left: 0;
  }

  .site-footer__logo--ibex {
    height: 40px;
  }

  .site-footer__logo--silal {
    height: 32px;
  }

  .site-footer__logo--io {
    height: 100px;
  }

  .about-orgs {
    padding: 4rem 6%;
  }

  .about-orgs__inner {
    flex-direction: column;
    gap: 3rem;
  }

  .about-partners {
    padding: 3.5rem 6% 4rem;
  }

  .about-partners__logos {
    gap: 2rem;
  }

  .about-partners__logo {
    height: 30px;
  }
}
