:root {
    color-scheme: dark;
    --page-bg: #07111f;
    --panel-bg: rgba(13, 28, 48, .88);
    --panel-border: rgba(148, 163, 184, .18);
    --text: #f8fafc;
    --muted: #a8b5c7;
    --accent: #38bdf8;
    --accent-strong: #0ea5e9;
    --success: #34d399;
    --danger: #fb7185;
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--page-bg);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 12%, rgba(14, 165, 233, .14), transparent 28rem),
        radial-gradient(circle at 90% 88%, rgba(30, 64, 175, .16), transparent 30rem),
        var(--page-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body > main {
    flex: 1;
}

a {
    color: inherit;
}

.site-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    padding: 28px 0;
}

.home-page .site-header {
    padding: 18px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(56, 189, 248, .45);
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(56, 189, 248, .28), rgba(37, 99, 235, .12));
    box-shadow: inset 0 0 18px rgba(56, 189, 248, .12);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: .8rem;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: clamp(36px, 7vw, 88px);
    align-items: center;
    padding: clamp(48px, 8vh, 92px) 0 72px;
}

.home-hero {
    padding: 22px 0 46px;
}

.hero-intro {
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(220px, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    min-height: 190px;
    margin-bottom: 24px;
}

.future-illustration {
    min-height: 170px;
    border-radius: 38% 62% 55% 45% / 48% 42% 58% 52%;
    background:
        radial-gradient(circle at 48% 48%, rgba(56, 189, 248, .1), transparent 55%),
        linear-gradient(135deg, rgba(56, 189, 248, .04), rgba(37, 99, 235, .02));
}

.tool-card {
    width: min(760px, 100%);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4.85rem);
    line-height: 1.03;
    letter-spacing: -.055em;
}

.home-hero h1 {
    max-width: 650px;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.04;
}

.hero-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.16rem);
}

.home-hero .hero-copy {
    margin-top: 16px;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.support-list li {
    padding: 7px 11px;
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, .46);
    font-size: .79rem;
    white-space: nowrap;
}

.calculator-card {
    padding: clamp(24px, 5vw, 38px);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    background: var(--panel-bg);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
    backdrop-filter: blur(16px);
}

.calculator-card h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -.02em;
}

.calculator-hint {
    margin: 8px 0 24px;
    color: var(--muted);
    font-size: .9rem;
}

.field-label {
    display: block;
    margin-bottom: 9px;
    color: #dbeafe;
    font-size: .88rem;
    font-weight: 700;
}

.serial-input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 13px;
    outline: none;
    color: var(--text);
    background: rgba(2, 8, 23, .7);
    font: 600 1rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: .035em;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.serial-textarea {
    min-height: 118px;
    padding: 15px 16px;
    resize: vertical;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.photo-input {
    min-height: 68px;
    padding: 15px 20px;
    border: 1px solid rgba(125, 211, 252, .3);
    border-radius: 14px;
    background: rgba(14, 165, 233, .07);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-align: center;
    transition: border-color .18s ease, background .18s ease;
}

.photo-input span {
    color: #dbeafe;
    font-weight: 800;
}

.candidate-option small {
    margin-top: 5px;
    color: var(--muted);
}

.photo-input:hover {
    border-color: rgba(125, 211, 252, .55);
    background: rgba(14, 165, 233, .11);
}

.photo-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(125, 211, 252, .45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    line-height: 1;
}

.photo-input:focus-within,
.photo-input:has(+ .visually-hidden:focus-visible) {
    outline: 3px solid rgba(125, 211, 252, .5);
}

.tool-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
    color: #718096;
    font-size: .78rem;
}

.tool-divider::before,
.tool-divider::after {
    content: "";
    height: 1px;
    background: var(--panel-border);
    flex: 1;
}

.tool-reassurance {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: .84rem;
    text-align: center;
}

.photo-preview {
    width: 100%;
    max-height: 260px;
    border-radius: 13px;
    object-fit: contain;
    background: rgba(2, 8, 23, .7);
}

.photo-preview-frame {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.photo-preview-frame[hidden] {
    display: none;
}

.test-note {
    margin: 14px 0 0;
    color: #bae6fd;
    font-size: .86rem;
}

.candidate-box {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--panel-border);
}

.candidate-box h3,
.candidate-box p {
    margin: 0 0 8px;
}

.candidate-box p {
    color: var(--muted);
    font-size: .9rem;
}

.candidate-list {
    display: grid;
    gap: 9px;
    margin-top: 15px;
}

.candidate-option {
    padding: 12px 14px;
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    background: rgba(2, 8, 23, .42);
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: center;
}

.candidate-option span,
.candidate-option small {
    display: block;
}

.detected-serial,
.code-caption {
    margin: 0;
}

.detected-serial {
    margin-bottom: 14px;
    color: #dbeafe;
    font: 700 .92rem ui-monospace, monospace;
}

.code-caption {
    margin-top: 8px;
    color: var(--muted);
    font-size: .78rem;
}

.serial-input::placeholder {
    color: #64748b;
}

.serial-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, .12);
}

.calculate-button {
    width: 100%;
    min-height: 56px;
    margin-top: 14px;
    border: 0;
    border-radius: 13px;
    color: #03111d;
    background: linear-gradient(135deg, #7dd3fc, var(--accent-strong));
    box-shadow: 0 14px 34px rgba(14, 165, 233, .2);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform .18s ease, filter .18s ease;
}

.dump-download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
}

.calculate-button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.calculate-button:focus-visible {
    outline: 3px solid rgba(125, 211, 252, .5);
    outline-offset: 3px;
}

.result-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.result-box.success {
    border: 1px solid rgba(52, 211, 153, .3);
    background: rgba(6, 78, 59, .22);
}

.result-box.error {
    border: 1px solid rgba(251, 113, 133, .3);
    color: #fecdd3;
    background: rgba(136, 19, 55, .18);
    text-align: left;
}

.result-label {
    margin: 0 0 6px;
    color: var(--success);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.radio-code {
    margin: 0;
    font: 800 clamp(2.5rem, 10vw, 4rem) ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: .14em;
    line-height: 1.05;
}

.privacy-note {
    margin: 18px 0 0;
    color: #718096;
    font-size: .76rem;
    text-align: center;
}

.contact-form .field-label {
    margin-top: 18px;
}

.contact-form .field-label:first-child {
    margin-top: 0;
}

.contact-attachment-picker {
    justify-content: flex-start;
    min-height: 64px;
    margin: 0;
    padding: 12px 16px;
    text-align: left;
}
.contact-attachment-picker__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contact-field-help {
    width: 100%;
    max-width: none !important;
    margin: 7px 0 0 !important;
    color: #718096 !important;
    font-size: .76rem;
    line-height: 1.45;
    text-align: left;
}
.contact-privacy-note {
    margin-top: 12px !important;
}

.contact-success,
.contact-error {
    padding: 16px 18px;
    margin: 0 0 18px;
    border-radius: 13px;
    font-weight: 700;
}

.contact-success {
    border: 1px solid rgba(52, 211, 153, .35);
    background: rgba(16, 185, 129, .12);
    color: #6ee7b7;
}

.contact-error {
    border: 1px solid rgba(251, 113, 133, .35);
    background: rgba(251, 113, 133, .12);
    color: var(--danger);
}

.info-section {
    padding: 32px 0 82px;
}

.info-section h2 {
    margin: 0 0 14px;
    font-size: clamp(1.55rem, 3vw, 2rem);
    letter-spacing: -.03em;
}

.info-section p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.content-section {
    padding: 46px 0;
}

.content-section h2,
.help-panel h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -.04em;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.step-grid article {
    padding: 12px 8px;
    display: flex;
    gap: 15px;
}

.step-grid span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #bae6fd;
    background: rgba(14, 165, 233, .12);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: .82rem;
    font-weight: 800;
}

.step-grid h3 {
    margin: 3px 0 6px;
}

.step-grid p,
.support-section p,
.help-panel > p {
    margin: 0;
    color: var(--muted);
}

.support-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(30px, 6vw, 68px);
    align-items: center;
}

.support-section > div > p:last-child {
    margin-top: 15px;
}

.radio-families {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.radio-families li {
    padding: 12px 0;
    border-bottom: 1px solid var(--panel-border);
    color: #dbeafe;
    font-size: .88rem;
}

.radio-families strong,
.radio-families span {
    display: block;
}

.radio-families strong {
    font-size: .96rem;
}

.radio-families span {
    margin-top: 2px;
    color: var(--muted);
}

.help-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(30px, 7vw, 80px);
    align-items: center;
    margin-top: 24px;
    margin-bottom: 56px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(56, 189, 248, .22);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(14, 165, 233, .1), rgba(13, 28, 48, .58));
}

.site-footer {
    padding: 24px 0 34px;
    border-top: 1px solid rgba(148, 163, 184, .12);
    color: #718096;
    font-size: .82rem;
}

@media (max-width: 820px) {
    .site-shell {
        width: min(100% - 28px, 640px);
    }

    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 34px;
    }

    .hero-intro,
    .support-section,
    .help-panel {
        grid-template-columns: 1fr;
    }

    .future-illustration {
        display: none;
    }

    .step-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 20px 0;
    }

    .calculator-layout {
        padding-top: 22px;
    }

    .calculator-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .home-hero {
        padding-top: 12px;
    }

    .hero-intro {
        min-height: 0;
        margin-bottom: 20px;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 11vw, 2.65rem);
        letter-spacing: -.045em;
    }

    .tool-card {
        padding: 22px 18px;
    }

    .radio-families {
        grid-template-columns: 1fr;
    }

    .support-list {
        margin-top: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Homepage composition based on the approved radia.it.pl mockup. */
.home-page {
    background:
        radial-gradient(circle at 50% 12%, rgba(21, 91, 156, .1), transparent 30rem),
        #020911;
    color: #f7fbff;
}

.home-page .site-shell {
    width: min(1240px, calc(100% - 48px));
}

.home-page .site-header {
    padding: 20px 0 12px;
}

.header-row {
    min-height: 48px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    gap: 28px;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector {
    position: relative;
}

.language-selector__toggle,
.language-selector__option {
    border: 1px solid rgba(32, 151, 255, .45);
    color: #dce7f3;
    background: #071525;
    font: inherit;
    cursor: pointer;
}

.language-selector__toggle {
    min-height: 37px;
    padding: 7px 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 800;
}

.language-selector .lang-flag {
    width: 23px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}

.language-selector__menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 9px);
    right: 0;
    width: min(390px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid rgba(32, 151, 255, .42);
    border-radius: 12px;
    background: #07111d;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .48);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.language-selector__menu:not([hidden]) {
    display: grid;
}

.language-selector__option {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border-color: transparent;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 25px 1fr auto;
    gap: 9px;
    align-items: center;
    text-align: left;
}

.language-selector__option:hover,
.language-selector__option:focus-visible {
    border-color: rgba(32, 151, 255, .48);
    background: rgba(20, 107, 183, .22);
    outline: none;
}

.language-selector__check {
    color: #39aaff;
    font-weight: 900;
}

.home-page .site-logo {
    gap: 8px;
    font-size: 1.42rem;
    letter-spacing: -.035em;
}

.home-page .site-logo > span:last-child > span {
    color: #138cff;
}

.logo-signal {
    width: 14px;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-signal i {
    width: 2px;
    border-radius: 2px;
    background: #1b9cff;
}

.logo-signal i:nth-child(1),
.logo-signal i:nth-child(3) {
    height: 10px;
}

.logo-signal i:nth-child(2) {
    height: 22px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 3vw, 44px);
}

.main-nav a,
.header-help {
    color: #dce7f3;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
}

.main-nav a:hover {
    color: #38a8ff;
}

.header-help {
    padding: 9px 15px;
    border: 1px solid rgba(32, 151, 255, .55);
    border-radius: 999px;
    white-space: nowrap;
}

.header-help span {
    width: 17px;
    height: 17px;
    margin-right: 6px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: .7rem;
}

.home-page .home-hero {
    padding: 16px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    gap: 42px;
    align-items: center;
    min-height: 390px;
}

.home-page .hero-content {
    padding: 34px 0 28px;
}

.home-page .eyebrow {
    margin-bottom: 14px;
    color: #2aa7ff;
    font-size: .76rem;
    letter-spacing: .09em;
}

.home-page .eyebrow span {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border-radius: 50%;
    background: rgba(31, 150, 255, .16);
    display: inline-grid;
    place-items: center;
}

.home-page .home-hero h1 {
    max-width: 570px;
    font-size: clamp(3rem, 5vw, 4.45rem);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.home-page .hero-copy {
    max-width: 550px;
    margin-top: 17px;
    color: #b0bfce;
    font-size: 1rem;
    line-height: 1.75;
}

.hero-benefits {
    display: flex;
    gap: clamp(22px, 3.2vw, 48px);
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-benefits li > span,
.benefit-bar article > span {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(40, 158, 255, .28);
    border-radius: 50%;
    color: #39aaff;
    background: rgba(20, 107, 183, .09);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-weight: 800;
}

.hero-benefits strong,
.hero-benefits small {
    display: block;
}

.hero-benefits strong {
    font-size: .84rem;
}

.hero-benefits small {
    margin-top: 2px;
    color: #8292a3;
    font-size: .68rem;
    line-height: 1.35;
}

.art-slot {
    position: relative;
    overflow: hidden;
}

.hero-art {
    min-height: 365px;
}

.home-page .tool-section {
    position: relative;
    z-index: 2;
    margin-top: -4px;
}

.home-page .tool-card {
    width: 100%;
    padding: 0;
    border-color: rgba(27, 132, 225, .58);
    border-radius: 15px;
    background: rgba(7, 18, 30, .94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .34), 0 0 38px rgba(17, 112, 198, .06);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    align-items: stretch;
}

.tool-column {
    min-width: 0;
    padding: 34px 44px 30px;
}

.tool-column h2 {
    margin: 0 0 24px;
    font-size: 1.08rem;
    letter-spacing: -.025em;
}

.section-icon {
    width: 34px;
    height: 34px;
    margin-right: 9px;
    border: 1px solid rgba(49, 161, 255, .35);
    border-radius: 50%;
    color: #55b6ff;
    display: inline-grid;
    place-items: center;
    font-size: .82rem;
}

.home-page .serial-textarea {
    min-height: 164px;
    padding: 17px 19px;
    border-color: rgba(130, 159, 187, .36);
    border-radius: 9px;
    background: #050e19;
    font-size: .84rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0;
}

.home-page .calculate-button {
    min-height: 58px;
    margin-top: 18px;
    border-radius: 9px;
    color: #fff;
    background: #0878ed;
    box-shadow: 0 12px 28px rgba(0, 119, 239, .18);
    letter-spacing: .025em;
}

.home-page .calculate-button span {
    margin-right: 8px;
    font-size: 1.35rem;
}

.tool-or {
    position: relative;
    display: grid;
    place-items: center;
}

.tool-or::before {
    content: "";
    position: absolute;
    inset: 34px auto 30px;
    width: 1px;
    background: rgba(142, 166, 190, .18);
}

.tool-or span {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #182431;
    display: grid;
    place-items: center;
    color: #f5f8fb;
    font-weight: 800;
}

.home-page .photo-input {
    min-height: 164px;
    padding: 24px;
    border: 1px dashed rgba(32, 151, 255, .58);
    border-radius: 9px;
    background: #050e19;
    flex-direction: column;
    gap: 7px;
}

.home-page .photo-input:hover {
    background: #071525;
}

.home-page .photo-icon {
    width: 46px;
    height: 46px;
    border-color: rgba(48, 162, 255, .55);
    color: #38aaff;
    font-size: 1.7rem;
}

.home-page .photo-input strong {
    margin-top: 5px;
    color: #e8f1f9;
    font-size: .88rem;
}

.home-page .photo-input small {
    color: #7f90a2;
    font-size: .72rem;
}

.home-page .photo-preview {
    width: auto;
    max-width: 100%;
    max-height: 164px;
}

.home-page .photo-preview-frame {
    margin-top: 14px;
}

.home-page .test-note {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(32, 151, 255, .32);
    border-radius: 9px;
    color: #b9c8d6;
    background: rgba(20, 107, 183, .12);
    font-size: 14px;
    line-height: 1.55;
}

.home-page .test-note strong,
.home-page .test-note span {
    display: block;
}

.home-page .test-note strong {
    margin-bottom: 4px;
    color: #f0f8ff;
    font-size: 16px;
    line-height: 1.3;
}

.tool-feedback {
    grid-column: 1 / -1;
    padding: 0 44px;
}

.tool-reassurance {
    grid-column: 1 / -1;
    margin: 0;
    padding: 17px 24px;
    border-top: 1px solid rgba(142, 166, 190, .14);
    color: #9cacbc;
    font-size: .84rem;
}

.tool-feedback[data-has-feedback="true"] + .tool-reassurance {
    border-top-color: transparent;
}

.tool-reassurance span {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 1px solid rgba(63, 169, 255, .55);
    border-radius: 50%;
    color: #42abff;
    display: inline-grid;
    place-items: center;
    font-size: .72rem;
}

.home-page .content-section {
    padding: 28px 0 0;
}

.section-heading {
    position: relative;
    margin: 0 0 24px;
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: -.035em;
}

.section-heading::after {
    content: "";
    width: 58px;
    height: 3px;
    margin: 9px auto 0;
    background: #128df7;
    display: block;
}

.home-page .step-grid {
    gap: 16px;
    margin-top: 0;
}

.home-page .step-grid article {
    position: relative;
    min-height: 270px;
    padding: 0;
    border: 1px solid rgba(41, 138, 222, .45);
    border-radius: 10px;
    background: #07111d;
    display: block;
    overflow: hidden;
}

.home-page .step-grid .art-slot {
    height: 176px;
    border-bottom: 1px solid rgba(130, 159, 187, .1);
}

.home-page .step-grid .art-slot img,
.home-page .radio-families .art-slot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-page .step-grid article > span {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid #4bb4ff;
    border-radius: 50%;
    color: #fff;
    background: #0863c8;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    font-weight: 800;
}

.home-page .step-grid article > div:last-child {
    padding: 16px 18px 18px;
}

.home-page .step-grid h3 {
    margin: 0 0 5px;
    font-size: 1.05rem;
}

.home-page .step-grid p {
    font-size: .8rem;
    line-height: 1.55;
}

.home-page .support-section {
    display: block;
}

.home-page .radio-families {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.home-page .radio-families article {
    position: relative;
    min-height: 210px;
    padding: 17px 16px;
    border: 1px solid rgba(41, 138, 222, .32);
    border-radius: 10px;
    background: #08121e;
    overflow: hidden;
}

.home-page .radio-families .art-slot {
    position: absolute;
    inset: 48px 0 0;
}

.home-page .radio-art-visteon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(56, 189, 248, .22), transparent 46%),
        linear-gradient(145deg, rgba(8, 29, 48, .98), rgba(3, 12, 22, .98));
}

.home-page .radio-art-visteon .visteon-mark {
    margin: 0;
    color: #65c7ff;
    font: 800 3.4rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: -.08em;
    text-shadow: 0 0 28px rgba(56, 189, 248, .2);
}

.home-page .radio-art-visteon .visteon-serial {
    margin-top: 4px;
    color: #8ca6bb;
    font: 700 .72rem/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: .18em;
}

.home-page .radio-families h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.05rem;
}

.home-page .radio-families p {
    position: relative;
    z-index: 1;
    margin-top: 3px;
    color: #b2c0ce;
    font-size: .78rem;
    line-height: 1.45;
}

.home-page .radio-families .growing-card {
    border-style: dashed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
}

.growing-card > span {
    width: 42px;
    height: 42px;
    margin-bottom: 17px;
    border: 1px solid rgba(130, 159, 187, .35);
    border-radius: 50%;
    color: #92a3b4;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.benefit-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
    margin-bottom: 30px;
    border: 1px solid rgba(41, 138, 222, .32);
    border-radius: 10px;
    background: #091522;
}

.benefit-bar article {
    padding: 20px 24px;
    display: flex;
    gap: 13px;
    align-items: center;
}

.benefit-bar article + article {
    border-left: 1px solid rgba(130, 159, 187, .14);
}

.benefit-bar strong,
.benefit-bar small {
    display: block;
}

.benefit-bar strong {
    font-size: .86rem;
}

.benefit-bar small {
    margin-top: 3px;
    color: #8292a3;
    font-size: .72rem;
}

.home-page .site-footer {
    padding: 20px 0 26px;
}

@media (max-width: 980px) {
    .header-row {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
    }

    .home-page .home-hero h1 {
        font-size: clamp(2.75rem, 6vw, 3.7rem);
    }

    .hero-benefits {
        gap: 18px;
    }

    .hero-benefits small {
        display: none;
    }

    .home-page .tool-card {
        grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
    }

    .tool-column {
        padding: 28px 26px;
    }

    .home-page .radio-families {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-page .site-shell {
        width: min(100% - 28px, 600px);
    }

    .home-page .site-header {
        padding-top: 13px;
    }

    .header-help {
        padding: 8px 10px;
        font-size: 0;
    }

    .header-actions {
        gap: 6px;
    }

    .language-selector__menu {
        grid-template-columns: 1fr;
        width: min(260px, calc(100vw - 28px));
    }

    .header-help span {
        margin: 0;
        font-size: .7rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-page .hero-content {
        padding: 25px 0 20px;
    }

    .hero-art {
        display: none;
    }

    .home-page .home-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.15rem);
    }

    .home-page .hero-copy {
        font-size: .94rem;
        line-height: 1.6;
    }

    .hero-benefits {
        justify-content: space-between;
        margin-top: 21px;
    }

    .hero-benefits li {
        gap: 7px;
    }

    .hero-benefits li > span {
        width: 29px;
        height: 29px;
    }

    .hero-benefits strong {
        font-size: .73rem;
    }

    .home-page .tool-section {
        margin-top: 6px;
    }

    .home-page .tool-card {
        grid-template-columns: 1fr;
    }

    .tool-column {
        padding: 24px 20px;
    }

    .tool-column h2 {
        margin-bottom: 17px;
        font-size: 1rem;
    }

    .tool-or {
        height: 52px;
    }

    .tool-or::before {
        inset: auto 20px;
        width: auto;
        height: 1px;
    }

    .tool-or span {
        width: 44px;
        height: 44px;
        font-size: .78rem;
    }

    .tool-feedback,
    .tool-reassurance {
        grid-column: 1;
    }

    .tool-feedback {
        padding: 0 20px;
    }

    .home-page .step-grid,
    .home-page .radio-families,
    .benefit-bar {
        grid-template-columns: 1fr;
    }

    .home-page .step-grid article {
        min-height: 245px;
    }

    .home-page .radio-families article {
        min-height: 150px;
    }

    .benefit-bar article + article {
        border-left: 0;
        border-top: 1px solid rgba(130, 159, 187, .14);
    }
}

@media (max-width: 420px) {
    .home-page .site-logo {
        font-size: 1.18rem;
    }

    .home-page .home-hero h1 {
        font-size: clamp(2.1rem, 11.5vw, 2.7rem);
    }

    .hero-benefits {
        gap: 8px;
    }

    .hero-benefits li > span {
        display: none;
    }

    .section-icon {
        width: 28px;
        height: 28px;
    }
}

.public-breadcrumb { padding-top: 20px; color: #8fa8bd; font-size: .88rem; }
.public-breadcrumb a { color: #39aaff; }
.public-breadcrumb span { margin-left: 8px; }
.landing-hero { max-width: 880px; padding-top: 58px; padding-bottom: 36px; text-align: center; }
.landing-hero .hero-copy { max-width: 720px; margin-right: auto; margin-left: auto; }
.recognized-family { margin: 6px 0 0; color: #fff; font-size: 1.25rem; font-weight: 800; }
.recognized-model, .availability-label { margin: 4px 0; color: #b6c8d8; }
.availability-label { color: #69d7a3; font-weight: 700; }

.decoder-landing-page .landing-hero { max-width: 760px; padding-top: 34px; padding-bottom: 28px; }
.decoder-landing-page .home-hero h1 { max-width: none; font-size: clamp(2.35rem, 5vw, 3.55rem); }
.decoder-landing-page .landing-hero .hero-copy { margin-top: 12px; }
.landing-value { display: inline-flex; gap: 9px; align-items: center; margin: 18px 0 0; padding: 9px 14px; border: 1px solid rgba(65, 196, 143, .28); border-radius: 999px; color: #bcebd5; background: rgba(20, 112, 75, .1); font-size: .88rem; }
.landing-value span { color: #5be0a2; font-weight: 900; }
.home-page .landing-tool-card { width: min(720px, 100%); display: block; }
.landing-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; border-bottom: 1px solid var(--panel-border); }
.landing-path { min-height: 50px; padding: 10px 16px; border: 1px solid transparent; border-radius: 10px; color: var(--muted); background: transparent; font: inherit; font-weight: 750; cursor: pointer; }
.landing-path span { margin-right: 8px; color: #39aaff; }
.landing-path:hover { color: #eaf6ff; background: rgba(37, 99, 235, .08); }
.landing-path.is-active { border-color: rgba(56, 189, 248, .3); color: #fff; background: rgba(37, 99, 235, .16); }
.landing-path:focus-visible { outline: 3px solid rgba(56, 189, 248, .45); outline-offset: 2px; }
.landing-path-panel[hidden] { display: none; }
.decoder-landing-page .landing-path-panel { padding: 24px 30px 28px; }
.decoder-landing-page .landing-path-panel h2 { margin-bottom: 16px; }
.decoder-landing-page .serial-textarea { min-height: 112px; }
.decoder-landing-page .photo-input { min-height: 150px; }
.decoder-landing-page .tool-feedback { padding: 0 30px 24px; }
.landing-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.landing-step-grid article { padding: 20px; border: 1px solid var(--panel-border); border-radius: 14px; background: rgba(7, 18, 30, .7); }
.landing-step-grid article > span { width: 30px; height: 30px; border-radius: 50%; color: #05111e; background: #39aaff; display: inline-grid; place-items: center; font-weight: 900; }
.landing-step-grid h3 { margin: 14px 0 7px; font-size: 1rem; }
.landing-step-grid p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.landing-supported { padding-bottom: 46px; }
.landing-supported ul { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.landing-supported li { padding: 14px 10px; border: 1px solid var(--panel-border); border-radius: 10px; color: #dbeafe; background: rgba(7, 18, 30, .55); text-align: center; font-size: .88rem; font-weight: 700; }
.landing-supported li:only-child { grid-column: 1 / -1; }
.landing-supported li span { margin-right: 6px; color: #5be0a2; }
.landing-supported li a { color: inherit; text-decoration: none; }
.landing-supported li a:hover { color: #fff; text-decoration: underline; }
.radio-family-card-link { position: absolute; z-index: 3; inset: 0; border-radius: inherit; }
.radio-family-card-link:focus-visible { outline: 3px solid rgba(56, 189, 248, .7); outline-offset: 3px; }

@media (max-width: 720px) {
    .decoder-landing-page .landing-hero { padding-top: 24px; padding-bottom: 22px; }
    .decoder-landing-page .home-hero h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
    .landing-value { border-radius: 12px; text-align: left; }
    .landing-paths { grid-template-columns: 1fr; }
    .decoder-landing-page .landing-path-panel { padding: 22px 18px 24px; }
    .decoder-landing-page .tool-feedback { padding: 0 18px 20px; }
    .landing-step-grid, .landing-supported ul { grid-template-columns: 1fr; }
    .landing-supported li { text-align: left; }
}

.home-page .hero-art {
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .hero-art img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: scale(1.12);
    -webkit-mask-image: radial-gradient(ellipse 72% 66% at 50% 52%, #000 68%, transparent 100%);
    mask-image: radial-gradient(ellipse 72% 66% at 50% 52%, #000 68%, transparent 100%);
}

.hero-callout {
    position: absolute;
    z-index: 2;
    top: 29%;
    right: 1%;
    width: 29%;
    padding: 12px 13px;
    border: 1px solid rgba(31, 151, 255, .78);
    border-radius: 8px;
    color: #eaf6ff;
    background: rgba(3, 14, 27, .9);
    box-shadow: 0 0 22px rgba(0, 132, 255, .16);
}

.hero-callout__title,
.hero-callout__example,
.hero-callout__description {
    display: block;
}

.hero-callout__title {
    color: #f4fbff;
    font-size: clamp(.62rem, .9vw, .82rem);
    line-height: 1.25;
}

.hero-callout__example {
    margin-top: 2px;
    color: #39aaff;
    font-size: clamp(.7rem, 1.15vw, 1.05rem);
    font-weight: 800;
}

.hero-callout__description {
    margin-top: 7px;
    color: #b6c8d8;
    font-size: clamp(.48rem, .7vw, .65rem);
    line-height: 1.4;
}

@media (max-width: 720px) {
    .home-page .hero-art {
        min-height: 0;
        margin-top: -28px;
        display: flex;
    }

    .home-page .hero-art img {
        transform: none;
    }

    .hero-callout {
        top: 27%;
        right: 0;
        width: 31%;
        padding: 7px;
    }

    .hero-callout__description {
        margin-top: 4px;
        font-size: .44rem;
        line-height: 1.25;
    }
}

/* Shared checkout and payment presentation. */
.commerce-card {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 30px);
    border: 1px solid rgba(54, 166, 255, .34);
    border-radius: 16px;
    background:
        radial-gradient(circle at 92% 0, rgba(18, 141, 247, .12), transparent 15rem),
        linear-gradient(145deg, rgba(10, 27, 45, .98), rgba(5, 16, 29, .96));
    box-shadow: 0 22px 54px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.commerce-heading {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.commerce-heading h3 {
    margin: 1px 0 5px;
    color: #f7fbff;
    font-size: 1.22rem;
    letter-spacing: -.025em;
}

.commerce-heading p {
    margin: 0;
    color: #9fb1c3;
    font-size: .9rem;
    line-height: 1.55;
}

.commerce-status-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(78, 218, 160, .42);
    border-radius: 50%;
    color: #77e6b6;
    background: rgba(20, 112, 75, .16);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-weight: 900;
}

.commerce-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid rgba(130, 159, 187, .17);
    border-radius: 12px;
    background: rgba(2, 9, 18, .55);
}

.commerce-product strong,
.commerce-product span,
.commerce-price small,
.commerce-price strong {
    display: block;
}

.commerce-product strong {
    color: #edf7ff;
    font-size: 1rem;
}

.commerce-product {
    min-width: 0;
}

.commerce-product span {
    max-width: 100%;
    margin-top: 4px;
    overflow: hidden;
    color: #8fa8bd;
    font: 700 .84rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.commerce-price {
    min-width: 118px;
    text-align: right;
}

.commerce-price small {
    color: #7f94a8;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.commerce-price strong {
    margin-top: 1px;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.commerce-form {
    margin-top: 22px;
}

.commerce-field-label {
    display: block;
    margin-bottom: 8px;
    color: #dce8f3;
    font-size: .86rem;
    font-weight: 750;
}

.commerce-input {
    width: 100%;
    min-height: 54px;
    padding: 0 15px;
    border: 1px solid rgba(130, 159, 187, .34);
    border-radius: 9px;
    outline: none;
    color: #f5f9fd;
    background: #040d17;
    font: inherit;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.commerce-input::placeholder {
    color: #64798d;
}

.commerce-input:focus {
    border-color: #168ef7;
    background: #06111e;
    box-shadow: 0 0 0 4px rgba(22, 142, 247, .12);
}

.commerce-field-help {
    display: block;
    margin-top: 7px;
    color: #8093a5;
    font-size: .74rem;
    line-height: 1.45;
}

.commerce-consents {
    display: grid;
    gap: 10px;
}

.commerce-consent {
    padding: 14px 15px;
    border: 1px solid rgba(130, 159, 187, .16);
    border-radius: 10px;
    background: rgba(3, 12, 22, .58);
    cursor: pointer;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: #c3d1df;
    font-size: .8rem;
    line-height: 1.55;
    transition: border-color .18s ease, background .18s ease;
}

.commerce-consent:hover {
    border-color: rgba(48, 162, 255, .36);
    background: rgba(7, 24, 40, .7);
}

.commerce-consent input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: #168ef7;
}

.commerce-consent a {
    color: #65baff;
    text-underline-offset: 2px;
}

.commerce-consent a:hover {
    color: #a8d9ff;
}

.commerce-admin-form {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(130, 159, 187, .15);
}

.home-page .commerce-secondary-button {
    min-height: 46px;
    margin-top: 0;
    border: 1px solid rgba(130, 159, 187, .24);
    color: #93a8bb;
    background: transparent;
    box-shadow: none;
    font-size: .78rem;
}

.home-page .commerce-secondary-button:hover {
    color: #dbe9f5;
    background: rgba(130, 159, 187, .07);
}

.commerce-unavailable {
    margin: 20px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(251, 191, 36, .2);
    border-radius: 10px;
    color: #d8c58c;
    background: rgba(120, 80, 10, .09);
}

.commerce-status-card {
    text-align: center;
}

.commerce-status-card .commerce-heading {
    justify-content: center;
    text-align: left;
}

.commerce-status-card .commerce-status-icon {
    position: relative;
    color: transparent;
    border-color: rgba(56, 189, 248, .4);
    background: rgba(14, 165, 233, .1);
}

.commerce-status-card .commerce-status-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(111, 202, 255, .28);
    border-top-color: #4db4ff;
    border-radius: 50%;
    animation: commerce-spin .8s linear infinite;
}

.commerce-status-card .commerce-form {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
}

@keyframes commerce-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .commerce-status-card .commerce-status-icon::before {
        animation: none;
    }
}

@media (max-width: 560px) {
    .commerce-card {
        padding: 20px 16px;
        border-radius: 13px;
    }

    .commerce-summary {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .commerce-price {
        min-width: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(130, 159, 187, .14);
        text-align: left;
    }

    .commerce-heading {
        gap: 11px;
    }

    .commerce-status-icon {
        width: 32px;
        height: 32px;
    }

    .commerce-consent {
        padding: 13px;
        font-size: .77rem;
    }
}

/* Root language gateway: reuse shared landing cards, only tune composition here. */
.root-language-page .landing-supported {
    width: min(1040px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.root-language-page .landing-supported ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.root-language-page .landing-supported li {
    min-height: 64px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.root-language-page .landing-supported li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.root-language-page .landing-supported li span {
    margin-right: 0;
}

.root-language-page .landing-supported .lang-flag {
    width: 28px;
    height: 17px;
    flex: 0 0 auto;
}

@media (max-width: 980px) {
    .root-language-page .landing-supported ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .root-language-page .landing-supported {
        width: min(100% - 28px, 600px);
    }

    .root-language-page .landing-supported ul {
        grid-template-columns: 1fr;
    }
}

/* Opel EEPROM hub and result presentation. */
.opel-home-page{--opel-line:rgba(121,162,197,.22);--opel-panel:rgba(8,22,34,.82);--opel-panel-strong:rgba(10,28,43,.96);--opel-blue:#1f9cff;--opel-blue-soft:rgba(31,156,255,.12);--opel-green:#55e6ad}.opel-home-page main{overflow:hidden}.opel-hero{position:relative;padding:56px 0 66px}.opel-hero:before{content:"";position:absolute;inset:-180px auto auto 55%;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(31,156,255,.13),transparent 68%);pointer-events:none}.opel-hero__grid{position:relative;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:clamp(40px,7vw,96px);align-items:center}.opel-hero__copy h1{max-width:850px;margin:14px 0 20px;font-size:clamp(48px,6vw,82px);line-height:.98;letter-spacing:-.045em}.opel-hero__copy .hero-copy{max-width:730px;margin:0;font-size:clamp(17px,1.5vw,20px);line-height:1.75}.opel-trust-pill{display:inline-flex;align-items:center;gap:10px;margin-top:28px;padding:12px 16px;border:1px solid rgba(85,230,173,.3);border-radius:999px;background:rgba(13,55,49,.34);color:#baf8df;font-size:14px;line-height:1.4}.opel-trust-pill>span:first-child{display:grid;width:23px;height:23px;place-items:center;border-radius:50%;background:rgba(85,230,173,.15);color:var(--opel-green);font-weight:900}.opel-hero__visual{display:flex;justify-content:center}.opel-eeprom-card{position:relative;width:min(100%,360px);aspect-ratio:1.18;padding:24px;border:1px solid rgba(31,156,255,.34);border-radius:28px;background:linear-gradient(145deg,rgba(13,38,58,.94),rgba(5,16,26,.96));box-shadow:0 28px 75px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.04);transform:rotate(2deg)}.opel-eeprom-card:after{content:"";position:absolute;inset:12px;border:1px solid rgba(255,255,255,.035);border-radius:20px;pointer-events:none}.opel-eeprom-card__top{display:flex;justify-content:space-between;color:#83b9df;font-size:11px;font-weight:800;letter-spacing:.16em}.opel-chip{position:relative;display:grid;width:146px;height:102px;margin:50px auto 38px;place-items:center;border:2px solid #37536a;border-radius:10px;background:linear-gradient(145deg,#101820,#060b10);box-shadow:0 14px 30px rgba(0,0,0,.45);color:#d7e7f4;font:800 18px/1 monospace;letter-spacing:.08em}.opel-chip__notch{position:absolute;top:-2px;left:50%;width:28px;height:10px;transform:translateX(-50%);border:2px solid #37536a;border-top:0;border-radius:0 0 15px 15px;background:#0a1117}.opel-chip__pin{position:absolute;width:21px;height:9px;background:linear-gradient(90deg,#8aa1b4,#e4edf3)}.opel-chip__pin--1,.opel-chip__pin--2,.opel-chip__pin--3,.opel-chip__pin--4{left:-22px}.opel-chip__pin--5,.opel-chip__pin--6,.opel-chip__pin--7,.opel-chip__pin--8{right:-22px}.opel-chip__pin--1,.opel-chip__pin--5{top:13px}.opel-chip__pin--2,.opel-chip__pin--6{top:36px}.opel-chip__pin--3,.opel-chip__pin--7{top:59px}.opel-chip__pin--4,.opel-chip__pin--8{top:82px}.opel-eeprom-card__signal{display:flex;gap:8px;align-items:flex-end;height:30px}.opel-eeprom-card__signal i{display:block;flex:1;height:1px;background:rgba(31,156,255,.58);box-shadow:0 0 14px rgba(31,156,255,.26)}.opel-eeprom-card__signal i:nth-child(2){height:7px}.opel-eeprom-card__signal i:nth-child(3){height:18px}.opel-eeprom-card__signal i:nth-child(4){height:10px}.opel-products{padding-top:22px;padding-bottom:68px}.opel-section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:28px;border-bottom:1px solid var(--opel-line);padding-bottom:18px}.opel-section-head h2{margin:0;font-size:clamp(32px,4vw,48px);letter-spacing:-.035em}.opel-section-kicker{order:2;margin:0 0 7px;color:#77bce9;font-size:11px;font-weight:900;letter-spacing:.18em}.opel-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.opel-product-card{position:relative;min-height:255px;padding:28px;overflow:hidden;border:1px solid var(--opel-line);border-radius:22px;background:linear-gradient(135deg,var(--opel-panel-strong),var(--opel-panel));cursor:pointer;transition:transform 160ms ease,border-color 160ms ease,box-shadow 160ms ease}.opel-product-card:after{content:"";position:absolute;top:-80px;right:-80px;width:190px;height:190px;border-radius:50%;background:radial-gradient(circle,rgba(31,156,255,.1),transparent 70%);pointer-events:none}.opel-product-card:hover{transform:translateY(-3px);border-color:rgba(31,156,255,.54);box-shadow:0 18px 45px rgba(0,0,0,.22)}.opel-product-card__link{position:absolute;z-index:1;inset:0;border-radius:inherit}.opel-product-card__link:focus-visible{outline:3px solid rgba(56,189,248,.72);outline-offset:-4px}.opel-product-card__head,.opel-product-card h3,.opel-product-card__cta{position:relative;z-index:2;pointer-events:none}.opel-product-card__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:22px}.opel-product-card__number{display:grid;width:38px;height:38px;place-items:center;border:1px solid rgba(31,156,255,.38);border-radius:12px;background:var(--opel-blue-soft);color:#89caf6;font-size:12px;font-weight:900}.opel-product-card__type{color:#66849a;font-size:10px;font-weight:900;letter-spacing:.16em}.opel-product-card h3{margin:0 0 17px;font-size:clamp(23px,2.3vw,31px);letter-spacing:-.025em}.opel-memory-chips{position:relative;z-index:3;display:flex;flex-wrap:wrap;gap:8px;min-height:62px}.opel-memory-chips a{align-self:flex-start;padding:7px 10px;border:1px solid rgba(128,165,192,.22);border-radius:999px;background:rgba(255,255,255,.035);color:#b8d8ee;font-size:12px;line-height:1.2;text-decoration:none;transition:border-color 160ms ease,color 160ms ease,background 160ms ease,transform 160ms ease}.opel-memory-chips a:hover,.opel-memory-chips a:focus-visible{border-color:rgba(31,156,255,.65);color:#fff;background:rgba(31,156,255,.14);outline:none;transform:translateY(-1px)}.opel-product-card__cta{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-top:24px;padding-top:18px;border-top:1px solid rgba(128,165,192,.13);color:#85ccff;font-size:16px;font-weight:850}.opel-product-card__cta span:last-child{display:grid;width:34px;height:34px;place-items:center;border-radius:50%;background:var(--opel-blue);color:white;transition:transform 160ms ease}.opel-product-card:hover .opel-product-card__cta{color:#c0e5ff}.opel-product-card:hover .opel-product-card__cta span:last-child{transform:translateX(3px)}.opel-how{display:grid;grid-template-columns:auto 1fr;gap:22px;align-items:start;margin-bottom:72px;padding:28px 30px;border:1px solid rgba(85,230,173,.2);border-radius:20px;background:linear-gradient(120deg,rgba(10,43,40,.42),rgba(7,23,34,.68))}.opel-how__icon{display:grid;width:44px;height:44px;place-items:center;border-radius:14px;background:rgba(85,230,173,.12);color:var(--opel-green);font-size:20px;font-weight:900}.opel-how h2{margin:1px 0 8px;font-size:22px}.opel-how p{max-width:900px;margin:0;color:#a9bdcc;line-height:1.7}.opel-result-preview{margin-top:22px;display:grid;gap:16px}.opel-result-intro{display:flex;gap:14px;align-items:flex-start;padding:18px 20px;border:1px solid rgba(74,222,128,.26);border-radius:14px;background:linear-gradient(135deg,rgba(20,112,75,.14),rgba(5,18,30,.5))}.opel-result-intro__icon{width:38px;height:38px;border:1px solid rgba(74,222,128,.42);border-radius:50%;color:#7ee7b8;background:rgba(20,112,75,.18);display:grid;place-items:center;flex:0 0 auto;font-weight:900}.opel-result-intro h3{margin:0 0 5px;color:#f6fbff;font-size:1.08rem;letter-spacing:-.02em}.opel-result-intro p{margin:0;color:#9fb1c3;font-size:.84rem;line-height:1.55}.opel-result-layout{display:grid;grid-template-columns:1fr;gap:16px}.opel-data-card,.opel-code-card{border:1px solid rgba(130,159,187,.18);border-radius:14px;background:rgba(2,9,18,.58);overflow:hidden}.opel-data-card__heading{margin:0;padding:17px 20px;border-bottom:1px solid rgba(130,159,187,.14);color:#e9f4fc;font-size:.88rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase}.opel-data-list{margin:0}.opel-data-row{min-height:62px;padding:14px 20px;display:grid;grid-template-columns:minmax(190px,.75fr) minmax(0,1.25fr);gap:22px;align-items:center}.opel-data-row+.opel-data-row{border-top:1px solid rgba(130,159,187,.1)}.opel-data-row dt{color:#8fa6ba;font-size:.84rem;font-weight:700}.opel-data-row dd{margin:0;color:#f3f9ff;font:750 .98rem/1.45 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;overflow-wrap:anywhere;text-align:right}.opel-code-card{position:relative;order:-1;min-height:180px;padding:28px 24px;display:flex;flex-direction:column;justify-content:center;text-align:center;background:radial-gradient(circle at 50% 0,rgba(22,142,247,.16),transparent 12rem),rgba(3,12,22,.72)}.opel-code-card__status{align-self:center;margin-bottom:10px;padding:5px 9px;border:1px solid rgba(74,222,128,.3);border-radius:999px;color:#8aebbd;background:rgba(20,112,75,.12);font-size:.72rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase}.opel-code-card__label{color:#afc2d3;font-size:.86rem;font-weight:700}.opel-code-card__mask,.opel-code-card__value{margin:10px 0 9px;color:#fff;font:850 clamp(2.65rem,6vw,4rem) ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.18em;line-height:1}.opel-code-card__mask{color:#d9edff;text-shadow:0 0 24px rgba(37,153,255,.22)}.opel-code-card__copy{margin:0;color:#8da2b5;font-size:.82rem;line-height:1.5}.opel-paid-codes{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin-top:18px}.opel-paid-code{padding:18px;border:1px solid rgba(74,222,128,.28);border-radius:13px;background:rgba(20,112,75,.12);text-align:center}.opel-paid-code small,.opel-paid-code strong{display:block}.opel-paid-code small{color:#9fc4b3;font-size:.72rem;font-weight:750}.opel-paid-code strong{margin-top:7px;color:#fff;font:850 2rem ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.12em}@media(max-width:900px){.opel-hero__grid{grid-template-columns:1fr}.opel-hero__visual{display:none}}@media(max-width:720px){.opel-hero{padding:34px 0 44px}.opel-hero__copy h1{font-size:clamp(42px,13vw,60px)}.opel-product-grid{grid-template-columns:1fr}.opel-section-head{display:block}.opel-section-kicker{margin:0 0 8px}.opel-product-card{min-height:0;padding:23px}.opel-how{grid-template-columns:1fr;padding:24px}.opel-data-row{min-height:0;padding:13px 16px;grid-template-columns:1fr;gap:4px}.opel-data-row dt{font-size:.78rem}.opel-data-row dd{font-size:.94rem;text-align:left}.opel-code-card{min-height:170px;padding:24px 18px}}


/* Volvo reuses the shared brand-card system. */
.radio-art-volvo{min-height:105px;display:grid;place-items:center;background:radial-gradient(circle at 50% 45%,rgba(31,156,255,.18),transparent 64%)}.radio-art-volvo strong{padding:10px 14px;border:1px solid rgba(97,186,255,.42);border-radius:8px;color:#b9ddf7;background:rgba(3,14,27,.76);font:800 1rem ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.08em}


/* Rich decoder landing content: first production pattern, Ford V-Series. */
.v-rich-intro{padding:62px 0 38px;display:grid;grid-template-columns:minmax(0,.9fr) minmax(440px,1.1fr);gap:clamp(36px,7vw,88px);align-items:center}.v-rich-kicker{margin:0 0 10px;color:#35aaff;font-size:.72rem;font-weight:900;letter-spacing:.16em}.v-rich-intro h2,.v-rich-section h2{margin:0;color:#f7fbff;font-size:clamp(2rem,4vw,3.1rem);line-height:1.06;letter-spacing:-.045em}.v-rich-intro__copy>p:last-child,.v-rich-section__head+ p,.v-identify>div>p:last-child{margin:18px 0 0;color:#9fb1c3;line-height:1.75}.v-serial-compare{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.v-serial-card{min-height:180px;padding:24px;border:1px solid rgba(130,159,187,.2);border-radius:17px;background:linear-gradient(145deg,rgba(8,24,39,.96),rgba(4,14,25,.94));box-shadow:0 18px 48px rgba(0,0,0,.18)}.v-serial-card--good{border-color:rgba(64,199,145,.34);background:linear-gradient(145deg,rgba(9,42,39,.72),rgba(4,18,27,.96))}.v-serial-card>span{display:block;color:#7f94a8;font-size:.65rem;font-weight:900;letter-spacing:.14em}.v-serial-card--good>span{color:#73ddb3}.v-serial-card>strong{display:block;margin:18px 0 12px;color:#fff;font:850 clamp(1.45rem,3vw,2rem) ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.08em}.v-serial-card>p{margin:0;color:#8fa6ba;font-size:.82rem;line-height:1.55}.v-rich-section{padding:54px 0}.v-rich-section__head{max-width:760px}.v-guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px;margin-top:28px}.v-guide-grid article{min-height:220px;padding:25px;border:1px solid rgba(130,159,187,.17);border-radius:16px;background:rgba(5,17,29,.68)}.v-guide-grid article>span{display:grid;width:38px;height:38px;place-items:center;border:1px solid rgba(42,167,255,.34);border-radius:11px;color:#67bcff;background:rgba(22,126,216,.1);font-size:.7rem;font-weight:900}.v-guide-grid h3{margin:23px 0 10px;color:#edf7ff;font-size:1.08rem}.v-guide-grid p,.v-identify aside p,.v-faq article p{margin:0;color:#91a6b9;font-size:.87rem;line-height:1.65}.v-identify{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:clamp(30px,6vw,72px);align-items:center}.v-identify aside{padding:25px;border:1px solid rgba(42,167,255,.3);border-radius:16px;background:linear-gradient(135deg,rgba(12,61,96,.28),rgba(5,18,30,.72))}.v-identify aside strong{display:block;margin-bottom:8px;color:#dff1ff;font-size:1.08rem}.v-mistakes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 26px;margin:28px 0 0;padding:0;list-style:none}.v-mistakes li{padding:15px 0;border-bottom:1px solid rgba(130,159,187,.14);display:flex;gap:12px;color:#b7c6d4;font-size:.9rem}.v-mistakes li span{color:#ff8e9e;font-weight:900}.v-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:28px}.v-faq article{padding:24px;border:1px solid rgba(130,159,187,.17);border-radius:15px;background:rgba(5,17,29,.58)}.v-faq h3{margin:0 0 10px;color:#eef7ff;font-size:1rem}.decoder-landing-page .landing-steps{border-top:1px solid rgba(130,159,187,.1)}@media(max-width:860px){.v-rich-intro,.v-identify{grid-template-columns:1fr}.v-guide-grid{grid-template-columns:1fr}.v-guide-grid article{min-height:0}.v-serial-compare{max-width:650px}}@media(max-width:620px){.v-rich-intro{padding-top:42px}.v-rich-section{padding:40px 0}.v-serial-compare,.v-mistakes,.v-faq-grid{grid-template-columns:1fr}.v-serial-card{min-height:0;padding:20px}}

.v-identify__link{display:inline-flex;margin-top:16px;color:#5db8ff;font-size:.84rem;font-weight:850;text-decoration:none}.v-identify__link:hover{text-decoration:underline}.v-identify__note{grid-column:1/-1;margin-top:-36px}.v-identify__note strong{color:#73ddb3!important}@media(max-width:860px){.v-identify__note{margin-top:0}}

.v-enter-code .v-rich-section__head>p:last-child{margin:18px 0 0;color:#9fb1c3;line-height:1.75}.v-enter-code__steps{margin-top:28px}.v-code-warning{margin-top:18px;padding:22px 24px;border:1px solid rgba(255,174,82,.28);border-radius:16px;background:linear-gradient(135deg,rgba(91,53,13,.2),rgba(5,18,30,.72));display:flex;gap:24px;align-items:flex-end;justify-content:space-between}.v-code-warning strong{display:block;color:#ffd18f;font-size:1.02rem}.v-code-warning p{max-width:820px;margin:7px 0 0;color:#aebdca;font-size:.87rem;line-height:1.65}.v-code-warning small{flex:0 0 auto;color:#71869a;font-size:.68rem}@media(max-width:700px){.v-code-warning{display:block}.v-code-warning small{display:block;margin-top:14px}}

.v-raw-serial .v-rich-section__head>p:last-child,.v-rich-section__head>p:last-child{margin:18px 0 0;color:#9fb1c3;line-height:1.75}.v-raw-tip{margin-top:24px;padding:22px 24px;border:1px solid rgba(64,199,145,.28);border-radius:16px;background:linear-gradient(135deg,rgba(9,42,39,.42),rgba(5,18,30,.72))}.v-raw-tip strong{color:#73ddb3}.v-raw-tip p{margin:7px 0 0;color:#aebdca;line-height:1.65}.v-router-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:28px}.v-router-grid>a,.v-router-grid>article{padding:21px 23px;border:1px solid rgba(130,159,187,.17);border-radius:15px;background:rgba(5,17,29,.62);text-decoration:none}.v-router-grid>a:hover{border-color:rgba(42,167,255,.5);background:rgba(10,35,55,.72)}.v-router-grid strong{display:block;color:#eef7ff;margin-bottom:7px}.v-router-grid span{display:block;color:#8fa6ba;font-size:.84rem;line-height:1.55}.v-router-grid>a span{color:#5db8ff}@media(max-width:700px){.v-router-grid{grid-template-columns:1fr}}

.v-photo-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:28px}.v-photo-grid figure{margin:0;overflow:hidden;border:1px solid rgba(130,159,187,.18);border-radius:17px;background:rgba(5,17,29,.68)}.v-photo-grid img{display:block;width:100%;height:330px;object-fit:contain;background:#0a1520}.v-photo-grid figcaption{display:block;padding:20px 22px}.v-photo-grid figcaption strong{display:block;color:#eef7ff;margin-bottom:7px}.v-photo-grid figcaption span{display:block;color:#91a6b9;font-size:.84rem;line-height:1.6}.v-forum-case{display:flex;justify-content:space-between;gap:28px;align-items:center;margin-top:16px;padding:22px 24px;border:1px solid rgba(64,199,145,.25);border-radius:16px;background:rgba(8,35,34,.3)}.v-forum-case strong{color:#73ddb3}.v-forum-case p{max-width:850px;margin:7px 0 0;color:#9fb1c3;line-height:1.65}.v-forum-case a{flex:0 0 auto;color:#5db8ff;font-weight:850;text-decoration:none}.v-forum-case a:hover{text-decoration:underline}@media(max-width:700px){.v-photo-grid{grid-template-columns:1fr}.v-photo-grid img{height:260px}.v-forum-case{display:block}.v-forum-case a{display:inline-block;margin-top:14px}}

.v-real-world-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:26px}.v-real-world-grid article{padding:20px 22px;border:1px solid rgba(130,159,187,.17);border-radius:15px;background:rgba(5,17,29,.62)}.v-real-world-grid strong{color:#eef7ff;font-size:.92rem;line-height:1.55}.v-real-world-note{margin:14px 0 0;color:#72899d;font-size:.78rem;line-height:1.6}@media(max-width:700px){.v-real-world-grid{grid-template-columns:1fr}}

.v-screen-demo{display:grid;justify-items:center;gap:8px;max-width:560px;margin:28px auto 0;padding:26px;border:1px solid rgba(42,167,255,.28);border-radius:18px;background:radial-gradient(circle at 50% 0,rgba(20,102,154,.16),rgba(5,17,29,.76))}.v-screen-demo span{color:#7f96aa;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800}.v-screen-demo strong{font:800 clamp(2rem,5vw,3.8rem)/1 ui-monospace,SFMono-Regular,Consolas,monospace;letter-spacing:.12em;color:#eef8ff}.v-screen-demo small{color:#93a8ba;text-align:center;line-height:1.55}

.v-photo-guide__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:28px}.v-photo-card{margin:0;overflow:hidden;border:1px solid rgba(130,159,187,.2);border-radius:18px;background:rgba(5,17,29,.72)}.v-photo-card img{display:block;width:100%;aspect-ratio:3/2;object-fit:cover;background:#fff}.v-photo-card figcaption{padding:22px}.v-photo-card figcaption>strong{display:block;color:#f2f8ff;font-size:1.05rem}.v-photo-card figcaption>p{margin:8px 0 0;color:#9bb0c1;line-height:1.65}.v-label-key{display:grid;gap:9px;margin:18px 0 0}.v-label-key div{padding:11px 13px;border:1px solid rgba(130,159,187,.14);border-radius:10px}.v-label-key dt{font:800 .84rem/1.4 ui-monospace,SFMono-Regular,Consolas,monospace;color:#dcecff}.v-label-key dd{margin:3px 0 0;color:#829aaf;font-size:.78rem}.v-label-key__serial{border-color:rgba(54,211,153,.35)!important;background:rgba(54,211,153,.06)}.v-label-key__serial dt{color:#67e7b5}@media(max-width:760px){.v-photo-guide__grid{grid-template-columns:1fr}}


/* Ford V rich landing: compact mobile reading flow. */
@media(max-width:760px){
.v-rich-intro{gap:24px;padding:38px 0 24px}.v-rich-intro h2,.v-rich-section h2{font-size:clamp(1.8rem,9vw,2.45rem)}.v-rich-section{padding:34px 0}.v-guide-grid,.v-photo-guide__grid,.v-router-grid,.v-faq-grid{margin-top:20px}.v-guide-grid article{padding:20px}.v-identify{gap:20px}.v-identify aside{padding:20px}.v-identify__note{margin-top:0}.v-mistakes{margin-top:20px}.v-screen-demo{margin-top:20px;padding:22px 16px}.v-photo-card figcaption{padding:18px}.v-photo-card img{aspect-ratio:auto;height:auto;max-height:440px;object-fit:contain}.v-raw-tip{margin-top:18px;padding:19px}.v-router-grid>a,.v-router-grid>article,.v-faq article{padding:19px}.v-code-methods{grid-template-columns:1fr!important}.v-code-warning{padding:19px}.decoder-landing-page .landing-steps,.decoder-landing-page .landing-supported{margin-top:12px}
}


/* Ford V: keep troubleshooting and code-entry visually consistent with the card language used by FAQ. */
.v-troubleshooting .v-faq-grid article{padding:24px;border:1px solid rgba(130,159,187,.17);border-radius:15px;background:rgba(5,17,29,.58)}
.v-troubleshooting .v-faq-grid h3{margin:0 0 10px;color:#eef7ff;font-size:1rem}
.v-troubleshooting .v-faq-grid p{margin:0;color:#9fb1c3;font-size:.9rem;line-height:1.7}
.v-code-methods{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:28px}
.v-code-method{padding:24px;border:1px solid rgba(130,159,187,.17);border-radius:15px;background:rgba(5,17,29,.58)}
.v-code-method__head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding-bottom:18px;margin-bottom:18px;border-bottom:1px solid rgba(130,159,187,.12)}
.v-code-method__head h3{margin:0 0 7px;color:#eef7ff;font-size:1.05rem}
.v-code-method__head p{margin:0;color:#8fa6ba;font-size:.82rem}
.v-code-method__head>strong{flex:0 0 auto;padding:7px 10px;border:1px solid rgba(56,189,248,.24);border-radius:10px;color:#7dd3fc;background:rgba(14,165,233,.07);font-size:.78rem}
.v-code-method ol{margin:0;padding-left:1.35rem;color:#b7c7d6}
.v-code-method li{padding:5px 0;line-height:1.65}
.v-code-method li::marker{color:#38bdf8;font-weight:800}
@media(max-width:760px){.v-troubleshooting .v-faq-grid{grid-template-columns:1fr}.v-code-method__head{display:block}.v-code-method__head>strong{display:inline-block;margin-top:12px}}

.landing-price{display:inline-grid;grid-template-columns:auto auto;align-items:baseline;gap:3px 12px;margin-top:18px;padding:13px 17px;border:1px solid rgba(52,211,153,.28);border-radius:14px;background:linear-gradient(135deg,rgba(16,72,58,.28),rgba(5,18,30,.72));box-shadow:inset 0 0 24px rgba(52,211,153,.035)}
.landing-price>span{color:#9fb7aa;font-size:.76rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.landing-price>strong{grid-row:1/3;grid-column:2;color:#73ddb3;font-size:1.45rem;line-height:1}
.landing-price>small{grid-column:1;color:#789083;font-size:.7rem}
@media(max-width:520px){.landing-price{display:grid;grid-template-columns:1fr auto;width:100%}}

/* Ford V reading flow: visually connect screen example with the following recovery choices. */
.v-screen-example{padding-bottom:34px}
.v-screen-example .v-rich-section__head{max-width:920px}
.v-screen-demo{margin:24px 0 0;max-width:none;width:100%;display:grid;grid-template-columns:minmax(180px,.65fr) minmax(260px,.8fr) minmax(300px,1.55fr);align-items:center;gap:24px;padding:22px 26px;text-align:left}
.v-screen-demo>span{font-size:.76rem}
.v-screen-demo>strong{font-size:2.15rem;text-align:center}
.v-screen-demo>small{font-size:.78rem;line-height:1.55}
.v-troubleshooting{padding-top:34px}
.v-troubleshooting .v-rich-section__head{margin-bottom:22px}
@media(max-width:760px){.v-screen-demo{grid-template-columns:1fr;gap:10px;text-align:center}.v-screen-demo>strong{text-align:center}.v-screen-example{padding-bottom:24px}.v-troubleshooting{padding-top:24px}}

/* Ford V screen example follows the same asymmetric card composition as decoder-choice sections. */
.v-screen-example{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:54px;align-items:center}
.v-screen-example .v-rich-section__head{margin:0;max-width:760px}
.v-screen-example .v-screen-demo{margin:0;width:100%;display:block;padding:28px 30px;text-align:left}
.v-screen-example .v-screen-demo>span{display:block;margin-bottom:12px}
.v-screen-example .v-screen-demo>strong{display:block;margin-bottom:10px;text-align:left;font-size:2.15rem}
.v-screen-example .v-screen-demo>small{display:block}
@media(max-width:900px){.v-screen-example{grid-template-columns:1fr;gap:22px}.v-screen-example .v-screen-demo{max-width:none}}

/* Compact customer-facing price: one balanced row, no implementation note. */
.landing-price{display:inline-flex;align-items:center;justify-content:center;gap:18px;margin-top:18px;padding:11px 16px}
.landing-price>span{font-size:.76rem;line-height:1.2}
.landing-price>strong{grid-row:auto;grid-column:auto;font-size:1.4rem;line-height:1}
@media(max-width:520px){.landing-price{display:inline-flex;width:auto;max-width:100%}}

/* Ford V reference landing — final rhythm and responsive pass. */
.decoder-landing-page .v-rich-section{margin-top:0;padding-top:52px;padding-bottom:52px}
.decoder-landing-page .v-rich-intro{padding-top:58px;padding-bottom:48px}
.decoder-landing-page .v-rich-section__head{margin-bottom:24px}
.decoder-landing-page .v-rich-section__head>p:last-child{max-width:900px}
.decoder-landing-page .v-photo-guide__grid{align-items:stretch}
.decoder-landing-page .v-photo-card{height:100%;overflow:hidden}
.decoder-landing-page .v-photo-card img{display:block;width:100%;height:auto}
.decoder-landing-page .v-code-methods{gap:18px}
.decoder-landing-page .v-faq{padding-bottom:64px}
@media(max-width:900px){
  .decoder-landing-page .landing-tool-card{grid-template-columns:1fr}
  .decoder-landing-page .tool-or{position:static;transform:none;margin:0 auto}
  .decoder-landing-page .tool-column{min-width:0}
  .decoder-landing-page .v-rich-intro,.decoder-landing-page .v-identify,.decoder-landing-page .v-screen-example{grid-template-columns:1fr;gap:24px}
  .decoder-landing-page .v-guide-grid,.decoder-landing-page .v-photo-guide__grid,.decoder-landing-page .v-code-methods{grid-template-columns:1fr}
  .decoder-landing-page .v-router-grid,.decoder-landing-page .v-faq-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .decoder-landing-page .home-hero{padding-bottom:20px}
  .decoder-landing-page .landing-hero h1{font-size:clamp(2rem,11vw,3rem);line-height:1.02}
  .decoder-landing-page .landing-value{max-width:100%;text-align:left}
  .decoder-landing-page .landing-price{width:100%;justify-content:space-between;box-sizing:border-box}
  .decoder-landing-page .tool-section{padding-top:12px}
  .decoder-landing-page .landing-tool-card{padding:20px 16px}
  .decoder-landing-page .tool-column{padding:0}
  .decoder-landing-page .serial-textarea{min-height:120px}
  .decoder-landing-page .v-rich-section,.decoder-landing-page .v-rich-intro{padding-top:38px;padding-bottom:38px}
  .decoder-landing-page .v-rich-section h2,.decoder-landing-page .v-rich-intro h2{font-size:clamp(1.9rem,10vw,2.65rem);line-height:1.05}
  .decoder-landing-page .v-serial-compare,.decoder-landing-page .v-router-grid,.decoder-landing-page .v-faq-grid{grid-template-columns:1fr}
  .decoder-landing-page .v-screen-demo{padding:18px}
  .decoder-landing-page .v-photo-card figcaption{padding:18px}
  .decoder-landing-page .v-label-key{gap:8px}
  .decoder-landing-page .v-code-warning{display:block}
  .decoder-landing-page .v-code-warning small{display:block;margin-top:14px}
}

.landing-price>small{flex-basis:100%;max-width:360px;font-size:.72rem;line-height:1.35;color:var(--muted);text-align:center}
@media(min-width:641px){.landing-price:has(>small){flex-wrap:wrap;max-width:420px}.landing-price:has(>small)>small{margin-top:-5px}}


/* HOME service showcase — publication-driven, fail-closed cards. */
.home-service-showcase {
    padding-top: clamp(62px, 8vw, 96px);
    padding-bottom: clamp(44px, 6vw, 72px);
}
.home-service-showcase__head {
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}
.home-service-showcase__head .eyebrow {
    margin-bottom: 12px;
}
.home-service-showcase__head .section-heading {
    max-width: 820px;
    margin: 0 auto 14px;
    text-align: center;
}
.home-service-showcase__head > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
}
.home-service-grid {
    display: grid;
    gap: 22px;
}
.home-service-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
    min-height: 330px;
    border: 1px solid rgba(56, 189, 248, .34);
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 0%, rgba(14, 165, 233, .10), transparent 38%),
        rgba(7, 20, 35, .94);
    box-shadow: 0 28px 76px rgba(0, 0, 0, .24);
}
.home-service-card__media {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-right: 1px solid rgba(56, 189, 248, .18);
    background:
        radial-gradient(circle at 50% 52%, rgba(56, 189, 248, .15), transparent 58%),
        #071421;
}
.home-service-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(2, 12, 21, .22), transparent);
}
.home-service-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: clamp(20px, 3vw, 38px);
    transition: transform .28s ease;
}
.home-service-card:hover .home-service-card__media img {
    transform: scale(1.025);
}
.home-service-card__ready {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(52, 211, 153, .45);
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(3, 35, 31, .9);
    backdrop-filter: blur(10px);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
}
.home-service-card__body {
    padding: clamp(30px, 4vw, 46px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.home-service-card__meta {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.home-service-card__meta span {
    color: var(--accent);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
}
.home-service-card__meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--muted);
}
.home-service-card h3 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.home-service-card h3 a {
    color: var(--text);
    text-decoration: none;
}
.home-service-card__copy {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.65;
}
.home-service-card__footer {
    padding-top: 22px;
    border-top: 1px solid var(--panel-border);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}
.home-service-card__price small,
.home-service-card__price strong {
    display: block;
}
.home-service-card__price small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .76rem;
}
.home-service-card__price strong {
    font-size: 1.22rem;
}
.home-service-card__price .home-service-card__price-note {
    max-width: 330px;
    margin: 7px 0 0;
    line-height: 1.35;
}
.home-service-card__cta {
    min-height: 48px;
    padding: 0 19px;
    border: 1px solid rgba(125, 211, 252, .45);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #e0f2fe;
    background: rgba(14, 165, 233, .13);
    text-decoration: none;
    font-weight: 850;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.home-service-card__cta:hover {
    border-color: rgba(125, 211, 252, .76);
    background: rgba(14, 165, 233, .22);
    transform: translateY(-1px);
}
.home-service-showcase + .home-supported-catalog {
    padding-top: clamp(44px, 6vw, 70px);
    border-top: 1px solid rgba(56, 189, 248, .12);
}
@media (max-width: 760px) {
    .home-service-showcase__head {
        text-align: left;
    }
    .home-service-showcase__head .section-heading {
        text-align: left;
    }
    .home-service-card {
        grid-template-columns: 1fr;
    }
    .home-service-card__media {
        min-height: 250px;
        max-height: 320px;
        border-right: 0;
        border-bottom: 1px solid rgba(56, 189, 248, .18);
    }
    .home-service-card__media img {
        padding: 24px;
    }
    .home-service-card__footer {
        align-items: stretch;
        flex-direction: column;
    }
    .home-service-card__cta {
        justify-content: center;
    }
}

/* HOME capability story */
.home-capabilities{padding-top:54px;padding-bottom:34px}
.home-capabilities__head{max-width:780px;margin:0 auto 28px;text-align:center}
.home-capabilities__head .section-heading{max-width:760px;margin:0 auto;font-size:clamp(2rem,4vw,3rem);line-height:1.12}
.home-capabilities__head>p:last-child{max-width:680px;margin:15px auto 0;color:#aebfd0;line-height:1.7}
.home-capabilities__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.home-capability-card{position:relative;min-height:300px;padding:22px;border:1px solid rgba(32,151,255,.32);border-radius:18px;background:linear-gradient(180deg,rgba(9,28,45,.92),rgba(5,17,29,.96));overflow:hidden}
.home-capability-card:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 10%,rgba(27,156,255,.12),transparent 42%);pointer-events:none}
.home-capability-card__icon{position:absolute;top:16px;right:16px;width:30px;height:30px;border:1px solid rgba(42,167,255,.45);border-radius:50%;display:grid;place-items:center;color:#4ab4ff;font-weight:900}
.home-capability-card__demo{height:105px;margin:25px 0 18px;display:flex;align-items:center;justify-content:center;color:#55baff;font:800 clamp(1.55rem,3vw,2.2rem) ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.08em;text-shadow:0 0 22px rgba(34,160,255,.55)}
.home-capability-card__label{height:105px;margin:25px 0 18px;padding:17px 18px;border-radius:7px;display:flex;flex-direction:column;justify-content:center;gap:5px;transform:rotate(-1.5deg);color:#101820;background:linear-gradient(135deg,#e9edf0,#bcc5ca);box-shadow:0 10px 28px rgba(0,0,0,.28);font:700 .72rem ui-monospace,monospace}
.home-capability-card__label strong{font-size:.8rem}.home-capability-card__label mark{padding:1px 3px;border:2px solid #238ee8;border-radius:3px;background:rgba(53,164,255,.15)}
.home-capability-card__demo--dump{flex-direction:column;gap:2px;letter-spacing:.03em}.home-capability-card__demo--dump span,.home-capability-card__demo--dump small{font-size:.68rem;letter-spacing:.14em;color:#8198ad}.home-capability-card__demo--dump strong{padding:9px 13px;border:1px solid rgba(55,180,255,.38);border-radius:7px;background:#06111b}
.home-capability-card__unknown{height:105px;margin:25px 0 18px;display:grid;place-items:center;color:#46aff8;font-size:4.2rem;font-weight:800;text-shadow:0 0 32px rgba(35,154,255,.4)}
.home-capability-card h3{position:relative;margin:0 0 9px;font-size:1.08rem}.home-capability-card p{position:relative;margin:0;color:#9eb1c4;font-size:.86rem;line-height:1.6}.home-capability-card a{position:relative;display:inline-block;margin-top:14px;color:#4bb6ff;font-size:.82rem;font-weight:800;text-decoration:none}
@media(max-width:980px){.home-capabilities__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.home-capabilities__grid{grid-template-columns:1fr}.home-capability-card{min-height:260px}}

/* HOME live MASTER scale */
.home-master-scale{padding-top:58px;padding-bottom:54px}
.home-master-scale__head{max-width:790px;margin:0 auto 28px;text-align:center}
.home-master-scale__head .section-heading{margin:0 auto;font-size:clamp(2rem,4vw,3rem);line-height:1.12}
.home-master-scale__head>p:last-child{max-width:700px;margin:15px auto 0;color:#aebfd0;line-height:1.7}
.home-master-scale__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));border:1px solid rgba(32,151,255,.34);border-radius:18px;overflow:hidden;background:linear-gradient(135deg,rgba(8,25,41,.98),rgba(5,18,30,.98))}
.home-master-scale__grid article{min-height:145px;padding:24px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border-right:1px solid rgba(120,165,200,.16)}
.home-master-scale__grid article:last-child{border-right:0}
.home-master-scale__grid strong{font-size:clamp(2rem,4vw,3.25rem);line-height:1;color:#45b4ff;text-shadow:0 0 28px rgba(33,154,255,.25)}
.home-master-scale__grid span{margin-top:10px;color:#c2d0dd;font-size:.86rem;font-weight:700}
.home-master-scale__links{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:18px}
.home-master-scale__links a{padding:11px 16px;border:1px solid rgba(41,158,238,.45);border-radius:10px;color:#dcefff;background:rgba(8,31,49,.72);font-size:.82rem;font-weight:800;text-decoration:none}
.home-master-scale__links a:hover{border-color:#2da9ff;background:rgba(13,49,75,.9)}
@media(max-width:760px){.home-master-scale__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-master-scale__grid article{border-bottom:1px solid rgba(120,165,200,.16)}}
@media(max-width:480px){.home-master-scale__grid{grid-template-columns:1fr}.home-master-scale__grid article{border-right:0}}


/* HOME database scale — verified code inventory is the primary proof point. */
.home-master-scale__hero{margin:0 0 16px;padding:34px 24px 30px;border:1px solid rgba(32,151,255,.42);border-radius:18px;text-align:center;background:radial-gradient(circle at 50% 0,rgba(35,165,255,.16),transparent 58%),linear-gradient(135deg,rgba(8,25,41,.98),rgba(5,18,30,.98));box-shadow:0 22px 60px rgba(0,0,0,.18)}
.home-master-scale__hero strong{display:block;color:#45b4ff;font-size:clamp(3rem,7vw,5.7rem);line-height:.95;letter-spacing:-.045em;text-shadow:0 0 34px rgba(33,154,255,.3)}
.home-master-scale__hero span{display:block;margin-top:14px;color:#dceaf5;font-size:clamp(.95rem,1.7vw,1.2rem);font-weight:800}
.home-master-scale__hero + .home-master-scale__grid{max-width:760px;margin:0 auto}
.home-master-scale__hero + .home-master-scale__grid article{min-height:112px}
.home-master-scale__hero + .home-master-scale__grid strong{font-size:clamp(1.8rem,3vw,2.6rem)}
@media(max-width:480px){.home-master-scale__hero{padding:28px 16px 25px}.home-master-scale__hero strong{font-size:clamp(2.6rem,13vw,4rem)}}

/* HOME polish: tighter story and quieter catalog totals. */
.home-page #how-it-works{padding-bottom:34px}
.home-page #how-it-works + .home-capabilities{padding-top:30px}
.home-service-showcase{padding-top:clamp(48px,6vw,72px)}
.home-master-scale{padding-top:46px;padding-bottom:42px}
.home-master-scale__links--with-counts{margin-top:16px}
.home-master-scale__links--with-counts a{min-width:235px;padding:13px 18px;display:flex;flex-direction:column;align-items:flex-start;gap:4px}
.home-master-scale__links--with-counts a>span{color:#e7f5ff;font-weight:850}
.home-master-scale__links--with-counts a>small{color:#8299ad;font-size:.72rem;font-weight:650}
.home-master-scale + .benefit-bar{display:none}
@media(max-width:560px){.home-master-scale__links--with-counts{display:grid;grid-template-columns:1fr}.home-master-scale__links--with-counts a{min-width:0;width:100%}}


/* Renault SECURITY/PRECODE reference landing — uses the Ford reference visual system. */
.renault-photo-guide .v-rich-section__head {
    border-left: 4px solid var(--success, #178a4b);
    padding-left: 18px;
}
.renault-precode-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.renault-label-demo {
    min-height: 230px;
    display: grid;
    place-content: center;
    gap: 8px;
    padding: 28px;
    text-align: center;
    background: linear-gradient(145deg, #f3f5f2, #e7ebe6);
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.renault-label-demo span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.renault-label-demo strong {
    display: inline-block;
    padding: 10px 22px;
    border: 3px solid #178a4b;
    border-radius: 8px;
    font: 800 clamp(2rem,5vw,3.4rem)/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: #fff;
}
.renault-label-demo small {
    max-width: 32rem;
    margin-top: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    overflow-wrap: anywhere;
}

.renault-supported-models__manufacturers{display:grid;gap:24px;margin-top:28px}.renault-supported-models__manufacturers>section{padding:24px;border:1px solid rgba(130,159,187,.17);border-radius:18px;background:rgba(5,17,29,.62)}.renault-supported-models__manufacturers h3{margin:0 0 18px;color:#eef7ff;font-size:1.35rem}.renault-supported-models__families{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.renault-supported-models__family h4{margin:0 0 10px;color:#73ddb3}.renault-supported-models__family ul{display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0;list-style:none}.renault-supported-models__family li{padding:9px 11px;border:1px solid rgba(130,159,187,.15);border-radius:10px;background:rgba(10,35,55,.5)}.renault-supported-models__family strong,.renault-supported-models__family small{display:block}.renault-supported-models__family strong{color:#eef7ff;font-size:.9rem}.renault-supported-models__family small{margin-top:4px;color:#8fa6ba;font-size:.72rem;line-height:1.4}@media(max-width:700px){.renault-supported-models__families{grid-template-columns:1fr}.renault-supported-models__manufacturers>section{padding:18px}}
.renault-label-copy {
    padding: 20px;
}
.renault-label-copy strong {
    color: #178a4b;
}
@media (max-width: 720px) {
    .renault-label-demo { min-height: 190px; padding: 22px 14px; }
}

/* Renault photo guide: keep the illustrative radio compact; published label photos remain readable. */
.renault-photo-guide .v-photo-guide__grid > .v-photo-card:first-child img{
  height:330px;
  aspect-ratio:auto;
  object-fit:contain;
  background:#0a1520;
}
.renault-photo-guide .v-photo-guide__grid > .v-photo-card:not(:first-child) img{
  height:330px;
  aspect-ratio:auto;
  object-fit:contain;
  background:#fff;
}
@media(max-width:760px){
  .renault-photo-guide .v-photo-guide__grid > .v-photo-card img{height:260px;max-height:260px}
}


/* Shared Renault/Dacia PRECODE photo guide — one visual contract for both brands. */
.precode-photo-guide .v-rich-section__head{
  border-left:4px solid var(--success,#178a4b);
  padding-left:18px;
}
.precode-photo-guide .v-photo-guide__grid > .v-photo-card img{
  height:330px;
  aspect-ratio:auto;
  object-fit:contain;
}
.precode-photo-guide .v-photo-guide__grid > .v-photo-card:first-child img{background:#0a1520}
.precode-photo-guide .v-photo-guide__grid > .v-photo-card:not(:first-child) img{background:#fff}
.precode-precode-card{display:flex;flex-direction:column;min-height:100%}
.precode-label-demo{
  min-height:230px;display:grid;place-content:center;gap:8px;padding:28px;text-align:center;
  background:linear-gradient(145deg,#f3f5f2,#e7ebe6);border-bottom:1px solid rgba(0,0,0,.08)
}
.precode-label-demo span{font-size:.78rem;font-weight:800;letter-spacing:.16em}
.precode-label-demo strong{
  display:inline-block;padding:10px 22px;border:3px solid #178a4b;border-radius:8px;
  font:800 clamp(2rem,5vw,3.4rem)/1 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;background:#fff
}
.precode-label-demo small{max-width:32rem;margin-top:8px;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;overflow-wrap:anywhere}
.precode-label-copy{padding:20px}.precode-label-copy strong{color:#178a4b}
.precode-supported-models__manufacturers{display:grid;gap:24px;margin-top:28px}
.precode-supported-models__manufacturers>section{padding:24px;border:1px solid rgba(130,159,187,.17);border-radius:18px;background:rgba(5,17,29,.62)}
.precode-supported-models__manufacturers h3{margin:0 0 18px;color:#eef7ff;font-size:1.35rem}
.precode-supported-models__families{display:grid;grid-template-columns:1fr;gap:18px;align-items:start}
.precode-supported-models__family h4{margin:0 0 10px;color:#73ddb3}
.precode-supported-models__family ul{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:8px;margin:0;padding:0;list-style:none;width:100%}
.precode-supported-models__family li{min-width:0;padding:10px 12px;border:1px solid rgba(130,159,187,.15);border-radius:10px;background:rgba(10,35,55,.5)}
.precode-supported-models__family strong,.precode-supported-models__family small{display:block}
.precode-supported-models__family strong{color:#eef7ff;font-size:.9rem}
.precode-supported-models__family small{margin-top:4px;color:#8fa6ba;font-size:.72rem;line-height:1.4}
@media(max-width:760px){
  .precode-photo-guide .v-photo-guide__grid > .v-photo-card img{height:260px;max-height:260px}
  .precode-label-demo{min-height:190px;padding:22px 14px}
}
@media(max-width:700px){
  .precode-supported-models__families{grid-template-columns:1fr}
  .precode-supported-models__family ul{grid-template-columns:1fr}
  .precode-supported-models__manufacturers>section{padding:18px}
}

.precode-supported-models__family li>a{display:block;color:inherit;text-decoration:none}
.precode-supported-models__family li>a strong{text-decoration:underline;text-decoration-color:rgba(115,221,179,.42);text-underline-offset:3px}
.precode-supported-models__family li>a:hover strong{text-decoration-color:currentColor}


/* Legal documents use the standard hero typography, but their titles often
   include the storefront brand and need more horizontal room on desktop. */
.home-page.legal-page .home-hero h1 {
    max-width: none;
}
