:root {
    --qe-primary: #175c62;
    --qe-primary-dark: #0f4146;
    --qe-accent: #f4b942;
    --qe-text: #172026;
    --qe-muted: #667085;
    --qe-bg: #f6f8f9;
    --qe-surface: #ffffff;
    --qe-border: #d9e3e7;
    --qe-success: #168a52;
    --qe-warning: #b7791f;
    --qe-danger: #b42318;
    --qe-shadow: 0 18px 50px rgba(16, 24, 40, .08);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--qe-bg);
    color: var(--qe-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
a {
    color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(244, 185, 66, .75);
    outline-offset: 3px;
}
.qe-skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 1000;
    background: var(--qe-text);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}
.qe-skip-link:focus {
    top: 16px;
}
.qe-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px clamp(18px, 4vw, 48px);
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--qe-border);
    backdrop-filter: blur(16px);
}
.qe-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    color: var(--qe-primary);
}
.qe-brand img {
    max-height: 42px;
    width: auto;
}
.qe-primary-nav,
.qe-primary-nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.qe-primary-nav a {
    text-decoration: none;
    font-weight: 750;
    color: #344054;
}
.qe-nav-toggle {
    display: none;
}
.qe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
    font: inherit;
}
.qe-btn-primary {
    background: var(--qe-primary);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(23, 92, 98, .22);
}
.qe-btn-secondary {
    background: #fff;
    color: var(--qe-primary) !important;
    border-color: var(--qe-border);
}
.qe-hero,
.qe-section,
.qe-final-cta,
.qe-content-page {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}
.qe-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: 54px 0;
}
.qe-eyebrow {
    margin: 0 0 10px;
    color: var(--qe-primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}
.qe-hero h1,
.qe-final-cta h2 {
    margin: 0;
    font-size: clamp(44px, 8vw, 82px);
    line-height: .98;
    letter-spacing: 0;
}
.qe-hero-copy > p:not(.qe-eyebrow),
.qe-section-heading p,
.qe-final-cta > p:not(.qe-eyebrow) {
    max-width: 720px;
    color: var(--qe-muted);
    font-size: 20px;
}
.qe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.qe-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.qe-trust-list li,
.qe-industry-grid article {
    background: #fff;
    border: 1px solid var(--qe-border);
    border-radius: 999px;
    padding: 9px 13px;
    color: #344054;
    font-weight: 750;
}
.qe-product-visual {
    min-height: 480px;
}
.qe-mock-window {
    background: #fff;
    border: 1px solid var(--qe-border);
    border-radius: 18px;
    box-shadow: var(--qe-shadow);
    overflow: hidden;
}
.qe-mock-toolbar {
    display: flex;
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid var(--qe-border);
}
.qe-mock-toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cfd8dc;
}
.qe-mock-dashboard {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 420px;
}
.qe-mock-dashboard aside {
    background: #102f33;
    color: #fff;
    padding: 18px;
}
.qe-mock-dashboard aside span {
    display: block;
    height: 10px;
    margin: 20px 0;
    border-radius: 999px;
    background: rgba(255,255,255,.24);
}
.qe-mock-dashboard main {
    display: grid;
    gap: 16px;
    padding: 20px;
}
.qe-mock-score,
.qe-mock-card {
    border: 1px solid var(--qe-border);
    border-radius: 14px;
    background: var(--qe-bg);
    padding: 18px;
}
.qe-mock-score strong {
    display: block;
    color: var(--qe-success);
    font-size: 58px;
    line-height: 1;
}
.qe-mock-card {
    min-height: 80px;
}
.qe-mock-card.wide {
    min-height: 120px;
}
.qe-mock-card.accent {
    background: #fff7df;
    border-color: #f4d27c;
}
.qe-section {
    padding: 72px 0;
}
.qe-section-heading {
    max-width: 780px;
    margin-bottom: 28px;
}
.qe-section-heading h2,
.qe-score-panel h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
}
.qe-feature-grid,
.qe-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.qe-card,
.qe-solution-band,
.qe-score-panel,
.qe-page-card {
    background: #fff;
    border: 1px solid var(--qe-border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .05);
}
.qe-card h3 {
    margin-top: 0;
    font-size: 22px;
}
.qe-card p {
    color: var(--qe-muted);
}
.qe-card.featured {
    border-color: var(--qe-primary);
    box-shadow: inset 0 5px 0 var(--qe-primary), var(--qe-shadow);
}
.qe-solution-band,
.qe-score-panel {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 20px;
    background: #eef8f7;
}
.qe-score-ring {
    width: min(260px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    border-radius: 999px;
    background: conic-gradient(var(--qe-success) 0 92%, #d9e3e7 92% 100%);
    color: #fff;
}
.qe-score-ring strong {
    font-size: 76px;
    line-height: 1;
}
.qe-score-ring span {
    display: block;
}
.qe-check-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.qe-check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 28px;
}
.qe-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--qe-success);
}
.qe-industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.qe-faq-list {
    display: grid;
    gap: 12px;
}
.qe-faq-list details,
.qe-proposal-section details {
    background: #fff;
    border: 1px solid var(--qe-border);
    border-radius: 12px;
    padding: 18px;
}
summary {
    cursor: pointer;
    font-weight: 850;
}
.qe-final-cta {
    margin-top: 40px;
    margin-bottom: 70px;
    padding: clamp(34px, 6vw, 68px);
    border-radius: 24px;
    background: #102f33;
    color: #fff;
}
.qe-final-cta .qe-eyebrow,
.qe-final-cta p {
    color: #bee7e3;
}
.qe-site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px clamp(18px, 4vw, 48px);
    border-top: 1px solid var(--qe-border);
    background: #fff;
}
.qe-site-footer p {
    max-width: 520px;
    color: var(--qe-muted);
}
.qe-content-page {
    padding: 58px 0;
}
.qe-page-card {
    max-width: 860px;
    margin: 0 auto;
}
.qe-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.qe-auth-page {
    min-height: 80vh;
    display: grid;
    place-items: center;
    padding: 40px 18px;
}
.qe-auth-card {
    width: min(520px, 100%);
    background: #fff;
    border: 1px solid var(--qe-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--qe-shadow);
}
.qe-auth-card.wide {
    width: min(980px, 100%);
}
.qe-auth-card input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--qe-border);
    border-radius: 8px;
    padding: 10px 12px;
}
.qe-auth-form {
    display: grid;
    gap: 14px;
}
.qe-oauth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}
.qe-oauth-button {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--qe-border);
    border-radius: 10px;
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}
.qe-auth-alert,
.qe-auth-success {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 800;
}
.qe-auth-alert {
    background: #fff4d6;
    color: #7a4d00;
}
.qe-auth-success {
    background: #e3f7ed;
    color: #0f6d42;
}
.qe-trust-page {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}
.qe-auth-card .button {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--qe-primary);
    color: #fff;
    font-weight: 850;
}
.qe-onboarding-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}
.qe-onboarding-steps article {
    border: 1px solid var(--qe-border);
    border-radius: 14px;
    padding: 16px;
}
.qe-onboarding-steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--qe-primary);
    color: #fff;
    font-weight: 900;
}
@media (max-width: 900px) {
    .qe-nav-toggle {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        border: 1px solid var(--qe-border);
        border-radius: 8px;
        background: #fff;
        padding: 0 12px;
    }
    .qe-primary-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 70px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--qe-border);
        border-radius: 14px;
        padding: 16px;
        box-shadow: var(--qe-shadow);
    }
    .qe-primary-nav.is-open {
        display: flex;
    }
    .qe-primary-nav ul {
        display: grid;
    }
    .qe-hero,
    .qe-solution-band,
    .qe-score-panel,
    .qe-feature-grid,
    .qe-pricing-grid,
    .qe-onboarding-steps {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 620px) {
    .qe-hero,
    .qe-section,
    .qe-final-cta,
    .qe-content-page {
        width: min(100% - 24px, 1180px);
    }
    .qe-hero {
        min-height: auto;
        padding-top: 36px;
    }
    .qe-actions,
    .qe-site-footer {
        display: grid;
    }
    .qe-product-visual {
        min-height: 0;
    }
    .qe-mock-dashboard {
        grid-template-columns: 1fr;
    }
    .qe-mock-dashboard aside {
        display: none;
    }
}
