/* ==========================================================================
   OneBestHost — design system
   Palette derived from the logo: brand blue, sky, signal green.
   Single stylesheet, no framework, no build step.
   ========================================================================== */

/* --- 1. TOKENS -----------------------------------------------------------
   LIGHT IS THE DEFAULT THEME. :root below is light. Dark is an override that
   applies only when <html data-theme="dark"> is set from the visitor's saved
   choice (inline script in header.php, toggle in assets/js/main.js).

   The system preference is deliberately NOT followed: every first-time
   visitor gets light, per the brief.

   Every colour below section 1 resolves through one of these semantic tokens.
   Nothing after this block should contain a raw colour value — that is what
   keeps two themes maintainable instead of a pile of overrides.
   -------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:           #ffffff;
  --bg-alt:       #f4f7fc;
  --bg-deep:      #eef3fb;
  --header-bg:    rgba(255, 255, 255, .88);

  --surface-a:    #ffffff;              /* card gradient, top     */
  --surface-b:    #f3f7fd;              /* card gradient, bottom  */
  --surface:      #f8fbff;              /* flat card              */
  --surface-0:    rgba(248, 251, 255, 0); /* transparent twin of --surface */
  --surface-2:    #eef4fc;              /* inset panels           */
  --surface-code: #edf2fa;              /* monospace block        */

  /* Type */
  --ink:          #0a1533;              /* headings, strong       */
  --text:         #3a4762;              /* body copy              */
  --muted:        #57647f;
  --muted-dk:     #5b6880;

  /* Lines */
  --line:         rgba(14, 38, 84, .15);
  --line-soft:    rgba(14, 38, 84, .08);

  /* Brand. The blue is the logo blue wherever it is used as a fill; the link
     and accent tones are darkened in light mode to clear 4.5:1 on white. */
  --brand:        #1573ff;
  --brand-3:      #2b8bff;
  --accent:       #0a7fc4;
  --link:         #0b5fd0;
  --link-hover:   #08429b;
  --brand-ink:    #0b4ea8;              /* brand-coloured text on a tint */
  --on-brand:     #ffffff;              /* text on a brand fill   */
  /* Primary button gradient. Both stops are dark enough that white label
     text clears 4.5:1 along the whole sweep (6.5:1 → 5.3:1). The lighter
     brand blue (#1573ff) only reaches 4.26:1 and fails at 15px. */
  --btn-a:        #0b57c9;              /* primary button, start  */
  --btn-b:        #0f66e0;              /* primary button, end    */

  --tint-1:       rgba(21, 115, 255, .05);
  --tint-2:       rgba(21, 115, 255, .09);
  --tint-3:       rgba(21, 115, 255, .15);
  --b1:           rgba(21, 115, 255, .20);
  --b2:           rgba(21, 115, 255, .34);
  --b3:           rgba(21, 115, 255, .55);

  /* Signal green */
  --ok:           #12a038;
  --ok-2:         #0e8c30;
  --ok-ink:       #0c7628;
  --ok-tint:      rgba(18, 160, 56, .10);
  --ok-border:    rgba(18, 160, 56, .28);

  --warn-tint:    rgba(176, 108, 0, .08);
  --warn-border:  rgba(176, 108, 0, .30);

  /* Atmosphere */
  --wash-1:       rgba(21, 115, 255, .10);
  --wash-2:       rgba(56, 182, 255, .09);
  --wash-3:       rgba(18, 160, 56, .07);
  --grid-line:    rgba(14, 38, 84, .055);

  --shadow:       0 18px 44px -26px rgba(10, 30, 70, .30);
  --glow:         0 0 0 1px rgba(21, 115, 255, .28), 0 18px 44px -22px rgba(21, 115, 255, .35);

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 860px;
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --header-h: 74px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg:           #050b1e;
  --bg-alt:       #0a1230;
  --bg-deep:      #070f28;
  --header-bg:    rgba(5, 11, 30, .86);

  --surface-a:    rgba(255, 255, 255, .045);
  --surface-b:    rgba(255, 255, 255, .012);
  --surface:      rgba(255, 255, 255, .03);
  --surface-0:    rgba(255, 255, 255, 0);
  --surface-2:    rgba(255, 255, 255, .055);
  --surface-code: rgba(0, 0, 0, .35);

  --ink:          #ffffff;
  --text:         #c3cfe6;
  --muted:        #99a9c8;
  --muted-dk:     #8593b3;

  --line:         rgba(126, 160, 224, .16);
  --line-soft:    rgba(126, 160, 224, .09);

  --brand:        #1573ff;
  --brand-3:      #2b8bff;
  --accent:       #38b6ff;
  --link:         #38b6ff;
  --link-hover:   #7fd0ff;
  --brand-ink:    #cfe4ff;
  --on-brand:     #ffffff;
  --btn-a:        #0b57c9;              /* same sweep in dark: white needs   */
  --btn-b:        #0f66e0;              /* 4.5:1 regardless of page ground   */

  --tint-1:       rgba(21, 115, 255, .08);
  --tint-2:       rgba(21, 115, 255, .13);
  --tint-3:       rgba(21, 115, 255, .20);
  --b1:           rgba(21, 115, 255, .24);
  --b2:           rgba(21, 115, 255, .42);
  --b3:           rgba(56, 182, 255, .55);

  --ok:           #2fce4a;
  --ok-2:         #1f9c35;
  --ok-ink:       #9dffb0;
  --ok-tint:      rgba(47, 206, 74, .12);
  --ok-border:    rgba(47, 206, 74, .30);

  --warn-tint:    rgba(255, 176, 32, .07);
  --warn-border:  rgba(255, 176, 32, .30);

  --wash-1:       rgba(21, 115, 255, .24);
  --wash-2:       rgba(56, 182, 255, .13);
  --wash-3:       rgba(47, 206, 74, .10);
  --grid-line:    rgba(126, 160, 224, .05);

  --shadow:       0 24px 60px -28px rgba(0, 6, 24, .9);
  --glow:         0 0 0 1px rgba(21, 115, 255, .35), 0 18px 48px -18px rgba(21, 115, 255, .55);

  color-scheme: dark;
}

/* --- 2. RESET ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;            /* belt-and-braces against horizontal scroll */
}

img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1rem + .4vw, 1.35rem); }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
strong { color: var(--ink); font-weight: 650; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.obh-skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--btn-a); color: var(--on-brand); padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.obh-skip:focus { left: 0; }

/* Visually hidden but available to screen readers (table captions, labels). */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  position: static !important; width: auto; height: auto;
  clip: auto; clip-path: none; margin: 0;
}

/* --- 2b. OVERFLOW GUARDS -------------------------------------------------
   Long unbreakable strings (email addresses, URLs, product codes) must wrap
   rather than push the page wider than the viewport. min-width:0 is the
   standard fix for grid/flex children, whose default `auto` minimum size
   refuses to shrink below their content.
   ---------------------------------------------------------------------- */
body { overflow-wrap: break-word; }
a, p, li, td, th, h1, h2, h3, h4, strong, span, dd, summary { overflow-wrap: anywhere; }
.obh-grid > *, .obh-pricing > *, .obh-chan > *, .obh-oneoff > *,
.obh-strip > *, .obh-usecase > *, .obh-demo > *, .obh-flow__step,
.obh-split > *, .obh-hero__grid > *, .obh-foot__top > *,
.obh-mega__cols > *, .obh-related ul > * { min-width: 0; }
.obh-flow__body, .obh-card, .obh-chan a, .obh-chan div { min-width: 0; }

/* --- 3. LAYOUT ---------------------------------------------------------- */
.obh-wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
@media (max-width: 480px) { .obh-wrap { width: min(var(--wrap), 100% - 28px); } }

.obh-section { padding: clamp(3.25rem, 2rem + 5vw, 6rem) 0; position: relative; }
.obh-section--dark  { background: var(--bg); }
.obh-section--panel { background: var(--bg-alt); }
.obh-section--deep  {
  background:
    radial-gradient(900px 420px at 12% 0%, var(--wash-1), transparent 62%),
    radial-gradient(800px 400px at 90% 100%, var(--wash-2), transparent 60%),
    var(--bg-deep);
}
.obh-section + .obh-section--dark { border-top: 1px solid var(--line-soft); }

/* --- 4. SECTION HEADINGS ------------------------------------------------ */
.obh-secthead { max-width: 760px; margin: 0 auto clamp(2rem, 1rem + 3vw, 3.25rem); }
.obh-secthead--left   { margin-inline: 0; text-align: left; }
.obh-secthead--center { text-align: center; }
.obh-eyebrow {
  display: inline-block; margin: 0 0 .7rem; padding: .3rem .8rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-ink); background: var(--tint-2);
  border: 1px solid var(--b1); border-radius: 100px;
}
.obh-secttitle { margin-bottom: .45em; }
.obh-sectlede { font-size: clamp(1rem, .96rem + .25vw, 1.14rem); color: var(--muted); margin: 0; }

/* --- 5. BUTTONS --------------------------------------------------------- */
.obh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; margin: 0 .5rem .6rem 0;
  font: inherit; font-weight: 650; font-size: .95rem; line-height: 1.2;
  border-radius: 100px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap; text-align: center;
}
.obh-btn:last-child { margin-right: 0; }
.obh-btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.obh-btn--primary {
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  color: var(--on-brand); box-shadow: 0 12px 30px -16px var(--b3);
}
.obh-btn--primary:hover { color: var(--on-brand); transform: translateY(-1px); box-shadow: 0 18px 38px -16px var(--b3); }
.obh-btn--green { background: linear-gradient(135deg, var(--ok-2), var(--ok)); color: var(--on-brand); }
.obh-btn--green:hover { color: var(--on-brand); transform: translateY(-1px); }
.obh-btn--secondary { background: var(--tint-2); color: var(--brand-ink); border-color: var(--b2); }
.obh-btn--secondary:hover { background: var(--tint-3); color: var(--link-hover); border-color: var(--b3); }
.obh-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.obh-btn--ghost:hover { border-color: var(--b2); background: var(--tint-1); color: var(--ink); }

/* --- 6. HEADER + MEGA MENU ----------------------------------------------
   The frosted-glass backdrop lives on a pseudo-element, NOT on .obh-header.
   backdrop-filter (like filter and transform) turns an element into a
   containing block for position:fixed descendants — putting it on the header
   itself collapsed the fixed mobile drawer to the height of the header.
   ---------------------------------------------------------------------- */
.obh-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
}
.obh-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--header-bg);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
}
.obh-header__inner { display: flex; align-items: center; gap: 1.1rem; min-height: var(--header-h); }
.obh-brand { flex: 0 0 auto; display: block; }
.obh-brand__img { width: auto; height: 38px; }

/* Two logo files, swapped by CSS so the correct one is right on first paint.
   The supplied artwork renders "One" in near-black — legible on white,
   invisible on navy — so the -light file remaps only those pixels. */
.obh-brand__img--on-dark { display: none; }
[data-theme="dark"] .obh-brand__img--on-light { display: none; }
[data-theme="dark"] .obh-brand__img--on-dark  { display: block; }

/* THE DROPDOWN STABILITY FIX, part 1 of 3 --------------------------------
   The nav item is stretched to the full header height so its box ends exactly
   where the panel begins. Previously the item was only as tall as its button,
   leaving ~17px of dead header between them: moving the pointer down crossed
   that gap, fired mouseleave on the item, and the menu vanished mid-travel.
   ---------------------------------------------------------------------- */
.obh-nav { margin-left: auto; align-self: stretch; }
.obh-nav__list { display: flex; align-items: stretch; height: 100%; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.obh-nav__item { position: static; display: flex; align-items: center; }
.obh-nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .7rem; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 560; color: var(--text);
  background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: color .15s ease, background-color .15s ease;
}
.obh-nav__link:hover,
.obh-nav__item--mega:hover > .obh-nav__link,
.obh-nav__item--open > .obh-nav__link { color: var(--ink); background: var(--tint-2); }
.obh-nav__link[aria-current="page"] { color: var(--ink); }
.obh-nav__toggle .obh-i { transition: transform .2s ease; opacity: .65; }
.obh-nav__item--mega:hover .obh-nav__toggle .obh-i,
.obh-nav__item--open .obh-nav__toggle .obh-i { transform: rotate(180deg); }

.obh-mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--bg-alt); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  /* Hidden by visibility rather than display so open/close can animate and so
     a plain :hover rule can drive it even before JavaScript runs. */
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

/* THE FIX, part 2 of 3: a hover bridge.
   A 14px invisible strip above the panel keeps the pointer "inside" the menu
   across any sub-pixel seam between the header and the panel. It sits over the
   bottom of the header only, well below the nav links, so it blocks nothing. */
.obh-mega::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 14px;
}

.obh-mega__inner {
  width: min(var(--wrap), 100% - 40px); margin-inline: auto;
  display: grid; grid-template-columns: minmax(220px, .85fr) 3fr; gap: 2rem;
  padding: 1.8rem 0 2.1rem;
}
.obh-mega--nofeature .obh-mega__inner { grid-template-columns: 1fr; }
.obh-mega__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem 2rem; }
.obh-mega__heading {
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted-dk); font-weight: 700; margin: 0 0 .7rem;
}
.obh-mega__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.obh-mega__col a {
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem .6rem; border-radius: var(--r-sm);
  color: var(--text); transition: background-color .15s ease, color .15s ease;
}
.obh-mega__col a:hover { background: var(--tint-2); color: var(--ink); }
.obh-mega__ico {
  flex: 0 0 auto; display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 9px; background: var(--tint-3); color: var(--accent);
  border: 1px solid var(--b1);
}
.obh-mega__label { display: block; font-weight: 600; font-size: .93rem; color: var(--ink); }

.obh-mega__feature {
  display: block; padding: 1.25rem; border-radius: var(--r);
  background: linear-gradient(160deg, var(--tint-3), var(--tint-1));
  border: 1px solid var(--b1); color: var(--text);
  transition: border-color .15s ease;
}
.obh-mega__feature:hover { border-color: var(--b3); }
.obh-mega__feature-eyebrow {
  display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-ink); font-weight: 700; margin-bottom: .5rem;
}
.obh-mega__feature-title { display: block; font-weight: 700; color: var(--ink); font-size: 1.05rem; margin-bottom: .4rem; line-height: 1.3; }
.obh-mega__feature-text { display: block; font-size: .84rem; color: var(--muted); margin-bottom: .8rem; }
.obh-mega__feature-more { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 600; color: var(--link); }

/* THE FIX, part 3 of 3: open on hover and on focus, in CSS.
   Driving the panel from :hover means there is no JavaScript timer that can
   close it while the pointer is still travelling. JavaScript adds
   .obh-nav__item--open for click, tap and keyboard, and manages ARIA. */
@media (min-width: 1081px) {
  /* Deliberately NOT :focus-within. Opening a panel merely by focusing its
     trigger drags the tab order through every link inside it — 28 presses to
     reach the theme toggle in testing. Keyboard users open a panel on purpose
     with Enter or Space (JS adds --open) and close it with Escape, which is
     the standard disclosure pattern and keeps the tab order short. */
  .obh-nav__item--mega:hover > .obh-mega,
  .obh-nav__item--open > .obh-mega {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
  }
}

.obh-header__actions { display: flex; align-items: center; gap: .5rem; flex: 0 0 auto; }
.obh-header__actions .obh-btn { margin: 0; }
.obh-header__mobilebar { display: none; align-items: center; gap: .5rem; margin-left: auto; flex: 0 0 auto; }

/* The drawer's Get Started / Client Login pair belongs to the mobile menu only —
   on desktop the same two buttons live in .obh-header__actions. */
.obh-nav__mobile-cta { display: none; }

/* --- 6b. THEME TOGGLE --------------------------------------------------- */
.obh-themetoggle {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 40px; height: 40px; padding: 0;
  border-radius: 100px; border: 1px solid var(--line);
  background: transparent; color: var(--text); cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}
.obh-themetoggle:hover { color: var(--ink); border-color: var(--b2); background: var(--tint-1); }
.obh-themetoggle__ico { display: grid; place-items: center; grid-area: 1 / 1; }
.obh-themetoggle__ico--moon { display: none; }
[data-theme="dark"] .obh-themetoggle__ico--sun  { display: none; }
[data-theme="dark"] .obh-themetoggle__ico--moon { display: grid; }

.obh-burger {
  display: none; width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer;
}
.obh-burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.obh-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.obh-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.obh-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- 7. BREADCRUMBS ----------------------------------------------------- */
.obh-crumbs { background: var(--bg-deep); border-bottom: 1px solid var(--line-soft); font-size: .82rem; }
.obh-crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: .75rem 0; }
.obh-crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--muted-dk); }
.obh-crumbs a { color: var(--muted); }
.obh-crumbs a:hover { color: var(--link); }
.obh-crumbs span { color: var(--text); }

/* --- 8. HERO ------------------------------------------------------------ */
.obh-hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 1.5rem + 6vw, 5.75rem) 0 clamp(3rem, 1.5rem + 5vw, 5rem);
  background:
    radial-gradient(1100px 520px at 8% -8%, var(--wash-1), transparent 60%),
    radial-gradient(900px 480px at 96% 8%, var(--wash-2), transparent 58%),
    linear-gradient(180deg, var(--bg-deep), var(--bg));
}
.obh-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 500px at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(900px 500px at 50% 0%, #000 20%, transparent 78%);
}
.obh-hero > * { position: relative; z-index: 1; }
.obh-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: center; }
.obh-hero--solo .obh-hero__grid { grid-template-columns: 1fr; max-width: var(--wrap-narrow); }
.obh-hero__lede { font-size: clamp(1.02rem, .96rem + .4vw, 1.2rem); color: var(--muted); max-width: 62ch; }
.obh-hero__cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .1rem; }
.obh-hero__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.obh-hero__meta span { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--muted); }
.obh-hero__meta .obh-i { color: var(--ok); flex: 0 0 auto; }

/* --- 9. FIGURES / SCREENSHOTS ------------------------------------------- */
.obh-figure { margin: 0; }
.obh-figure picture, .obh-figure img { border-radius: var(--r); }
.obh-figure img { border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-alt); }
.obh-figure figcaption { margin-top: .7rem; font-size: .8rem; color: var(--muted-dk); text-align: center; }
.obh-shot--plain img { border-radius: var(--r); }
.obh-shot--tilt img { transform: perspective(1600px) rotateY(-4deg); }
@media (max-width: 780px) { .obh-shot--tilt img { transform: none; } }

/* --- 10. GRIDS & CARDS -------------------------------------------------- */
.obh-grid { display: grid; gap: 1.1rem; }
.obh-grid--1 { grid-template-columns: 1fr; }
.obh-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.obh-grid--3 { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.obh-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.obh-card {
  position: relative; padding: 1.5rem 1.4rem; border-radius: var(--r);
  background: linear-gradient(165deg, var(--surface-a), var(--surface-b));
  border: 1px solid var(--line); color: var(--text);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
a.obh-card:hover { border-color: var(--b3); transform: translateY(-3px); color: var(--text); box-shadow: var(--shadow); }
.obh-card__icon {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 1rem;
  border-radius: 12px; color: var(--accent);
  background: var(--tint-3); border: 1px solid var(--b1);
}
.obh-card__title { font-size: 1.06rem; margin-bottom: .4rem; }
.obh-card__text { font-size: .9rem; color: var(--muted); margin: 0; }
.obh-card__more { position: absolute; right: 1.2rem; bottom: 1.2rem; color: var(--link); opacity: .55; }
a.obh-card:hover .obh-card__more { opacity: 1; }

/* --- 11. CATEGORY STRIP ------------------------------------------------- */
.obh-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: .7rem; }
.obh-strip a {
  display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center;
  padding: 1.15rem .8rem; border-radius: var(--r); color: var(--text);
  background: var(--surface); border: 1px solid var(--line);
  font-size: .86rem; font-weight: 600; transition: border-color .18s, background-color .18s, transform .18s, color .18s;
}
.obh-strip a:hover { border-color: var(--b3); background: var(--tint-2); transform: translateY(-2px); color: var(--ink); }
.obh-strip .obh-i { color: var(--accent); }

/* --- 12. SPLIT (text + screenshot) --------------------------------------
   Columns align at the top by default: two text columns of unequal length
   look broken when vertically centred. Add --center for a short caption
   beside a tall image. */
.obh-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); align-items: start; }
.obh-split--center { align-items: center; }
.obh-split--wide-img { grid-template-columns: .9fr 1.1fr; }
.obh-split--wide-txt { grid-template-columns: 1.1fr .9fr; }
.obh-split--flip > :first-child { order: 2; }
.obh-split + .obh-split { margin-top: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.obh-split h2, .obh-split h3 { margin-top: 0; }

/* --- 13. CHECK LISTS ---------------------------------------------------- */
.obh-checks { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: .6rem; }
.obh-checks--2col { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); column-gap: 1.5rem; }
.obh-checks li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; }
.obh-checks .obh-i { color: var(--ok); flex: 0 0 auto; margin-top: .28rem; }

/* --- 14. PRICING -------------------------------------------------------- */
.obh-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1.15rem; align-items: start; }
.obh-plan {
  position: relative; display: flex; flex-direction: column; height: 100%;
  padding: 1.7rem 1.5rem; border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--surface-a), var(--surface-b));
  border: 1px solid var(--line);
}
.obh-plan--featured {
  border-color: var(--b3);
  background: linear-gradient(170deg, var(--tint-3), var(--tint-1));
  box-shadow: var(--glow);
}
.obh-plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: .28rem .85rem; border-radius: 100px; white-space: nowrap;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b)); color: var(--on-brand);
}
.obh-plan__name { font-size: 1.1rem; margin-bottom: .15rem; }
.obh-plan__spec { font-size: .84rem; color: var(--muted); margin: 0 0 1.1rem; }
.obh-plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem; margin-bottom: .1rem; }
.obh-plan__amount { font-size: clamp(2.1rem, 1.7rem + 1.4vw, 2.75rem); font-weight: 750; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.obh-plan__per { font-size: .85rem; color: var(--muted); }
.obh-plan__promo-tag {
  /* The card is a flex column, which stretches children — pin the pill to its
     own width so it reads as a tag rather than a full-width bar. */
  display: inline-block; align-self: flex-start;
  margin-bottom: .8rem; padding: .18rem .55rem; border-radius: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ok-ink); background: var(--ok-tint); border: 1px solid var(--ok-border);
}
.obh-plan__renew {
  margin: 0 0 1.2rem; padding: .55rem .7rem; border-radius: 9px;
  font-size: .8rem; color: var(--text);
  background: var(--surface-2); border: 1px dashed var(--line);
}
.obh-plan__renew strong { color: var(--ink); }
.obh-plan__specs { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .35rem; font-size: .87rem; }
.obh-plan__specs li { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px solid var(--line-soft); }
.obh-plan__specs li:last-child { border-bottom: 0; }
.obh-plan__specs span:first-child { color: var(--muted); }
.obh-plan__specs span:last-child { color: var(--ink); font-weight: 600; }
.obh-plan__blurb { font-size: .85rem; color: var(--muted); margin: 0 0 1.2rem; }
.obh-plan .obh-btn { width: 100%; margin: auto 0 0; }
.obh-plan__foot { margin-top: auto; padding-top: .4rem; }

.obh-pricenote {
  margin: 1.5rem auto 0; max-width: 660px; text-align: center;
  font-size: .82rem; color: var(--muted); line-height: 1.6;
}

/* One-time software price cards */
.obh-oneoff { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.obh-oneoff__card {
  display: flex; flex-direction: column; padding: 1.5rem 1.4rem; border-radius: var(--r);
  background: linear-gradient(165deg, var(--surface-a), var(--surface-b));
  border: 1px solid var(--line); transition: border-color .18s, transform .18s, box-shadow .18s;
}
.obh-oneoff__card:hover { border-color: var(--b3); transform: translateY(-2px); box-shadow: var(--shadow); }
.obh-oneoff__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; margin-bottom: .9rem;
  color: var(--accent); background: var(--tint-3); border: 1px solid var(--b1); }
.obh-oneoff__name { font-size: 1.02rem; margin-bottom: .35rem; }
.obh-oneoff__text { font-size: .87rem; color: var(--muted); margin: 0 0 1.1rem; }
.obh-oneoff__price { margin-top: auto; display: flex; align-items: baseline; gap: .4rem; margin-bottom: .9rem; flex-wrap: wrap; }
.obh-oneoff__amount { font-size: 1.7rem; font-weight: 750; color: var(--ink); letter-spacing: -.02em; }
.obh-oneoff__note { font-size: .78rem; color: var(--muted); }
.obh-oneoff__card .obh-btn { width: 100%; margin: 0; }

/* Hero price tag (product pages) */
.obh-pricetag {
  display: inline-flex; align-items: baseline; gap: .55rem; flex-wrap: wrap;
  padding: .8rem 1.2rem; margin: 0 0 1.3rem; border-radius: var(--r);
  background: linear-gradient(135deg, var(--tint-3), var(--tint-1));
  border: 1px solid var(--b2);
}
.obh-pricetag__amount { font-size: 1.9rem; font-weight: 750; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.obh-pricetag__note { font-size: .85rem; color: var(--text); }

/* --- 15. WORKFLOW ------------------------------------------------------- */
.obh-flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: flow; }
.obh-flow--row { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.obh-flow__step {
  position: relative; display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.3rem; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
}
.obh-flow--row .obh-flow__step { flex-direction: column; gap: .8rem; }
.obh-flow__num {
  flex: 0 0 auto; display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; font-size: .88rem; font-weight: 700; color: var(--on-brand);
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
}
.obh-flow__title { font-size: 1rem; margin: 0 0 .3rem; }
.obh-flow__text { font-size: .875rem; color: var(--muted); margin: 0; }

/* Arrow chain between numbered steps on wide screens */
@media (min-width: 900px) {
  .obh-flow--row .obh-flow__step::after {
    content: ""; position: absolute; right: -13px; top: 32px; width: 12px; height: 2px;
    background: linear-gradient(90deg, var(--b3), transparent);
  }
  .obh-flow--row .obh-flow__step:last-child::after { display: none; }
}

/* --- 16. FAQ ------------------------------------------------------------ */
.obh-faq { max-width: 860px; margin-inline: auto; display: grid; gap: .65rem; }
.obh-faq__item {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
}
.obh-faq__item[open] { border-color: var(--b2); background: var(--tint-1); }
.obh-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem; cursor: pointer; list-style: none;
  font-weight: 600; color: var(--ink); font-size: 1rem;
}
.obh-faq__q::-webkit-details-marker { display: none; }
.obh-faq__q::after {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; margin-right: 4px;
  border-right: 2px solid var(--link); border-bottom: 2px solid var(--link);
  transform: rotate(45deg); transition: transform .2s ease;
}
.obh-faq__item[open] .obh-faq__q::after { transform: rotate(-135deg); }
.obh-faq__a { padding: 0 1.25rem 1.2rem; font-size: .93rem; color: var(--muted); }
.obh-faq__a p:last-child { margin-bottom: 0; }
.obh-faq__group { margin-bottom: 2.5rem; }
.obh-faq__grouptitle { font-size: 1.2rem; margin-bottom: 1rem; }

/* --- 17. CTA BAND ------------------------------------------------------- */
.obh-cta {
  padding: clamp(3rem, 2rem + 4vw, 4.75rem) 0;
  background:
    radial-gradient(800px 380px at 20% 0%, var(--wash-1), transparent 62%),
    radial-gradient(700px 360px at 85% 100%, var(--wash-3), transparent 60%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
}
.obh-cta__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.obh-cta__inner h2 { margin-bottom: .5rem; }
.obh-cta__inner p { color: var(--muted); font-size: 1.04rem; }
.obh-cta__btns { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .1rem; }
.obh-cta__chans { margin-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; font-size: .87rem; }
.obh-cta__chans a { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); max-width: 100%; overflow-wrap: anywhere; }
.obh-cta__chans a:hover { color: var(--link); }
.obh-cta__note { color: var(--muted); }

/* --- 18. RELATED LINKS -------------------------------------------------- */
.obh-related { margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.obh-related__title { font-size: 1.15rem; margin-bottom: 1rem; }
.obh-related ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .5rem; }
.obh-related a {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .7rem .95rem; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text); font-size: .9rem; font-weight: 550;
}
.obh-related a:hover { border-color: var(--b3); color: var(--ink); background: var(--tint-2); }
.obh-related .obh-i { color: var(--link); flex: 0 0 auto; }

/* --- 19. PROSE (page body copy) ----------------------------------------- */
.obh-prose { max-width: 74ch; }
.obh-prose--wide { max-width: 100%; }
.obh-prose h2 { margin-top: 2.4rem; }
.obh-prose h3 { margin-top: 1.8rem; }
.obh-prose > :first-child { margin-top: 0; }
.obh-prose ul li, .obh-prose ol li { margin-bottom: .4rem; }
.obh-prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* Callout */
.obh-note {
  padding: 1.1rem 1.25rem; border-radius: var(--r); margin: 1.6rem 0;
  background: var(--tint-2); border: 1px solid var(--b1);
  font-size: .92rem;
}
.obh-note p:last-child { margin-bottom: 0; }
.obh-note--warn { background: var(--warn-tint); border-color: var(--warn-border); }

/* Spec table — scrolls inside its own container, never widens the page.
   The edge fade tells a phone user the table continues sideways. */
.obh-tablewrap {
  overflow-x: auto; margin: 1.6rem 0; -webkit-overflow-scrolling: touch;
  border-radius: var(--r); border: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--surface) 30%, var(--surface-0)) left / 28px 100% no-repeat,
    linear-gradient(90deg, var(--surface-0), var(--surface) 70%) right / 28px 100% no-repeat,
    radial-gradient(farthest-side at 0 50%, var(--line), transparent) left / 14px 100% no-repeat,
    radial-gradient(farthest-side at 100% 50%, var(--line), transparent) right / 14px 100% no-repeat;
  background-attachment: local, local, scroll, scroll;
}
.obh-tablewrap:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.obh-tablehint {
  display: none; margin: -1.1rem 0 1.6rem; font-size: .78rem; color: var(--muted-dk);
}
@media (max-width: 700px) { .obh-tablehint { display: block; } }
.obh-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: .9rem; }
.obh-table th, .obh-table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.obh-table th { color: var(--ink); font-weight: 650; background: var(--surface-2); white-space: nowrap; }
.obh-table td { color: var(--text); }
.obh-table tr:last-child td { border-bottom: 0; }

/* --- 20. SUPPORT / CONTACT ---------------------------------------------- */
.obh-chan { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 1rem; }
.obh-chan a, .obh-chan div {
  display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem;
  border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
  color: var(--text);
}
.obh-chan a:hover { border-color: var(--b3); background: var(--tint-2); }
.obh-chan .obh-i { color: var(--accent); }
.obh-chan strong { display: block; color: var(--ink); overflow-wrap: anywhere; hyphens: none; }
.obh-chan span { font-size: .85rem; color: var(--muted); }

/* --- 21. DEMO ----------------------------------------------------------- */
.obh-demo { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.obh-demo__card { display: flex; flex-direction: column; padding: 1.5rem; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); }
.obh-demo__card figure { margin: 0 0 1.1rem; }
.obh-demo__card .obh-btn { margin-top: auto; width: 100%; }
.obh-creds {
  margin: 1rem 0 0; padding: .85rem 1rem; border-radius: var(--r-sm);
  background: var(--surface-code); border: 1px dashed var(--line);
  font-family: var(--mono); font-size: .82rem; color: var(--text);
}
.obh-creds dt { color: var(--muted-dk); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.obh-creds dd { margin: 0 0 .5rem; color: var(--ink); }
.obh-creds dd:last-child { margin-bottom: 0; }

/* --- 22. USE CASES ------------------------------------------------------ */
.obh-usecase { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.obh-usecase__card { padding: 1.5rem 1.4rem; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.obh-usecase__who { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: .8rem; }
.obh-usecase__card h3 { font-size: 1.02rem; }
.obh-usecase__card p { font-size: .89rem; color: var(--muted); margin-bottom: .8rem; }
.obh-usecase__stack { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.obh-usecase__stack li { font-size: .74rem; padding: .22rem .6rem; border-radius: 100px;
  background: var(--tint-2); border: 1px solid var(--b1); color: var(--brand-ink); }

/* --- 23. FOOTER --------------------------------------------------------- */
.obh-footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(2.75rem, 2rem + 3vw, 4rem) 0 2rem; font-size: .9rem; }
.obh-foot__top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; }
.obh-foot__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.obh-foot__blurb { color: var(--muted); font-size: .88rem; max-width: 34ch; }
.obh-foot__contact { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .55rem; }
.obh-foot__contact li { display: flex; align-items: center; gap: .55rem; }
.obh-foot__contact a { color: var(--text); font-size: .87rem; overflow-wrap: anywhere; min-width: 0; }
.obh-foot__contact a:hover { color: var(--link); }
.obh-foot__contact .obh-i { color: var(--accent); flex: 0 0 auto; }
.obh-foot__heading { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: .9rem; }
.obh-foot__heading--gap { margin-top: 1.8rem; }
.obh-foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.obh-foot__list a { color: var(--muted); font-size: .87rem; }
.obh-foot__list a:hover { color: var(--link); }
.obh-foot__portal { margin-top: 1.4rem; }
.obh-foot__portal a { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem;
  border-radius: 100px; border: 1px solid var(--line); color: var(--text); font-size: .85rem; }
.obh-foot__portal a:hover { border-color: var(--b3); color: var(--ink); }
.obh-foot__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.obh-foot__copy { margin: 0; color: var(--muted); font-size: .85rem; }
.obh-foot__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.obh-foot__legal a { color: var(--muted); font-size: .85rem; }
.obh-foot__legal a:hover { color: var(--link); }
.obh-foot__disclosure { margin: 1.2rem 0 0; font-size: .78rem; color: var(--muted-dk); line-height: 1.6; }

/* --- 24. 404 & SEARCH --------------------------------------------------- */
.obh-404 { text-align: center; padding: clamp(3.5rem, 2rem + 6vw, 6rem) 0; }
.obh-404__code { font-size: clamp(4rem, 3rem + 6vw, 7rem); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b)); -webkit-background-clip: text;
  background-clip: text; color: transparent; margin-bottom: .5rem; }
.obh-404 p { color: var(--muted); }
.obh-searchresults { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.obh-searchform input { padding: .7rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--surface); color: var(--text); font: inherit; }
.obh-searchform button { padding: .7rem 1.2rem; border-radius: var(--r-sm); border: 0;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b)); color: var(--on-brand); font: inherit; font-weight: 650; cursor: pointer; }

/* --- 25. RESPONSIVE ----------------------------------------------------- */
@media (max-width: 1080px) {
  .obh-foot__top { grid-template-columns: 1fr 1fr 1fr; }
  .obh-foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 1000px) {
  .obh-hero__grid { grid-template-columns: 1fr; }
  .obh-hero__media { order: -1; }
  .obh-split, .obh-split--wide-img, .obh-split--wide-txt { grid-template-columns: 1fr; }
  .obh-split--flip > :first-child { order: 0; }
}

/* Mobile navigation: the mega menu becomes an accordion drawer.
   The breakpoint is 1080px because the bar carries seven items plus the theme
   toggle and two portal buttons — below that they no longer fit honestly, and
   a cramped bar is worse than a drawer. */
@media (max-width: 1080px) {
  .obh-header__mobilebar { display: flex; }
  .obh-burger { display: block; }
  .obh-header__actions { display: none; }
  .obh-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    height: auto; margin: 0; z-index: 99;
    background: var(--bg); overflow-y: auto; overscroll-behavior: contain;
    padding: 1rem 0 3rem; display: none;
  }
  .obh-nav.is-open { display: block; }
  body.obh-nav-open { overflow: hidden; }
  .obh-nav__list { flex-direction: column; align-items: stretch; height: auto; gap: 0;
    width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
  .obh-nav__item { display: block; border-bottom: 1px solid var(--line-soft); }
  .obh-nav__link { width: 100%; justify-content: space-between; padding: 1rem .25rem; font-size: 1rem; border-radius: 0; }
  .obh-nav__item--mega:hover > .obh-nav__link { background: none; color: var(--text); }

  /* On touch the panel collapses with display so it takes no space, and only
     the JS-applied class opens it — :hover must not apply on a touchscreen. */
  .obh-mega {
    position: static; background: transparent; border: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; transition: none;
    display: none;
  }
  .obh-mega::before { display: none; }
  .obh-nav__item--open > .obh-mega { display: block; }
  .obh-mega__inner { width: 100%; grid-template-columns: 1fr; gap: 1.25rem; padding: 0 0 1.25rem; }
  .obh-mega__cols { grid-template-columns: 1fr; gap: 1.25rem; }
  .obh-mega__feature { order: 2; }
  .obh-nav .obh-nav__mobile-cta { display: flex; width: min(var(--wrap), 100% - 40px); margin: 1.5rem auto 0; flex-direction: column; gap: .6rem; }
  .obh-nav .obh-nav__mobile-cta .obh-btn { width: 100%; margin: 0; }
}

@media (max-width: 640px) {
  .obh-foot__top { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .obh-hero__cta .obh-btn, .obh-cta__btns .obh-btn { width: 100%; margin-right: 0; }
  .obh-plan { padding: 1.5rem 1.25rem; }
  .obh-flow__step { padding: 1.1rem; }
}

@media (max-width: 400px) {
  .obh-foot__top { grid-template-columns: 1fr; }
  .obh-brand__img { height: 32px; }
  .obh-strip { grid-template-columns: 1fr 1fr; }
}

/* --- 26. PRINT ---------------------------------------------------------- */
@media print {
  .obh-header, .obh-footer, .obh-cta, .obh-crumbs, .obh-related, .obh-themetoggle { display: none; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}
