:root {
    --bg: #050506;
    --bg-2: #0d0f12;
    --panel: #12151a;
    --panel-2: #191d23;
    --text: #f5f2eb;
    --muted: #aaa59a;
    --line: rgba(255, 255, 255, .12);
    --orange: #ff8a00;
    --yellow: #ffc400;
    --green: #6ee7b7;
    --red: #ff5f57;
    --shadow: 0 26px 80px rgba(0, 0, 0, .42);
    --radius: 8px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: dark;
}

* { box-sizing: border-box; }

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 138, 0, .18), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(110, 231, 183, .09), transparent 28%),
        linear-gradient(180deg, #050506 0%, #0b0d10 44%, #050506 100%);
    font-size: 16px;
    line-height: 1.6;
}

[id] { scroll-margin-top: 92px; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 200;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #050506;
    background: var(--yellow);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 58px);
    border-bottom: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    border-color: var(--line);
    background: rgba(5, 5, 6, .84);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 186px;
    height: 60px;
    padding: 0 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
}

.brand-mark img {
    width: 160px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, .08);
    outline: 0;
}

.site-nav .nav-cta {
    color: #120b00;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    min-height: 100svh;
    padding: 132px clamp(18px, 5vw, 70px) 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .84fr);
    gap: clamp(34px, 6vw, 86px);
    max-width: 1320px;
    min-height: calc(100svh - 204px);
    margin: 0 auto;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.section-head h2,
.operating-copy h2,
.diagnosis-copy h2,
.answer-card h2 {
    margin: 0;
    color: var(--text);
    font-weight: 920;
    letter-spacing: 0;
    line-height: .98;
    overflow-wrap: normal;
    word-break: normal;
}

.hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 5.2vw, 76px);
}

.h1-line {
    display: inline;
}

.hero-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: #d8d3ca;
    font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 880;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: 0;
}

.button.primary {
    color: #140b00;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    box-shadow: 0 18px 48px rgba(255, 138, 0, .28);
}

.button.ghost {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, .04);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 790px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.hero-proof li {
    min-height: 106px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.hero-proof strong {
    display: block;
    color: var(--orange);
    font-size: 34px;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 760;
}

.hero-system,
.answer-card,
.diagnosis-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    box-shadow: var(--shadow);
}

.hero-system {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.hero-system::before {
    position: absolute;
    inset: -2px;
    background:
        linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,.04) 49% 51%, transparent 51% 100%),
        linear-gradient(0deg, transparent 0 49%, rgba(255,255,255,.04) 49% 51%, transparent 51% 100%);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, #000, transparent);
    content: "";
}

.system-top,
.workflow,
.mini-dashboard {
    position: relative;
    z-index: 1;
}

.system-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.pulse {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(110, 231, 183, .12);
    animation: pulse 1.8s infinite;
}

.system-top p {
    margin: 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.workflow {
    display: grid;
    gap: 10px;
}

.workflow div,
.mini-dashboard article,
.tech-card,
.pain-card,
.solution-card,
.reference-grid article,
.faq-mini details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
}

.workflow div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 4px 12px;
    padding: 14px;
}

.workflow span {
    grid-row: span 2;
    color: var(--orange);
    font-weight: 950;
}

.workflow strong {
    color: var(--text);
}

.workflow small {
    color: var(--muted);
}

.mini-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}

.mini-dashboard article {
    padding: 13px;
}

.mini-dashboard span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.mini-dashboard strong {
    display: block;
    margin-top: 2px;
    color: var(--text);
}

.section,
.diagnosis {
    padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 70px);
}

.section-head {
    max-width: 980px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-head.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .5fr);
    gap: 30px;
    max-width: 1200px;
    align-items: end;
    text-align: left;
}

.section-head h2,
.operating-copy h2,
.diagnosis-copy h2,
.answer-card h2 {
    font-size: clamp(36px, 5vw, 72px);
}

.section-head p:not(.eyebrow),
.operating-copy p,
.diagnosis-copy p,
.answer-card p {
    color: var(--muted);
    font-size: 18px;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.pain-card,
.solution-card {
    min-height: 260px;
    padding: 26px;
}

.pain-card h3,
.solution-card h3,
.tech-card h3,
.team-card h3,
.reference-grid h3,
.diagnosis-form h3 {
    margin: 0;
    color: var(--text);
    font-size: 25px;
    line-height: 1.1;
}

.pain-card p,
.solution-card p,
.tech-card p,
.reference-grid p,
.team-card p {
    margin: 14px 0 0;
    color: var(--muted);
}

.pain-card.muted {
    opacity: .82;
}

.solution-card {
    border-color: rgba(255, 138, 0, .45);
    background: linear-gradient(180deg, rgba(255, 138, 0, .16), rgba(255, 255, 255, .05));
}

.operating {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(340px, .72fr);
    gap: clamp(32px, 6vw, 90px);
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
}

.role-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.role-matrix div {
    min-height: 86px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    color: var(--text);
    font-weight: 900;
}

.role-matrix div:nth-child(3n) {
    border-color: rgba(110, 231, 183, .34);
}

.role-matrix div:nth-child(4n) {
    border-color: rgba(255, 138, 0, .42);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
}

.tech-card {
    min-height: 255px;
    padding: 22px;
}

.tech-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 9px;
    border: 1px solid rgba(110, 231, 183, .28);
    border-radius: var(--radius);
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.team {
    background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}

.team-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(.95) contrast(1.05);
}

.team-card div {
    padding: 24px;
}

.team-card .role {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.team-card .leadline {
    color: #e8e0d2;
    font-weight: 800;
}

.team-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.team-card li {
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
}

.reference-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto 18px;
}

.reference-stats article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
}

.reference-stats strong {
    display: block;
    color: var(--orange);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
}

.reference-stats span {
    display: block;
    margin-top: 10px;
    color: #d8d3ca;
    font-weight: 800;
}

.reference-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.reference-cluster {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.cluster-head {
    padding: 22px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 138, 0, .11), rgba(255, 255, 255, .025));
}

.cluster-head span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cluster-head h3 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.05;
}

.cluster-head p {
    margin: 12px 0 0;
    color: var(--muted);
}

.reference-list {
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reference-list li {
    padding: 15px 18px;
    background: rgba(255,255,255,.035);
}

.reference-list strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    line-height: 1.2;
}

.reference-list span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.packages {
    background: linear-gradient(180deg, transparent, rgba(255, 138, 0, .055), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 18px 56px rgba(0, 0, 0, .24);
}

.price-card.featured {
    border-color: rgba(255, 138, 0, .58);
    background: linear-gradient(180deg, rgba(255, 138, 0, .16), rgba(255, 255, 255, .055));
}

.package-badge {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 9px;
    border-radius: var(--radius);
    color: #120b00;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.package-target {
    margin: 0 0 9px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-card h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
}

.price {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    margin-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.price strong {
    color: var(--orange);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
}

.price span {
    color: var(--muted);
    font-weight: 800;
}

.included-feature {
    margin: 16px 0 0;
    padding: 10px 12px;
    border: 1px solid rgba(110, 231, 183, .32);
    border-radius: var(--radius);
    color: var(--green);
    background: rgba(110, 231, 183, .08);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 24px;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 20px;
    color: #d8d3ca;
    font-size: 14px;
    line-height: 1.45;
}

.price-card li::before {
    position: absolute;
    top: .52em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.ota {
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(110, 231, 183, .045), rgba(255,255,255,.02));
}

.ota-included {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto 18px;
    padding: 18px 20px;
    border: 1px solid rgba(110, 231, 183, .32);
    border-radius: var(--radius);
    background: rgba(110, 231, 183, .08);
}

.ota-included strong {
    color: var(--text);
}

.ota-included a {
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
}

.ota-results {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto 18px;
}

.ota-results article,
.ota-card,
.ota-platforms {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
}

.ota-results article {
    min-height: 168px;
    padding: 24px;
}

.ota-results strong {
    display: block;
    color: var(--orange);
    font-size: clamp(38px, 5vw, 68px);
    line-height: .9;
}

.ota-results p {
    margin: 14px 0 0;
    color: #d8d3ca;
    font-weight: 760;
}

.ota-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
}

.ota-card {
    padding: 22px;
}

.ota-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.1;
}

.ota-card ul {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.ota-card li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.ota-card li::before {
    position: absolute;
    top: .58em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
    content: "";
}

.ota-platforms {
    max-width: 1280px;
    margin: 18px auto 0;
    padding: 20px;
}

.ota-platforms span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.ota-platforms div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ota-platforms strong {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255,255,255,.05);
    font-size: 13px;
}

.answer-engine {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
    gap: 18px;
    max-width: 1280px;
    margin: 0 auto;
}

.answer-card {
    padding: 30px;
}

.answer-card strong {
    color: var(--text);
}

.faq-mini {
    display: grid;
    gap: 10px;
}

.faq-mini details {
    padding: 0 18px;
}

.faq-mini summary {
    cursor: pointer;
    padding: 16px 0;
    color: var(--text);
    font-weight: 850;
}

.faq-mini p {
    margin: 0 0 16px;
    color: var(--muted);
}

.diagnosis {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
}

.diagnosis-copy ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.diagnosis-copy li {
    padding: 13px 15px;
    border-left: 4px solid var(--orange);
    background: rgba(255,255,255,.055);
    font-weight: 820;
}

.diagnosis-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 26px;
}

.diagnosis-form h3,
.diagnosis-form .full,
.diagnosis-form .form-status {
    grid-column: 1 / -1;
}

.diagnosis-form label {
    display: grid;
    gap: 7px;
    color: #dfd8cc;
    font-size: 14px;
    font-weight: 800;
}

.diagnosis-form input,
.diagnosis-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255,255,255,.055);
}

.diagnosis-form textarea {
    resize: vertical;
}

.diagnosis-form input:focus,
.diagnosis-form textarea:focus {
    border-color: var(--orange);
    outline: 3px solid rgba(255, 138, 0, .18);
}

.hp {
    display: none !important;
}

.form-status {
    margin: 0;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-status.success {
    color: #052e1f;
    background: #a7f3d0;
}

.form-status.error {
    color: #3f0808;
    background: #fecaca;
}

.form-note {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 42px clamp(18px, 5vw, 70px) 90px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #030304;
}

.site-footer img {
    width: 170px;
    filter: invert(1);
}

.site-footer p {
    margin: 0;
}

.site-footer strong {
    color: var(--text);
}

.site-footer a {
    color: var(--orange);
    font-weight: 900;
    text-decoration: none;
}

.mobile-bar {
    position: fixed;
    z-index: 110;
    bottom: 12px;
    left: 12px;
    width: min(366px, calc(100vw - 24px));
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 6, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.mobile-bar a {
    display: grid;
    min-height: 52px;
    place-items: center;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.mobile-bar a + a {
    border-left: 1px solid var(--line);
}

.mobile-bar a:last-child {
    color: #150b00;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.72); opacity: .62; }
}

@media (max-width: 1120px) {
    .brand-mark {
        width: 166px;
        height: 54px;
    }

    .brand-mark img {
        width: 144px;
    }

    .site-nav {
        gap: 2px;
    }

    .site-nav a {
        padding: 9px 8px;
        font-size: 13px;
    }
}

@media (max-width: 1160px) {
    .hero-grid,
    .operating,
    .answer-engine,
    .diagnosis,
    .section-head.split {
        grid-template-columns: 1fr;
    }

    .tech-grid,
    .ota-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid,
    .reference-stats,
    .reference-wall,
    .compare-grid,
    .pricing-grid,
    .ota-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 72px;
    }

    .site-header {
        min-height: 68px;
        padding: 10px 14px;
    }

    .brand-mark {
        width: 142px;
        height: 48px;
        padding: 0 7px;
    }

    .brand-mark img {
        width: 128px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 68px;
        right: 12px;
        left: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(10, 11, 13, .97);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        min-height: 46px;
    }

    .hero {
        min-height: auto;
        padding: 108px 16px 54px;
    }

    .hero-grid {
        min-height: 0;
    }

    .hero h1 {
        font-size: clamp(33px, 9.1vw, 36px);
        line-height: 1.02;
    }

    .h1-line {
        display: block;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: .04em;
        line-height: 1.35;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-system {
        padding: 16px;
    }

    .section,
    .diagnosis {
        padding: 62px 16px;
    }

    .section-head {
        text-align: left;
    }

    .section-head h2,
    .operating-copy h2,
    .diagnosis-copy h2,
    .answer-card h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .cluster-head,
    .reference-list li {
        padding-right: 16px;
        padding-left: 16px;
    }

    .role-matrix,
    .tech-grid,
    .ota-grid,
    .diagnosis-form {
        grid-template-columns: 1fr;
    }

    .ota-included {
        align-items: flex-start;
    }

    .ota-results article {
        min-height: 0;
    }

    .diagnosis-form {
        order: -1;
    }

    .tech-card {
        min-height: 0;
    }

    .team-card img {
        aspect-ratio: 1 / 1.08;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer img {
        width: 150px;
    }

    .mobile-bar {
        display: grid;
    }
}

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