/**
 * Radical marketing - cinematic island brand
 * Shared by home + vertical landings + how-it-works.
 */

.oj-rad {
  --rad-bg: #05080f;
  --rad-elev: #0a101c;
  --rad-card: #111827;
  --rad-ink: #f8fafc;
  --rad-muted: #94a3b8;
  --rad-faint: #64748b;
  --rad-line: rgba(148, 163, 184, 0.12);
  --rad-sky: #38bdf8;
  --rad-gold: #fbbf24;
  color: var(--rad-ink);
  background: var(--rad-bg);
  min-height: 40vh;
}

.oj-rad-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Hero ── */
.oj-rad-hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(14, 165, 233, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(251, 191, 36, 0.09), transparent 50%),
    linear-gradient(165deg, #05080f 0%, #0b1220 45%, #0a1628 100%);
}
.oj-rad-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(5, 8, 15, 0.85) 100%);
  pointer-events: none;
}
.oj-rad-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.oj-rad-hero-orb--a {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -6rem;
  background: rgba(56, 189, 248, 0.15);
}
.oj-rad-hero-orb--b {
  width: 22rem;
  height: 22rem;
  bottom: 10%;
  right: -4rem;
  background: rgba(251, 191, 36, 0.1);
}
.oj-rad-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.oj-rad-kicker {
  display: inline-block;
  margin: 0 0 1.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--rad-line);
  background: rgba(255, 255, 255, 0.03);
}
.oj-rad-kicker--dim {
  border: 0;
  background: transparent;
  padding: 0;
  letter-spacing: 0.16em;
  color: #64748b;
}
.oj-rad-h1 {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  /* Room for descenders (y, p, g) — 0.98 was clipping “help.” / “properly.” */
  line-height: 1.12;
  overflow: visible;
}
/* Hero stack - default: crisp white + gold→sky (matches island CTAs)
   Optional body classes:
     oj-hero-tone-gold  - white + solid gold
     oj-hero-tone-sky   - white + solid sky
     oj-hero-tone-soft  - soft slate + soft sky
     oj-hero-tone-allgold - both lines gold gradient
*/
.oj-rad-h1-a {
  display: block;
  color: #f8fafc;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  padding-bottom: 0.06em; /* keep y/p tails inside the line box */
  overflow: visible;
}
.oj-rad-h1-b {
  display: block;
  margin-top: 0.04em;
  padding-bottom: 0.08em; /* gradient clip + descenders (y in properly) */
  background: linear-gradient(110deg, #fde68a 0%, #fbbf24 38%, #38bdf8 78%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
body.oj-hero-tone-gold .oj-rad-h1-a { color: #f8fafc; text-shadow: none; }
body.oj-hero-tone-gold .oj-rad-h1-b {
  background: linear-gradient(110deg, #fef3c7 0%, #fbbf24 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.oj-hero-tone-sky .oj-rad-h1-a { color: #f8fafc; text-shadow: none; }
body.oj-hero-tone-sky .oj-rad-h1-b {
  background: none;
  color: #38bdf8;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}
body.oj-hero-tone-soft .oj-rad-h1-a { color: #cbd5e1; text-shadow: none; }
body.oj-hero-tone-soft .oj-rad-h1-b {
  background: none;
  color: #7dd3fc;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}
body.oj-hero-tone-allgold .oj-rad-h1-a,
body.oj-hero-tone-allgold .oj-rad-h1-b {
  background: linear-gradient(110deg, #fef3c7 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.oj-rad-lede {
  margin: 1.5rem auto 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
  font-weight: 450;
}
.oj-rad-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}
.oj-rad-actions--center { justify-content: center; }
.oj-rad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}
.oj-rad-btn:hover { transform: translateY(-1px); }
.oj-rad-btn--primary {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 55%, #f59e0b 100%);
  color: #0b1220;
  box-shadow: 0 14px 36px -14px rgba(251, 191, 36, 0.55);
}
.oj-rad-btn--primary:hover { filter: brightness(1.04); }
.oj-rad-btn--ghost {
  background: transparent;
  color: #f1f5f9;
  border-color: rgba(148, 163, 184, 0.3);
}
.oj-rad-btn--ghost:hover { background: rgba(255, 255, 255, 0.06); }
.oj-rad-btn--sky {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0b1220;
  font-weight: 800;
}
.oj-rad-btn--text {
  background: transparent;
  color: #94a3b8;
  border: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.oj-rad-btn--text:hover { color: #fff; }
.oj-rad-btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}
.oj-rad-proof {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}
.oj-rad-proof strong {
  color: #e2e8f0;
  font-weight: 800;
}
.oj-rad-hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #475569;
  animation: oj-rad-fade 2.4s ease-in-out infinite;
}
@keyframes oj-rad-fade {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

/* ── Sections ── */
.oj-rad-section {
  padding: 4.5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .oj-rad-section { padding: 5.5rem 0; }
}
.oj-rad-sec-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.oj-rad-sec-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 40rem;
}
.oj-rad-h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.oj-rad-sec-sub {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--rad-muted);
}

/* ── Doors ── */
.oj-rad-doors-sec {
  background: linear-gradient(180deg, #05080f 0%, #0a101c 50%, #05080f 100%);
  border-top: 1px solid var(--rad-line);
  border-bottom: 1px solid var(--rad-line);
}
.oj-rad-doors {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .oj-rad-doors { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .oj-rad-doors--3 { grid-template-columns: repeat(3, 1fr); }
  .oj-rad-doors--4 { grid-template-columns: repeat(4, 1fr); }
}
.oj-rad-door {
  --door-accent: #38bdf8;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.4rem 1.3rem 1.25rem;
  border-radius: 1.35rem;
  border: 1px solid var(--rad-line);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.03) 0%, transparent 40%),
    #0f1624;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}
.oj-rad-door::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--door-accent);
  opacity: 0.9;
}
.oj-rad-door--trade { --door-accent: #38bdf8; }
.oj-rad-door--health { --door-accent: #2dd4bf; }
.oj-rad-door--legal { --door-accent: #818cf8; }
.oj-rad-door--jobs { --door-accent: #e879f9; }
.oj-rad-door:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--door-accent) 45%, transparent);
  box-shadow: 0 24px 48px -28px color-mix(in srgb, var(--door-accent) 50%, transparent);
}
.oj-rad-door-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.oj-rad-door-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--door-accent) 16%, #0f172a);
  color: var(--door-accent);
  font-size: 1.1rem;
}
.oj-rad-door-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.oj-rad-door-line {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}
.oj-rad-door-blurb {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #94a3b8;
  flex: 1;
}
.oj-rad-door-cta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--door-accent) 85%, #fff);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.oj-rad-door:hover .oj-rad-door-cta i {
  transform: translateX(3px);
}
.oj-rad-door-cta i {
  font-size: 0.7rem;
  transition: transform 0.15s ease;
}

/* ── Manifesto ── */
.oj-rad-manifesto {
  background: #070b14;
}
.oj-rad-manifesto-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .oj-rad-manifesto-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: end;
  }
}
.oj-rad-manifesto-copy {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #94a3b8;
}
.oj-rad-manifesto-copy p { margin: 0 0 1rem; }
.oj-rad-manifesto-emph {
  color: #f1f5f9 !important;
  font-weight: 700;
  font-size: 1.2rem !important;
  letter-spacing: -0.02em;
}

/* About body: full legal_body_about narrative on dark radical shell */
.oj-rad-about-prose {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #cbd5e1;
}
.oj-rad-about-prose > p {
  margin: 0 0 1rem;
  color: #cbd5e1;
}
.oj-rad-about-prose > p.font-semibold,
.oj-rad-about-prose strong {
  color: #f1f5f9;
  font-weight: 700;
}
.oj-rad-about-prose em {
  color: #e2e8f0;
}
.oj-rad-about-prose a {
  color: #7dd3fc;
  font-weight: 600;
  text-decoration: none;
}
.oj-rad-about-prose a:hover {
  text-decoration: underline;
  color: #bae6fd;
}
.oj-rad-about-prose .not-prose {
  color: inherit;
}
.oj-rad-about-prose .rounded-2xl.border {
  border-color: rgba(148, 163, 184, 0.22) !important;
  background: rgba(15, 22, 36, 0.85) !important;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.55);
}
.oj-rad-about-prose .rounded-2xl.border.bg-slate-50 {
  background:
    radial-gradient(400px 160px at 0% 0%, rgba(56, 189, 248, 0.1), transparent 55%),
    #121a2b !important;
}
.oj-rad-about-prose .rounded-2xl.border.bg-white {
  background: #0f1624 !important;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.22s ease;
}
.oj-rad-about-prose .rounded-2xl.border.bg-white:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(56, 189, 248, 0.4) !important;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.15),
    0 18px 40px -16px rgba(0, 0, 0, 0.65);
}
.oj-rad-about-prose .text-slate-900,
.oj-rad-about-prose .text-slate-800 {
  color: #f1f5f9 !important;
}
.oj-rad-about-prose .text-slate-700,
.oj-rad-about-prose .text-slate-600,
.oj-rad-about-prose .text-slate-500 {
  color: #94a3b8 !important;
}
.oj-rad-about-prose .text-sky-700 { color: #38bdf8 !important; }
.oj-rad-about-prose .text-teal-800 { color: #2dd4bf !important; }
.oj-rad-about-prose .text-fuchsia-800 { color: #e879f9 !important; }
.oj-rad-about-prose .text-red-600 { color: #fb7185 !important; }
.oj-rad-about-prose .text-center {
  margin-top: 1.5rem;
}

/* ── Split panels ── */
.oj-rad-split-sec {
  background: linear-gradient(180deg, #05080f, #0a101c);
  border-top: 1px solid var(--rad-line);
}
.oj-rad-split {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .oj-rad-split { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
.oj-rad-panel {
  padding: 1.75rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--rad-line);
  background: #0f1624;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.oj-rad-panel--accent {
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    #111c2e;
  border-color: rgba(56, 189, 248, 0.2);
}
.oj-rad-panel-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.oj-rad-panel-title {
  margin: 0.5rem 0 1.1rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.oj-rad-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.oj-rad-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.95rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.oj-rad-list li:last-child { border-bottom: 0; }
.oj-rad-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rad-sky);
  opacity: 0.85;
}
.oj-rad-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── OJ Bot island note ── */
.oj-rad-oj {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.oj-rad-oj-card {
  display: grid;
  gap: 1.15rem 1.5rem;
  align-items: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.06), transparent 45%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 50%),
    #0c121e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.22s ease;
}
.oj-rad-oj-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 20px 44px -18px rgba(0, 0, 0, 0.55),
    0 0 36px -10px rgba(56, 189, 248, 0.32);
}
@media (min-width: 720px) {
  .oj-rad-oj-card {
    grid-template-columns: auto 1fr auto;
    padding: 1.5rem 1.65rem;
  }
}
.oj-rad-oj-mark {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1e3a5f, #0f172a);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 0 24px -8px rgba(56, 189, 248, 0.45);
  flex-shrink: 0;
}
.oj-rad-oj-letter {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #7dd3fc;
}
.oj-rad-oj-pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(56, 189, 248, 0.35);
  animation: oj-rad-oj-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes oj-rad-oj-ring {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}
.oj-rad-oj-copy .oj-rad-kicker {
  margin-bottom: 0.35rem;
}
.oj-rad-oj-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
  line-height: 1.2;
}
.oj-rad-oj-lede {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #94a3b8;
  max-width: 34rem;
}
.oj-rad-oj-foot {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.oj-rad-oj-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
@media (max-width: 719px) {
  .oj-rad-oj-actions {
    width: 100%;
  }
  .oj-rad-oj-actions .oj-rad-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ── Final ── */
.oj-rad-final {
  text-align: center;
  padding-bottom: 5.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14, 165, 233, 0.12), transparent 60%),
    #05080f;
  border-top: 1px solid var(--rad-line);
}
.oj-rad-final-inner {
  max-width: 32rem;
}
.oj-rad-final .oj-rad-h2 { margin-bottom: 0.5rem; }
.oj-rad-final .oj-rad-sec-sub { margin-bottom: 1.75rem; }

/* Page heroes (inner pages - shorter) */
.oj-rad-hero--page {
  min-height: min(52vh, 28rem);
  padding: 3.5rem 0 3rem;
}
@media (min-width: 768px) {
  .oj-rad-hero--page {
    min-height: min(48vh, 30rem);
    padding: 4rem 0 3.25rem;
  }
}
.oj-rad-hero--page .oj-rad-h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
}

/* Feature / step grids for inner pages */
.oj-rad-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .oj-rad-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .oj-rad-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.oj-rad-card {
  padding: 1.4rem 1.3rem;
  border-radius: 1.25rem;
  border: 1px solid var(--rad-line);
  background: #0f1624;
  height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.22s ease;
}
.oj-rad-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(125, 211, 252, 0.12) 50%,
    transparent 65%
  );
  background-size: 220% 100%;
  background-position: 130% 0;
  opacity: 0;
  transition: opacity 0.25s ease, background-position 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.oj-rad-card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 22px 48px -18px rgba(0, 0, 0, 0.65),
    0 0 36px -10px rgba(56, 189, 248, 0.35);
}
.oj-rad-card:hover::after {
  opacity: 1;
  background-position: -30% 0;
}
.oj-rad-card > * {
  position: relative;
  z-index: 2;
}
.oj-rad-card:hover .oj-rad-card-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(56, 189, 248, 0.55);
}
.oj-rad-card-icon {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.oj-rad-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.oj-rad-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rad-muted);
}
.oj-rad-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: rgba(56, 189, 248, 0.12);
  color: var(--rad-sky);
  font-size: 1.05rem;
}
.oj-rad-steps {
  display: grid;
  gap: 1rem;
  counter-reset: radstep;
}
@media (min-width: 768px) {
  .oj-rad-steps--3 { grid-template-columns: repeat(3, 1fr); }
  .oj-rad-steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .oj-rad-steps--4 { grid-template-columns: repeat(4, 1fr); }
}
.oj-rad-step {
  padding: 1.35rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--rad-line);
  background: #0f1624;
  counter-increment: radstep;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.22s ease;
}
.oj-rad-step:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.16),
    0 20px 44px -18px rgba(0, 0, 0, 0.6),
    0 0 32px -10px rgba(56, 189, 248, 0.3);
}
.oj-rad-step::before {
  content: counter(radstep, decimal-leading-zero);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rad-sky);
  margin-bottom: 0.65rem;
}
.oj-rad-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.oj-rad-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--rad-muted);
}
.oj-rad-price-row {
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
}
/* Single plan card — never force a 3-col track (was stretching Customers tall & skinny) */
.oj-rad-price-row--1 {
  grid-template-columns: minmax(0, 20rem);
  justify-content: center;
  max-width: none;
}
.oj-rad-price-row--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .oj-rad-price-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .oj-rad-price-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .oj-rad-price-row--1 { grid-template-columns: minmax(0, 20rem); }
  .oj-rad-price-row--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oj-rad-price-row--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .oj-rad-price-row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* Pricing blocks + marketing blurbs between groups */
.oj-rad-price-block {
  margin: 0 0 2.75rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.oj-rad-price-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.oj-rad-price-group {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
}
.oj-rad-price-blurb {
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #cbd5e1;
  font-weight: 500;
}
.oj-rad-price-blurb strong {
  color: #f8fafc;
  font-weight: 700;
}
.oj-rad-price-blurb a {
  color: #7dd3fc;
  font-weight: 700;
  text-decoration: none;
}
.oj-rad-price-blurb a:hover {
  color: #e0f2fe;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.oj-rad-price--business {
  border-color: color-mix(in srgb, #f59e0b 45%, var(--rad-line));
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(245, 158, 11, 0.14), transparent 55%),
    #0f1624;
}
.oj-rad-price--business .tier {
  color: #fbbf24;
}
.oj-rad-price {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  border-radius: 1.35rem;
  border: 1px solid var(--rad-line);
  background: #0f1624;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.22s ease;
}
.oj-rad-price-row--1 .oj-rad-price {
  height: auto;
  width: 100%;
}
.oj-rad-price .oj-rad-btn {
  margin-top: auto;
  align-self: center;
}
.oj-rad-price .note {
  flex: 1 1 auto;
}
/* Same light-sweep as .oj-rad-card on hover */
.oj-rad-price::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(125, 211, 252, 0.12) 50%,
    transparent 65%
  );
  background-size: 220% 100%;
  background-position: 130% 0;
  opacity: 0;
  transition: opacity 0.25s ease, background-position 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.oj-rad-price:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 22px 48px -18px rgba(0, 0, 0, 0.65),
    0 0 36px -10px rgba(56, 189, 248, 0.35);
}
.oj-rad-price:hover::after {
  opacity: 1;
  background-position: -30% 0;
}
.oj-rad-price > * {
  position: relative;
  z-index: 2;
}
.oj-rad-price.is-hot {
  border-color: rgba(56, 189, 248, 0.35);
  background:
    radial-gradient(400px 180px at 50% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
    #111c2e;
}
.oj-rad-price.is-hot:hover {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.28),
    0 24px 52px -16px rgba(0, 0, 0, 0.7),
    0 0 42px -8px rgba(56, 189, 248, 0.45);
}
.oj-rad-price .tier {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.oj-rad-price .amount {
  margin: 0.5rem 0 0.35rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.oj-rad-price .amount span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
}
.oj-rad-price .note {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0 0 1rem;
}
.oj-rad-contact-form {
  max-width: 32rem;
  margin: 0 auto;
}
.oj-rad-contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0.85rem 0 0.35rem;
}
.oj-rad-contact-form input,
.oj-rad-contact-form textarea,
.oj-rad-contact-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid var(--rad-line);
  background: #0f1624;
  color: #f1f5f9;
  font: inherit;
}
.oj-rad-contact-form input:focus,
.oj-rad-contact-form textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.35);
  border-color: rgba(56, 189, 248, 0.4);
}
.oj-rad-contact-form button[type="submit"] {
  margin-top: 1.25rem;
  width: 100%;
  cursor: pointer;
}

/* Smooth scroll for #doors */
html { scroll-behavior: smooth; }

/* ═══ Live activity - frosted glass rail (scroll to next) ═══ */
/* !important: beat Tailwind + any leftover light section rules */
#oj-activity-teaser.oj-live-sec,
.oj-live-sec {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 20% 0%, rgba(56, 189, 248, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(129, 140, 248, 0.08), transparent 50%),
    linear-gradient(180deg, #05080f 0%, #070b14 50%, #05080f 100%) !important;
  background-color: #05080f !important;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  color: #e2e8f0 !important;
}
#oj-activity-teaser .oj-live-title,
#oj-activity-teaser h2 {
  color: #f8fafc !important;
}
#oj-activity-teaser .oj-live-sub,
#oj-activity-teaser p {
  color: #94a3b8 !important;
}
#oj-activity-teaser .oj-live-foot {
  color: #475569 !important;
}
.oj-live-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 10%, transparent 75%);
}
.oj-live-wrap {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.15rem;
}
.oj-live-head {
  margin-bottom: 1.35rem;
  max-width: 34rem;
}
.oj-live-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.15rem;
}
.oj-live-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
}
.oj-live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  background: rgba(16, 185, 129, 0.07);
}
.oj-live-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  animation: oj-live-ping 2s ease-out infinite;
}
@keyframes oj-live-ping {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
  70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.oj-live-meta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.oj-live-title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
  line-height: 1.15;
}
.oj-live-sub {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #94a3b8;
  max-width: 30rem;
}

/* Scroll controls */
.oj-live-navs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.oj-live-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 22, 36, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #e2e8f0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.oj-live-nav:hover:not(:disabled) {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #fff;
}
.oj-live-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.oj-live-nav i { font-size: 0.75rem; }
.oj-live-hint {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.04em;
  display: none;
}
@media (min-width: 640px) {
  .oj-live-hint { display: inline; }
}

/* Horizontal frosted rail */
.oj-live-rail-shell {
  position: relative;
  margin: 0 -1.15rem;
}
.oj-live-rail-shell::before,
.oj-live-rail-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0.5rem;
  width: 2rem;
  z-index: 2;
  pointer-events: none;
}
.oj-live-rail-shell::before {
  left: 0;
  background: linear-gradient(90deg, #05080f, transparent);
}
.oj-live-rail-shell::after {
  right: 0;
  background: linear-gradient(270deg, #05080f, transparent);
}
@media (min-width: 768px) {
  .oj-live-rail-shell::before,
  .oj-live-rail-shell::after { width: 3rem; }
}
.oj-live-grid,
.oj-live-rail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 1.15rem 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.oj-live-grid::-webkit-scrollbar,
.oj-live-rail::-webkit-scrollbar { display: none; }

/* Frosted glass panel - solid dark base first (never chalk white / never transparent-over-white) */
.oj-live-card {
  --live-accent: #38bdf8;
  flex: 0 0 min(82vw, 17.5rem);
  width: min(82vw, 17.5rem);
  max-width: 17.5rem;
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  /* Opaque dark base so backdrop-filter can't frost a white page into chalk */
  background-color: #0c121e !important;
  background-image:
    linear-gradient(
      155deg,
      rgba(56, 189, 248, 0.12) 0%,
      rgba(12, 18, 32, 0.92) 45%,
      rgba(8, 12, 22, 0.96) 100%
    ) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 18px 40px -24px rgba(0, 0, 0, 0.7) !important;
  scroll-snap-align: start;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
  color: #e2e8f0 !important;
}
.oj-live-card--trade {
  background-image:
    linear-gradient(155deg, rgba(56, 189, 248, 0.16) 0%, rgba(12, 18, 32, 0.94) 48%, rgba(8, 12, 22, 0.97) 100%) !important;
}
.oj-live-card--health {
  background-image:
    linear-gradient(155deg, rgba(45, 212, 191, 0.14) 0%, rgba(12, 18, 32, 0.94) 48%, rgba(8, 12, 22, 0.97) 100%) !important;
}
.oj-live-card--legal {
  background-image:
    linear-gradient(155deg, rgba(129, 140, 248, 0.16) 0%, rgba(12, 18, 32, 0.94) 48%, rgba(8, 12, 22, 0.97) 100%) !important;
}
.oj-live-card--jobs {
  background-image:
    linear-gradient(155deg, rgba(232, 121, 249, 0.14) 0%, rgba(12, 18, 32, 0.94) 48%, rgba(8, 12, 22, 0.97) 100%) !important;
}
@media (min-width: 640px) {
  .oj-live-card {
    flex-basis: 18rem;
    width: 18rem;
    max-width: 18rem;
    min-height: 13rem;
  }
}
.oj-live-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 2px 0 0 2px;
  background: var(--live-accent);
  opacity: 0.85;
}
.oj-live-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 60%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--live-accent) 18%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}
.oj-live-card--trade { --live-accent: #38bdf8; }
.oj-live-card--health { --live-accent: #2dd4bf; }
.oj-live-card--legal { --live-accent: #818cf8; }
.oj-live-card--jobs { --live-accent: #e879f9; }
.oj-live-card:hover {
  border-color: color-mix(in srgb, var(--live-accent) 55%, transparent);
  transform: translateY(-7px) scale(1.02);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--live-accent) 28%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 26px 52px -18px rgba(0, 0, 0, 0.78),
    0 0 40px -10px color-mix(in srgb, var(--live-accent) 42%, transparent);
}
.oj-live-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}
.oj-live-card::after {
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.oj-live-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}
.oj-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--live-accent) 90%, #fff);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--live-accent) 12%, rgba(0, 0, 0, 0.2));
  border: 1px solid color-mix(in srgb, var(--live-accent) 22%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.oj-live-badge i { font-size: 0.55rem; opacity: 0.9; }
.oj-live-time {
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.oj-live-card-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #f8fafc;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oj-live-card-cat {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}
.oj-live-card-loc {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  color: #64748b;
  position: relative;
  z-index: 1;
}
.oj-live-card-loc i { margin-right: 0.25rem; opacity: 0.7; font-size: 0.62rem; }
.oj-live-card-blurb {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
  flex: 1;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oj-live-card-cta {
  margin-top: auto;
  padding-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--live-accent) 85%, #e2e8f0);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
.oj-live-card:hover .oj-live-card-cta i { transform: translateX(3px); }
.oj-live-card-cta i { font-size: 0.62rem; transition: transform 0.12s ease; }

.oj-live-loading,
.oj-live-empty {
  flex: 0 0 min(92vw, 22rem);
  width: min(92vw, 22rem);
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.88rem;
  color: #64748b;
  letter-spacing: 0.01em;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(12, 18, 32, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  scroll-snap-align: start;
}
.oj-live-empty-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
}
.oj-live-empty-sub {
  margin: 0.45rem auto 0;
  max-width: 18rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}
.oj-live-empty-links {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
}
.oj-live-empty-links a {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7dd3fc;
  text-decoration: none;
}
.oj-live-empty-links a:hover { color: #fff; }
.oj-live-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.oj-live-foot {
  margin: 0.95rem auto 0;
  max-width: 30rem;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.45;
  color: #475569;
}

/* ═══ Mobile polish ═══ */
html {
  -webkit-text-size-adjust: 100%;
}
body.oj-mkt-body,
body.oj-mkt-premium,
.oj-rad {
  overflow-x: clip;
}
@media (max-width: 639px) {
  .oj-rad-hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }
  .oj-rad-hero--page {
    min-height: auto;
    padding: 2.5rem 0 2rem;
  }
  .oj-rad-h1 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
    word-break: break-word;
  }
  .oj-rad-lede {
    font-size: 0.95rem;
    max-width: 22rem;
  }
  .oj-rad-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 1.35rem;
  }
  .oj-rad-btn {
    width: 100%;
    padding: 0.88rem 1.1rem;
    min-height: 2.85rem;
    justify-content: center;
  }
  .oj-rad-btn--text {
    width: auto;
    align-self: center;
    min-height: auto;
  }
  .oj-rad-proof {
    gap: 0.35rem 0.85rem;
    font-size: 0.72rem;
  }
  .oj-rad-section {
    padding: 2.5rem 0;
  }
  .oj-rad-sec-head {
    margin-bottom: 1.35rem;
  }
  .oj-rad-h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }
  .oj-rad-door {
    padding: 1.1rem 1rem 1rem;
  }
  .oj-rad-door-line {
    font-size: 1.15rem;
  }
  .oj-rad-manifesto-grid {
    gap: 1.15rem;
  }
  .oj-rad-manifesto-copy {
    font-size: 0.98rem;
  }
  .oj-rad-split {
    gap: 0.75rem;
  }
  .oj-rad-panel {
    padding: 1.25rem 1.05rem;
  }
  .oj-rad-panel-title {
    font-size: 1.3rem;
  }
  .oj-rad-final {
    padding-bottom: 3.25rem;
  }
  .oj-rad-card,
  .oj-rad-step,
  .oj-rad-price {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
  .oj-live-sec {
    padding: 2.25rem 0 2.75rem;
  }
  .oj-live-card {
    flex-basis: min(86vw, 16.5rem);
    width: min(86vw, 16.5rem);
    min-height: 11.75rem;
    padding: 1rem 1rem 0.95rem;
  }
  .oj-live-card-title {
    font-size: 0.95rem;
  }
  .oj-live-head-row {
    align-items: flex-start;
  }
  .oj-live-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .oj-live-actions .oj-rad-btn {
    width: 100%;
  }
  .oj-mkt-nav-row {
    padding: 0.5rem 0.8rem;
  }
  .oj-mkt-footer-grid {
    gap: 1.35rem;
  }
  .oj-rad-price-row {
    gap: 0.65rem;
  }
  .oj-rad-hero-scroll {
    display: none;
  }
  /* Page-builder CTAs full-width on phone */
  body.oj-mkt-premium .oj-public-hero-btn-primary,
  body.oj-mkt-premium .oj-public-hero-btn-secondary,
  body.oj-mkt-premium .oj-public-cta-btn {
    display: inline-flex;
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }
  body.oj-mkt-premium .oj-public-hero .mt-7,
  body.oj-mkt-premium .oj-public-hero .mt-8 {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Safe area for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  .oj-mkt-nav-row {
    padding-left: max(0.85rem, env(safe-area-inset-left));
    padding-right: max(0.85rem, env(safe-area-inset-right));
  }
  .oj-rad-wrap,
  .oj-live-wrap {
    padding-left: max(1.15rem, env(safe-area-inset-left));
    padding-right: max(1.15rem, env(safe-area-inset-right));
  }
  #mobileMenu.oj-mkt-mobile {
    padding-bottom: max(1.35rem, env(safe-area-inset-bottom));
  }
}

/* ═══ Page-builder grace (PB blocks on dark brand) ═══ */
body.oj-mkt-premium section#pricing,
body.oj-mkt-premium section.py-16.bg-slate-50,
body.oj-mkt-premium section.py-14.bg-slate-50,
body.oj-mkt-premium section.py-12.md\:py-16.bg-white,
body.oj-mkt-premium section.py-12 {
  background: #0a101c !important;
  border-color: rgba(148, 163, 184, 0.1) !important;
}
body.oj-mkt-premium .oj-public-cta-accent,
body.oj-mkt-premium section.bg-slate-900 {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14, 165, 233, 0.12), transparent 60%),
    #05080f !important;
}
body.oj-mkt-premium .oj-public-step-num {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #7dd3fc !important;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
/* Nested white panels (compare, plans, feature leftovers) */
body.oj-mkt-premium section .bg-white,
body.oj-mkt-premium section .bg-slate-50,
body.oj-mkt-premium [id="plans"] .bg-white,
body.oj-mkt-premium #pro-plans .bg-white,
body.oj-mkt-premium #plans .bg-white {
  background: #0f1624 !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
  color: #e2e8f0 !important;
  box-shadow: none !important;
}
body.oj-mkt-premium [id="plans"] .text-slate-900,
body.oj-mkt-premium #pro-plans .text-slate-900,
body.oj-mkt-premium section .text-slate-900 {
  color: #f8fafc !important;
}
body.oj-mkt-premium [id="plans"] .text-slate-600,
body.oj-mkt-premium #pro-plans .text-slate-600,
body.oj-mkt-premium section .text-slate-700 {
  color: #94a3b8 !important;
}
body.oj-mkt-premium section .border-slate-200,
body.oj-mkt-premium section .border-slate-100 {
  border-color: rgba(148, 163, 184, 0.12) !important;
}
/* Compare / who / feature cards already themed; quiet shadow float */
body.oj-mkt-premium .oj-public-feature-card,
body.oj-mkt-premium .oj-public-who-card {
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
}
/* Contact company block under PB contact */
body.oj-mkt-premium .max-w-2xl.mx-auto .text-slate-600,
body.oj-mkt-premium .max-w-2xl.mx-auto .text-slate-500,
body.oj-mkt-premium .max-w-2xl.mx-auto .text-slate-400 {
  color: #94a3b8 !important;
}
/* Legal / guide embeds */
body.oj-mkt-premium .oj-legal-body a:not([class*="bg-"]),
body.oj-mkt-premium .oj-guide-body a:not([class*="bg-"]) {
  color: #7dd3fc;
}
/* Kill leftover white “float” on old teaser articles if any PB JSON still emits them */
body.oj-mkt-premium #teaser-jobs article.rounded-2xl,
body.oj-mkt-premium #teaser-jobs .bg-white {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* -- Ortally partnership band -- */
.oj-ortally-partner {
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(139, 92, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(245, 158, 11, 0.1), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0c1220 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.oj-ortally-partner-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .oj-ortally-partner-inner {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 2.25rem;
    align-items: center;
  }
}
.oj-ortally-partner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin: 0 0 0.75rem;
}
.oj-ortally-partner-title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8fafc;
  margin: 0 0 0.75rem;
}
.oj-ortally-partner-lede {
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 0 1.15rem;
}
.oj-ortally-partner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.55rem;
}
.oj-ortally-partner-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.45;
}
.oj-ortally-partner-list i {
  color: #34d399;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}
.oj-ortally-partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.oj-ortally-partner-card {
  border-radius: 1.5rem;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(155deg, rgba(91, 33, 182, 0.35), rgba(15, 23, 42, 0.9) 45%, rgba(120, 53, 15, 0.35));
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.oj-ortally-partner-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.oj-ortally-partner-mark-o {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #0f172a;
  background: linear-gradient(135deg, #c4b5fd, #fbbf24);
  box-shadow: 0 8px 20px rgba(167, 139, 250, 0.35);
}
.oj-ortally-partner-mark-name {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #f8fafc;
}
.oj-ortally-partner-card-line {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ddd6fe;
}
.oj-ortally-partner-card-sub {
  margin: 0 0 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.45;
}
.oj-ortally-partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.oj-ortally-partner-pills span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: #e9d5ff;
}

/* -- Ortally brand mark (icon + sexy wordmark) -- */
.oj-ot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none !important;
  color: inherit;
  min-width: 0;
  max-width: 100%;
}
a.oj-ot-brand:hover .oj-ot-brand-logo-wrap {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.28), 0 0 0 1px rgba(212, 175, 55, 0.45);
}
a.oj-ot-brand:hover .oj-ot-brand-word {
  filter: brightness(1.08);
}
.oj-ot-brand-logo-wrap {
  flex-shrink: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(251, 191, 36, 0.12);
  background: #0b1220;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  line-height: 0;
}
.oj-ot-brand-logo {
  display: block;
  object-fit: cover;
  width: 2.75rem;
  height: 2.75rem;
}
.oj-ot-brand--sm .oj-ot-brand-logo { width: 2.15rem; height: 2.15rem; }
.oj-ot-brand--sm .oj-ot-brand-logo-wrap { border-radius: 0.65rem; }
.oj-ot-brand--lg .oj-ot-brand-logo { width: 3.35rem; height: 3.35rem; }
.oj-ot-brand--lg .oj-ot-brand-logo-wrap { border-radius: 1rem; }
.oj-ot-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}
.oj-ot-brand-word {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
  /* Ortally dark brand: platinum ? champagne ? gold */
  background: linear-gradient(90deg, #f8fafc 0%, #e8d5a3 48%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.18s ease;
}
.oj-ot-brand--sm .oj-ot-brand-word { font-size: 1.05rem; }
.oj-ot-brand--lg .oj-ot-brand-word { font-size: 1.7rem; }
/* Light surfaces (dashboard cards): black ? gold */
.oj-ot-brand--light .oj-ot-brand-word {
  background: linear-gradient(90deg, #0a0a0a 0%, #c9a227 45%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.oj-ot-brand--light .oj-ot-brand-logo-wrap {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.35);
  background: #fff;
}
.oj-ot-brand-sub {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.oj-ot-brand--light .oj-ot-brand-sub { color: #64748b; }
.oj-ot-brand--sm .oj-ot-brand-sub { font-size: 0.55rem; letter-spacing: 0.1em; }
.oj-ot-brand--lg .oj-ot-brand-sub { font-size: 0.68rem; }

.oj-ortally-partner-brand-row {
  margin: 0 0 0.85rem;
}
.oj-ortally-partner-card-brand {
  margin-bottom: 0.85rem;
}
/* Drop legacy letter-O mark styles if present */
.oj-ortally-partner-mark,
.oj-ortally-partner-mark-o,
.oj-ortally-partner-mark-name,
.oj-ortally-partner-card-line { display: none !important; }

/* -- Live campaign / launch waitlist band -- */
.oj-camp-band {
  padding: 2.75rem 0 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(16, 185, 129, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(56, 189, 248, 0.12), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0c1220 100%);
}
.oj-camp-band--promo {
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(251, 191, 36, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(244, 63, 94, 0.1), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0c1220 100%);
}
.oj-camp-band-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .oj-camp-band-inner {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2rem;
  }
}
.oj-camp-band-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
}
.oj-camp-band--promo .oj-camp-band-kicker { color: #fcd34d; }
.oj-camp-band-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8fafc;
}
.oj-camp-band-lede {
  margin: 0;
  max-width: 32rem;
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.55;
}
.oj-camp-band-tag {
  display: flex;
  justify-content: center;
  align-items: center;
}
.oj-camp-band-tag .oj-price-tag { margin: 0 auto; }
.oj-camp-inline .oj-price-tag { max-width: 20rem; }

/* Homepage hero split: copy + OJ fueling rocket */
.oj-rad-hero--split {
  min-height: min(88vh, 48rem);
  justify-content: center;
}
.oj-rad-hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.oj-rad-hero-layout--split {
  display: grid;
  gap: 1.75rem 2rem;
  align-items: center;
}
/* Left of rocket: readable left-aligned copy — phrases stay together */
.oj-rad-hero-inner--left {
  margin: 0;
  max-width: none;
  width: 100%;
  min-width: 0;
  padding: 0;
  text-align: left;
  display: block;
}
.oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1 {
  /* sized so “Local help.” / “Built properly.” fit as full lines */
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  max-width: none;
  width: auto;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.14;
  overflow: visible;
}
.oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1-a,
.oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1-b {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  overflow: visible;
  padding-bottom: 0.08em;
}
.oj-rad-hero-inner--left .oj-rad-lede {
  max-width: 36rem;
  margin-left: 0;
  margin-right: 0;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  line-height: 1.55;
}
.oj-rad-hero-inner--left .oj-rad-actions {
  justify-content: flex-start;
  width: auto;
}
.oj-rad-hero-inner--left .oj-rad-proof {
  justify-content: flex-start;
  width: auto;
}
.oj-rad-hero-rocket {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.oj-rad-hero-rocket .oj-rocket-wrap,
.oj-rad-hero-rocket .oj-rocket-scene {
  width: min(100%, 20rem);
}
@media (min-width: 960px) {
  /* Give copy the room; rocket is secondary visual */
  .oj-rad-hero-layout--split {
    grid-template-columns: minmax(22rem, 1.55fr) minmax(14rem, 0.65fr);
    gap: 1.75rem 2.5rem;
    align-items: center;
  }
  .oj-rad-hero-inner--left {
    justify-self: start;
    max-width: 42rem;
  }
}
@media (max-width: 959px) {
  .oj-rad-hero-inner--left {
    text-align: center;
    margin: 0 auto;
    max-width: 36rem;
  }
  .oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1 {
    font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  }
  /* nbsp in markup keeps “Local help.” / “Built properly.” together;
     still allow natural wrap of lede body copy */
  .oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1-a,
  .oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1-b {
    white-space: nowrap;
  }
  .oj-rad-hero-inner--left .oj-rad-lede {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
  .oj-rad-hero-inner--left .oj-rad-actions,
  .oj-rad-hero-inner--left .oj-rad-proof {
    justify-content: center;
  }
  .oj-rad-hero-rocket {
    order: -1;
    margin: 0 auto;
  }
  .oj-rad-hero--split {
    padding-top: 3.5rem;
  }
}
@media (max-width: 639px) {
  /* Override generic mobile h1 word-break that was splitting “Local / help.” */
  .oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.35rem);
    word-break: normal;
    overflow-wrap: normal;
  }
  .oj-rad-hero--split .oj-rad-hero-inner--left .oj-rad-lede {
    max-width: none;
    font-size: 0.98rem;
  }
}
