/* ─────────────────────────────────────────────────────────────── */
/*  DESIGN TOKENS — mirror sales-page.css                         */
/* ─────────────────────────────────────────────────────────────── */
:root {
  --bg:               #0a0a1a;
  --bg-elevated:      #1a1a2e;
  --bg-gradient:      linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
  --bg-card:          rgba(255, 255, 255, 0.04);
  --bg-card-hover:    rgba(255, 255, 255, 0.06);

  --text:             #ffffff;
  --text-body:        #d1d5db;
  --text-muted:       #9ca3af;
  --text-dim:         #6b7280;

  --brand:            #6366f1;
  --brand-2:          #a855f7;
  --brand-light:      #818cf8;
  --brand-gradient:   linear-gradient(135deg, #6366f1 0%, #a855f7 100%);

  --success:          #10b981;
  --success-light:    #34d399;
  --warning:          #f59e0b;
  --warning-light:    #fbbf24;
  --danger:           #ef4444;
  --danger-light:     #f87171;
  --info:             #38bdf8;
  --info-light:       #7dd3fc;

  --border:           rgba(255, 255, 255, 0.08);
  --border-strong:    rgba(255, 255, 255, 0.15);

  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        16px;
  --radius-xl:        20px;
  --radius-pill:      100px;

  --font:             'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────────────────────────── */
/*  RESET                                                          */
/* ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.ob-sales-page {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-light); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--brand-2); }

::selection { background: var(--brand); color: #fff; }

/* Root section wrapper — matches .ob from sales page */
.ob-about {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
}
.ob-about, .ob-about * { box-sizing: border-box; }

/* ─────────────────────────────────────────────────────────────── */
/*  LAYOUT PRIMITIVES                                              */
/* ─────────────────────────────────────────────────────────────── */
.ob-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; }
.ob-container--narrow { max-width: 900px; }

@media (max-width: 768px) {
  .ob-container { padding: 0 20px; }
}

/* ─────────────────────────────────────────────────────────────── */
/*  PILL LABELS                                                    */
/* ─────────────────────────────────────────────────────────────── */
.ob-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.ob-label--brand   { background: rgba(99,102,241,0.15);  color: var(--brand-light);   border: 1px solid rgba(99,102,241,0.3); }
.ob-label--danger  { background: rgba(239,68,68,0.15);   color: var(--danger-light);  border: 1px solid rgba(239,68,68,0.3); }
.ob-label--warning { background: rgba(245,158,11,0.15);  color: var(--warning);       border: 1px solid rgba(245,158,11,0.3); }
.ob-label--success { background: rgba(16,185,129,0.15);  color: var(--success-light); border: 1px solid rgba(16,185,129,0.3); }
.ob-label--info    { background: rgba(56,189,248,0.15);  color: var(--info-light);    border: 1px solid rgba(56,189,248,0.3); }

/* ─────────────────────────────────────────────────────────────── */
/*  TYPOGRAPHY                                                     */
/* ─────────────────────────────────────────────────────────────── */
.ob-h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 24px;
}

.ob-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 20px;
}

.ob-lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.ob-prose p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 1.25em;
}
.ob-prose p:last-child { margin-bottom: 0; }
.ob-prose strong { color: var(--text); font-weight: 600; }
.ob-prose em { font-style: italic; color: var(--text); }

.ob-gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Giant faded section number — matches sales page .ob-section-num */
.ob-section-num {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────────────────────── */
/*  META BAR                                                       */
/* ─────────────────────────────────────────────────────────────── */
.ob-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.2);
}
.ob-meta-bar a { color: var(--text-muted); }
.ob-meta-bar a:hover { color: var(--brand-light); }

@media (max-width: 768px) {
  .ob-meta-bar { padding: 14px 20px; font-size: 0.75rem; }
}

/* ─────────────────────────────────────────────────────────────── */
/*  HERO                                                           */
/* ─────────────────────────────────────────────────────────────── */
.ob-about-hero {
  background: var(--bg-gradient);
  padding: 100px 40px 60px;
  position: relative;
}

.ob-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.ob-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .ob-hero-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}

.ob-hero-text { max-width: 640px; }
.ob-hero-photo-wrap { position: relative; }

.ob-hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(99, 102, 241, 0.1);
  position: relative;
  z-index: 1;
}

.ob-hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 10px);
  background: var(--brand-gradient);
  opacity: 0.25;
  filter: blur(40px);
  z-index: 0;
}

.ob-hero-photo-caption {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.ob-hero-photo-caption::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@media (max-width: 768px) {
  .ob-about-hero { padding: 60px 20px 40px; }
}

/* ─────────────────────────────────────────────────────────────── */
/*  CREDENTIALS CHIPS                                              */
/* ─────────────────────────────────────────────────────────────── */
.ob-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.ob-credentials li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: border-color .2s, background .2s;
}

.ob-credentials li:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.ob-credentials li.is-primary {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--brand-light);
  font-weight: 600;
}

.ob-credentials li.is-primary::before {
  content: '★';
  color: var(--brand-2);
  font-size: 0.75rem;
}

/* ─────────────────────────────────────────────────────────────── */
/*  STORY SECTIONS                                                 */
/* ─────────────────────────────────────────────────────────────── */
.ob-story {
  padding: 80px 40px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.ob-story:nth-child(even) { background: rgba(255, 255, 255, 0.015); }

.ob-story-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ob-story { padding: 60px 20px; }
}

/* Lead intro paragraph block */
.ob-intro {
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--border);
}

.ob-intro-inner { max-width: 800px; margin: 0 auto; }

.ob-intro p {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 18px;
}
.ob-intro p strong { color: var(--text); font-weight: 600; }
.ob-intro p em { font-style: italic; color: var(--text); }

@media (max-width: 768px) { .ob-intro { padding: 40px 20px; } }

/* ─────────────────────────────────────────────────────────────── */
/*  COMPETITOR CARDS GRID                                          */
/* ─────────────────────────────────────────────────────────────── */
.ob-competitors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.ob-competitor-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s var(--ease-out);
}

.ob-competitor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ob-competitor-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 12px;
}

.ob-competitor-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.ob-competitor-card__verdict {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--danger-light);
  background: rgba(239, 68, 68, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.ob-competitor-card__reason {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────── */
/*  MODULES GRID — the 8 features                                  */
/* ─────────────────────────────────────────────────────────────── */
.ob-modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 0;
}

.ob-module {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all .3s var(--ease-out);
}

.ob-module:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ob-module__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.ob-module__tag.is-free {
  color: var(--success-light);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.ob-module__tag.is-pro {
  color: var(--brand-light);
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.ob-module__tag.is-mixed {
  color: var(--info-light);
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.ob-module__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.ob-module__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Callout — "no other plugin does this" */
.ob-callout {
  margin: 32px 0 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(168,85,247,0.06));
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-md);
}

.ob-callout p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
}
.ob-callout strong { color: var(--text); }

/* ─────────────────────────────────────────────────────────────── */
/*  WORKSPACE / PHOTO BLOCK (browser-frame style)                  */
/* ─────────────────────────────────────────────────────────────── */
.ob-photo-block {
  padding: 40px 40px 60px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--border);
}

.ob-photo-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.ob-photo-frame__bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.ob-photo-frame__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ob-photo-frame__bar span:nth-child(1) { background: rgba(239, 68, 68, 0.4); }
.ob-photo-frame__bar span:nth-child(2) { background: rgba(245, 158, 11, 0.4); }
.ob-photo-frame__bar span:nth-child(3) { background: rgba(16, 185, 129, 0.4); }

.ob-photo-frame__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.ob-photo-caption {
  max-width: 1100px;
  margin: 16px auto 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-align: center;
}

@media (max-width: 768px) { .ob-photo-block { padding: 30px 20px 40px; } }

/* ─────────────────────────────────────────────────────────────── */
/*  ENGINEERING PRIORITIES (feature list cards)                    */
/* ─────────────────────────────────────────────────────────────── */
.ob-priorities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.ob-priority {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .3s var(--ease-out);
}

.ob-priority:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.3);
  background: var(--bg-card-hover);
}

.ob-priority__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.ob-priority__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Pull quote — gradient bg */
.ob-pullquote {
  margin: 40px 0 0;
  padding: 32px 32px 32px 56px;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(168,85,247,0.06));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99,102,241,0.2);
  position: relative;
}

.ob-pullquote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 24px;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

.ob-pullquote p {
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────── */
/*  COMMITMENTS                                                    */
/* ─────────────────────────────────────────────────────────────── */
.ob-commitments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.ob-commitment {
  flex: 1 1 260px;
  max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease-out);
}

.ob-commitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity .3s;
}

.ob-commitment:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  background: var(--bg-card-hover);
}
.ob-commitment:hover::before { opacity: 1; }

.ob-commitment__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  background: rgba(99, 102, 241, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.ob-commitment__text {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}

.ob-commitment__text strong {
  color: var(--text);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────── */
/*  CONTACT BLOCK                                                  */
/* ─────────────────────────────────────────────────────────────── */
.ob-contact-block {
  margin-top: 32px;
  padding: 48px;
  background:
    radial-gradient(ellipse at top right, rgba(168, 85, 247, 0.1) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.ob-contact-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gradient);
}

.ob-contact-block__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.ob-contact-block__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 28px;
  max-width: 580px;
}

.ob-contact-block__text strong { color: var(--text); }

.ob-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all .3s var(--ease-out);
}

.ob-email-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
  color: #fff;
}

.ob-email-btn svg { width: 18px; height: 18px; }

.ob-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.ob-signature__name {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.ob-signature__location {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) { .ob-contact-block { padding: 32px 24px; } }

/* ─────────────────────────────────────────────────────────────── */
/*  FINAL CTA                                                      */
/* ─────────────────────────────────────────────────────────────── */
.ob-final-cta {
  text-align: center;
  padding: 80px 40px 100px;
  background: var(--bg-gradient);
}

.ob-final-cta__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ob-final-cta__text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
}

.ob-final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ob-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s var(--ease-out);
  cursor: pointer;
  border: none;
}

.ob-btn-primary {
  background: var(--brand-gradient);
  color: #fff;
}
.ob-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
  color: #fff;
}

.ob-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-strong);
}
.ob-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
  color: #fff;
}

@media (max-width: 768px) { .ob-final-cta { padding: 60px 20px 80px; } }

/* ─────────────────────────────────────────────────────────────── */
/*  PROTECTED NAME (JS-decoded base64, hidden from scrapers)       */
/* ─────────────────────────────────────────────────────────────── */
.js-name {
  /* Inline display so it flows with surrounding text */
  display: inline;
  /* Inherit all typography from parent — name should look native */
}
/* Until JS runs, render as nothing (avoids flash of base64 string) */
.js-name:empty::before { content: ""; }

/* ─────────────────────────────────────────────────────────────── */
/*  SCROLL REVEAL                                                  */
/* ─────────────────────────────────────────────────────────────── */
.ob-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.ob-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ob-reveal { opacity: 1; transform: none; }
}
