

:root {

    --op-bg: #050505;
    --op-bg-alt: #0a0a0c;
    --op-bg-deep: #000000;

    --op-glass: rgba(255, 255, 255, 0.05);
    --op-glass-hover: rgba(255, 255, 255, 0.08);
    --op-glass-strong: rgba(255, 255, 255, 0.09);
    --op-glass-blur: blur(24px) saturate(140%);

    --op-text: #ffffff;
    --op-muted: rgba(255, 255, 255, 0.85);
    --op-faint: rgba(255, 255, 255, 0.38);

    --op-line: rgba(255, 255, 255, 0.08);
    --op-line-soft: rgba(255, 255, 255, 0.05);

    --op-brand: #AE8BF4;
    --op-brand-rgb: 174, 139, 244;
    --op-ok: #5cf2a8;
    --op-danger: #ff7a6b;

    --op-radius: 24px;
    --op-radius-tile: 28px;
    --op-radius-sm: 14px;
    --op-radius-pill: 999px;
    --op-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    --op-shadow-tile: 0 12px 40px rgba(0, 0, 0, 0.25);

    --op-header-h: 74px;
}

* { box-sizing: border-box; }

html {
    scroll-padding-top: calc(var(--op-header-h) + 20px);
    background: var(--op-bg);
}
body {
    margin: 0;
    font-family: "Futura PT", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    color: var(--op-text);
    background: var(--op-bg);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[hidden] { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.16; font-weight: 600; letter-spacing: -0.015em; }
p { margin: 0; }
::selection { background: rgba(255, 255, 255, 0.18); }
:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--op-bg), 0 0 0 4px rgba(var(--op-brand-rgb), 0.85);
    border-radius: 4px;
}

.op-wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 26px; }
.op-section { position: relative; padding: 104px 0; }
.op-section-alt { background: var(--op-bg-alt); }
.op-section-head { max-width: 760px; margin-bottom: 52px; }
.op-section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.op-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--op-faint);
    margin-bottom: 16px;
}
.op-section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.op-section-head p { color: var(--op-muted); font-size: 1.06rem; }

.op-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    border-radius: var(--op-radius-pill);
    padding: 15px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #000000;
    transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.op-btn:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.94); }
.op-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.op-btn-ghost {
    background: var(--op-glass);
    color: #ffffff;
    backdrop-filter: blur(12px);
}
.op-btn-ghost:hover { background: var(--op-glass-hover); }

.op-btn-light { background: rgba(255, 255, 255, 0.82); color: #000000; }
.op-btn-outline { background: var(--op-glass); color: #ffffff; }
.op-btn-outline:hover { background: var(--op-glass-hover); }
.op-btn-sm { padding: 10px 22px; font-size: 0.92rem; }

.op-preview-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 120;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 11px 20px;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 -1px 0 var(--op-line);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    text-align: center;
}
.op-preview-bar a { color: #ffffff; font-weight: 600; text-decoration: underline; }
.op-preview-dot {
    width: 8px; height: 8px; flex-shrink: 0;
    border-radius: 50%;
    background: #f0b429;
}

.op-glass-layer {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 88;
    height: var(--op-header-h);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);

    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.op-scrolled .op-glass-layer { opacity: 1; }

.op-no-stage .op-glass-layer { opacity: 1; }

.op-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 90;
}
.op-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: var(--op-header-h);
}

.op-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: #ffffff;
}
.op-logo-img {
    display: block;
    height: 22px;
    width: auto;

    max-width: 220px;
    object-fit: contain;
    object-position: left center;
}

.op-logo-fallback {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.op-logo-sr {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.op-header .op-logo-mobile { display: none; }
.op-footer .op-logo-desktop { display: block; }
.op-footer .op-logo-mobile { display: none; }
@media (max-width: 900px) {
    .op-header .op-logo-desktop { display: none; }
    .op-header .op-logo-mobile { display: block; }
    .op-header .op-logo-mobile.op-logo-img { max-width: 120px; }
}
@media (min-width: 901px) {
    .op-header .op-logo {
        display: grid;
        align-items: center;
        justify-items: start;
    }
    .op-header .op-logo-desktop,
    .op-header .op-logo-mobile {
        display: block;
        grid-area: 1 / 1;
        transition: opacity 0.45s ease;
    }
    .op-header .op-logo-img {
        height: 16px;
        max-height: 16px;
    }
    .op-footer .op-logo-img {
        height: 20px;
        max-height: 20px;
    }
    .op-header .op-logo-mobile {
        opacity: 0;
        pointer-events: none;
    }
    .op-scrolled .op-header .op-logo-desktop {
        opacity: 0;
        pointer-events: none;
    }
    .op-scrolled .op-header .op-logo-mobile {
        opacity: 1;
    }
}
@media (min-width: 901px) and (prefers-reduced-motion: reduce) {
    .op-header .op-logo-desktop,
    .op-header .op-logo-mobile {
        transition: none;
    }
}

.op-nav { display: flex; align-items: center; gap: 26px; }
.op-nav a {
    display: inline-block;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    box-shadow: inset 0 -1px 0 transparent;
    transition: box-shadow 0.2s ease, color 0.2s ease;
}
.op-nav a:hover,
.op-nav a:focus-visible {
    color: #ffffff;
    background: none;
    box-shadow: inset 0 -1px 0 currentColor;
}
.op-nav a[aria-current="true"] { color: #ffffff; box-shadow: inset 0 -1px 0 currentColor; }

.op-nav-toggle {
    display: none;
    position: relative;
    width: 40px; height: 40px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center; justify-content: center;
}
.op-nav-toggle span {
    position: absolute;
    width: 20px; height: 1px;
    border-radius: 1px;
    background: #ffffff;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.op-nav-toggle span:nth-child(1) { transform: translateY(-4px); }
.op-nav-toggle span:nth-child(2) { transform: translateY(4px); }
.op-nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg); }
.op-nav-toggle.is-active span:nth-child(2) { transform: rotate(-45deg); }

.op-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--op-header-h);
    z-index: 89;
    flex-direction: column;
    padding: 8px 26px 44px;
    background: var(--op-bg-deep);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.op-mobile-nav.is-open { display: flex; }
.op-mobile-nav a {
    padding: 20px 2px;
    font-size: 1.32rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
    box-shadow: inset 0 -1px 0 var(--op-line);
}
.op-mobile-nav a:last-of-type { box-shadow: none; }

@media (max-width: 900px) {
    .op-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
    }
    .op-nav { display: none; }
    .op-nav-toggle { display: flex; justify-self: start; }

    .op-logo { justify-self: center; }
}
@media (min-width: 901px) {
    .op-mobile-nav { display: none !important; }
}

.op-header-spacer { display: none; }
@media (max-width: 900px) {
    .op-header-spacer { display: block; justify-self: end; }
}

.op-stage {
    --op-stage-p: 0;
    --op-stage-h: 700px;
    --op-stage-min-w: 1128px;
    --op-stage-max-w: 2048px;

    --op-stage-end-w: min(100vw, var(--op-stage-max-w));

    --op-stage-start-w: min(max(calc(var(--op-stage-end-w) * 0.75), var(--op-stage-min-w)), var(--op-stage-end-w));

    --op-stage-side: calc((var(--op-stage-end-w) - var(--op-stage-start-w)) / 2);
    --op-stage-ov: 1;
    position: relative;

    padding-bottom: 48px;
    background: var(--op-bg-deep);
}
.op-stage-intro {

    padding-top: calc(var(--op-header-h) + clamp(56px, 8vw, 120px));
    padding-bottom: clamp(40px, 5vw, 72px);
}
.op-stage-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: end;
}
.op-stage-intro h1 {
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    letter-spacing: -0.025em;
}
.op-stage-intro-text {
    font-size: clamp(1rem, 1.3vw, 1.14rem);
    line-height: 1.6;
    color: var(--op-muted);
}
@media (max-width: 860px) {
    .op-stage-intro-grid { grid-template-columns: 1fr; align-items: start; gap: 20px; }
}

.op-stage-sticky {
    position: sticky;
    top: max(var(--op-header-h), calc((100vh - var(--op-stage-h)) / 2));
    height: var(--op-stage-h);
    max-height: 700px;
}
.op-stage-frame {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: var(--op-stage-end-w);
    margin-left: calc(var(--op-stage-end-w) / -2);

    clip-path: inset(
        0
        calc(var(--op-stage-side) * (1 - var(--op-stage-p)))
        0
        calc(var(--op-stage-side) * (1 - var(--op-stage-p)))
        round 28px
    );
    will-change: clip-path;
}
.op-stage-media { position: absolute; inset: 0; }

.op-stage-shot {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
.vendo-ai-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(20, 28, 36, 0.38);
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    pointer-events: none;
}
.op-media-shot .vendo-ai-badge {
    left: 10px;
    bottom: 10px;
    font-size: 0.62rem;
}

.op-stage-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 50% 0%, rgba(255, 255, 255, 0.07), transparent 68%),
        linear-gradient(170deg, #0d0f14 0%, #05050a 100%);
}
.op-stage-placeholder::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(760px 460px at 50% 30%, #000 10%, transparent 78%);
    pointer-events: none;
}

.op-stage--ov-none { --op-stage-ov: 0; }
.op-stage--ov-none .op-stage-scrim { display: none; }
.op-stage--ov-light { --op-stage-ov: 0.28; }
.op-stage--ov-medium { --op-stage-ov: 0.58; }
.op-stage--ov-strong { --op-stage-ov: 1; }
.op-stage-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 50%, rgba(0, 0, 0, calc(0.72 * var(--op-stage-ov))) 0%, rgba(0, 0, 0, calc(0.34 * var(--op-stage-ov))) 58%, rgba(0, 0, 0, calc(0.12 * var(--op-stage-ov))) 100%),
        linear-gradient(to top, rgba(0, 0, 0, calc(0.55 * var(--op-stage-ov))) 0%, transparent 34%);
    pointer-events: none;
}

.op-stage-copy {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 28px;
}

.op-stage-copy-inner { width: min(720px, 100%); }
.op-stage-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 16px 7px 12px;
    margin-bottom: 22px;
    border-radius: var(--op-radius-pill);
    background: var(--op-glass);
    backdrop-filter: blur(12px);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.86);
}
.op-pulse {
    width: 8px; height: 8px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--op-ok);
    box-shadow: 0 0 0 4px rgba(92, 242, 168, 0.18);
}

.op-stage-copy h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    margin-bottom: 18px;
}
.op-stage-lead {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 30px;
}
.op-stage-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.op-stage + .op-section { padding-top: 56px; }

@media (max-width: 900px) {

    .op-stage {
        --op-stage-p: 1;
        --op-stage-side: 0px;
        padding-bottom: 32px;
    }
    .op-stage-sticky { top: var(--op-header-h); }
    .op-stage + .op-section { padding-top: 40px; }
}
@media (prefers-reduced-motion: reduce) {

    .op-stage { --op-stage-p: 1; --op-stage-side: 0px; padding-bottom: 0; }
    .op-glass-layer, .op-nav-toggle span { transition: none; }
    a.op-fact { transition: background 0.2s ease; }
    a.op-fact:hover,
    a.op-fact:focus-visible { transform: none; }
}

.op-facts { display: flex; flex-wrap: wrap; gap: 20px; }
.op-fact {
    flex: 1 1 220px;
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border-radius: var(--op-radius-tile);
    padding: 26px 28px;
}
a.op-fact {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
a.op-fact:hover,
a.op-fact:focus-visible {
    outline: none;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}
.op-fact-value { font-size: 1.42rem; font-weight: 600; margin-bottom: 4px; }
.op-fact-label { font-size: 0.9rem; color: var(--op-muted); }

.op-mockup-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; }

.op-mockup-grid .op-section-head { margin-bottom: 0; }
.op-mock {
    border-radius: var(--op-radius);
    background: var(--op-glass);
    backdrop-filter: blur(16px) saturate(140%);
    box-shadow: var(--op-shadow);
    padding: 14px;
}
.op-mock-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 0 4px; }
.op-mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.op-mock-url {
    flex: 1;
    margin-left: 8px;
    padding: 7px 14px;
    border-radius: var(--op-radius-pill);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.op-mock-body { border-radius: var(--op-radius-sm); background: #ffffff; padding: 20px; color: #16203a; }
.op-mock-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.op-mock-sub { font-size: 0.84rem; color: #5c6679; margin-bottom: 16px; }
.op-mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.op-mock-card { border-radius: 10px; background: #f4f6fa; padding: 10px; }
.op-mock-img { height: 52px; border-radius: 8px; background: linear-gradient(135deg, #d7e0f2, #eef2f9); margin-bottom: 8px; }
.op-mock-line { height: 7px; border-radius: 4px; background: #dde3ee; margin-bottom: 5px; }
.op-mock-line.short { width: 58%; }
.op-mock-chat {
    display: flex; align-items: center; gap: 9px;
    margin-top: 14px; padding: 11px 13px;
    border-radius: 10px;
    background: #eaf0ff;
    font-size: 0.83rem; font-weight: 600; color: #0052ff;
}

@media (max-width: 980px) {
    .op-mockup-grid { grid-template-columns: 1fr; gap: 40px; }
}

.op-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.op-tile {
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border: none;
    border-radius: var(--op-radius-tile);
    padding: 32px 30px;
    box-shadow: var(--op-shadow-tile);
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.op-tile:hover { background: var(--op-glass-hover); transform: translateY(-2px); }
.op-tile-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}
.op-tile-icon svg { width: 26px; height: 26px; }
.op-tile h3 { font-size: 1.12rem; margin-bottom: 10px; }
.op-tile p { color: var(--op-muted); font-size: 0.98rem; }

.op-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 18px; }
.op-feature-group {
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border-radius: var(--op-radius-tile);
    padding: 30px 28px;
    box-shadow: var(--op-shadow-tile);
}
.op-feature-group h3 {
    font-size: 1.32rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}
.op-check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.op-check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.97rem; color: rgba(255, 255, 255, 0.78); }
.op-check-list svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; color: var(--op-ok); }
.op-check-list li.is-missing { color: var(--op-faint); }
.op-check-list li.is-missing svg { color: rgba(255, 255, 255, 0.28); }
.op-check-text { min-width: 0; }
.op-check-list .op-media-badge {
    margin: 0 8px 0 0;
    vertical-align: 0.15em;
}

.op-glass-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 18px; }
.op-glass {
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border: none;
    border-radius: var(--op-radius-tile);
    padding: 32px 30px;
    box-shadow: var(--op-shadow-tile);
    transition: background 0.3s ease;
}
.op-glass:hover { background: var(--op-glass-hover); }
.op-glass-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--op-faint);
    margin-bottom: 14px;
}
.op-glass h3 { font-size: 1.12rem; margin-bottom: 10px; }
.op-glass p { color: var(--op-muted); font-size: 0.97rem; }

.op-media-grid {
    display: grid;
    gap: 18px;
}
.op-media-grid.op-media-cols-1 { grid-template-columns: 1fr; }
.op-media-grid.op-media-cols-2 { grid-template-columns: repeat(2, 1fr); }
.op-media-grid.op-media-cols-3 { grid-template-columns: repeat(3, 1fr); }
.op-media-item {
    margin: 0;
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border-radius: var(--op-radius-tile);
    overflow: hidden;
    box-shadow: var(--op-shadow-tile);
    transition: background 0.3s ease;
}
.op-media-item:hover { background: var(--op-glass-hover); }
.op-media-shot {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    display: flex; align-items: center; justify-content: center;
    color: var(--op-faint); font-size: 0.86rem;
    overflow: hidden;
}

.op-media-shot img,
.op-media-shot video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.op-media-shot--video {
    cursor: pointer;
}
.op-media-shot--video .op-media-video {
    pointer-events: none;
}
.op-media-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(68, 68, 68, 0.6);
    backdrop-filter: saturate(1.8) blur(10px);
    -webkit-backdrop-filter: saturate(1.8) blur(10px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 2;
}

.op-media-shot--video.is-hover .op-media-play,
.op-media-play:focus-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}
.op-media-play-icon {
    width: 36px;
    height: 36px;
    display: block;
}
.op-media-play-icon--play { margin-left: 0; }
.op-media-shot--video.is-playing .op-media-play-icon--play,
.op-media-shot--video:not(.is-playing) .op-media-play-icon--pause {
    display: none;
}

@media (hover: none) {
    .op-media-shot--video:not(.is-playing) .op-media-play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        pointer-events: auto;
    }
}
.op-media-body { padding: 24px 26px 28px; }
.op-media-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 2px 9px;
    border-radius: var(--op-radius-pill);
    background: rgba(var(--op-brand-rgb), 0.18);
    color: var(--op-brand);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.op-media-body h3 {
    font-size: 1.32rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.op-media-body p { color: var(--op-muted); font-size: 0.95rem; }

.op-gallery-note {
    margin-top: 30px;
    max-width: 720px;
    color: var(--op-muted);
    font-size: 0.98rem;
}
.op-gallery-note-center { margin-left: auto; margin-right: auto; text-align: center; }

.op-billing-toggle {
    display: flex;
    width: fit-content;
    gap: 4px;
    margin: 0 auto 32px;
    padding: 5px;
    border-radius: var(--op-radius-pill);
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
}
.op-billing-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: var(--op-faint);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: calc(var(--op-radius-pill) - 3px);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.op-billing-toggle-btn:hover { color: var(--op-muted); }
.op-billing-toggle-btn.is-active {
    background: rgba(255, 255, 255, 0.94);
    color: #000000;
}
.op-billing-toggle-badge {
    padding: 2px 9px;
    border-radius: var(--op-radius-pill);
    background: rgba(var(--op-brand-rgb), 0.18);
    color: var(--op-brand);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}
.op-billing-toggle-btn.is-active .op-billing-toggle-badge { background: rgba(var(--op-brand-rgb), 0.14); }

.op-package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(304px, 1fr)); gap: 18px; align-items: start; }
.op-package {
    position: relative;
    display: flex; flex-direction: column;
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border: none;
    border-radius: var(--op-radius-tile);
    padding: 34px 30px 36px;
    box-shadow: var(--op-shadow-tile);
}

.op-package-featured { background: var(--op-glass-strong); }
.op-package-flag {
    position: absolute; top: 24px; right: 26px;
    padding: 5px 13px;
    border-radius: var(--op-radius-pill);
    background: #ffffff;
    color: #000000;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.op-package h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 1.32rem;
    margin-bottom: 8px;
}
.op-package-featured h3 { padding-right: 7.5rem; }
.op-package-promo {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: var(--op-radius-pill);
    background: rgba(var(--op-brand-rgb), 0.18);
    color: var(--op-brand);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
    line-height: 1.2;
}
.op-package-tagline { font-size: 0.95rem; color: var(--op-muted); min-height: 46px; margin-bottom: 22px; }
.op-package-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }

.op-package-price [data-cycle] { display: contents; }
.op-package-price [data-cycle][hidden] { display: none; }
.op-package-amount { font-size: 2.15rem; font-weight: 600; letter-spacing: -0.025em; }
.op-package-per { font-size: 0.95rem; color: var(--op-muted); }
.op-package-note { font-size: 0.84rem; color: var(--op-faint); margin-bottom: 24px; line-height: 1.65; }
.op-package-note strong { color: var(--op-muted); font-weight: 600; }

.op-package-limits {
    margin: auto 0 24px;
    padding: 18px 20px;
    list-style: none;
    border-radius: var(--op-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.op-package-featured .op-package-limits { background: rgba(255, 255, 255, 0.09); }
.op-package-limits li { font-size: 0.93rem; color: var(--op-muted); }
.op-package-limits strong { color: var(--op-text); font-weight: 600; }

.op-price-was {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--op-faint);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    letter-spacing: -0.01em;
}
.op-price-was-inline { font-size: 0.84rem; margin: 0 2px 0 4px; }
.op-package .op-btn { width: 100%; margin-bottom: 0; }

.op-package-after {
    max-width: 640px;
    margin-top: 36px;
}
.op-package-after.is-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.op-package-after h3 {
    font-size: 1.32rem;
    margin: 0 0 8px;
}
.op-package-after-text {
    color: #fff;
    font-size: 17px;
    line-height: 1.65;
}
.op-package-after-text p { margin: 0 0 0.8em; }
.op-package-after-text p:last-child { margin-bottom: 0; }

.op-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); gap: 20px; list-style: none; margin: 0; padding: 0; }
.op-step { padding-top: 6px; }
.op-step-no {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--op-glass);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.op-step h3 { font-size: 1.06rem; margin-bottom: 9px; }
.op-step p { color: var(--op-muted); font-size: 0.96rem; }

.op-faq { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; }
.op-faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 24px 4px;
    background: none; border: none;
    font-family: inherit; font-size: 1.05rem; font-weight: 400;
    color: var(--op-text);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}
.op-faq-q:hover { color: rgba(255, 255, 255, 0.72); }
.op-faq-q svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--op-faint); transition: transform 0.25s ease; }
.op-faq-item.is-open .op-faq-q svg { transform: rotate(45deg); }
.op-faq-a { padding: 0 4px; max-height: 0; overflow: hidden; transition: max-height 0.28s ease, padding 0.28s ease; }
.op-faq-item.is-open .op-faq-a { padding: 0 60px 26px 4px; max-height: 460px; }
.op-faq-a p { color: var(--op-muted); font-size: 0.98rem; }

.op-contact-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 52px; align-items: start; }
.op-contact-intro h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 18px; }
.op-contact-intro p { color: var(--op-muted); margin-bottom: 28px; }
.op-contact-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.op-contact-points li { display: flex; align-items: flex-start; gap: 11px; color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; }
.op-contact-points svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; color: var(--op-ok); }
.op-contact-direct { margin-top: 32px; font-size: 0.95rem; color: var(--op-muted); }
.op-contact-direct a { color: #ffffff; box-shadow: inset 0 -1px 0 var(--op-line); }
.op-contact-direct a:hover { box-shadow: inset 0 -1px 0 currentColor; }

.op-form-card {
    background: var(--op-glass);
    backdrop-filter: var(--op-glass-blur);
    -webkit-backdrop-filter: var(--op-glass-blur);
    border-radius: var(--op-radius-tile);
    padding: 34px 32px;
    box-shadow: var(--op-shadow-tile);
}
.op-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 18px; }
.op-form-full { grid-column: 1 / -1; }
.op-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.op-field label { font-size: 0.82rem; color: var(--op-muted); }
.op-field input, .op-field select, .op-field textarea {
    width: 100%;
    border: none;
    box-shadow: inset 0 0 0 1px var(--op-line);
    background: rgba(0, 0, 0, 0.28);
    border-radius: var(--op-radius-sm);
    padding: 13px 15px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--op-text);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}
.op-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px 6px;
    padding-right: 40px;
}
.op-field select option { background: #101014; color: #ffffff; }
.op-field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.op-field input::placeholder, .op-field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.op-field input:focus, .op-field select:focus, .op-field textarea:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.42);
    box-shadow: inset 0 0 0 1px rgba(var(--op-brand-rgb), 0.7);
}
.op-field-error { font-size: 0.8rem; color: var(--op-danger); }
.op-consent { display: flex; align-items: flex-start; gap: 11px; font-size: 0.85rem; color: var(--op-muted); line-height: 1.55; }
.op-consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--op-brand); flex-shrink: 0; }
.op-consent a { color: #ffffff; box-shadow: inset 0 -1px 0 var(--op-line); }

.op-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.op-form-alert { border-radius: var(--op-radius-sm); padding: 14px 16px; font-size: 0.92rem; margin-bottom: 18px; }
.op-form-alert-ok { background: rgba(92, 242, 168, 0.12); color: var(--op-ok); }
.op-form-alert-error { background: rgba(255, 122, 107, 0.12); color: var(--op-danger); }
.op-form-success { text-align: center; padding: 24px 8px; }
.op-form-success-mark {
    display: flex; align-items: center; justify-content: center;
    width: 62px; height: 62px; margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(92, 242, 168, 0.12);
    color: var(--op-ok);
}
.op-form-success-mark svg { width: 30px; height: 30px; }
.op-form-success h3 { font-size: 1.25rem; margin-bottom: 10px; }
.op-form-success p,
.op-form-success-text { color: var(--op-muted); }
.op-form-success-text p { margin: 0; }

@media (max-width: 980px) {
    .op-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .op-media-grid.op-media-cols-2,
    .op-media-grid.op-media-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .op-section { padding: 72px 0; }
    .op-section-head { margin-bottom: 38px; }
    .op-form-grid { grid-template-columns: 1fr; }
    .op-form-card { padding: 26px 22px; }
    .op-tile, .op-glass, .op-feature-group, .op-package { padding: 26px 24px; }
    .op-mock { display: none; }
    .op-mockup-grid { grid-template-columns: 1fr; }
    .op-media-grid.op-media-cols-1,
    .op-media-grid.op-media-cols-2,
    .op-media-grid.op-media-cols-3 { grid-template-columns: 1fr; }
}

.op-footer {
    background: var(--op-bg-deep);
    box-shadow: inset 0 1px 0 var(--op-line);
    color: var(--op-muted);
    padding: 64px 0 36px;
    font-size: 0.94rem;
}
.op-footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 40px;
    justify-content: space-between;
    margin-bottom: 44px;
}
.op-footer-brand { max-width: 340px; }
.op-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 28px;
}
.op-footer-legal a { color: var(--op-muted); transition: color 0.2s ease; }
.op-footer-legal a:hover { color: #ffffff; }
.op-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    box-shadow: inset 0 1px 0 var(--op-line);
    font-size: 0.85rem;
    color: var(--op-faint);
}
.op-footer-bottom-left { justify-self: start; }
.op-footer-bottom-center { justify-self: center; text-align: center; }
.op-footer-bottom-right { justify-self: end; }
.op-footer-copy { text-transform: uppercase; }
.op-footer-credit-link {
    color: inherit;
    text-decoration: none;
}
.op-footer-credit-link:hover,
.op-footer-credit-link:focus-visible {
    color: #ffffff;
    text-decoration: none;
}
@media (max-width: 720px) {
    .op-footer-top { justify-content: center; text-align: center; }
    .op-footer-legal { justify-content: center; width: 100%; }
    .op-footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .op-footer-bottom-left,
    .op-footer-bottom-center,
    .op-footer-bottom-right { justify-self: center; }
}

.op-legal { padding: calc(var(--op-header-h) + 76px) 0 96px; }
.op-legal-inner { max-width: 780px; margin: 0 auto; }
.op-legal h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 28px; }
.op-legal-body { font-size: 1.02rem; color: rgba(255, 255, 255, 0.78); }
.op-legal-body h2 { font-size: 1.26rem; margin: 36px 0 12px; }
.op-legal-body h3 { font-size: 1.06rem; margin: 26px 0 10px; }
.op-legal-body p { margin-bottom: 14px; color: var(--op-muted); }
.op-legal-body a { color: #ffffff; box-shadow: inset 0 -1px 0 var(--op-line); }
.op-legal-body ul, .op-legal-body ol { color: var(--op-muted); padding-left: 22px; margin-bottom: 14px; }
.op-legal-body li { margin-bottom: 7px; }
.op-legal-body hr { border: none; height: 1px; background: var(--op-line); margin: 32px 0; }

.op-wrap-narrow { max-width: 780px; }
.op-text-center { text-align: center; }
.op-text-center .op-section-head { align-items: center; }
.op-prose { font-size: 1.05rem; line-height: 1.7; color: var(--op-muted); }
.op-prose p { margin: 0 0 1.1em; }
.op-prose p:last-child { margin-bottom: 0; }

.op-cta-band {
    padding: 48px 40px;
    border-radius: var(--op-radius, 20px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
}
.op-cta-band .op-section-head { margin-bottom: 0; }
.op-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 700px) {
    .op-cta-band { padding: 36px 24px; }
}

.op-quotes {
    display: grid;
    gap: 18px;
}
.op-quotes-cols-1 { grid-template-columns: 1fr; }
.op-quotes-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.op-quotes-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.op-quote {
    margin: 0;
    padding: 28px 26px;
    border-radius: var(--op-radius, 20px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.op-quote-text {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}
.op-quote-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.88rem;
    color: var(--op-faint);
}
.op-quote-meta cite {
    font-style: normal;
    font-weight: 600;
    color: var(--op-muted);
}
@media (max-width: 900px) {
    .op-quotes-cols-2,
    .op-quotes-cols-3 { grid-template-columns: 1fr; }
}
