/* ============================================================
   JOBY AVIATION — STYLESHEET
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg: #f5f4df;
  --color-dark: #0e1620;
  --color-blue: #007ae5;
  --color-orange: #eb6110;
  --color-cream: #f5f4df;
  --color-white: #ffffff;
  --color-text: #0e1620;
  --color-text-muted: rgba(14, 22, 32, 0.5);

  --font-display: 'DM Sans', Arial, sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;

  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-snappy: cubic-bezier(0.2, 0.21, 0, 1);

  --nav-height: 60px;
  --section-padding: clamp(80px, 10vw, 140px);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  overscroll-behavior: none;
  scroll-behavior: auto;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

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

ul {
  list-style: none;
}

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

/* ---------- Utility ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.3s var(--ease-out-cubic),
    color 0.3s var(--ease-out-cubic),
    border-color 0.3s var(--ease-out-cubic),
    transform 0.2s var(--ease-out-cubic);
}

.btn:hover {
  transform: scale(1.03);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn--dark:hover {
  background: #1e2d42;
}

.btn--light {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn--light:hover {
  background: var(--color-cream);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.link-underline {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 2px;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-cubic);
}

.link-underline:hover::after {
  transform: scaleX(0.5);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.8rem;
  height: var(--nav-height);
  background: var(--color-cream);
  transition: background 0.4s var(--ease-out-cubic), box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(245, 244, 223, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(14, 22, 32, 0.08);
}

.nav__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: opacity 0.2s;
}

.nav__menu-btn:hover {
  opacity: 0.6;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  width: 28px;
  height: 28px;
}

.nav__logo-text {
  font-size: 2rem;
  font-weight: 700;
}

.nav__investors {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: opacity 0.2s;
}

.nav__investors:hover {
  opacity: 0.6;
}

.nav__investors svg {
  width: 12px;
  height: 12px;
}

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-cubic);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 3.2rem 4rem;
  overflow-y: auto;
}

.menu-overlay__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4rem;
  padding-top: 1rem;
}

.menu-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  padding: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.menu-overlay__close:hover {
  opacity: 1;
}

.menu-overlay__close svg {
  width: 28px;
  height: 28px;
}

.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-overlay__links {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.menu-link {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-cubic), color 0.2s;
}

.menu-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.menu-overlay.open .menu-link {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.open .menu-link:nth-child(1) {
  transition-delay: 0.05s;
}

.menu-overlay.open .menu-link:nth-child(2) {
  transition-delay: 0.1s;
}

.menu-overlay.open .menu-link:nth-child(3) {
  transition-delay: 0.15s;
}

.menu-overlay.open .menu-link:nth-child(4) {
  transition-delay: 0.2s;
}

.menu-overlay.open .menu-link:nth-child(5) {
  transition-delay: 0.25s;
}

.menu-overlay.open .menu-link:nth-child(6) {
  transition-delay: 0.3s;
}

.menu-overlay__socials,
.menu-overlay__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.menu-overlay__socials a,
.menu-overlay__legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.2s;
}

.menu-overlay__socials a:hover,
.menu-overlay__legal a:hover {
  color: var(--color-white);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(14, 22, 32, 0.15) 0%,
      rgba(14, 22, 32, 0.4) 60%,
      rgba(14, 22, 32, 0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  margin-top: 4rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 11.2rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero__line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
  padding-bottom: 0.05em;
}

.hero__line-inner {
  display: block;
}

.hero__sub {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.8s var(--ease-out-cubic), transform 0.8s 0.8s var(--ease-out-cubic);
}

.hero__sub.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s 1.4s var(--ease-out-cubic) forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollLine 2s 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================================
   SECTION 2 — EXPERIENCE HIGHLIGHTS
   ============================================================ */
.experience {
  position: relative;
  min-height: 300vh;
}

.experience__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--color-cream);
}

.exp-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out-cubic), visibility 0.7s var(--ease-out-cubic);
}

.exp-slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.exp-slide__image-wrap {
  width: 70%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1444/1700;
  overflow: hidden;
  border-radius: 16px;
  will-change: transform;
}

.exp-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}

.exp-slide--active .exp-slide__image {
  transform: scale(1.0);
}

.exp-slide__content {
  padding: 3rem 2rem 3rem 4rem;
}

.exp-slide__text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 2.4rem;
  max-width: 400px;
}

.experience__label {
  position: absolute;
  top: calc(var(--nav-height) + 1.6rem);
  left: 3.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 10;
}

.exp-slide__counter {
  position: absolute;
  bottom: 2.4rem;
  right: 3.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================================
   SECTION 3 — COMMUTE TEXT REVEAL
   ============================================================ */
.commute-text {
  padding: var(--section-padding) 4rem;
  background: var(--color-cream);
}

.commute-text__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.commute-text__big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  margin-bottom: 4.8rem;
  max-width: 900px;
}

.commute-text__fade {
  color: rgba(14, 22, 32, 0.35);
  transition: color 0.6s ease;
}

.commute-text__fade.active {
  color: var(--color-dark);
}

/* ============================================================
   SECTION 4 — APP INTEGRATION
   ============================================================ */
.app-section {
  padding: var(--section-padding) 4rem;
  background: var(--color-cream);
  overflow: hidden;
}

.app-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.app-section__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.app-section__bg-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.app-section__phone {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 40%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(14, 22, 32, 0.2);
  z-index: 2;
}


.app-section__tag {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
}

.app-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.app-section__body {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 3.2rem;
  max-width: 420px;
}

/* ============================================================
   SECTION 5 — TECHNOLOGY
   ============================================================ */
.technology {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.technology__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technology__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(14, 22, 32, 0.75) 0%,
      rgba(14, 22, 32, 0.2) 60%,
      transparent 100%);
}

.technology__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 6rem;
  max-width: 700px;
}

.technology__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 3rem;
}

.technology__specs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3.6rem;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  padding-left: 1.6rem;
}

.technology__specs li {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION 6 — ZERO SECTION
   ============================================================ */
.zero-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.zero-section__bg {
  position: absolute;
  inset: 0;
}

.zero-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zero-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(14, 22, 32, 0) 40%,
      rgba(14, 22, 32, 0.7) 100%);
}

.zero-section__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 600px;
}

.zero-section__quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-white);
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 1.6rem;
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION 7 — PARTNERS
   ============================================================ */
.partners {
  padding: var(--section-padding) 4rem;
  background: var(--color-cream);
}

.partners__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.partners__label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
}

.partners__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 700px;
  margin-bottom: 6rem;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 3rem 4rem;
  align-items: center;
  border-top: 1px solid rgba(14, 22, 32, 0.1);
  padding-top: 4rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-dark);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  height: 40px;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo__svg,
.partner-logo svg {
  height: 28px;
  width: auto;
  max-width: 130px;
}

/* ============================================================
   SECTION 8 — NEWS
   ============================================================ */
.news {
  padding: var(--section-padding) 4rem;
  background: var(--color-cream);
  border-top: 1px solid rgba(14, 22, 32, 0.1);
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.news__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-dark);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.news-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  background: #e0dfd0;
}

.news-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s var(--ease-out-cubic);
}

.news-card:hover .news-card__img-wrap img {
  transform: scale(1.1);
}


.news-card__date {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  display: block;
}

.news-card__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  margin-bottom: 1.6rem;
}

.news-card__link {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* ============================================================
   SECTION 9 — VISION
   ============================================================ */
.vision {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.vision__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.vision__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(14, 22, 32, 0.8) 0%,
      rgba(14, 22, 32, 0.4) 50%,
      rgba(14, 22, 32, 0.2) 100%);
}

.vision__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 580px;
}

.vision__label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.vision__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.5vw, 6.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 2.4rem;
}

.vision__body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3.6rem;
}

.vision__btns {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.vision__corner-label {
  position: absolute;
  bottom: 2.4rem;
  right: 3.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
}

/* ============================================================
   SECTION 10 — CAREERS
   ============================================================ */
.careers {
  padding: var(--section-padding) 4rem;
  background: var(--color-cream);
  border-top: 1px solid rgba(14, 22, 32, 0.08);
}

.careers__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.careers__tag {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
  display: block;
}

.careers__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.careers__body {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 3.6rem;
  max-width: 460px;
}

.careers__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1444/1700;
}

.careers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-cubic);
}

.careers__image:hover img {
  transform: scale(1.04);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 6rem 4rem 3.2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.footer__brand {}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}

.footer__brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 200px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer__nav-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.6rem;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__nav-col a {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer__nav-col a:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer__copy {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   GSAP ANIMATION INITIAL STATES
   ============================================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.js-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.js-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.js-scale-in {
  opacity: 0;
  transform: scale(0.94);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers__inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .app-section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav {
    padding: 1.2rem 2rem;
  }

  .exp-slide {
    grid-template-columns: 1fr;
    padding: 0 2rem;
    align-content: center;
    gap: 2rem;
  }

  .exp-slide__image-wrap {
    width: 80%;
    margin: auto;
  }

  .exp-slide__content {
    padding: 1.6rem 1rem;
    text-align: center;
  }

  .commute-text {
    padding: 5rem 2rem;
  }

  .partners {
    padding: 5rem 2rem;
  }

  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }

  .news {
    padding: 5rem 2rem;
  }

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

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .technology__content {
    padding: 0 2rem 4rem;
  }

  .vision__content {
    padding: 0 2rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .menu-link {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }
}

@media (max-width: 480px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .vision__btns {
    flex-direction: column;
  }
}