/* ONEO — ONEO-style Global Digital Finance App */
:root {
  --oneo-black: #0a0a0a;
  --oneo-white: #ffffff;
  --oneo-gray-50: #fafafa;
  --oneo-gray-100: #f5f5f7;
  --oneo-gray-200: #e8e8ed;
  --oneo-gray-300: #d1d1d6;
  --oneo-gray-500: #5c5c63;
  --oneo-gray-700: #2e2e32;
  --oneo-gray-900: #1d1d1f;
  --oneo-blue: #0075ff;
  --oneo-blue-dark: #0056cc;
  --oneo-blue-light: #e8f3ff;
  --oneo-green: #00c853;
  --oneo-gold: #c9a227;
  --oneo-radius: 16px;
  --oneo-radius-lg: 24px;
  --oneo-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --oneo-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --oneo-font: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  --oneo-max: 1200px;
  --oneo-header-h: 72px;
  --oneo-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--oneo-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--oneo-gray-900);
  background: var(--oneo-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.oneo-wrap { width: min(var(--oneo-max), 100% - 48px); margin: 0 auto; }
.oneo-skip { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 12px 20px; background: var(--oneo-blue); color: #fff; border-radius: 8px; }
.oneo-skip:focus { left: 16px; top: 16px; }

/* Brand tagline — appears globally */
.oneo-brand-line {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oneo-gray-500);
}
.oneo-brand-line strong { color: var(--oneo-gray-700); font-weight: 700; }

/* Buttons */
.oneo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--oneo-transition);
  white-space: nowrap;
}
.oneo-btn--primary {
  background: var(--oneo-blue);
  color: #fff;
}
.oneo-btn--primary:hover { background: var(--oneo-blue-dark); transform: translateY(-1px); }
.oneo-btn--black {
  background: var(--oneo-black);
  color: #fff;
}
.oneo-btn--black:hover { background: #222; transform: translateY(-1px); }
.oneo-btn--outline {
  background: transparent;
  color: var(--oneo-gray-900);
  border: 1.5px solid var(--oneo-gray-300);
}
.oneo-btn--outline:hover { border-color: var(--oneo-gray-900); }
.oneo-btn--white {
  background: #fff;
  color: var(--oneo-black);
}
.oneo-btn--white:hover { background: var(--oneo-gray-100); }
.oneo-btn--sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.oneo-btn--lg { min-height: 56px; padding: 0 32px; font-size: 17px; }

/* Header */
.oneo-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--oneo-gray-200);
}
.oneo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--oneo-header-h);
  gap: 16px;
}
.oneo-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.oneo-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--oneo-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.02em;
}
/* Letter O via CSS so browser / pack translate cannot turn it into 「哦」 */
.oneo-logo__mark::before {
  content: 'O';
  font: inherit;
  color: inherit;
  line-height: 1;
}
.oneo-logo.notranslate,
.oneo-logo__text,
.oneo-drawer__brand.notranslate,
.oneo-footer__wordmark.notranslate {
  -webkit-translate: no;
  translate: no;
}
.oneo-logo__text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--oneo-black);
}

.oneo-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.oneo-nav__item { position: relative; }
.oneo-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--oneo-gray-700);
  border-radius: 8px;
  transition: var(--oneo-transition);
}
.oneo-nav__link:hover,
.oneo-nav__link.is-active { color: var(--oneo-black); background: var(--oneo-gray-100); }
.oneo-nav__link svg { width: 12px; height: 12px; opacity: 0.5; transition: transform var(--oneo-transition); }
.oneo-nav__item.is-open .oneo-nav__link svg { transform: rotate(180deg); }

.oneo-mega {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  padding: 16px;
  background: #fff;
  border-radius: var(--oneo-radius);
  box-shadow: var(--oneo-shadow-lg);
  border: 1px solid var(--oneo-gray-200);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--oneo-transition);
  z-index: 200;
}
.oneo-nav__item.is-open .oneo-mega,
.oneo-nav__item:hover .oneo-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.oneo-mega__link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--oneo-gray-700);
  transition: var(--oneo-transition);
}
.oneo-mega__link:hover { background: var(--oneo-gray-100); color: var(--oneo-black); }
.oneo-mega__link strong { display: block; font-weight: 600; color: var(--oneo-black); margin-bottom: 2px; }
.oneo-mega__link span { font-size: 12px; color: var(--oneo-gray-500); }

.oneo-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.oneo-header__tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  text-align: center;
  padding: 6px 0;
  background: var(--oneo-gray-50);
  border-bottom: 1px solid var(--oneo-gray-200);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--oneo-gray-500);
}
.oneo-header--with-tagline { margin-bottom: 28px; }

.oneo-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--oneo-black);
  -webkit-tap-highlight-color: transparent;
}
.oneo-menu-btn__icon {
  display: block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  overflow: visible;
}
.oneo-menu-btn__bar {
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.oneo-menu-btn.is-open .oneo-menu-btn__bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.oneo-menu-btn.is-open .oneo-menu-btn__bar:nth-child(2) {
  opacity: 0;
}
.oneo-menu-btn.is-open .oneo-menu-btn__bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
/* Legacy empty spans (if any cached shell) */
.oneo-menu-btn > span {
  display: none;
}

/* Mobile drawer — Revolut-style full-screen */
.oneo-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.45);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.oneo-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.oneo-drawer,
.oneo-drawer--rev {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100dvh;
  z-index: 160;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(70, 90, 140, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #1a1f2e 0%, #12151f 48%, #0d0f16 100%);
  color: #fff;
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  backdrop-filter: blur(28px) saturate(1.2);
  transform: translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.oneo-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.oneo-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: max(14px, env(safe-area-inset-top)) 20px 8px;
}
.oneo-drawer__brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.oneo-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.oneo-drawer__close:hover { background: rgba(255, 255, 255, 0.08); }

.oneo-drawer__tabs {
  display: flex;
  flex-shrink: 0;
  gap: 4px;
  padding: 8px 16px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.oneo-drawer__tabs::-webkit-scrollbar { display: none; }
.oneo-drawer__tab {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.oneo-drawer__tab.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.oneo-drawer__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 20px 32px;
  scroll-padding-bottom: 24px;
}
.oneo-drawer__panel { display: none; }
.oneo-drawer__panel.is-active { display: block; }

.oneo-drawer__discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  text-decoration: none;
}
.oneo-drawer__discover span { font-weight: 700; opacity: 0.9; }

.oneo-drawer__acc { border: 0; }
.oneo-drawer__acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: left;
  cursor: pointer;
}
.oneo-drawer__chev {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.22s ease;
}
.oneo-drawer__acc.is-open .oneo-drawer__chev { transform: rotate(180deg); }

.oneo-drawer__acc-body {
  display: none;
  padding: 0 0 10px;
}
.oneo-drawer__acc.is-open .oneo-drawer__acc-body { display: block; }
.oneo-drawer__acc-body a {
  display: block;
  padding: 12px 0 12px 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.oneo-drawer__acc-body a:hover { color: #fff; }

.oneo-drawer__foot {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 20px max(20px, env(safe-area-inset-bottom));
  background: #0d0f16;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.oneo-drawer__foot-actions {
  display: flex;
  gap: 12px;
}
.oneo-drawer__dl {
  width: 100%;
}
.oneo-drawer__dl-inner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: visible;
}
.oneo-drawer__dl-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  align-self: start;
}
.oneo-drawer__dl-copy {
  flex: 1;
  min-width: 0;
  color: #fff;
  line-height: 1.3;
}
.oneo-drawer__dl-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  overflow-wrap: anywhere;
}
.oneo-drawer__dl-copy span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
  line-height: 1.35;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.oneo-drawer__dl-btn {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  max-width: 38vw;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #0d0f16;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.oneo-drawer__dl-btn:active {
  transform: scale(0.98);
}
.oneo-drawer__top-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.oneo-drawer__login,
.oneo-drawer__signup {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.oneo-drawer__login {
  background: #000;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.oneo-drawer__signup {
  background: #fff;
  color: #0d0f16;
}
.oneo-drawer__login:active,
.oneo-drawer__signup:active { transform: scale(0.98); }

.oneo-drawer__nav,
.oneo-drawer__actions,
.oneo-drawer__lang:not(.oneo-drawer__lang--top) { display: none; }

@media (max-width: 480px) {
  .oneo-drawer__dl-inner {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 10px;
    column-gap: 10px;
  }
  .oneo-drawer__dl-logo {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }
  .oneo-drawer__dl-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .oneo-drawer__dl-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    min-width: 0;
    align-self: stretch;
  }
}

/* Hero */
.oneo-hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--oneo-gray-50) 0%, #fff 100%);
  overflow: hidden;
}
.oneo-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 117, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.oneo-hero__inner { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.oneo-hero__title {
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--oneo-black);
  margin-bottom: 16px;
}
.oneo-hero__subtitle {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--oneo-gray-700);
  margin-bottom: 8px;
}
.oneo-hero__subtitle-cn {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--oneo-gray-500);
  margin-bottom: 32px;
}
.oneo-hero__slogan {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--oneo-black);
  margin-bottom: 8px;
}
.oneo-hero__slogan-cn {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--oneo-blue);
  margin-bottom: 40px;
}
.oneo-hero__taglines {
  font-size: 15px;
  color: var(--oneo-gray-700);
  line-height: 1.8;
  margin-bottom: 32px;
}
.oneo-hero__taglines strong { color: var(--oneo-black); font-weight: 700; }
.oneo-hero__desc {
  text-align: left;
  max-width: 780px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #fff;
  border-radius: var(--oneo-radius-lg);
  border: 1px solid var(--oneo-gray-200);
  box-shadow: var(--oneo-shadow);
  font-size: 15px;
  line-height: 1.85;
  color: var(--oneo-gray-700);
}
.oneo-hero__desc strong { color: var(--oneo-black); }
.oneo-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }

/* Trust badges */
.oneo-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.oneo-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--oneo-radius);
  border: 1px solid var(--oneo-gray-200);
  box-shadow: var(--oneo-shadow);
  font-size: 13px;
  line-height: 1.6;
  color: var(--oneo-gray-700);
  text-align: left;
}
.oneo-trust__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.12);
  color: var(--oneo-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.oneo-trust__item strong { display: block; color: var(--oneo-black); font-weight: 700; margin-bottom: 4px; font-size: 14px; }

/* Section */
.oneo-section { padding: 100px 0; }
.oneo-section--gray { background: var(--oneo-gray-50); color: #0a0a0a; }
.oneo-section--gray .oneo-section__title { color: #0a0a0a; }
.oneo-section--gray .oneo-section__subtitle { color: var(--oneo-gray-700); }
.oneo-section--dark {
  background: var(--oneo-black);
  color: #fff;
}
.oneo-section--dark .oneo-brand-line { color: rgba(255,255,255,0.5); }
.oneo-section--dark .oneo-brand-line strong { color: rgba(255,255,255,0.8); }
.oneo-section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.oneo-section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oneo-blue);
  margin-bottom: 12px;
}
.oneo-section--dark .oneo-section__eyebrow { color: #5eb3ff; }
.oneo-section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.oneo-section__subtitle {
  font-size: 18px;
  color: var(--oneo-gray-500);
  line-height: 1.6;
}
.oneo-section--dark .oneo-section__subtitle { color: rgba(255,255,255,0.65); }
.oneo-section__brand {
  font-size: 13px;
  font-weight: 600;
  color: var(--oneo-gray-500);
  margin-bottom: 8px;
}
.oneo-section__slogan {
  font-size: 15px;
  font-weight: 600;
  color: var(--oneo-blue);
  margin-bottom: 24px;
}

/* Feature cards (3-col ONEO style) */
.oneo-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.oneo-feature {
  background: #fff;
  border-radius: var(--oneo-radius-lg);
  border: 1px solid var(--oneo-gray-200);
  overflow: hidden;
  transition: var(--oneo-transition);
  display: flex;
  flex-direction: column;
}
.oneo-feature:hover { transform: translateY(-4px); box-shadow: var(--oneo-shadow-lg); }
.oneo-feature__visual {
  height: 200px;
  background: linear-gradient(135deg, var(--oneo-blue-light) 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.oneo-feature__visual--cards { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.oneo-feature__visual--exchange { background: linear-gradient(135deg, #e8f5e9 0%, #fff 100%); }
.oneo-feature__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: var(--oneo-shadow);
}
.oneo-feature__visual--cards .oneo-feature__icon { background: rgba(255,255,255,0.1); font-size: 48px; }
.oneo-feature__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.oneo-feature__brand { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--oneo-gray-500); margin-bottom: 8px; }
.oneo-feature__title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.oneo-feature__tagline { font-size: 14px; font-weight: 600; color: var(--oneo-blue); margin-bottom: 16px; }
.oneo-feature__desc { font-size: 14px; color: var(--oneo-gray-700); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.oneo-feature__list { margin-bottom: 20px; }
.oneo-feature__list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--oneo-gray-700);
  line-height: 1.6;
  margin-bottom: 8px;
}
.oneo-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oneo-blue);
}
.oneo-feature__value {
  padding: 16px;
  background: var(--oneo-gray-50);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--oneo-black);
  line-height: 1.5;
}
.oneo-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--oneo-blue);
}
.oneo-feature__link:hover { gap: 10px; }

/* User segments grid */
.oneo-segments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.oneo-segment {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--oneo-radius-lg);
  border: 1px solid var(--oneo-gray-200);
  transition: var(--oneo-transition);
}
.oneo-segment:hover { border-color: var(--oneo-blue); box-shadow: var(--oneo-shadow); }
.oneo-segment__icon { font-size: 32px; margin-bottom: 16px; }
.oneo-segment__title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.oneo-segment__for { font-size: 12px; font-weight: 600; color: var(--oneo-blue); margin-bottom: 16px; }
.oneo-segment__list li {
  font-size: 13px;
  color: var(--oneo-gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--oneo-gray-100);
  line-height: 1.5;
}
.oneo-segment__list li:last-child { border-bottom: none; }
.oneo-segment__link { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--oneo-blue); }

/* Product matrix */
.oneo-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.oneo-product {
  padding: 28px;
  background: #fff;
  border-radius: var(--oneo-radius);
  border: 1px solid var(--oneo-gray-200);
  transition: var(--oneo-transition);
}
.oneo-section--dark .oneo-product {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.oneo-product:hover { transform: translateY(-2px); box-shadow: var(--oneo-shadow); }
.oneo-product__icon { font-size: 28px; margin-bottom: 12px; }
.oneo-product__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.oneo-product__desc { font-size: 13px; color: var(--oneo-gray-500); line-height: 1.6; }
.oneo-section--dark .oneo-product__desc { color: rgba(255,255,255,0.6); }
.oneo-product__link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--oneo-blue); }
.oneo-section--dark .oneo-product__link { color: #5eb3ff; }

/* Pricing tiers (legacy card grid — use .oneo-plan direct children) */
.oneo-plan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.oneo-plan {
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--oneo-radius-lg);
  border: 1px solid var(--oneo-gray-200);
  text-align: center;
  transition: var(--oneo-transition);
}
.oneo-plan--featured {
  border-color: var(--oneo-blue);
  box-shadow: 0 0 0 2px rgba(0, 117, 255, 0.2);
  transform: scale(1.02);
}
.oneo-plan__name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.oneo-plan__price { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.oneo-plan__price span { font-size: 14px; font-weight: 500; color: var(--oneo-gray-500); }
.oneo-plan__desc { font-size: 12px; color: var(--oneo-gray-500); margin-bottom: 20px; }
.oneo-plan__features li {
  font-size: 12px;
  color: var(--oneo-gray-700);
  padding: 6px 0;
  border-top: 1px solid var(--oneo-gray-100);
}

/* Security */
.oneo-security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.oneo-security-item {
  padding: 28px;
  background: #fff;
  border-radius: var(--oneo-radius);
  border: 1px solid var(--oneo-gray-200);
}
.oneo-security-item__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--oneo-blue-light);
  color: var(--oneo-blue);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.oneo-security-item__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.oneo-security-item__desc { font-size: 14px; color: var(--oneo-gray-700); line-height: 1.7; }

/* Use cases */
.oneo-cases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.oneo-case {
  padding: 28px 24px;
  background: var(--oneo-gray-50);
  border-radius: var(--oneo-radius);
  border: 1px solid var(--oneo-gray-200);
}
.oneo-case__title { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--oneo-black); }
.oneo-case__desc { font-size: 14px; color: var(--oneo-gray-700); line-height: 1.7; }

/* FAQ */
.oneo-faq { max-width: 800px; margin: 0 auto; }
.oneo-faq__item { border-bottom: 1px solid var(--oneo-gray-200); }
.oneo-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--oneo-black);
}
.oneo-faq__q svg { flex-shrink: 0; transition: transform var(--oneo-transition); }
.oneo-faq__item.is-open .oneo-faq__q svg { transform: rotate(180deg); }
.oneo-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.oneo-faq__a-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--oneo-gray-700);
  line-height: 1.75;
}

/* CTA band */
.oneo-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--oneo-black) 0%, #1a1a2e 100%);
  color: #fff;
}
.oneo-cta__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.oneo-cta__subtitle { font-size: 16px; opacity: 0.75; margin-bottom: 32px; }
.oneo-cta__brand { font-size: 13px; opacity: 0.5; margin-top: 24px; }

/* Page hero (subpages) */
.oneo-page-hero {
  padding: 60px 0 48px;
  background: var(--oneo-gray-50);
  border-bottom: 1px solid var(--oneo-gray-200);
}
.oneo-page-hero__title { font-size: clamp(36px, 5vw, 52px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.oneo-page-hero__subtitle { font-size: 18px; color: var(--oneo-gray-500); max-width: 640px; line-height: 1.6; }
.oneo-page-hero__brand { margin-bottom: 16px; }

/* Content blocks */
.oneo-content { padding: 64px 0; }
.oneo-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.oneo-content__block h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.oneo-content__block p { font-size: 15px; color: var(--oneo-gray-700); line-height: 1.8; margin-bottom: 16px; }
.oneo-content__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--oneo-gray-700);
  line-height: 1.7;
  margin-bottom: 10px;
}
.oneo-content__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--oneo-green);
  font-weight: 700;
}

/* Pricing table */
.oneo-pricing-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.oneo-pricing-table th,
.oneo-pricing-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--oneo-gray-200);
}
.oneo-pricing-table th { background: var(--oneo-gray-50); font-weight: 700; }
.oneo-pricing-table td:first-child,
.oneo-pricing-table th:first-child { text-align: left; font-weight: 600; }
.oneo-pricing-table tr:hover td { background: var(--oneo-gray-50); }

/* Legal */
.oneo-legal { max-width: 780px; margin: 0 auto; padding: 64px 0; }
.oneo-legal h2 { font-size: 24px; font-weight: 800; margin: 40px 0 16px; }
.oneo-legal h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; }
.oneo-legal p, .oneo-legal li { font-size: 15px; color: var(--oneo-gray-700); line-height: 1.85; margin-bottom: 12px; }
.oneo-legal ul { padding-left: 24px; list-style: disc; }

/* Footer */
.oneo-footer {
  background: #191c1f;
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 40px;
  overflow: visible;
  position: relative;
  z-index: 5;
}
.oneo-footer__brand { text-align: center; margin-bottom: 40px; }
.oneo-footer__logo { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.oneo-footer__tagline { font-size: 14px; opacity: 0.65; line-height: 1.6; }
.oneo-footer__slogan { font-size: 13px; color: var(--oneo-blue); font-weight: 600; margin-top: 8px; }
.oneo-footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  font-size: 13px;
}
.oneo-footer__trust span::before { content: "✅ "; }
.oneo-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-bottom: 0;
  padding-top: 0;
  border-top: none;
}
.oneo-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  text-transform: none;
  letter-spacing: 0;
}
.oneo-footer__group--spaced { margin-top: 36px; }
.oneo-footer__col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
  transition: color var(--oneo-transition);
}
.oneo-footer__col a:hover { color: #fff; }

.oneo-footer__brandrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.oneo-footer__wordmark {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.oneo-footer__stores {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.oneo-footer__store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.oneo-footer__store:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.oneo-footer__store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.oneo-footer__store small {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}
.oneo-footer__store strong {
  font-size: 14px;
  font-weight: 800;
}
.oneo-footer__store--soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.78);
}
.oneo-footer__store--soon:hover {
  transform: none;
  opacity: 0.55;
}
.oneo-footer__social {
  display: none;
}
.oneo-footer__social-link { display: none; }

.oneo-footer__regionrow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.oneo-footer__region {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  cursor: pointer;
  white-space: nowrap;
}
.oneo-footer__region:hover {
  color: #fff;
}
.oneo-footer__region-chev {
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.oneo-footer__region:hover .oneo-footer__region-chev {
  opacity: 1;
}
.oneo-footer__region-wrap.is-open .oneo-footer__region-chev,
.oneo-footer__region[aria-expanded="true"] .oneo-footer__region-chev {
  transform: rotate(180deg);
  opacity: 1;
}
.oneo-footer__region-wrap {
  position: relative;
  flex-shrink: 0;
}
.oneo-footer__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 18px;
  line-height: 1;
  background: transparent;
}

/* Footer language / region popup (ONEO layout) */
.oneo-footer__langpop {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  z-index: 2147483600;
  width: min(320px, calc(100vw - 32px));
  max-height: min(420px, 60vh);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #23262a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  pointer-events: auto;
}
.oneo-footer__region-wrap,
.oneo-footer__region {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.oneo-footer__langpop[hidden] {
  display: none !important;
}
.oneo-footer__langpop-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 12px 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}
.oneo-footer__langpop-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.oneo-footer__langpop-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.oneo-footer__langpop-list {
  overflow: auto;
  padding: 4px 0 10px;
  -webkit-overflow-scrolling: touch;
}
.oneo-footer__langpop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.oneo-footer__langpop-item:hover,
.oneo-footer__langpop-item.is-active {
  background: rgba(255, 255, 255, 0.08);
}
.oneo-footer__langpop-item .oneo-footer__flag {
  width: auto;
  height: auto;
  font-size: 20px;
  background: transparent;
  border-radius: 0;
}
.oneo-footer__langpop-empty {
  padding: 20px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}
.oneo-footer__legallinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  flex: 1;
  min-width: 240px;
}
.oneo-footer__legallinks a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}
.oneo-footer__legallinks a:hover { color: #fff; }

.oneo-footer__disclaimer {
  margin-top: 28px;
  padding-top: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 1100px;
}
.oneo-footer__disclaimer p {
  margin: 0 0 14px;
}
.oneo-footer__disclaimer p:last-child { margin-bottom: 0; }

.oneo-footer__legal {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  opacity: 0.5;
  line-height: 1.8;
}
.oneo-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 16px; }
.oneo-footer__links a { opacity: 0.65; }
.oneo-footer__links a:hover { opacity: 1; color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
  .oneo-nav { display: none; }
  .oneo-menu-btn { display: inline-flex; }
  .oneo-features, .oneo-security-grid { grid-template-columns: 1fr; }
  .oneo-segments, .oneo-cases { grid-template-columns: repeat(2, 1fr); }
  .oneo-products { grid-template-columns: repeat(2, 1fr); }
  .oneo-plan-grid { grid-template-columns: repeat(3, 1fr); }
  .oneo-trust { grid-template-columns: 1fr; }
  .oneo-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .oneo-content__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .oneo-wrap { width: min(var(--oneo-max), 100% - 32px); }
  .oneo-hero { padding: 48px 0 64px; }
  .oneo-section { padding: 64px 0; }
  .oneo-segments, .oneo-cases, .oneo-products, .oneo-plan-grid { grid-template-columns: 1fr; }
  .oneo-header__actions .oneo-btn--outline { display: none; }
  .oneo-footer__grid { grid-template-columns: 1fr; }
  .oneo-footer__brandrow {
    flex-direction: column;
    align-items: flex-start;
  }
  .oneo-footer__regionrow {
    flex-direction: column;
  }
  .oneo-footer__legallinks {
    justify-content: flex-start;
  }
  .oneo-plan--featured { transform: none; }
  .oneo-pricing-table { font-size: 12px; }
  .oneo-pricing-table th, .oneo-pricing-table td { padding: 10px 8px; }
}

/* ===== ONEO cookie consent ===== */
.oneo-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}
.oneo-cookie__card {
  pointer-events: auto;
  width: min(560px, 100%);
  background: #191c1f;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  font-family: Inter, "Noto Sans SC", system-ui, sans-serif;
}
.oneo-cookie__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.oneo-cookie__link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.oneo-cookie__link:hover { opacity: 0.9; }
.oneo-cookie__detail {
  margin: 0 0 16px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.oneo-cookie__detail[hidden] { display: none !important; }
.oneo-cookie__detail p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.oneo-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.oneo-cookie__btn {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s, background 0.2s;
}
.oneo-cookie__btn:hover { opacity: 0.9; }
.oneo-cookie__btn--solid {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.oneo-cookie__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 640px) {
  .oneo-cookie {
    left: 12px;
    right: 76px;
    bottom: 12px;
  }
  .oneo-cookie__actions {
    flex-direction: column;
  }
  .oneo-cookie__btn {
    width: 100%;
    min-width: 0;
  }
}

/* ===== App download page ===== */
.oneo-dl {
  position: relative;
  padding: 140px 0 72px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}
.oneo-dl__glow {
  position: absolute;
  inset: -20% 0 auto 0;
  width: 100%;
  max-width: 100%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 20%, rgba(6, 102, 235, 0.45), transparent 60%),
    radial-gradient(ellipse at 80% 0%, rgba(110, 168, 255, 0.25), transparent 55%);
  pointer-events: none;
}
.oneo-dl__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.oneo-dl__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.oneo-dl__title {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.38);
}
.oneo-dl__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}
.oneo-dl__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.oneo-dl__store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.oneo-dl__store:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.oneo-dl__store--soon {
  opacity: 0.88;
  cursor: default;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
}
.oneo-dl__store--soon:hover {
  transform: none;
  opacity: 0.88;
}
.oneo-dl__store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.oneo-dl__store small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.68);
}
.oneo-dl__store strong {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a0a;
}
.oneo-dl__bullets {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.oneo-dl__bullets li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}
.oneo-dl__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d8cff;
  box-shadow: 0 0 0 3px rgba(61, 140, 255, 0.28);
}
.oneo-dl__note {
  margin: 0;
  max-width: 38em;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.oneo-dl__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.oneo-dl__qr-card {
  width: min(100%, 280px);
  padding: 22px 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.oneo-dl__qr {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.oneo-dl__qr-label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}
.oneo-dl__phone {
  width: min(100%, 220px);
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(160deg, #2a2a2e, #0c0c0e);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.oneo-dl__phone-screen {
  border-radius: 28px;
  padding: 28px 20px 36px;
  background: linear-gradient(180deg, #5eb8f6 0%, #8ecff8 45%, #e8f4fc 100%);
  color: #0a0a0a;
  min-height: 280px;
}
.oneo-dl__phone-brand {
  margin: 0 0 48px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.oneo-dl__phone-balance {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.oneo-dl__phone-sub {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
}
.oneo-dl-steps {
  padding: 72px 0 88px;
  background: #f4f4f5;
  color: #111;
}
.oneo-dl-steps__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}
.oneo-dl-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.oneo-dl-steps__card {
  padding: 24px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.oneo-dl-steps__n {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  color: #0666eb;
  letter-spacing: 0.06em;
}
.oneo-dl-steps__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0a0a0a;
}
.oneo-dl-steps__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3f3f46;
  font-weight: 550;
}
html:has(body.oneo-download-page),
body.oneo-download-page {
  overflow-x: hidden;
  max-width: 100%;
}
body.oneo-download-page {
  background: #050505;
}
body.oneo-download-page .oneo-header {
  position: absolute;
  top: var(--oneo-topbar-h, 40px);
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none !important;
}
body.oneo-download-page:not(.has-scrolled) .oneo-logo__mark {
  background: #fff;
  color: #0a0a0a;
}
body.oneo-download-page:not(.has-scrolled) .oneo-logo__text,
body.oneo-download-page:not(.has-scrolled) .oneo-login {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}
body.oneo-download-page:not(.has-scrolled) .oneo-menu-btn {
  color: #fff;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
}
body.oneo-download-page:not(.has-scrolled) .oneo-btn--signup {
  background: #fff !important;
  color: #0a0a0a !important;
}
body.oneo-download-page .oneo-topbar {
  overflow-wrap: anywhere;
}
body.oneo-download-page .oneo-header__inner {
  min-width: 0;
  gap: 10px;
}
body.oneo-download-page #main {
  overflow-x: hidden;
  max-width: 100%;
}
@media (max-width: 900px) {
  .oneo-dl::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 42%, transparent 68%);
    pointer-events: none;
    z-index: 0;
  }
  .oneo-dl__grid {
    grid-template-columns: 1fr;
  }
  .oneo-dl-steps__grid {
    grid-template-columns: 1fr;
  }
  .oneo-dl {
    padding-top: calc(var(--oneo-topbar-h, 40px) + 80px);
  }
}
@media (max-width: 640px) {
  body.oneo-download-page .oneo-wrap {
    width: min(var(--oneo-max), 100% - max(32px, env(safe-area-inset-left) + env(safe-area-inset-right) + 24px));
  }
  body.oneo-download-page .oneo-dl {
    padding: calc(var(--oneo-topbar-h, 40px) + 68px) 0 56px;
  }
  body.oneo-download-page .oneo-dl__copy {
    min-width: 0;
  }
  body.oneo-download-page .oneo-dl__eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
  }
  body.oneo-download-page .oneo-dl__title {
    font-size: clamp(2.125rem, 9.5vw, 2.875rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
  }
  body.oneo-download-page .oneo-dl__lead {
    font-size: 1.0625rem;
    line-height: 1.72;
    font-weight: 700;
    margin-bottom: 32px;
    max-width: none;
    color: #fff;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.32);
  }
  body.oneo-download-page .oneo-dl__stores {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }
  body.oneo-download-page .oneo-dl__store {
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    border-radius: 16px;
  }
  body.oneo-download-page .oneo-dl__store small {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.72);
  }
  body.oneo-download-page .oneo-dl__store strong {
    font-size: 18px;
    color: #0a0a0a;
  }
  body.oneo-download-page .oneo-dl__bullets li {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0 10px 24px;
    line-height: 1.55;
    color: #fff;
  }
  body.oneo-download-page .oneo-dl__bullets li::before {
    top: 17px;
    width: 9px;
    height: 9px;
  }
  body.oneo-download-page .oneo-dl__note {
    font-size: 14px;
    line-height: 1.65;
    max-width: none;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 550;
  }
  body.oneo-download-page .oneo-dl__aside {
    display: none;
  }
  body.oneo-download-page .oneo-dl-steps {
    padding: 56px 0 72px;
  }
  body.oneo-download-page .oneo-dl-steps__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    margin-bottom: 24px;
  }
  body.oneo-download-page .oneo-dl-steps__card {
    padding: 26px 22px;
  }
  body.oneo-download-page .oneo-dl-steps__card h3 {
    font-size: 20px;
    color: #0a0a0a;
  }
  body.oneo-download-page .oneo-dl-steps__card p {
    font-size: 15px;
    line-height: 1.65;
    color: #2e2e32;
    font-weight: 600;
  }
  body.oneo-download-page .oneo-login {
    padding: 8px 6px;
    font-size: 14px;
  }
  body.oneo-download-page .oneo-btn--signup {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  body.oneo-download-page .oneo-logo__text {
    font-size: 20px;
  }
  body.oneo-download-page .oneo-header__actions {
    gap: 6px;
  }
}

/* —— Legal hub (Revolut-style document) —— */
.oneo-legal-doc {
  background: #fff;
  color: #111;
  padding: 56px 0 96px;
}
.oneo-legal-doc__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.oneo-legal-doc__nav {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 16px;
  background: #f6f7f9;
  border: 1px solid #e8eaed;
}
.oneo-legal-doc__nav h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 14px;
}
.oneo-legal-doc__nav a {
  display: block;
  padding: 8px 10px;
  margin: 0 -6px 4px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
}
.oneo-legal-doc__nav a:hover,
.oneo-legal-doc__nav a.is-active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.oneo-legal-doc__meta {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 28px;
}
.oneo-legal-doc__body h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
  scroll-margin-top: 100px;
}
.oneo-legal-doc__body h2:first-child { margin-top: 0; }
.oneo-legal-doc__body p,
.oneo-legal-doc__body li {
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
  margin: 0 0 12px;
}
.oneo-legal-doc__body ul {
  padding-left: 22px;
  margin: 0 0 16px;
  list-style: disc;
}
.oneo-legal-doc__body .oneo-legal-doc__note {
  margin-top: 40px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f6f7f9;
  font-size: 13px;
  color: #6b7280;
}

/* —— Help centre —— */
.oneo-help {
  background: #fff;
  padding: 48px 0 88px;
}
.oneo-help__wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.oneo-help__search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  color: #9ca3af;
  font-size: 15px;
}
.oneo-help__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.oneo-help__cat {
  display: block;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid #e8eaed;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.oneo-help__cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.oneo-help__cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.oneo-help__cat h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #111;
}
.oneo-help__cat p {
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
}
.oneo-help__section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  text-align: center;
}
.oneo-help__section-sub {
  text-align: center;
  color: #6b7280;
  margin: 0 0 28px;
  font-size: 15px;
}
.oneo-help .oneo-faq { max-width: 760px; }

/* —— Plan compare (pricing) —— */
.oneo-plans {
  display: block;
  width: 100%;
  background: #fff;
  padding: 48px 0 88px;
}
.oneo-plans__wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.oneo-plans__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.oneo-plans__card {
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid #e8eaed;
  background: #fff;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.oneo-plans__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
}
.oneo-plans__card--featured {
  border-color: #111;
  background: #0a0a0a;
  color: #fff;
}
.oneo-plans__card--featured p,
.oneo-plans__card--featured li { color: rgba(255,255,255,0.78); }
.oneo-plans__card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}
.oneo-plans__price {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}
.oneo-plans__price span { font-size: 13px; font-weight: 600; opacity: 0.6; }
.oneo-plans__tag {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin: 0 0 16px;
}
.oneo-plans__card--featured .oneo-plans__tag { color: rgba(255,255,255,0.55); }
.oneo-plans__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  flex: 1;
}
.oneo-plans__card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #4b5563;
}
.oneo-plans__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #16a34a;
}
.oneo-plans__cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
}
.oneo-plans__card--featured .oneo-plans__cta {
  background: #fff;
  color: #111;
}
.oneo-plans__table-wrap {
  overflow-x: auto;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  margin-bottom: 56px;
}
.oneo-plans__head {
  text-align: center;
  margin-bottom: 28px;
}
.oneo-plans__head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.oneo-plans__head p { color: #6b7280; margin: 0; font-size: 15px; }

@media (max-width: 1100px) {
  .oneo-plans__cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .oneo-legal-doc__grid { grid-template-columns: 1fr; }
  .oneo-legal-doc__nav { position: static; }
  .oneo-help__cats { grid-template-columns: 1fr 1fr; }
  .oneo-plans__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .oneo-help__cats,
  .oneo-plans__cards { grid-template-columns: 1fr; }
}

/* —— Product pages (footer deep links) —— */
.oneo-prod {
  background: #fff;
  color: #111;
  padding: 56px 0 88px;
}
.oneo-prod__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.oneo-prod__intro {
  max-width: 720px;
  margin: 0 0 40px;
}
.oneo-prod__intro h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: #0a0a0a;
}
.oneo-prod__intro p {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}
.oneo-prod__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.oneo-prod__card {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid #e8eaed;
  background: #fafafa;
}
.oneo-prod__card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #0a0a0a;
}
.oneo-prod__card p {
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
  margin: 0;
}
.oneo-prod__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.oneo-prod__step {
  padding: 22px 20px;
  border-radius: 18px;
  background: #0a0a0a;
  color: #fff;
}
.oneo-prod__step .n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.oneo-prod__step h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
}
.oneo-prod__step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.oneo-prod .oneo-faq { max-width: 760px; margin: 0 auto 40px; }
.oneo-prod__cta {
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .oneo-prod__grid,
  .oneo-prod__steps { grid-template-columns: 1fr; }
}

/* —— Revolut-style secondary enrichment —— */
.oneo-rev-cinema {
  background: #0a0a0a;
  color: #fff;
  padding: 0;
}
.oneo-rev-cinema__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  min-height: min(560px, 70vh);
}
.oneo-rev-cinema__media {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 320px;
}
.oneo-rev-cinema__media video,
.oneo-rev-cinema__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.oneo-rev-cinema__media img { z-index: 0; }
.oneo-rev-cinema__media video { z-index: 1; }
.oneo-rev-cinema__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent 40%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
}
.oneo-rev-cinema__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  background: #0a0a0a;
}
.oneo-rev-cinema__copy .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px;
}
.oneo-rev-cinema__copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.oneo-rev-cinema__copy p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 24px;
  max-width: 42ch;
}
.oneo-rev-split {
  background: #fff;
  color: #111;
  padding: 64px 0;
}
.oneo-rev-split__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.oneo-rev-split--rev .oneo-rev-split__wrap > :first-child { order: 2; }
.oneo-rev-split--rev .oneo-rev-split__wrap > :last-child { order: 1; }
.oneo-rev-split__media {
  border-radius: 20px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}
.oneo-rev-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.oneo-rev-split__copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.oneo-rev-split__copy p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 12px;
}
.oneo-rev-split__copy ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.oneo-rev-split__copy li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #374151;
}
.oneo-rev-split__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.oneo-rev-mosaic {
  background: #f6f7f9;
  color: #0a0a0a;
  padding: 56px 0 64px;
}
.oneo-rev-mosaic__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.oneo-rev-mosaic__head {
  text-align: center;
  margin-bottom: 28px;
}
.oneo-rev-mosaic__head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  margin: 0 0 8px;
  color: #0a0a0a;
}
.oneo-rev-mosaic__head p { color: #6b7280; margin: 0; }
.oneo-rev-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.oneo-rev-mosaic__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e5e7eb;
}
.oneo-rev-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .oneo-rev-cinema__inner,
  .oneo-rev-split__wrap { grid-template-columns: 1fr; }
  .oneo-rev-split--rev .oneo-rev-split__wrap > :first-child,
  .oneo-rev-split--rev .oneo-rev-split__wrap > :last-child { order: initial; }
  .oneo-rev-cinema__shade { background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,.7) 100%); }
  .oneo-rev-mosaic__grid { grid-template-columns: 1fr 1fr; }
}

/* —— Deep Revolut-density product pages —— */
.oneo-deep-stats {
  background: #0a0a0a;
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.oneo-deep-stats__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.oneo-deep-stats strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.oneo-deep-stats span {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
}
.oneo-deep-stage {
  padding: 72px 0;
  color: #fff;
}
.oneo-deep-stage--ink { background: #0a0a0a; }
.oneo-deep-stage--slate { background: #141414; }
.oneo-deep-stage--light { background: #fff; color: #111; }
.oneo-deep-stage--mist { background: #f4f5f7; color: #111; }
.oneo-deep-stage__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.oneo-deep-stage--rev .oneo-deep-stage__wrap > :first-child { order: 2; }
.oneo-deep-stage--rev .oneo-deep-stage__wrap > :last-child { order: 1; }
.oneo-deep-stage__media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #222;
  position: relative;
}
.oneo-deep-stage__media img,
.oneo-deep-stage__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.oneo-deep-stage__media video {
  position: absolute;
  inset: 0;
}
.oneo-deep-stage__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 12px;
}
.oneo-deep-stage__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.oneo-deep-stage__text {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.78;
  margin: 0 0 14px;
  max-width: 48ch;
}
.oneo-deep-stage--light .oneo-deep-stage__text,
.oneo-deep-stage--mist .oneo-deep-stage__text { opacity: 1; color: #4b5563; }
.oneo-deep-stage__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.oneo-deep-stage__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.88;
}
.oneo-deep-stage__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #22c55e;
}
.oneo-deep-usecases {
  background: #fff;
  color: #0a0a0a;
  padding: 64px 0 72px;
}
.oneo-deep-usecases__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.oneo-deep-usecases__head {
  text-align: center;
  margin-bottom: 32px;
}
.oneo-deep-usecases__head h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  margin: 0 0 10px;
  color: #0a0a0a;
}
.oneo-deep-usecases__head p { color: #6b7280; margin: 0; }
.oneo-deep-usecases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.oneo-deep-usecase {
  border: 1px solid #e8eaed;
  border-radius: 18px;
  overflow: hidden;
  background: #fafafa;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.oneo-deep-usecase:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.oneo-deep-usecase img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.oneo-deep-usecase__body { padding: 16px 16px 18px; }
.oneo-deep-usecase__body h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}
.oneo-deep-usecase__body p {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}
.oneo-deep-compare {
  background: #0a0a0a;
  color: #fff;
  padding: 64px 0;
}
.oneo-deep-compare__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.oneo-deep-compare__head {
  text-align: center;
  margin-bottom: 28px;
}
.oneo-deep-compare__head h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  margin: 0 0 10px;
}
.oneo-deep-compare__head p { color: rgba(255,255,255,.65); margin: 0; }
.oneo-deep-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.oneo-deep-compare th,
.oneo-deep-compare td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.oneo-deep-compare th:first-child,
.oneo-deep-compare td:first-child { text-align: left; }
.oneo-deep-compare th { color: rgba(255,255,255,.55); font-weight: 700; }
.oneo-deep-related {
  background: #f6f7f9;
  color: #0a0a0a;
  padding: 56px 0;
}
.oneo-deep-related__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.oneo-deep-related h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 20px;
  text-align: center;
  color: #0a0a0a;
}
.oneo-deep-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.oneo-deep-related__links a,
.oneo-deep-related__links a.oneo-co-sub__related-link {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.oneo-deep-related__links a:hover,
.oneo-deep-related__links a.oneo-co-sub__related-link:hover {
  border-color: #111;
  background: #fff;
  color: #111;
}
.oneo-deep-note {
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
}

/* —— Contrast safety: dark body (company/biz) must not bleach light strips —— */
body.oneo-company .oneo-prod,
body.oneo-company .oneo-deep-related,
body.oneo-company .oneo-deep-usecases,
body.oneo-company .oneo-rev-mosaic,
body.oneo-company .oneo-deep-stage--light,
body.oneo-company .oneo-deep-stage--mist {
  color: #0a0a0a;
}
body.oneo-company .oneo-prod__intro h2,
body.oneo-company .oneo-prod__card h3,
body.oneo-company .oneo-deep-related h2,
body.oneo-company .oneo-deep-usecases__head h2,
body.oneo-company .oneo-rev-mosaic__head h2,
body.oneo-company .oneo-deep-stage--light .oneo-deep-stage__title,
body.oneo-company .oneo-deep-stage--mist .oneo-deep-stage__title {
  color: #0a0a0a;
}
body.oneo-company .oneo-prod__intro p,
body.oneo-company .oneo-prod__card p,
body.oneo-company .oneo-deep-usecases__head p,
body.oneo-company .oneo-rev-mosaic__head p,
body.oneo-company .oneo-deep-note,
body.oneo-company .oneo-faq__a-inner {
  color: #4b5563;
}
body.oneo-company .oneo-faq__q {
  color: #0a0a0a;
}
body.oneo-company .oneo-deep-stage--light .oneo-deep-stage__eyebrow,
body.oneo-company .oneo-deep-stage--mist .oneo-deep-stage__eyebrow {
  color: #6b7280;
  opacity: 1;
}
body.oneo-company .oneo-deep-stage--light .oneo-deep-stage__list li,
body.oneo-company .oneo-deep-stage--mist .oneo-deep-stage__list li {
  color: #111;
}

/*
 * CRITICAL: .oneo-co-sub__block defaults to dark bg (#0a0a0a) in company.css.
 * Never force #0a0a0a text onto those blocks — titles become invisible.
 */
body.oneo-company .oneo-co-sub__block,
body.oneo-company .oneo-co-sub__block--ink,
body.oneo-company .oneo-co-sub__hero,
body.oneo-company .oneo-deep-stage--ink,
body.oneo-company .oneo-deep-stage--slate,
body.oneo-company .oneo-deep-stats,
body.oneo-company .oneo-deep-compare,
body.oneo-company .oneo-rev-cinema,
body.oneo-company .oneo-prod__step {
  color: #fff;
}
body.oneo-company .oneo-co-sub__block .oneo-co-sub__h2,
body.oneo-company .oneo-co-sub__block .oneo-co-sub__card h3,
body.oneo-company .oneo-co-sub__block .oneo-co-sub__more,
body.oneo-company .oneo-co-sub__hero .oneo-co-sub__title,
body.oneo-company .oneo-deep-stage--ink .oneo-deep-stage__title,
body.oneo-company .oneo-deep-stage--slate .oneo-deep-stage__title,
body.oneo-company .oneo-deep-compare__head h2,
body.oneo-company .oneo-prod__step h3,
body.oneo-company .oneo-rev-cinema__copy h2 {
  color: #fff !important;
}
body.oneo-company .oneo-co-sub__block .oneo-co-sub__lead,
body.oneo-company .oneo-co-sub__block .oneo-co-sub__card p,
body.oneo-company .oneo-co-sub__block .oneo-co-sub__list,
body.oneo-company .oneo-co-sub__block .oneo-co-sub__list li,
body.oneo-company .oneo-co-sub__hero .oneo-co-sub__desc,
body.oneo-company .oneo-co-sub__hero .oneo-co-sub__eyebrow,
body.oneo-company .oneo-deep-stage--ink .oneo-deep-stage__text,
body.oneo-company .oneo-deep-stage--ink .oneo-deep-stage__eyebrow,
body.oneo-company .oneo-deep-stage--ink .oneo-deep-stage__list li,
body.oneo-company .oneo-deep-stage--slate .oneo-deep-stage__text,
body.oneo-company .oneo-deep-stage--slate .oneo-deep-stage__eyebrow,
body.oneo-company .oneo-deep-stage--slate .oneo-deep-stage__list li,
body.oneo-company .oneo-deep-compare__head p,
body.oneo-company .oneo-deep-stats span,
body.oneo-company .oneo-prod__step p,
body.oneo-company .oneo-rev-cinema__copy p,
body.oneo-company .oneo-rev-cinema__copy .eyebrow {
  color: rgba(255, 255, 255, 0.78) !important;
  opacity: 1;
}
body.oneo-company .oneo-co-sub__block .oneo-co-sub__card {
  background: #171717;
}
body.oneo-company .oneo-crumb,
body.oneo-company .oneo-crumb a {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* Light surfaces stay dark type (explicit — do not bleed into ink blocks) */
body.oneo-company .oneo-prod:not(.oneo-prod--ink),
body.oneo-company .oneo-deep-related,
body.oneo-company .oneo-deep-usecases,
body.oneo-company .oneo-rev-mosaic,
body.oneo-company .oneo-deep-stage--light,
body.oneo-company .oneo-deep-stage--mist,
body.oneo-company .oneo-faq {
  color: #0a0a0a;
}
body.oneo-company .oneo-prod .oneo-faq__q,
body.oneo-company .oneo-deep-related h2,
body.oneo-company .oneo-deep-related__links a,
body.oneo-company .oneo-deep-related__links a.oneo-co-sub__related-link {
  color: #0a0a0a !important;
}
body.oneo-company .oneo-deep-related__links a,
body.oneo-company .oneo-deep-related__links a.oneo-co-sub__related-link {
  background: #fff !important;
}

@media (max-width: 900px) {
  .oneo-deep-stats__wrap { grid-template-columns: 1fr 1fr; }
  .oneo-deep-stage__wrap { grid-template-columns: 1fr; }
  .oneo-deep-stage--rev .oneo-deep-stage__wrap > :first-child,
  .oneo-deep-stage--rev .oneo-deep-stage__wrap > :last-child { order: initial; }
  .oneo-deep-usecases__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .oneo-deep-stats__wrap,
  .oneo-deep-usecases__grid { grid-template-columns: 1fr; }
}
