/* ONEO — ONEO-scale cinematic image+text */

.oneo-stage {
  padding: 120px 0;
  overflow: hidden;
}
.oneo-stage--sky {
  background: linear-gradient(180deg, #e8f4fc 0%, #f7fafc 100%);
}
.oneo-stage--mint {
  background: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 100%);
}
.oneo-stage--ink {
  background: #0a0a0a;
  color: #fff;
}
.oneo-stage--violet {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #0a0a0a 100%);
  color: #fff;
}
.oneo-stage--sand {
  background: linear-gradient(180deg, #fff7ed 0%, #fafafa 100%);
}
.oneo-stage__row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}
.oneo-stage__row--rev .oneo-stage__media { order: 2; }
.oneo-stage__row--rev .oneo-stage__copy { order: 1; }

.oneo-stage__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0666eb;
  margin: 0 0 16px;
}
.oneo-stage--ink .oneo-stage__eyebrow,
.oneo-stage--violet .oneo-stage__eyebrow { color: #7dd3fc; }

.oneo-stage__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 20px;
}
.oneo-stage__text {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: #3f3f46;
  max-width: 34em;
  margin: 0 0 28px;
}
.oneo-stage--ink .oneo-stage__text,
.oneo-stage--violet .oneo-stage__text { color: rgba(255,255,255,0.72); }

.oneo-stage__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.oneo-stage__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  font-weight: 500;
  color: #3f3f46;
}
.oneo-stage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0666eb;
}
.oneo-stage--ink .oneo-stage__list li,
.oneo-stage--violet .oneo-stage__list li { color: rgba(255,255,255,0.78); }
.oneo-stage--ink .oneo-stage__list li::before,
.oneo-stage--violet .oneo-stage__list li::before { background: #7dd3fc; }

.oneo-stage__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0666eb;
}
.oneo-stage--ink .oneo-stage__cta,
.oneo-stage--violet .oneo-stage__cta { color: #7dd3fc; }
.oneo-stage__cta:hover { gap: 12px; }

.oneo-stage__media {
  position: relative;
}
.oneo-stage__media img {
  width: 100%;
  display: block;
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.18);
}
.oneo-stage--ink .oneo-stage__media img,
.oneo-stage--violet .oneo-stage__media img {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

/* Cinematic autoplay video (ONEO-style invest coins) */
.oneo-cinema-video {
  width: 100%;
  display: block;
  border-radius: 0;
  background: #000;
  object-fit: cover;
  pointer-events: none;
}
.oneo-cinema-video::-webkit-media-controls {
  display: none !important;
}
.oneo-cinema-video::-webkit-media-controls-start-playback-button,
.oneo-cinema-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}
.oneo-stage__bleed .oneo-cinema-video.is-playing,
.oneo-stage__bleed .oneo-cinema-video {
  opacity: 1;
}
.oneo-stage__media--video .oneo-cinema-video {
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 9;
}
.oneo-stage--stack {
  padding-top: 96px;
  padding-bottom: 0;
}
.oneo-stage__stack {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}
.oneo-stage__copy--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.oneo-stage__copy--center .oneo-stage__text {
  margin-left: auto;
  margin-right: auto;
}
.oneo-stage__fine {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}
.oneo-stage__bleed {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 8px;
  background: #000;
  line-height: 0;
}
.oneo-stage__bleed .oneo-cinema-video {
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: cover;
  object-position: center 55%;
}
.oneo-stage--stack .oneo-btn--white {
  margin-top: 8px;
}

/* Stats strip */
.oneo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1180px, 100% - 48px);
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}
.oneo-stat {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.oneo-stat__num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 6px;
  color: #0a0a0a;
}
.oneo-stat__label {
  font-size: 14px;
  color: #3f3f46;
  margin: 0;
  font-weight: 600;
}

/* City marquee */
.oneo-marquee {
  padding: 28px 0;
  background: #0a0a0a;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.oneo-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: oneoMarquee 28s linear infinite;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.oneo-marquee__track span { white-space: nowrap; }
.oneo-marquee__track span em {
  font-style: normal;
  color: #5eb3ff;
  margin-right: 8px;
}
@keyframes oneoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Lifestyle tabs (ONEO Adventure / Wedding / Moving) */
.oneo-life {
  padding: 120px 0;
  background: #fafafa;
}
.oneo-life--cinema {
  background: #0a0a0a;
  color: #fff;
  padding-bottom: 64px;
}
.oneo-life--cinema .oneo-section__eyebrow,
.oneo-life--cinema .oneo-section__title,
.oneo-life--cinema .oneo-section__subtitle {
  color: #fff;
}
.oneo-life--cinema .oneo-section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.oneo-life__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.oneo-life__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.oneo-life__tab {
  border: 1px solid #e4e4e7;
  background: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #3f3f46;
  cursor: pointer;
  transition: 0.2s ease;
}
.oneo-life--cinema .oneo-life__tab {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}
.oneo-life__tab.is-active,
.oneo-life__tab:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.oneo-life--cinema .oneo-life__tab.is-active,
.oneo-life--cinema .oneo-life__tab:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.oneo-life__panel {
  display: none;
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.oneo-life__panel.is-active { display: grid; }
.oneo-life__panel--cinema.is-active {
  display: block;
  width: min(1180px, 100% - 32px);
}
.oneo-life__panel img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.12);
}
.oneo-life__panel h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.oneo-life__panel p {
  font-size: 18px;
  line-height: 1.55;
  color: #52525b;
  margin: 0 0 24px;
}

.oneo-life-cinema {
  position: relative;
  min-height: min(78vh, 820px);
  border-radius: 36px;
  overflow: hidden;
  background: #111;
}
.oneo-life-cinema__media {
  position: absolute;
  inset: 0;
}
.oneo-life-cinema__media video,
.oneo-life-cinema__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  background: transparent !important;
}
.oneo-life-cinema__media img { z-index: 2; opacity: 1; }
.oneo-life-cinema__media video { z-index: 1; opacity: 0; }
.oneo-life-cinema__media.is-playing video { opacity: 1; z-index: 2; }
.oneo-life-cinema__media.is-playing img { opacity: 0; z-index: 1; }
.oneo-life-cinema__shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.55) 100%);
}
.oneo-life-cinema__copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 28px 220px;
  text-align: center;
  color: #fff;
}
.oneo-life-cinema__copy h3 {
  color: #fff;
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 16px;
}
.oneo-life-cinema__copy p {
  color: rgba(255, 255, 255, 0.88);
}
.oneo-life-cinema__fine {
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-bottom: 22px !important;
}
.oneo-life-cinema__float {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(240px, 72vw);
  padding: 18px 16px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.oneo-life-cinema__float .oneo-sky__float-amount {
  font-size: 36px;
}
.oneo-life-cinema__acts {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.oneo-life-cinema__acts span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
}
.oneo-life-cinema__acts span:first-child {
  background: #fff;
  color: #0a0a0a;
}

.oneo-air-stage {
  background: #000;
  color: #fff;
  padding: 96px 0 120px;
}
.oneo-air-stage__inner {
  width: min(980px, 100% - 32px);
  margin: 0 auto;
  text-align: center;
}
.oneo-air-stage__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
}
.oneo-air-stage__media {
  position: relative;
  width: min(560px, 100%);
  margin: 0 auto 36px;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
}
.oneo-air-stage__media video,
.oneo-air-stage__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent !important;
}
.oneo-air-stage__media img { z-index: 2; opacity: 1; }
.oneo-air-stage__media video { z-index: 1; opacity: 0; }
.oneo-air-stage__media.is-playing video { opacity: 1; z-index: 2; }
.oneo-air-stage__media.is-playing img { opacity: 0; z-index: 1; }
.oneo-air-stage__copy .oneo-stage__title { color: #fff; }
.oneo-air-stage__copy .oneo-stage__text {
  color: rgba(255, 255, 255, 0.72);
  max-width: 40ch;
  margin: 0 auto 24px;
}

@media (max-width: 720px) {
  .oneo-life-cinema { min-height: 72vh; border-radius: 24px; }
  .oneo-life-cinema__copy { padding: 48px 20px 200px; }
  .oneo-sky__video,
  .oneo-sky__poster { height: 70%; }
}

/* Full-bleed photo-style banner */
.oneo-bleed {
  width: min(1180px, 100% - 48px);
  margin: 0 auto 0;
  border-radius: 40px;
  overflow: hidden;
}
.oneo-bleed img {
  width: 100%;
  display: block;
}

/* Dense 2x2 / 4-up mosaic of scenes */
.oneo-mosaic {
  padding: 80px 0 40px;
  background: #0a0a0a;
  color: #fff;
}
.oneo-mosaic__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.oneo-mosaic__head .oneo-section__eyebrow { color: #5eb3ff; }
.oneo-mosaic__head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}
.oneo-mosaic__head p { color: rgba(255,255,255,0.55); margin: 0; }
.oneo-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}
.oneo-mosaic__item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #111;
}
.oneo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.oneo-mosaic__item:hover img { transform: scale(1.04); }
.oneo-mosaic__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 720px) {
  .oneo-mosaic__grid { grid-template-columns: 1fr; }
}

/* Enlarge existing card wall / usecases for air */
.oneo-cardwall,
.oneo-usecases { padding: 120px 0; }
.oneo-cardwall__head .oneo-section__title,
.oneo-usecases__head .oneo-section__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.oneo-band__title {
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}
.oneo-band { padding: 112px 0; }
.oneo-band__media img { border-radius: 32px !important; }

@media (max-width: 960px) {
  .oneo-stage__row,
  .oneo-stage__row--rev,
  .oneo-life__panel.is-active {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .oneo-stage__row--rev .oneo-stage__media,
  .oneo-stage__row--rev .oneo-stage__copy { order: unset; }
  .oneo-stage__media { order: -1; }
  .oneo-stats { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .oneo-stage { padding: 80px 0; }
}
@media (max-width: 560px) {
  .oneo-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== Sparse ONEO layout homepage blocks ===== */
.oneo-home-trust {
  background: #fff;
  padding: 48px 24px;
  border-bottom: 1px solid #eee;
}
.oneo-home-trust__row {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
}
.oneo-home-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  text-align: center;
}
.oneo-home-trust__item img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.oneo-home-trust__item span {
  font-size: 13px;
  font-weight: 600;
  color: #52525b;
}

.oneo-home-block {
  padding: 96px 0;
}
.oneo-home-block--light { background: #f7f7f8; color: #0a0a0a; }
.oneo-home-block--ink { background: #0a0a0a; color: #fff; }
.oneo-home-block__grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px 56px;
  align-items: center;
}
.oneo-home-block__grid--rev .oneo-home-block__copy { order: 2; }
.oneo-home-block__grid--rev .oneo-home-block__media { order: 1; }
.oneo-home-block__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
  margin: 0 0 12px;
}
.oneo-home-block--light .oneo-home-block__eyebrow {
  opacity: 1;
  color: #52525b;
}
.oneo-home-block__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 16px;
}
.oneo-home-block__text {
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.9;
  margin: 0 0 28px;
  max-width: 36ch;
}
.oneo-home-block--light .oneo-home-block__text {
  opacity: 1;
  color: #2e2e32;
}
.oneo-home-block__media img {
  width: 100%;
  border-radius: 28px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}
.oneo-home-block--light .oneo-home-block__media img {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
.oneo-home-legal {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 64px;
  font-size: 12px;
  line-height: 1.5;
  color: #52525b;
  text-align: center;
}
.oneo-life--cinema { padding-top: 88px; }
.oneo-home-invest { padding-top: 88px; }

@media (max-width: 900px) {
  .oneo-life-cinema__float {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(20, 24, 32, 0.72);
  }
  .oneo-home-block__grid,
  .oneo-home-block__grid--rev {
    grid-template-columns: 1fr;
  }
  .oneo-home-block__grid--rev .oneo-home-block__copy,
  .oneo-home-block__grid--rev .oneo-home-block__media { order: unset; }
  .oneo-home-block { padding: 64px 0; }
}
