/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-lime: #e5fb70;
  --brand-blue: #2892f4;
  --fg-primary: #333;
  --fg-secondary: #666;
  --bg-subtle: #fafafa;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --font: 'Nunito Sans', sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--fg-primary);
  line-height: 1.5;
  overflow-x: clip;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only--focusable:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
}

:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.6px;
  line-height: 48px;
}

/* ===== REVEAL ANIMATIONS ===== */
.js .reveal-up,
.js .reveal-left,
.js .reveal-right {
  opacity: 0;
  transition: opacity 0.35s var(--ease-out),
              transform 0.35s var(--ease-out);
  transition-delay: 0s;
}

.js .reveal-up { transform: translateY(24px); }
.js .reveal-left { transform: translateX(-30px); }
.js .reveal-right { transform: translateX(30px); }

.js .reveal-up.is-visible,
.js .reveal-left.is-visible,
.js .reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-up.is-visible.btn,
.js .reveal-left.is-visible.btn,
.js .reveal-right.is-visible.btn {
  transition: transform 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease;
}

.btn:hover,
.js .reveal-up.is-visible.btn:hover {
  transform: scale(1.02);
}

.btn:active,
.js .reveal-up.is-visible.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: #000;
  color: #fff;
  width: fit-content;
}

/* ===== SIA GROUP LOGOS ===== */
.story__group-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
}

.story__group-label h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.2px;
}

.story__logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  flex-wrap: wrap;
  width: 100%;
}

.story__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.story__logo[alt="Singapore Airlines"] { height: 34px; }
.story__logo[alt="KrisFlyer"]        { height: 28px; }
.story__logo[alt="Scoot"]            { height: 30px; }
.story__logo[alt="Pelago"]           { height: 30px; }
.story__logo[alt="KrisShop"]         { height: 28px; }
.story__logo[alt="Kris+"]            { height: 30px; }

/* ===== HEADER ===== */
.site-header {
  background: #000;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 80px;
  height: 56px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 184px;
  height: 29px;
}

.site-header__link {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #f1f1f1;
  padding: 8px 16px;
  border: 1px solid #999;
  border-radius: 100px;
  min-width: 63px;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.site-header__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== CAREERS FULL-BLEED SECTIONS ===== */
.hero,
.mission,
.life,
.interview {
  box-shadow: 0 0 0 100vmax var(--section-bg);
  clip-path: inset(0 -100vmax);
}

.hero      { --section-bg: #1a1a2e; }
.mission   { --section-bg: var(--bg-subtle); }
.life      { --section-bg: var(--brand-lime); }
.interview { --section-bg: #f1f1f1; }

/* ===== BUTTON VARIANTS ===== */
.btn--lime {
  background: var(--brand-lime);
  color: #000;
  width: fit-content;
}

/* ===== HERO ===== */
.hero {
  background: #000 url('assets/hero-bg.jpg') center / cover no-repeat;
  background: #000 url('assets/hero-bg.webp') center / cover no-repeat;
  min-height: 577px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: -1px;
  color: #fff;
}

/* Word-by-word reveal */
.js .hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
  transition-delay: var(--word-delay, 0s);
}

.hero__title--revealed .hero__word {
  opacity: 1;
  transform: translateY(0);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn--linkedin {
  background: #fff;
  color: var(--fg-primary);
  gap: 8px;
  padding: 0 16px 0 8px;
  width: fit-content;
}

.btn--linkedin svg {
  flex-shrink: 0;
}

/* ===== MISSION ===== */
.mission {
  background: var(--bg-subtle);
  padding: 64px 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission__content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mission__text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission__text strong { color: var(--fg-primary); }

.story__link {
  color: var(--fg-primary);
  text-decoration: underline transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.4s var(--ease-out);
}

.story__link:hover {
  text-decoration-color: currentColor;
}

.mission .story__group-label {
  margin-top: 24px;
}


/* ===== VALUES ===== */
.values {
  margin: 64px 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 16px;
  row-gap: 24px;
  width: 100%;
  max-width: 1206px;
}

.values__card:nth-child(1),
.values__card:nth-child(2),
.values__card:nth-child(6),
.values__card:nth-child(7) {
  grid-column: span 3;
}

.values__card:nth-child(3),
.values__card:nth-child(4),
.values__card:nth-child(5) {
  grid-column: span 2;
}

.values__card {
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform-style: preserve-3d;
  will-change: transform;
}

.values__card--grey  { background: #f1f1f1; }
.values__card--lime  { background: #eefaaf; }
.values__card--green { background: #d5f8df; }
.values__card--blue  { background: #dff5ff; }

.values__icon {
  width: 48px;
  height: 48px;
}

.values__card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.values__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.values__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.life__toggle { display: none; }

/* ===== LIFE AT PELAGO ===== */
.life {
  background: var(--brand-lime);
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.life__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.life__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: 319px;
}

.life__card {
  border-radius: 16px;
  overflow: hidden;
}

.life__card--quote {
  background: var(--bg-subtle);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.life__quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.life__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.life__author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.life__avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.life__author-info {
  display: flex;
  flex-direction: column;
}

.life__author-info strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.1px;
  color: var(--fg-primary);
}

.life__author-info span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--brand-blue);
}

/* ===== EXPLORE A CAREER ===== */
.explore {
  margin: 64px 0;
  padding: 32px 79px;
  display: flex;
  justify-content: center;
}

.explore__content {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.explore__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.1px;
  color: var(--fg-primary);
  width: 100%;
}

.explore__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.explore__row {
  display: flex;
  gap: 16px;
}

.explore__card {
  flex: 1;
  background: #eefaaf;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.explore__card img {
  width: 32px;
  height: 32px;
}

.explore__card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.explore__card p strong {
  font-weight: 700;
}

.explore__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.btn--primary-wide {
  background: #000;
  color: #fff;
  width: 100%;
  max-width: 400px;
}

.explore__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.1px;
  color: var(--fg-primary);
  width: 100%;
}

/* ===== INTERVIEW PROCESS ===== */
.interview {
  background: #f1f1f1;
  padding: 64px 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.interview__tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 6px;
  width: 100%;
  max-width: 800px;
}

.interview__tab {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-primary);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.3s var(--ease-out),
              font-weight 0.3s var(--ease-out);
  white-space: nowrap;
  text-align: center;
  line-height: 20px;
}

.interview__tab:hover {
  background: rgba(255, 255, 255, 0.5);
}

.interview__tab--active {
  background: transparent;
  font-weight: 700;
  z-index: 1;
}

.interview__tab-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  background: #fff;
  border-radius: var(--radius-sm);
  transition: left 0.35s var(--ease-out),
              width 0.35s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}

.interview__panel {
  width: 100%;
  max-width: 800px;
  animation: fadeInPanel 0.4s var(--ease-out);
}

.interview__panel--hidden {
  display: none;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.interview__panel-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.interview__intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.interview__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.interview__step {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.interview__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 24px;
}

.interview__step p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
  padding-top: 2px;
}

.interview__assessment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview__assessment strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.interview__assessment p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

/* Tips two-column grid */
.interview__tips-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 800px;
}

.interview__tips-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.interview__tip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview__tip strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.interview__tip p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

.interview__tip p strong {
  font-weight: 700;
}

.interview__tip ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}

.interview__tip ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

/* FAQ accordion */
.faq {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.faq__header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
  text-align: left;
  width: 100%;
}

.faq__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
  flex: 1;
}

.faq__caret {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq__header[aria-expanded="false"] .faq__caret {
  transform: rotate(180deg);
}

.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
  padding-top: 0;
}

.faq__header[aria-expanded="true"] + .faq__body {
  padding-top: 16px;
}

.faq__body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
}

/* ===== SOCIAL ===== */
.social {
  margin: 64px 0;
  padding: 0 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.social__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.social__link {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: opacity 0.4s var(--ease-out);
}

.social__link:hover {
  opacity: 0.8;
}

@keyframes socialBounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  70% { transform: translateY(1px); }
  100% { transform: translateY(0); }
}

/* ===== RESPONSIVE: 1200px ===== */
@media (max-width: 1200px) {
  .mission { padding: 64px 40px; }
  .values { padding: 0 24px; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .values__card { grid-column: span 1; }
  .life { padding: 48px 40px; }
  .life__rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .life__row { display: contents; }
  .life__card--image { min-height: 280px; }
  .explore { padding: 32px 40px; }
  .explore__row { flex-wrap: wrap; }
  .interview { padding: 64px 40px; }
  .social { padding: 0 40px; }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
  .site-header__inner { padding: 0 16px; }
  .site-footer__inner { padding: 24px 12px; }
  .site-footer__top { flex-direction: column; align-items: center; gap: 16px; }
  .site-footer__nav { flex-wrap: wrap; justify-content: center; }
  .site-footer__bottom { flex-direction: column; align-items: center; gap: 16px; }
  .site-footer__legal { align-items: center; text-align: center; }

  .section-title { font-size: 32px; line-height: 40px; }

  .story__group-label { gap: 16px; }
  .story__group-label h3 { font-size: 20px; line-height: 26px; }
  .story__logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 16px; padding: 16px 0; justify-items: center; align-items: center; }
  .story__logo,
  .story__logo[alt="Scoot"],
  .story__logo[alt="KrisFlyer"],
  .story__logo[alt="Singapore Airlines"],
  .story__logo[alt="Pelago"],
  .story__logo[alt="KrisShop"],
  .story__logo[alt="Kris+"] { height: 28px; }

  /* --- Hero --- */
  .hero {
    min-height: 480px;
    padding: 60px 24px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .hero__ctas {
    flex-direction: row;
    gap: 12px;
  }

  /* --- Mission --- */
  .mission { padding: 48px 24px 16px; }

  .mission__text {
    font-size: 16px;
    line-height: 24px;
  }

  /* --- Values --- */
  .values { padding: 0 16px; margin: 32px 0; gap: 16px; }
  .values__grid { grid-template-columns: 1fr; gap: 16px; }
  .values__card,
  .values__card:nth-child(n) { grid-column: span 1; }

  /* --- Life --- */
  .life { padding: 36px 16px; gap: 24px; }
  .life__rows { display: flex; flex-direction: column; gap: 16px; }
  .life__row { display: flex; flex-direction: column; gap: 16px; height: auto; }
  .life__row:nth-child(n+2) { display: none; }
  .life__rows--expanded .life__row:nth-child(n+2) {
    display: flex;
    animation: fadeReveal 0.4s var(--ease-out);
  }

  @keyframes fadeReveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .life__card--quote { padding: 24px; }
  .life__card--image { height: 240px; }

  .life__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--fg-primary);
    padding: 8px 16px;
    margin-top: 0;
  }

  .life__toggle-icon {
    transition: transform 0.3s var(--ease-out);
  }

  .life__toggle[aria-expanded="true"] .life__toggle-icon {
    transform: rotate(180deg);
  }

  /* --- Explore --- */
  .explore { padding: 32px 24px; margin: 0; }
  .explore__content { align-items: flex-start; text-align: left; gap: 16px; }
  .explore__row { flex-direction: column; }

  /* --- Interview --- */
  .interview { padding: 32px 24px; gap: 24px; }

  .interview__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .interview__tabs::-webkit-scrollbar { display: none; }

  .interview__tips-grid { flex-direction: column; gap: 24px; }

  /* --- Social --- */
  .social { padding: 0 24px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  border-top: 4px solid var(--brand-lime);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.site-footer__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 28px 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__logo {
  display: flex;
  align-items: center;
}

.site-footer__logo img {
  width: 184px;
  height: 29px;
}

.site-footer__nav {
  display: flex;
  align-items: center;
}

.site-footer__nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #f1f1f1;
  padding: 8px 12px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.site-footer__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__nav img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__legal > span {
  font-size: 12px;
  line-height: 16px;
  color: #999;
}

.site-footer__terms {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-footer__terms a {
  font-size: 12px;
  line-height: 16px;
  color: #999;
  text-decoration: underline transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.4s var(--ease-out);
  white-space: nowrap;
}

.site-footer__terms a:hover {
  text-decoration-color: currentColor;
}

.site-footer__terms span {
  font-size: 12px;
  line-height: 16px;
  color: var(--fg-secondary);
}

.site-footer__apps {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.site-footer__apps img {
  height: 40px;
  width: auto;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .social__link,
  .btn--lime,
  .life__card--image img,
  .values__card,
  .faq__body,
  .faq__caret,
  .interview__tab-indicator {
    transition: none;
  }

  .interview__panel {
    animation: none;
  }

  .social__link {
    animation: none !important;
  }

  .js .hero__word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
