/* ==========================================================================
   OrderApp2 — Premium B2B SaaS Design System
   Visual Identity: Clean Canvas, Crisp White Surfaces, eCount Brand Blue (#0073BC)
   Typography: Inherited from site (Poppins, -apple-system, sans-serif)
   Scoped strictly within .oa-page-2 to preserve native Header & Footer.
   ========================================================================== */

:root {
  --oa-canvas: #F4F5F9;
  --oa-surface: #FFFFFF;
  --oa-ink-primary: #121324;
  --oa-ink-secondary: #4A4F6B;
  --oa-ink-muted: #7D839E;
  --oa-accent: #0073BC;
  --oa-accent-hover: #005A94;
  --oa-accent-soft: #E8F4FB;
  --oa-accent-border: rgba(0, 115, 188, 0.25);
  
  --oa-success: #00B87C;
  --oa-success-soft: #E6F8F1;
  --oa-warning: #F59E0B;
  --oa-warning-soft: #FEF3C7;
  --oa-info: #0284C7;
  --oa-info-soft: #E0F2FE;
  
  --oa-border: rgba(0, 115, 188, 0.14);
  --oa-border-subtle: rgba(22, 24, 46, 0.08);
  
  --oa-shadow-sm: 0 2px 6px rgba(18, 19, 36, 0.04);
  --oa-shadow-md: 0 10px 30px rgba(22, 24, 46, 0.07), 0 2px 8px rgba(22, 24, 46, 0.03);
  --oa-shadow-lg: 0 20px 48px rgba(22, 24, 46, 0.09), 0 4px 14px rgba(22, 24, 46, 0.04);
  --oa-shadow-accent: 0 10px 30px rgba(0, 115, 188, 0.22);
  
  --oa-radius-md: 14px;
  --oa-radius-xl: 30px;
  --oa-radius-pill: 9999px;
  
  --oa-container-w: 1220px;
}

/* Base Wrapper for OrderApp 2 */
.oa-page-2 {
  background-color: #FFFFFF;
  color: var(--oa-ink-primary);
  font-family: inherit;
  overflow-x: hidden;
  overflow-x: clip; /* clip, not hidden: hidden creates a scroll container and breaks position: sticky */
  position: relative;
}

.oa-page-2 *,
.oa-page-2 *::before,
.oa-page-2 *::after {
  box-sizing: border-box;
}

/* Container */
.oa-page-2 .oa-container {
  width: 100%;
  max-width: var(--oa-container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Containers */
.oa-page-2 .oa-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

/* Common Typography & Badges */
.oa-page-2 .oa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--oa-surface);
  border: 1px solid var(--oa-border);
  border-radius: var(--oa-radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oa-accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: var(--oa-shadow-sm);
  margin-bottom: 18px;
}

.oa-page-2 .oa-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--oa-accent);
  box-shadow: 0 0 0 3px var(--oa-accent-soft);
  animation: oaPulseDot 2s infinite ease-in-out;
}

@keyframes oaPulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.oa-page-2 .oa-head-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.oa-page-2 .oa-title-h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--oa-ink-primary);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.oa-page-2 .oa-desc {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--oa-ink-secondary);
  line-height: 1.65;
  font-weight: 400;
}

/* ==========================================================================
   HERO SECTION 1: Logo + Title + Download Buttons (Left) & Phone Mockup (Right)
   ========================================================================== */
.oa-page-2 .oa2-hero-section {
  padding-top: 60px;
  padding-bottom: 40px;
  background: #FFFFFF;
  position: relative;
}

.oa-page-2 .oa2-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.oa-page-2 .oa2-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.oa-page-2 .oa2-hero-logo-wrap {
  margin-bottom: 20px;
}

.oa-page-2 .oa2-hero-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.oa-page-2 .oa2-hero-title {
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--oa-ink-primary);
  margin-bottom: 20px;
}

.oa-page-2 .oa2-highlight {
  color: var(--oa-accent);
  position: relative;
  display: inline-block;
}

.oa-page-2 .oa2-hero-desc {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--oa-ink-secondary);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 34px;
}

/* Dual Store Download Action Buttons */
.oa-page-2 .oa2-hero-store-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.oa-page-2 .oa2-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border-radius: var(--oa-radius-pill);
  background-color: #111322;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18, 19, 34, 0.18);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.oa-page-2 .oa2-store-btn:hover {
  background-color: #05060A;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 19, 34, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
}

.oa-page-2 .oa2-store-icon {
  flex-shrink: 0;
}

.oa-page-2 .oa2-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.oa-page-2 .oa2-store-sub {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ACB2CB;
}

.oa-page-2 .oa2-store-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Right Side: Phone Mockup */
.oa-page-2 .oa2-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.oa-page-2 .oa2-mockup-halo {
  position: absolute;
  width: 380px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(0, 115, 188, 0.18) 0%, rgba(244, 245, 249, 0) 70%);
  z-index: 0;
  pointer-events: none;
  animation: oaHeroHaloPulse 3.6s ease-in-out infinite;
}

.oa-page-2 .oa2-hero-phone-wrap {
  position: relative;
  z-index: 1;
  max-width: 340px;
  width: 100%;
  animation: oaHeroPhoneFloat 3.6s ease-in-out infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.oa-page-2 .oa2-hero-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(18, 19, 36, 0.18));
  animation: oaHeroPhoneShadow 3.6s ease-in-out infinite;
}

@keyframes oaHeroPhoneFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}

@keyframes oaHeroPhoneShadow {
  0%, 100% {
    filter: drop-shadow(0 18px 28px rgba(18, 19, 36, 0.16));
  }
  50% {
    filter: drop-shadow(0 32px 42px rgba(0, 115, 188, 0.22));
  }
}

@keyframes oaHeroHaloPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.oa-page-2 .oa-trusted-logos-section {
  padding: 8px 0 28px;
  background: #FFFFFF;
}

.oa-page-2 .oa-trusted-logos-inner {
  padding: 4px 0 8px;
}

.oa-page-2 .oa-trusted-logos-section .marquee-logos_heading {
  margin-bottom: 18px;
}

/* ==========================================================================
   SECTION 2: MULTI PURPOSE ORDER APP / ECOSYSTEM (Background B: Canvas)
   ========================================================================== */
.oa-page-2 .oa-ecosystem-section {
  background: var(--oa-canvas);
  padding: 90px 0 72px;
}

.oa-page-2 .oa-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 600px;
  margin: 0 auto;
  border-radius: var(--oa-radius-xl);
  background: #FFFFFF;
  border: 1px solid var(--oa-border);
  box-shadow: var(--oa-shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oa-page-2 .oa-core-hub {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(0, 168, 89, 0.35);
  box-shadow:
    0 0 0 8px rgba(0, 168, 89, 0.08),
    0 14px 36px rgba(18, 19, 36, 0.1),
    0 0 40px rgba(0, 168, 89, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: visible;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.oa-page-2 .oa-core-hub:hover {
  transform: scale(1.05);
}

.oa-page-2 .oa-core-icon-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.oa-page-2 .oa-core-icon {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
  animation: oaHubIconPulse 3.6s ease-in-out infinite;
}

.oa-page-2 .oa-core-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 168, 89, 0.55);
  animation: oaSpinHub 30s linear infinite;
  pointer-events: none;
}

@keyframes oaSpinHub {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes oaHubIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.oa-page-2 .oa-orbit-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.oa-page-2 .oa-orbit-path {
  fill: none;
  stroke: rgba(0, 115, 188, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.oa-page-2 .oa-data-particle {
  position: absolute;
  padding: 6px 12px;
  background: var(--oa-surface);
  border: 1px solid var(--oa-accent-border);
  border-radius: var(--oa-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oa-ink-primary);
  box-shadow: 0 4px 14px rgba(0, 115, 188, 0.18);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  white-space: nowrap;
  pointer-events: none;
}

.oa-page-2 .oa-data-particle-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
}

.oa-page-2 .icon-order { background: #0284C7; }
.oa-page-2 .icon-stock { background: #00B87C; }
.oa-page-2 .icon-payment { background: #F59E0B; }
.oa-page-2 .icon-route { background: #0073BC; }
.oa-page-2 .icon-ledger { background: #E11D48; }

.oa-page-2 .oa-role-node {
  position: absolute;
  width: 252px;
  background: var(--oa-surface);
  border: 1px solid #E6ECF2;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 19, 36, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  text-align: left;
  z-index: 8;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.oa-page-2 .oa-role-node::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
}

.oa-page-2 .oa-role-node:hover {
  transform: translateY(-5px);
}

.oa-page-2 .oa-role-node-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 10px 12px 9px;
  background: linear-gradient(180deg, #F8FBFE 0%, #FFFFFF 100%);
  border-bottom: 1px solid #EEF2F6;
}

.oa-page-2 .oa-role-node-title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--oa-ink-primary);
  display: flex;
  align-items: center;
  gap: 9px;
}

.oa-page-2 .oa-role-node-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex: none;
  box-shadow: 0 1px 2px rgba(18, 19, 36, 0.06);
}

.oa-page-2 .oa-role-node-icon svg {
  width: 15px;
  height: 15px;
}

.oa-page-2 .node-customer .oa-role-node-icon {
  background: #E0F2FE;
  color: #0369A1;
}

.oa-page-2 .node-salesman .oa-role-node-icon {
  background: #FEF3C7;
  color: #B45309;
}

.oa-page-2 .node-admin .oa-role-node-icon {
  background: #E8F4FB;
  color: #0073BC;
}

.oa-page-2 .oa-role-pill-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 99px;
  text-transform: uppercase;
  white-space: nowrap;
}

.oa-page-2 .node-customer {
  top: 22px;
  left: 28px;
  z-index: 9;
}
.oa-page-2 .node-customer::before { background: linear-gradient(90deg, #0073BC, #38BDF8); }
.oa-page-2 .node-customer .oa-role-pill-chip { background: #E0F2FE; color: #0369A1; }
.oa-page-2 .node-customer:hover {
  border-color: rgba(0, 115, 188, 0.28);
  box-shadow: 0 16px 36px rgba(0, 115, 188, 0.16);
}

.oa-page-2 .node-salesman {
  top: 300px;
  bottom: auto;
  left: 88px;
  z-index: 9;
}
.oa-page-2 .node-salesman::before { background: linear-gradient(90deg, #D97706, #FBBF24); }
.oa-page-2 .node-salesman .oa-role-pill-chip { background: #FEF3C7; color: #B45309; }
.oa-page-2 .node-salesman:hover {
  border-color: rgba(217, 119, 6, 0.32);
  box-shadow: 0 16px 36px rgba(217, 119, 6, 0.16);
}

.oa-page-2 .node-admin {
  top: 150px;
  right: 28px;
  z-index: 9;
}
.oa-page-2 .node-admin::before { background: linear-gradient(90deg, #0073BC, #63baf1); }
.oa-page-2 .node-admin .oa-role-pill-chip { background: #E8F4FB; color: #0073BC; }
.oa-page-2 .node-admin:hover {
  border-color: rgba(0, 115, 188, 0.28);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.16);
}

.oa-page-2 .oa-role-points {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
}

.oa-page-2 .oa-role-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--oa-ink-primary);
  background: #F6F9FC;
  border: 1px solid #EAF0F5;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  animation: oaPointIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.oa-page-2 .oa-role-points li:nth-child(1) { animation-delay: 0.08s; }
.oa-page-2 .oa-role-points li:nth-child(2) { animation-delay: 0.16s; }
.oa-page-2 .oa-role-points li:nth-child(3) { animation-delay: 0.24s; }
.oa-page-2 .oa-role-points li:nth-child(4) { animation-delay: 0.32s; }

.oa-page-2 .oa-role-points li:hover {
  transform: translateX(4px);
  background: #fff;
  border-color: #D7E4EE;
  box-shadow: 0 8px 18px rgba(18, 19, 36, 0.07);
}

.oa-page-2 .oa-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  flex: none;
  animation: oaPointIconPulse 2.6s ease-in-out infinite;
}

.oa-page-2 .oa-role-points li:nth-child(2) .oa-point-icon { animation-delay: 0.35s; }
.oa-page-2 .oa-role-points li:nth-child(3) .oa-point-icon { animation-delay: 0.7s; }
.oa-page-2 .oa-role-points li:nth-child(4) .oa-point-icon { animation-delay: 1.05s; }

.oa-page-2 .oa-point-icon svg {
  width: 13px;
  height: 13px;
}

.oa-page-2 .oa-point-icon.is-order { background: #DBEAFE; color: #1D4ED8; }
.oa-page-2 .oa-point-icon.is-price { background: #CCFBF1; color: #0F766E; }
.oa-page-2 .oa-point-icon.is-export { background: #E0E7FF; color: #3891ca; }
.oa-page-2 .oa-point-icon.is-route { background: #FEF3C7; color: #B45309; }
.oa-page-2 .oa-point-icon.is-gps { background: #FEE2E2; color: #B91C1C; }
.oa-page-2 .oa-point-icon.is-ledger { background: #E0F2FE; color: #0369A1; }
.oa-page-2 .oa-point-icon.is-stock { background: #DCFCE7; color: #15803D; }
.oa-page-2 .oa-point-icon.is-manage { background: #E8F4FB; color: #0073BC; }
.oa-page-2 .oa-point-icon.is-dispatch { background: #E0E7FF; color: #3891ca; }
.oa-page-2 .oa-point-icon.is-track { background: #FEF3C7; color: #B45309; }

@keyframes oaPointIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes oaPointIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .oa-page-2 .oa-role-points li,
  .oa-page-2 .oa-point-icon,
  .oa-page-2 .oa-core-icon {
    animation: none !important;
  }
}

/* ==========================================================================
   MID CTA — Compact Free Trial Banner (between Ecosystem & Custom Branding)
   ========================================================================== */
/* Sits on the seam: top half matches the Ecosystem section, bottom half the Custom Branding section */
.oa-page-2 .oa-cta-banner-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, var(--oa-canvas) 0 50%, #FFFFFF 50% 100%);
  padding: 0;
}

.oa-page-2 .oa-cta-banner-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 36px;
  padding: 22px 28px 22px 40px;
  border-radius: 22px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 115, 188, 0.18);
  color: var(--oa-ink-primary);
  overflow: hidden;
  box-shadow:
    0 24px 48px -18px rgba(0, 78, 138, 0.22),
    0 8px 20px rgba(22, 24, 46, 0.06);
}

/* Decorative background */
.oa-page-2 .oa-cta-banner-fx {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.oa-page-2 .oa-cta-banner-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 115, 188, 0.16) 1px, transparent 1.4px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 85% 50%, #000 5%, transparent 55%);
  -webkit-mask-image: radial-gradient(ellipse at 85% 50%, #000 5%, transparent 55%);
}

.oa-page-2 .oa-cta-banner-orb {
  position: absolute;
  border-radius: 50%;
  animation: oaCtaOrb 10s ease-in-out infinite;
}

.oa-page-2 .oa-cta-banner-orb--a {
  top: -150px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 115, 188, 0.12), transparent 65%);
}

.oa-page-2 .oa-cta-banner-orb--b {
  bottom: -190px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 184, 124, 0.08), transparent 65%);
  animation-delay: -5s;
}

/* Copy */
.oa-page-2 .oa-cta-banner-copy {
  position: relative;
  min-width: 0;
}

.oa-page-2 .oa-cta-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--oa-accent-soft);
  border: 1px solid var(--oa-accent-border);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--oa-accent);
}

.oa-page-2 .oa-cta-banner-live {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34E0A1;
}

.oa-page-2 .oa-cta-banner-live::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #34E0A1;
  animation: oaCtaPing 1.8s ease-out infinite;
}

.oa-page-2 .oa-cta-banner-title {
  margin: 8px 0 10px;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--oa-ink-primary);
}

.oa-page-2 .oa-cta-banner-br {
  display: none;
}

.oa-page-2 .oa-cta-banner-accent {
  position: relative;
  display: inline-block;
  color: var(--oa-accent);
  white-space: nowrap;
}

.oa-page-2 .oa-cta-banner-accent::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -0.04em;
  height: 0.12em;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0, 115, 188, 0.55), rgba(0, 115, 188, 0.05));
  transform-origin: left center;
  animation: oaCtaUnderline 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.oa-page-2 .oa-cta-banner-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.oa-page-2 .oa-cta-banner-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--oa-ink-secondary);
}

.oa-page-2 .oa-cta-banner-trust-icon {
  flex: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--oa-success-soft);
  color: var(--oa-success);
  display: inline-grid;
  place-items: center;
}

/* Actions + ring */
.oa-page-2 .oa-cta-banner-aside {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  flex: none;
}

.oa-page-2 .oa-cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oa-page-2 .oa-cta-banner-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--oa-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--oa-shadow-accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.oa-page-2 .oa-cta-banner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.oa-page-2 .oa-cta-banner-btn:hover {
  color: #fff;
  background: var(--oa-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 115, 188, 0.3);
}

.oa-page-2 .oa-cta-banner-btn:hover::before {
  left: 120%;
}

.oa-page-2 .oa-cta-banner-btn-arrow {
  transition: transform 0.25s ease;
}

.oa-page-2 .oa-cta-banner-btn:hover .oa-cta-banner-btn-arrow {
  transform: translateX(4px);
}

.oa-page-2 .oa-cta-banner-btn--ghost {
  background: #fff;
  color: var(--oa-accent);
  border: 1.5px solid var(--oa-accent-border);
  box-shadow: none;
}

.oa-page-2 .oa-cta-banner-btn--ghost::before {
  display: none;
}

.oa-page-2 .oa-cta-banner-btn--ghost:hover {
  color: var(--oa-accent-hover);
  background: var(--oa-accent-soft);
  border-color: var(--oa-accent);
  box-shadow: none;
}

.oa-page-2 .oa-cta-banner-btn:focus-visible,
.oa-page-2 .oa-cta-banner-visual:focus-visible {
  outline: 3px solid rgba(0, 115, 188, 0.45);
  outline-offset: 3px;
}

.oa-page-2 .oa-cta-banner-visual {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  text-decoration: none;
}

.oa-page-2 .oa-cta-banner-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.oa-page-2 .oa-cta-banner-ring-spin {
  animation: oaCtaRingSpin 14s linear infinite;
  transform-origin: 110px 110px;
}

.oa-page-2 .oa-cta-banner-ring-rev {
  animation: oaCtaRingSpin 24s linear infinite reverse;
  transform-origin: 110px 110px;
}

.oa-page-2 .oa-cta-banner-ring-text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: var(--oa-accent);
}

.oa-page-2 .oa-cta-banner-ring-dash {
  fill: none;
  stroke: rgba(0, 115, 188, 0.35);
  stroke-width: 2.5;
  stroke-dasharray: 3 9;
  stroke-linecap: round;
}

.oa-page-2 .oa-cta-banner-core {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--oa-accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 6px var(--oa-accent-soft),
    0 10px 22px rgba(0, 115, 188, 0.3);
  transition: transform 0.3s ease;
}

.oa-page-2 .oa-cta-banner-core::before,
.oa-page-2 .oa-cta-banner-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 115, 188, 0.4);
  animation: oaCtaRipple 2.6s ease-out infinite;
  pointer-events: none;
}

.oa-page-2 .oa-cta-banner-core::after {
  animation-delay: 1.3s;
}

.oa-page-2 .oa-cta-banner-visual:hover .oa-cta-banner-core {
  transform: scale(1.1);
}

.oa-page-2 .oa-cta-banner-play {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  display: grid;
  place-items: center;
}

.oa-page-2 .oa-cta-banner-play svg {
  width: 100%;
  height: 100%;
}

@keyframes oaCtaRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes oaCtaRipple {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

@keyframes oaCtaPing {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.6); }
}

@keyframes oaCtaOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-16px, 14px) scale(1.08); }
}

@keyframes oaCtaUnderline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .oa-page-2 .oa-cta-banner-btn--ghost {
    display: none;
  }
}

@media (max-width: 860px) {
  .oa-page-2 .oa-cta-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
    gap: 30px;
  }

  .oa-page-2 .oa-cta-banner-trust {
    justify-content: center;
  }

  .oa-page-2 .oa-cta-banner-aside {
    gap: 18px;
  }

  .oa-page-2 .oa-cta-banner-btn--ghost {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .oa-page-2 .oa-cta-banner-section {
    padding: 0;
  }

  .oa-page-2 .oa-cta-banner-br {
    display: inline;
  }

  .oa-page-2 .oa-cta-banner-aside {
    flex-direction: column-reverse;
    width: 100%;
    gap: 26px;
  }

  .oa-page-2 .oa-cta-banner-actions {
    width: 100%;
  }

  .oa-page-2 .oa-cta-banner-btn {
    flex: 1 1 100%;
  }

  .oa-page-2 .oa-cta-banner-visual {
    width: 92px;
    height: 92px;
    margin: 6px 0;
  }

  .oa-page-2 .oa-cta-banner-core {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oa-page-2 .oa-cta-banner-btn:hover,
  .oa-page-2 .oa-cta-banner-visual:hover .oa-cta-banner-core {
    transform: none;
  }
}

/* ==========================================================================
   SECTION 3: ROLE 1 - CUSTOMER EXPERIENCE (OLD DESIGN PATTERN: SPLIT GRID)
   ========================================================================== */
.oa-page-2 .oa-product-showcase {
  background: #FFFFFF;
  padding: 72px 0 90px;
  overflow: hidden;
  overflow: clip; /* keeps the sticky phone working */
}

.oa-page-2 .oa-showcase-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.oa-page-2 .oa-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  /* start, not center: the phone column is sticky and must begin level with card 1,
     not centered against the tall combined height of all 5 cards */
  align-items: start;
}

.oa-page-2 .oa-journey-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  /* room for the last card to reach the activation line while the phone is still stuck */
  padding-bottom: 420px;
}

.oa-page-2 .oa-journey-steps .oa-step-card:not(.is-active) {
  opacity: 0.55;
}

.oa-page-2 .oa-journey-steps .oa-step-card:not(.is-active):hover {
  opacity: 1;
}

.oa-page-2 .oa-step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--oa-radius-md);
  background: #FFFFFF;
  border: 1.5px solid transparent;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.oa-page-2 .oa-step-card:hover,
.oa-page-2 .oa-step-card.is-active {
  background: #FFFFFF;
  border-color: var(--oa-accent);
  box-shadow: var(--oa-shadow-md);
  transform: translateX(6px);
}

.oa-page-2 .oa-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--oa-surface);
  border: 1px solid var(--oa-border);
  color: var(--oa-ink-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.25s ease;
}

.oa-page-2 .oa-step-card.is-active .oa-step-num {
  background: var(--oa-accent);
  border-color: var(--oa-accent);
  color: #fff;
}

.oa-page-2 .oa-step-body {
  flex: 1;
}

.oa-page-2 .oa-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 8px;
}

.oa-page-2 .oa-step-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oa-page-2 .oa-step-app-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.oa-page-2 .oa-step-app-icon-custom {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--oa-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.oa-page-2 .oa-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--oa-ink-primary);
}

.oa-page-2 .oa-step-cat {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--oa-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.oa-page-2 .oa-step-desc {
  font-size: 0.84rem;
  color: var(--oa-ink-secondary);
  line-height: 1.5;
  margin-bottom: 6px;
}

.oa-page-2 .oa-step-action {
  margin-top: 4px;
}

.oa-page-2 .oa-step-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--oa-accent);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.oa-page-2 .oa-step-link:hover {
  color: var(--oa-accent-hover);
  transform: translateX(3px);
}

/* Realistic Smartphone Mockup Frame — sticky while the app cards scroll past */
.oa-page-2 .oa-phone-column {
  position: sticky;
  top: max(96px, calc(36px + 50vh - 340px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.oa-page-2 .oa-phone-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.oa-page-2 .oa-phone-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(0, 115, 188, 0.22);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.oa-page-2 .oa-phone-dot.is-active {
  width: 26px;
  background: var(--oa-accent);
}

.oa-page-2 .oa-phone-dot:focus-visible {
  outline: 2px solid var(--oa-accent);
  outline-offset: 3px;
}

/* The five app images already are complete device mockups (frame, notch, nav bar baked
   in, transparent background) — no CSS phone chrome is drawn around them here, that
   would just double up the frame. This wrapper only sizes the area and grounds it with
   a shadow that follows the phone's own silhouette. */
.oa-page-2 .oa-phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.oa-page-2 .oa-phone-mockup:not(.oa-sync-phone) {
  max-width: 82vw;
  aspect-ratio: 320 / 640;
  height: auto;
}

.oa-page-2 .oa-phone-mockup:hover {
  transform: translateY(-6px);
}

.oa-page-2 .oa-phone-column .oa-phone-screen {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.oa-page-2 .oa-app-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.2s ease-in-out;
}

.oa-page-2 .oa-phone-column .oa-app-screen-img {
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 34px rgba(18, 19, 36, 0.26));
}

/* Showcase phone: single image, faded out then swapped then faded back in — see selectApp() in JS */
.oa-page-2 .oa-phone-column .oa-app-screen-img.is-swapping {
  opacity: 0;
}

/* ==========================================================================
   SECTION 4: ADMIN COMMAND CENTER (Background B: Canvas)
   ========================================================================== */
.oa-page-2 .oa-admin-section {
  background: #FFFFFF;
  padding: 90px 0;
}

.oa-page-2 .oa-command-center {
  background: #FFFFFF;
  border-radius: var(--oa-radius-xl);
  border: 1px solid var(--oa-border);
  box-shadow: var(--oa-shadow-lg);
  padding: 30px;
  overflow: hidden;
}

.oa-page-2 .oa-command-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.oa-page-2 .oa-command-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.oa-page-2 .oa-kpi-card {
  background: #F8FAFC;
  border-radius: var(--oa-radius-md);
  padding: 18px;
  border: 1px solid var(--oa-border-subtle);
  box-shadow: var(--oa-shadow-sm);
}

.oa-page-2 .oa-kpi-label {
  font-size: 0.78rem;
  color: var(--oa-ink-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.oa-page-2 .oa-kpi-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--oa-ink-primary);
  line-height: 1;
}

.oa-page-2 .oa-kpi-delta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--oa-success);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.oa-page-2 .oa-orders-table-wrap {
  background: #FFFFFF;
  border-radius: var(--oa-radius-md);
  border: 1px solid var(--oa-border-subtle);
  overflow-x: auto;
  box-shadow: var(--oa-shadow-sm);
}

.oa-page-2 .oa-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.oa-page-2 .oa-table th {
  background: #F4F8FC;
  padding: 12px 18px;
  color: var(--oa-ink-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--oa-border-subtle);
}

.oa-page-2 .oa-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--oa-border-subtle);
  color: var(--oa-ink-primary);
}

.oa-page-2 .oa-table tr:last-child td {
  border-bottom: none;
}

.oa-page-2 .oa-status-badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}

.oa-page-2 .badge-dispatch { background: var(--oa-info-soft); color: var(--oa-info); }
.oa-page-2 .badge-confirmed { background: var(--oa-success-soft); color: var(--oa-success); }
.oa-page-2 .badge-hold { background: var(--oa-warning-soft); color: var(--oa-warning); }
/* ==========================================================================
   SECTION 5: LIVE MODULAR CAPABILITY DECK
   Light 3D scene: canvas stage, white/blue center, soft-blue live feed
   ========================================================================== */
.oa-page-2 .oa-modules-section {
  background: var(--oa-canvas);
  padding: 56px 0 64px;
  overflow: visible;
}

.oa-page-2 .oa-modules-section .oa-head-center {
  margin-bottom: 28px;
  max-width: 760px;
}

.oa-page-2 .oa-modules-section .oa-title-h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.oa-page-2 .oa-modules-section .oa-desc {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
}

.oa-page-2 .oa-sync-scene {
  position: relative;
}

.oa-page-2 .oa-sync-scene::after {
  display: none;
}

.oa-page-2 .oa-sync-deck {
  --mod: #0073BC;
  --mod-soft: rgba(0, 115, 188, 0.12);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --parx: 0px;
  --pary: 0px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(260px, 0.95fr);
  grid-template-areas: "copy phone";
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  background: #FFFFFF;
  border: 1px solid var(--oa-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 28px rgba(18, 19, 36, 0.07);
  min-height: 0;
}

.oa-page-2 .oa-sync-deck-fx {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

.oa-page-2 .oa-sync-deck-glow {
  position: absolute;
  inset: -36% auto auto 32%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mod-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: oaSyncGlow 7s ease-in-out infinite;
  transform: translate3d(var(--parx), var(--pary), -60px);
}

.oa-page-2 .oa-sync-deck-glow--alt {
  inset: auto -18% -28% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 184, 124, 0.12) 0%, transparent 70%);
  animation-delay: -3s;
  animation-duration: 9s;
}

@keyframes oaSyncGlow {
  0%, 100% { opacity: 0.65; filter: blur(0); }
  50% { opacity: 1; filter: blur(2px); }
}

.oa-page-2 .oa-sync-copy-col {
  grid-area: copy;
  position: relative;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-width: 0;
  min-height: 100%;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFE 100%);
  border-radius: 22px 0 0 22px;
}

.oa-page-2 .oa-sync-rail {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 0 12px;
  background: transparent;
  border-right: 0;
  border-radius: 0;
  pointer-events: auto;
}

.oa-page-2 .oa-sync-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  text-align: left;
  padding: 12px 12px 14px;
  margin: 0;
  border: 1px solid var(--oa-border-subtle);
  border-radius: 14px;
  background: #F7FAFC;
  color: var(--oa-ink-secondary);
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  touch-action: manipulation;
  animation: oaSyncTabIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.28s ease, transform 0.25s ease;
}

.oa-page-2 .oa-sync-tab:nth-child(1) { animation-delay: 0.04s; }
.oa-page-2 .oa-sync-tab:nth-child(2) { animation-delay: 0.09s; }
.oa-page-2 .oa-sync-tab:nth-child(3) { animation-delay: 0.14s; }
.oa-page-2 .oa-sync-tab:nth-child(4) { animation-delay: 0.19s; }
.oa-page-2 .oa-sync-tab:nth-child(5) { animation-delay: 0.24s; }
.oa-page-2 .oa-sync-tab:nth-child(6) { animation-delay: 0.29s; }

@keyframes oaSyncTabIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}

.oa-page-2 .oa-sync-tab:last-child { margin-bottom: 0; }

.oa-page-2 .oa-sync-tab:hover {
  background: #FFFFFF;
  border-color: rgba(0, 115, 188, 0.28);
  box-shadow: 0 8px 18px rgba(0, 115, 188, 0.08);
  transform: translateY(-1px);
}

.oa-page-2 .oa-sync-tab:focus {
  outline: none;
}

.oa-page-2 .oa-sync-tab:focus-visible {
  outline: 2px solid #0073BC;
  outline-offset: 2px;
}

.oa-page-2 .oa-sync-tab.is-active {
  z-index: 2;
  background: #FFFFFF;
  border-color: #0073BC;
  color: var(--oa-ink-primary);
  box-shadow:
    0 0 0 3px rgba(0, 115, 188, 0.12),
    0 10px 24px rgba(0, 115, 188, 0.14);
}

.oa-page-2 .oa-sync-tab-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F4FB;
  color: #0073BC;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.25s ease, color 0.25s ease;
}

.oa-page-2 .oa-sync-tab.is-active .oa-sync-tab-icon {
  background: #0073BC;
  color: #fff;
}

.oa-page-2 .oa-sync-tab.is-bouncing .oa-sync-tab-icon {
  animation: oaSyncIconBounce 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
}

@keyframes oaSyncIconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.oa-page-2 .oa-sync-tab-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.oa-page-2 .oa-sync-tab-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-width: 0;
  gap: 2px;
}

.oa-page-2 .oa-sync-tab-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}

.oa-page-2 .oa-sync-tab.is-active .oa-sync-tab-name {
  color: var(--oa-ink-primary);
}

.oa-page-2 .oa-sync-tab-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--oa-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oa-page-2 .oa-sync-tab-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: rgba(0, 115, 188, 0.1);
  border-radius: 99px;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.oa-page-2 .oa-sync-tab.is-active .oa-sync-tab-progress {
  opacity: 1;
}

.oa-page-2 .oa-sync-tab-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: #0073BC;
  border-radius: inherit;
  animation: oaSyncFill 4500ms linear forwards;
  transform-origin: left center;
}

@keyframes oaSyncFill {
  from { width: 0; }
  to { width: 100%; }
}

.oa-page-2 .oa-sync-stage {
  position: relative;
  z-index: 3;
  min-height: 210px;
  padding: 16px 0 14px;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid #E8EEF4;
  margin-top: 4px;
}

.oa-page-2 .oa-sync-stage .oa-sync-panel {
  pointer-events: none;
}

.oa-page-2 .oa-sync-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1), transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.42s;
  min-height: 0;
}

.oa-page-2 .oa-sync-panel[hidden] {
  display: block !important;
}

.oa-page-2 .oa-sync-panel.is-active {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: block;
}

.oa-page-2 .oa-sync-panel.is-active.is-enter .oa-sync-panel-copy {
  animation: oaSyncCopyIn 0.42s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.oa-page-2 .oa-sync-panel-copy {
  position: relative;
  z-index: 3;
}

.oa-page-2 .oa-sync-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(0, 115, 188, 0.12);
  color: #0073BC;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.oa-page-2 .oa-sync-title {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--oa-ink-primary);
  line-height: 1.25;
}

.oa-page-2 .oa-sync-desc {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--oa-ink-secondary);
  max-width: 46ch;
}

.oa-page-2 .oa-sync-bullets {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oa-page-2 .oa-sync-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--oa-ink-secondary);
}

.oa-page-2 .oa-sync-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0073BC;
  box-shadow: 0 0 0 3px rgba(0, 115, 188, 0.12);
}

.oa-page-2 .oa-sync-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.oa-page-2 .oa-sync-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 115, 188, 0.18);
  color: #2F3654;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.oa-page-2 .oa-sync-panel.is-active .oa-sync-tags span {
  animation: oaSyncTagIn 0.4s ease both;
}

.oa-page-2 .oa-sync-panel.is-active .oa-sync-tags span:nth-child(1) { animation-delay: 0.05s; }
.oa-page-2 .oa-sync-panel.is-active .oa-sync-tags span:nth-child(2) { animation-delay: 0.1s; }
.oa-page-2 .oa-sync-panel.is-active .oa-sync-tags span:nth-child(3) { animation-delay: 0.15s; }

@keyframes oaSyncTagIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.oa-page-2 .oa-sync-tags span:hover {
  transform: translateY(-1px);
  background: #F7FBFE;
  border-color: rgba(0, 115, 188, 0.3);
  box-shadow: 0 6px 12px rgba(18, 19, 36, 0.06);
}

.oa-page-2 .oa-sync-engine {
  margin-top: auto;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 115, 188, 0.16);
  box-shadow: 0 8px 20px rgba(0, 115, 188, 0.06);
}

.oa-page-2 .oa-sync-engine-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0073BC;
}

.oa-page-2 .oa-sync-engine-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00B87C;
  box-shadow: 0 0 0 0 rgba(0, 184, 124, 0.45);
  animation: oaSyncEnginePulse 1.8s ease-out infinite;
}

@keyframes oaSyncEnginePulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 184, 124, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(0, 184, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 184, 124, 0); }
}

.oa-page-2 .oa-sync-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.oa-page-2 .oa-sync-engine-item {
  padding: 10px 11px;
  border-radius: 12px;
  background: #F4F8FC;
  border: 1px solid #E4ECF4;
}

.oa-page-2 .oa-sync-engine-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--oa-ink-primary);
  margin-bottom: 4px;
  line-height: 1.25;
}

.oa-page-2 .oa-sync-engine-item span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--oa-ink-secondary);
}

.oa-page-2 .oa-sync-phone-col {
  grid-area: phone;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(0, 115, 188, 0.14), transparent 58%),
    linear-gradient(180deg, #EAF3FA 0%, #F5F9FC 55%, #EEF5FB 100%);
  border-left: 1px solid var(--oa-border-subtle);
  border-radius: 0 22px 22px 0;
  transition: background 0.35s ease;
  animation: oaSyncColAmbient 7s ease-in-out infinite;
}

/* One-time reveal when the phone column first scrolls into view (JS adds .is-revealed) */
.oa-page-2 .oa-sync-phone-col > * {
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.oa-page-2 .oa-sync-phone-col.is-revealed > * {
  opacity: 1;
  transform: none;
}

.oa-page-2 .oa-sync-phone-col::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 115, 188, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: oaSyncPhoneBreath 3.8s ease-in-out infinite;
}

.oa-page-2 .oa-sync-phone-col::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(0, 184, 124, 0.12), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(0, 115, 188, 0.14), transparent 30%);
  animation: oaSyncColSheen 6s ease-in-out infinite;
}

@keyframes oaSyncColAmbient {
  0%, 100% {
    background:
      radial-gradient(ellipse at 46% 40%, rgba(0, 115, 188, 0.12), transparent 58%),
      linear-gradient(180deg, #EAF3FA 0%, #F5F9FC 55%, #EEF5FB 100%);
  }
  50% {
    background:
      radial-gradient(ellipse at 54% 46%, rgba(0, 115, 188, 0.2), transparent 62%),
      linear-gradient(180deg, #E3F0F9 0%, #F3F8FC 55%, #EAF4FB 100%);
  }
}

@keyframes oaSyncPhoneBreath {
  0%, 100% { opacity: 0.45; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes oaSyncColSheen {
  0%, 100% { opacity: 0.55; transform: translate3d(0, 0, 0); }
  50% { opacity: 1; transform: translate3d(8px, -6px, 0); }
}

.oa-page-2 .oa-sync-phone-col:hover {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(0, 115, 188, 0.18), transparent 60%),
    linear-gradient(180deg, #E3F0F9 0%, #F3F8FC 55%, #EAF4FB 100%);
}

.oa-page-2 .oa-sync-bridge {
  position: absolute;
  left: -14px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 4;
}

.oa-page-2 .oa-sync-bridge-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 115, 188, 0.28) 0%, transparent 70%);
  animation: oaSyncBridgePulse 2.8s ease-in-out infinite;
}

.oa-page-2 .oa-sync-bridge-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0073BC;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(0, 115, 188, 0.16);
}

@keyframes oaSyncBridgePulse {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.oa-page-2 .oa-sync-phone-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.oa-page-2 .oa-sync-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 115, 188, 0.38);
  transform: translate(-50%, -50%);
}

.oa-page-2 .oa-sync-ring--outer {
  width: min(350px, 88%);
  aspect-ratio: 1;
  border-color: rgba(0, 115, 188, 0.48);
  animation: oaSyncRingSpin 9s linear infinite;
}

.oa-page-2 .oa-sync-ring--inner {
  width: min(286px, 74%);
  aspect-ratio: 1;
  border-style: solid;
  border-color: rgba(0, 115, 188, 0.26);
  animation: oaSyncRingSpin 6s linear infinite reverse;
}

.oa-page-2 .oa-sync-phone-col:hover .oa-sync-ring--outer {
  border-color: rgba(0, 115, 188, 0.55);
  animation-duration: 8s;
}

.oa-page-2 .oa-sync-phone-col:hover .oa-sync-ring--inner {
  border-color: rgba(0, 115, 188, 0.3);
  animation-duration: 5s;
}

@keyframes oaSyncRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.oa-page-2 .oa-sync-pulse-wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(0, 115, 188, 0.42);
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  animation: oaSyncPulseWave 2.6s ease-out infinite;
}

.oa-page-2 .oa-sync-pulse-wave--2 {
  animation-delay: 1.3s;
  border-color: rgba(0, 184, 124, 0.36);
}

@keyframes oaSyncPulseWave {
  0% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(0.68);
  }
  65% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

.oa-page-2 .oa-sync-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.65;
}

.oa-page-2 .oa-sync-orb--a {
  width: 130px;
  height: 130px;
  left: 6%;
  top: 16%;
  background: rgba(0, 115, 188, 0.34);
  animation: oaSyncOrbDrift 4.8s ease-in-out infinite;
}

.oa-page-2 .oa-sync-orb--b {
  width: 100px;
  height: 100px;
  right: 8%;
  bottom: 14%;
  background: rgba(0, 184, 124, 0.28);
  animation: oaSyncOrbDrift 5.6s ease-in-out infinite reverse;
}

.oa-page-2 .oa-sync-orb--c {
  width: 78px;
  height: 78px;
  right: 16%;
  top: 20%;
  background: rgba(2, 132, 199, 0.26);
  animation: oaSyncOrbDrift 4.2s ease-in-out infinite;
  animation-delay: -1.4s;
}

.oa-page-2 .oa-sync-phone-col:hover .oa-sync-orb {
  opacity: 0.85;
}

@keyframes oaSyncOrbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -16px, 0) scale(1.1); }
}

.oa-page-2 .oa-sync-orbit-track {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, 78%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: oaSyncRingSpin 7s linear infinite;
}

.oa-page-2 .oa-sync-orbit-track--alt {
  width: min(250px, 66%);
  animation-duration: 5.2s;
  animation-direction: reverse;
}

.oa-page-2 .oa-sync-orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: #0073BC;
  box-shadow:
    0 0 0 4px rgba(0, 115, 188, 0.16),
    0 0 14px rgba(0, 115, 188, 0.55);
}

.oa-page-2 .oa-sync-orbit-dot.is-green {
  background: #00B87C;
  box-shadow:
    0 0 0 4px rgba(0, 184, 124, 0.16),
    0 0 14px rgba(0, 184, 124, 0.5);
}

.oa-page-2 .oa-sync-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0073BC;
  box-shadow: 0 0 0 4px rgba(0, 115, 188, 0.14);
  animation: oaSyncSpark 2.2s ease-in-out infinite;
}

.oa-page-2 .oa-sync-spark--1 { left: 16%; top: 28%; animation-delay: 0s; }
.oa-page-2 .oa-sync-spark--2 { right: 18%; top: 34%; background: #00B87C; box-shadow: 0 0 0 4px rgba(0, 184, 124, 0.14); animation-delay: 0.4s; }
.oa-page-2 .oa-sync-spark--3 { left: 20%; bottom: 24%; background: #0284C7; animation-delay: 0.9s; }
.oa-page-2 .oa-sync-spark--4 { right: 14%; bottom: 30%; animation-delay: 1.3s; }

@keyframes oaSyncSpark {
  0%, 100% { opacity: 0.25; transform: scale(0.75) translateY(0); }
  50% { opacity: 1; transform: scale(1.35) translateY(-6px); }
}

.oa-page-2 .oa-sync-float-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 115, 188, 0.18);
  box-shadow: 0 10px 22px rgba(18, 19, 36, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--oa-ink-primary);
  backdrop-filter: blur(8px);
  will-change: transform;
  cursor: default;
  pointer-events: auto;
}

.oa-page-2 .oa-sync-float-chip--tl {
  top: 14%;
  left: 6%;
  animation: oaSyncChipFloatA 2.2s ease-in-out infinite;
}

.oa-page-2 .oa-sync-float-chip--tr {
  top: 18%;
  right: 5%;
  animation: oaSyncChipFloatB 2.5s ease-in-out infinite;
}

.oa-page-2 .oa-sync-float-chip--bl {
  bottom: 16%;
  left: 5%;
  animation: oaSyncChipFloatB 2.35s ease-in-out infinite;
  animation-delay: -0.8s;
}

.oa-page-2 .oa-sync-float-chip--br {
  bottom: 14%;
  right: 6%;
  animation: oaSyncChipFloatA 2.6s ease-in-out infinite;
  animation-delay: -1.2s;
}

.oa-page-2 .oa-sync-float-chip:hover {
  border-color: rgba(0, 115, 188, 0.36);
  box-shadow: 0 14px 28px rgba(0, 115, 188, 0.16);
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.04);
}

.oa-page-2 .oa-sync-phone-col:hover .oa-sync-float-chip {
  border-color: rgba(0, 115, 188, 0.28);
  box-shadow: 0 12px 26px rgba(0, 115, 188, 0.14);
}

.oa-page-2 .oa-sync-float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  animation: oaSyncDotBlink 1.6s ease-in-out infinite;
}

.oa-page-2 .oa-sync-float-dot.is-live { background: #00B87C; box-shadow: 0 0 0 3px rgba(0, 184, 124, 0.18); }
.oa-page-2 .oa-sync-float-dot.is-erp { background: #0073BC; box-shadow: 0 0 0 3px rgba(0, 115, 188, 0.16); animation-delay: 0.2s; }
.oa-page-2 .oa-sync-float-dot.is-field { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18); animation-delay: 0.4s; }
.oa-page-2 .oa-sync-float-dot.is-stock { background: #0284C7; box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.16); animation-delay: 0.6s; }

@keyframes oaSyncChipFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(-1.5deg); }
}

@keyframes oaSyncChipFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(5px, -15px, 0) rotate(1.5deg); }
}

@keyframes oaSyncDotBlink {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.35); opacity: 1; }
}

.oa-page-2 .oa-sync-phone {
  position: relative;
  z-index: 6;
  width: 228px;
  height: 506px;
  max-height: 506px;
  aspect-ratio: 576 / 1280;
  margin: 0;
  flex: none;
  padding: 9px;
  border-radius: 34px;
  background: #111827;
  animation: oaSyncPhoneFloat 6.5s ease-in-out infinite;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.oa-page-2 .oa-sync-phone-col:hover .oa-sync-phone {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.02) rotate(0deg) !important;
}

@keyframes oaSyncPhoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    box-shadow:
      0 22px 44px rgba(18, 19, 36, 0.2),
      inset 0 0 0 2px rgba(255, 255, 255, 0.12),
      0 0 0 0 rgba(0, 115, 188, 0);
  }
  50% {
    transform: translateY(-12px) rotate(-0.7deg);
    box-shadow:
      0 34px 56px rgba(18, 19, 36, 0.22),
      inset 0 0 0 2px rgba(255, 255, 255, 0.12),
      0 0 46px 4px rgba(0, 115, 188, 0.22);
  }
}

.oa-page-2 .oa-sync-phone::after {
  content: "";
  position: absolute;
  left: 12%;
  top: -30%;
  width: 42%;
  height: 60%;
  border-radius: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 8;
  animation: oaSyncPhoneSweep 3.8s ease-in-out infinite;
  opacity: 0;
}

@keyframes oaSyncPhoneSweep {
  0% { top: -35%; opacity: 0; }
  18% { opacity: 0.55; }
  55% { opacity: 0.2; }
  100% { top: 95%; opacity: 0; }
}

.oa-page-2 .oa-sync-phone .oa-phone-screen,
.oa-page-2 .oa-sync-screen {
  position: relative;
  border-radius: 24px;
  background: #0b1220;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.oa-page-2 .oa-sync-screen-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.oa-page-2 .oa-sync-screen-stack .oa-app-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 1;
  background: #fff;
}

.oa-page-2 .oa-sync-screen-stack .oa-app-screen-img.is-front {
  opacity: 1;
  z-index: 2;
  transform: translateX(0) scale(1);
}

.oa-page-2 .oa-sync-screen-stack[data-dir="next"] .oa-app-screen-img.is-leaving {
  z-index: 2;
  animation: oaSyncScreenOutLeft 460ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.oa-page-2 .oa-sync-screen-stack[data-dir="next"] .oa-app-screen-img.is-entering {
  z-index: 3;
  animation: oaSyncScreenInRight 460ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.oa-page-2 .oa-sync-screen-stack[data-dir="prev"] .oa-app-screen-img.is-leaving {
  z-index: 2;
  animation: oaSyncScreenOutRight 460ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.oa-page-2 .oa-sync-screen-stack[data-dir="prev"] .oa-app-screen-img.is-entering {
  z-index: 3;
  animation: oaSyncScreenInLeft 460ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes oaSyncScreenOutLeft {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-18%) scale(0.98); }
}

@keyframes oaSyncScreenInRight {
  from { opacity: 0; transform: translateX(18%) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes oaSyncScreenOutRight {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(18%) scale(0.98); }
}

@keyframes oaSyncScreenInLeft {
  from { opacity: 0; transform: translateX(-18%) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.oa-page-2 .oa-sync-phone-placeholder {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 18px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbfe 0%, #eaf3fa 100%);
  color: var(--oa-ink-muted);
}

.oa-page-2 .oa-sync-phone-placeholder[hidden] {
  display: none !important;
}

.oa-page-2 .oa-sync-phone-placeholder:not([hidden]) {
  display: flex !important;
}

.oa-page-2 .oa-sync-phone-placeholder-icon {
  width: 46px;
  height: 78px;
  margin-bottom: 6px;
  border: 2px solid rgba(0, 115, 188, 0.28);
  border-radius: 10px;
  position: relative;
}

.oa-page-2 .oa-sync-phone-placeholder-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 16px;
  height: 3px;
  border-radius: 99px;
  background: rgba(0, 115, 188, 0.28);
  transform: translateX(-50%);
}

.oa-page-2 .oa-sync-phone-placeholder strong {
  color: var(--oa-ink-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.oa-page-2 .oa-sync-phone-placeholder span {
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .oa-page-2 .oa-sync-screen-stack .oa-app-screen-img.is-leaving,
  .oa-page-2 .oa-sync-screen-stack .oa-app-screen-img.is-entering {
    animation-duration: 0.2s !important;
  }

  .oa-page-2 .oa-sync-screen-stack[data-dir="next"] .oa-app-screen-img.is-leaving,
  .oa-page-2 .oa-sync-screen-stack[data-dir="prev"] .oa-app-screen-img.is-leaving {
    animation-name: oaSyncFadeOut;
  }

  .oa-page-2 .oa-sync-screen-stack[data-dir="next"] .oa-app-screen-img.is-entering,
  .oa-page-2 .oa-sync-screen-stack[data-dir="prev"] .oa-app-screen-img.is-entering {
    animation-name: oaSyncFadeIn;
  }

  @keyframes oaSyncFadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.98); }
  }

  @keyframes oaSyncFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
  }

  .oa-page-2 .oa-sync-phone-col > * {
    transition: none !important;
  }

  .oa-page-2 .oa-sync-bridge,
  .oa-page-2 .oa-sync-tab.is-bouncing .oa-sync-tab-icon,
  .oa-page-2 .oa-sync-deck-glow,
  .oa-page-2 .oa-sync-tab.is-active .oa-sync-tab-progress::after,
  .oa-page-2 .oa-sync-tab-progress-bar,
  .oa-page-2 .oa-sync-bridge-glow,
  .oa-page-2 .oa-sync-phone-col,
  .oa-page-2 .oa-sync-phone-col::before,
  .oa-page-2 .oa-sync-phone-col::after,
  .oa-page-2 .oa-sync-ring,
  .oa-page-2 .oa-sync-orb,
  .oa-page-2 .oa-sync-spark,
  .oa-page-2 .oa-sync-float-chip,
  .oa-page-2 .oa-sync-pulse-wave,
  .oa-page-2 .oa-sync-orbit-track,
  .oa-page-2 .oa-sync-float-dot {
    animation: none !important;
  }

  .oa-page-2 .oa-sync-deck,
  .oa-page-2 .oa-sync-tab,
  .oa-page-2 .oa-sync-tab:hover,
  .oa-page-2 .oa-sync-tab.is-active,
  .oa-page-2 .oa-sync-panel.is-active .oa-sync-panel-copy {
    transform: none !important;
    transition: none !important;
  }
}

.oa-page-2 .oa-btn-primary {
  background-color: var(--oa-accent);
  color: #FFFFFF;
  border: none;
  border-radius: var(--oa-radius-pill);
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--oa-shadow-accent);
  transition: all 0.22s ease;
}

.oa-page-2 .oa-btn-primary:hover {
  background-color: var(--oa-accent-hover);
  transform: translateY(-2px);
}
/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .oa-page-2 .oa2-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .oa-page-2 .oa2-hero-left {
    align-items: center;
  }

  .oa-page-2 .oa2-hero-store-buttons {
    justify-content: center;
  }

  .oa-page-2 .oa-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oa-page-2 .oa-phone-column {
    position: static;
  }

  .oa-page-2 .oa-showcase-head {
    margin-bottom: 28px;
  }

  .oa-page-2 .oa-journey-steps {
    gap: 14px;
    padding-bottom: 0;
  }

  .oa-page-2 .oa-journey-steps .oa-step-card:not(.is-active) {
    opacity: 1;
  }
  .oa-page-2 .oa-sync-scene {
    perspective: none;
  }

  .oa-page-2 .oa-sync-deck {
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.9fr);
    grid-template-areas: "copy phone";
  }

  .oa-page-2 .oa-sync-phone-col {
    grid-column: auto;
    border-left: 1px solid var(--oa-border-subtle);
    border-top: 0;
    border-radius: 0 22px 22px 0;
    padding: 14px 16px;
  }

  .oa-page-2 .oa-sync-phone {
    width: 190px;
    height: 422px;
    max-height: 422px;
    aspect-ratio: 576 / 1280;
  }

  .oa-page-2 .oa-sync-engine-grid {
    grid-template-columns: 1fr;
  }

  .oa-page-2 .oa-sync-copy-col {
    border-radius: 24px 0 0 24px;
  }

  .oa-page-2 .oa-command-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .oa-page-2 .oa-stage {
    height: auto;
    min-height: 0;
    flex-direction: column;
    padding: 20px 12px 12px;
  }

  .oa-page-2 .oa-core-hub {
    position: static;
    margin-bottom: 20px;
    width: 140px;
    height: 140px;
    background: #FFFFFF;
  }

  .oa-page-2 .oa-role-node {
    position: static;
    width: 100%;
    max-width: 290px;
    margin-bottom: 10px;
  }

  .oa-page-2 .oa-orbit-svg,
  .oa-page-2 .oa-data-particle {
    display: none;
  }
}

@media (max-width: 768px) {
  .oa-page-2 .oa-stage {
    height: auto;
    min-height: 0;
    flex-direction: column;
    padding: 20px 12px 12px;
  }

  .oa-page-2 .oa-core-hub {
    position: static;
    margin-bottom: 20px;
    width: 140px;
    height: 140px;
    background: #FFFFFF;
  }

  .oa-page-2 .oa-role-node {
    position: static;
    width: 100%;
    max-width: 290px;
    margin-bottom: 10px;
  }

  .oa-page-2 .oa-orbit-svg,
  .oa-page-2 .oa-data-particle {
    display: none;
  }

  .oa-page-2 .oa-modules-section {
    padding: 40px 0 56px;
    overflow: hidden;
  }

  .oa-page-2 .oa-sync-scene {
    perspective: none;
  }

  .oa-page-2 .oa-sync-scene::after {
    display: none;
  }

  .oa-page-2 .oa-sync-deck {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "phone";
    min-height: 0;
    overflow: hidden;
    border-radius: 22px;
  }

  .oa-page-2 .oa-sync-copy-col {
    border-radius: 22px 22px 0 0;
    border-bottom: 1px solid var(--oa-border-subtle);
  }

  .oa-page-2 .oa-sync-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    border-right: 0;
    padding: 12px 12px 6px;
    gap: 6px;
    border-radius: 0;
    background: transparent;
  }

  .oa-page-2 .oa-sync-tab {
    min-width: 0;
    margin-bottom: 0;
  }

  .oa-page-2 .oa-sync-tab-name {
    white-space: normal;
  }

  .oa-page-2 .oa-sync-stage {
    padding: 10px 0 0;
    margin-top: 2px;
  }

  .oa-page-2 .oa-sync-copy-col {
    padding: 12px;
    border-radius: 22px 22px 0 0;
  }

  .oa-page-2 .oa-sync-phone-col {
    border-left: 0;
    border-top: 1px solid var(--oa-border-subtle);
    border-radius: 0 0 22px 22px;
    padding: 18px 16px 22px;
  }

  .oa-page-2 .oa-sync-bridge,
  .oa-page-2 .oa-sync-float-chip,
  .oa-page-2 .oa-sync-ring,
  .oa-page-2 .oa-sync-spark,
  .oa-page-2 .oa-sync-orbit-track,
  .oa-page-2 .oa-sync-pulse-wave {
    display: none;
  }

  .oa-page-2 .oa-sync-phone-aura {
    opacity: 0.7;
  }

  .oa-page-2 .oa-sync-engine {
    margin-top: 10px;
  }

  .oa-page-2 .oa-sync-engine-grid {
    grid-template-columns: 1fr;
  }

  .oa-page-2 .oa-sync-phone {
    width: min(220px, 62%);
    height: auto;
    max-height: 480px;
    aspect-ratio: 576 / 1280;
    animation: none;
  }

  .oa-page-2 .oa-sync-panel.is-active .oa-sync-panel-copy {
    animation: none;
    transform: none;
  }

  .oa-page-2 .oa-command-stats-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HERO RIGHT: MARKETING DECOR STAGE AROUND THE PHONE
   Purely decorative. The mockup image is never touched: the decor sits behind
   the phone, the chips are anchored OUTSIDE the phone's silhouette, and every
   layer is pointer-events:none.
   Phone silhouette: 320px wide => half-width 160px. Chips clear it via
   calc(50% + 168px) anchors, so nothing ever covers the app screen.
   ========================================================================== */
.oa-page-2 .oa2-hero-right {
  min-height: 660px;
  padding: 34px 0;
  isolation: isolate;
}

.oa-page-2 .oa2-hero-phone-wrap {
  z-index: 4;
  max-width: 320px;
}

.oa-page-2 .oa2-stage-deco {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.oa-page-2 .oa2-stage-deco > * {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

/* --- Soft aurora blobs --- */
.oa-page-2 .oa2-deco-blob {
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
}

.oa-page-2 .oa2-deco-blob-a {
  width: 320px;
  height: 320px;
  margin: -150px 0 0 -130px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 115, 188, 0.42), rgba(0, 115, 188, 0) 70%);
  animation: oaDecoBlobA 11s ease-in-out infinite;
}

.oa-page-2 .oa2-deco-blob-b {
  width: 300px;
  height: 300px;
  margin: 160px 0 0 120px;
  background: radial-gradient(circle at 60% 40%, rgba(0, 184, 124, 0.32), rgba(0, 184, 124, 0) 70%);
  animation: oaDecoBlobB 13s ease-in-out infinite;
}

@keyframes oaDecoBlobA {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-44%, -56%) scale(1.14); }
}

@keyframes oaDecoBlobB {
  0%, 100% { transform: translate(-50%, -50%) scale(1.06); }
  50%      { transform: translate(-56%, -44%) scale(0.92); }
}

/* --- Dot grid backdrop --- */
.oa-page-2 .oa2-deco-dots {
  width: 480px;
  height: 480px;
  background-image: radial-gradient(rgba(0, 115, 188, 0.24) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at center, #000 20%, transparent 68%);
          mask-image: radial-gradient(circle at center, #000 20%, transparent 68%);
  opacity: 0.65;
  animation: oaDecoDotsDrift 16s linear infinite;
}

@keyframes oaDecoDotsDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 22px 22px; }
}

/* --- Concentric orbit rings --- */
.oa-page-2 .oa2-deco-ring {
  border-radius: 50%;
}

.oa-page-2 .oa2-deco-ring-1 {
  width: 352px;
  height: 352px;
  border: 1.5px solid rgba(0, 115, 188, 0.22);
  box-shadow: inset 0 0 46px rgba(0, 115, 188, 0.08), 0 0 34px rgba(0, 115, 188, 0.10);
  animation: oaDecoRingPulse 5.2s ease-in-out infinite;
}

.oa-page-2 .oa2-deco-ring-2 {
  width: 462px;
  height: 462px;
  border: 1.5px dashed rgba(0, 115, 188, 0.30);
  animation: oaDecoSpin 34s linear infinite;
}

.oa-page-2 .oa2-deco-ring-3 {
  width: 580px;
  height: 580px;
  border: 1px solid rgba(0, 115, 188, 0.13);
  animation: oaDecoSpinReverse 46s linear infinite;
}

@keyframes oaDecoSpin {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes oaDecoSpinReverse {
  0%   { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes oaDecoRingPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.97); opacity: 0.72; }
  50%      { transform: translate(-50%, -50%) scale(1.035); opacity: 1; }
}

/* --- Conic light sweep riding the dashed ring --- */
.oa-page-2 .oa2-deco-sweep {
  width: 462px;
  height: 462px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      rgba(0, 115, 188, 0) 0deg,
      rgba(0, 115, 188, 0.34) 40deg,
      rgba(0, 184, 124, 0.22) 74deg,
      rgba(0, 115, 188, 0) 110deg,
      rgba(0, 115, 188, 0) 360deg);
  -webkit-mask-image: radial-gradient(circle at center, transparent 62%, #000 66%, #000 72%, transparent 77%);
          mask-image: radial-gradient(circle at center, transparent 62%, #000 66%, #000 72%, transparent 77%);
  animation: oaDecoSpin 6.5s linear infinite;
}

/* --- Vertical scan beam behind the phone --- */
.oa-page-2 .oa2-deco-beam {
  width: 300px;
  height: 560px;
  border-radius: 50%;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(0, 115, 188, 0.20) 56%,
      rgba(255, 255, 255, 0) 66%);
  filter: blur(22px);
  opacity: 0.55;
  animation: oaDecoBeam 7s ease-in-out infinite;
}

@keyframes oaDecoBeam {
  0%, 100% { transform: translate(-160%, -50%) rotate(8deg); opacity: 0; }
  45%      { opacity: 0.6; }
  100%     { transform: translate(60%, -50%) rotate(8deg); opacity: 0; }
}

/* --- Orbiting nodes --- */
.oa-page-2 .oa2-deco-orbit {
  width: 462px;
  height: 462px;
  animation: oaDecoSpin 20s linear infinite;
}

.oa-page-2 .oa2-deco-orbit-inner {
  width: 352px;
  height: 352px;
  animation: oaDecoSpinReverse 15s linear infinite;
}

.oa-page-2 .oa2-orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--oa-accent);
  box-shadow: 0 0 0 5px rgba(0, 115, 188, 0.13), 0 4px 14px rgba(0, 115, 188, 0.40);
}

.oa-page-2 .oa2-orbit-dot-1 { top: -6px; left: 50%; margin-left: -6px; }
.oa-page-2 .oa2-orbit-dot-2 { bottom: 64px; right: 16px; background: var(--oa-success); box-shadow: 0 0 0 5px rgba(0, 184, 124, 0.14); }
.oa-page-2 .oa2-orbit-dot-3 { bottom: 64px; left: 16px; background: var(--oa-warning); box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.16); }
.oa-page-2 .oa2-orbit-dot-4 { top: 50%; right: -5px; margin-top: -5px; width: 10px; height: 10px; background: #5cc0ff; box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.15); }
.oa-page-2 .oa2-orbit-dot-5 { top: 50%; left: -5px; margin-top: -5px; width: 8px; height: 8px; background: var(--oa-accent); box-shadow: 0 0 0 4px rgba(0, 115, 188, 0.13); }

/* --- Twinkling sparks --- */
.oa-page-2 .oa2-deco-spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 115, 188, 0.55);
  animation: oaDecoTwinkle 4.4s ease-in-out infinite;
}

.oa-page-2 .oa2-deco-spark-1 { margin: -225px 0 0 -205px; animation-delay: 0s; }
.oa-page-2 .oa2-deco-spark-2 { margin: -130px 0 0 225px;  animation-delay: 1.1s; background: rgba(0, 184, 124, 0.55); }
.oa-page-2 .oa2-deco-spark-3 { margin: 185px 0 0 -240px;  animation-delay: 2.2s; background: rgba(245, 158, 11, 0.55); }
.oa-page-2 .oa2-deco-spark-4 { margin: 235px 0 0 200px;   animation-delay: 3.1s; }

@keyframes oaDecoTwinkle {
  0%, 100% { opacity: 0.12; transform: translate(-50%, -50%) scale(0.6); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.3); }
}

/* --- Rising data bubbles (orders flowing in) --- */
.oa-page-2 .oa2-deco-bubbles {
  width: 440px;
  height: 520px;
}

.oa-page-2 .oa2-deco-bubbles i {
  position: absolute;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 115, 188, 0.45);
  opacity: 0;
  animation: oaDecoRise 9s ease-in infinite;
}

.oa-page-2 .oa2-deco-bubbles i:nth-child(1) { left: 6%;  animation-delay: 0s; }
.oa-page-2 .oa2-deco-bubbles i:nth-child(2) { left: 22%; animation-delay: 2.4s; background: rgba(0, 184, 124, 0.45); }
.oa-page-2 .oa2-deco-bubbles i:nth-child(3) { left: 78%; animation-delay: 1.2s; }
.oa-page-2 .oa2-deco-bubbles i:nth-child(4) { left: 92%; animation-delay: 4.1s; background: rgba(245, 158, 11, 0.45); }
.oa-page-2 .oa2-deco-bubbles i:nth-child(5) { left: 50%; animation-delay: 6s;   width: 5px; height: 5px; }

@keyframes oaDecoRise {
  0%   { transform: translateY(0) scale(0.7); opacity: 0; }
  12%  { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { transform: translateY(-440px) scale(1.15); opacity: 0; }
}

/* --- Reflection pedestal under the phone --- */
.oa-page-2 .oa2-deco-pedestal {
  width: 300px;
  height: 46px;
  margin-top: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 115, 188, 0.26) 0%, rgba(0, 115, 188, 0) 72%);
  filter: blur(6px);
  animation: oaDecoPedestal 3.6s ease-in-out infinite;
}

@keyframes oaDecoPedestal {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(0.86); opacity: 0.5; }
}

/* --- Floating proof chips: anchored clear of the phone silhouette --- */
.oa-page-2 .oa2-float-chip,
.oa-page-2 .oa2-float-pill {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
          backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(18, 19, 36, 0.10), 0 2px 8px rgba(0, 115, 188, 0.08);
  white-space: nowrap;
  text-align: left;
  overflow: hidden;
}

/* glass shine that sweeps across each chip */
.oa-page-2 .oa2-float-chip::after,
.oa-page-2 .oa2-float-pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  animation: oaChipShine 6.5s ease-in-out infinite;
}

@keyframes oaChipShine {
  0%, 62%  { left: -60%; }
  86%, 100% { left: 130%; }
}

.oa-page-2 .oa2-float-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 13px;
  opacity: 0;
  animation: oaChipEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             oaChipFloat 6s ease-in-out infinite;
}

.oa-page-2 .oa2-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  flex-shrink: 0;
}

.oa-page-2 .oa2-chip-icon-blue   { background: var(--oa-accent-soft);  color: var(--oa-accent); }
.oa-page-2 .oa2-chip-icon-green  { background: var(--oa-success-soft); color: var(--oa-success); }
.oa-page-2 .oa2-chip-icon-amber  { background: var(--oa-warning-soft); color: var(--oa-warning); }
.oa-page-2 .oa2-chip-icon-violet { background: #EAF7FF;                color: #5cc0ff; }

.oa-page-2 .oa2-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.oa-page-2 .oa2-chip-text b {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--oa-ink-primary);
}

.oa-page-2 .oa2-chip-text small {
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--oa-ink-muted);
}

/* Anchors: left chips end 168px left of centre, right chips start 168px right
   of centre — the phone is 320px wide, so they never overlap it. */
.oa-page-2 .oa2-chip-orders {
  top: 15%;
  right: calc(50% + 168px);
  animation-delay: 0s, 0.8s;
}

.oa-page-2 .oa2-chip-ledger {
  bottom: 22%;
  right: calc(50% + 168px);
  animation-delay: 0.3s, 1.1s;
}

.oa-page-2 .oa2-chip-stock {
  top: 30%;
  left: calc(50% + 168px);
  animation-delay: 0.15s, 2.2s;
}

.oa-page-2 .oa2-chip-delivery {
  bottom: 16%;
  left: calc(50% + 168px);
  animation-delay: 0.45s, 3.1s;
}

@keyframes oaChipEnter {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.94); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes oaChipFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -13px, 0); }
}

/* --- Pills --- */
.oa-page-2 .oa2-float-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--oa-radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--oa-ink-secondary);
}

.oa-page-2 .oa2-pill-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.oa-page-2 .oa2-pill-rating {
  top: -8px;
  left: 50%;
  animation: oaPillFloatCentered 7.2s ease-in-out infinite;
  animation-delay: 0.9s;
  transform: translate3d(-50%, 0, 0);
}

.oa-page-2 .oa2-pill-live {
  bottom: -12px;
  left: 50%;
  animation: oaPillFloatCentered 7.2s ease-in-out infinite;
  animation-delay: 2.4s;
  transform: translate3d(-50%, 0, 0);
}

@keyframes oaPillFloatCentered {
  0%, 100% { transform: translate3d(-50%, 0, 0); }
  50%      { transform: translate3d(-50%, -11px, 0); }
}

.oa-page-2 .oa2-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oa-success);
  box-shadow: 0 0 0 0 rgba(0, 184, 124, 0.5);
  animation: oaLiveDotPulse 2s ease-out infinite;
}

@keyframes oaLiveDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 184, 124, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(0, 184, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 184, 124, 0); }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .oa-page-2 .oa2-hero-phone-wrap { max-width: 290px; }
  .oa-page-2 .oa2-chip-orders,
  .oa-page-2 .oa2-chip-ledger { right: calc(50% + 152px); }
  .oa-page-2 .oa2-chip-stock,
  .oa-page-2 .oa2-chip-delivery { left: calc(50% + 152px); }
}

@media (max-width: 1024px) {
  .oa-page-2 .oa2-hero-right { min-height: 640px; }
  .oa-page-2 .oa2-hero-phone-wrap { max-width: 310px; }
  .oa-page-2 .oa2-chip-orders,
  .oa-page-2 .oa2-chip-ledger { right: calc(50% + 164px); }
  .oa-page-2 .oa2-chip-stock,
  .oa-page-2 .oa2-chip-delivery { left: calc(50% + 164px); }
}

@media (max-width: 767px) {
  .oa-page-2 .oa2-hero-right { min-height: 540px; padding: 14px 0; }
  .oa-page-2 .oa2-hero-phone-wrap { max-width: 232px; }

  .oa-page-2 .oa2-deco-ring-2,
  .oa-page-2 .oa2-deco-ring-3,
  .oa-page-2 .oa2-deco-sweep,
  .oa-page-2 .oa2-deco-orbit,
  .oa-page-2 .oa2-deco-beam,
  .oa-page-2 .oa2-deco-spark,
  .oa-page-2 .oa2-deco-bubbles,
  .oa-page-2 .oa2-chip-ledger,
  .oa-page-2 .oa2-chip-delivery { display: none; }

  .oa-page-2 .oa2-deco-dots { width: 320px; height: 320px; }
  .oa-page-2 .oa2-deco-ring-1 { width: 262px; height: 262px; }
  .oa-page-2 .oa2-deco-pedestal { width: 210px; margin-top: 218px; }

  .oa-page-2 .oa2-float-chip { padding: 7px 10px; gap: 7px; }
  .oa-page-2 .oa2-chip-icon { width: 24px; height: 24px; border-radius: 7px; }
  .oa-page-2 .oa2-chip-text b { font-size: 0.72rem; }
  .oa-page-2 .oa2-chip-text small { font-size: 0.6rem; }

  .oa-page-2 .oa2-chip-orders { top: 16%; right: calc(50% + 120px); }
  .oa-page-2 .oa2-chip-stock  { top: 42%; left: calc(50% + 120px); }
  .oa-page-2 .oa2-float-pill  { font-size: 0.68rem; padding: 7px 13px; }
}

@media (max-width: 480px) {
  .oa-page-2 .oa2-chip-orders,
  .oa-page-2 .oa2-chip-stock { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .oa-page-2 .oa2-stage-deco > *,
  .oa-page-2 .oa2-stage-deco > * > *,
  .oa-page-2 .oa2-float-chip,
  .oa-page-2 .oa2-float-chip::after,
  .oa-page-2 .oa2-float-pill,
  .oa-page-2 .oa2-float-pill::after,
  .oa-page-2 .oa2-live-dot,
  .oa-page-2 .oa2-float-chip { opacity: 1; }
}
