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

:root {
  --brand-lime: #e5fb70;
  --brand-blue: #2892f4;
  --brand-light-blue: #dff5ff;
  --fg-primary: #333;
  --fg-secondary: #666;
  --bg-subtle: #fafafa;
  --bg-disabled: #f6f6f6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --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: 8px;
  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);
}

/* ===== ABOUT-US FULL-BLEED SECTIONS ===== */
.hero,
.story,
.stats,
.milestones,
.reviews,
.value-props {
  box-shadow: 0 0 0 100vmax var(--section-bg);
  clip-path: inset(0 -100vmax);
}


.hero        { --section-bg: var(--brand-lime); }
.story       { --section-bg: var(--bg-subtle); }
.stats       { --section-bg: var(--brand-blue); }
.milestones  { --section-bg: var(--bg-subtle); }
.reviews     { --section-bg: var(--brand-light-blue); }
.value-props { --section-bg: var(--bg-disabled); }

/* ===== HERO ===== */
.hero {
  background: var(--brand-lime);
  min-height: 577px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 64px 191px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 489px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: -0.75px;
}

.hero__text {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* Hero scrolling images */
.hero__images {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  gap: 24px;
  padding-right: 111px;
  /* Prevent overlap with text content */
  left: min(56%, 768px);
}

.hero__image-col {
  --hero-img-h: 263px;
  --hero-gap: 24px;
  width: 230px;
  height: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

.js .hero__image-col {
  opacity: 0;
}

.js .hero__image-col--loaded {
  transition: opacity 1.2s var(--ease-out);
  opacity: 1;
}

.hero__image-track {
  display: flex;
  flex-direction: column;
}

.hero__image-track picture {
  display: block;
  flex-shrink: 0;
  margin-bottom: var(--hero-gap);
}

.hero__image-track .hero__mobile-only {
  display: none;
}

.hero__img {
  width: 230px;
  height: var(--hero-img-h);
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* Auto-scroll down (4 images + 4 duplicates) */
.hero__image-col--down .hero__image-track {
  animation: scrollDown 35s linear infinite;
}

/* Auto-scroll up (3 images + 3 duplicates) */
.hero__image-col--up .hero__image-track {
  animation: scrollUp 30s linear infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ===== STORY SECTION ===== */
.story {
  background: var(--bg-subtle);
  padding: 64px 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.story__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.story__text {
  max-width: 800px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-primary);
  text-align: left;
}

.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;
}

.story__video {
  width: 100%;
  max-width: 804px;
}

.story__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}



.story__video-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.story__video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__video-play {
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out),
              opacity 0.5s var(--ease-out);
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.story__video-link:hover .story__video-play {
  transform: scale(1.08);
  opacity: 1;
}

/* ===== STATS SECTION ===== */
.stats {
  background: var(--brand-blue);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.stats__wave svg { width: 100%; height: auto; }

.stats__heading {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 40px;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.stats__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1037px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  color: #fff;
}

.stat__number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.6px;
}

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

/* ===== EXPERIENCES ===== */
.experiences {
  padding: 64px 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.experiences__grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 0;
}

.experience-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 92px;
}

.experience-tile__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-tile__label {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* ===== MILESTONES ===== */
.milestones {
  background: var(--bg-subtle);
  padding: 64px 119px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.milestones__grid {
  display: flex;
  gap: 48px;
  width: 100%;
  max-width: 1128px;
}

.milestones__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Vertical timeline line — draws in on scroll */
.milestones__col::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 24px;
  bottom: 24px;
  width: 0;
  border-left: 1px dotted #ccc;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.8s var(--ease-out) 0.3s;
}

.milestones__col--drawn::before {
  transform: scaleY(1);
}

.milestones__col:nth-child(2)::before {
  transition-delay: 0.5s;
}

.milestone {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.milestone__icon {
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.milestone__icon img {
  display: block;
}

.milestone__content {
  flex: 1;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.milestone:last-child .milestone__content { border-bottom: none; }

.milestone__year {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.milestone__content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--fg-primary);
}

.partners__more { display: none; }
.reviews__toggle { display: none; }

/* ===== REVIEWS ===== */
.reviews {
  background: var(--brand-light-blue);
  padding: 64px 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 12px;
  justify-content: center;
}

.review {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 444px;
  position: relative;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Card review (white bg + image top) */
.review--card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.review__thumb {
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 16px 16px 0;
}

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

.review:hover .review__thumb img { transform: scale(1.03); }

/* Overlay review (full bleed image) */
.review--overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

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

.review:hover .review__image img { transform: scale(1.03); }

.review__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 42%, rgba(0,0,0,0.65) 63%);
}

/* Light sweep on hover */
.review::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255,255,255,0.08) 50%,
    transparent 60%
  );
  background-size: 300% 300%;
  background-position: 100% 100%;
  transition: background-position 0.8s var(--ease-out);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.review:hover::after {
  background-position: 0% 0%;
}

.review__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.review__body--light { color: #fff; }

.review__user {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.review__avatar--green { background: #107e2f; }
.review__avatar--red { background: #f65c5c; }
.review__avatar--blue { background: #3b8dee; }

.review__info { display: flex; flex-direction: column; }
.review__info strong { font-size: 14px; line-height: 20px; }
.review__info span { font-size: 12px; color: #767676; line-height: 16px; }
.review__body--light .review__info span { color: rgba(255,255,255,0.9); }

.review__stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.review__stars img {
  width: 16px;
  height: 16px;
  display: block;
}

.review__text {
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review__link {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: underline transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.4s var(--ease-out);
}

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

.review__link--light { color: #45abff; }

/* ===== PARTNERS ===== */
.partners {
  margin: 64px 0;
  padding: 36px 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.partners__track-wrapper {
  width: 100%;
  height: 72px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners__track {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 72px;
  padding: 16px 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.partner-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}

.partner-logo--dimmed { opacity: 0.35; }
.partner-logo--focus { opacity: 1; transform: scale(1.08); }
.partner-logo--dimmed.partner-logo--focus { opacity: 1; }


@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== VALUE PROPS ===== */
.value-props {
  background: var(--bg-disabled);
  padding: 48px 79px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-props__title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 40px;
  text-align: left;
}

.value-props__grid {
  display: flex;
  gap: 8px;
}

.vp-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.15s ease;
}

.vp-card:hover {
  transform: scale(1.02);
}

.vp-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}


.vp-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vp-card__body > strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}

.vp-card__body p {
  font-size: 14px;
  line-height: 20px;
  color: var(--fg-primary);
}

.vp-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vp-card__link:hover { color: #000; }

.value-props__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.value-props__brand-logo {
  height: 28px;
  width: auto;
}

/* ===== APP BANNER ===== */
.app-banner {
  padding: 80px 79px;
}

.app-banner__wrapper {
  position: relative;
  overflow: visible;
}

.app-banner__inner {
  background: #000;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  padding-left: 400px;
  color: #fff;
}

/* Doodle */
.app-banner__doodle {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, 45%) rotate(-10deg);
  pointer-events: none;
}

.app-banner__doodle path {
  fill: var(--brand-lime);
}

/* Phone mockup */
.app-banner__phone {
  position: absolute;
  bottom: 0;
  left: 114px;
  width: 240px;
  z-index: 2;
}

.app-banner__phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content area */
.app-banner__content {
  padding: 32px 24px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
  justify-content: center;
  min-height: 260px;
}

.app-banner__heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.6px;
}

.app-banner__highlight { color: var(--brand-lime); }

/* Footer: description + badges on left, QR on right */
.app-banner__footer {
  display: flex;
  gap: 20px;
}

.app-banner__footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.app-banner__footer-content p { margin: 0; }

.app-banner__badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.app-badge-img {
  height: 41px;
  width: auto;
  display: block;
  transition: opacity 0.4s var(--ease-out);
}

.app-badge-img:hover { opacity: 0.8; }

/* QR code */
.app-banner__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-align: center;
  font-size: 10px;
}

.app-banner__qr-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
}

.app-banner__qr small {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .hero__images { padding-right: 40px; }
  .hero__image-col { width: 190px; }
  .hero__img { width: 190px; height: 217px; }
}

@media (max-width: 1200px) {
  .hero {
    padding: 64px 40px;
    align-items: center;
  }

  .hero__images {
    position: relative;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    height: 500px;
    overflow: hidden;
    flex: 1;
    justify-content: flex-end;
  }

  .hero__image-col {
    --hero-img-h: 218px;
    width: 190px;
    height: 100%;
    overflow: hidden;
  }

  .hero__image-col--down .hero__image-track {
    animation: scrollDown 30s linear infinite;
  }

  .hero__image-col--up .hero__image-track {
    animation: scrollUp 25s linear infinite;
  }

  .hero__img {
    width: 190px;
    height: var(--hero-img-h);
  }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .milestones { padding: 64px 40px; }
  .milestones__grid { flex-direction: column; }
  .milestones__col::before { display: none; }

  .app-banner { padding: 60px 24px; }
  .app-banner__inner { padding-left: 230px; }
  .app-banner__phone { left: 16px; width: 210px; min-height: 105%; }
  .app-banner__content { padding: 28px 20px; gap: 16px; max-width: 100%; }
  .app-banner__heading { font-size: 26px; line-height: 34px; }
  .app-banner__doodle {
    transform: translate(-18%, 10%) rotate(-15deg);
  }

  .value-props__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partners { padding: 64px 40px; }
}

@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 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 {
    padding: 32px 24px 24px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content { max-width: 100%; }
  .hero__title { font-size: 32px; line-height: 40px; }

  .hero__images {
    position: relative;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
  }

  .hero__image-col {
    width: 100%;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero__image-col--up { display: none; }
  .hero__image-track .hero__mobile-only { display: block; }

  .hero__image-col--down .hero__image-track {
    animation: scrollLeft 30s linear infinite;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .hero__image-col--down .hero__image-track picture {
    margin-bottom: 0;
    margin-right: 16px;
  }

  .hero__img {
    width: 197px;
    height: 231px;
  }

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

  @keyframes scrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-1491px, 0, 0); }
  }

  /* --- Story --- */
  .story { padding: 32px 24px; gap: 32px; }
  .story__text-block { gap: 16px; }

  .story__video { max-width: 100%; }

  /* --- Stats --- */
  .stats { padding: 48px 16px; }
  .stats__grid { flex-direction: column; gap: 32px; }
  .stat__number { font-size: 32px; line-height: 40px; }

  /* --- Experiences --- */
  .experiences { padding: 32px 16px; gap: 8px; }

  .experiences__grid {
    justify-content: center;
    padding: 16px 0;
    gap: 24px 16px;
  }

  .experience-tile { min-width: 72px; width: 72px; }
  .experience-tile__icon { width: 64px; height: 64px; }
  .experience-tile__icon img { width: 40px; height: 40px; }
  .experience-tile__label { font-size: 14px; }

  /* --- Milestones --- */
  .milestones { padding: 40px 16px; gap: 24px; }
  .milestones .section-title { text-align: left; }
  .milestones__grid { flex-direction: column; gap: 0; position: relative; }
  .milestones__grid::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 24px;
    bottom: 24px;
    width: 0;
    border-left: 1px dotted #ccc;
  }
  .milestones__col { gap: 16px; }
  .milestones__col::before { display: none; }
  .milestone:last-child .milestone__content { border-bottom: 1px solid #f1f1f1; padding-bottom: 16px; }
  .milestones__col:last-child { padding-top: 16px; }
  .milestones__col:last-child .milestone:last-child .milestone__content { border-bottom: none; }

  /* --- Reviews --- */
  .reviews { padding: 48px 16px; gap: 24px; }
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reviews__grid .review:nth-child(n+4) { display: none; }
  .reviews__grid--expanded .review:nth-child(n+4) {
    display: flex;
    animation: fadeReveal 0.4s var(--ease-out);
  }
  .review { height: auto; min-height: 400px; }

  .reviews__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;
  }

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

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

  /* --- Partners --- */
  .partners { padding: 48px 16px; margin: 0; gap: 24px; }
  .partners__more {
    display: block;
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: -8px;
  }

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

  .partners__track-wrapper {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    height: auto;
  }

  .partners__track {
    animation: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    padding: 16px 0;
    width: auto;
    height: auto;
  }

  .partners__track > picture {
    justify-self: center;
  }

  .partner-logo {
    height: 32px;
    max-width: 100%;
    opacity: 1;
  }

  /* Hide duplicate logos used for desktop marquee loop */
  .partners__track > picture:nth-child(n+10) { display: none; }

  /* --- Value props --- */
  .value-props { padding: 32px 16px 48px; }
  .value-props__title { font-size: 24px; line-height: 32px; }
  .value-props__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .vp-card {
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: none;
  }

  /* --- App banner --- */
  .app-banner { padding: 48px 16px; }
  .app-banner__wrapper { padding: 0; }
  .app-banner__inner {
    padding-left: 0;
    border-radius: var(--radius-md);
  }
  .app-banner__phone { display: none; }
  .app-banner__doodle {
    left: unset;
    top: unset;
    right: 0;
    bottom: 0;
    transform: translate(40%, 50%) rotate(-10deg);
  }
  .app-banner__content {
    padding: 24px 20px;
    max-width: 100%;
    gap: 24px;
    min-height: auto;
  }
  .app-banner__heading {
    font-size: 24px;
    line-height: 32px;
  }
  .app-banner__footer-content p,
  .app-banner__qr { display: none; }
  .app-banner__badges { flex-wrap: wrap; }
}

/* ===== 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;
}

/* ===== ABOUT-US REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero__image-col--down .hero__image-track,
  .hero__image-col--up .hero__image-track,
  .partners__track {
    animation: none !important;
  }

  .review, .btn, .review__thumb img, .review__image img,
  .story__video-play, .vp-card, .partner-logo,
  .milestones__col::before, .review--overlay::after {
    transition: none;
  }

}
