/* ==========================================================================
   ORVYNEX POS — Public Marketing Website
   ==========================================================================

   Scoped entirely under .ov-site so nothing here can reach the authenticated
   dashboard's stylesheet, and vice versa. The two are loaded on disjoint pages;
   the scope is belt-and-braces so a future shared partial cannot cross-contaminate.

   Served from public/ and linked with asset(), matching how the application's
   existing app.css is loaded. No build step is required.
   ========================================================================== */

.ov-site {
    /* ── Ink & surface ─────────────────────────────────────────────────── */
    --ov-ink: #060a16;
    --ov-ink-soft: #0d1424;
    --ov-ink-line: rgba(255, 255, 255, 0.08);

    --ov-paper: #ffffff;
    --ov-paper-alt: #f7f9fc;
    --ov-paper-line: #e6ebf3;

    --ov-text: #0b1220;
    --ov-text-2: #45526b;
    /* Tertiary text carries most of the body copy on this site — card text, plan
       descriptions, gallery captions, the pricing toggle. It was #6b7a94, which
       measures 4.34:1 on white and 4.12:1 on the alt surface: both below the
       4.5:1 AA floor for normal-size text. This value clears it on both (5.46 and
       5.18) while staying visibly lighter than --ov-text-2, so the type hierarchy
       is unchanged. */
    --ov-text-3: #5b6a85;
    --ov-text-invert: #ffffff;
    --ov-text-invert-2: rgba(226, 234, 249, 0.72);
    /* Was 0.55 alpha, which composites to 4.38:1 on the ink surface — a near miss
       on the 4.5:1 AA floor, across the brand sub-label, hero meta list, footer
       blurb, breadcrumbs and copyright line. 0.62 clears it at ~5:1 and is still
       clearly the quietest of the three inverted tones. */
    --ov-text-invert-3: rgba(196, 208, 230, 0.62);

    /* ── Accent ────────────────────────────────────────────────────────── */
    --ov-accent: #2f6bff;
    --ov-accent-2: #00c2b8;
    --ov-accent-3: #7b5cff;
    --ov-accent-ink: #1a3fa8;
    --ov-accent-wash: #eef3ff;

    --ov-grad: linear-gradient(115deg, #2f6bff 0%, #7b5cff 52%, #00c2b8 100%);
    --ov-grad-soft: linear-gradient(115deg, rgba(47, 107, 255, 0.14), rgba(0, 194, 184, 0.14));

    --ov-ok: #0e9f6e;
    --ov-warn: #d97706;
    --ov-danger: #e11d48;

    /* ── Geometry ──────────────────────────────────────────────────────── */
    --ov-r-sm: 8px;
    --ov-r: 14px;
    --ov-r-lg: 20px;
    --ov-r-xl: 28px;
    --ov-r-pill: 999px;

    --ov-gap: 24px;
    --ov-section: clamp(64px, 8vw, 116px);
    --ov-shell: 1200px;

    /* ── Elevation ─────────────────────────────────────────────────────── */
    --ov-sh-1: 0 1px 2px rgba(11, 18, 32, 0.06);
    --ov-sh-2: 0 6px 20px -6px rgba(11, 18, 32, 0.12);
    --ov-sh-3: 0 22px 50px -18px rgba(11, 18, 32, 0.22);
    --ov-sh-glow: 0 30px 80px -30px rgba(47, 107, 255, 0.55);

    --ov-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --ov-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, Consolas, monospace;

    font-family: var(--ov-font);
    color: var(--ov-text);
    background: var(--ov-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    /* Safety net against horizontal overflow. `clip` rather than `hidden`
       because `hidden` on a root element silently kills position:sticky for
       every descendant — which would break the header. */
    overflow-x: clip;
}

.ov-site *,
.ov-site *::before,
.ov-site *::after {
    box-sizing: border-box;
}

/* These are RESETS, so they are wrapped in :where() to carry zero specificity.
   Without it `.ov-site a` (0,1,1) outranks every component class like
   `.ov-nav__link` (0,1,0) — which silently stripped the colour from every
   classed link on the site. The header links then inherited the near-black body
   colour and became unreadable on the dark bar. A reset must never beat the
   component it is resetting. */
:where(.ov-site) :where(h1, h2, h3, h4, p, figure, ul, ol) {
    margin: 0;
}

:where(.ov-site) :where(ul, ol) {
    padding: 0;
    list-style: none;
}

:where(.ov-site) :where(img, svg) {
    display: block;
    max-width: 100%;
}

:where(.ov-site) :where(a) {
    color: inherit;
    text-decoration: none;
}

/* Visible, unmistakable focus. Never removed — only restyled. */
.ov-site a:focus-visible,
.ov-site button:focus-visible,
.ov-site input:focus-visible,
.ov-site select:focus-visible,
.ov-site textarea:focus-visible,
.ov-site summary:focus-visible,
.ov-site [tabindex]:focus-visible {
    outline: 3px solid var(--ov-accent);
    outline-offset: 3px;
    border-radius: var(--ov-r-sm);
}

.ov-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    padding: 12px 20px;
    background: var(--ov-ink);
    color: #fff;
    border-radius: 0 0 var(--ov-r) 0;
    font-weight: 600;
}

.ov-skip:focus {
    left: 0;
}

/* ── Layout primitives ─────────────────────────────────────────────────── */

.ov-shell {
    width: 100%;
    max-width: var(--ov-shell);
    margin-inline: auto;
    padding-inline: 24px;
}

.ov-band {
    padding-block: var(--ov-section);
    position: relative;
}

.ov-band--tight {
    padding-block: clamp(44px, 5vw, 72px);
}

.ov-band--alt {
    background: var(--ov-paper-alt);
    border-block: 1px solid var(--ov-paper-line);
}

.ov-band--ink {
    background: var(--ov-ink);
    color: var(--ov-text-invert);
}

.ov-band--ink h2,
.ov-band--ink h3 {
    color: #fff;
}

/* ── Type ──────────────────────────────────────────────────────────────── */

.ov-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    /* The vivid accent measures 4.27–4.46:1 on the light surfaces — under the
       floor for text this size. The deeper accent is unambiguously the same brand
       blue and clears it at ~9:1. On dark bands the rule below restores the bright
       tone, which has plenty of contrast there. */
    color: var(--ov-accent-ink);
}

.ov-band--ink .ov-eyebrow,
.ov-hero .ov-eyebrow,
.ov-phero .ov-eyebrow {
    color: var(--ov-accent-2);
}

.ov-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    opacity: 0.7;
}

.ov-h1 {
    font-size: clamp(38px, 6.2vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.ov-h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.ov-h3 {
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: 700;
}

.ov-lede {
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
    color: var(--ov-text-2);
}

/* Every dark surface, not just .ov-band--ink.
   The hero and the interior page heroes are dark too, and they were missing from
   this list — so the lede paragraph under the main headline rendered in the
   LIGHT-mode secondary colour on a near-black background: 2.51:1, well under the
   4.5:1 floor and visibly dim. */
.ov-band--ink .ov-lede,
.ov-hero .ov-lede,
.ov-phero .ov-lede,
.ov-cta .ov-lede {
    color: var(--ov-text-invert-2);
}

.ov-prose {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ov-text-2);
}

.ov-prose p + p,
.ov-prose p + ul,
.ov-prose ul + p,
.ov-prose h2,
.ov-prose h3 {
    margin-top: 20px;
}

.ov-prose h2 {
    font-size: 22px;
    font-weight: 750;
    color: var(--ov-text);
    letter-spacing: -0.015em;
}

.ov-prose h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ov-text);
}

.ov-prose ul {
    display: grid;
    gap: 9px;
    padding-left: 20px;
    list-style: disc;
}

.ov-grad-text {
    background: var(--ov-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ov-head {
    max-width: 720px;
    display: grid;
    gap: 16px;
}

.ov-head--center {
    margin-inline: auto;
    text-align: center;
    justify-items: center;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.ov-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 48px;
    padding-inline: 26px;
    border: 1px solid transparent;
    border-radius: var(--ov-r-pill);
    font: inherit;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease,
        border-color 0.2s ease, color 0.2s ease;
}

.ov-btn:hover {
    transform: translateY(-1px);
}

.ov-btn:active {
    transform: translateY(0);
}

.ov-btn--sm {
    height: 40px;
    padding-inline: 18px;
    font-size: 14px;
}

.ov-btn--lg {
    height: 54px;
    padding-inline: 32px;
    font-size: 16px;
}

.ov-btn--primary {
    background: var(--ov-grad);
    background-size: 160% 160%;
    color: #fff;
    box-shadow: 0 14px 30px -14px rgba(47, 107, 255, 0.85);
}

.ov-btn--primary:hover {
    background-position: 100% 0;
    box-shadow: 0 20px 40px -14px rgba(47, 107, 255, 0.95);
}

.ov-btn--ghost {
    background: transparent;
    border-color: var(--ov-paper-line);
    color: var(--ov-text);
}

.ov-btn--ghost:hover {
    border-color: var(--ov-accent);
    color: var(--ov-accent-ink);
    background: var(--ov-accent-wash);
}

.ov-btn--onink {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(8px);
}

.ov-btn--onink:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
}

.ov-btn--white {
    background: #fff;
    color: var(--ov-ink);
}

.ov-btn--white:hover {
    box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.6);
}

.ov-btn--block {
    width: 100%;
}

.ov-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.ov-actions--center {
    justify-content: center;
}

/* ── Cards ─────────────────────────────────────────────────────────────── */

.ov-card {
    background: var(--ov-paper);
    border: 1px solid var(--ov-paper-line);
    border-radius: var(--ov-r-lg);
    padding: 26px;
    box-shadow: var(--ov-sh-1);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.ov-card--hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--ov-sh-3);
    border-color: rgba(47, 107, 255, 0.3);
}

.ov-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--ov-grad-soft);
    color: var(--ov-accent-ink);
    margin-bottom: 16px;
}

.ov-card__title {
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 7px;
}

.ov-card__text {
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--ov-text-3);
}

.ov-card--glass {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: none;
}

.ov-card--glass .ov-card__title {
    color: #fff;
}

.ov-card--glass .ov-card__text {
    color: var(--ov-text-invert-2);
}

.ov-card--glass .ov-card__icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ov-accent-2);
}

/* ── Grids ─────────────────────────────────────────────────────────────── */

.ov-grid {
    display: grid;
    gap: var(--ov-gap);
}

.ov-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ov-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ov-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1000px) {
    .ov-grid--3,
    .ov-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .ov-grid--2,
    .ov-grid--3,
    .ov-grid--4 { grid-template-columns: minmax(0, 1fr); }
}

/* ── Header / navigation ───────────────────────────────────────────────── */

.ov-header {
    position: sticky;
    top: 0;
    z-index: 60;

    /* Opaque, not translucent, at rest.
       A semi-transparent dark header sitting above the hero composites against
       the WHITE page background — not against the hero, which begins below it —
       so at scroll position 0 it rendered as a grey band across the top instead
       of reading as part of the hero. Solid ink matches the hero and the interior
       page heroes, both of which are dark. */
    background: var(--ov-ink);
    /* The bar is dark, so its inherited text colour must be light. Without this
       anything inside it that only says `color: inherit` picks up the near-black
       body colour and disappears. */
    color: var(--ov-text-invert);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ov-header.is-stuck {
    border-bottom-color: var(--ov-ink-line);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}

.ov-header__bar {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 74px;
    /* Without this a flex item cannot shrink below its content width, which is
       what pushed the burger off-screen and stretched the whole document. */
    min-width: 0;
}

.ov-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.ov-brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    object-fit: contain;
    background: #070b14;
    padding: 3px;
    box-shadow: 0 6px 18px -6px rgba(47, 107, 255, 0.8);
}

.ov-brand__mark {
    flex-shrink: 0;
}

.ov-brand__name {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}

.ov-brand__sub {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ov-text-invert-3);
    margin-top: 2px;
    white-space: nowrap;
}

/* The tagline is decorative in the header and repeated in the footer and on
   every page hero. On a narrow screen the product name plus the burger is all
   that needs to fit. */
@media (max-width: 420px) {
    .ov-brand__sub { display: none; }
}

.ov-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.ov-nav__link {
    padding: 9px 14px;
    border-radius: var(--ov-r-pill);
    font-size: 14.5px;
    font-weight: 550;
    color: var(--ov-text-invert-2);
    transition: color 0.18s ease, background-color 0.18s ease;
}

.ov-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.ov-nav__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ov-header__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ov-header__signin {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ov-text-invert-2);
    padding: 9px 12px;
    border-radius: var(--ov-r-pill);
    transition: color 0.18s ease;
}

.ov-header__signin:hover {
    color: #fff;
}

.ov-burger {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    place-items: center;
}

@media (max-width: 1024px) {
    .ov-nav,
    .ov-header__cta { display: none; }
    .ov-burger { display: grid; }
}

/* Mobile drawer */
.ov-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
}

.ov-drawer[open],
.ov-drawer.is-open {
    display: block;
}

.ov-drawer__veil {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 14, 0.7);
    backdrop-filter: blur(4px);
    animation: ov-fade 0.2s ease;
}

.ov-drawer__panel {
    position: absolute;
    inset-block: 0;
    right: 0;
    width: min(360px, 88vw);
    background: var(--ov-ink);
    border-left: 1px solid var(--ov-ink-line);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    animation: ov-slide 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.ov-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ov-drawer__close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.ov-drawer__link {
    padding: 14px 16px;
    border-radius: var(--ov-r);
    font-size: 16px;
    font-weight: 600;
    color: var(--ov-text-invert-2);
}

.ov-drawer__link:hover,
.ov-drawer__link.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ov-drawer__foot {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--ov-ink-line);
    display: grid;
    gap: 10px;
}

@keyframes ov-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ov-slide {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.ov-hero {
    position: relative;
    background: var(--ov-ink);
    color: var(--ov-text-invert);
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: clamp(80px, 9vw, 132px);
    overflow: hidden;
    isolation: isolate;
}

/* Decorative background: a faint engineering grid plus two soft light sources.
   Pure CSS — no images, no canvas, nothing to download. */
.ov-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse 90% 68% at 50% 32%, #000 35%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 68% at 50% 32%, #000 35%, transparent 78%);
}

.ov-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -30% -10% auto -10%;
    height: 620px;
    background:
        radial-gradient(560px 300px at 22% 28%, rgba(47, 107, 255, 0.4), transparent 68%),
        radial-gradient(520px 280px at 78% 12%, rgba(0, 194, 184, 0.26), transparent 66%);
    filter: blur(14px);
    pointer-events: none;
}

.ov-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}

@media (max-width: 1024px) {
    .ov-hero__grid { grid-template-columns: minmax(0, 1fr); }
}

.ov-hero__copy {
    display: grid;
    gap: 22px;
    justify-items: start;
}

.ov-hero__title {
    color: #fff;
}

.ov-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 34px;
    padding-inline: 15px;
    border-radius: var(--ov-r-pill);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ov-text-invert-2);
}

.ov-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ov-accent-2);
    box-shadow: 0 0 0 4px rgba(0, 194, 184, 0.18);
}

.ov-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    font-size: 13.5px;
    font-weight: 550;
    color: var(--ov-text-invert-3);
}

.ov-hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ov-hero__meta svg {
    color: var(--ov-accent-2);
    flex-shrink: 0;
}

/* ── Screenshot frame ──────────────────────────────────────────────────── */

.ov-frame {
    position: relative;
    border-radius: var(--ov-r-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    padding: 10px;
    box-shadow: var(--ov-sh-glow);
    backdrop-filter: blur(10px);
}

.ov-frame--onpaper {
    border-color: var(--ov-paper-line);
    background: linear-gradient(180deg, #ffffff, #f2f6fd);
    box-shadow: var(--ov-sh-3);
    backdrop-filter: none;
}

.ov-frame__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px 11px;
}

.ov-frame__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.ov-frame--onpaper .ov-frame__dot {
    background: #d7dfec;
}

.ov-frame__url {
    margin-left: 10px;
    flex: 1 1 0;
    /* A flex item defaults to min-width:auto, which refuses to shrink below its
       content. With a nowrap URL inside, that forced the whole frame — and with
       it the page — wider than a phone viewport. */
    min-width: 0;
    height: 24px;
    border-radius: var(--ov-r-pill);
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    padding-inline: 12px;
    font-family: var(--ov-mono);
    font-size: 11px;
    color: var(--ov-text-invert-3);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ov-frame--onpaper .ov-frame__url {
    background: #eef2f9;
    color: var(--ov-text-3);
}

/* ── Screenshot placeholder ────────────────────────────────────────────── */

/* 16:10 by default, which is the ratio real screenshots should be exported at.
   The layout never depends on the placeholder's contents, so swapping in an
   <img> of the same ratio changes nothing else. */
.ov-shot {
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: var(--ov-r-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, #0f1830 0%, #131d3a 48%, #0c1428 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
}

.ov-shot--paper {
    background: linear-gradient(135deg, #f4f7fd 0%, #e9effa 100%);
    border-color: var(--ov-paper-line);
}

.ov-shot--wide { aspect-ratio: 16 / 9; }
.ov-shot--tall { aspect-ratio: 9 / 16; }
.ov-shot--square { aspect-ratio: 1 / 1; }

.ov-shot::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.85;
}

.ov-shot--paper::before {
    background-image:
        linear-gradient(rgba(11, 18, 32, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 18, 32, 0.045) 1px, transparent 1px);
}

.ov-shot__inner {
    position: relative;
    display: grid;
    gap: 10px;
    justify-items: center;
    max-width: 320px;
}

.ov-shot__badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--ov-grad);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(47, 107, 255, 0.9);
}

.ov-shot__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ov-accent-2);
}

.ov-shot--paper .ov-shot__brand {
    color: var(--ov-accent);
}

.ov-shot__label {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.ov-shot--paper .ov-shot__label {
    color: var(--ov-text);
}

.ov-shot__note {
    font-family: var(--ov-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ov-text-invert-3);
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: var(--ov-r-pill);
    padding: 5px 13px;
    white-space: nowrap;
}

/* The replacement-path hint is for whoever swaps the screenshot in, not for a
   visitor. It is long, so it goes at the first sign of a narrow screen. */
@media (max-width: 560px) {
    .ov-shot__ratio { display: none; }
}

.ov-shot--paper .ov-shot__note {
    color: var(--ov-text-3);
    border-color: #c9d4e6;
}

.ov-shot__ratio {
    font-size: 11px;
    color: var(--ov-text-invert-3);
    letter-spacing: 0.04em;
}

.ov-shot--paper .ov-shot__ratio {
    color: var(--ov-text-3);
}

.ov-shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Floating stat chips over the hero visual ──────────────────────────── */

.ov-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ov-chip {
    position: absolute;
    display: grid;
    gap: 3px;
    padding: 12px 16px;
    border-radius: var(--ov-r);
    background: rgba(9, 14, 28, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    animation: ov-float 7s ease-in-out infinite;
}

.ov-chip__k {
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ov-text-invert-3);
}

.ov-chip__v {
    font-size: 17px;
    font-weight: 750;
    color: #fff;
    letter-spacing: -0.015em;
}

.ov-chip__v--ok { color: #34d399; }
.ov-chip__v--warn { color: #fbbf24; }

.ov-chip--a { top: 8%; right: -4%; animation-delay: 0s; }
.ov-chip--b { bottom: 14%; left: -6%; animation-delay: 1.4s; }
.ov-chip--c { bottom: -3%; right: 10%; animation-delay: 2.8s; }

@media (max-width: 1024px) {
    .ov-chip--a { right: 2%; }
    .ov-chip--b { left: 2%; }
}

@media (max-width: 640px) {
    .ov-chip { display: none; }
}

@keyframes ov-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Marquee of capability tags ────────────────────────────────────────── */

.ov-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
}

.ov-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: var(--ov-r-pill);
    border: 1px solid var(--ov-paper-line);
    background: var(--ov-paper);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ov-text-2);
    box-shadow: var(--ov-sh-1);
}

.ov-tag svg { color: var(--ov-accent); flex-shrink: 0; }

.ov-band--ink .ov-tag {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.11);
    color: var(--ov-text-invert-2);
    box-shadow: none;
}

.ov-band--ink .ov-tag svg { color: var(--ov-accent-2); }

/* ── Alternating feature rows ──────────────────────────────────────────── */

.ov-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.ov-split + .ov-split {
    margin-top: clamp(64px, 7vw, 104px);
}

.ov-split--flip .ov-split__media {
    order: -1;
}

@media (max-width: 900px) {
    .ov-split { grid-template-columns: minmax(0, 1fr); }
    .ov-split--flip .ov-split__media { order: 0; }
}

.ov-split__copy {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.ov-checks {
    display: grid;
    gap: 12px;
}

.ov-checks li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ov-text-2);
}

.ov-checks svg {
    margin-top: 2px;
    color: var(--ov-accent);
}

.ov-band--ink .ov-checks li { color: var(--ov-text-invert-2); }
.ov-band--ink .ov-checks svg { color: var(--ov-accent-2); }

/* ── Numbered steps ────────────────────────────────────────────────────── */

.ov-step {
    position: relative;
    padding-top: 8px;
}

.ov-band--ink .ov-step__n,
.ov-hero .ov-step__n,
.ov-phero .ov-step__n {
    color: var(--ov-accent-2);
}

.ov-step__n {
    font-family: var(--ov-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    /* Same reason as .ov-eyebrow. On the dark How-It-Works band the rule below
       swaps in the bright tone. */
    color: var(--ov-accent-ink);
    display: block;
    margin-bottom: 12px;
}

.ov-step__rule {
    height: 3px;
    border-radius: 3px;
    background: var(--ov-grad);
    width: 46px;
    margin-bottom: 18px;
}

/* ── Pricing ───────────────────────────────────────────────────────────── */

.ov-toggle {
    display: inline-flex;
    padding: 5px;
    gap: 4px;
    border-radius: var(--ov-r-pill);
    background: var(--ov-paper-alt);
    border: 1px solid var(--ov-paper-line);
}

.ov-toggle__btn {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    color: var(--ov-text-3);
    padding: 10px 22px;
    border-radius: var(--ov-r-pill);
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.ov-toggle__btn[aria-selected='true'] {
    background: var(--ov-paper);
    color: var(--ov-accent-ink);
    box-shadow: var(--ov-sh-2);
}

.ov-plans {
    display: grid;
    gap: var(--ov-gap);
    grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
    align-items: start;
}

.ov-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--ov-paper);
    border: 1px solid var(--ov-paper-line);
    border-radius: var(--ov-r-lg);
    padding: 28px;
    box-shadow: var(--ov-sh-1);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.ov-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--ov-sh-3);
}

.ov-plan--featured {
    border-color: transparent;
    box-shadow: var(--ov-sh-3), 0 0 0 2px var(--ov-accent);
}

.ov-plan__flag {
    position: absolute;
    top: -13px;
    left: 28px;
    padding: 5px 14px;
    border-radius: var(--ov-r-pill);
    background: var(--ov-grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px -10px rgba(47, 107, 255, 0.9);
}

.ov-plan__name {
    font-size: 18px;
    font-weight: 750;
    letter-spacing: -0.015em;
}

.ov-plan__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ov-text-3);
    min-height: 42px;
}

.ov-plan__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.ov-plan__amount {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
}

.ov-plan__cur {
    font-size: 17px;
    font-weight: 650;
    color: var(--ov-text-3);
}

.ov-plan__per {
    font-size: 14px;
    font-weight: 600;
    color: var(--ov-text-3);
}

.ov-plan__cycle {
    font-size: 12.5px;
    color: var(--ov-text-3);
}

.ov-plan__rule {
    height: 1px;
    background: var(--ov-paper-line);
}

.ov-plan__limits {
    display: grid;
    gap: 9px;
}

.ov-plan__limit {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 13.5px;
}

.ov-plan__limit dt { color: var(--ov-text-3); }

.ov-plan__limit dd {
    margin: 0;
    font-weight: 700;
    color: var(--ov-text);
}

.ov-plan__limit dd.is-unlimited { color: var(--ov-ok); }

.ov-plan__feats {
    display: grid;
    gap: 9px;
    margin-top: 2px;
}

.ov-plan__feat {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ov-text-2);
}

.ov-plan__feat svg { margin-top: 2px; color: var(--ov-ok); }

.ov-plan__feat.is-off { color: var(--ov-text-3); opacity: 0.62; }
.ov-plan__feat.is-off svg { color: var(--ov-text-3); }

.ov-plan__foot { margin-top: auto; padding-top: 6px; }

.ov-empty {
    text-align: center;
    padding: clamp(40px, 6vw, 72px) 28px;
    border: 1px dashed var(--ov-paper-line);
    border-radius: var(--ov-r-lg);
    background: var(--ov-paper-alt);
    display: grid;
    gap: 14px;
    justify-items: center;
}

/* Comparison table */
.ov-compare {
    overflow-x: auto;
    border: 1px solid var(--ov-paper-line);
    border-radius: var(--ov-r-lg);
    background: var(--ov-paper);
    -webkit-overflow-scrolling: touch;
}

.ov-compare table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 14px;
}

.ov-compare th,
.ov-compare td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--ov-paper-line);
}

.ov-compare thead th {
    position: sticky;
    top: 0;
    background: var(--ov-paper-alt);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ov-text-3);
    white-space: nowrap;
}

.ov-compare tbody tr:last-child th,
.ov-compare tbody tr:last-child td { border-bottom: 0; }

.ov-compare tbody th {
    font-weight: 600;
    color: var(--ov-text);
}

.ov-compare td { text-align: center; }
.ov-compare thead th:not(:first-child) { text-align: center; }

.ov-yes { color: var(--ov-ok); }
.ov-no { color: #66748d; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */

.ov-faq {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin-inline: auto;
}

.ov-faq__item {
    border: 1px solid var(--ov-paper-line);
    border-radius: var(--ov-r);
    background: var(--ov-paper);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ov-faq__item[open] {
    border-color: rgba(47, 107, 255, 0.34);
    box-shadow: var(--ov-sh-2);
}

.ov-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 22px;
    font-size: 15.5px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.ov-faq__q::-webkit-details-marker { display: none; }

.ov-faq__q svg {
    flex-shrink: 0;
    color: var(--ov-accent);
    transition: transform 0.22s ease;
}

.ov-faq__item[open] .ov-faq__q svg { transform: rotate(45deg); }

.ov-faq__a {
    padding: 0 22px 20px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ov-text-2);
}

/* ── Demo gallery + lightbox ───────────────────────────────────────────── */

.ov-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.ov-filter {
    border: 1px solid var(--ov-paper-line);
    background: var(--ov-paper);
    border-radius: var(--ov-r-pill);
    padding: 9px 18px;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ov-text-2);
    cursor: pointer;
    transition: all 0.18s ease;
}

.ov-filter:hover { border-color: var(--ov-accent); color: var(--ov-accent-ink); }

.ov-filter[aria-pressed='true'] {
    background: var(--ov-ink);
    border-color: var(--ov-ink);
    color: #fff;
}

.ov-gallery {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.ov-gitem {
    border: 1px solid var(--ov-paper-line);
    border-radius: var(--ov-r-lg);
    overflow: hidden;
    background: var(--ov-paper);
    box-shadow: var(--ov-sh-1);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.ov-gitem:hover {
    transform: translateY(-4px);
    box-shadow: var(--ov-sh-3);
}

.ov-gitem__btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    text-align: left;
}

.ov-gitem__meta {
    padding: 16px 18px 18px;
    display: grid;
    gap: 5px;
    border-top: 1px solid var(--ov-paper-line);
}

.ov-gitem__cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* Same near-miss as .ov-eyebrow on a light surface. */
    color: var(--ov-accent-ink);
}

.ov-gitem__title { font-size: 15.5px; font-weight: 700; }

.ov-gitem__text { font-size: 13.5px; line-height: 1.55; color: var(--ov-text-3); }

.ov-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 6, 14, 0.9);
    backdrop-filter: blur(8px);
}

.ov-lightbox.is-open { display: flex; }

.ov-lightbox__body {
    width: min(1080px, 100%);
    max-height: 90vh;
    overflow: auto;
    animation: ov-pop 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.ov-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.ov-lightbox__cap {
    margin-top: 14px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

@keyframes ov-pop {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

/* ── Forms ─────────────────────────────────────────────────────────────── */

.ov-form { display: grid; gap: 18px; }

.ov-field { display: grid; gap: 7px; }

.ov-field--half {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 640px) {
    .ov-field--half { grid-template-columns: minmax(0, 1fr); }
}

.ov-label {
    font-size: 13px;
    font-weight: 650;
    color: var(--ov-text);
}

.ov-label__opt {
    font-weight: 500;
    color: var(--ov-text-3);
}

.ov-input,
.ov-select,
.ov-textarea {
    width: 100%;
    font: inherit;
    font-size: 15px;
    color: var(--ov-text);
    background: var(--ov-paper);
    border: 1px solid #d5deeb;
    border-radius: var(--ov-r);
    padding: 13px 15px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ov-input:focus,
.ov-select:focus,
.ov-textarea:focus {
    outline: none;
    border-color: var(--ov-accent);
    box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.14);
}

.ov-textarea { min-height: 148px; resize: vertical; }

.ov-input[aria-invalid='true'],
.ov-select[aria-invalid='true'],
.ov-textarea[aria-invalid='true'] {
    border-color: var(--ov-danger);
}

.ov-err {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ov-danger);
}

/* Honeypot: off-screen rather than display:none, so a bot filling every field
   still trips it while a screen reader skips it via aria-hidden + tabindex. */
.ov-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ov-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 17px;
    border-radius: var(--ov-r);
    font-size: 14px;
    line-height: 1.6;
}

.ov-note svg { flex-shrink: 0; margin-top: 2px; }

.ov-note--ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.ov-note--err {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}

.ov-note--info {
    background: var(--ov-accent-wash);
    border: 1px solid #c7d8ff;
    color: var(--ov-accent-ink);
}

/* ── CTA band ──────────────────────────────────────────────────────────── */

.ov-cta {
    position: relative;
    border-radius: var(--ov-r-xl);
    padding: clamp(38px, 5.5vw, 70px);
    background: var(--ov-ink);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    display: grid;
    gap: 20px;
    justify-items: center;
}

.ov-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(520px 260px at 18% 0%, rgba(47, 107, 255, 0.45), transparent 66%),
        radial-gradient(520px 260px at 84% 100%, rgba(0, 194, 184, 0.32), transparent 66%);
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.ov-footer {
    background: var(--ov-ink);
    color: var(--ov-text-invert-2);
    padding-top: clamp(52px, 6vw, 76px);
    padding-bottom: 30px;
    border-top: 1px solid var(--ov-ink-line);
}

.ov-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
    gap: 40px 28px;
}

@media (max-width: 1000px) {
    .ov-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .ov-footer__grid { grid-template-columns: minmax(0, 1fr); }
}

.ov-footer__about { display: grid; gap: 16px; align-content: start; max-width: 330px; }

.ov-footer__blurb { font-size: 14px; line-height: 1.65; color: var(--ov-text-invert-3); }

.ov-footer__h {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.ov-footer__list { display: grid; gap: 11px; }

.ov-footer__link {
    font-size: 14px;
    color: var(--ov-text-invert-2);
    transition: color 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ov-footer__link:hover { color: #fff; }

.ov-footer__bar {
    margin-top: clamp(38px, 5vw, 56px);
    padding-top: 24px;
    border-top: 1px solid var(--ov-ink-line);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ov-text-invert-3);
}

.ov-footer__domains { display: flex; flex-wrap: wrap; gap: 8px 20px; }

.ov-footer__domains span { display: inline-flex; align-items: center; gap: 7px; }

.ov-byline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--ov-text-invert-3);
}

.ov-byline a {
    color: #fff;
    font-weight: 650;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.18s ease;
}

.ov-byline a:hover { border-bottom-color: #fff; }

/* ── Page hero for interior pages ──────────────────────────────────────── */

.ov-phero {
    background: var(--ov-ink);
    color: #fff;
    padding-block: clamp(52px, 6.5vw, 92px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ov-phero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(620px 300px at 24% 0%, rgba(47, 107, 255, 0.34), transparent 70%),
        radial-gradient(520px 260px at 82% 20%, rgba(0, 194, 184, 0.2), transparent 68%);
}

.ov-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--ov-text-invert-3);
    margin-bottom: 16px;
}

.ov-crumb a:hover { color: #fff; }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */

.ov-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.ov-reveal.is-in {
    opacity: 1;
    transform: none;
}

/* Anyone who has asked for less motion gets none of it, and — critically —
   still sees all the content, because the reveal starts hidden. */
@media (prefers-reduced-motion: reduce) {
    .ov-site *,
    .ov-site *::before,
    .ov-site *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .ov-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .ov-chip { animation: none; }
}

/* ── Print ─────────────────────────────────────────────────────────────── */

@media print {
    .ov-header,
    .ov-drawer,
    .ov-lightbox,
    .ov-footer,
    .ov-cta { display: none !important; }

    .ov-site { background: #fff; }
    .ov-band { padding-block: 18px; }
}
