/* ONEO — ONEO-style image + text layouts */
.oneo-hero--split { padding: 48px 0 80px; text-align: left; }
.oneo-hero--split .oneo-wrap { max-width: var(--oneo-max); }
.oneo-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.oneo-hero__content { max-width: 560px; }
.oneo-hero--split .oneo-hero__title { font-size: clamp(48px, 8vw, 88px); text-align: left; }
.oneo-hero--split .oneo-hero__subtitle,
.oneo-hero--split .oneo-hero__subtitle-cn,
.oneo-hero--split .oneo-hero__slogan,
.oneo-hero--split .oneo-hero__slogan-cn { text-align: left; }
.oneo-hero--split .oneo-hero__actions { justify-content: flex-start; }
.oneo-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.oneo-hero__phone {
  width: min(280px, 90%);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
  animation: oneoFloat 4s ease-in-out infinite;
}
.oneo-hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 117, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
}
@keyframes oneoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ONEO split sections */
.oneo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.oneo-split--reverse .oneo-split__visual { order: 2; }
.oneo-split--reverse .oneo-split__body { order: 1; }
.oneo-split__visual img,
.oneo-split__visual svg {
  width: 100%;
  border-radius: var(--oneo-radius-lg);
  box-shadow: var(--oneo-shadow-lg);
}
.oneo-split__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oneo-blue);
  margin-bottom: 12px;
}
.oneo-split__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.oneo-split__tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--oneo-blue);
  margin-bottom: 20px;
}
.oneo-split__desc {
  font-size: 16px;
  color: var(--oneo-gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
}
.oneo-split__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--oneo-gray-700);
  line-height: 1.6;
  margin-bottom: 10px;
}
.oneo-split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oneo-blue);
}
.oneo-split__value {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--oneo-gray-50);
  border-radius: 12px;
  border-left: 3px solid var(--oneo-blue);
  font-size: 14px;
  font-weight: 600;
  color: var(--oneo-black);
  line-height: 1.5;
}
.oneo-split__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--oneo-blue);
}
.oneo-split__link:hover { gap: 10px; }

/* Full-bleed showcase band */
.oneo-showcase {
  padding: 80px 0;
  overflow: hidden;
}
.oneo-showcase--blue { background: linear-gradient(135deg, #e8f3ff 0%, #f5f5f7 100%); }
.oneo-showcase--dark { background: var(--oneo-black); color: #fff; }
.oneo-showcase--green { background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%); }
.oneo-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.oneo-showcase__img {
  width: 100%;
  border-radius: var(--oneo-radius-lg);
  box-shadow: var(--oneo-shadow-lg);
}
.oneo-showcase--dark .oneo-split__desc,
.oneo-showcase--dark .oneo-split__list li { color: rgba(255,255,255,0.75); }
.oneo-showcase--dark .oneo-split__eyebrow { color: #5eb3ff; }
.oneo-showcase--dark .oneo-split__title { color: #fff; }
.oneo-showcase--dark .oneo-split__tagline { color: #5eb3ff; }
.oneo-showcase--dark .oneo-split__value {
  background: rgba(255,255,255,0.08);
  border-left-color: #5eb3ff;
  color: #fff;
}

/* Image cards grid (ONEO product tiles with images) */
.oneo-imgcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.oneo-imgcard {
  border-radius: var(--oneo-radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--oneo-gray-200);
  transition: var(--oneo-transition);
}
.oneo-imgcard:hover { transform: translateY(-4px); box-shadow: var(--oneo-shadow-lg); }
.oneo-imgcard__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--oneo-gray-100);
}
.oneo-imgcard__body { padding: 20px; }
.oneo-imgcard__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.oneo-imgcard__desc { font-size: 13px; color: var(--oneo-gray-500); line-height: 1.5; }
.oneo-section--dark .oneo-imgcard {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.oneo-section--dark .oneo-imgcard__title { color: #fff; }
.oneo-section--dark .oneo-imgcard__desc { color: rgba(255,255,255,0.6); }

/* Segment with large image */
.oneo-segments--visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.oneo-segments--visual .oneo-segments { grid-template-columns: repeat(2, 1fr); }
.oneo-segments__visual img { width: 100%; border-radius: var(--oneo-radius-lg); box-shadow: var(--oneo-shadow); }

/* Cases with image header */
.oneo-cases--visual .oneo-case {
  padding: 0;
  overflow: hidden;
}
.oneo-case__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.oneo-case__body { padding: 24px; }

/* Trust bar under hero */
.oneo-hero__trust-bar { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--oneo-gray-200); }

/* International bank rail + hub chips */
.oneo-bankrail {
  padding: 48px 0 24px;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}
.oneo-bankrail__head {
  text-align: center;
  margin-bottom: 28px;
}
.oneo-bankrail__head p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eb3ff;
  margin: 0 0 8px;
}
.oneo-bankrail__head h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.oneo-bankrail__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(var(--oneo-max), 100% - 48px);
  margin: 0 auto 20px;
}
.oneo-bankchip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.oneo-bankchip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.oneo-bankrail__note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* Visa / Mastercard card wall */
.oneo-cardwall {
  padding: 96px 0;
  background: #0a0a0a;
  color: #fff;
}
.oneo-cardwall__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.oneo-cardwall__head .oneo-section__eyebrow { color: #5eb3ff; }
.oneo-cardwall__head .oneo-section__title { color: #fff; }
.oneo-cardwall__head .oneo-section__subtitle { color: rgba(255,255,255,0.55); }
.oneo-cardwall__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 8px;
}
.oneo-cardwall__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  font-weight: 700;
}
.oneo-cardwall__pill--visa { color: #fff; }
.oneo-cardwall__pill--mc { color: #fff; }
.oneo-cardwall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(var(--oneo-max), 100% - 48px);
  margin: 0 auto;
}
.oneo-cardtile {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.oneo-cardtile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.oneo-cardtile__img {
  width: 100%;
  aspect-ratio: 14/9;
  object-fit: cover;
  display: block;
  background: #111;
}
.oneo-cardtile__body { padding: 18px 20px 22px; }
.oneo-cardtile__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5eb3ff;
  margin: 0 0 6px;
}
.oneo-cardtile__title {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}
.oneo-cardtile__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Use-case image grid (6 scenes) */
.oneo-usecases {
  padding: 96px 0;
  background: #fff;
}
.oneo-usecases__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.oneo-usecases__head .oneo-section__eyebrow { margin-bottom: 12px; }
.oneo-usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(var(--oneo-max), 100% - 48px);
  margin: 0 auto;
}
.oneo-usecase {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--oneo-gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  text-decoration: none;
}
.oneo-usecase:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}
.oneo-usecase__img {
  width: 100%;
  aspect-ratio: 14/9;
  object-fit: cover;
  display: block;
  background: var(--oneo-gray-100);
}
.oneo-usecase__body { padding: 20px 22px 24px; }
.oneo-usecase__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oneo-blue);
  margin: 0 0 8px;
}
.oneo-usecase__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--oneo-black);
}
.oneo-usecase__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--oneo-gray-500);
  margin: 0;
}

@media (max-width: 900px) {
  .oneo-hero__grid,
  .oneo-split,
  .oneo-showcase__grid,
  .oneo-segments--visual { grid-template-columns: 1fr; gap: 40px; }
  .oneo-split--reverse .oneo-split__visual,
  .oneo-split--reverse .oneo-split__body { order: unset; }
  .oneo-hero__visual { order: -1; }
  .oneo-hero__phone { width: min(240px, 70%); }
  .oneo-imgcards { grid-template-columns: 1fr; }
  .oneo-usecases__grid { grid-template-columns: 1fr; }
  .oneo-cardwall__grid { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .oneo-usecases__grid { grid-template-columns: repeat(2, 1fr); }
  .oneo-cardwall__grid { grid-template-columns: repeat(2, 1fr); }
}
