/**
 * Off The Rack product page — white surfaces with vibrant orange brand accents.
 * Scoped to .page-off-the-rack to avoid affecting other site pages.
 */

html.oja-site.page-off-the-rack {
  --otr-orange: #E85D04;
  --otr-orange-dark: #C2410C;
  --otr-orange-light: #F97316;
  --otr-orange-tint: #FFF7ED;
  --otr-orange-tint-mid: #FFEDD5;
  --otr-orange-accent: #FDBA74;
  --otr-white: #FFFFFF;
  --otr-surface: #FFFBF7;

  --eq-bg: var(--otr-white);
  --eq-surface: var(--otr-white);
  --eq-surface-raised: var(--otr-surface);
  --eq-border: rgba(232, 93, 4, 0.28);
  --eq-border-subtle: rgba(232, 93, 4, 0.14);
  --eq-text: #1c1917;
  --eq-muted: #57534e;
  --eq-accent: var(--otr-orange);
  --eq-accent-warm: var(--otr-orange-light);
  --eq-accent-glow: rgba(232, 93, 4, 0.18);
  --eq-success: #059669;
  --eq-warning: #d97706;
  --eq-radius: 14px;
  --eq-radius-sm: 10px;
  --eq-shadow: 0 12px 40px rgba(232, 93, 4, 0.1);
  --eq-nav-height: 3rem;
  color-scheme: light;
}

html.oja-site.page-off-the-rack body {
  background: var(--eq-bg);
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .oja-page-wrap {
  background: var(--eq-bg);
}

html.oja-site.page-off-the-rack a {
  color: var(--eq-accent);
}

html.oja-site.page-off-the-rack a:hover {
  color: #f48c06;
}

html.oja-site.page-off-the-rack .site-banner-warning {
  background: var(--otr-orange-tint, #fff7ed);
  border-color: rgba(232, 93, 4, 0.28);
  color: #7c2d12;
}

/* Consolidated WIP + privacy banner strip */
html.oja-site.page-off-the-rack .otr-site-banner.site-banner {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-inline: none;
  border-top: none;
  padding: 0.55rem 0.75rem;
  font-weight: 500;
  z-index: 45;
}

html.oja-site.page-off-the-rack .otr-site-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  max-width: min(calc(var(--max-wide, 72rem) + 2.5rem), calc(100% - 1.5rem));
  margin: 0 auto;
  padding-inline-end: 1.75rem;
  position: relative;
}

html.oja-site.page-off-the-rack .otr-site-banner__content {
  flex: 1 1 16rem;
  min-width: 0;
  text-align: center;
}

html.oja-site.page-off-the-rack .otr-site-banner__line {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #7c2d12;
}

html.oja-site.page-off-the-rack .otr-site-banner__sub {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #9a3412;
  opacity: 0.92;
}

html.oja-site.page-off-the-rack .otr-site-banner__sub a {
  color: var(--eq-accent, #e85d04);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

html.oja-site.page-off-the-rack .otr-site-banner__sub a:hover {
  color: var(--eq-accent-warm, #c2410c);
}

html.oja-site.page-off-the-rack .otr-site-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

html.oja-site.page-off-the-rack .otr-site-banner__actions a {
  color: var(--eq-accent, #e85d04);
  text-decoration: underline;
  text-underline-offset: 2px;
}

html.oja-site.page-off-the-rack .otr-site-banner__actions a:hover {
  color: var(--eq-accent-warm, #c2410c);
}

html.oja-site.page-off-the-rack .otr-site-banner__sep {
  color: rgba(124, 45, 18, 0.35);
  user-select: none;
}

html.oja-site.page-off-the-rack .otr-site-banner__dismiss {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #9a3412;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

html.oja-site.page-off-the-rack .otr-site-banner__dismiss:hover {
  background: rgba(232, 93, 4, 0.12);
  color: #7c2d12;
}

html.oja-site.page-off-the-rack .otr-site-banner__dismiss:focus-visible {
  outline: 2px solid var(--eq-accent, #e85d04);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  html.oja-site.page-off-the-rack .otr-site-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding-inline-end: 2rem;
  }

  html.oja-site.page-off-the-rack .otr-site-banner__actions {
    white-space: normal;
  }

  html.oja-site.page-off-the-rack .otr-site-banner__sep {
    display: none;
  }

  html.oja-site.page-off-the-rack .otr-site-banner__actions a {
    display: inline-block;
    padding: 0.15rem 0;
  }
}

html.oja-site.page-off-the-rack .site-nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--eq-border-subtle);
  backdrop-filter: blur(12px);
}

html.oja-site.page-off-the-rack .site-nav .brand,
html.oja-site.page-off-the-rack .site-nav .nav-links a {
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .site-footer {
  background: var(--eq-surface);
  border-top: 1px solid var(--eq-border-subtle);
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .site-footer a {
  color: var(--eq-muted);
}

/* Hero */
html.oja-site.page-off-the-rack .eq-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232, 93, 4, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(244, 140, 6, 0.12) 0%, transparent 50%),
    var(--eq-bg);
}

html.oja-site.page-off-the-rack .eq-hero-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

html.oja-site.page-off-the-rack .eq-hero-copy {
  text-align: center;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-hero-copy {
    text-align: left;
  }
}

html.oja-site.page-off-the-rack .eq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--otr-orange-dark);
  background: var(--otr-orange-tint);
  border: 1px solid var(--otr-orange-tint-mid);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}

html.oja-site.page-off-the-rack .eq-hero-kicker {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eq-accent);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .eq-hero h1 {
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-hero-tagline {
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-hero-lead {
  font-size: 1.05rem;
  color: var(--eq-muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-hero-lead {
    margin-left: 0;
    margin-right: 0;
  }
}

html.oja-site.page-off-the-rack .eq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-hero-actions {
    justify-content: flex-start;
  }
}

html.oja-site.page-off-the-rack .eq-hero-note {
  font-size: 0.82rem;
  color: var(--otr-orange-dark);
  margin: 0;
  font-weight: 500;
}

/* Hero CTAs — explicit colors; global style.css uses color !important on .btn-secondary */
html.oja-site.page-off-the-rack .eq-hero-actions .btn {
  border-width: 1.5px;
  border-style: solid;
  box-sizing: border-box;
}

html.oja-site.page-off-the-rack .eq-hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--eq-accent-warm), var(--eq-accent)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.25);
}

html.oja-site.page-off-the-rack .eq-hero-actions .btn-primary:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

html.oja-site.page-off-the-rack .eq-hero-actions .btn-secondary {
  background: var(--otr-white) !important;
  border-color: var(--otr-orange) !important;
  color: var(--otr-orange-dark) !important;
  box-shadow: 0 1px 2px rgba(232, 93, 4, 0.1);
}

html.oja-site.page-off-the-rack .eq-hero-actions .btn-secondary:hover {
  background: var(--otr-orange-tint) !important;
  border-color: var(--otr-orange-dark) !important;
  color: var(--otr-orange-dark) !important;
}

html.oja-site.page-off-the-rack .eq-hero-mockup {
  position: relative;
}

html.oja-site.page-off-the-rack .eq-mockup-frame {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border);
  border-radius: var(--eq-radius);
  box-shadow: var(--eq-shadow), 0 0 60px var(--eq-accent-glow);
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: var(--eq-surface-raised);
  border-bottom: 1px solid var(--eq-border-subtle);
  font-size: 0.78rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-mockup-traffic {
  display: flex;
  gap: 0.35rem;
}

html.oja-site.page-off-the-rack .eq-mockup-traffic span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

html.oja-site.page-off-the-rack .eq-mockup-traffic span:nth-child(1) { background: #ef4444; }
html.oja-site.page-off-the-rack .eq-mockup-traffic span:nth-child(2) { background: #fbbf24; }
html.oja-site.page-off-the-rack .eq-mockup-traffic span:nth-child(3) { background: #34d399; }

html.oja-site.page-off-the-rack .eq-mockup-label {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eq-accent);
  background: rgba(244, 140, 6, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

html.oja-site.page-off-the-rack .eq-mockup-body {
  padding: 1.25rem;
}

html.oja-site.page-off-the-rack .eq-mockup-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  html.oja-site.page-off-the-rack .eq-mockup-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

html.oja-site.page-off-the-rack .eq-mockup-stat {
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  padding: 0.75rem;
  text-align: center;
}

html.oja-site.page-off-the-rack .eq-mockup-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--eq-accent);
  font-family: var(--oja-font-display, "Outfit", sans-serif);
}

html.oja-site.page-off-the-rack .eq-mockup-stat--alert strong {
  color: #dc2626;
}

html.oja-site.page-off-the-rack .eq-mockup-stat span {
  font-size: 0.72rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-mockup-rows {
  display: grid;
  gap: 0.5rem;
}

html.oja-site.page-off-the-rack .eq-mockup-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  font-size: 0.85rem;
}

html.oja-site.page-off-the-rack .eq-mockup-row-icon {
  font-size: 1.1rem;
}

html.oja-site.page-off-the-rack .eq-mockup-row-meta {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--eq-muted);
}

/* Page layout — vertical sidebar + main content */
html.oja-site.page-off-the-rack .eq-page-body {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-page-body {
    grid-template-columns: min(15rem, 22vw) minmax(0, 1fr);
    max-width: 90rem;
    margin: 0 auto;
  }
}

html.oja-site.page-off-the-rack .eq-page-body > #main-content {
  min-width: 0;
}

/* Vertical section sidebar */
html.oja-site.page-off-the-rack #eq-sticky-nav,
html.oja-site.page-off-the-rack .eq-sidebar-nav {
  position: sticky;
  top: calc(var(--eq-nav-height, 3rem) + 0.75rem);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--eq-border-subtle);
  backdrop-filter: blur(12px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack #eq-sticky-nav,
  html.oja-site.page-off-the-rack .eq-sidebar-nav {
    top: 5rem;
    max-height: calc(100vh - 6rem);
    padding: 1.25rem 1rem 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--eq-border-subtle);
  }
}

html.oja-site.page-off-the-rack #eq-sticky-nav::-webkit-scrollbar {
  width: 4px;
}

html.oja-site.page-off-the-rack #eq-sticky-nav.is-stuck {
  box-shadow: 0 4px 24px rgba(232, 93, 4, 0.08);
}

html.oja-site.page-off-the-rack #eq-sticky-nav a {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eq-muted);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--eq-radius-sm);
  border: 1px solid transparent;
  text-align: left;
  box-sizing: border-box;
  line-height: 1.25;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

html.oja-site.page-off-the-rack #eq-sticky-nav a:hover {
  color: var(--otr-orange-dark);
  text-decoration: none;
}

html.oja-site.page-off-the-rack #eq-sticky-nav a.is-active {
  color: var(--otr-white) !important;
  background: var(--otr-orange);
  border-color: var(--otr-orange);
}

html.oja-site.page-off-the-rack #eq-sticky-nav a.eq-sticky-nav-cta {
  color: var(--otr-orange-dark);
  font-weight: 700;
  border-color: rgba(232, 93, 4, 0.35);
  background: var(--otr-orange-tint);
  margin-top: 0.35rem;
}

html.oja-site.page-off-the-rack #eq-sticky-nav a.eq-sticky-nav-cta:hover {
  color: var(--otr-orange-dark);
  background: var(--otr-orange-tint-mid);
  border-color: var(--otr-orange);
}

html.oja-site.page-off-the-rack #eq-sticky-nav a.eq-sticky-nav-cta.is-active {
  color: var(--otr-white) !important;
  background: var(--otr-orange);
  border-color: var(--otr-orange);
}

/* Sections */
html.oja-site.page-off-the-rack .eq-section {
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

html.oja-site.page-off-the-rack .eq-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

html.oja-site.page-off-the-rack .eq-section-head h2 {
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-section-head p {
  color: var(--eq-muted);
  margin: 0;
  font-size: 1.02rem;
}

html.oja-site.page-off-the-rack .eq-section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eq-accent);
  margin-bottom: 0.65rem;
}

html.oja-site.page-off-the-rack .eq-disclaimer {
  font-size: 0.85rem;
  color: var(--eq-muted);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--eq-radius-sm);
  padding: 0.85rem 1rem;
  margin-top: 1.5rem;
}

/* Overview cards */
html.oja-site.page-off-the-rack .eq-overview-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .eq-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

html.oja-site.page-off-the-rack .eq-overview-card {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.5rem;
}

html.oja-site.page-off-the-rack .eq-overview-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-overview-card p {
  font-size: 0.92rem;
  color: var(--eq-muted);
  margin: 0;
}

/* Feature explorer */
html.oja-site.page-off-the-rack .eq-feature-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .eq-feature-toolbar {
    flex-direction: row;
    align-items: center;
  }
}

html.oja-site.page-off-the-rack #eq-feature-search {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--eq-text);
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
}

html.oja-site.page-off-the-rack #eq-feature-search::placeholder {
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack #eq-feature-search:focus {
  outline: 2px solid var(--eq-accent);
  outline-offset: 2px;
  border-color: var(--eq-accent);
}

html.oja-site.page-off-the-rack #eq-feature-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

html.oja-site.page-off-the-rack .eq-filter-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eq-muted);
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

html.oja-site.page-off-the-rack .eq-filter-btn:hover {
  color: var(--eq-text);
  border-color: var(--eq-border);
}

html.oja-site.page-off-the-rack .eq-filter-btn.is-active {
  color: var(--eq-text);
  background: rgba(232, 93, 4, 0.18);
  border-color: var(--eq-accent-warm);
}

html.oja-site.page-off-the-rack #eq-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
}

html.oja-site.page-off-the-rack .eq-feature-card {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.15s;
}

html.oja-site.page-off-the-rack .eq-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.oja-site.page-off-the-rack .eq-feature-card:hover {
  border-color: var(--eq-border);
}

html.oja-site.page-off-the-rack .eq-feature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

html.oja-site.page-off-the-rack .eq-feature-icon {
  font-size: 1.35rem;
}

html.oja-site.page-off-the-rack .eq-feature-card h3 {
  font-size: 0.98rem;
  margin: 0 0 0.45rem;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-feature-card p {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

html.oja-site.page-off-the-rack .eq-cat-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eq-accent);
  background: rgba(232, 93, 4, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

html.oja-site.page-off-the-rack #eq-feature-empty {
  text-align: center;
  color: var(--eq-muted);
  padding: 2rem;
}

html.oja-site.page-off-the-rack .eq-status {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

html.oja-site.page-off-the-rack .eq-status--in-development,
html.oja-site.page-off-the-rack .eq-status--in-progress {
  color: #047857;
  background: rgba(52, 211, 153, 0.18);
}

html.oja-site.page-off-the-rack .eq-status--planned {
  color: var(--otr-orange-dark);
  background: var(--otr-orange-tint);
}

html.oja-site.page-off-the-rack .eq-status--in-design {
  color: #c2410c;
  background: rgba(244, 140, 6, 0.16);
}

html.oja-site.page-off-the-rack .eq-status--future {
  color: var(--eq-muted);
  background: rgba(148, 163, 184, 0.12);
}

/* AI capabilities & compliance grids */
html.oja-site.page-off-the-rack .eq-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
}

html.oja-site.page-off-the-rack .eq-tile {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

html.oja-site.page-off-the-rack .eq-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.oja-site.page-off-the-rack .eq-tile h3 {
  font-size: 0.95rem;
  margin: 0 0 0.45rem;
}

html.oja-site.page-off-the-rack .eq-tile p {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0;
}

/* Workflow steps */
html.oja-site.page-off-the-rack .eq-workflow {
  display: grid;
  gap: 1rem;
  counter-reset: eq-step;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .eq-workflow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-workflow {
    grid-template-columns: repeat(3, 1fr);
  }
}

html.oja-site.page-off-the-rack .eq-workflow-step {
  position: relative;
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
  counter-increment: eq-step;
}

html.oja-site.page-off-the-rack .eq-workflow-step::before {
  content: counter(eq-step);
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  left: auto;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--eq-text);
  background: linear-gradient(135deg, var(--eq-accent-warm), var(--eq-accent));
  border-radius: 50%;
}

html.oja-site.page-off-the-rack .eq-workflow-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

html.oja-site.page-off-the-rack .eq-workflow-step p {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0;
}

/* Product mockups tabs */
html.oja-site.page-off-the-rack .eq-mockup-section {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  overflow: hidden;
}

html.oja-site.page-off-the-rack #eq-mockup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface-raised);
}

html.oja-site.page-off-the-rack #eq-mockup-tabs [data-mock-tab] {
  flex: 1;
  min-width: 5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eq-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

html.oja-site.page-off-the-rack #eq-mockup-tabs [data-mock-tab]:hover {
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack #eq-mockup-tabs [data-mock-tab].is-active {
  color: var(--eq-accent);
  border-bottom-color: var(--eq-accent);
}

html.oja-site.page-off-the-rack .eq-mockup-panel {
  padding: 1.5rem;
}

html.oja-site.page-off-the-rack .eq-mockup-panel[hidden] {
  display: none;
}

html.oja-site.page-off-the-rack .eq-mockup-panel h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

html.oja-site.page-off-the-rack .eq-mockup-panel p {
  color: var(--eq-muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

html.oja-site.page-off-the-rack .eq-mockup-preview {
  background: var(--eq-surface-raised);
  border: 1px dashed var(--eq-border);
  border-radius: var(--eq-radius-sm);
  padding: 1.25rem;
  min-height: 10rem;
}

html.oja-site.page-off-the-rack .eq-mockup-preview-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--eq-border-subtle);
  font-size: 0.85rem;
}

html.oja-site.page-off-the-rack .eq-mockup-preview-row:last-child {
  border-bottom: none;
}

html.oja-site.page-off-the-rack .eq-concept-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eq-warning);
  margin-bottom: 0.75rem;
}

/* Use case tabs */
html.oja-site.page-off-the-rack #eq-usecase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

html.oja-site.page-off-the-rack .eq-tab-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eq-muted);
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

html.oja-site.page-off-the-rack .eq-tab-btn:hover {
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-tab-btn.is-active {
  color: var(--eq-text);
  background: rgba(232, 93, 4, 0.15);
  border-color: var(--eq-accent-warm);
}

html.oja-site.page-off-the-rack #eq-usecase-panel {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.5rem;
}

html.oja-site.page-off-the-rack #eq-usecase-panel h3 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

html.oja-site.page-off-the-rack #eq-usecase-panel h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eq-accent);
  margin: 1.25rem 0 0.5rem;
}

html.oja-site.page-off-the-rack #eq-usecase-panel h4:first-of-type {
  margin-top: 0;
}

html.oja-site.page-off-the-rack #eq-usecase-panel p,
html.oja-site.page-off-the-rack #eq-usecase-panel ul {
  font-size: 0.92rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack #eq-usecase-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

html.oja-site.page-off-the-rack #eq-usecase-panel li + li {
  margin-top: 0.35rem;
}

/* Roadmap timeline */
html.oja-site.page-off-the-rack #eq-roadmap-timeline {
  display: grid;
  gap: 0.75rem;
  position: relative;
  isolation: isolate;
}

html.oja-site.page-off-the-rack .eq-roadmap-item {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-roadmap-item.is-open {
  border-color: var(--eq-border);
}

html.oja-site.page-off-the-rack .eq-roadmap-trigger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--eq-text);
  cursor: pointer;
}

html.oja-site.page-off-the-rack .eq-roadmap-trigger h3 {
  flex: 1;
  min-width: 10rem;
  font-size: 1rem;
  margin: 0;
}

html.oja-site.page-off-the-rack .eq-roadmap-phase-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eq-accent);
}

html.oja-site.page-off-the-rack .eq-roadmap-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--eq-muted);
  border-bottom: 2px solid var(--eq-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

html.oja-site.page-off-the-rack .eq-roadmap-item.is-open .eq-roadmap-chevron {
  transform: rotate(-135deg);
}

html.oja-site.page-off-the-rack .eq-roadmap-panel {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .eq-roadmap-panel[hidden] {
  display: none;
}

html.oja-site.page-off-the-rack .eq-roadmap-meta {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-roadmap-meta p {
  margin: 0 0 0.35rem;
}

html.oja-site.page-off-the-rack .eq-progress-wrap label {
  display: block;
  font-size: 0.78rem;
  color: var(--eq-muted);
  margin-bottom: 0.35rem;
}

html.oja-site.page-off-the-rack .eq-progress-bar {
  height: 0.45rem;
  background: var(--eq-surface-raised);
  border-radius: 999px;
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--eq-accent-warm), var(--eq-accent));
  border-radius: 999px;
}

html.oja-site.page-off-the-rack .eq-roadmap-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-roadmap-panel li + li {
  margin-top: 0.3rem;
}

/* Tiers */
html.oja-site.page-off-the-rack .eq-tiers {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .eq-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-tiers {
    grid-template-columns: repeat(4, 1fr);
  }

  html.oja-site.page-off-the-rack .eq-tiers--pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

html.oja-site.page-off-the-rack .eq-tier {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.35rem;
}

html.oja-site.page-off-the-rack .eq-tier h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

html.oja-site.page-off-the-rack .eq-tier-note {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .eq-tier ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-tier li + li {
  margin-top: 0.3rem;
}

/* Differentiation */
html.oja-site.page-off-the-rack .eq-diff-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .eq-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

html.oja-site.page-off-the-rack .eq-diff-item {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-left: 3px solid var(--eq-accent);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
}

html.oja-site.page-off-the-rack .eq-diff-item h3 {
  font-size: 0.95rem;
  margin: 0 0 0.45rem;
}

html.oja-site.page-off-the-rack .eq-diff-item p {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0;
}

/* FAQ */
html.oja-site.page-off-the-rack #eq-faq {
  display: grid;
  gap: 0.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

html.oja-site.page-off-the-rack .eq-faq-item {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--eq-text);
  background: transparent;
  border: none;
  cursor: pointer;
}

html.oja-site.page-off-the-rack .eq-faq-trigger::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--eq-accent);
  flex-shrink: 0;
}

html.oja-site.page-off-the-rack .eq-faq-item.is-open .eq-faq-trigger::after {
  content: "−";
}

html.oja-site.page-off-the-rack .eq-faq-panel {
  padding: 0 1.15rem 1rem;
  font-size: 0.9rem;
  color: var(--eq-muted);
  line-height: 1.6;
}

html.oja-site.page-off-the-rack .eq-faq-panel[hidden] {
  display: none;
}

html.oja-site.page-off-the-rack .eq-faq-panel p {
  margin: 0;
}

/* CTA band */
html.oja-site.page-off-the-rack .eq-cta-band {
  background: linear-gradient(135deg, var(--otr-orange) 0%, var(--otr-orange-light) 100%);
  border: 1px solid var(--otr-orange);
  border-radius: var(--eq-radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--otr-white);
}

html.oja-site.page-off-the-rack .eq-cta-band h2 {
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.65rem;
  color: var(--otr-white);
}

html.oja-site.page-off-the-rack .eq-cta-band p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

html.oja-site.page-off-the-rack .eq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Override global style.css .btn-* { color: … !important } on orange band */
html.oja-site.page-off-the-rack .eq-cta-band .btn-primary {
  background: var(--otr-white) !important;
  color: var(--otr-orange-dark) !important;
  border: 2px solid var(--otr-white);
  box-shadow: none;
}

html.oja-site.page-off-the-rack .eq-cta-band .btn-primary:hover {
  background: var(--otr-orange-tint) !important;
  color: var(--otr-orange-dark) !important;
  filter: none;
}

html.oja-site.page-off-the-rack .eq-cta-band .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--otr-white);
}

html.oja-site.page-off-the-rack .eq-cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--otr-white);
}

/* Form */
html.oja-site.page-off-the-rack .off-the-rack-interest-form {
  max-width: 36rem;
  margin: 0 auto;
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.75rem;
}

html.oja-site.page-off-the-rack .off-the-rack-interest-form .feedback-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--eq-text);
  margin: 0 0 0.35rem;
}

html.oja-site.page-off-the-rack .off-the-rack-interest-form .feedback-label .eq-required {
  color: var(--eq-accent);
}

html.oja-site.page-off-the-rack .off-the-rack-interest-form .feedback-input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  color: var(--eq-text);
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
}

html.oja-site.page-off-the-rack .off-the-rack-interest-form .feedback-input:focus {
  outline: 2px solid var(--eq-accent);
  outline-offset: 2px;
  border-color: var(--eq-accent);
}

html.oja-site.page-off-the-rack .off-the-rack-interest-form .feedback-textarea {
  min-height: 6rem;
  resize: vertical;
}

html.oja-site.page-off-the-rack .off-the-rack-form-note {
  font-size: 0.82rem;
  color: var(--eq-muted);
  margin: 1rem 0 0;
}

html.oja-site.page-off-the-rack .off-the-rack-interest-error {
  color: #f87171;
}

html.oja-site.page-off-the-rack .off-the-rack-interest-success {
  color: var(--eq-success);
}

html.oja-site.page-off-the-rack .eq-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Buttons on Off The Rack page */
html.oja-site.page-off-the-rack .btn-primary {
  background: linear-gradient(135deg, var(--eq-accent-warm), var(--eq-accent));
  border-color: transparent;
  color: #fff;
}

html.oja-site.page-off-the-rack .btn-primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

html.oja-site.page-off-the-rack .btn-secondary {
  background: var(--otr-white);
  border-color: var(--otr-orange);
  color: var(--otr-orange-dark) !important;
}

html.oja-site.page-off-the-rack .btn-secondary:hover {
  background: var(--otr-orange-tint);
  color: var(--otr-orange-dark) !important;
}

/* Reveal animations */
html.oja-site.page-off-the-rack [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.oja-site.page-off-the-rack [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.oja-site.page-off-the-rack [data-reveal],
  html.oja-site.page-off-the-rack .eq-feature-card,
  html.oja-site.page-off-the-rack .eq-tile,
  html.oja-site.page-off-the-rack .eq-compliance-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html.oja-site.page-off-the-rack .eq-roadmap-chevron,
  html.oja-site.page-off-the-rack .eq-progress-bar span {
    transition: none;
  }
}

/* Hero enhancements */
html.oja-site.page-off-the-rack .eq-hero {
  position: relative;
}

html.oja-site.page-off-the-rack .eq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 93, 4, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 93, 4, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  pointer-events: none;
}

html.oja-site.page-off-the-rack .eq-hero-mockup-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

html.oja-site.page-off-the-rack .eq-hero-mini-card {
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  padding: 0.75rem;
  font-size: 0.78rem;
}

html.oja-site.page-off-the-rack .eq-hero-mini-card strong {
  display: block;
  font-size: 0.72rem;
  color: var(--eq-accent);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

html.oja-site.page-off-the-rack .eq-hero-mini-card span {
  color: var(--eq-muted);
}

/* Workflow desktop connectors */
@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-workflow {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }

  html.oja-site.page-off-the-rack .eq-workflow-step {
    border-radius: 0;
    border-right: none;
    padding: 1.25rem;
  }

  html.oja-site.page-off-the-rack .eq-workflow-step:first-child {
    border-radius: var(--eq-radius) 0 0 var(--eq-radius);
  }

  html.oja-site.page-off-the-rack .eq-workflow-step:last-child {
    border-radius: 0 var(--eq-radius) var(--eq-radius) 0;
    border-right: 1px solid var(--eq-border-subtle);
  }

  html.oja-site.page-off-the-rack .eq-workflow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.5rem;
    top: 50%;
    width: 1rem;
    height: 2px;
    background: var(--eq-accent);
    z-index: 1;
    transform: translateY(-50%);
  }
}

html.oja-site.page-off-the-rack .eq-workflow {
  list-style: none;
  margin: 0;
  padding: 0;
}

html.oja-site.page-off-the-rack .eq-workflow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.1rem;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 50%;
  margin-bottom: 0.65rem;
}

html.oja-site.page-off-the-rack .eq-workflow-step::before {
  left: auto;
}

html.oja-site.page-off-the-rack .eq-workflow-note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid var(--eq-border);
  border-radius: var(--eq-radius-sm);
  font-size: 0.88rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-confidence {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--eq-success);
  background: rgba(52, 211, 153, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-top: 0.5rem;
}

/* Mockup tabs scroll */
html.oja-site.page-off-the-rack #eq-mockup-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

html.oja-site.page-off-the-rack #eq-mockup-tabs::-webkit-scrollbar {
  display: none;
}

html.oja-site.page-off-the-rack #eq-mockup-tabs .eq-mock-tab,
html.oja-site.page-off-the-rack #eq-mockup-tabs [data-mock-tab] {
  flex: 0 0 auto;
  min-width: 5.5rem;
}

/* Roadmap desktop timeline */
@media (min-width: 768px) {
  html.oja-site.page-off-the-rack #eq-roadmap-timeline {
    overflow: clip;
  }

  html.oja-site.page-off-the-rack #eq-roadmap-timeline::before {
    content: "";
    position: absolute;
    left: calc(1.25rem + 0.625rem - 1px);
    top: 1.75rem;
    width: 2px;
    height: calc(100% - 3.5rem);
    max-height: calc(100% - 3.5rem);
    background: linear-gradient(180deg, var(--eq-accent), rgba(232, 93, 4, 0.15));
    z-index: 0;
    pointer-events: none;
  }

  html.oja-site.page-off-the-rack .eq-roadmap-item {
    position: relative;
    z-index: 1;
  }

  html.oja-site.page-off-the-rack .eq-roadmap-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
  }

  html.oja-site.page-off-the-rack .eq-roadmap-marker-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--eq-accent);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.25);
  }
}

html.oja-site.page-off-the-rack .eq-roadmap-marker {
  display: none;
}

html.oja-site.page-off-the-rack .eq-progress-bar span {
  transition: width 0.4s ease;
}

/* Metric chips */
html.oja-site.page-off-the-rack .eq-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

html.oja-site.page-off-the-rack .eq-metric-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eq-text);
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

html.oja-site.page-off-the-rack .eq-metric-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  margin-top: 2rem;
}

html.oja-site.page-off-the-rack .eq-metric-card {
  text-align: center;
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.15rem;
}

html.oja-site.page-off-the-rack .eq-metric-card strong {
  display: block;
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: 1.5rem;
  color: var(--eq-accent);
  margin-bottom: 0.25rem;
}

html.oja-site.page-off-the-rack .eq-metric-card span {
  font-size: 0.78rem;
  color: var(--eq-muted);
}

/* Compliance cards */
html.oja-site.page-off-the-rack .eq-compliance-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

html.oja-site.page-off-the-rack .eq-compliance-card {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
  transition: border-color 0.15s, transform 0.15s;
}

html.oja-site.page-off-the-rack .eq-compliance-card:hover {
  border-color: var(--eq-border);
  transform: translateY(-2px);
}

html.oja-site.page-off-the-rack .eq-compliance-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

html.oja-site.page-off-the-rack .eq-compliance-icon {
  font-size: 1.35rem;
}

html.oja-site.page-off-the-rack .eq-compliance-card h3 {
  font-size: 0.95rem;
  margin: 0;
}

html.oja-site.page-off-the-rack .eq-compliance-card p {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0 0 0.65rem;
}

html.oja-site.page-off-the-rack .eq-planned-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

/* Tier enhancements */
html.oja-site.page-off-the-rack .eq-tier-audience {
  font-size: 0.82rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .eq-tier-cta {
  margin-top: 1rem;
}

html.oja-site.page-off-the-rack .eq-tier-cta .btn {
  width: 100%;
  font-size: 0.82rem;
}

/* Pricing section */
html.oja-site.page-off-the-rack .eq-pricing-billing-key {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .eq-pricing-billing-key {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-pricing-billing-key {
    grid-template-columns: repeat(4, 1fr);
  }
}

html.oja-site.page-off-the-rack .eq-pricing-billing-key-item {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 0.85rem 1rem;
}

html.oja-site.page-off-the-rack .eq-pricing-billing-key-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--eq-accent);
  margin-bottom: 0.25rem;
}

html.oja-site.page-off-the-rack .eq-pricing-billing-key-item span {
  font-size: 0.82rem;
  color: var(--eq-muted);
  line-height: 1.4;
}

html.oja-site.page-off-the-rack .eq-tier-billing-model {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eq-muted);
  margin: 0 0 0.5rem;
}

html.oja-site.page-off-the-rack .eq-tier-price {
  margin: 0 0 0.65rem;
  line-height: 1.1;
}

html.oja-site.page-off-the-rack .eq-tier-price-amount {
  font-family: var(--eq-font-display, "Outfit", sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-tier-price--custom .eq-tier-price-amount {
  font-size: 1.5rem;
}

html.oja-site.page-off-the-rack .eq-tier-price-period {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--eq-muted);
  margin-left: 0.15rem;
}

html.oja-site.page-off-the-rack .eq-tier-limits {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  background: rgba(232, 93, 4, 0.06);
  border-radius: calc(var(--eq-radius) - 2px);
  border: 1px solid rgba(232, 93, 4, 0.12);
}

html.oja-site.page-off-the-rack .eq-tier-limits div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.78rem;
}

html.oja-site.page-off-the-rack .eq-tier-limits dt {
  font-weight: 600;
  color: var(--eq-text);
  margin: 0;
}

html.oja-site.page-off-the-rack .eq-tier-limits dd {
  margin: 0;
  color: var(--eq-muted);
  text-align: right;
}

html.oja-site.page-off-the-rack .eq-tier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--eq-accent);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin: 0 0 0.5rem;
}

html.oja-site.page-off-the-rack .eq-tier--featured {
  border-color: var(--eq-accent);
  box-shadow: 0 0 0 1px rgba(232, 93, 4, 0.25), 0 8px 24px rgba(232, 93, 4, 0.12);
  position: relative;
}

html.oja-site.page-off-the-rack .eq-packaging-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--eq-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Focus states */
html.oja-site.page-off-the-rack .eq-faq-trigger:focus-visible,
html.oja-site.page-off-the-rack .eq-roadmap-trigger:focus-visible,
html.oja-site.page-off-the-rack .eq-filter-btn:focus-visible,
html.oja-site.page-off-the-rack .eq-tab-btn:focus-visible,
html.oja-site.page-off-the-rack #eq-sticky-nav a:focus-visible,
html.oja-site.page-off-the-rack .eq-mock-tab:focus-visible {
  outline: 2px solid var(--eq-accent);
  outline-offset: 2px;
}

/* Off The Rack product logo */
.otr-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.otr-logo-wrap--light {
  background: var(--otr-white, #fff);
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 93, 4, 0.12);
  box-shadow: 0 4px 18px rgba(232, 93, 4, 0.08);
}

.otr-logo-wrap--orange {
  background: var(--otr-orange, #E85D04);
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(194, 65, 12, 0.28);
}

.eq-cta-logo {
  margin: 0 auto 1rem;
}

.eq-form-logo {
  margin: 0 auto 0.85rem;
}

.off-the-rack-logo,
.otr-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.off-the-rack-logo--nav,
.brand--off-the-rack .brand-logo {
  max-height: 64px;
  width: auto;
}

.off-the-rack-logo--form,
.otr-logo--form {
  max-width: min(240px, 70vw);
  max-height: 60px;
}

.off-the-rack-logo--cta {
  max-width: min(200px, 62vw);
  max-height: 64px;
}

.off-the-rack-logo--card,
.otr-logo--card,
.oja-cinema-case-logo .off-the-rack-logo {
  max-width: min(280px, 78vw);
  max-height: 80px;
  margin: 0 0 0.75rem;
}

.off-the-rack-logo--preview,
.otr-logo--preview {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Mobile & location marketing sections */
html.oja-site.page-off-the-rack .eq-mobile-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

html.oja-site.page-off-the-rack .eq-mobile-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  html.oja-site.page-off-the-rack .eq-mobile-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

html.oja-site.page-off-the-rack #eq-mobile-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 1.5rem;
}

html.oja-site.page-off-the-rack .eq-mobile-feature-card {
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
}

html.oja-site.page-off-the-rack .eq-mobile-feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

html.oja-site.page-off-the-rack .eq-subheading {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .eq-bullet-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--eq-muted);
  font-size: 0.95rem;
}

html.oja-site.page-off-the-rack .eq-phone-mockup {
  max-width: 320px;
  margin: 0 auto;
  background: #0a0a10;
  border-radius: 28px;
  border: 2px solid rgba(232, 93, 4, 0.35);
  box-shadow: var(--eq-shadow);
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-phone-notch {
  height: 24px;
  background: #050508;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 4px;
}

html.oja-site.page-off-the-rack .eq-phone-notch span {
  width: 80px;
  height: 6px;
  background: #1a1a24;
  border-radius: 999px;
}

html.oja-site.page-off-the-rack .eq-phone-screen {
  padding: 1rem;
  min-height: 420px;
}

html.oja-site.page-off-the-rack .eq-demo-bottom-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--eq-border-subtle);
  margin: 1rem -1rem -1rem;
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
  background: var(--otr-white);
}

html.oja-site.page-off-the-rack .eq-demo-bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-height: 44px;
  padding: 0.35rem 0.15rem;
  font-size: 0.55rem;
  color: var(--eq-muted);
  background: none;
  border: none;
  cursor: pointer;
}

html.oja-site.page-off-the-rack .eq-demo-bottom-nav button.is-active,
html.oja-site.page-off-the-rack .eq-demo-bottom-nav button:focus-visible {
  color: var(--eq-accent);
  outline: 2px solid var(--eq-accent);
  outline-offset: -2px;
}

html.oja-site.page-off-the-rack .eq-gps-prompt-mock {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border);
  border-radius: var(--eq-radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

html.oja-site.page-off-the-rack .eq-gps-prompt-mock h4 {
  font-size: 0.9rem;
  margin: 0 0 0.35rem;
}

html.oja-site.page-off-the-rack .eq-gps-prompt-mock p {
  font-size: 0.75rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .eq-gps-actions {
  display: flex;
  gap: 0.5rem;
}

html.oja-site.page-off-the-rack .eq-gps-actions button {
  flex: 1;
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

html.oja-site.page-off-the-rack .eq-gps-actions .eq-gps-allow {
  background: var(--eq-accent);
  color: #fff;
}

html.oja-site.page-off-the-rack .eq-gps-actions button:not(.eq-gps-allow) {
  background: transparent;
  border: 1px solid var(--eq-border-subtle);
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-hierarchy-tree {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.8rem;
}

html.oja-site.page-off-the-rack .eq-hierarchy-tree li {
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 2px solid var(--eq-border-subtle);
  margin-left: 0.5rem;
}

html.oja-site.page-off-the-rack .eq-hierarchy-tree .eq-tree-type {
  font-size: 0.65rem;
  color: var(--eq-muted);
  text-transform: uppercase;
  margin-left: 0.35rem;
}

html.oja-site.page-off-the-rack #eq-mobile-mockup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

html.oja-site.page-off-the-rack #eq-mobile-mockup-tabs button {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface);
  color: var(--eq-muted);
  cursor: pointer;
  font-size: 0.85rem;
}

html.oja-site.page-off-the-rack #eq-mobile-mockup-tabs button.is-active {
  border-color: var(--eq-accent);
  color: var(--eq-text);
  background: rgba(232, 93, 4, 0.15);
}

html.oja-site.page-off-the-rack .eq-mobile-mock-panel {
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  html.oja-site.page-off-the-rack .eq-demo-bottom-nav button {
    transition: none;
  }
}

/* Branded workflows section */
html.oja-site.page-off-the-rack .eq-branded-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  margin-bottom: 2.5rem;
}

html.oja-site.page-off-the-rack .eq-branded-feature-card {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.25rem;
  transition: border-color 0.15s, transform 0.15s;
}

html.oja-site.page-off-the-rack .eq-branded-feature-card:hover {
  border-color: var(--eq-border);
  transform: translateY(-2px);
}

html.oja-site.page-off-the-rack .eq-branded-feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.65rem;
}

html.oja-site.page-off-the-rack .eq-branded-feature-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

html.oja-site.page-off-the-rack .eq-branded-feature-card p {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

html.oja-site.page-off-the-rack .eq-branded-previews {
  margin-top: 1rem;
}

html.oja-site.page-off-the-rack .eq-branded-preview-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}

html.oja-site.page-off-the-rack .eq-branded-preview-card {
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  padding: 1.15rem;
}

html.oja-site.page-off-the-rack .eq-preview-caption {
  font-size: 0.82rem;
  color: var(--eq-muted);
  margin: 0.85rem 0 0;
  text-align: center;
}

html.oja-site.page-off-the-rack .eq-preview-label-designer,
html.oja-site.page-off-the-rack .eq-preview-login,
html.oja-site.page-off-the-rack .eq-preview-handover {
  background: var(--eq-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  padding: 0.85rem;
  min-height: 9rem;
}

html.oja-site.page-off-the-rack .eq-preview-label-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--eq-muted);
  margin-bottom: 0.65rem;
}

html.oja-site.page-off-the-rack .eq-preview-chip {
  background: rgba(232, 93, 4, 0.15);
  color: var(--eq-accent);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  font-weight: 600;
}

html.oja-site.page-off-the-rack .eq-preview-label-canvas {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  background: #fff;
  color: #1a1a24;
  border-radius: 6px;
  padding: 0.55rem;
  font-size: 0.68rem;
}

html.oja-site.page-off-the-rack .eq-preview-label-logo {
  font-weight: 800;
  color: var(--eq-accent);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

html.oja-site.page-off-the-rack .eq-preview-label-fields {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

html.oja-site.page-off-the-rack .eq-preview-qr {
  width: 2.25rem;
  height: 2.25rem;
  background:
    linear-gradient(90deg, #111 2px, transparent 2px) 0 0 / 8px 8px,
    linear-gradient(#111 2px, transparent 2px) 0 0 / 8px 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

html.oja-site.page-off-the-rack .eq-preview-login {
  text-align: center;
}

html.oja-site.page-off-the-rack .eq-preview-login-logo {
  font-weight: 800;
  font-size: 1rem;
  color: var(--eq-accent);
  margin-bottom: 0.5rem;
}

html.oja-site.page-off-the-rack .eq-preview-login-title {
  font-size: 0.78rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .eq-preview-login-btn {
  background: linear-gradient(135deg, var(--eq-accent-warm, #E85D04), var(--eq-accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.55rem;
  margin-bottom: 0.5rem;
}

html.oja-site.page-off-the-rack .eq-preview-login-foot {
  font-size: 0.65rem;
  color: var(--eq-muted);
  margin: 0;
}

html.oja-site.page-off-the-rack .eq-preview-handover-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

html.oja-site.page-off-the-rack .eq-preview-handover-head strong {
  display: block;
  font-size: 0.82rem;
}

html.oja-site.page-off-the-rack .eq-preview-handover-head span {
  font-size: 0.68rem;
  color: var(--eq-success);
}

html.oja-site.page-off-the-rack .eq-preview-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eq-accent), var(--eq-accent-warm, #E85D04));
  flex-shrink: 0;
}

html.oja-site.page-off-the-rack .eq-preview-signature,
html.oja-site.page-off-the-rack .eq-preview-receipt {
  font-size: 0.72rem;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}

html.oja-site.page-off-the-rack .eq-preview-signature {
  background: rgba(52, 211, 153, 0.12);
  color: var(--eq-success);
}

html.oja-site.page-off-the-rack .eq-preview-receipt {
  background: rgba(232, 93, 4, 0.1);
  color: var(--eq-text);
}

/* Inventory alerts & reorder signals */
html.oja-site.page-off-the-rack .eq-inventory-alerts-section {
  background: linear-gradient(180deg, var(--otr-orange-tint) 0%, var(--eq-bg) 100%);
}

html.oja-site.page-off-the-rack .eq-inventory-alerts-layout {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  html.oja-site.page-off-the-rack .eq-inventory-alerts-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

html.oja-site.page-off-the-rack .eq-inventory-alerts-wip {
  font-size: 0.92rem;
  color: var(--eq-muted);
  background: var(--otr-white);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  padding: 0.85rem 1rem;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

html.oja-site.page-off-the-rack .eq-inventory-alerts-cta {
  margin-top: 1.25rem;
  display: inline-flex;
}

html.oja-site.page-off-the-rack .eq-alert-feed-wrap {
  background: var(--otr-white);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  box-shadow: var(--eq-shadow);
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-alert-feed-header {
  padding: 1rem 1.15rem 0.75rem;
  border-bottom: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .eq-alert-feed-note {
  font-size: 0.82rem;
  color: var(--eq-muted);
  margin: 0.25rem 0 0;
}

html.oja-site.page-off-the-rack .eq-alert-feed {
  max-height: 28rem;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  scroll-behavior: smooth;
}

html.oja-site.page-off-the-rack .eq-alert-card {
  background: var(--otr-surface);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

html.oja-site.page-off-the-rack .eq-alert-card:hover {
  border-color: var(--eq-border);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.08);
}

html.oja-site.page-off-the-rack .eq-alert-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

html.oja-site.page-off-the-rack .eq-alert-severity {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

html.oja-site.page-off-the-rack .eq-alert-severity--low {
  background: rgba(217, 119, 6, 0.14);
  color: #b45309;
}

html.oja-site.page-off-the-rack .eq-alert-severity--medium {
  background: rgba(234, 88, 12, 0.16);
  color: #c2410c;
}

html.oja-site.page-off-the-rack .eq-alert-severity--high {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

html.oja-site.page-off-the-rack .eq-alert-type {
  font-size: 0.72rem;
  color: var(--eq-muted);
  font-weight: 600;
}

html.oja-site.page-off-the-rack .eq-alert-card h4 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  font-weight: 700;
}

html.oja-site.page-off-the-rack .eq-alert-location {
  font-size: 0.8rem;
  color: var(--otr-orange-dark);
  font-weight: 600;
  margin: 0 0 0.35rem;
}

html.oja-site.page-off-the-rack .eq-alert-detail {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0 0 0.65rem;
  line-height: 1.45;
}

html.oja-site.page-off-the-rack .eq-alert-stock-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--eq-muted);
  margin-bottom: 0.3rem;
}

html.oja-site.page-off-the-rack .eq-alert-stock-value {
  font-weight: 700;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-alert-progress {
  height: 0.4rem;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

html.oja-site.page-off-the-rack .eq-alert-progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}

html.oja-site.page-off-the-rack .eq-alert-progress-fill--low {
  background: linear-gradient(90deg, #fbbf24, #d97706);
}

html.oja-site.page-off-the-rack .eq-alert-progress-fill--medium {
  background: linear-gradient(90deg, #fb923c, #ea580c);
}

html.oja-site.page-off-the-rack .eq-alert-progress-fill--high {
  background: linear-gradient(90deg, #f87171, #dc2626);
}

html.oja-site.page-off-the-rack .eq-alert-action {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

html.oja-site.page-off-the-rack .eq-alert-action--reorder {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

html.oja-site.page-off-the-rack .eq-alert-action--review {
  background: rgba(217, 119, 6, 0.14);
  color: #b45309;
}

html.oja-site.page-off-the-rack .eq-alert-action--procure {
  background: rgba(234, 88, 12, 0.14);
  color: #c2410c;
}

html.oja-site.page-off-the-rack .eq-alert-action--track {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

/* Privacy-first notices — subtle orange accent border */
html.oja-site.page-off-the-rack .eq-privacy-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: center;
  color: var(--eq-text, #1c1917);
  background: var(--otr-orange-tint, #fff7ed);
  border-block: 2px solid var(--eq-accent, #e85d04);
}

html.oja-site.page-off-the-rack .eq-privacy-banner a {
  color: var(--eq-accent, #e85d04);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

html.oja-site.page-off-the-rack .eq-privacy-banner a:hover {
  color: var(--eq-accent-warm, #c2410c);
}

html.oja-site.page-off-the-rack .eq-privacy-banner--footer {
  margin-bottom: 0.75rem;
  border-radius: var(--eq-radius-sm, 8px);
  border: 1px solid rgba(232, 93, 4, 0.35);
  border-inline-start: 3px solid var(--eq-accent, #e85d04);
}

html.oja-site.page-off-the-rack .eq-privacy-notice {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--eq-muted, #57534e);
  background: rgba(255, 247, 237, 0.65);
  border: 1px solid rgba(232, 93, 4, 0.28);
  border-inline-start: 3px solid var(--eq-accent, #e85d04);
  border-radius: var(--eq-radius-sm, 8px);
}

html.oja-site.page-off-the-rack .eq-privacy-notice a {
  color: var(--eq-accent, #e85d04);
  font-weight: 600;
  text-underline-offset: 2px;
}

html.oja-site.page-off-the-rack .eq-privacy-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--eq-border-subtle, rgba(28, 25, 23, 0.08));
  scroll-margin-top: calc(var(--eq-nav-height, 4rem) + 1rem);
}

html.oja-site.page-off-the-rack .eq-privacy-section h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--eq-text, #1c1917);
}

html.oja-site.page-off-the-rack .eq-privacy-wip-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--eq-muted, #57534e);
}

html.oja-site.page-off-the-rack .eq-privacy-wip-disclaimer a {
  color: var(--eq-accent, #e85d04);
  font-weight: 600;
  text-underline-offset: 2px;
}

html.oja-site.page-off-the-rack .eq-interactive-demo .eq-privacy-notice {
  max-width: 42rem;
}

/* Interactive on-page demo (Option 1) */
html.oja-site.page-off-the-rack .eq-interactive-demo {
  scroll-margin-top: calc(var(--eq-nav-height, 3rem) + 4rem);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-shell {
  max-width: 72rem;
  margin: 0 auto;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-wip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--otr-orange-dark);
  background: var(--otr-orange-tint);
  border: 1px solid var(--eq-border-subtle);
  border-radius: 999px;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  html.oja-site.page-off-the-rack .eq-interactive-demo-layout {
    grid-template-columns: 1fr min(280px, 32%);
    align-items: start;
  }
}

html.oja-site.page-off-the-rack .eq-interactive-demo-desktop {
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  overflow: hidden;
  background: var(--eq-surface);
  box-shadow: var(--eq-shadow);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  color: var(--eq-muted);
  background: var(--otr-orange-tint);
  border-bottom: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.65rem;
  border-bottom: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface-raised);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-tabs button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--eq-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 2.5rem;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-tabs button.is-active,
html.oja-site.page-off-the-rack .eq-interactive-demo-tabs button[aria-selected="true"] {
  color: var(--otr-orange-dark);
  background: var(--otr-orange-tint);
  border-color: var(--eq-border);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-tabs button:focus-visible {
  outline: 2px solid var(--eq-accent);
  outline-offset: 2px;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-panels {
  min-height: 18rem;
  padding: 1rem;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-panel[hidden] {
  display: none !important;
}

html.oja-site.page-off-the-rack .idemo-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .idemo-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

html.oja-site.page-off-the-rack .idemo-stat {
  padding: 0.75rem;
  border-radius: var(--eq-radius-sm);
  background: var(--otr-orange-tint);
  border: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .idemo-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--otr-orange-dark);
}

html.oja-site.page-off-the-rack .idemo-stat span {
  font-size: 0.72rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .idemo-subhead {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

html.oja-site.page-off-the-rack .idemo-asset-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--eq-border-subtle);
  font-size: 0.88rem;
}

html.oja-site.page-off-the-rack .idemo-asset-meta {
  color: var(--eq-muted);
  font-size: 0.78rem;
}

html.oja-site.page-off-the-rack .idemo-status,
html.oja-site.page-off-the-rack .idemo-kit-status,
html.oja-site.page-off-the-rack .idemo-request-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--otr-orange-tint);
  color: var(--otr-orange-dark);
  white-space: nowrap;
}

html.oja-site.page-off-the-rack .idemo-kit-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .idemo-kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

html.oja-site.page-off-the-rack .idemo-kit-card {
  padding: 0.85rem;
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  background: var(--eq-surface-raised);
}

html.oja-site.page-off-the-rack .idemo-kit-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

html.oja-site.page-off-the-rack .idemo-kit-card span {
  display: block;
  font-size: 0.82rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .idemo-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.75rem 0 0.35rem;
}

html.oja-site.page-off-the-rack .idemo-form input,
html.oja-site.page-off-the-rack .idemo-form select,
html.oja-site.page-off-the-rack .idemo-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  font: inherit;
  background: #fff;
}

html.oja-site.page-off-the-rack .idemo-form button {
  margin-top: 1rem;
}

html.oja-site.page-off-the-rack .idemo-success {
  margin: 0.75rem 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--eq-radius-sm);
  background: rgba(5, 150, 105, 0.12);
  color: var(--eq-success);
  font-size: 0.88rem;
}

html.oja-site.page-off-the-rack .idemo-request-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .idemo-scan-area {
  text-align: center;
  padding: 1rem 0;
}

html.oja-site.page-off-the-rack .idemo-scan-frame {
  position: relative;
  width: min(220px, 100%);
  height: 140px;
  margin: 0 auto 1rem;
  border: 2px dashed var(--eq-border);
  border-radius: var(--eq-radius-sm);
  background: var(--otr-orange-tint);
}

html.oja-site.page-off-the-rack .idemo-scan-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: var(--eq-accent);
  animation: idemo-scan-pulse 2s ease-in-out infinite;
}

@keyframes idemo-scan-pulse {
  0%, 100% { opacity: 0.35; transform: translateY(-12px); }
  50% { opacity: 1; transform: translateY(12px); }
}

html.oja-site.page-off-the-rack .idemo-scan-result {
  margin-top: 1rem;
  padding: 0.85rem;
  text-align: left;
  border-radius: var(--eq-radius-sm);
  border: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface-raised);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-phone .eq-phone-screen {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

html.oja-site.page-off-the-rack .idemo-mobile-title {
  display: block;
  margin: 0.35rem 0 0.75rem;
  font-size: 0.95rem;
}

html.oja-site.page-off-the-rack .idemo-mobile-stats {
  flex: 1;
  font-size: 0.78rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .idemo-mobile-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .idemo-mobile-nav button {
  border: none;
  background: transparent;
  font-size: 0.62rem;
  color: var(--eq-muted);
  padding: 0.35rem 0.15rem;
  cursor: pointer;
  min-height: 2.75rem;
}

html.oja-site.page-off-the-rack .idemo-mobile-nav button.is-active {
  color: var(--otr-orange-dark);
  font-weight: 600;
}

html.oja-site.page-off-the-rack .eq-interactive-demo-embed {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: min(62%, 520px);
  height: 0;
  border-radius: var(--eq-radius);
  overflow: hidden;
  border: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface-raised);
}

html.oja-site.page-off-the-rack .eq-interactive-demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html.oja-site.page-off-the-rack .idemo-scan-line {
    animation: none;
  }
}

/* Standalone demo page (/applications/off-the-rack/demo/) */
html.oja-site.page-off-the-rack-demo .eq-interactive-demo--standalone {
  padding-top: clamp(2rem, 5vw, 3rem);
}

html.oja-site.page-off-the-rack-demo .eq-interactive-demo--standalone .eq-section-head h1 {
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 0.65rem;
}

/* Portal mock — sidebar + content (in-page SPA-lite) */
html.oja-site.page-off-the-rack .eq-portal-mock,
html.oja-site.page-off-the-rack-demo .eq-portal-mock {
  display: grid;
  grid-template-columns: minmax(9rem, 11rem) 1fr;
  min-height: 22rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-sidebar,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-sidebar {
  border-right: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface-raised);
  padding: 0.75rem 0.5rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-brand,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-brand {
  padding: 0.35rem 0.5rem 0.75rem;
  border-bottom: 1px solid var(--eq-border-subtle);
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

html.oja-site.page-off-the-rack .eq-portal-mock-brand strong,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-brand strong {
  display: block;
  color: var(--otr-orange-dark);
  font-size: 0.82rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-brand span,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-brand span {
  color: var(--eq-muted);
  font-size: 0.72rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-nav,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-nav-item,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-nav-item {
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.55rem;
  border-radius: var(--eq-radius-sm);
  color: var(--eq-muted);
  cursor: pointer;
  min-height: 2.25rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-nav-item.is-active,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-nav-item.is-active {
  color: var(--otr-orange-dark);
  background: var(--otr-orange-tint);
}

html.oja-site.page-off-the-rack .eq-portal-mock-main,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

html.oja-site.page-off-the-rack .eq-portal-mock-topbar,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.72rem;
  border-bottom: 1px solid var(--eq-border-subtle);
  background: #fff7ed;
}

html.oja-site.page-off-the-rack .eq-portal-mock-banner,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-banner {
  color: var(--otr-orange-dark);
  font-weight: 600;
}

html.oja-site.page-off-the-rack .eq-portal-mock-user,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-user {
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-portal-mock-content,
html.oja-site.page-off-the-rack-demo .eq-portal-mock-content {
  flex: 1;
  padding: 1rem;
  overflow: auto;
}

html.oja-site.page-off-the-rack .idemo-alert-list,
html.oja-site.page-off-the-rack-demo .idemo-alert-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

html.oja-site.page-off-the-rack .idemo-alert,
html.oja-site.page-off-the-rack-demo .idemo-alert {
  padding: 0.65rem 0.75rem;
  border-radius: var(--eq-radius-sm);
  border: 1px solid var(--eq-border-subtle);
  font-size: 0.82rem;
}

html.oja-site.page-off-the-rack .idemo-alert strong,
html.oja-site.page-off-the-rack-demo .idemo-alert strong {
  display: block;
  margin-bottom: 0.2rem;
}

html.oja-site.page-off-the-rack .idemo-alert span,
html.oja-site.page-off-the-rack-demo .idemo-alert span {
  color: var(--eq-muted);
  font-size: 0.75rem;
}

html.oja-site.page-off-the-rack .idemo-alert--high,
html.oja-site.page-off-the-rack-demo .idemo-alert--high {
  border-color: rgba(220, 38, 38, 0.25);
  background: rgba(254, 226, 226, 0.5);
}

html.oja-site.page-off-the-rack .idemo-alert--medium,
html.oja-site.page-off-the-rack-demo .idemo-alert--medium {
  border-color: rgba(217, 119, 6, 0.25);
  background: rgba(254, 243, 199, 0.45);
}

html.oja-site.page-off-the-rack .idemo-copy,
html.oja-site.page-off-the-rack-demo .idemo-copy {
  font-size: 0.85rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .idemo-activity,
html.oja-site.page-off-the-rack-demo .idemo-activity {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .idemo-location-tree,
html.oja-site.page-off-the-rack-demo .idemo-location-tree {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

html.oja-site.page-off-the-rack .idemo-intake-preview,
html.oja-site.page-off-the-rack-demo .idemo-intake-preview {
  padding: 1rem;
  border: 1px dashed var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm);
  background: var(--eq-surface-raised);
}

html.oja-site.page-off-the-rack .idemo-intake-preview ul,
html.oja-site.page-off-the-rack-demo .idemo-intake-preview ul {
  margin: 0.5rem 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
}

html.oja-site.page-off-the-rack .idemo-help-grid,
html.oja-site.page-off-the-rack-demo .idemo-help-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  html.oja-site.page-off-the-rack .idemo-help-grid,
  html.oja-site.page-off-the-rack-demo .idemo-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

html.oja-site.page-off-the-rack .idemo-help-cat,
html.oja-site.page-off-the-rack-demo .idemo-help-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--otr-orange-dark);
  margin-bottom: 0.25rem;
}

@media (max-width: 640px) {
  html.oja-site.page-off-the-rack .eq-portal-mock,
  html.oja-site.page-off-the-rack-demo .eq-portal-mock {
    grid-template-columns: 1fr;
  }

  html.oja-site.page-off-the-rack .eq-portal-mock-nav,
  html.oja-site.page-off-the-rack-demo .eq-portal-mock-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

html.oja-site.page-off-the-rack-demo .site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Portal mock shell (sidebar + content) */
html.oja-site.page-off-the-rack .eq-portal-mock {
  display: grid;
  grid-template-columns: minmax(9rem, 11rem) 1fr;
  min-height: 28rem;
  border-top: 1px solid var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack .eq-portal-mock-sidebar {
  border-right: 1px solid var(--eq-border-subtle);
  background: var(--eq-surface-raised, #fff);
  padding: 0.75rem 0.5rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0.5rem 0.75rem;
  border-bottom: 1px solid var(--eq-border-subtle);
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-brand strong {
  font-size: 0.85rem;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack .eq-portal-mock-brand span {
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-portal-mock-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-nav-item {
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.45rem 0.55rem;
  border-radius: var(--eq-radius-sm, 8px);
  font-size: 0.78rem;
  color: var(--eq-muted);
  cursor: pointer;
}

html.oja-site.page-off-the-rack .eq-portal-mock-nav-item.is-active,
html.oja-site.page-off-the-rack .eq-portal-mock-nav-item:hover {
  background: var(--otr-orange-tint, #fff7ed);
  color: var(--otr-orange-dark, #c2410c);
}

html.oja-site.page-off-the-rack .eq-portal-mock-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

html.oja-site.page-off-the-rack .eq-portal-mock-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--eq-border-subtle);
  background: rgba(232, 93, 4, 0.08);
  font-size: 0.72rem;
}

html.oja-site.page-off-the-rack .eq-portal-mock-banner {
  font-weight: 600;
  color: var(--otr-orange-dark);
}

html.oja-site.page-off-the-rack .eq-portal-mock-user {
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .eq-portal-mock-content {
  padding: 0.85rem;
  overflow: auto;
}

html.oja-site.page-off-the-rack .idemo-alert-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

html.oja-site.page-off-the-rack .idemo-alert {
  padding: 0.55rem 0.65rem;
  border-radius: var(--eq-radius-sm, 8px);
  border: 1px solid var(--eq-border-subtle);
  font-size: 0.78rem;
}

html.oja-site.page-off-the-rack .idemo-alert strong {
  display: block;
  margin-bottom: 0.15rem;
}

html.oja-site.page-off-the-rack .idemo-alert--high {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(254, 226, 226, 0.45);
}

html.oja-site.page-off-the-rack .idemo-alert--medium {
  border-color: rgba(217, 119, 6, 0.35);
  background: rgba(254, 243, 199, 0.45);
}

html.oja-site.page-off-the-rack .idemo-copy {
  font-size: 0.82rem;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack .idemo-activity {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack .idemo-location-tree {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  line-height: 1.6;
}

html.oja-site.page-off-the-rack .idemo-intake-preview {
  border: 1px dashed var(--eq-border-subtle);
  border-radius: var(--eq-radius-sm, 8px);
  padding: 0.75rem;
  font-size: 0.8rem;
}

html.oja-site.page-off-the-rack .idemo-help-grid {
  display: grid;
  gap: 0.5rem;
}

html.oja-site.page-off-the-rack .idemo-help-cat {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--otr-orange-dark);
  margin-bottom: 0.2rem;
}

@media (max-width: 640px) {
  html.oja-site.page-off-the-rack .eq-portal-mock {
    grid-template-columns: 1fr;
  }

  html.oja-site.page-off-the-rack .eq-portal-mock-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--eq-border-subtle);
  }

  html.oja-site.page-off-the-rack .eq-portal-mock-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Developers / integrations page */
html.oja-site.page-off-the-rack-developers .eq-dev-hero {
  padding: 2.5rem 1.25rem 1.5rem;
  max-width: min(48rem, calc(100% - 2rem));
  margin: 0 auto;
}

html.oja-site.page-off-the-rack-developers .eq-dev-hero h1 {
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.5rem 0 0.75rem;
  color: var(--eq-text);
}

html.oja-site.page-off-the-rack-developers .eq-dev-hero-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--eq-muted);
  margin: 0 0 0.75rem;
}

html.oja-site.page-off-the-rack-developers .eq-dev-hero-note {
  font-size: 0.85rem;
  color: #92400e;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--eq-radius-sm);
  padding: 0.55rem 0.75rem;
  margin: 0;
}

html.oja-site.page-off-the-rack .eq-impl-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #065f46;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

html.oja-site.page-off-the-rack .eq-code-block {
  margin: 0.75rem 0 0;
  padding: 1rem 1.1rem;
  background: #1c1917;
  color: #fafaf9;
  border-radius: var(--eq-radius-sm);
  border: 1px solid rgba(232, 93, 4, 0.25);
  overflow-x: auto;
  font-size: 0.78rem;
  line-height: 1.55;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html.oja-site.page-off-the-rack .eq-code-block code {
  color: inherit;
  background: none;
  padding: 0;
  font-size: inherit;
}

html.oja-site.page-off-the-rack .eq-code-label {
  display: block;
  color: #a8a29e;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

html.oja-site.page-off-the-rack .eq-dev-card {
  padding: 1.1rem 1.25rem;
  background: var(--eq-surface-raised);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius);
  margin-bottom: 1rem;
}

html.oja-site.page-off-the-rack .eq-dev-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

html.oja-site.page-off-the-rack .eq-dev-card p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--eq-muted);
  line-height: 1.5;
}

html.oja-site.page-off-the-rack .eq-dev-card p:last-child {
  margin-bottom: 0;
}

html.oja-site.page-off-the-rack .eq-dev-card-note {
  font-size: 0.82rem;
  color: var(--eq-muted);
  margin: 0.5rem 0 0;
}

html.oja-site.page-off-the-rack .eq-dev-card--cta {
  border-color: rgba(232, 93, 4, 0.35);
  background: var(--otr-orange-tint);
}

html.oja-site.page-off-the-rack .eq-dev-steps {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--eq-muted);
  line-height: 1.55;
}

html.oja-site.page-off-the-rack .eq-dev-steps li {
  margin-bottom: 0.45rem;
}

html.oja-site.page-off-the-rack .eq-dev-steps li:last-child {
  margin-bottom: 0;
}

html.oja-site.page-off-the-rack .eq-dev-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
}

html.oja-site.page-off-the-rack .eq-dev-table th,
html.oja-site.page-off-the-rack .eq-dev-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--eq-border-subtle);
  vertical-align: top;
}

html.oja-site.page-off-the-rack .eq-dev-table th {
  font-weight: 700;
  color: var(--eq-text);
  background: var(--otr-orange-tint);
}

html.oja-site.page-off-the-rack .eq-dev-table td code {
  font-size: 0.78rem;
}

html.oja-site.page-off-the-rack .eq-dev-contact-email {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.75rem 0;
}

html.oja-site.page-off-the-rack .eq-dev-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0.5rem;
}

html.oja-site.page-off-the-rack .eq-subheading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--eq-text);
}

@media (max-width: 640px) {
  html.oja-site.page-off-the-rack .eq-dev-table {
    display: block;
    overflow-x: auto;
  }

  html.oja-site.page-off-the-rack .eq-dev-contact-actions .btn {
    width: 100%;
  }
}

/* Simplified demo landing page */
html.oja-site.page-off-the-rack-demo .otr-demo-landing {
  max-width: min(40rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem 3rem;
}

html.oja-site.page-off-the-rack-demo .otr-demo-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack-demo .otr-demo-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--eq-border-subtle);
}

html.oja-site.page-off-the-rack-demo .otr-demo-breadcrumbs a {
  color: var(--otr-orange-dark);
  text-decoration: none;
  font-weight: 500;
}

html.oja-site.page-off-the-rack-demo .otr-demo-breadcrumbs a:hover {
  text-decoration: underline;
}

html.oja-site.page-off-the-rack-demo .otr-demo-breadcrumbs [aria-current="page"] {
  color: var(--eq-text);
  font-weight: 600;
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--eq-border-subtle);
  border-radius: var(--eq-radius-lg, 1rem);
  background: linear-gradient(180deg, #fff 0%, var(--otr-orange-tint, #fff7ed) 100%);
  box-shadow: 0 1px 3px rgba(232, 93, 4, 0.06);
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__card h1 {
  font-family: var(--oja-font-display, "Outfit", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0.5rem 0 0.75rem;
  color: var(--eq-text);
  line-height: 1.2;
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__lead {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing .eq-privacy-notice {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__cta {
  min-width: 10rem;
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__url {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--eq-border-subtle);
  font-size: 0.85rem;
  color: var(--eq-muted);
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__url-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--otr-orange-dark);
}

html.oja-site.page-off-the-rack-demo .otr-demo-landing__url-link {
  color: var(--otr-orange-dark);
  font-weight: 500;
  word-break: break-all;
}

html.oja-site.page-off-the-rack-demo .site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 480px) {
  html.oja-site.page-off-the-rack-demo .otr-demo-landing__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
