/* OfferPilots public pages. Public theme selection is explicit and separate from
   the authenticated app's operating-system preference. All public-only classes
   are `lp-`/`op-` prefixed to avoid colliding with the application shell. */

html { scroll-behavior: smooth; }

:root[data-public-theme="light"] {
    color-scheme: light;
    --surface: #ffffff;
    --surface-2: #f5f6f5;
    --surface-3: #eef0ee;
    --ink: #202a2d;
    --muted: #5f6a6c;
    --faint: #6b7678;
    --line: #e4e7e5;
    --line-2: #d5d9d6;
    --brand: #b9821a;
    --brand-ink: #8a6410;
    --brand-soft: #f6ecd0;
    --on-brand: #2a2113;
    --good: #2f9e58;
    --good-bg: #e7f5ec;
    --good-ink: #1c7a42;
    --bad: #cf4b5e;
    --bad-bg: #fbe9ec;
    --bad-ink: #a72d40;
    --shadow: 0 2px 6px rgba(28, 38, 38, .06), 0 12px 30px rgba(28, 38, 38, .10);
}

:root[data-public-theme="dark"] {
    color-scheme: dark;
    --surface: #182224;
    --surface-2: #111a1c;
    --surface-3: #202d2f;
    --ink: #edf2f0;
    --muted: #a5b1ae;
    --faint: #84928f;
    --line: #33413e;
    --line-2: #42514e;
    --brand: #dda83d;
    --brand-ink: #f0c665;
    --brand-soft: #392d14;
    --on-brand: #211906;
    --good: #5ac281;
    --good-bg: #173523;
    --good-ink: #78d79b;
    --bad: #e87989;
    --bad-bg: #3b1d24;
    --bad-ink: #f3a0ac;
    --shadow: 0 2px 8px rgba(0, 0, 0, .35), 0 18px 48px rgba(0, 0, 0, .45);
}

.lp {
    /* the landing owns its own vertical rhythm; app.css .page is not used here */
    color: var(--ink);
    background: var(--surface-2);
}
.lp-wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

/* ── public nav (inline in welcome.html) ─────────────────────────────── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 1.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}
.lp-nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: -.01em;
    text-decoration: none;
    color: var(--ink);
    font-size: 1.02rem;
}
.lp-brand-mark { color: var(--brand); }
.lp-nav-links { display: flex; align-items: center; gap: 1.4rem; }
.lp-nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
}
.lp-nav-links a:hover { color: var(--ink); }
.lp-nav-cta { display: flex; align-items: center; gap: .55rem; }
/* EN ⇄ 中文 language toggle — a ghost pill in the public nav (E5). Stays in
   .lp-nav-cta (not .lp-nav-links) so it survives the ≤860px nav-links collapse. */
.lp-lang {
    display: inline-flex;
    align-items: center;
    padding: .28rem .66rem;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    background: var(--surface);
    color: var(--muted);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
}
.lp-lang:hover { color: var(--ink); background: var(--surface-2); }
.lp-lang-short { display: none; }
.lp-theme-toggle {
    width: 34px;
    height: 34px;
    flex: none;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    color: var(--muted);
    background: var(--surface);
    cursor: pointer;
}
.lp-theme-toggle:hover { color: var(--ink); background: var(--surface-2); }
.lp-theme-icon { grid-area: 1 / 1; font-size: .9rem; line-height: 1; }
.lp-theme-icon-dark { display: none; }
:root[data-public-theme="dark"] .lp-theme-icon-light { display: none; }
:root[data-public-theme="dark"] .lp-theme-icon-dark { display: inline; }

/* ── focused signup ───────────────────────────────────────────────── */
.op-signup {
    min-height: 100vh;
    overflow-x: hidden;
    --surface: #ffffff;
    --surface-2: #f6f8f7;
    --surface-3: #f1f4f2;
    --ink: #1d292c;
    --muted: #5e6b6e;
    --faint: #7a8789;
    --line: #dde3df;
    --line-2: #cbd3ce;
    --brand: #c78a12;
    --brand-ink: #c78a12;
    --brand-soft: #fbf2dc;
    --on-brand: #211a0c;
    --good: #218958;
    --shadow: 0 20px 55px rgba(27, 39, 40, .11), 0 2px 8px rgba(27, 39, 40, .05);
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 28%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 31rem),
        radial-gradient(circle at 89% 73%, color-mix(in srgb, var(--good) 7%, transparent), transparent 27rem),
        var(--surface-2);
}
.op-signup .lp-auth-nav { position: relative; }
.op-signup .lp-auth-nav .lp-nav-inner { max-width: 1120px; }
.op-signup-main {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 64px;
}
.op-signup-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 455px);
    gap: 64px;
    align-items: center;
    width: 100%;
    min-width: 0;
}
.op-signup-value,
.op-signup-form-panel,
.op-signup-value-inner,
.op-signup-form-inner { min-width: 0; }
.op-signup-value {
    padding: 16px 0;
}
.op-signup-value-inner {
    width: 100%;
    max-width: 650px;
}
.op-signup-eyebrow {
    margin: 0 0 12px;
    color: var(--brand);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .13em;
    line-height: 1.3;
    text-transform: uppercase;
}
.op-signup-value h2 {
    max-width: 650px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(43px, 5.1vw, 70px);
    line-height: .98;
    letter-spacing: -.052em;
    text-wrap: balance;
}
.op-signup-value-copy {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}
.op-signup-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}
.op-signup-benefit {
    min-height: 118px;
    padding: 15px;
    border: 1px solid color-mix(in srgb, var(--brand) 32%, var(--line));
    border-radius: 13px;
    background: color-mix(in srgb, var(--surface) 87%, transparent);
}
.op-signup-benefit-icon {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    margin-bottom: 12px;
    border-radius: 9px;
    color: var(--brand);
    background: var(--brand-soft);
    font-weight: 900;
}
.op-signup-benefit-icon-linkedin { font-size: 11px; }
.op-signup-benefit strong,
.op-signup-benefit small,
.op-signup-benefit em { display: block; }
.op-signup-benefit strong { color: var(--ink); font-size: 13px; line-height: 1.25; }
.op-signup-benefit small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.op-signup-benefit em {
    margin-top: 7px;
    color: var(--brand);
    font-size: 9px;
    font-weight: 750;
    font-style: normal;
    line-height: 1.25;
}
.op-signup-trust {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
}
.op-signup-trust-mark {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: none;
    border-radius: 50%;
    color: var(--good);
    background: color-mix(in srgb, var(--good) 14%, transparent);
    font-weight: 900;
}
.op-signup-form-panel {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow);
}
.op-signup-form-inner {
    width: 100%;
}
.op-signup-form-panel h1 {
    margin: 2px 0 5px;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.035em;
}
.op-signup-no-card { margin: 0; color: var(--muted); font-size: 14px; }
.op-signup-alert {
    margin-top: 20px;
    padding: 11px 13px;
    border: 1px solid var(--bad);
    border-radius: 11px;
    color: var(--bad-ink);
    background: var(--bad-bg);
    font-size: .83rem;
}
.op-signup-form {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-top: 24px;
}
.op-signup-google-form { margin-top: 24px; }
.op-signup-google-form ~ .op-signup-form { margin-top: 0; }
.op-signup-google {
    min-height: 46px;
    justify-content: center;
    text-decoration: none;
}
.op-google-mark {
    color: transparent;
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 18px;
    font-weight: 900;
}
.op-signup-form .or-sep { margin: 18px 0 15px; }
.op-signup-field {
    margin: 14px 0 6px;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 650;
}
.op-signup-form > input,
.op-signup-password input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--line-2);
    border-radius: 11px;
    color: var(--ink);
    background: var(--surface-2);
    font: inherit;
}
.op-signup-form input:hover { border-color: color-mix(in srgb, var(--line-2) 56%, var(--ink)); }
.op-signup-form input:focus {
    border-color: var(--brand);
    outline: 2px solid color-mix(in srgb, var(--brand) 32%, transparent);
    outline-offset: 1px;
    background: var(--surface);
}
.op-signup-form input[aria-invalid="true"] { border-color: var(--bad); }
.op-signup-password { position: relative; min-width: 0; }
.op-signup-password input { padding-right: 64px; }
.op-signup-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    padding: 5px 7px;
    border: 0;
    border-radius: 7px;
    color: var(--brand-ink);
    background: transparent;
    font: inherit;
    font-size: .74rem;
    font-weight: 700;
    cursor: pointer;
}
.op-signup-password-toggle:hover { background: var(--brand-soft); }
.op-signup-hint,
.op-signup-field-error { margin: 5px 0 0; font-size: .74rem; }
.op-signup-hint { color: var(--faint); }
.op-signup-field-error { color: var(--bad-ink); }
.op-signup-consent-wrap {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 20px;
}
.op-signup-consent-wrap input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--brand);
}
.op-signup-consent-wrap label {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.55;
}
.op-signup-consent-wrap a { font-weight: 650; }
.op-signup-consent-error { margin-left: 28px; }
.op-signup-submit { min-height: 48px; margin-top: 20px; }
.op-signup-signin { margin: 22px 0 0; color: var(--muted); text-align: center; font-size: .84rem; }
.op-signup-signin a { font-weight: 700; }
.op-signup-plan-note {
    margin: 13px auto 0;
    max-width: 36ch;
    color: var(--faint);
    text-align: center;
    font-size: .72rem;
    line-height: 1.5;
}
:root[data-public-theme="dark"] .op-signup {
    --surface: #182426;
    --surface-2: #10191b;
    --surface-3: #202d2f;
    --ink: #edf2ef;
    --muted: #a8b5b3;
    --faint: #82908e;
    --line: #304043;
    --line-2: #405154;
    --brand: #dda83c;
    --brand-ink: #dda83c;
    --brand-soft: #33280f;
    --on-brand: #241a06;
    --good: #59ca8b;
    --shadow: 0 24px 60px rgba(0, 0, 0, .38), 0 2px 8px rgba(0, 0, 0, .3);
    background:
        radial-gradient(circle at 15% 28%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 31rem),
        radial-gradient(circle at 89% 73%, color-mix(in srgb, var(--good) 7%, transparent), transparent 27rem),
        var(--surface-2);
}

/* ── focused sign-in and recovery ─────────────────────────────────── */
.op-auth {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 24%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 29rem),
        radial-gradient(circle at 86% 78%, color-mix(in srgb, var(--good) 6%, transparent), transparent 25rem),
        var(--surface-2);
}
.op-auth .lp-auth-nav { position: relative; }
.op-auth .lp-auth-nav .lp-nav-inner { max-width: 1120px; }
.op-auth-main {
    width: min(460px, calc(100% - 40px));
    min-height: calc(100vh - 62px);
    margin: 0 auto;
    padding: 52px 0 64px;
    display: flex;
    align-items: center;
}
.op-auth-card {
    width: 100%;
    max-width: 460px;
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow);
}
.op-auth-card h1 {
    margin: 2px 0 7px;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.035em;
}
.op-auth-intro {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.op-auth-alert {
    margin-top: 20px;
    padding: 11px 13px;
    border: 1px solid;
    border-radius: 11px;
    font-size: .83rem;
    line-height: 1.45;
}
.op-auth-alert-error {
    border-color: var(--bad);
    color: var(--bad-ink);
    background: var(--bad-bg);
}
.op-auth-alert-success {
    border-color: var(--good);
    color: var(--good-ink);
    background: var(--good-bg);
}
.op-auth-google { margin-top: 24px; }
.op-auth .or-sep { margin: 18px 0 15px; }
.op-auth-form { margin-top: 22px; }
.op-auth .or-sep + .op-auth-form { margin-top: 0; }
.op-auth-label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
}
.op-auth-label-row .op-signup-field { margin-top: 0; }
.op-auth-forgot {
    color: var(--brand-ink);
    font-size: .78rem;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.op-auth-submit { min-height: 48px; margin-top: 22px; }
.op-auth-supporting {
    margin: 22px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: .84rem;
}
.op-auth-supporting a { font-weight: 700; }
.op-auth-state > p:not(.op-signup-eyebrow) {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
}
.op-auth-state-action { min-height: 48px; margin-top: 24px; }
.op-signup-field-error:empty { display: none; }
.op-signup-password-toggle:focus-visible,
.op-auth-forgot:focus-visible,
.op-auth-supporting a:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}
:root[data-public-theme="dark"] .op-auth {
    background:
        radial-gradient(circle at 18% 24%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 29rem),
        radial-gradient(circle at 86% 78%, color-mix(in srgb, var(--good) 6%, transparent), transparent 25rem),
        var(--surface-2);
}

@media (max-width: 900px) {
    .op-signup-main { padding-top: 34px; }
    .op-signup-shell {
        grid-template-columns: 1fr;
        gap: 26px;
        max-width: 650px;
        margin: auto;
    }
    .op-signup-value { padding: 0; }
    .op-signup-value h2 { font-size: clamp(39px, 10vw, 58px); }
    .op-signup-value-copy { margin-top: 16px; font-size: 16px; }
    .op-signup-benefits { margin-top: 22px; }
    .op-signup-trust { margin-top: 16px; }
}
@media (max-width: 720px) {
    .op-signup-shell { display: block; }
    .op-signup-value { display: none; }
    .op-auth-main {
        width: calc(100% - 28px);
        min-height: calc(100vh - 58px);
        padding: 29px 0 42px;
    }
    .op-auth-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        border-radius: 16px;
    }
    .op-auth-card h1 { font-size: 25px; }
}
@media (max-width: 560px) {
    .op-signup-main { width: calc(100% - 28px); padding: 29px 0 42px; }
    .op-signup-form-panel { padding: 22px 20px; border-radius: 16px; }
    .op-signup-form-panel h1 { font-size: 25px; }
}

/* ── hero ────────────────────────────────────────────────────────────── */
.lp-hero {
    text-align: center;
    padding: 4rem 0 3rem;
}
.lp-eyebrow {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-ink);
    margin-bottom: .8rem;
}
.lp-title {
    font-size: 3.6rem;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 0 auto .9rem;
    max-width: 16ch;
    text-wrap: balance;
}
.lp-sub {
    color: var(--muted);
    font-size: 1.25rem;
    max-width: 40rem;
    margin: 0 auto;
    text-wrap: balance;
}
.lp-cta-row {
    display: flex;
    gap: .7rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}
.lp-btn-lg { padding: .72rem 1.3rem; font-size: .98rem; border-radius: 12px; }
.lp-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .4rem 1rem;
    margin-top: 1.6rem;
    color: var(--faint);
    font-size: .82rem;
}
.lp-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.lp-trust .lp-tick { color: var(--good-ink); }

/* ── section scaffolding ─────────────────────────────────────────────── */
.lp-section { padding: 3.5rem 0; scroll-margin-top: 5rem; }
.lp-section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.lp-section-head h2 {
    font-size: 1.9rem;
    letter-spacing: -.02em;
    margin: .3rem 0 .4rem;
    text-wrap: balance;
}
.lp-section-head .lp-eyebrow { color: var(--faint); }
.lp-section-head p { color: var(--muted); margin: 0; }

/* ── how it works: alternating copy / mock blocks ────────────────────── */
.lp-steps { display: flex; flex-direction: column; gap: 3rem; }
.lp-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.lp-step-copy { max-width: 30rem; }
.lp-step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-ink);
    font-family: var(--mono);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .8rem;
}
.lp-step-copy h3 { font-size: 1.7rem; letter-spacing: -.01em; margin: 0 0 .5rem; }
.lp-step-copy p { color: var(--muted); margin: 0; font-size: 1.02rem; }
.lp-step-mock { display: flex; justify-content: center; }
/* alternate: mock on the left for even steps */
.lp-step.lp-rev .lp-step-copy { order: 2; }
.lp-step.lp-rev .lp-step-mock { order: 1; }

/* ── mock cards (pure HTML/CSS, no images, no JS) ────────────────────── */
.lp-mock {
    width: 100%;
    max-width: 340px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1rem;
}
.lp-mock-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: .9rem;
}
.lp-mock-brand { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; }
.lp-mock-brand .lp-brand-mark { font-size: .9rem; }
.lp-chip-ok {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--good-ink);
    background: var(--good-bg);
    border-radius: 999px;
    padding: .16rem .5rem;
}
.lp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); display: inline-block; }
.lp-mock-cap {
    background: var(--brand);
    color: var(--on-brand);
    border-radius: 10px;
    padding: .6rem;
    text-align: center;
    font-weight: 600;
    font-size: .9rem;
}
.lp-mock-hint { color: var(--faint); font-size: .78rem; text-align: center; margin-top: .6rem; }

/* profile mock */
.lp-mock-name { font-weight: 700; font-size: 1.02rem; }
.lp-mock-role { color: var(--muted); font-size: .85rem; margin-bottom: .7rem; }
.lp-src {
    display: inline-block;
    margin-left: .4rem;
    padding: .05rem .4rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--faint);
    font-size: .62rem;
    font-weight: 600;
    vertical-align: middle;
}
.lp-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.lp-skill {
    padding: .22rem .55rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    font-size: .76rem;
}

/* match ring + résumé thumbnail (step 3) */
.lp-match { display: flex; align-items: center; gap: 1.1rem; }
.lp-ring {
    position: relative;
    width: 96px;
    height: 96px;
    flex: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--good) 0 331deg, var(--line) 331deg 360deg);
}
.lp-ring::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: var(--surface);
}
.lp-ring-inner { position: relative; z-index: 1; text-align: center; line-height: 1; }
.lp-ring-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--good-ink); }
.lp-ring-lab { display: block; font-size: .64rem; color: var(--muted); margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.lp-match-note { font-size: .8rem; color: var(--muted); }
.lp-match-note strong { color: var(--ink); }

.lp-doc {
    margin-top: .9rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .7rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.lp-doc-head { height: 8px; width: 45%; border-radius: 3px; background: var(--brand); }
.lp-doc-line { height: 6px; border-radius: 3px; background: var(--line-2); }
.lp-doc-line.s { width: 70%; }
.lp-doc-line.m { width: 88%; }

/* Q&A flip / flashcard (step 4) */
.lp-qa { position: relative; }
.lp-qa-tag {
    font-family: var(--mono);
    font-size: .64rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-ink);
    font-weight: 700;
}
.lp-qa-q { font-weight: 600; font-size: .95rem; margin: .3rem 0 .9rem; }
.lp-qa-div { border: none; border-top: 1px dashed var(--line-2); margin: 0 0 .8rem; }
.lp-qa-a { font-size: .85rem; color: var(--muted); }
.lp-qa-a b { color: var(--good-ink); font-weight: 700; }

/* ── feature grid ────────────────────────────────────────────────────── */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.lp-feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.3rem;
    box-shadow: var(--shadow);
}
.lp-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--brand-ink);
    margin-bottom: .8rem;
}
.lp-feature-icon svg { width: 20px; height: 20px; }
.lp-feature h3 { font-size: 1.05rem; margin: 0 0 .35rem; }
.lp-feature p { color: var(--muted); margin: 0; font-size: .92rem; }
/* the provenance tile is the differentiator — green-accented */
.lp-feature.lp-star { border-color: var(--good); background: linear-gradient(180deg, var(--good-bg), var(--surface)); }
.lp-feature.lp-star .lp-feature-icon { background: var(--good-bg); color: var(--good-ink); }
.lp-star-tag {
    display: inline-block;
    margin-top: .7rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--good-ink);
}

/* ── CTA band ────────────────────────────────────────────────────────── */
.lp-band {
    background: linear-gradient(180deg, var(--surface-3), var(--surface-2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    padding: 3.5rem 1.25rem;
}
.lp-band h2 { font-size: 2rem; letter-spacing: -.02em; margin: 0 0 .4rem; text-wrap: balance; }
.lp-band p { color: var(--muted); margin: 0 0 1.4rem; }
.lp-band-cta { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

/* ── footer ──────────────────────────────────────────────────────────── */
.lp-footer {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 2.2rem 1.25rem;
}
.lp-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.lp-footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.lp-footer-links a { color: var(--muted); text-decoration: none; font-size: .88rem; }
.lp-footer-links a:hover { color: var(--ink); }
.lp-footer-legal { color: var(--faint); font-size: .8rem; }

/* ── responsive ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .lp-title { font-size: 2.6rem; }
    .lp-step { grid-template-columns: 1fr; gap: 1.4rem; }
    /* stacked: copy always above its mock, regardless of desktop alternation */
    .lp-step .lp-step-copy { order: 1; }
    .lp-step .lp-step-mock { order: 2; }
    .lp-features { grid-template-columns: repeat(2, 1fr); }
    .lp-nav-links { display: none; }
}
@media (max-width: 560px) {
    .lp-title { font-size: 2.2rem; }
    .lp-sub { font-size: 1.05rem; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════════════
   E2 — public /pricing page. Everything below is scoped to pricing.html;
   it reuses the lp- palette + conventions above and adds nothing global.
   ════════════════════════════════════════════════════════════════════════ */

/* current-page marker in the shared public nav */
.lp-nav-links a.lp-current { color: var(--ink); font-weight: 600; }

/* screen-reader-only text (e.g. "Included" behind a ✓ tick) */
.lp-sr {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

/* the pricing header reuses .lp-hero but wants a little less bottom room */
.lp-pricing.lp-hero { padding-bottom: 1.5rem; }

/* ── tier cards ──────────────────────────────────────────────────────── */
.lp-tiers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: start;
}
.lp-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.lp-tier-head { border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: 1rem; }
.lp-tier-name { font-size: 1.25rem; letter-spacing: -.01em; margin: 0 0 .5rem; }
.lp-tier-sub {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--brand-ink);
    background: var(--brand-soft);
    border-radius: 999px;
    padding: .12rem .45rem;
    vertical-align: middle;
    margin-left: .2rem;
}
.lp-tier-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .4rem; }
.lp-tier-now { font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em; }
.lp-tier-per { color: var(--muted); font-size: .9rem; }
.lp-tier-tag { color: var(--muted); font-size: .88rem; margin: .6rem 0 0; }

.lp-tier-cta { width: 100%; text-align: center; }
.lp-tier-cta[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }
.lp-tier-note { color: var(--faint); font-size: .78rem; text-align: center; margin: .6rem 0 0; }

.lp-tier-list { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.lp-tier-list li { display: flex; align-items: baseline; gap: .5rem; font-size: .9rem; }
.lp-tier-list .lp-tick { color: var(--good-ink); flex: none; }
.lp-tier-feat { color: var(--ink); }
.lp-tier-lim { margin-left: auto; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }

.lp-pr-warn {
    margin-top: 1.1rem;
    background: var(--brand-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .7rem .8rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.45;
}
.lp-pr-warn strong { color: var(--brand-ink); display: block; margin-bottom: .15rem; }

/* ── comparison table ────────────────────────────────────────────────── */
.lp-ct-scroll { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lp-ct-scroll:focus-visible { outline: 3px solid var(--brand); outline-offset: .2rem; }
.lp-ct {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}
.lp-ct thead th {
    text-align: center;
    font-size: .9rem;
    padding: .9rem .8rem;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
}
.lp-ct thead th:first-child { text-align: left; }
.lp-ct tbody th {
    text-align: left;
    font-weight: 500;
    padding: .8rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.lp-ct tbody td {
    text-align: center;
    padding: .8rem;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.lp-ct tbody tr:last-child th,
.lp-ct tbody tr:last-child td { border-bottom: none; }
.lp-ct-name { display: block; color: var(--ink); font-weight: 600; font-size: .92rem; }
.lp-ct-desc { display: block; color: var(--faint); font-size: .78rem; margin-top: .2rem; max-width: 34ch; }
.lp-ct-tick { color: var(--good-ink); font-weight: 700; }
/* ── FAQ (native <details>, no JS) ────────────────────────────────────── */
.lp-faq { max-width: 46rem; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.lp-faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .2rem .2rem;
}
.lp-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: .85rem 1rem;
    font-weight: 600;
    font-size: .98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: "+";
    color: var(--faint);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    flex: none;
}
.lp-faq-item[open] summary::after { content: "\2212"; } /* minus */
.lp-faq-item p { color: var(--muted); margin: 0 1rem .9rem; font-size: .92rem; line-height: 1.55; }
.lp-faq-contact { text-align: center; color: var(--muted); font-size: .9rem; margin: 1.6rem 0 0; }

/* ── pricing responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
    .lp-tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
}
@media (max-width: 620px) {
    .lp-tiers { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
}

/* ════════════════════════════════════════════════════════════════════════
   E3 — public legal pages (/terms, /privacy, /refund-policy). Scoped to the
   three legal templates; reuses the lp- palette + conventions above and adds
   nothing global. No JavaScript.
   ════════════════════════════════════════════════════════════════════════ */

/* ── legal header ────────────────────────────────────────────────────── */
.lp-legal-head { text-align: center; padding: 3rem 0 1.4rem; }
.lp-legal-head .lp-title { font-size: 2.4rem; max-width: 22ch; }
.lp-legal-meta {
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--faint);
    margin: .6rem 0 0;
}
.lp-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .3rem .9rem;
    margin-top: 1.1rem;
    font-size: .88rem;
}
.lp-legal-links a { color: var(--muted); text-decoration: none; }
.lp-legal-links a:hover { color: var(--ink); }
.lp-legal-links a.lp-current { color: var(--ink); font-weight: 600; }

/* ── the DRAFT banner — amber caution card, deliberately prominent ───── */
.lp-draft {
    max-width: 46rem;
    margin: 0 auto 2.2rem;
    background: var(--brand-soft);
    border: 1px solid var(--brand);
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    padding: .9rem 1.1rem;
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.55;
}
.lp-draft strong { color: var(--brand-ink); }

/* ── legal reading column ────────────────────────────────────────────── */
.lp-legal { max-width: 46rem; margin: 0 auto; padding-bottom: .5rem; }
.lp-legal-lead {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    text-wrap: balance;
}
.lp-legal-sec { margin: 0 0 2rem; }
.lp-legal-sec h2 {
    font-size: 1.25rem;
    letter-spacing: -.01em;
    margin: 0 0 .7rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--line);
}
.lp-legal-sec h3 { font-size: 1rem; color: var(--ink); margin: 1.3rem 0 .4rem; }
.lp-legal-sec p { color: var(--muted); font-size: .95rem; line-height: 1.65; margin: 0 0 .85rem; }
.lp-legal-sec ul { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0 0 .85rem; padding-left: 1.2rem; }
.lp-legal-sec li { margin: 0 0 .5rem; }
.lp-legal-sec strong { color: var(--ink); }
.lp-legal-sec a { color: var(--brand-ink); text-decoration: underline; }
.lp-legal-section { padding-top: 0; }
.lp-legal-summary {
    max-width: 54rem;
    margin: 0 auto 2rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.lp-legal-summary h2 { margin: .15rem 0 .55rem; font-size: 1.3rem; }
.lp-legal-summary p:last-child { margin: 0; color: var(--muted); line-height: 1.65; }

/* inline TODO(founder) markers — visible so the founder can find every open item */
.lp-todo {
    font-family: var(--mono);
    font-size: .82em;
    background: var(--brand-soft);
    color: var(--brand-ink);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: .05em .35em;
}

/* ── blog empty-state card (one placeholder slot; no posts yet) ───────── */
.lp-empty {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
    background: var(--panel, transparent);
    border: 1px dashed var(--line);
    border-radius: 14px;
    padding: 2.4rem 1.5rem;
}
.lp-empty-lead { color: var(--ink); font-size: 1.05rem; font-weight: 600; margin: 0 0 .4rem; }
.lp-empty-body { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0 auto; max-width: 34rem; }
.lp-empty-tag {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--brand-ink);
    background: var(--brand-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .25em .7em;
}

/* ── legal responsive ────────────────────────────────────────────────── */
@media (max-width: 560px) {
    .lp-legal-head .lp-title { font-size: 1.8rem; }
}

/* ── OfferPilots evidence-first landing (2026 redesign) ─────────────────
   Content is visible by default. Only html.js activates reveal pre-states. */
.op-landing {
    --op-bg: #f7f6f1;
    --op-surface: #ffffff;
    --op-surface-2: #f0f3ef;
    --op-ink: #172225;
    --op-readable: #596663;
    --op-line: #d7ded9;
    --op-gold: #c78a13;
    --op-gold-ink: #6f4a06;
    --op-gold-soft: #fff1ce;
    --op-green: #2f7c50;
    --op-green-ink: #22633e;
    --op-green-soft: #e8f5ec;
    --op-bad-ink: #8f2f2b;
    --op-bad-soft: #fdecea;
    --op-headline-shimmer-base: #6f4a06;
    --op-headline-shimmer-highlight: #e6aa35;
    --op-toolbar-float-shadow-low: 0 14px 34px rgba(23, 34, 37, .14);
    --op-toolbar-float-shadow-high: 0 18px 38px rgba(23, 34, 37, .2);
    --op-shadow: 0 24px 70px rgba(23, 34, 37, .12);
    color: var(--op-ink);
    background: var(--op-bg);
    overflow-x: clip;
}

:root[data-public-theme="dark"] .op-landing {
    --op-bg: #10191b;
    --op-surface: #182224;
    --op-surface-2: #202d2f;
    --op-ink: #edf2f0;
    --op-readable: #b5c0bd;
    --op-line: #354441;
    --op-gold: #dda83d;
    --op-gold-ink: #f3c96b;
    --op-gold-soft: #392d14;
    --op-green: #67c98b;
    --op-green-ink: #8bdcaa;
    --op-green-soft: #173523;
    --op-bad-ink: #ffaaa3;
    --op-bad-soft: #402321;
    --op-headline-shimmer-base: #dda83d;
    --op-headline-shimmer-highlight: #fff1b8;
    --op-toolbar-float-shadow-low: 0 14px 34px rgba(0, 0, 0, .28);
    --op-toolbar-float-shadow-high: 0 18px 38px rgba(0, 0, 0, .38);
    --op-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.op-landing *,
.op-landing *::before,
.op-landing *::after { box-sizing: border-box; }
.op-landing main,
.op-landing section,
.op-landing article,
.op-landing div,
.op-landing nav { min-width: 0; }
.op-landing [hidden] { display: none !important; }
.op-landing :focus-visible {
    outline: 3px solid var(--op-gold);
    outline-offset: 3px;
}
.op-landing button,
.op-landing summary,
.op-landing a { -webkit-tap-highlight-color: transparent; }
.op-landing button:disabled { opacity: 1; }

.op-landing .lp-nav {
    height: 68px;
    padding: 0 1.25rem;
    background: rgba(255, 255, 255, .9);
    border-color: var(--op-line);
    backdrop-filter: blur(16px);
}
:root[data-public-theme="dark"] .op-landing .lp-nav {
    background: rgba(16, 25, 27, .92);
    border-color: var(--op-line);
}
.op-landing .lp-nav-inner { max-width: 1160px; height: 100%; }
.op-landing .lp-brand { color: var(--op-ink); font-size: 1.04rem; }
.lp-brand-image { display: block; object-fit: contain; }
.op-landing .lp-nav-links a,
.op-landing .lp-lang,
.op-landing .lp-theme-toggle { color: var(--op-readable); }
.op-landing .lp-nav-links a:hover,
.op-landing .lp-lang:hover,
.op-landing .lp-theme-toggle:hover { color: var(--op-ink); }
.op-landing .lp-lang,
.op-landing .lp-theme-toggle {
    background: var(--op-surface);
    border-color: var(--op-line);
}
.op-landing .btn.primary {
    color: #172225;
    background: var(--op-gold);
    border-color: var(--op-gold);
}
.op-landing .btn.ghost {
    color: var(--op-ink);
    background: var(--op-surface);
    border-color: var(--op-line);
}

.op-wrap {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}
.op-section {
    padding: 96px 0;
    scroll-margin-top: 72px;
}
.op-eyebrow,
.op-label {
    margin: 0 0 8px;
    color: var(--op-gold-ink);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}
.op-section-head {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}
.op-section-head h2,
.op-dashboard-copy h2,
.op-evidence-copy h2 {
    margin: 0 0 16px;
    color: var(--op-ink);
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.08;
    letter-spacing: -.045em;
    text-wrap: balance;
}
.op-section-head > p:last-child,
.op-dashboard-copy > p,
.op-evidence-copy > p {
    margin: 0;
    color: var(--op-readable);
    font-size: 17px;
    line-height: 1.65;
}
.op-example-note {
    display: block;
    margin-top: 10px;
    color: var(--op-readable);
    font-size: 11px;
    line-height: 1.5;
}

/* Hero and four-state browser scene. */
.op-hero {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    padding: 88px 0 78px;
    overflow: hidden;
    background:
        radial-gradient(circle at 54% 4%, var(--op-surface) 0, var(--op-bg) 50%, var(--op-surface-2) 100%);
}
.op-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: 56px;
    align-items: center;
}
.op-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: .28;
    pointer-events: none;
    animation: op-ambient-drift 12s ease-in-out infinite alternate;
}
.op-glow-one {
    width: 430px;
    height: 430px;
    left: -190px;
    top: 20px;
    background: var(--op-gold);
}
.op-glow-two {
    width: 500px;
    height: 500px;
    right: -220px;
    top: 110px;
    background: var(--op-green);
    animation-delay: -5s;
}
.op-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 7px 11px;
    border: 1px solid color-mix(in srgb, var(--op-gold) 55%, var(--op-line));
    border-radius: 999px;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-size: 12px;
    font-weight: 800;
}
.op-kicker > span[aria-hidden="true"] {
    width: 7px;
    height: 7px;
    flex: none;
    border-radius: 50%;
    background: var(--op-gold);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--op-gold) 18%, transparent);
}
.landing-enhanced .op-kicker {
    animation: op-kicker-float 3.4s ease-in-out infinite;
    will-change: transform;
}
.op-hero h1 {
    max-width: 680px;
    margin: 24px 0;
    color: var(--op-ink);
    font-size: clamp(50px, 6vw, 80px);
    line-height: .99;
    letter-spacing: -.064em;
    text-wrap: balance;
}
.op-shimmer {
    color: var(--op-gold-ink);
    background: linear-gradient(100deg, var(--op-gold-ink), var(--op-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.landing-enhanced .op-shimmer {
    background-image: linear-gradient(
        100deg,
        var(--op-headline-shimmer-base) 0 38%,
        var(--op-headline-shimmer-highlight) 48%,
        var(--op-headline-shimmer-base) 58% 100%
    );
    background-size: 220% 100%;
    background-position: 0 0;
    animation: op-headline-shimmer 5.5s linear infinite;
}
.op-lead {
    max-width: 600px;
    margin: 0 0 28px;
    color: var(--op-readable);
    font-size: 19px;
    line-height: 1.65;
}
.op-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}
.op-btn-lg {
    min-height: 48px;
    padding: .8rem 1.25rem;
    border-radius: 11px;
}
.op-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 21px 0 0;
    padding: 0;
    color: var(--op-readable);
    font-size: 12px;
    list-style: none;
}
.op-trust li {
    display: flex;
    align-items: center;
    gap: 7px;
}
.op-trust li > span[aria-hidden="true"] {
    width: 18px;
    height: 18px;
    flex: none;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--op-green) 45%, var(--op-line));
    border-radius: 50%;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
    font-weight: 900;
}
.op-hero-product { position: relative; }
.op-browser {
    overflow: hidden;
    padding: 10px 12px 12px;
    border: 1px solid var(--op-line);
    border-radius: 20px;
    color: var(--op-ink);
    background: var(--op-surface);
    box-shadow: var(--op-shadow);
}
.op-browser-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.op-example-chip {
    padding: 3px 8px;
    border: 1px solid color-mix(in srgb, var(--op-gold) 42%, var(--op-line));
    border-radius: 999px;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.op-scene-toolbar {
    min-height: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
}
.op-scene-playback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.op-scene-progress {
    color: var(--op-gold-ink);
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}
.op-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--op-green-ink);
    font-size: 11px;
    font-weight: 800;
}
.op-status::before { content: "✓"; font-weight: 950; }
.op-scene-toolbar button,
.op-browser [data-page-scene-panel] > button {
    min-height: 36px;
    padding: 7px 11px;
    border: 1px solid var(--op-line);
    border-radius: 9px;
    color: var(--op-ink);
    background: var(--op-surface-2);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}
.op-scene-toolbar button {
    min-height: 24px;
    margin-left: auto;
    padding: 4px 6px;
    border: 0;
    color: var(--op-readable);
    background: transparent;
}
.op-scene-toolbar .op-scene-playback button { margin-left: 0; }
.op-scene-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin: 8px 0 0;
    padding: 4px;
    border: 1px solid var(--op-line);
    border-radius: 11px;
    background: var(--op-surface-2);
}
.op-scene-tabs button {
    position: relative;
    min-width: 0;
    min-height: 31px;
    padding: 7px 5px;
    border: 0;
    border-radius: 8px;
    color: var(--op-readable);
    background: transparent;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
    cursor: pointer;
}
.op-scene-tabs button::after {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 2px;
    left: 6px;
    height: 2px;
    border-radius: 999px;
    background: var(--op-gold);
    transform: scaleX(0);
    transform-origin: left;
}
.op-scene-tabs button[aria-selected="true"] {
    border: 0;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    box-shadow: 0 4px 13px color-mix(in srgb, var(--op-gold) 10%, transparent);
}
.landing-enhanced [data-page-playback="playing"]
    .op-scene-tabs button[aria-selected="true"]::after {
    animation: op-scene-progress var(--page-scene-step-duration) linear both;
}
.op-demo-scene {
    position: relative;
    min-height: 462px;
    margin: 9px 0 0;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 14px;
    color: var(--op-ink);
    background: var(--op-surface);
}
.landing-enhanced .op-demo-scene:not([hidden]) {
    animation: op-page-scene-enter .22s ease-out both;
}
.op-demo-address {
    min-width: 0;
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    overflow: hidden;
    border-bottom: 1px solid var(--op-line);
    color: var(--op-readable);
    background: var(--op-surface-2);
    font-size: 10px;
}
.op-demo-browser-dots {
    display: flex;
    flex: none;
    gap: 4px;
}
.op-demo-browser-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--op-line);
}
.op-demo-address-value {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.op-demo-toolbar-origin {
    width: 22px;
    height: 22px;
    flex: none;
    padding: 2px;
    border-radius: 7px;
    background: var(--op-ink);
    object-fit: contain;
}
.op-demo-browser-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 236px;
    min-height: 424px;
}
.op-demo-page {
    min-width: 0;
    padding: 14px;
    overflow: hidden;
    background: var(--op-surface-2);
}
.op-demo-dock {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--op-line);
    background: var(--op-surface);
    box-shadow: -10px 0 30px rgba(23, 34, 37, .11);
}
:root[data-public-theme="dark"] .op-demo-dock {
    box-shadow: -10px 0 30px rgba(0, 0, 0, .28);
}
.op-demo-dock-head {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-bottom: 1px solid var(--op-line);
    background: var(--op-surface-2);
}
.op-demo-dock-head img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.op-demo-dock-head strong { color: var(--op-ink); font-size: 11px; }
.op-demo-dock-tools {
    display: flex;
    gap: 3px;
    margin-left: auto;
}
.op-demo-dock-tools > span {
    min-width: 19px;
    height: 18px;
    display: grid;
    padding: 0 3px;
    place-items: center;
    border: 1px solid var(--op-line);
    border-radius: 6px;
    color: var(--op-readable);
    font-size: 6px;
    line-height: 1;
}
.op-demo-dock-tools [data-hero-dock-tool="theme"]::before {
    content: "◐";
}
.op-demo-dock-tools [data-hero-dock-tool="refresh"]::before {
    content: "↻";
}
.op-demo-dock-body {
    min-height: 0;
    flex: 1 1 auto;
    padding: 7px 9px 28px;
}
.op-demo-dock-label {
    display: block;
    margin: 3px 1px 5px;
    color: var(--op-readable);
    font-size: 6px;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}
.op-demo-profile,
.op-demo-current-page {
    margin: 0;
    padding: 8px;
    border: 1px solid var(--op-line);
    border-radius: 10px;
    background: var(--op-surface);
}
.op-demo-profile { margin-bottom: 7px; background: var(--op-surface-2); }
.op-demo-profile > strong {
    display: block;
    color: var(--op-green-ink);
    font-size: 8px;
}
.op-demo-profile h3,
.op-demo-current-page h3 {
    margin: 4px 0 3px;
    color: var(--op-ink);
    font-size: 11px;
    line-height: 1.25;
}
.op-demo-profile p,
.op-demo-current-page > p:not(.op-demo-context-status) {
    margin: 0;
    color: var(--op-readable);
    font-size: 8px;
    line-height: 1.4;
}
.op-demo-profile > div {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 5px;
}
.op-demo-profile > div span {
    padding: 2px 4px;
    border-radius: 999px;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
    font-size: 6px;
    font-weight: 750;
    overflow-wrap: anywhere;
}
.op-demo-context-status {
    display: flex;
    align-items: center;
    margin: 0;
    color: var(--op-green-ink);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.35;
}
.op-demo-context-status::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    flex: none;
    border-radius: 50%;
    background: var(--op-green);
    box-shadow: 0 0 0 3px var(--op-green-soft);
}
.op-demo-context-status[data-tone="warn"] { color: var(--op-gold-ink); }
.op-demo-context-status[data-tone="warn"]::before {
    background: var(--op-gold);
    box-shadow: 0 0 0 3px var(--op-gold-soft);
}
.op-demo-context-status[data-tone="neutral"] { color: var(--op-readable); }
.op-demo-context-status[data-tone="neutral"]::before {
    background: var(--op-readable);
    box-shadow: 0 0 0 3px var(--op-surface-2);
}
.op-demo-action-state {
    display: grid;
    min-height: 29px;
    margin-top: 7px;
    padding: 6px 8px;
    place-items: center;
    border-radius: 8px;
    color: #251c0b;
    background: var(--op-gold);
    font-size: 8px;
    font-weight: 850;
    line-height: 1.3;
    text-align: center;
}
.op-demo-action-state[data-tone="neutral"] {
    color: var(--op-readable);
    background: var(--op-surface-2);
    box-shadow: inset 0 0 0 1px var(--op-line);
}
.op-demo-action-state[data-tone="disabled"] {
    color: var(--op-readable);
    background: var(--op-surface-2);
    box-shadow: inset 0 0 0 1px var(--op-line);
}
.op-demo-current-page > .op-demo-job-hint {
    margin: 5px 0 0;
    color: var(--op-readable);
    font-size: 8px;
    line-height: 1.4;
}
.op-demo-local-note {
    margin: 8px 1px 0;
    padding-top: 6px;
    border-top: 1px solid var(--op-line);
    color: var(--op-readable);
    font-size: 8px;
    line-height: 1.4;
}
.op-demo-job-board-head {
    height: 30px;
    margin-bottom: 10px;
    border: 1px solid var(--op-line);
    border-radius: 8px;
    background: #0c2e64;
    box-shadow: none;
}
.op-demo-search {
    min-height: 34px;
    padding: 9px 11px;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 8px;
    color: var(--op-readable);
    background: var(--op-surface);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.op-demo-search::before { content: "⌕"; margin-right: 6px; color: var(--op-gold-ink); }
.op-demo-result-count {
    display: block;
    margin: 9px 0 6px;
    color: var(--op-readable);
    font-size: 8px;
}
.op-demo-job-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 9px;
    min-height: 268px;
}
.op-demo-listings {
    display: grid;
    align-content: start;
    gap: 7px;
}
.op-demo-listings > [data-hero-search-listing="neutral"] {
    display: grid;
    gap: 3px;
    padding: 9px;
    border: 1px solid var(--op-line);
    border-radius: 8px;
    background: var(--op-surface);
}
.op-demo-listings strong { color: var(--op-ink); font-size: 9px; line-height: 1.35; }
.op-demo-listings span { color: var(--op-readable); font-size: 8px; line-height: 1.35; }
.op-demo-job-empty {
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 14px;
    border: 1px dashed var(--op-line);
    border-radius: 9px;
    color: var(--op-readable);
    background: var(--op-surface);
    text-align: center;
}
.op-demo-job-empty strong { color: var(--op-ink); font-size: 11px; }
.op-demo-job-empty span { font-size: 8px; line-height: 1.4; }
.op-demo-selected-job,
.op-demo-profile-page,
.op-demo-restricted-page {
    min-height: 376px;
    padding: 18px;
    border: 1px solid var(--op-line);
    border-radius: 11px;
    background: var(--op-surface);
}
.op-demo-selected-job > small { color: var(--op-gold-ink); font-size: 8px; font-weight: 850; }
.op-demo-selected-job h2,
.op-demo-profile-identity h2,
.op-demo-restricted-page h2 {
    margin: 8px 0 5px;
    color: var(--op-ink);
    font-size: 16px;
    line-height: 1.2;
}
.op-demo-selected-job > strong { color: var(--op-green-ink); font-size: 10px; }
.op-demo-selected-job > p,
.op-demo-profile-identity p,
.op-demo-profile-about p,
.op-demo-restricted-page p {
    color: var(--op-readable);
    font-size: 9px;
    line-height: 1.5;
}
.op-demo-job-description {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}
.op-demo-job-description span {
    padding: 8px 9px;
    border-left: 3px solid var(--op-green);
    color: var(--op-readable);
    background: var(--op-surface-2);
    font-size: 8px;
    line-height: 1.4;
}
.op-demo-profile-page { padding: 0 0 18px; overflow: hidden; }
.op-demo-profile-cover {
    height: 78px;
    background: linear-gradient(120deg, var(--op-green-soft), var(--op-gold-soft));
}
.op-demo-profile-identity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}
.op-demo-profile-avatar {
    width: 48px;
    height: 48px;
    margin-top: -16px;
    flex: none;
    border: 4px solid var(--op-surface);
    border-radius: 50%;
    background: var(--op-green);
}
.op-demo-profile-about {
    margin: 14px 16px 0;
    padding: 12px;
    border: 1px solid var(--op-line);
    border-radius: 9px;
    background: var(--op-surface-2);
}
.op-demo-profile-about strong { color: var(--op-ink); font-size: 10px; }
.op-demo-restricted-page {
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}
.op-demo-restricted-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--op-line);
    border-radius: 14px;
    background: var(--op-surface-2);
}
.op-demo-restricted-icon::before {
    content: "—";
    display: grid;
    height: 100%;
    place-items: center;
    color: var(--op-readable);
    font-weight: 900;
}
.op-demo-toolbar-popover {
    position: absolute;
    left: 26px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    width: min(194px, calc(100% - 276px));
    gap: 2px 8px;
    padding: 10px;
    border: 1px solid var(--op-line);
    border-radius: 10px;
    color: var(--op-ink);
    background: var(--op-surface);
    box-shadow: var(--op-toolbar-float-shadow-low);
}
.landing-enhanced .op-demo-toolbar-popover {
    animation: op-toolbar-float 2.8s ease-in-out infinite;
    will-change: transform;
}
.landing-enhanced .op-demo-toolbar-popover:hover,
.landing-enhanced .op-hero-product:focus-within .op-demo-toolbar-popover,
.landing-enhanced [data-page-playback="paused"] .op-demo-toolbar-popover,
.landing-enhanced [data-page-document-visibility="hidden"] .op-demo-toolbar-popover {
    animation-play-state: paused;
}
.op-demo-toolbar-popover img { grid-row: 1 / span 2; width: 20px; height: 20px; }
.op-demo-toolbar-popover strong { font-size: 9px; }
.op-demo-toolbar-popover small { color: var(--op-green-ink); font-size: 8px; }
.op-demo-toolbar-popover > span {
    grid-column: 1 / -1;
    overflow: hidden;
    color: var(--op-readable);
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.op-demo-toolbar-popover > .op-demo-toolbar-action-state {
    display: grid;
    min-height: 24px;
    margin-top: 5px;
    padding: 5px 7px;
    place-items: center;
    border-radius: 6px;
    color: #251c0b;
    background: var(--op-gold);
    font-size: 7px;
    font-weight: 900;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
}
.op-demo-surface-caption {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.op-demo-surface-caption > span {
    display: flex;
    gap: 4px;
    padding: 0;
    background: transparent;
}
.op-demo-surface-caption strong { color: var(--op-ink); font-size: 10px; }
.op-demo-surface-caption small { color: var(--op-readable); font-size: 8px; line-height: 1.4; }
.op-job-card {
    margin: 14px 0;
    padding: 15px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: var(--op-surface-2);
}
.op-job-card h3 {
    margin: 2px 0 4px;
    color: var(--op-ink);
    font-size: 17px;
}
.op-job-card > p:not(.op-label) {
    margin: 0;
    color: var(--op-readable);
    font-size: 11px;
}
.op-signal,
.op-sponsor-line {
    display: grid;
    gap: 3px;
    margin-top: 14px;
    padding: 11px 12px;
    border: 1px solid color-mix(in srgb, var(--op-gold) 45%, var(--op-line));
    border-radius: 10px;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
}
.op-signal span,
.op-sponsor-line span { font-size: 10px; }
.op-signal strong,
.op-sponsor-line b { color: var(--op-gold-ink); font-size: 13px; }
.op-signal small { color: var(--op-gold-ink); font-size: 10px; line-height: 1.4; }

/* Product principles. */
.op-principles-section { background: var(--op-bg); }
.op-principles-section .op-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.op-principles-section .op-feature-grid article {
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--op-line);
    border-radius: 16px;
    color: var(--op-ink);
    background: var(--op-surface);
}
.op-principles-section .op-feature-grid article > span {
    color: var(--op-gold-ink);
    font-size: 11px;
    font-weight: 900;
}
.op-principles-section .op-feature-grid h3 {
    margin: 30px 0 9px;
    color: var(--op-ink);
    font-size: 19px;
}
.op-principles-section .op-feature-grid p {
    margin: 0;
    color: var(--op-readable);
    font-size: 13px;
    line-height: 1.6;
}

/* Interactive Role Fit workspace. */
.op-role-fit-section { background: var(--op-surface-2); }
.op-role-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
    margin: 34px 0 18px;
    padding: 0;
    list-style: none;
}
.op-role-flow::before {
    content: "";
    position: absolute;
    right: 12%;
    left: 12%;
    top: 50%;
    height: 1px;
    background: var(--op-line);
}
.op-role-flow li {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid var(--op-line);
    border-radius: 13px;
    background: var(--op-surface);
}
.op-role-flow li[data-state="active"],
.op-role-flow li[data-state="current"] {
    border-color: var(--op-gold);
    background: var(--op-gold-soft);
}
.op-role-flow-index {
    display: grid;
    width: 32px;
    height: 32px;
    flex: none;
    place-items: center;
    border-radius: 50%;
    color: var(--op-readable);
    background: var(--op-surface-2);
    font-size: 10px;
    font-weight: 900;
}
.op-role-flow li[data-state="done"] .op-role-flow-index {
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-flow li > span:last-child { display: grid; gap: 2px; }
.op-role-flow strong { color: var(--op-ink); font-size: 12px; }
.op-role-flow small { color: var(--op-readable); font-size: 9px; line-height: 1.35; }
.op-role-mobile-stages { display: none; }
.op-role-fit-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.1fr) minmax(0, 1fr);
    min-height: 700px;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: var(--op-surface);
    box-shadow: var(--op-shadow);
}
.op-role-fit-grid > [data-role-column] {
    min-width: 0;
    border-right: 1px solid var(--op-line);
    background: var(--op-surface);
}
.op-role-fit-grid > [data-role-column]:last-child { border-right: 0; }
.op-role-column-head {
    display: flex;
    min-height: 61px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 17px;
    border-bottom: 1px solid var(--op-line);
    background: var(--op-surface-2);
}
.op-role-column-head > span:first-child {
    display: grid;
    width: 28px;
    height: 28px;
    flex: none;
    place-items: center;
    border-radius: 8px;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-size: 9px;
    font-weight: 900;
}
.op-role-column-head > img { width: 26px; height: 26px; flex: none; object-fit: contain; }
.op-role-column-head > span:nth-child(2) { display: grid; flex: 1; gap: 2px; }
.op-role-column-head strong { color: var(--op-ink); font-size: 11px; line-height: 1.25; }
.op-role-column-head small { color: var(--op-readable); font-size: 8px; line-height: 1.3; }
.op-role-column-head > small:last-child {
    padding: 4px 6px;
    border-radius: 999px;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
    font-weight: 800;
    text-align: right;
}
.op-role-column-head > [data-role-phase-status-owner="header"] {
    display: flex;
    flex: none;
    padding: 4px 6px;
    border-radius: 999px;
    color: var(--op-readable);
    background: var(--op-surface);
    font-weight: 800;
    text-align: right;
}
.op-role-fit-section[data-role-fit-phase="reading"]
    .op-role-column-head > [data-role-phase-status-owner="header"],
.op-role-fit-section[data-role-fit-phase="comparing"]
    .op-role-column-head > [data-role-phase-status-owner="header"],
.op-role-fit-section[data-role-fit-phase="scoring"]
    .op-role-column-head > [data-role-phase-status-owner="header"] {
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
}
.op-role-fit-section[data-role-fit-phase="result"]
    .op-role-column-head > [data-role-phase-status-owner="header"] {
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-board > h3,
.op-role-detail h3,
.op-role-match h3 {
    margin: 0 0 9px;
    color: var(--op-ink);
    font-size: 16px;
}
.op-role-board > h3 { margin: 18px 17px 10px; }
.op-role-board-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin: 0 17px;
}
.op-role-board-search {
    min-height: 34px;
    padding: 9px 10px;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 9px;
    color: var(--op-readable);
    background: var(--op-surface-2);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.op-role-board-search::before { content: "⌕"; margin-right: 6px; color: var(--op-gold-ink); }
.op-role-board-toolbar > span {
    padding: 5px 7px;
    border-radius: 999px;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
}
.op-role-board > .op-example-note { margin: 10px 17px 0; }
.op-role-list {
    display: grid;
    gap: 10px;
    margin: 14px 17px 17px;
}
.op-role-list button {
    position: relative;
    display: grid;
    gap: 4px;
    width: 100%;
    min-width: 0;
    padding: 14px 34px 14px 14px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    color: var(--op-ink);
    background: var(--op-surface-2);
    text-align: left;
    font: inherit;
    cursor: pointer;
}
.op-role-list button::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 13px;
    color: var(--op-green-ink);
    font-weight: 950;
}
.op-role-list button[aria-pressed="true"] {
    border: 2px solid var(--op-gold);
    background: var(--op-gold-soft);
    box-shadow: inset 0 0 0 1px var(--op-surface);
}
.op-role-list button[aria-pressed="true"]::after { content: "✓"; }
.op-role-list strong { color: var(--op-ink); font-size: 13px; }
.op-role-list span { color: var(--op-readable); font-size: 11px; }
.op-role-list small { color: var(--op-readable); font-size: 10px; line-height: 1.4; }
.op-role-list .op-role-meta,
.op-role-list .op-role-tags,
.op-role-detail-meta span {
    width: fit-content;
    max-width: 100%;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: 8px;
    overflow-wrap: anywhere;
}
.op-role-list .op-role-meta,
.op-role-detail-meta .op-role-meta {
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-list .op-role-tags,
.op-role-detail-meta .op-role-tags {
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
}
.op-role-detail {
    display: flex;
    flex-direction: column;
}
.op-role-detail > article { margin: 18px 17px 0; }
.op-role-company { color: var(--op-green-ink); font-size: 11px; font-weight: 800; }
.op-role-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 12px;
}
.op-role-detail h4 {
    margin: 17px 0 8px;
    color: var(--op-ink);
    font-size: 12px;
}
.op-role-detail article > p,
.op-role-detail li,
.op-role-profile > p,
.op-role-profile li,
.op-role-match [data-role-empty] > p,
.op-role-match [data-role-empty] li,
.op-role-match [data-role-processing] > p {
    color: var(--op-readable);
    font-size: 12px;
    line-height: 1.55;
}
.op-role-detail ul,
.op-role-profile ul,
.op-role-match [data-role-empty] ol {
    display: grid;
    gap: 7px;
    margin: 12px 0 0;
    padding-left: 19px;
}
.op-role-import-group { margin-top: auto; }
.op-role-import-state {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 17px 10px;
    padding: 12px 13px;
    border: 1px solid var(--op-line);
    border-radius: 11px;
    color: var(--op-ink);
    background: var(--op-surface-2);
    font-size: 12px;
    font-weight: 800;
}
.op-role-import-state::before {
    content: "✓";
    flex: none;
    color: var(--op-green-ink);
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
}
.op-role-fit-section[data-role-fit-phase="reading"] .op-role-import-state::before,
.op-role-fit-section[data-role-fit-phase="comparing"] .op-role-import-state::before,
.op-role-fit-section[data-role-fit-phase="scoring"] .op-role-import-state::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    color: var(--op-gold);
    background: var(--op-gold);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--op-gold) 24%, transparent);
    animation: op-current-pulse 1.25s ease-out infinite;
}
.op-role-fit-section[data-role-fit-phase="ready"] .op-role-import-state,
.op-role-fit-section[data-role-fit-phase="result"] .op-role-import-state {
    border-color: color-mix(in srgb, var(--op-green) 45%, var(--op-line));
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-detail [data-role-import] {
    width: calc(100% - 34px);
    min-height: 40px;
    margin: 0 17px 17px;
    padding: 9px 13px;
    border: 1px solid var(--op-gold);
    border-radius: 10px;
    color: #172225;
    background: var(--op-gold);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}
.op-role-detail [data-role-import]:disabled {
    border-color: var(--op-line);
    color: var(--op-readable);
    background: var(--op-surface-2);
    box-shadow: inset 0 0 0 1px var(--op-line);
    cursor: not-allowed;
}
.op-role-profile,
.op-role-match [data-role-empty],
.op-role-match [data-role-processing] {
    margin: 15px;
    padding: 15px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: var(--op-surface-2);
}
.op-role-profile[data-role-profile-identity] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
}
.op-role-profile-copy {
    min-width: 0;
    flex: 1 1 118px;
}
.op-role-profile-copy h3 { margin: 0 0 2px; font-size: 14px; }
.op-role-profile-copy p {
    margin: 0;
    color: var(--op-readable);
    font-size: 9px;
    line-height: 1.35;
}
.op-role-profile [data-role-profile-counts] {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.op-role-profile [data-role-profile-counts] li {
    padding: 4px 6px;
    border-radius: 999px;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.3;
}
.op-role-phase-status[data-role-phase-status-owner="body"] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 15px 15px;
    padding: 8px 10px;
    border: 1px solid var(--op-line);
    border-radius: 9px;
    color: var(--op-readable);
    background: var(--op-surface);
    font-size: 9px;
    font-weight: 850;
}
.op-role-phase-status[data-role-phase-status-owner="body"]::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: none;
    border-radius: 50%;
    background: currentColor;
}
.op-role-fit-section[data-role-fit-phase="reading"]
    [data-role-phase-status-owner="body"],
.op-role-fit-section[data-role-fit-phase="comparing"]
    [data-role-phase-status-owner="body"],
.op-role-fit-section[data-role-fit-phase="scoring"]
    [data-role-phase-status-owner="body"] {
    border-color: color-mix(in srgb, var(--op-gold) 48%, var(--op-line));
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
}
.op-role-fit-section[data-role-fit-phase="result"]
    [data-role-phase-status-owner="body"] {
    border-color: color-mix(in srgb, var(--op-green) 45%, var(--op-line));
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-match [data-role-processing] {
    border-color: color-mix(in srgb, var(--op-gold) 48%, var(--op-line));
    background: var(--op-gold-soft);
}
.op-role-match [data-role-processing] h3 { color: var(--op-gold-ink); }
.op-role-match [data-role-processing] > p { color: var(--op-gold-ink); }
.op-role-match [data-role-result] {
    display: grid;
    gap: 10px;
    margin: 15px;
    animation: op-result-reveal .4s ease-out both;
}
.op-role-fit-section[data-role-fit-phase="result"]
    [data-role-result-detail]:not([hidden]) {
    animation: op-result-detail-reveal .28s ease-out var(--role-result-detail-delay) both;
}
[data-role-result-detail="stats"] { --role-result-detail-delay: 0ms; }
[data-role-result-detail="evidence"] { --role-result-detail-delay: 35ms; }
[data-role-result-detail="gaps"] { --role-result-detail-delay: 70ms; }
[data-role-result-detail="source"] { --role-result-detail-delay: 105ms; }
[data-role-result-detail="sponsorship"] { --role-result-detail-delay: 140ms; }
[data-role-result-detail="note"] { --role-result-detail-delay: 175ms; }
[data-role-result-detail="action"] { --role-result-detail-delay: 210ms; }
.op-role-match [data-role-result] > header {
    padding: 13px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: var(--op-surface-2);
}
.op-role-score-row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    margin-top: 11px;
}
.op-role-score-card {
    display: grid;
    min-height: 128px;
    padding: 9px;
    place-items: center;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: var(--op-surface);
}
.op-role-score-ring {
    position: relative;
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
        var(--op-green) calc(var(--role-score) * 1%),
        var(--op-surface-2) 0
    );
}
.op-role-fit-section[data-role-fit-phase="scoring"] .op-role-score-ring {
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--op-gold) 16%, transparent);
}
.op-role-score-ring::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    background: var(--op-surface);
}
.op-role-score-ring > div {
    position: relative;
    display: grid;
    gap: 2px;
    color: var(--op-readable);
    text-align: center;
}
.op-role-score-ring span { color: var(--op-ink); line-height: 1; }
.op-role-score-ring strong {
    color: var(--op-ink);
    font-size: 25px;
}
.op-role-score-ring sup { font-size: 9px; font-weight: 800; }
.op-role-score-ring small { font-size: 7px; line-height: 1.2; }
.op-role-score-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}
.op-role-score-stats > div {
    display: grid;
    align-content: center;
    gap: 3px;
    min-width: 0;
    padding: 9px 7px;
    border: 1px solid var(--op-line);
    border-radius: 10px;
    text-align: center;
}
.op-role-score-stats [data-role-score-stat="evidenced"] {
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-score-stats [data-role-score-stat="gaps"] {
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
}
.op-role-score-stats strong {
    color: currentColor;
    font-size: 21px;
    line-height: 1;
}
.op-role-score-stats span {
    font-size: 8px;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.op-role-evidence,
.op-role-gaps {
    padding: 12px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: var(--op-surface);
}
.op-role-evidence h4,
.op-role-gaps h4,
.op-role-match [data-sponsorship-tone] h4 {
    margin: 0 0 6px;
    color: var(--op-ink);
    font-size: 12px;
}
.op-role-evidence > p {
    margin: 0 0 8px;
    color: var(--op-readable);
    font-size: 9px;
    line-height: 1.45;
}
.op-role-evidence [role="group"] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
}
.op-role-evidence [data-evidence-id] {
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid var(--op-line);
    border-radius: 999px;
    color: var(--op-readable);
    background: var(--op-surface-2);
    font: inherit;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}
.op-role-evidence [data-evidence-id][aria-pressed="true"] {
    border: 2px solid var(--op-green);
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-role-evidence [data-evidence-id][aria-pressed="true"]::after {
    content: " ✓";
    font-weight: 950;
}
.op-role-source-card {
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--op-green) 42%, var(--op-line));
    border-radius: 9px;
    background: var(--op-green-soft);
}
.op-role-source-card > .op-label { margin-bottom: 5px; color: var(--op-green-ink); }
.op-role-source-card [data-evidence-source] {
    padding: 0;
    border: 0;
    color: var(--op-ink);
    background: transparent;
    font-size: 9px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.op-role-gaps > p {
    margin: 0 0 8px;
    color: var(--op-readable);
    font-size: 9px;
    line-height: 1.4;
}
.op-role-gaps > p strong { color: var(--op-gold-ink); }
.op-role-gaps ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.op-role-gaps li {
    max-width: 100%;
    padding: 5px 7px;
    border-radius: 999px;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-size: 9px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.op-role-match [data-sponsorship-tone] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 10px;
    padding: 10px 11px;
    border: 1px solid var(--op-line);
    border-radius: 10px;
}
.op-role-match [data-sponsorship-tone] > .op-label {
    grid-row: 1 / span 3;
    align-self: center;
    margin: 0;
    padding: 4px 6px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 7px;
}
.op-role-match [data-sponsorship-tone="warn"] {
    border-color: color-mix(in srgb, var(--op-gold) 55%, var(--op-line));
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
}
.op-role-match [data-sponsorship-tone="warn"] .op-label,
.op-role-match [data-sponsorship-tone="warn"] strong,
.op-role-match [data-sponsorship-tone="warn"] h4,
.op-role-match [data-sponsorship-tone="warn"] p { color: var(--op-gold-ink); }
.op-role-match [data-sponsorship-tone="bad"] {
    border-color: color-mix(in srgb, var(--op-bad-ink) 55%, var(--op-line));
    color: var(--op-bad-ink);
    background: var(--op-bad-soft);
}
.op-role-match [data-sponsorship-tone="bad"] .op-label,
.op-role-match [data-sponsorship-tone="bad"] strong,
.op-role-match [data-sponsorship-tone="bad"] h4,
.op-role-match [data-sponsorship-tone="bad"] p { color: var(--op-bad-ink); }
.op-role-match [data-sponsorship-tone] strong {
    margin: 0;
    font-size: 10px;
}
.op-role-match [data-sponsorship-tone] h4 { margin: 0; font-size: 10px; }
.op-role-match [data-sponsorship-tone] p:last-child {
    margin: 0;
    font-size: 9px;
    line-height: 1.4;
}
.op-role-match [data-role-result] > .op-example-note {
    margin: 0;
    padding: 0 2px;
    font-size: 8px;
}
.op-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--op-gold-ink);
    font-weight: 850;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.op-role-match .op-role-tailor-action {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    margin-top: 0;
    padding: 9px 11px;
    border: 1px solid var(--op-ink);
    border-radius: 9px;
    color: var(--op-surface);
    background: var(--op-ink);
    font-size: 10px;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
}

/* Extension page-state explanation. */
.op-page-states-section { background: var(--op-bg); }
.op-page-state-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.op-page-state-grid article {
    min-height: 180px;
    padding: 20px;
    border: 1px solid var(--op-line);
    border-radius: 14px;
    background: var(--op-surface);
}
.op-page-state-grid h3 {
    margin: 0 0 10px;
    color: var(--op-ink);
    font-size: 16px;
}
.op-page-state-grid p {
    margin: 0 0 18px;
    color: var(--op-readable);
    font-size: 12px;
    line-height: 1.55;
}
.op-page-state-grid strong {
    display: block;
    padding-top: 11px;
    border-top: 1px solid var(--op-line);
    color: var(--op-green-ink);
    font-size: 11px;
}

/* Progressive six-step proof rail and proof window. */
.op-proof-section { background: var(--op-surface); }
.op-proof-controls {
    display: grid;
    gap: 13px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--op-line);
    border-radius: 14px;
    background: var(--op-surface-2);
}
.op-proof-controls [data-proof-tabs] {
    display: grid;
    gap: 7px;
}
.op-proof-controls [data-proof-step],
.op-proof-controls [data-proof-replay] {
    min-width: 0;
    min-height: 40px;
    padding: 9px 11px;
    border: 1px solid var(--op-line);
    border-radius: 9px;
    color: var(--op-readable);
    background: var(--op-surface);
    text-align: left;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
}
.op-proof-controls [data-proof-step] {
    position: relative;
    overflow: hidden;
}
.op-proof-controls [data-proof-step]::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 3px;
    left: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--op-gold);
    transform: scaleX(0);
    transform-origin: left;
}
.landing-enhanced [data-proof-playback="playing"]
    [data-proof-step][aria-selected="true"]::after {
    animation: op-proof-progress var(--proof-step-duration) linear both;
}
.landing-enhanced [data-proof-playback="complete"]
    [data-proof-step][aria-selected="true"]::after {
    transform: scaleX(1);
}
.op-proof-controls [data-proof-step][aria-selected="true"] {
    border: 2px solid var(--op-gold);
    color: var(--op-ink);
    background: var(--op-gold-soft);
}
.op-proof-controls [data-proof-step][aria-selected="true"]::before {
    content: "● ";
    color: var(--op-gold-ink);
}
.op-proof-controls [data-proof-progress],
.op-proof-controls [data-proof-owner] {
    margin: 0;
    color: var(--op-readable);
    font-size: 10px;
    line-height: 1.45;
}
.op-proof-controls [data-proof-owner] strong {
    display: block;
    color: var(--op-ink);
}
.op-proof-controls [data-proof-replay] {
    color: var(--op-ink);
    text-align: center;
}
.op-workflow {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid var(--op-line);
    border-radius: 18px;
    background: var(--op-bg);
}
.op-workflow:last-child { margin-bottom: 0; }
.op-workflow-reverse .op-workflow-copy { order: 2; }
.op-workflow-reverse .op-product-visual { order: 1; }
.op-step {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    margin-bottom: 17px;
    padding: 6px;
    border: 1px solid color-mix(in srgb, var(--op-gold) 48%, var(--op-line));
    border-radius: 50%;
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-size: 12px;
    font-weight: 900;
}
.op-workflow h3 {
    margin: 0 0 15px;
    color: var(--op-ink);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -.04em;
    text-wrap: balance;
}
.op-workflow-copy > h4 {
    margin: 10px 0 8px;
    color: var(--op-ink);
    font-size: 18px;
}
.op-workflow-copy > p:not(.op-eyebrow) {
    margin: 0;
    color: var(--op-readable);
    font-size: 14px;
    line-height: 1.6;
}
.op-workflow-copy > p:last-child {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--op-line);
}
.op-workflow-copy > p:last-child strong { color: var(--op-ink); }
.op-workflow-copy ul {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
    color: var(--op-ink);
    font-size: 12px;
    line-height: 1.45;
    list-style: none;
}
.op-workflow-copy li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--op-green-ink);
    font-weight: 900;
}
.op-product-visual {
    min-height: 340px;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 17px;
    color: var(--op-ink);
    background: var(--op-surface);
    box-shadow: var(--op-shadow);
}
.op-profile-visual,
.op-connected-visual {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 30px;
}
.op-profile-visual > span,
.op-profile-visual > small { color: var(--op-readable); }
.op-profile-visual > strong { color: var(--op-ink); font-size: 20px; }
.op-mini-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--op-ink);
    letter-spacing: -.025em;
}
.op-capture-visual {
    display: grid;
    place-items: center;
    padding: 24px;
}
.op-extension-card {
    width: min(330px, 100%);
    display: grid;
    gap: 11px;
    padding: 20px;
    border: 1px solid var(--op-line);
    border-radius: 16px;
    background: var(--op-surface-2);
}
.op-extension-card h4 {
    margin: 4px 0 0;
    color: var(--op-ink);
    font-size: 18px;
}
.op-extension-card p,
.op-extension-card small { margin: 0; color: var(--op-readable); }
.op-extension-card button,
.op-editor-assistant button,
.op-dashboard-head button {
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid var(--op-gold);
    border-radius: 9px;
    color: #172225;
    background: var(--op-gold);
    font: inherit;
    font-size: 11px;
    font-weight: 850;
}
.op-analysis-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
}
.op-analysis-top {
    display: flex;
    align-items: center;
    gap: 18px;
}
.op-match-ring {
    --score: 75;
    width: 78px;
    height: 78px;
    flex: none;
    display: grid;
    place-content: center;
    position: relative;
    border-radius: 50%;
    text-align: center;
    background: conic-gradient(var(--op-green) calc(var(--score) * 1%), var(--op-line) 0);
}
.op-match-ring::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid var(--op-line);
    border-radius: inherit;
    background: var(--op-surface);
}
.op-match-ring span,
.op-match-ring small {
    position: relative;
    z-index: 1;
}
.op-match-ring span {
    color: var(--op-ink);
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}
.op-match-ring small { color: var(--op-readable); font-size: 8px; }
.op-match-ring-large { width: 112px; height: 112px; }
.op-match-ring-large span { font-size: 32px; }
.op-analysis-top h4 {
    margin: 2px 0 0;
    color: var(--op-ink);
    font-size: 20px;
}
.op-analysis-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.op-analysis-columns > div {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: var(--op-surface-2);
}
.op-analysis-columns b { color: var(--op-ink); font-size: 12px; }
.op-analysis-columns span { color: var(--op-readable); font-size: 11px; }
.op-analysis-columns span::before {
    content: "•";
    margin-right: 6px;
    color: var(--op-green-ink);
}
.op-analysis-columns > div:last-child span::before { color: var(--op-gold-ink); }
.op-editor-visual {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.45fr) minmax(0, .9fr);
    background: var(--op-surface-2);
}
.op-editor-visual > * { min-width: 0; }
.op-editor-list,
.op-editor-assistant {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 18px 14px;
    background: var(--op-surface);
}
.op-editor-list { border-right: 1px solid var(--op-line); }
.op-editor-list b,
.op-editor-assistant b { color: var(--op-ink); font-size: 12px; }
.op-editor-list span {
    padding: 9px;
    border-radius: 8px;
    color: var(--op-readable);
    font-size: 9px;
}
.op-editor-list span.active {
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-weight: 800;
}
.op-editor-page {
    align-self: center;
    margin: 18px 12px;
    padding: 22px;
    border: 1px solid var(--op-line);
    background: var(--op-surface);
}
.op-editor-page h4 { margin: 0; color: var(--op-ink); font-size: 18px; }
.op-editor-page small { color: var(--op-readable); }
.op-editor-page hr { border: 0; border-top: 1px solid var(--op-line); }
.op-editor-page b { color: var(--op-ink); font-size: 11px; }
.op-editor-page p { color: var(--op-readable); font-size: 9px; }
.op-editor-page em {
    display: block;
    padding: 7px;
    border: 1px solid color-mix(in srgb, var(--op-green) 40%, var(--op-line));
    border-radius: 6px;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
    font-size: 8px;
    font-style: normal;
}
.op-grounded { color: var(--op-green-ink); }
.op-trace-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--op-green);
}
.op-editor-assistant { border-left: 1px solid var(--op-line); }
.op-editor-assistant p { color: var(--op-readable); font-size: 9px; }
.op-editor-assistant small { margin-top: auto; color: var(--op-readable); font-size: 8px; }
.op-interview-visual {
    display: grid;
    grid-template-columns: minmax(90px, .75fr) minmax(180px, 1.35fr) minmax(100px, .85fr);
    background: var(--op-surface-2);
}
.op-question-nav,
.op-question-context {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 17px 13px;
    background: var(--op-surface);
}
.op-question-nav { border-right: 1px solid var(--op-line); }
.op-question-nav b,
.op-question-context b { color: var(--op-ink); font-size: 11px; }
.op-question-nav span {
    padding: 8px;
    border-radius: 7px;
    color: var(--op-readable);
    font-size: 8px;
}
.op-question-nav span.active {
    color: var(--op-gold-ink);
    background: var(--op-gold-soft);
    font-weight: 800;
}
.op-question-main { padding: 22px 17px; }
.op-question-main h4 {
    margin: 0 0 20px;
    color: var(--op-ink);
    font-size: 17px;
    line-height: 1.25;
}
.op-question-main b {
    display: block;
    margin-top: 14px;
    color: var(--op-ink);
    font-size: 10px;
}
.op-question-main p { color: var(--op-readable); font-size: 9px; }
.op-question-context { border-left: 1px solid var(--op-line); }
.op-question-context span {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--op-line);
    color: var(--op-readable);
    font-size: 8px;
}
.op-connected-visual .op-recommended { margin-top: 0; }

.landing-enhanced .op-proof-section .op-wrap {
    display: grid;
    grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.landing-enhanced .op-proof-section .op-section-head {
    grid-column: 1 / -1;
    width: 100%;
}
.landing-enhanced .op-proof-controls {
    grid-column: 1;
    grid-row: 2;
    position: sticky;
    top: 88px;
    margin: 0;
}
.landing-enhanced .op-proof-section [data-proof-panel] {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
}
.landing-enhanced .op-proof-section [data-proof-panel]:not([hidden]) {
    animation: op-proof-panel-enter .22s ease-out both;
}

/* Evidence, feature, dashboard, and CTA surfaces. */
.op-evidence-section { background: var(--op-gold-soft); }
.op-evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;
    align-items: center;
}
.op-evidence-copy ol {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.op-evidence-copy li {
    display: grid;
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid color-mix(in srgb, var(--op-gold) 40%, var(--op-line));
}
.op-evidence-copy b { color: var(--op-gold-ink); }
.op-evidence-copy span { color: var(--op-readable); }
.op-trace-card {
    padding: 25px;
    border: 1px solid var(--op-line);
    border-radius: 20px;
    background: var(--op-surface);
    box-shadow: var(--op-shadow);
}
.op-trace-output,
.op-trace-source {
    padding: 16px;
    border: 1px solid var(--op-line);
    border-radius: 11px;
    background: var(--op-surface);
}
.op-trace-output small,
.op-trace-source small {
    color: var(--op-readable);
    font-size: 9px;
    letter-spacing: .1em;
}
.op-trace-output p,
.op-trace-source p {
    margin: 8px 0 0;
    color: var(--op-ink);
    font-size: 13px;
    line-height: 1.55;
}
.op-trace-source { background: var(--op-surface-2); }
.op-trace-source b {
    display: block;
    margin-top: 7px;
    color: var(--op-green-ink);
    font-size: 11px;
}
.op-trace-arrow {
    display: block;
    margin: 8px;
    color: var(--op-gold-ink);
    text-align: center;
}
.op-validation-ok {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--op-green) 42%, var(--op-line));
    border-radius: 10px;
    color: var(--op-green-ink);
    background: var(--op-green-soft);
}
.op-validation-ok > span[aria-hidden="true"] {
    flex: none;
    display: grid;
    place-items: center;
    padding: .3em .45em;
    border: 1px solid color-mix(in srgb, var(--op-green) 42%, var(--op-line));
    border-radius: 50%;
    background: var(--op-surface);
    font-weight: 900;
    line-height: 1;
}
.op-validation-ok div { display: grid; }
.op-validation-ok small { color: var(--op-green-ink); }

.op-feature-section { background: var(--op-surface-2); }
.op-feature-section .op-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.op-feature-section details {
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--op-line);
    border-radius: 16px;
    color: var(--op-ink);
    background: var(--op-surface);
}
.op-feature-section summary {
    color: var(--op-ink);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.4;
    cursor: pointer;
}
.op-feature-section summary:focus-visible {
    outline: 3px solid var(--op-gold);
    outline-offset: 3px;
}
.op-feature-section details p {
    margin: 14px 0 0;
    color: var(--op-readable);
    font-size: 12px;
    line-height: 1.6;
}

.op-dashboard-section {
    color: #edf2f0;
    background: #132022;
}
.op-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 60px;
    align-items: center;
}
.op-dashboard-copy h2 { color: #edf2f0; }
.op-dashboard-copy > p { color: #b5c0bd; }
.op-dashboard-copy .op-eyebrow { color: #f3c96b; }
.op-dashboard-copy .op-text-link { color: #f3c96b; }
.op-dashboard-preview {
    padding: 21px;
    border: 1px solid #4a5a57;
    border-radius: 18px;
    color: #edf2f0;
    background: #202d2f;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}
.op-dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.op-dashboard-head small,
.op-recommended small {
    color: #b5c0bd;
    font-size: 9px;
    letter-spacing: .08em;
}
.op-dashboard-head h3 {
    margin: 3px 0 0;
    color: #edf2f0;
    font-size: 17px;
}
.op-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 17px 0;
}
.op-metrics > span {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 12px 9px;
    border: 1px solid #4a5a57;
    border-radius: 9px;
    color: #b5c0bd;
    font-size: 9px;
}
.op-metrics b { color: #edf2f0; font-size: 19px; }
.op-metrics span span { overflow-wrap: anywhere; }
.op-pipeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #4a5a57;
    border-radius: 9px;
}
.op-pipeline b {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 10px;
    border-right: 1px solid #4a5a57;
    color: #dfe7e4;
    font-size: 9px;
    overflow-wrap: anywhere;
}
.op-pipeline b:last-child { border-right: 0; }
.op-pipeline i { color: #f3c96b; font-size: 9px; font-style: normal; }
.op-recommended {
    display: grid;
    gap: 4px;
    margin-top: 13px;
    padding: 13px;
    border: 1px solid #8b6720;
    border-radius: 10px;
    background: #302a1d;
}
.op-recommended b { color: #edf2f0; font-size: 12px; }
.op-recommended span { color: #b5c0bd; font-size: 10px; }
.op-dashboard-preview .op-example-note { color: #b5c0bd; }

.op-final-cta {
    padding: 100px 0;
    color: #edf2f0;
    background: #10191b;
    text-align: center;
}
.op-final-cta .op-wrap { max-width: 800px; }
.op-final-cta img { margin-bottom: 12px; }
.op-final-cta .op-eyebrow { color: #f3c96b; }
.op-final-cta h2 {
    margin: 8px 0 12px;
    color: #edf2f0;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -.05em;
}
.op-final-cta > div > p:not(.op-eyebrow) {
    margin: 0 auto 24px;
    color: #b5c0bd;
    font-size: 17px;
}
.op-final-cta .op-actions { justify-content: center; }

/* Shared dark footer contract consumed by the public footer fragment. */
.op-landing + .lp-footer,
.op-landing .lp-footer {
    --ink: #edf2f0;
    --muted: #a5b1ae;
    --faint: #84928f;
    --line: #2c3937;
    background: #10191b;
    border-color: var(--line);
}
.op-landing .lp-footer .lp-brand { color: var(--ink); }
.lp-footer-inner {
    max-width: 1160px;
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 42px;
    align-items: start;
}
.lp-footer-tagline {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .82rem;
}
.lp-footer-group {
    display: grid;
    gap: 9px;
}
.lp-footer-group strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.lp-footer-group a {
    color: var(--muted);
    font-size: .84rem;
    text-decoration: none;
}
.lp-footer-group a:hover { color: var(--ink); }
.lp-footer-bottom {
    max-width: 1160px;
    margin: 30px auto 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-size: .76rem;
}

/* Content is visible without JavaScript; JavaScript only enhances the reveal. */
html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
}
html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: op-reveal-on-scroll .55s ease-out both;
}

@keyframes op-ambient-drift {
    to { transform: translate(26px, 20px) scale(1.06); }
}
@keyframes op-current-pulse {
    from { box-shadow: 0 0 0 1px color-mix(in srgb, var(--op-gold) 55%, transparent); }
    to { box-shadow: 0 0 0 5px color-mix(in srgb, var(--op-gold) 0%, transparent); }
}
@keyframes op-result-reveal {
    from { opacity: .35; transform: translateY(10px) scale(.99); }
    to { opacity: 1; transform: none; }
}
@keyframes op-result-detail-reveal {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}
@keyframes op-page-scene-enter {
    from { opacity: .35; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}
@keyframes op-toolbar-float {
    0%, 100% {
        transform: translateY(-2px);
        box-shadow: var(--op-toolbar-float-shadow-low);
    }
    50% {
        transform: translateY(2px);
        box-shadow: var(--op-toolbar-float-shadow-high);
    }
}
@keyframes op-scene-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes op-kicker-float {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(2px); }
}
@keyframes op-headline-shimmer {
    from { background-position: 0 0; }
    to { background-position: -220% 0; }
}
@keyframes op-proof-panel-enter {
    from { opacity: .35; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}
@keyframes op-proof-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes op-reveal-on-scroll {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    .op-role-flow { gap: 18px; }
    .op-role-column-head { gap: 8px; padding-inline: 12px; }
    .op-role-board > h3,
    .op-role-board-toolbar,
    .op-role-board > .op-example-note,
    .op-role-list,
    .op-role-detail > article,
    .op-role-import-state { margin-inline: 12px; }
    .op-role-detail [data-role-import] {
        width: calc(100% - 24px);
        margin-inline: 12px;
    }
    .landing-enhanced .op-workflow { grid-template-columns: minmax(0, 1fr); }
    .landing-enhanced .op-workflow-reverse .op-workflow-copy,
    .landing-enhanced .op-workflow-reverse .op-product-visual { order: initial; }
}

@media (max-width: 1040px) {
    .op-hero { min-height: auto; }
    .op-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }
    .op-hero-copy { max-width: 760px; }
    .op-hero-product { width: 100%; }
}

@media (max-width: 960px) {
    .op-feature-section .op-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .op-page-state-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .op-dashboard-grid,
    .op-evidence-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .op-wrap { width: min(100% - 28px, 1160px); }
    .op-section { padding: 74px 0; }
    .op-section-head { margin-bottom: 38px; }
    .op-hero { padding: 64px 0 54px; }
    .op-hero h1 { font-size: clamp(42px, 13vw, 62px); }

    .op-scene-tabs {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 2px;
        overflow-x: visible;
    }
    .op-demo-scene { min-height: 0; }
    .op-demo-browser-body {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }
    .op-demo-page { display: none; }
    .op-demo-dock {
        border-left: 0;
        box-shadow: none;
    }
    .op-demo-toolbar-popover {
        position: absolute;
        top: 48px;
        right: 10px;
        bottom: auto;
        left: auto;
        width: min(184px, calc(100% - 20px));
        margin: 0;
    }

    .op-principles-section .op-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .op-role-flow {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }
    .op-role-flow::before { display: none; }
    .op-role-mobile-stages {
        display: flex;
        gap: 7px;
        margin: 0 0 10px;
        padding: 0;
        list-style: none;
    }
    .op-role-mobile-stages li {
        min-width: 0;
        flex: 1 1 0;
    }
    .op-role-mobile-stages button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        padding: 8px 6px;
        border: 1px solid var(--op-line);
        border-radius: 9px;
        color: var(--op-readable);
        background: var(--op-surface);
        font: inherit;
        font-size: 10px;
        font-weight: 850;
        line-height: 1.25;
        overflow-wrap: anywhere;
        cursor: pointer;
    }
    .op-role-mobile-stages button[aria-pressed="true"] {
        border: 2px solid var(--op-gold);
        color: var(--op-ink);
        background: var(--op-gold-soft);
    }
    .op-role-mobile-stages button[aria-pressed="true"]::before {
        content: "✓ ";
        color: var(--op-green-ink);
    }
    .op-role-fit-grid {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }
    .op-role-fit-grid > [data-role-column] {
        display: none;
        border: 0;
    }
    .op-role-fit-section[data-mobile-stage="jobs"] [data-role-column="jobs"],
    .op-role-fit-section[data-mobile-stage="selected"] [data-role-column="selected"],
    .op-role-fit-section[data-mobile-stage="match"] [data-role-column="match"] {
        display: block;
    }
    .op-role-import-group { margin-top: 0; }
    .op-role-score-row { grid-template-columns: 100px minmax(0, 1fr); }
    .op-role-score-ring { width: 82px; height: 82px; }

    .landing-enhanced .op-proof-section .op-wrap {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .landing-enhanced .op-proof-section .op-section-head,
    .landing-enhanced .op-proof-controls,
    .landing-enhanced .op-proof-section [data-proof-panel] {
        grid-column: 1;
        grid-row: auto;
    }
    .landing-enhanced .op-proof-controls {
        position: static;
        top: auto;
    }
    .op-proof-controls [data-proof-tabs] {
        display: flex;
        gap: 7px;
        padding: 3px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }
    .op-proof-controls [data-proof-step] {
        flex: 0 0 min(148px, 42vw);
        text-align: center;
    }
    .op-workflow,
    .landing-enhanced .op-workflow {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding: 22px;
    }
    .op-workflow-reverse .op-workflow-copy,
    .op-workflow-reverse .op-product-visual { order: initial; }
    .op-editor-visual,
    .op-interview-visual {
        grid-template-columns: minmax(0, 1fr);
        overflow: visible;
    }
    .op-editor-list,
    .op-question-nav { display: none; }
    .op-editor-assistant,
    .op-question-context {
        border: 0;
        border-top: 1px solid var(--op-line);
    }
    .op-metrics,
    .op-pipeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .op-pipeline b:nth-child(2) { border-right: 0; }
    .op-pipeline b:nth-child(-n+2) { border-bottom: 1px solid #4a5a57; }
}

@media (max-width: 720px) {
    .lp-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .op-feature-section .op-feature-grid,
    .op-page-state-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
    .lp-nav,
    .op-landing .lp-nav { padding-inline: .75rem; }
    .lp-nav-inner { gap: .5rem; }
    .lp-nav-inner > .lp-brand > .op-wordmark { display: none; }
    .lp-nav-cta { gap: .3rem; }
    .lp-nav-cta .btn { padding-inline: .65rem; }
    .lp-lang { padding-inline: .45rem; }
}

@media (max-width: 480px) {
    .op-scene-tabs { grid-template-columns: minmax(0, 1fr); }
    .lp-footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
    .op-wrap { width: min(100% - 24px, 1160px); }
    .op-actions { flex-direction: column; }
    .op-actions .btn { width: 100%; }
    .op-browser,
    .op-browser [data-page-scene-panel],
    .op-role-fit-grid,
    .op-workflow,
    .op-product-visual,
    .op-dashboard-preview,
    .op-trace-card {
        max-width: 100%;
        min-width: 0;
    }
    .op-browser { transform: none; }
    .op-example-chip { padding-inline: 5px; }
    .op-scene-toolbar { align-items: flex-start; }
    .op-scene-playback { width: 100%; justify-content: space-between; }
    .op-demo-scene { margin-inline: 9px; }
    .op-demo-surface-caption {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 3px;
    }
    .op-role-fit-grid > [data-role-column],
    .op-workflow,
    .op-analysis-visual,
    .op-dashboard-preview,
    .op-trace-card { padding: 16px; }
    .op-analysis-columns,
    .op-metrics,
    .op-pipeline,
    .op-evidence-copy li { grid-template-columns: minmax(0, 1fr); }
    .op-role-score-row { gap: 8px; }
    .op-role-score-stats { grid-template-columns: minmax(0, 1fr); }
    .op-role-match [data-sponsorship-tone] { grid-template-columns: minmax(0, 1fr); }
    .op-role-match [data-sponsorship-tone] > .op-label {
        grid-row: auto;
        width: fit-content;
    }
    .op-pipeline b {
        border-right: 0;
        border-bottom: 1px solid #4a5a57;
    }
    .op-pipeline b:last-child { border-bottom: 0; }
    .op-dashboard-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .lp-nav,
    .op-landing .lp-nav { padding-inline: .5rem; }
    .lp-nav-inner { gap: .35rem; }
    .lp-nav-cta { gap: .2rem; }
    .lp-nav-cta .btn { padding-inline: .55rem; }
    .lp-lang { padding-inline: .4rem; }
    .lp-theme-toggle { width: 32px; height: 32px; }
    .lp-lang-long { display: none; }
    .lp-lang-short { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .op-landing *,
    .op-landing *::before,
    .op-landing *::after {
        animation: none !important;
        transition: none !important;
    }
    html.js .op-landing .reveal,
    html.js .op-landing .reveal.is-visible {
        opacity: 1;
        transform: none !important;
    }
    .op-landing .op-glow,
    .op-landing [data-role-result] { transform: none !important; }
    .op-landing .op-demo-toolbar-popover,
    .op-landing .op-role-flow li,
    .op-landing .op-role-score-ring { transform: none !important; }
}
