:root {
    --repro-primary: #0B132B;
    --repro-accent: #1769FF;
    --repro-canvas: #EEF3F8;
    --repro-surface: #FFFFFF;
    --repro-ink: #071A3D;
}

/* Core admin: a compact technical workspace with the module's own identity. */
.repro-admin-page {
    --repro-admin-line: rgba(148, 163, 184, .28);
    --repro-admin-muted: #64748B;
    --repro-admin-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    color: var(--repro-ink);
    display: grid;
    gap: 1.25rem;
    margin-top: 1rem;
}

.repro-admin-page *,
.repro-public-page * {
    box-sizing: border-box;
}

.repro-admin-hero {
    align-items: center;
    background:
        radial-gradient(circle at 92% 12%, rgba(23, 105, 255, .28), transparent 17rem),
        linear-gradient(120deg, var(--repro-primary), #071A3D 62%, #12346b);
    border: 1px solid rgba(23, 105, 255, .18);
    border-radius: 1.2rem;
    box-shadow: 0 20px 48px rgba(7, 26, 61, .18);
    color: #fff;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2rem);
    position: relative;
}

.repro-admin-hero::after {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    content: '';
    height: 14rem;
    position: absolute;
    right: -5rem;
    top: -8rem;
    width: 14rem;
}

.repro-admin-hero > div:first-child { max-width: 48rem; position: relative; z-index: 1; }
.repro-admin-kicker,
.repro-admin-status,
.repro-admin-counter,
.repro-make-count {
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.repro-admin-kicker {
    color: #8fb7ff;
    letter-spacing: .13em;
    margin: 0 0 .5rem;
    text-transform: uppercase;
}

.repro-admin-hero h2 {
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin: 0;
}

.repro-admin-hero p:last-child {
    color: rgba(255, 255, 255, .76);
    font-size: .86rem;
    line-height: 1.55;
    margin: .55rem 0 0;
    max-width: 42rem;
}

.repro-admin-status-stack {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    z-index: 1;
}

.repro-admin-status {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    gap: .45rem;
    justify-content: center;
    padding: .48rem .72rem;
    white-space: nowrap;
}

.repro-admin-status > span:first-child {
    background: currentColor;
    border-radius: 999px;
    height: .42rem;
    opacity: .8;
    width: .42rem;
}

.repro-admin-status--success { color: #86efac; }
.repro-admin-status--warning { color: #fde68a; }
.repro-admin-status--danger { color: #fda4af; }
.repro-admin-status--neutral { color: #bfdbfe; }

.repro-admin-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repro-admin-panel {
    min-width: 0;
}

.repro-admin-panel--wide { width: 100%; }

.repro-admin-panel .lms-admin-panel-header {
    align-items: flex-start;
    min-height: 5.4rem;
    padding: 1.05rem 1.15rem;
}

.repro-admin-panel .lms-admin-panel-body { padding: 1.15rem; }
.repro-admin-panel-mark {
    align-items: center;
    background: color-mix(in srgb, var(--repro-accent) 10%, white);
    border: 1px solid color-mix(in srgb, var(--repro-accent) 22%, white);
    border-radius: .7rem;
    color: var(--repro-accent);
    display: inline-flex;
    flex: 0 0 2.15rem;
    font-size: .72rem;
    font-weight: 900;
    height: 2.15rem;
    justify-content: center;
}

.repro-admin-form,
.repro-admin-form-grid {
    display: grid;
    gap: 1rem;
}

.repro-admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repro-admin-field { display: grid; gap: .38rem; min-width: 0; }
.repro-admin-field--wide { grid-column: 1 / -1; }
.repro-admin-label { color: var(--repro-ink); font-size: .78rem; font-weight: 900; }
.repro-admin-help,
.repro-admin-form-note,
.repro-admin-secondary-form span {
    color: var(--repro-admin-muted);
    font-size: .73rem;
    line-height: 1.45;
}

.repro-admin-input {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--repro-admin-line);
    border-radius: .65rem;
    color: var(--repro-ink);
    font-size: .84rem;
    min-height: 2.7rem;
    padding: .68rem .8rem;
    width: 100%;
}

.repro-admin-input:focus {
    border-color: var(--repro-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--repro-accent) 17%, transparent);
    outline: 0;
}

.repro-admin-form-actions {
    display: flex;
    gap: .65rem;
    justify-content: flex-start;
    margin-top: .15rem;
}

.repro-admin-form-actions--right { justify-content: flex-end; margin-top: 1rem; }
.repro-admin-form-actions--theme { align-items: center; justify-content: space-between; }
.repro-admin-reset-action { background: transparent; border: 1px solid rgba(7, 26, 61, .22); border-radius: .55rem; color: var(--repro-primary, #0B132B); cursor: pointer; font: inherit; font-size: .78rem; font-weight: 700; padding: .62rem .85rem; text-decoration: none; }
.repro-admin-reset-action:hover,
.repro-admin-reset-action:focus { background: color-mix(in srgb, var(--repro-primary, #0B132B) 7%, transparent); border-color: var(--repro-primary, #0B132B); outline: 0; }
.repro-admin-reset-status { color: var(--repro-admin-muted, #64748B); flex: 1 1 15rem; font-size: .74rem; line-height: 1.4; }
.repro-admin-secondary-form {
    align-items: center;
    border-top: 1px solid rgba(148, 163, 184, .2);
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.repro-admin-secondary-form span { flex: 1 1 15rem; }
.repro-admin-form-note { margin: 1rem 0 0; }

.repro-theme-preview {
    background: linear-gradient(135deg, var(--repro-preview-ink), var(--repro-preview-primary));
    border-radius: .95rem;
    box-shadow: 0 15px 30px rgba(7, 26, 61, .14);
    color: #fff;
    min-height: 9.5rem;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.repro-theme-preview::before {
    background: radial-gradient(circle, color-mix(in srgb, var(--repro-preview-accent) 58%, transparent), transparent 68%);
    content: '';
    height: 13rem;
    position: absolute;
    right: -5rem;
    top: -7rem;
    width: 13rem;
}

.repro-theme-preview__top,
.repro-theme-preview__cards { display: flex; gap: .4rem; }
.repro-theme-preview__top { align-items: center; position: relative; }
.repro-theme-preview__dot { background: var(--repro-preview-accent); border-radius: 999px; height: .5rem; width: .5rem; }
.repro-theme-preview__line { background: rgba(255, 255, 255, .4); border-radius: 999px; height: .25rem; width: 2rem; }
.repro-theme-preview__line--long { width: 5rem; }
.repro-theme-preview__content { bottom: 1rem; display: grid; gap: .28rem; left: 1rem; position: absolute; right: 1rem; }
.repro-theme-preview__content strong { font-size: 1.15rem; letter-spacing: -.03em; }
.repro-theme-preview__content > span { color: rgba(255, 255, 255, .68); font-size: .68rem; }
.repro-theme-preview__cards { margin-top: .45rem; }
.repro-theme-preview__cards i { background: var(--repro-preview-surface); border-radius: .35rem; display: block; height: 1.4rem; opacity: .95; width: 4.2rem; }
.repro-theme-preview__cards i:nth-child(2) { background: var(--repro-preview-accent); }
.repro-theme-preview__cards i:nth-child(3) { opacity: .55; }

.repro-color-grid {
    display: grid;
    gap: .65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.repro-color-field {
    align-items: center;
    background: rgba(248, 250, 252, .72);
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: .75rem;
    display: grid;
    gap: .65rem;
    grid-template-columns: 2.1rem minmax(0, 1fr) auto;
    padding: .55rem;
}

.repro-color-swatch {
    background: var(--repro-swatch);
    border: 2px solid #fff;
    border-radius: .6rem;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .16);
    display: block;
    height: 2rem;
    overflow: hidden;
    position: relative;
    width: 2rem;
}

.repro-color-swatch input { cursor: pointer; height: 200%; left: -50%; opacity: 0; position: absolute; top: -50%; width: 200%; }
.repro-color-copy { display: grid; gap: .15rem; min-width: 0; }
.repro-color-copy strong { color: var(--repro-ink); font-size: .75rem; }
.repro-color-copy small { color: var(--repro-admin-muted); font-size: .66rem; line-height: 1.25; }
.repro-color-field code { color: var(--repro-admin-muted); font-size: .62rem; font-weight: 900; }

.repro-admin-counter {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: #1d4ed8;
    padding: .45rem .7rem;
    white-space: nowrap;
}

.repro-make-toolbar {
    align-items: end;
    display: grid;
    gap: .8rem;
    grid-template-columns: minmax(14rem, 1fr) auto;
}

.repro-make-search { max-width: 32rem; }
.repro-make-toolbar__actions { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: flex-end; }
.repro-make-count { color: var(--repro-admin-muted); grid-column: 1 / -1; }

.repro-make-list {
    background: rgba(248, 250, 252, .72);
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: .85rem;
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    margin-top: 1rem;
    max-height: 28rem;
    overflow: auto;
    padding: .8rem;
}

.repro-make-option {
    align-items: center;
    background: #fff;
    border: 1px solid transparent;
    border-radius: .55rem;
    color: var(--repro-ink);
    display: flex;
    font-size: .75rem;
    gap: .55rem;
    min-height: 2.25rem;
    padding: .45rem .55rem;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.repro-make-option:hover { background: #f8fbff; border-color: #bfdbfe; transform: translateY(-1px); }
.repro-make-option[hidden] { display: none; }
.repro-checkbox { accent-color: var(--repro-accent); height: 1rem; width: 1rem; }

.repro-admin-alert {
    border-radius: .7rem;
    font-size: .8rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    padding: .75rem .9rem;
}

.repro-admin-alert--warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.repro-admin-empty { align-items: flex-start; background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: .8rem; color: var(--repro-admin-muted); display: flex; gap: .75rem; padding: 1rem; }
.repro-admin-empty strong { color: var(--repro-ink); display: block; font-size: .82rem; }
.repro-admin-empty p { font-size: .75rem; line-height: 1.45; margin: .25rem 0 0; }
.repro-admin-empty__icon { align-items: center; background: #dbeafe; border-radius: .55rem; color: #1d4ed8; display: inline-flex; flex: 0 0 2rem; font-size: 1rem; height: 2rem; justify-content: center; }
.repro-admin-empty--compact { align-items: center; border: 0; background: transparent; justify-content: center; padding: 1rem; }
.repro-admin-empty--compact span { font-size: .75rem; margin-left: .3rem; }

.repro-sync-header { align-items: center !important; }
.repro-sync-header form { flex: 0 0 auto; }
.repro-sync-body { display: grid; gap: 1rem; }
.repro-sync-note { align-items: flex-start; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: .7rem; color: #1e40af; display: flex; font-size: .75rem; gap: .55rem; line-height: 1.45; padding: .7rem .8rem; }
.repro-sync-note > span:first-child { font-size: 1rem; font-weight: 900; line-height: 1; }
.repro-admin-table-wrap { overflow-x: auto; }
.repro-admin-table { border-collapse: collapse; min-width: 40rem; text-align: left; width: 100%; }
.repro-admin-table th { background: #f8fafc; border-bottom: 1px solid var(--repro-admin-line); color: var(--repro-admin-muted); font-size: .65rem; font-weight: 900; letter-spacing: .06em; padding: .7rem .75rem; text-transform: uppercase; }
.repro-admin-table td { border-bottom: 1px solid rgba(148, 163, 184, .16); color: var(--repro-ink); font-size: .76rem; padding: .75rem; vertical-align: middle; }
.repro-admin-table tr:last-child td { border-bottom: 0; }

/* Public Front: performance-oriented hierarchy inspired by motorsport interfaces. */
.repro-media {
    align-items: center;
    background: #e8eef6;
    border: 1px solid rgba(148, 163, 184, .28);
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.repro-media__fallback {
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(214, 226, 242, .92));
    color: #7890ad;
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
}

.repro-media__fallback svg { height: 58%; max-width: 78%; width: auto; }
.repro-media img { display: block; height: 100%; inset: 0; object-fit: contain; position: absolute; width: 100%; z-index: 1; }
.repro-media__fallback-image { display: block; height: 100%; object-fit: cover !important; width: 100%; }
.repro-media img[hidden] { display: none; }
.repro-media--vehicle { --repro-media-glass: #d9e8ff; --repro-media-wheel: #0b132b; aspect-ratio: 16 / 9; border-radius: .9rem; }
.repro-media--vehicle .repro-media__fallback { background: radial-gradient(circle at 75% 15%, rgba(23, 105, 255, .18), transparent 43%), linear-gradient(145deg, #edf4ff, #d7e4f4); color: #5d79a1; }
.repro-media--logo { --repro-media-glass: #d9e8ff; aspect-ratio: 1; border-radius: .7rem; }
.repro-media--logo .repro-media__fallback { background: linear-gradient(145deg, #f8fbff, #dfeafa); color: var(--repro-accent, #1769FF); }
.repro-media__logo-fallback { align-items: center; border: 2px solid currentColor; border-radius: 999px; display: inline-flex; font-size: .55rem; font-weight: 900; height: 72%; justify-content: center; letter-spacing: -.04em; width: 72%; }
.repro-media__fallback[hidden] { display: none; }

.repro-public-page {
    background: var(--repro-canvas, #EEF3F8);
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(1rem, 4vw, 4rem) clamp(1rem, 3vw, 2.5rem);
}

.repro-simulator {
    background: var(--repro-primary, #0B132B);
    border: 1px solid rgba(7, 26, 61, .2);
    border-radius: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 28px 70px rgba(7, 26, 61, .18);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.repro-simulator::before {
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 2.5rem 2.5rem;
    content: '';
    inset: 0;
    mask-image: linear-gradient(to bottom, #000, transparent 76%);
    opacity: .55;
    pointer-events: none;
    position: absolute;
}

.repro-simulator::after {
    background: radial-gradient(circle, color-mix(in srgb, var(--repro-accent, #1769FF) 48%, transparent), transparent 68%);
    content: '';
    height: 26rem;
    opacity: .45;
    pointer-events: none;
    position: absolute;
    right: -10rem;
    top: -14rem;
    width: 26rem;
}

.repro-simulator__shell { margin: 0 auto; max-width: 1100px; padding: clamp(1.25rem, 5vw, 4.25rem); position: relative; z-index: 1; }
.repro-simulator__header { align-items: flex-start; display: flex; gap: 1.5rem; justify-content: space-between; }
.repro-simulator__heading { max-width: 48rem; }
.repro-simulator__eyebrow,
.repro-simulator__step { color: #86aefc; font-size: .68rem; font-weight: 900; letter-spacing: .14em; margin: 0; text-transform: uppercase; }
.repro-simulator__eyebrow span { align-items: center; background: var(--repro-accent, #1769FF); border-radius: .3rem; color: #fff; display: inline-flex; font-size: .6rem; height: 1.2rem; justify-content: center; margin-right: .35rem; width: 1.2rem; }
.repro-simulator__header h2 { font-size: clamp(2rem, 5vw, 4.3rem); font-weight: 900; letter-spacing: -.065em; line-height: .96; margin: .7rem 0 0; max-width: 40rem; }
.repro-simulator__intro { color: rgba(255, 255, 255, .68); font-size: clamp(.85rem, 1.5vw, 1rem); line-height: 1.55; margin: 1rem 0 0; max-width: 35rem; }
.repro-simulator__signal { align-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; color: rgba(255, 255, 255, .8); display: inline-flex; flex: 0 0 auto; font-size: .68rem; font-weight: 800; gap: .45rem; padding: .55rem .7rem; white-space: nowrap; }
.repro-simulator__signal-dot { background: #4ade80; border-radius: 999px; box-shadow: 0 0 0 .22rem rgba(74, 222, 128, .14); height: .42rem; width: .42rem; }

.repro-simulator__notice { align-items: flex-start; background: rgba(251, 191, 36, .11); border: 1px solid rgba(253, 230, 138, .3); border-radius: .8rem; color: #fde68a; display: flex; font-size: .76rem; gap: .6rem; line-height: 1.45; margin-top: 1.5rem; padding: .75rem .9rem; }
.repro-simulator__notice-icon { align-items: center; background: #f59e0b; border-radius: 999px; color: #111827; display: inline-flex; flex: 0 0 1.1rem; font-size: .7rem; font-weight: 900; height: 1.1rem; justify-content: center; }

.repro-simulator__selector-card { background: var(--repro-surface, #fff); border: 1px solid rgba(255, 255, 255, .16); border-radius: 1.15rem; color: var(--repro-ink, #071A3D); display: grid; gap: 1.25rem; grid-template-columns: minmax(0, .8fr) minmax(18rem, 1.2fr); margin-top: 2rem; padding: clamp(1rem, 2.5vw, 1.4rem); }
.repro-simulator__selector-copy { display: grid; gap: .35rem; align-content: center; }
.repro-simulator__selector-copy .repro-simulator__step { color: var(--repro-accent, #1769FF); }
.repro-simulator__label { color: var(--repro-ink, #071A3D); font-size: 1rem; font-weight: 900; }
.repro-simulator__selector-help { color: #64748b; font-size: .76rem; line-height: 1.45; }
.repro-simulator__select-wrap { align-self: center; position: relative; }
.repro-simulator__select { appearance: none; background: #fff; border: 1px solid #b8c7dc; border-radius: .75rem; color: var(--repro-ink, #071A3D); font-size: .88rem; min-height: 3.2rem; padding: .75rem 3rem .75rem 1rem; width: 100%; }
.repro-simulator__select:focus { border-color: var(--repro-accent, #1769FF); box-shadow: 0 0 0 4px color-mix(in srgb, var(--repro-accent, #1769FF) 17%, transparent); outline: 0; }
.repro-simulator__select-arrow { color: var(--repro-accent, #1769FF); font-size: 1.4rem; line-height: 1; pointer-events: none; position: absolute; right: 1rem; top: 50%; transform: translateY(-58%); }
.repro-simulator__selection-hint { color: #64748b; font-size: .72rem; grid-column: 1 / -1; margin: -.35rem 0 0; }

.repro-simulator__empty { align-items: flex-start; background: rgba(255, 255, 255, .08); border: 1px dashed rgba(255, 255, 255, .23); border-radius: 1rem; color: rgba(255, 255, 255, .76); display: flex; gap: .85rem; margin-top: 1.25rem; padding: 1rem 1.1rem; }
.repro-simulator__empty--standalone { margin-top: 2rem; }
.repro-simulator__empty-index { color: var(--repro-accent, #1769FF); flex: 0 0 auto; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.repro-simulator__empty strong { color: #fff; display: block; font-size: .88rem; }
.repro-simulator__empty p { font-size: .76rem; line-height: 1.45; margin: .25rem 0 0; }
.repro-simulator__empty[hidden] { display: none !important; }

/* The hidden attribute is the source of truth; .is-visible is only the JS state hook. */
.repro-simulator__result { display: none; margin-top: 1.25rem; }
.repro-simulator__result.is-visible { display: block; }
.repro-simulator__result[hidden] { display: none !important; }
.repro-result__header { align-items: flex-start; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: 1rem 1rem 0 0; display: flex; gap: 1rem; justify-content: space-between; padding: 1rem 1.1rem; }
.repro-result__identity { align-items: center; display: flex; gap: 1rem; min-width: 0; }
.repro-result__visual { flex: 0 0 9rem; position: relative; }
.repro-result__visual > .repro-media { width: 9rem; }
.repro-result__logo { bottom: -.35rem; left: -.35rem; position: absolute; width: 2.65rem; z-index: 2; }
.repro-result__logo .repro-media { border: 2px solid var(--repro-primary, #0B132B); box-shadow: 0 8px 18px rgba(0, 0, 0, .22); }
.repro-result__identity-copy { min-width: 0; }
.repro-result__header h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 900; letter-spacing: -.04em; margin: .35rem 0 0; }
.repro-result__header p { color: rgba(255, 255, 255, .62); font-size: .76rem; line-height: 1.45; margin: .3rem 0 0; }
.repro-result__badge { align-items: center; background: rgba(74, 222, 128, .12); border: 1px solid rgba(134, 239, 172, .22); border-radius: 999px; color: #bbf7d0; display: inline-flex; flex: 0 0 auto; font-size: .66rem; font-weight: 800; gap: .4rem; padding: .48rem .65rem; white-space: nowrap; }
.repro-result__badge > span { background: #4ade80; border-radius: 999px; height: .4rem; width: .4rem; }
.repro-result__metrics { display: grid; gap: .65rem; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: .65rem 0 0; }
.repro-result__metric { background: var(--repro-surface, #fff); border-radius: .8rem; color: var(--repro-ink, #071A3D); min-height: 7.2rem; padding: 1rem; }
.repro-result__metric--gain { background: linear-gradient(135deg, var(--repro-accent, #1769FF), #1250c5); color: #fff; }
.repro-result__metric-label { color: #64748b; display: block; font-size: .66rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.repro-result__metric--gain .repro-result__metric-label { color: rgba(255, 255, 255, .72); }
.repro-result__metric strong { display: block; font-size: 1.7rem; font-weight: 900; letter-spacing: -.04em; margin-top: .65rem; }
.repro-result__metric small { color: #64748b; display: block; font-size: .7rem; font-weight: 800; margin-top: .12rem; }
.repro-result__metric--gain small { color: rgba(255, 255, 255, .72); }

.repro-result__offers { background: var(--repro-surface, #fff); border-radius: 1rem; color: var(--repro-ink, #071A3D); margin-top: .65rem; padding: clamp(1rem, 2vw, 1.4rem); }
.repro-result__offers-heading { align-items: end; display: flex; gap: 1rem; justify-content: space-between; }
.repro-result__offers-heading .repro-simulator__step { color: var(--repro-accent, #1769FF); }
.repro-result__offers-heading h4 { font-size: 1.05rem; font-weight: 900; letter-spacing: -.025em; margin: .35rem 0 0; }
.repro-result__offers-heading > span { color: #64748b; font-size: .7rem; }
.repro-result__offers-grid { display: grid; gap: .75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1rem; }
.repro-offer-card { background: #f8fafc; border: 1px solid #d9e2ef; border-radius: .85rem; display: grid; gap: .8rem; padding: 1rem; }
.repro-offer-card--stage-2 { background: linear-gradient(145deg, var(--repro-primary, #0B132B), #132b57); border-color: transparent; color: #fff; }
.repro-offer-card__top,
.repro-offer-card__footer { align-items: center; display: flex; justify-content: space-between; }
.repro-offer-card__stage { color: var(--repro-accent, #1769FF); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.repro-offer-card--stage-2 .repro-offer-card__stage { color: #93c5fd; }
.repro-offer-card__arrow { color: #94a3b8; font-size: 1.1rem; }
.repro-offer-card__description { color: #64748b; font-size: .77rem; line-height: 1.45; margin: 0; min-height: 2.25rem; }
.repro-offer-card--stage-2 .repro-offer-card__description { color: rgba(255, 255, 255, .67); }
.repro-offer-card__gain { border-top: 1px solid #d9e2ef; display: grid; gap: .3rem; padding-top: .7rem; }
.repro-offer-card--stage-2 .repro-offer-card__gain { border-color: rgba(255, 255, 255, .16); }
.repro-offer-card__gain span,
.repro-offer-card__footer > span { color: #64748b; font-size: .66rem; font-weight: 800; }
.repro-offer-card--stage-2 .repro-offer-card__gain span,
.repro-offer-card--stage-2 .repro-offer-card__footer > span { color: rgba(255, 255, 255, .62); }
.repro-offer-card__gain strong { color: var(--repro-ink, #071A3D); font-size: 1rem; font-weight: 900; }
.repro-offer-card--stage-2 .repro-offer-card__gain strong { color: #fff; }
.repro-offer-card__gain small { font-size: .66rem; }
.repro-offer-card__gain i { color: #94a3b8; font-style: normal; margin: 0 .2rem; }
.repro-offer-card__footer { border-top: 1px solid #d9e2ef; padding-top: .7rem; }
.repro-offer-card--stage-2 .repro-offer-card__footer { border-color: rgba(255, 255, 255, .16); }
.repro-offer-card__footer strong { color: var(--repro-ink, #071A3D); font-size: 1.15rem; font-weight: 900; }
.repro-offer-card--stage-2 .repro-offer-card__footer strong { color: #fff; }
.repro-result__no-offers { background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: .75rem; color: #64748b; font-size: .78rem; padding: 1rem; }

/* Keep the compact Builder preview stable while the public block uses the full simulator layout. */
.repro-simulator--preview { border-radius: 1rem; box-shadow: 0 16px 34px rgba(7, 26, 61, .16); }
.repro-simulator--preview::before,
.repro-simulator--preview::after { display: none; }
.repro-simulator--preview .repro-simulator__header { display: block; padding: 1.25rem; }
.repro-simulator--preview .repro-simulator__header h2 { font-size: 1.4rem; letter-spacing: -.035em; margin: .3rem 0 0; }
.repro-simulator--preview .repro-simulator__header p:last-child { font-size: .78rem; margin-top: .35rem; }
.repro-simulator--preview .repro-simulator__eyebrow { color: #93c5fd; }
.repro-simulator--preview .repro-simulator__selector { color: #fff; display: grid; gap: .35rem; margin: 0 1.25rem 1.25rem; }
.repro-simulator--preview .repro-simulator__selector select { background: rgba(255, 255, 255, .96); border: 1px solid #b8c7dc; border-radius: .65rem; color: var(--repro-ink, #071A3D); min-height: 2.6rem; padding: .55rem .7rem; width: 100%; }

@media (max-width: 960px) {
    .repro-admin-grid { grid-template-columns: 1fr; }
    .repro-simulator__header { flex-direction: column; }
    .repro-simulator__signal { align-self: flex-start; }
}

@media (max-width: 720px) {
    .repro-admin-hero { align-items: flex-start; flex-direction: column; }
    .repro-admin-status-stack { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .repro-admin-form-grid,
    .repro-color-grid,
    .repro-make-toolbar { grid-template-columns: 1fr; }
    .repro-admin-field--wide { grid-column: auto; }
    .repro-make-toolbar__actions { justify-content: flex-start; }
    .repro-make-count { grid-column: auto; }
    .repro-admin-form-actions--right { justify-content: flex-start; }
    .repro-simulator__selector-card { grid-template-columns: 1fr; }
    .repro-simulator__selection-hint { grid-column: auto; }
    .repro-result__metrics,
    .repro-result__offers-grid { grid-template-columns: 1fr; }
    .repro-result__offers-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
    .repro-simulator__shell { padding: 1rem; }
    .repro-simulator__header h2 { font-size: clamp(2rem, 13vw, 3.3rem); }
    .repro-result__header { flex-direction: column; }
    .repro-result__badge { align-self: flex-start; }
    .repro-result__visual,
    .repro-result__visual > .repro-media { flex-basis: 7rem; width: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
    .repro-make-option { transition: none; }
}

/* Front contract: responsive vehicle configurator. All visual decisions are
 * exposed through the public theme tokens emitted by the module settings. */
.repro-admin-toggle {
    align-items: flex-start;
    background: rgba(23, 105, 255, .04);
    border: 1px solid var(--repro-admin-line, rgba(148, 163, 184, .28));
    border-radius: .8rem;
    display: flex;
    gap: .7rem;
    padding: .85rem .95rem;
}

.repro-admin-toggle input { accent-color: var(--repro-accent, #1769FF); margin-top: .2rem; }
.repro-admin-toggle strong,
.repro-admin-toggle small { display: block; }
.repro-admin-toggle strong { font-size: .82rem; }
.repro-admin-toggle small { color: var(--repro-admin-muted, #64748B); font-size: .72rem; line-height: 1.45; margin-top: .18rem; }

.repro-public-page--front {
    background: var(--repro-canvas, #F4F7FB);
    max-width: none;
    padding: 0;
    width: 100%;
}

.repro-front {
    --repro-font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
    --repro-body-weight: 500;
    --repro-heading-weight: 800;
    background: var(--repro-canvas, #F4F7FB);
    color: var(--repro-ink, #071A3D);
    font-family: var(--repro-font-family);
    font-weight: var(--repro-body-weight);
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.repro-front,
.repro-front * { box-sizing: border-box; }
.repro-front [hidden] { display: none !important; }
.repro-front__select-menu[hidden] { display: none !important; }
.repro-front__shell { margin: 0 auto; max-width: 1540px; padding: clamp(1.1rem, 3vw, 3rem) clamp(1rem, 4vw, 3.75rem) 3rem; }
.repro-front__header { align-items: center; border-bottom: 1px solid var(--repro-divider, #D8E0EA); display: grid; gap: 1.25rem; grid-template-columns: auto minmax(0, 1fr) auto; padding-bottom: 1.15rem; position: relative; }
.repro-front__brandline { align-items: center; display: flex; gap: .85rem; min-width: 0; }
.repro-front__header-logo { align-items: center; color: var(--repro-accent, #1769FF); display: flex; flex: 0 0 3rem; height: 2.6rem; justify-content: center; overflow: hidden; }
.repro-front__header-logo-fallback { align-items: center; border: 2px solid currentColor; border-radius: 999px; display: flex; font-size: .75rem; font-weight: 900; height: 2.4rem; justify-content: center; letter-spacing: -.04em; width: 2.4rem; }
.repro-front__header-logo-image,
.repro-front [data-repro-header-logo-image] { display: block; height: 100%; max-width: 100%; object-fit: contain; width: 100%; }
.repro-front__brandline > strong { font-size: clamp(1.15rem, 2.1vw, 1.75rem); font-weight: var(--repro-heading-weight); letter-spacing: -.045em; text-transform: uppercase; }
.repro-front__header-rule { background: var(--repro-divider, #D8E0EA); height: 2.1rem; width: 1px; }
.repro-front__brandline > span:last-child { color: var(--repro-muted, #5E6B80); font-size: .95rem; font-weight: 600; }
.repro-front__header-description { color: var(--repro-muted, #5E6B80); font-size: clamp(.75rem, 1.2vw, .95rem); margin: 0; }
.repro-front__header-title { font-size: .95rem; font-weight: var(--repro-heading-weight); text-align: right; }
.repro-front__reset { align-items: center; background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: 999px; color: var(--repro-accent, #1769FF); cursor: pointer; display: none; font: inherit; font-size: 1.8rem; height: 3.2rem; justify-content: center; line-height: 1; padding: 0; width: 3.2rem; }

.repro-front__notice { align-items: flex-start; background: color-mix(in srgb, var(--repro-accent, #1769FF) 8%, var(--repro-surface, #fff)); border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 24%, var(--repro-border, #D8E0EA)); border-radius: .8rem; color: var(--repro-ink, #071A3D); display: flex; gap: .65rem; margin-top: 1rem; padding: .75rem .9rem; }
.repro-front__notice > span { align-items: center; background: var(--repro-accent, #1769FF); border-radius: 999px; color: var(--repro-surface, #fff); display: inline-flex; flex: 0 0 1.2rem; font-weight: 900; height: 1.2rem; justify-content: center; }
.repro-front__notice p { font-size: .78rem; line-height: 1.45; margin: 0; }

.repro-front__selection { margin-top: clamp(1.4rem, 3vw, 2.5rem); scroll-margin-top: 1rem; }
.repro-front__section-heading { align-items: center; display: flex; gap: .9rem; margin-bottom: .55rem; }
.repro-front__section-heading > span { color: var(--repro-accent, #1769FF); font-size: 1.15rem; font-weight: 900; letter-spacing: -.04em; }
.repro-front__section-heading h2 { font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: var(--repro-heading-weight); letter-spacing: -.035em; margin: 0; text-transform: none; }
.repro-front__selectors { background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: .55rem; display: grid; gap: 0; grid-template-columns: repeat(5, minmax(0, 1fr)); overflow: visible; }
.repro-front__selector { display: grid; gap: .4rem; min-width: 0; padding: 1rem 1.2rem; position: relative; }
.repro-front__selector + .repro-front__selector { border-left: 1px solid var(--repro-divider, #D8E0EA); }
.repro-front__selector > span { color: var(--repro-muted, #5E6B80); font-size: .67rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.repro-front__selector:has(.repro-front__select-control.is-open) { z-index: 10; }
.repro-front:has(.repro-front__select-control.is-open) { overflow: visible; }
.repro-front__select-control { min-width: 0; position: relative; }
.repro-front__selector select.is-enhanced { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; opacity: 0; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.repro-front__selector select { appearance: none; background: transparent; border: 0; border-bottom: 1px solid var(--repro-muted, #5E6B80); border-radius: 0; color: var(--repro-ink, #071A3D); font: inherit; font-size: clamp(.85rem, 1.3vw, 1.05rem); font-weight: 700; line-height: 1.35; min-height: 2.4rem; outline: 0; padding: .35rem 2.35rem .5rem .15rem; width: 100%; }
.repro-front__selector select option { background: var(--repro-surface, #fff); color: var(--repro-ink, #071A3D); padding: .55rem .85rem; }
.repro-front__selector:has(select.is-enhanced)::after { display: none; }
.repro-front__select-trigger { align-items: center; appearance: none; background: transparent; border: 0; border-bottom: 1px solid var(--repro-muted, #5E6B80); color: var(--repro-ink, #071A3D); cursor: pointer; display: flex; font: inherit; font-size: clamp(.85rem, 1.3vw, 1.05rem); font-weight: 700; justify-content: space-between; line-height: 1.35; min-height: 2.4rem; outline: 0; padding: .35rem 2.35rem .5rem .15rem; position: relative; text-align: left; width: 100%; }
.repro-front__select-trigger.is-placeholder { color: var(--repro-muted, #5E6B80); font-weight: 600; }
.repro-front__select-trigger::after { border-bottom: 1.5px solid currentColor; border-right: 1.5px solid currentColor; content: ''; height: .45rem; pointer-events: none; position: absolute; right: 1rem; top: 42%; transform: rotate(45deg); transition: transform .18s ease; width: .45rem; }
.repro-front__select-control.is-open .repro-front__select-trigger::after { transform: rotate(225deg); }
.repro-front__select-trigger:focus { border-bottom-color: var(--repro-focus, #1769FF); box-shadow: 0 2px 0 var(--repro-focus, #1769FF); }
.repro-front__select-trigger:disabled { color: var(--repro-muted, #5E6B80); cursor: not-allowed; opacity: .58; }
.repro-front__select-menu { background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: .45rem; box-shadow: 0 .75rem 1.8rem rgba(7, 26, 61, .16); display: grid; gap: .2rem; left: 0; max-height: min(18rem, 50vh); overflow-y: auto; padding: .4rem; position: absolute; right: 0; top: calc(100% + .45rem); z-index: 20; }
.repro-front__select-menu.is-portal { position: fixed; z-index: 1000; }
.repro-front__select-option { background: transparent; border: 0; border-radius: .3rem; color: var(--repro-ink, #071A3D); cursor: pointer; display: block; font: inherit; font-size: .88rem; font-weight: 600; padding: .65rem .75rem; text-align: left; width: 100%; }
.repro-front__select-option:hover,
.repro-front__select-option:focus,
.repro-front__select-option.is-active { background: color-mix(in srgb, var(--repro-accent, #1769FF) 11%, var(--repro-surface, #fff)); outline: 0; }
.repro-front__select-option[aria-selected="true"] { color: var(--repro-accent, #1769FF); font-weight: 800; }
.repro-front__selector::after { border-bottom: 1.5px solid var(--repro-ink, #071A3D); border-right: 1.5px solid var(--repro-ink, #071A3D); content: ''; height: .45rem; pointer-events: none; position: absolute; right: 1.35rem; top: 2.2rem; transform: rotate(45deg); width: .45rem; }
.repro-front__selector select:focus { border-bottom-color: var(--repro-focus, #1769FF); box-shadow: 0 2px 0 var(--repro-focus, #1769FF); }
.repro-front__selector select:disabled { color: var(--repro-muted, #5E6B80); cursor: not-allowed; opacity: .58; }
.repro-front__selector:has(select:disabled)::after { opacity: .42; }
.repro-front__selection-hint { color: var(--repro-muted, #5E6B80); font-size: .74rem; margin: .55rem 0 0; }

.repro-front__empty { align-items: flex-start; background: var(--repro-surface, #fff); border: 1px dashed var(--repro-border, #D8E0EA); border-radius: .75rem; display: flex; gap: .8rem; margin-top: 1rem; padding: 1rem 1.1rem; }
.repro-front__empty--standalone { margin-top: 2rem; }
.repro-front__empty-index { color: var(--repro-accent, #1769FF); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.repro-front__empty strong { display: block; font-size: .9rem; font-weight: var(--repro-heading-weight); }
.repro-front__empty p { color: var(--repro-muted, #5E6B80); font-size: .78rem; line-height: 1.45; margin: .2rem 0 0; }
.repro-front__loading { align-items: center; background: linear-gradient(115deg, color-mix(in srgb, var(--repro-accent, #1769FF) 5%, var(--repro-surface, #fff)), var(--repro-surface, #fff)); border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 22%, var(--repro-border, #D8E0EA)); border-radius: .85rem; display: flex; gap: 1rem; margin-top: 1rem; min-height: 7.2rem; overflow: hidden; padding: 1.15rem 1.3rem; position: relative; }
.repro-front__loading::after { background: linear-gradient(100deg, transparent 15%, color-mix(in srgb, var(--repro-surface, #fff) 78%, transparent) 50%, transparent 85%); content: ''; inset: 0 auto 0 -35%; pointer-events: none; position: absolute; transform: skewX(-18deg); width: 32%; animation: repro-front-loading-sheen 1.8s ease-in-out infinite; }
.repro-front__loading-mark { align-items: center; border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 28%, var(--repro-border, #D8E0EA)); border-radius: 50%; display: flex; flex: 0 0 2.8rem; gap: .18rem; height: 2.8rem; justify-content: center; position: relative; width: 2.8rem; }
.repro-front__loading-mark::before { border: 2px solid var(--repro-accent, #1769FF); border-bottom-color: transparent; border-radius: inherit; content: ''; inset: .35rem; position: absolute; animation: repro-front-loading-spin 1s linear infinite; }
.repro-front__loading-mark i { background: var(--repro-accent, #1769FF); border-radius: 50%; height: .28rem; width: .28rem; animation: repro-front-loading-dot 1.15s ease-in-out infinite; }
.repro-front__loading-mark i:nth-child(2) { animation-delay: .14s; }
.repro-front__loading-mark i:nth-child(3) { animation-delay: .28s; }
.repro-front__loading > div { position: relative; z-index: 1; }
.repro-front__loading strong { color: var(--repro-ink, #071A3D); display: block; font-size: .95rem; font-weight: var(--repro-heading-weight); }
.repro-front__loading p { color: var(--repro-muted, #5E6B80); font-size: .78rem; line-height: 1.45; margin: .25rem 0 0; }
.repro-front__loading[hidden] { display: none !important; }

.repro-front__result { margin-top: 1.5rem; }
.repro-front__result[hidden] { display: none !important; }
.repro-front__result.is-visible { animation: repro-front-result-in .42s cubic-bezier(.22, 1, .36, 1) both; }
.repro-front__vehicle-section,
.repro-front__performance-section,
.repro-front__stages-section { scroll-margin-top: 1rem; }
.repro-front__vehicle-card { background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: 1rem; display: grid; grid-template-areas: 'copy media' 'metrics media'; grid-template-columns: minmax(0, .75fr) minmax(0, 1.6fr); grid-template-rows: 1fr auto; min-width: 0; overflow: hidden; }
.repro-front__vehicle-copy { background: linear-gradient(145deg, var(--repro-surface, #fff), color-mix(in srgb, var(--repro-accent, #1769FF) 5%, var(--repro-surface, #fff))); grid-area: copy; padding: clamp(1.2rem, 3vw, 2.25rem); }
.repro-front__vehicle-brand { align-items: center; color: var(--repro-muted, #5E6B80); display: flex; gap: .7rem; margin-bottom: 1.25rem; }
.repro-front__vehicle-brand .repro-media--logo { background: color-mix(in srgb, var(--repro-accent, #1769FF) 8%, var(--repro-surface, #fff)); border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 16%, var(--repro-border, #D8E0EA)); border-radius: .8rem; flex: 0 0 clamp(3.25rem, 5vw, 4.25rem); height: clamp(3.25rem, 5vw, 4.25rem); padding: .28rem; width: clamp(3.25rem, 5vw, 4.25rem); }
.repro-front__vehicle-brand .repro-media--logo img { padding: .1rem; }
.repro-front__vehicle-brand .repro-media__fallback { background: transparent; }
.repro-front__vehicle-brand .repro-media__logo-fallback { border-width: 2.5px; font-size: .72rem; height: 76%; width: 76%; }
.repro-front__vehicle-brand > span { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.repro-front__eyebrow { color: var(--repro-accent, #1769FF); font-size: .72rem; font-weight: 800; letter-spacing: .08em; margin: 0 0 .55rem; text-transform: uppercase; }
.repro-front__vehicle-copy h2 { color: var(--repro-vehicle-title, var(--repro-ink, #071A3D)); font-size: clamp(2.3rem, 5vw, 4.2rem); font-weight: var(--repro-heading-weight); letter-spacing: -.075em; line-height: .95; margin: 0; text-transform: uppercase; }
.repro-front__vehicle-meta { color: var(--repro-muted, #5E6B80); font-size: clamp(.8rem, 1.2vw, 1rem); line-height: 1.45; margin: .75rem 0 1rem; }
.repro-front__availability { border: 1px solid currentColor; border-radius: .25rem; display: inline-flex; font-size: .72rem; font-weight: 800; letter-spacing: .05em; padding: .38rem .65rem; text-transform: uppercase; }
.repro-front__availability.is-available { color: var(--repro-accent, #1769FF); }
.repro-front__availability.is-consult { color: var(--repro-muted, #5E6B80); }
.repro-front__vehicle-media { --repro-media-glass: color-mix(in srgb, var(--repro-accent, #1769FF) 16%, transparent); --repro-media-wheel: var(--repro-ink, #071A3D); border: 0; border-radius: 0; grid-area: media; min-height: 22rem; }
.repro-front .repro-media--vehicle { background: radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--repro-accent, #1769FF) 24%, transparent), transparent 34%), radial-gradient(circle at 18% 84%, color-mix(in srgb, var(--repro-accent, #1769FF) 12%, transparent), transparent 32%), linear-gradient(145deg, color-mix(in srgb, var(--repro-accent, #1769FF) 8%, var(--repro-surface, #fff)), color-mix(in srgb, var(--repro-accent, #1769FF) 18%, var(--repro-surface, #fff))); color: var(--repro-accent, #1769FF); isolation: isolate; }
.repro-front .repro-media--vehicle::before { background: repeating-linear-gradient(90deg, transparent 0, transparent 4.8rem, color-mix(in srgb, var(--repro-accent, #1769FF) 13%, transparent) 4.85rem, transparent 4.9rem), repeating-linear-gradient(0deg, transparent 0, transparent 3rem, color-mix(in srgb, var(--repro-accent, #1769FF) 12%, transparent) 3.05rem, transparent 3.1rem); content: ''; inset: 8% 5%; opacity: .7; pointer-events: none; position: absolute; transform: perspective(30rem) rotateX(54deg) scale(1.35); transform-origin: center bottom; z-index: 0; }
.repro-front .repro-media--vehicle::after { border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 18%, transparent); border-radius: 50%; box-shadow: 0 0 0 1.1rem color-mix(in srgb, var(--repro-accent, #1769FF) 5%, transparent), 0 0 0 2.2rem color-mix(in srgb, var(--repro-accent, #1769FF) 3%, transparent); content: ''; height: 54%; left: 9%; opacity: .75; pointer-events: none; position: absolute; top: 22%; width: 82%; z-index: 0; }
.repro-front .repro-media--vehicle .repro-media__fallback { background: transparent; color: inherit; z-index: 0; }
.repro-front .repro-media--vehicle .repro-media__fallback svg { filter: drop-shadow(0 .5rem .75rem color-mix(in srgb, var(--repro-accent, #1769FF) 22%, transparent)); height: 76%; max-width: 94%; position: relative; z-index: 1; }
.repro-front__stock-metrics { background: var(--repro-surface, #fff); border-top: 1px solid var(--repro-divider, #D8E0EA); display: grid; grid-area: metrics; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 1rem clamp(1.2rem, 3vw, 2.25rem); }
.repro-front__stock-metrics > div { display: grid; gap: .15rem; padding-right: 1rem; }
.repro-front__stock-metrics > div + div { border-left: 1px solid var(--repro-divider, #D8E0EA); padding-left: 1.3rem; }
.repro-front__stock-metrics strong { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 500; letter-spacing: -.055em; }
.repro-front__stock-metrics small { color: var(--repro-muted, #5E6B80); font-size: .66rem; font-weight: 700; text-transform: uppercase; }

.repro-front__performance-section,
.repro-front__stages-section { margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.repro-front__metric-toggle { display: none; }
.repro-front__performance-table { background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: .35rem; overflow-x: auto; }
.repro-front__performance-row { align-items: center; display: grid; grid-template-columns: minmax(8.5rem, 1fr) repeat(3, minmax(7rem, 1fr)); min-width: 36rem; }
.repro-front__performance-row + .repro-front__performance-row { border-top: 1px solid var(--repro-divider, #D8E0EA); }
.repro-front__performance-row > * { min-height: 3.45rem; padding: .7rem .85rem; }
.repro-front__performance-row--head { color: var(--repro-muted, #5E6B80); font-size: .67rem; text-align: center; }
.repro-front__performance-row--head > * { min-height: 2rem; padding-bottom: .25rem; padding-top: .7rem; }
.repro-front__performance-row > strong { font-size: .82rem; font-weight: var(--repro-heading-weight); text-transform: uppercase; }
.repro-front__performance-row > span { text-align: center; }
.repro-front__performance-row b { font-size: 1.25rem; font-weight: 500; letter-spacing: -.04em; }
.repro-front__performance-value--stage_1 { color: var(--repro-stage-1, #1769FF); }
.repro-front__performance-value--stage_2 { background: color-mix(in srgb, var(--repro-stage-2, #0B132B) 7%, var(--repro-stage-2-surface, #EAF2FF)); color: var(--repro-stage-2, #0B132B); }
.repro-front__performance-row--head [data-repro-stage-column].is-selected { font-weight: 900; }
.repro-front__performance-row--head [data-repro-stage-column="stage_1"].is-selected { color: var(--repro-stage-1, #1769FF); }
.repro-front__performance-row--head [data-repro-stage-column="stage_2"].is-selected { color: var(--repro-stage-2, #0B132B); }
.repro-front__performance-value.is-selected { box-shadow: inset 0 -.22rem 0 currentColor; }
.repro-front__performance-consult.is-selected { box-shadow: inset 0 -.22rem 0 var(--repro-accent, #1769FF); }
.repro-front__performance-value small { display: block; font-size: .66rem; font-weight: 700; margin-top: .12rem; }
.repro-front__performance-consult { color: var(--repro-muted, #5E6B80); font-size: .76rem; font-weight: 800; }
.repro-front__metric-flow { align-items: center; color: var(--repro-muted, #5E6B80); display: flex; font-size: .86rem; gap: .65rem; justify-content: center; margin-top: .55rem; }
.repro-front__metric-flow span { color: var(--repro-ink, #071A3D); font-weight: 700; }
.repro-front__metric-flow [data-repro-stage-flow].is-selected { font-weight: 900; }
.repro-front__metric-flow [data-repro-stage-flow="stage_1"].is-selected { color: var(--repro-stage-1, #1769FF); }
.repro-front__metric-flow [data-repro-stage-flow="stage_2"].is-selected { color: var(--repro-stage-2, #0B132B); }
.repro-front__metric-flow i { color: var(--repro-accent, #1769FF); font-size: 1.2rem; font-style: normal; }

.repro-front__stage-track { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.repro-front__stage-card { background: var(--repro-stage-1-surface, #fff); border: 1px solid var(--repro-stage-1, #1769FF); border-radius: .55rem; display: grid; gap: 1rem; min-height: 16rem; overflow: hidden; padding: 1.15rem 1.25rem 1.25rem; position: relative; }
.repro-front__stage-card::before { background: var(--repro-stage-1, #1769FF); content: ''; height: .3rem; inset: 0 0 auto; position: absolute; }
.repro-front__stage-card--stage_2 { background: var(--repro-stage-2-surface, #EAF2FF); border-color: var(--repro-stage-2, #0B132B); }
.repro-front__stage-card--stage_2::before { background: var(--repro-stage-2, #0B132B); }
.repro-front__stage-card.is-consult { background: var(--repro-consult, #F1F5F9); border-color: var(--repro-border, #D8E0EA); }
.repro-front__stage-card.is-consult::before { background: var(--repro-muted, #5E6B80); }
.repro-front__stage-card.is-available { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.repro-front__stage-card.is-available:hover { transform: translateY(-.12rem); }
.repro-front__stage-card.is-selected { outline: 2px solid currentColor; outline-offset: 2px; }
.repro-front__stage-card--stage_1.is-selected { box-shadow: 0 0 0 .15rem color-mix(in srgb, var(--repro-stage-1, #1769FF) 18%, transparent), 0 .8rem 1.8rem color-mix(in srgb, var(--repro-stage-1, #1769FF) 13%, transparent); }
.repro-front__stage-card--stage_2.is-selected { box-shadow: 0 0 0 .15rem color-mix(in srgb, var(--repro-stage-2, #0B132B) 18%, transparent), 0 .8rem 1.8rem color-mix(in srgb, var(--repro-stage-2, #0B132B) 16%, transparent); }
.repro-front__stage-card-header { align-items: flex-start; border-bottom: 1px solid var(--repro-divider, #D8E0EA); display: flex; gap: .8rem; justify-content: space-between; padding-top: .3rem; }
.repro-front__stage-card-header > div:first-child { display: grid; gap: .35rem; }
.repro-front__stage-label { font-size: clamp(1.4rem, 2.7vw, 2rem); font-weight: var(--repro-heading-weight); letter-spacing: -.055em; text-transform: uppercase; }
.repro-front__stage-card--stage_1 .repro-front__stage-label,
.repro-front__stage-card--stage_1 .repro-front__recommended { color: var(--repro-stage-1, #1769FF); }
.repro-front__stage-card--stage_2 .repro-front__stage-label,
.repro-front__stage-card--stage_2 .repro-front__recommended { color: var(--repro-stage-2, #0B132B); }
.repro-front__recommended { font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.repro-front__gain-pills { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: flex-end; }
.repro-front__gain-pills span { border: 1px solid currentColor; border-radius: .3rem; color: var(--repro-accent, #1769FF); font-size: .7rem; font-weight: 700; padding: .35rem .55rem; white-space: nowrap; }
.repro-front__stage-card--stage_2 .repro-front__gain-pills span { color: var(--repro-stage-2, #0B132B); }
.repro-front__stage-card-tools { align-items: flex-end; display: grid; gap: .55rem; justify-items: end; }
.repro-front__stage-select { align-items: center; background: transparent; border: 1px solid currentColor; border-radius: .3rem; color: var(--repro-stage-1, #1769FF); cursor: pointer; display: inline-flex; font: inherit; font-size: .68rem; font-weight: 800; gap: .45rem; justify-content: center; min-height: 2.2rem; padding: .4rem .62rem; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.repro-front__stage-card--stage_2 .repro-front__stage-select { color: var(--repro-stage-2, #0B132B); }
.repro-front__stage-select:hover { transform: translateY(-1px); }
.repro-front__stage-select:focus-visible { box-shadow: 0 0 0 .2rem color-mix(in srgb, currentColor 22%, transparent); outline: 0; }
.repro-front__stage-select.is-selected { background: currentColor; color: var(--repro-surface, #fff); }
.repro-front__stage-select > span:last-child { font-size: 1rem; line-height: 1; }
.repro-front__stage-final { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.repro-front__stage-final > div + div { border-left: 1px solid var(--repro-divider, #D8E0EA); padding-left: 1rem; }
.repro-front__stage-final span { color: var(--repro-muted, #5E6B80); display: block; font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.repro-front__stage-final strong { display: block; font-size: 1.45rem; font-weight: 700; letter-spacing: -.05em; margin-top: .2rem; }
.repro-front__stage-final small { font-size: .72rem; font-weight: 600; }
.repro-front__stage-price { border-top: 1px solid var(--repro-divider, #D8E0EA); display: grid; gap: .1rem; justify-items: center; padding-top: .75rem; }
.repro-front__stage-price strong { font-size: clamp(1.8rem, 3.5vw, 2.65rem); font-weight: var(--repro-heading-weight); letter-spacing: -.055em; }
.repro-front__stage-price span { color: var(--repro-muted, #5E6B80); font-size: .68rem; }
.repro-front__consult-copy { align-content: center; border-top: 1px solid var(--repro-divider, #D8E0EA); display: grid; min-height: 5rem; padding-top: .8rem; }
.repro-front__consult-copy strong { font-size: 1.35rem; font-weight: var(--repro-heading-weight); }
.repro-front__consult-copy p { color: var(--repro-muted, #5E6B80); font-size: .78rem; line-height: 1.45; margin: .25rem 0 0; }
.repro-front__stage-actions { align-items: center; border-top: 1px solid var(--repro-divider, #D8E0EA); display: grid; gap: .75rem; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); margin-top: auto; padding-top: .9rem; }
.repro-front__stage-actions--consult { grid-template-columns: 1fr; }
.repro-front__cta { align-items: center; display: inline-flex; font-size: .78rem; font-weight: 800; justify-content: center; min-height: 2.75rem; padding: .55rem .8rem; text-align: center; text-decoration: none; transition: transform .2s ease, filter .2s ease, background-color .2s ease; }
.repro-front__cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.repro-front__cta--primary { background: var(--repro-accent, #1769FF); border: 1px solid var(--repro-accent, #1769FF); border-radius: .2rem; color: var(--repro-surface, #fff); }
.repro-front__cta--secondary { border-bottom: 1px solid currentColor; color: var(--repro-accent, #1769FF); gap: .55rem; justify-content: flex-start; }
.repro-front__stage-card--stage_1 .repro-front__cta--primary { background: var(--repro-stage-1, #1769FF); border-color: var(--repro-stage-1, #1769FF); }
.repro-front__stage-card--stage_1 .repro-front__cta--secondary { color: var(--repro-stage-1, #1769FF); }
.repro-front__stage-card--stage_2 .repro-front__cta--primary { background: var(--repro-stage-2, #0B132B); border-color: var(--repro-stage-2, #0B132B); }
.repro-front__stage-card--stage_2 .repro-front__cta--secondary { color: var(--repro-stage-2, #0B132B); }
.repro-front__cta--secondary span { font-size: 1.25rem; line-height: 1; }
.repro-front__cta--consult { background: transparent; border: 1px solid var(--repro-accent, #1769FF); border-radius: .2rem; color: var(--repro-accent, #1769FF); }
.repro-front__stage-dots { display: none; }
.repro-front__mobile-nav { display: none; }

[data-repro-animation="subtle"] .repro-front__stage-card--stage_2::after,
[data-repro-animation="tech"] .repro-front__stage-card::after { background: linear-gradient(115deg, transparent 18%, color-mix(in srgb, var(--repro-accent, #1769FF) 11%, transparent) 48%, transparent 78%); content: ''; inset: 0; pointer-events: none; position: absolute; transform: translateX(-100%); }
[data-repro-animation="subtle"] .repro-front__stage-card--stage_2::after { animation: repro-front-sheen 12s ease-in-out infinite; }
[data-repro-animation="tech"] .repro-front__stage-card::after { animation: repro-front-sheen 8s ease-in-out infinite; }
[data-repro-animation="tech"] .repro-front__vehicle-card::after { border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 16%, transparent); border-radius: 1rem; content: ''; inset: .35rem; pointer-events: none; position: absolute; transform: scale(.98); animation: repro-front-pulse 5s ease-in-out infinite; }
.repro-front__vehicle-card { position: relative; }

@keyframes repro-front-sheen {
    0%, 40% { transform: translateX(-100%); }
    70%, 100% { transform: translateX(100%); }
}

@keyframes repro-front-pulse {
    0%, 100% { opacity: .35; transform: scale(.98); }
    50% { opacity: .9; transform: scale(1); }
}

@keyframes repro-front-loading-spin {
    to { transform: rotate(360deg); }
}

@keyframes repro-front-loading-dot {
    0%, 100% { opacity: .35; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-.2rem); }
}

@keyframes repro-front-loading-sheen {
    0%, 25% { transform: translateX(0) skewX(-18deg); }
    70%, 100% { transform: translateX(470%) skewX(-18deg); }
}

@keyframes repro-front-result-in {
    from { opacity: 0; transform: translateY(.65rem); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
    .repro-front__header { grid-template-columns: auto minmax(0, 1fr); }
    .repro-front__header-title { display: none; }
    .repro-front__selectors { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .repro-front__selector:nth-child(4) { border-left: 0; border-top: 1px solid var(--repro-divider, #D8E0EA); }
    .repro-front__selector:nth-child(5) { border-top: 1px solid var(--repro-divider, #D8E0EA); }
}

@media (max-width: 767px) {
    .repro-front { padding-bottom: 4.6rem; }
    .repro-front__shell { padding-bottom: 1.5rem; }
    .repro-front__header { align-items: start; gap: .7rem; grid-template-columns: 1fr; padding-bottom: .9rem; }
    .repro-front__reset { display: inline-flex; position: absolute; right: 0; top: -.2rem; }
    .repro-front__brandline { gap: .55rem; }
    .repro-front__header-logo { flex-basis: 2.5rem; height: 2.2rem; }
    .repro-front__header-logo-fallback { height: 2rem; width: 2rem; }
    .repro-front__brandline > strong { font-size: 1.2rem; }
    .repro-front__brandline > span:last-child { font-size: .78rem; }
    .repro-front__header-description { font-size: .75rem; line-height: 1.4; }
    .repro-front__selectors { grid-template-columns: 1fr; }
    .repro-front__selector,
    .repro-front__selector:nth-child(4),
    .repro-front__selector:nth-child(5) { border-left: 0; border-top: 1px solid var(--repro-divider, #D8E0EA); padding: .8rem 1rem; }
    .repro-front__selector:first-child { border-top: 0; }
    .repro-front__selector::after { right: 1.1rem; top: 1.95rem; }
    .repro-front__selector select { font-size: .9rem; }
    .repro-front__vehicle-card { display: grid; grid-template-areas: 'copy' 'media' 'metrics'; grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
    .repro-front__vehicle-copy { padding: 1.15rem; }
    .repro-front__vehicle-brand { margin-bottom: .9rem; }
    .repro-front__vehicle-copy h2 { font-size: clamp(2.2rem, 14vw, 3.55rem); }
    .repro-front__vehicle-media { min-height: 13rem; }
    .repro-front__stock-metrics { padding: .85rem 1.15rem; }
    .repro-front__stock-metrics strong { font-size: 1.7rem; }
    .repro-front__metric-toggle { background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: 999px; display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: .65rem; overflow: hidden; padding: .15rem; }
    .repro-front__metric-toggle button { background: transparent; border: 0; border-radius: 999px; color: var(--repro-ink, #071A3D); font: inherit; font-size: .86rem; font-weight: 700; min-height: 2.35rem; }
    .repro-front__metric-toggle button[aria-selected="true"] { background: var(--repro-accent, #1769FF); color: var(--repro-surface, #fff); }
    .repro-front__performance-row > * { padding-left: .65rem; padding-right: .65rem; }
    .repro-front__metric-flow { justify-content: flex-start; overflow-x: auto; padding: .2rem 0; white-space: nowrap; }
    .repro-front__stage-track { display: flex; gap: .8rem; margin: 0 -.15rem; overflow-x: auto; overscroll-behavior-x: contain; padding: .15rem .15rem .75rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .repro-front__stage-track::-webkit-scrollbar { display: none; }
    .repro-front__stage-card { flex: 0 0 min(88vw, 24rem); min-height: 18rem; scroll-snap-align: center; }
    .repro-front__stage-dots { display: flex; gap: .4rem; justify-content: center; margin-top: .2rem; }
    .repro-front__stage-dots span { background: var(--repro-border, #D8E0EA); border-radius: 999px; height: .45rem; transition: background-color .2s ease, transform .2s ease; width: .45rem; }
    .repro-front__stage-dots span.is-active { background: var(--repro-accent, #1769FF); transform: scale(1.25); }
    .repro-front__mobile-nav { align-items: stretch; background: color-mix(in srgb, var(--repro-surface, #fff) 94%, transparent); border-top: 1px solid var(--repro-border, #D8E0EA); bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); left: 0; padding: .45rem .6rem calc(.45rem + env(safe-area-inset-bottom)); position: fixed; right: 0; z-index: 20; }
    .repro-front__mobile-nav a { align-items: center; color: var(--repro-muted, #5E6B80); display: flex; flex-direction: column; font-size: .65rem; font-weight: 700; gap: .15rem; justify-content: center; min-height: 2.8rem; text-decoration: none; }
    .repro-front__mobile-nav a > span { font-size: 1.1rem; line-height: 1; }
    .repro-front__mobile-nav a.is-active { color: var(--repro-accent, #1769FF); }
}

@media (prefers-reduced-motion: reduce) {
    .repro-front *,
    .repro-front *::before,
    .repro-front *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Interchangeable result layouts. The same backend values and CTA contracts
 * feed every design; only composition, emphasis and motion change. */
.repro-front:not(.has-selection) .repro-front__brandline { display: none; }
.repro-front .repro-media--vehicle::before,
.repro-front .repro-media--vehicle::after { display: none; }
.repro-front .repro-media--vehicle .repro-media__fallback-image { inset: 0; position: absolute; z-index: 1; }
.repro-front .repro-front__vehicle-media,
.repro-front .repro-front__vehicle-brand .repro-media--logo,
.repro-front .repro-front__vehicle-media img,
.repro-front .repro-front__vehicle-brand .repro-media--logo img { -webkit-user-drag: none; user-select: none; }
.repro-front__design-two-summary,
.repro-front__design-two-flow,
.repro-front__dyno-panel { display: none; }

/* Diseño 1 · premium limpio */
.repro-front--design_1 .repro-front__shell { max-width: 1460px; }
.repro-front--design_1 .repro-front__header { border-bottom-color: color-mix(in srgb, var(--repro-ink, #071A3D) 13%, var(--repro-divider, #D8E0EA)); }
.repro-front--design_1 .repro-front__selectors,
.repro-front--design_1 .repro-front__vehicle-card,
.repro-front--design_1 .repro-front__performance-table { box-shadow: 0 .85rem 2rem color-mix(in srgb, var(--repro-ink, #071A3D) 6%, transparent); }
.repro-front--design_1 .repro-front__vehicle-card { border-radius: 1.2rem; }
.repro-front--design_1 .repro-front__vehicle-copy { padding: clamp(1.5rem, 3.2vw, 2.7rem); }
.repro-front--design_1 .repro-front__vehicle-copy h2 { font-size: clamp(2.6rem, 5.4vw, 4.8rem); }
.repro-front--design_1 .repro-front__stage-card { border-radius: .8rem; box-shadow: 0 .8rem 1.8rem color-mix(in srgb, var(--repro-ink, #071A3D) 5%, transparent); }
.repro-front--design_1 .repro-front__stage-card--stage_2 { box-shadow: 0 1rem 2.2rem color-mix(in srgb, var(--repro-stage-2, #0B132B) 13%, transparent); }

/* Diseño 2 · resultado destacado */
.repro-front--design_2 .repro-front__vehicle-card { border-color: color-mix(in srgb, var(--repro-accent, #1769FF) 35%, var(--repro-border, #D8E0EA)); border-radius: 1.35rem; box-shadow: 0 1.2rem 2.8rem color-mix(in srgb, var(--repro-accent, #1769FF) 12%, transparent); }
.repro-front--design_2 .repro-front__vehicle-copy { background: linear-gradient(160deg, var(--repro-surface, #fff), color-mix(in srgb, var(--repro-accent, #1769FF) 10%, var(--repro-surface, #fff))); padding: clamp(1.6rem, 3.6vw, 3rem); }
.repro-front--design_2 .repro-front__vehicle-copy h2 { font-size: clamp(2.8rem, 6.2vw, 5.2rem); letter-spacing: -.09em; }
.repro-front--design_2 .repro-front__vehicle-media { min-height: 25rem; }
.repro-front--design_2 .repro-front__stock-metrics { padding-bottom: 1.2rem; padding-top: 1.2rem; }
.repro-front--design_2 .repro-front__design-two-summary { align-items: center; background: linear-gradient(115deg, var(--repro-primary, #0B132B), color-mix(in srgb, var(--repro-accent, #1769FF) 60%, var(--repro-primary, #0B132B))); border-radius: 1rem; color: var(--repro-surface, #fff); display: grid; gap: 1rem; grid-template-columns: minmax(8rem, .55fr) minmax(15rem, 1.25fr) auto; margin-top: 1rem; overflow: hidden; padding: 1.1rem 1.3rem; position: relative; }
.repro-front--design_2 .repro-front__design-two-summary::after { border: 1px solid color-mix(in srgb, var(--repro-surface, #fff) 24%, transparent); border-radius: 50%; content: ''; height: 14rem; pointer-events: none; position: absolute; right: -4rem; top: -8rem; width: 14rem; }
.repro-front__design-two-kicker { color: color-mix(in srgb, var(--repro-surface, #fff) 68%, transparent); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.repro-front__design-two-main { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.repro-front__design-two-main > div { display: grid; gap: .12rem; min-width: 0; }
.repro-front__design-two-main > div + div { border-left: 1px solid color-mix(in srgb, var(--repro-surface, #fff) 22%, transparent); padding-left: 1.2rem; }
.repro-front__design-two-label { color: color-mix(in srgb, var(--repro-surface, #fff) 66%, transparent); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.repro-front__design-two-main strong { font-size: clamp(1.4rem, 2.8vw, 2.15rem); font-weight: var(--repro-heading-weight); letter-spacing: -.06em; line-height: 1; }
.repro-front__design-two-main small { color: color-mix(in srgb, var(--repro-surface, #fff) 68%, transparent); font-size: .68rem; }
.repro-front__design-two-jump { align-items: center; background: transparent; border: 1px solid color-mix(in srgb, var(--repro-surface, #fff) 45%, transparent); border-radius: .35rem; color: var(--repro-surface, #fff); cursor: pointer; display: inline-flex; font: inherit; font-size: .74rem; font-weight: 800; gap: .7rem; justify-content: center; min-height: 2.7rem; padding: .55rem .8rem; position: relative; transition: background-color .2s ease, border-color .2s ease, transform .2s ease; z-index: 1; }
.repro-front__design-two-jump:hover { background: color-mix(in srgb, var(--repro-surface, #fff) 12%, transparent); border-color: var(--repro-surface, #fff); transform: translateY(-1px); }
.repro-front__design-two-jump span { font-size: 1.1rem; line-height: 1; }
.repro-front--design_2 .repro-front__design-two-flow { align-items: stretch; background: var(--repro-surface, #fff); border: 1px solid var(--repro-border, #D8E0EA); border-radius: .8rem; display: flex; gap: 1rem; justify-content: space-around; margin-top: .75rem; padding: .85rem 1rem; }
.repro-front__design-two-flow span { display: grid; gap: .15rem; min-width: 5rem; text-align: center; }
.repro-front__design-two-flow small { color: var(--repro-muted, #5E6B80); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.repro-front__design-two-flow b { font-size: 1.1rem; font-weight: 800; letter-spacing: -.04em; }
.repro-front__design-two-flow [data-repro-stage-flow].is-selected b { font-weight: 900; }
.repro-front__design-two-flow [data-repro-stage-flow="stage_1"].is-selected b { color: var(--repro-stage-1, #1769FF); }
.repro-front__design-two-flow [data-repro-stage-flow="stage_2"].is-selected b { color: var(--repro-stage-2, #0B132B); }
.repro-front__design-two-flow i { align-self: center; color: var(--repro-accent, #1769FF); font-size: 1.2rem; font-style: normal; }
.repro-front--design_2 .repro-front__metric-flow { display: none; }
.repro-front--design_2 .repro-front__stage-card--stage_2.is-available { box-shadow: 0 .9rem 2rem color-mix(in srgb, var(--repro-stage-2, #0B132B) 16%, transparent); transform: translateY(-.2rem); }

/* Diseño 3 · dyno técnico */
.repro-front--design_3 .repro-front__header { border-bottom-color: color-mix(in srgb, var(--repro-accent, #1769FF) 30%, var(--repro-divider, #D8E0EA)); }
.repro-front--design_3 .repro-front__vehicle-card { border-radius: .8rem; }
.repro-front--design_3 .repro-front__vehicle-copy { background: var(--repro-surface, #fff); }
.repro-front--design_3 .repro-front__vehicle-media { min-height: 24rem; }
.repro-front--design_3 .repro-front__dyno-panel { align-items: center; background: linear-gradient(130deg, var(--repro-primary, #0B132B), color-mix(in srgb, var(--repro-primary, #0B132B) 68%, var(--repro-accent, #1769FF))); border: 1px solid color-mix(in srgb, var(--repro-accent, #1769FF) 34%, transparent); border-radius: 1rem; color: var(--repro-surface, #fff); display: grid; gap: 1rem; grid-template-columns: minmax(12rem, .78fr) minmax(18rem, 1.22fr); margin-bottom: 1rem; overflow: hidden; padding: clamp(1rem, 2.2vw, 1.6rem); position: relative; }
.repro-front--design_3 .repro-front__dyno-panel::before { background: repeating-linear-gradient(90deg, transparent 0, transparent 3.8rem, color-mix(in srgb, var(--repro-surface, #fff) 7%, transparent) 3.85rem, transparent 3.9rem); content: ''; inset: 0; opacity: .6; pointer-events: none; position: absolute; }
.repro-front__dyno-copy { position: relative; z-index: 1; }
.repro-front__dyno-kicker { color: var(--repro-accent, #1769FF); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.repro-front__dyno-copy h3 { color: inherit; font-size: clamp(1.25rem, 2.5vw, 2rem); font-weight: var(--repro-heading-weight); letter-spacing: -.055em; margin: .4rem 0 0; }
.repro-front__dyno-copy p { color: color-mix(in srgb, var(--repro-surface, #fff) 68%, transparent); font-size: .75rem; line-height: 1.5; margin: .5rem 0 0; max-width: 20rem; }
.repro-front__dyno-stats { border-top: 1px solid color-mix(in srgb, var(--repro-surface, #fff) 18%, transparent); display: grid; gap: .8rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1rem; padding-top: .8rem; }
.repro-front__dyno-stats div { display: grid; gap: .15rem; }
.repro-front__dyno-stats small { color: color-mix(in srgb, var(--repro-surface, #fff) 60%, transparent); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.repro-front__dyno-stats strong { color: inherit; font-size: 1rem; font-weight: 800; }
.repro-front__dyno { color: var(--repro-accent, #1769FF); min-height: 12rem; position: relative; z-index: 1; }
.repro-front__dyno svg { aspect-ratio: 360 / 210; display: block; fill: none; height: auto; margin: 0 auto; max-width: 25rem; overflow: visible; width: 100%; }
.repro-front__dyno-track,
.repro-front__dyno-range { fill: none; stroke-linecap: round; stroke-width: 9; }
.repro-front__dyno-track { stroke: color-mix(in srgb, var(--repro-surface, #fff) 18%, transparent); }
.repro-front__dyno-range { stroke: var(--repro-accent, #1769FF); stroke-dasharray: var(--repro-gauge-progress) 100; }
.repro-front__dyno-ticks path { fill: none; stroke: color-mix(in srgb, var(--repro-surface, #fff) 64%, transparent); stroke-width: 2; }
.repro-front__dyno-needle { background: var(--repro-surface, #fff); bottom: 1.55rem; height: 42%; left: 50%; position: absolute; transform: rotate(-120deg); transform-origin: 50% 100%; transition: transform 1.1s cubic-bezier(.22, 1, .36, 1); will-change: transform; width: .2rem; }
.repro-front__dyno-needle::before { background: var(--repro-surface, #fff); border-radius: 999px; box-shadow: 0 0 0 .2rem var(--repro-accent, #1769FF); content: ''; height: .55rem; left: 50%; position: absolute; top: 0; transform: translate(-50%, -50%); width: .55rem; }
.repro-front__dyno-hub { background: var(--repro-accent, #1769FF); border: .25rem solid var(--repro-surface, #fff); border-radius: 50%; bottom: 1.2rem; height: 1.25rem; left: 50%; position: absolute; transform: translateX(-50%); width: 1.25rem; }
.repro-front__dyno-reading { bottom: .25rem; display: grid; left: 50%; position: absolute; text-align: center; transform: translateX(-50%); }
.repro-front__dyno-reading strong { color: var(--repro-surface, #fff); font-size: clamp(1.55rem, 3.3vw, 2.4rem); font-weight: var(--repro-heading-weight); letter-spacing: -.07em; line-height: 1; white-space: nowrap; }
.repro-front__dyno-reading small { font-size: .62em; letter-spacing: 0; }
.repro-front__dyno-reading span { color: color-mix(in srgb, var(--repro-surface, #fff) 65%, transparent); font-size: .63rem; font-weight: 900; letter-spacing: .12em; margin-top: .2rem; text-transform: uppercase; }
.repro-front--design_3[data-repro-animation="subtle"] .repro-front__dyno-needle,
.repro-front--design_3[data-repro-animation="tech"] .repro-front__dyno-needle { animation: repro-front-dyno-sweep 1.35s cubic-bezier(.22, 1, .36, 1) both; }
.repro-front--design_3[data-repro-animation="none"] .repro-front__dyno-needle { transform: rotate(var(--repro-gauge-angle)); transition: none; }
.repro-front--design_3 .repro-front__metric-flow { color: var(--repro-muted, #5E6B80); }

/* Vehicle names are data, not fixed design copy: long makes and models must
 * remain readable even when the module is embedded in a narrow host column. */
.repro-front__vehicle-copy,
.repro-front__vehicle-brand,
.repro-front__vehicle-meta { max-width: 100%; min-width: 0; }
.repro-front__vehicle-brand > span { max-width: 100%; min-width: 0; overflow-wrap: anywhere; }
.repro-front__vehicle-copy h2 { max-width: 100%; min-width: 0; overflow-wrap: anywhere; word-break: normal; }
.repro-front__vehicle-meta { overflow-wrap: anywhere; }

@supports (width: 1cqw) {
    .repro-front__vehicle-copy { container-type: inline-size; }
    .repro-front__vehicle-copy h2 { font-size: clamp(1.8rem, 11cqw, 4.8rem); }
}

@keyframes repro-front-dyno-sweep {
    from { transform: rotate(-120deg); }
    to { transform: rotate(var(--repro-gauge-angle)); }
}

@media (max-width: 1120px) {
    .repro-front--design_2 .repro-front__design-two-summary { grid-template-columns: minmax(7rem, .55fr) minmax(14rem, 1.2fr); }
    .repro-front--design_2 .repro-front__design-two-jump { grid-column: 1 / -1; justify-self: start; }
    .repro-front--design_3 .repro-front__dyno-panel { grid-template-columns: minmax(11rem, .7fr) minmax(16rem, 1.3fr); }
}

@media (max-width: 767px) {
    .repro-front--design_2 .repro-front__vehicle-media,
    .repro-front--design_3 .repro-front__vehicle-media { min-height: 15rem; }
    .repro-front--design_2 .repro-front__design-two-summary { align-items: stretch; grid-template-columns: 1fr; padding: 1rem; }
    .repro-front--design_2 .repro-front__design-two-jump { justify-self: stretch; }
    .repro-front--design_2 .repro-front__design-two-flow { justify-content: flex-start; overflow-x: auto; }
    .repro-front--design_2 .repro-front__design-two-flow span { flex: 0 0 5rem; }
    .repro-front--design_3 .repro-front__dyno-panel { grid-template-columns: 1fr; }
    .repro-front--design_3 .repro-front__dyno { min-height: 13rem; }
    .repro-front--design_3 .repro-front__dyno-copy p { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    .repro-front--design_3 .repro-front__dyno-needle,
    .repro-front--design_3[data-repro-animation="subtle"] .repro-front__dyno-needle,
    .repro-front--design_3[data-repro-animation="tech"] .repro-front__dyno-needle { animation: none !important; transform: rotate(var(--repro-gauge-angle)) !important; transition: none !important; }
}
