*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --green-50: #e8f5e1;
    --green-400: #66ba1e;
    --green-500: #4a9b14;
    --green-600: #2d7a0e;
    --green-700: #1a5e04;
    --red-50: #fdeaea;
    --red-500: #8b1a0e;
    --amber-50: #fef3e2;
    --amber-500: #6b3d00;
    --neutral-0: #fff;
    --neutral-50: #fafafa;
    --neutral-100: #f2f2f2;
    --neutral-200: #e4e5e7;
    --neutral-300: #dadce0;
    --neutral-400: #c6cad0;
    --neutral-600: #636b74;
    --neutral-700: #4f575e;
    --neutral-800: #3d4449;
    --neutral-900: #1a1a2e;
    --neutral-1000: #000;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background: #fff;
    color: #1a1a2e;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
::selection {
    background: #e8f5e1;
    color: #1a1a2e;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #1a1a2e;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    caret-color: #1a1a2e;
    transition: background-color 5000s ease-in-out 0s;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::marker {
    content: "";
}
input {
    color-scheme: light;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid #66ba1e;
    outline-offset: 2px;
}
[hidden] {
    display: none !important;
}
.web-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid #f2f2f2;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 50;
}
.web-header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}
.web-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.web-wordmark {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    letter-spacing: -0.01em;
}
.web-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.web-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.web-nav-link {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #4f575e;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s;
}
.web-nav-link:hover {
    color: #1a1a2e;
}
.web-nav-link.active {
    color: #1a1a2e;
    font-weight: 600;
    border-bottom-color: #2d7a0e;
}
.header-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
}
.header-link:hover {
    color: #2d7a0e;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    background: #000;
    color: #fff;
    transition: background 0.15s;
    text-decoration: none;
}
.btn-primary:hover {
    background: #1f1f1f;
}
.btn-primary:active {
    background: #333;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    border: 1.5px solid #c6cad0;
    color: #1a1a2e;
    transition:
        background 0.15s,
        border-color 0.15s;
    text-decoration: none;
}
.btn-outline:hover {
    background: #f2f2f2;
    border-color: #4f575e;
}
main {
    display: block;
}
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}
.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}
section {
    padding: 80px 0;
}
.section-overline {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.section-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.section-lead {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #4f575e;
    line-height: 1.55;
    max-width: 640px;
    margin-bottom: 48px;
}
.hero {
    padding: 72px 0 96px;
    background: #fafafa;
    text-align: center;
}
.hero-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.08;
    color: #1a1a2e;
    letter-spacing: -0.025em;
    max-width: 880px;
    margin: 0 auto 20px;
}
.hero-title em {
    font-style: normal;
    color: #2d7a0e;
}
.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #4f575e;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto 40px;
}
.hero-form {
    display: flex;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid #c6cad0;
    border-radius: 12px;
    padding: 6px;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.hero-form:focus-within {
    border-color: #2d7a0e;
    box-shadow: 0 0 0 4px rgba(45, 122, 14, 0.12);
}
.hero-form input {
    flex: 1;
    height: 48px;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #1a1a2e;
    outline: none;
    min-width: 0;
}
.hero-form input::placeholder {
    color: #636b74;
}
.hero-form button {
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.hero-form button:hover {
    background: #1f1f1f;
}
.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-trust-item svg {
    color: #2d7a0e;
    flex-shrink: 0;
}
.hero-counter {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f2f2f2;
    border-radius: 100px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.hero-counter strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #1a1a2e;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #66ba1e;
    box-shadow: 0 0 0 0 rgba(102, 186, 30, 0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 186, 30, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(102, 186, 30, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 186, 30, 0);
    }
}
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}
.status-icon.pass {
    background: #e8f5e1;
    color: #1a5e04;
}
.status-icon.fail {
    background: #fdeaea;
    color: #8b1a0e;
    font-weight: 700;
}
.status-icon.partial {
    background: #fef3e2;
    color: #6b3d00;
}
.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.check-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 22px;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.check-card:hover {
    border-color: #c6cad0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.check-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.check-card-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
}
.check-card-body {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2d7a0e;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 18px;
}
.step-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.step-body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
}
.steps-note {
    margin-top: 32px;
    padding: 16px 20px;
    background: #fff;
    border-left: 3px solid #2d7a0e;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
}
.persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.persona-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 14px;
    padding: 28px 28px 24px;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.persona-card:hover {
    border-color: #c6cad0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.persona-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f5e1;
    color: #2d7a0e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.persona-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}
.persona-body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
    margin-bottom: 16px;
}
.persona-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.persona-list li {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #3d4449;
    padding-left: 22px;
    position: relative;
}
.persona-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 6px;
    border-left: 2px solid #2d7a0e;
    border-bottom: 2px solid #2d7a0e;
    transform: rotate(-45deg);
}
.persona-link {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2d7a0e;
}
.persona-card:hover .persona-link {
    text-decoration: underline;
}
.methodology {
    background: #1f1f1f;
    color: #fff;
    padding: 88px 0;
}
.methodology .method-footnote {
    border-top-color: #4f575e;
}
.methodology .section-overline {
    color: #66ba1e;
}
.methodology .section-title {
    color: #fff;
}
.methodology .section-lead {
    color: #c6cad0;
}
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.method-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.method-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}
.method-list li svg {
    flex-shrink: 0;
    color: #66ba1e;
    margin-top: 2px;
}
.method-list li strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.method-list li span {
    font-size: 13px;
    color: #c6cad0;
}
.method-footnote {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #3d4449;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #c6cad0;
    line-height: 1.55;
}
.viral {
    background: #fafafa;
}
.viral-banner {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 14px;
    overflow: hidden;
}
.viral-banner-accent {
    width: 6px;
    background: #2d7a0e;
    flex-shrink: 0;
}
.viral-banner-body {
    padding: 28px 32px 32px;
    flex: 1;
}
.viral-banner h3 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.viral-banner p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 620px;
}
.viral-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.viral-example {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    text-decoration: none;
    transition:
        background 0.15s,
        border-color 0.15s;
}
.viral-example:hover {
    background: #f2f2f2;
    border-color: #c6cad0;
}
.viral-example-domain {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}
.viral-example-meta {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #4f575e;
    margin-top: 2px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.price-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.price-card.is-featured {
    border: 2px solid #2d7a0e;
    box-shadow: 0 4px 24px rgba(45, 122, 14, 0.08);
    position: relative;
}
.price-card.is-featured::before {
    content: "Most popular";
    position: absolute;
    top: -12px;
    left: 28px;
    background: #2d7a0e;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.price-tier {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.price-amount {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a2e;
    margin-top: 12px;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.price-amount-suffix {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4f575e;
}
.price-desc {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin-bottom: 20px;
    line-height: 1.5;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.45;
}
.price-features li svg {
    flex-shrink: 0;
    color: #2d7a0e;
    margin-top: 3px;
}
.price-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    border: 1.5px solid #c6cad0;
    background: #fff;
    color: #1a1a2e;
    transition:
        background 0.15s,
        border-color 0.15s;
}
.price-cta:hover {
    background: #f2f2f2;
    border-color: #4f575e;
}
.price-cta.is-primary {
    background: #000;
    color: #fff;
    border-color: #000;
}
.price-cta.is-primary:hover {
    background: #1f1f1f;
    border-color: #1f1f1f;
}
.pricing-footer {
    margin-top: 24px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.pricing-footer a {
    color: #2d7a0e;
    text-decoration: none;
    font-weight: 500;
}
.pricing-footer a:hover {
    text-decoration: underline;
}
.faq {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e4e5e7;
}
.faq-item {
    border-bottom: 1px solid #e4e5e7;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #1a1a2e;
}
.faq-question svg {
    flex-shrink: 0;
    color: #4f575e;
    transition: transform 0.2s;
}
.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 0 20px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.6;
    max-width: 720px;
}
.final-cta {
    background: #e8f5e1;
    text-align: center;
    padding: 88px 0;
}
.final-cta h2 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.final-cta p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #3d4449;
    margin-bottom: 32px;
}
.final-cta .hero-form {
    background: #fff;
    border-color: #c6cad0;
}
footer {
    background: #fff;
    border-top: 1px solid #e4e5e7;
    padding: 56px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin-top: 14px;
    max-width: 280px;
}
.footer-col-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    text-decoration: none;
}
.footer-col a:hover {
    color: #2d7a0e;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #636b74;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #636b74;
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: #2d7a0e;
}
.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;
}
.screen {
    display: none;
}
.screen.active {
    display: block;
    animation: screenFadeIn 0.2s ease-out;
}
@keyframes screenFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.check-main {
    background: #fafafa;
    padding: 64px 0 96px;
    min-height: calc(100vh - 73px);
}
.check-card-large {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 16px;
    padding: 40px;
}

/* Error state */
.check-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}
.check-error-icon {
    margin-bottom: 20px;
}
.check-error-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.check-error-message {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #4f575e;
    margin: 0 0 20px;
    max-width: 400px;
}
.check-error-details {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #636b74;
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
    max-width: 400px;
}
.check-error-details summary {
    cursor: pointer;
    color: #4f575e;
    margin-bottom: 8px;
}
.check-error-details code {
    display: block;
    background: #f8f8f8;
    border: 1px solid #e4e5e7;
    border-radius: 6px;
    padding: 12px;
    font-size: 12px;
    word-break: break-word;
    white-space: pre-wrap;
}
.check-error .btn-primary {
    margin-top: 4px;
}

.check-overline {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.check-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 4px;
    word-break: break-all;
    line-height: 1.2;
}
.check-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    margin-bottom: 24px;
}
.check-progress-bar {
    height: 6px;
    background: #f2f2f2;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 28px;
}
.check-progress-bar-fill {
    height: 100%;
    background: #66ba1e;
    border-radius: 100px;
    width: 45%;
    transition: width 0.4s ease;
}
.progress-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
}
.progress-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
}
.progress-step:last-child {
    border-bottom: none;
}
.progress-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.progress-step.is-done .progress-icon {
    background: #e8f5e1;
    color: #2d7a0e;
    font-weight: 700;
}
.progress-step.is-active .progress-icon {
    background: #fff;
    border: 2px solid #66ba1e;
}
.progress-step.is-pending .progress-icon {
    background: #f2f2f2;
    color: #c6cad0;
}
.progress-label {
    flex: 1;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
}
.progress-step.is-pending .progress-label {
    color: #636b74;
}
.progress-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.progress-step.is-active .progress-meta {
    color: #2d7a0e;
    font-weight: 500;
}
.progress-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(45, 122, 14, 0.2);
    border-top-color: #2d7a0e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.check-foot {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.check-foot a {
    color: #2d7a0e;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}
.check-foot a:hover {
    text-decoration: underline;
}
.result-context {
    background: #fff;
    border-bottom: 1px solid #e4e5e7;
    padding: 18px 0;
    position: sticky;
    top: 73px;
    z-index: 40;
}
.result-context-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.result-context-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.result-url {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
}
.result-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin-top: 2px;
}
.result-actions {
    display: flex;
    gap: 8px;
}
.btn-sm {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 8px;
}
.result-main {
    background: #fafafa;
    padding: 40px 0 80px;
}
.result-summary {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 32px;
}
.result-summary-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.result-summary-sub {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    margin-bottom: 24px;
}
.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid #f2f2f2;
}
.result-stat-num {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.result-stat-num.pass {
    color: #1a5e04;
}
.result-stat-num.fail {
    color: #8b1a0e;
}
.result-stat-num.locked {
    color: #4f575e;
}
.result-stat-label {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin-top: 6px;
}
.result-section-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 32px;
    margin-bottom: 12px;
}
.result-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 12px;
}
.result-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.result-card-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
    flex: 1;
}
.result-card-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.result-card-body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
}
.result-card-body p {
    margin-bottom: 8px;
}
.result-card-body p:last-child {
    margin-bottom: 0;
}
.result-card-body ul,
.result-card-body ol {
    margin: 6px 0 0 0;
    padding-left: 20px;
}
.result-card-body li {
    margin-bottom: 4px;
}
.result-card-body a {
    color: #2d7a0e;
}
.page-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 8px 0 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.page-list li {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    background: #f2f2f2;
    color: #1a1a2e;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 0 !important;
}
.locked-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px dashed #c6cad0;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.locked-row svg {
    flex-shrink: 0;
    color: #4f575e;
}
.locked-row-label {
    flex: 1;
}
.locked-row a {
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.locked-row a:hover {
    text-decoration: underline;
}
.result-cta-card {
    background: #e8f5e1;
    border-radius: 14px;
    padding: 48px 32px;
    text-align: center;
    margin-top: 32px;
}
.result-cta-card h2 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.result-cta-card p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #3d4449;
    margin: 0 auto 24px;
    line-height: 1.55;
    max-width: 480px;
}
.result-cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.result-cta-card .btn-primary,
.result-cta-card .btn-outline {
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    border-radius: 10px;
}
.check-pages-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 28px;
    margin-bottom: 8px;
    padding-top: 20px;
    border-top: 1px solid #f2f2f2;
}
.check-pages-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
}
.check-page-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #f2f2f2;
}
.check-page-row:last-child {
    border-bottom: none;
}
.check-page-row .page-url {
    flex: 1;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #1a1a2e;
}
.check-page-row.is-pending .page-url {
    color: #636b74;
}
.check-page-row .page-status {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #4f575e;
}
.check-page-row.is-active .page-status {
    color: #2d7a0e;
    font-weight: 500;
}
.page-row-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
.page-row-icon.is-done {
    background: #e8f5e1;
    color: #2d7a0e;
    font-weight: 700;
}
.page-row-icon.is-active {
    background: #fff;
    border: 2px solid #66ba1e;
}
.page-row-icon.is-pending {
    background: #f2f2f2;
    color: #c6cad0;
}
.results-pages {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}
.page-result {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.page-result[open] {
    border-color: #c6cad0;
}
.page-result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    background: #fff;
    list-style: none;
}
.page-result-header::-webkit-details-marker {
    display: none;
}
.page-result-header:hover {
    background: #fafafa;
}
.page-result-url {
    flex: 1;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.page-result-summary-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.page-result-chevron {
    color: #4f575e;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.page-result[open] .page-result-chevron {
    transform: rotate(180deg);
}
.page-result-body {
    padding: 20px 24px 16px;
    border-top: 1px solid #f2f2f2;
}
details.criterion {
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
div.criterion {
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.criterion-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    cursor: default;
    list-style: none;
}
details.criterion > summary.criterion-header {
    cursor: pointer;
}
details.criterion
    > summary.criterion-header::-webkit-details-marker {
    display: none;
}
details.criterion > summary.criterion-header::marker {
    content: "";
}
.criterion-num {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #4f575e;
    width: 18px;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.5;
}
.criterion-info {
    flex: 1;
    min-width: 0;
}
.criterion-name {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.criterion-summary {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #636b74;
    line-height: 1.5;
    margin: 4px 0 0;
}
.criterion-summary code {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 6px;
    border-radius: 4px;
    background: #f2f2f2;
    color: #4f575e;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
}
.criterion-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 1px;
}
.criterion-status.pass {
    background: #e8f5e1;
    color: #1a5e04;
}
.criterion-status.fail {
    background: #fdeaea;
    color: #8b1a0e;
}
.criterion-status.warning {
    background: #fef3e2;
    color: #6b3d00;
}
.criterion-status.manual {
    background: #f2f2f2;
    color: #4f575e;
}
.criterion-status.na {
    background: #f2f2f2;
    color: #8b9199;
}
.criterion-toggle {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: transparent;
    color: #4f575e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: -2px -6px 0 0;
    transition: transform 0.15s;
}
details.criterion[open] .criterion-toggle {
    transform: rotate(180deg);
}
.criterion-toggle svg {
    width: 14px;
    height: 14px;
}
.criterion-body {
    border-top: 1px solid #e4e5e7;
    background: #fff;
    padding: 18px 18px 18px 50px;
}

/* Headings detailed view */
.headings-section-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #636b74;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px;
}
.headings-checks-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
}
.heading-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #fafafa;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.heading-check-item.has-findings {
    display: block;
}
.heading-check-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    list-style: none;
}
.heading-check-summary::-webkit-details-marker {
    display: none;
}
.heading-check-icon {
    font-weight: 600;
    width: 20px;
    text-align: center;
}
.heading-check-item.pass .heading-check-icon { color: #1a5e04; }
.heading-check-item.fail .heading-check-icon { color: #8b1a0e; }
.heading-check-item.warning .heading-check-icon { color: #6b3d00; }
.heading-check-name {
    flex: 1;
    color: #1a1a2e;
}
.heading-check-toggle {
    width: 16px;
    height: 16px;
    color: #636b74;
    transition: transform 0.15s;
}
details.heading-check-item[open] .heading-check-toggle {
    transform: rotate(180deg);
}
.heading-check-findings {
    padding: 12px 0 4px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.heading-finding {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 8px;
    padding: 12px 14px;
}
.heading-finding-element {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.heading-finding-details {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.6;
}
.heading-finding-details p {
    margin: 0 0 4px;
}
.heading-finding-details strong {
    color: #1a1a2e;
}

/* Structure comparison */
.headings-structure {
    margin-top: 8px;
}
.headings-structure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 768px) {
    .headings-structure-grid {
        grid-template-columns: 1fr;
    }
}
.headings-outline {
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 8px;
    padding: 14px 16px;
}
.headings-outline-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.headings-outline-tree {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    color: #4f575e;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Alt text issues */
.alt-text-issues {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.alt-text-item {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 8px;
    padding: 12px 14px;
}
.alt-text-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.alt-text-icon {
    color: #8b1a0e;
    font-weight: 600;
}
.alt-text-src {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    color: #4f575e;
    background: #f2f2f2;
    padding: 2px 6px;
    border-radius: 4px;
    word-break: break-all;
}
.alt-text-details {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.6;
    padding-left: 26px;
}
.alt-text-details p {
    margin: 0 0 4px;
}
.alt-text-details strong {
    color: #1a1a2e;
}
.alt-text-details em {
    color: #8b9199;
}

.criterion-gate {
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.criterion-gate-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f2f2f2;
    color: #4f575e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.criterion-gate-text {
    flex: 1;
    min-width: 220px;
}
.criterion-gate-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.criterion-gate-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
    margin: 0;
}
.criterion-gate-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.criterion-errors {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: errorN;
}
.criterion-errors > li {
    counter-increment: errorN;
    padding: 14px 0;
    border-top: 1px solid #f2f2f2;
}
.criterion-errors > li:first-child {
    border-top: none;
    padding-top: 0;
}
.error-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f575e;
    margin: 0 0 8px;
}
.error-title::before {
    content: "Error " counter(errorN);
}
.error-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 18px;
    row-gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}
.error-grid dt {
    font-weight: 600;
    color: #4f575e;
    margin: 0;
}
.error-grid dd {
    margin: 0;
    color: #1a1a2e;
}
.error-grid dd code {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    background: #f2f2f2;
    color: #4f575e;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
}
.error-grid dd.found {
    color: #8b1a0e;
}
.error-grid dd.expected {
    color: #1a5e04;
}
@media (max-width: 640px) {
    .error-grid {
        grid-template-columns: 1fr;
        row-gap: 2px;
    }
    .error-grid dt {
        margin-top: 8px;
    }
    .error-grid dt:first-child {
        margin-top: 0;
    }
}
.big-spinner {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border: 7px solid #e8f5e1;
    border-top: 7px solid #66ba1e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.check-headline {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.check-url-line {
    text-align: center;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #4f575e;
    word-break: break-all;
    margin-bottom: 28px;
}
.check-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.check-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    opacity: 0.45;
    transition:
        opacity 0.3s ease,
        color 0.3s ease;
}
.check-step.is-done {
    opacity: 1;
    color: #1a1a2e;
}
.check-step .icon-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f2f2f2;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}
.check-step.is-done .icon-dot {
    background: #e8f5e1;
    color: #1a5e04;
}
.check-pages-flow {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    border-top: 1px solid #e4e5e7;
    padding-top: 20px;
}
.dev-skip-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: transparent;
    border: 1px dashed #c6cad0;
    border-radius: 6px;
    padding: 4px 10px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    color: #4f575e;
    cursor: pointer;
    opacity: 0.6;
}
.dev-skip-btn:hover {
    opacity: 1;
}
.check-card-large {
    position: relative;
}
.check-pages-flow--standalone {
    border-top: none;
    padding-top: 0;
    margin-top: 4px;
}
.check-site-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 32px;
}
.check-site-favicon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    overflow: hidden;
    flex-shrink: 0;
}
.check-site-favicon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.check-site-favicon svg {
    width: 16px;
    height: 16px;
    color: #4f575e;
}
.check-site-domain {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 14px;
    color: #4f575e;
}
.check-pages-heading {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
}
.check-page-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.check-page-item:last-child {
    border-bottom: none;
}
.check-page-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.check-page-item .item-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #f2f2f2;
    color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    position: relative;
}
.check-page-item.is-checking .item-icon {
    background: #fff;
    border: 2px solid #66ba1e;
    color: transparent;
}
.check-page-item.is-checking .item-icon::before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 2px solid rgba(45, 122, 14, 0.2);
    border-top-color: #2d7a0e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.check-page-item.is-done .item-icon {
    background: #e8f5e1;
    color: #1a5e04;
}
.check-page-item .item-url {
    flex: 1;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #1a1a2e;
}
.check-page-item--site {
    border-bottom: 1px solid #e4e5e7;
    padding-bottom: 14px;
    margin-bottom: 4px;
}
.item-site {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.item-site-favicon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e4e5e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.item-site-favicon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.item-site-favicon svg {
    width: 15px;
    height: 15px;
    color: #4f575e;
}
.item-site .item-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
}
.stats-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.stats-headline {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    margin-right: auto;
}
.stats-card .stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.stats-card .stat-num {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.stats-card .stat-num.fail {
    color: #8b1a0e;
}
.stats-card .stat-num.pass {
    color: #1a5e04;
}
.stats-card .stat-num.locked {
    color: #4f575e;
}
.stats-card .stat-label {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.result-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}
.result-header-info {
    min-width: 0;
}
.result-header-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.result-header-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.result-header-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    line-height: 1.5;
}
.result-header-meta strong {
    font-weight: 600;
    color: #1a1a2e;
}
.result-header-meta-sep {
    color: #c6cad0;
}
.info-list {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}
.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid #f2f2f2;
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    width: 130px;
    flex-shrink: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.info-value {
    flex: 1;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.info-value.pass {
    color: #1a5e04;
    font-weight: 500;
}
.info-value a {
    color: #2d7a0e;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
}
.info-value a:hover {
    text-decoration: underline;
}
.page-sample-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
}
.page-sample-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}
.page-sample-list .page-num {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #4f575e;
    width: 18px;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.4;
}
.page-sample-list .page-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.page-sample-list .page-name {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.4;
}
.page-sample-list .page-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    color: #4f575e;
    word-break: break-all;
    line-height: 1.4;
}
.audit-running-main {
    background: #fafafa;
    padding: 48px 0 96px;
    min-height: calc(100vh - 73px);
}
.audit-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 16px;
    padding: 40px;
}
.audit-headline {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.audit-url-line {
    text-align: center;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 14px;
    color: #4f575e;
    margin-bottom: 24px;
}
.audit-progress-bar {
    height: 6px;
    background: #f2f2f2;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}
.audit-progress-bar-fill {
    height: 100%;
    background: #66ba1e;
    border-radius: 100px;
    width: 0%;
    transition: width 0.4s ease;
}
.audit-progress-text {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    margin-bottom: 24px;
}
.audit-pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.audit-page-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #e8f5e1;
    border-radius: 10px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #1a1a2e;
    transition: background 0.3s ease;
}
.audit-page-item.is-done {
    background: #fafafa;
    border: 1px solid #e4e5e7;
}
.audit-spinner {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    color: transparent;
}
.audit-spinner::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(45, 122, 14, 0.2);
    border-top-color: #2d7a0e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.audit-page-item.is-done .audit-spinner {
    background: #e8f5e1;
    border: none;
    color: #1a5e04;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
}
.audit-page-item.is-done .audit-spinner::before {
    content: "✓";
    width: auto;
    height: auto;
    position: static;
    inset: auto;
    border: none;
    animation: none;
    border-radius: 0;
}
.audit-page-url {
    flex: 1;
    word-break: break-all;
}
.audit-page-status {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #2d7a0e;
    flex-shrink: 0;
}
.audit-page-item.is-done .audit-page-status {
    color: #1a5e04;
}
.audit-foot {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin-top: 24px;
    line-height: 1.55;
}
.page-result-num {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #4f575e;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.page-result-info {
    flex: 1;
    min-width: 0;
}
.page-result-name {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.3;
}
.page-result-sub-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    color: #4f575e;
    margin-top: 3px;
    word-break: break-all;
}
.page-result-badge {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
}
.page-result-badge.pass {
    background: #e8f5e1;
    color: #1a5e04;
}
.page-result-badge.fail {
    background: #fdeaea;
    color: #8b1a0e;
}
.callout-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #e8f5e1;
    border: 1px solid #66ba1e;
    border-radius: 10px;
    margin-top: 24px;
    margin-bottom: 32px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.55;
}
.callout-info svg {
    flex-shrink: 0;
    color: #2d7a0e;
    margin-top: 2px;
}
.callout-info strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #1a1a2e;
}
.callout-info a {
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.callout-info a:hover {
    text-decoration: underline;
}
.btn-primary.btn-sm {
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 8px;
}
.site-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.site-favicon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e4e5e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.site-favicon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.site-favicon svg {
    width: 26px;
    height: 26px;
    color: #4f575e;
}
.site-name {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    line-height: 1.3;
}
.site-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    color: #4f575e;
    margin-top: 2px;
}
.preview-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: #e8f5e1;
    border: 1px solid #66ba1e;
    border-radius: 12px;
    margin-bottom: 28px;
}
.preview-status-banner.is-blocked {
    background: #fef3e2;
    border-color: #6b3d00;
}
.preview-status-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a5e04;
}
.preview-status-banner.is-blocked .preview-status-icon {
    color: #6b3d00;
}
.preview-status-body {
    flex: 1;
    min-width: 0;
}
.preview-status-body strong {
    display: block;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.preview-status-body p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #3d4449;
    line-height: 1.55;
    margin: 0;
}
.preview-status-actions {
    margin-top: 14px;
}
.preview-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.btn-pro-locked {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    height: 32px;
    border-radius: 8px;
    background: #f2f2f2;
    border: 1px solid #e4e5e7;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4f575e;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    transition:
        background 0.15s,
        border-color 0.15s;
}
.btn-pro-locked:hover {
    background: #e4e5e7;
    border-color: #c6cad0;
}
.btn-pro-locked[disabled] {
    cursor: not-allowed;
}
.btn-pro-locked svg {
    color: #4f575e;
}
.btn-pro-locked .pro-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1px 7px;
    border-radius: 100px;
    background: #fff;
    color: #4f575e;
}
.preview-pages-actions {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
}
.action-with-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stmt-action {
    margin-top: 8px;
    align-items: flex-start;
}
.action-tag {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4f575e;
    white-space: nowrap;
}
.action-tag-link {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #2d7a0e;
    text-decoration: none;
    white-space: nowrap;
}
.action-tag-link:hover {
    color: #1a5e04;
}
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    margin-bottom: 24px;
}
.info-box .status-icon {
    margin-top: 1px;
}
.info-box-body {
    flex: 1;
    min-width: 0;
}
.info-box-body strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    display: block;
    margin-bottom: 4px;
}
.info-box-body p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0;
}
.info-box-body a {
    color: #2d7a0e;
    text-decoration: none;
    font-weight: 500;
}
.info-box-body a:hover {
    text-decoration: underline;
}
.info-box-actions {
    margin-top: 12px;
}
.preview-cta {
    margin-top: 40px;
    text-align: center;
}
.btn-primary.is-large,
.btn-outline.is-large {
    height: 54px;
    padding: 0 32px;
    font-size: 16px;
    border-radius: 12px;
}
.preview-summary {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    margin-bottom: 28px;
    overflow: hidden;
}
.preview-summary-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 14px 22px;
    border-bottom: 1px solid #f2f2f2;
    align-items: start;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.preview-summary-row:last-child {
    border-bottom: none;
}
.preview-summary-label {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4f575e;
}
.preview-summary-value {
    color: #1a1a2e;
    font-weight: 500;
    min-width: 0;
    line-height: 1.5;
}
.preview-summary-result {
    display: block;
}
.preview-summary-result .status-icon {
    display: none;
}
.preview-summary-result-body {
    display: block;
}
.preview-summary a,
.preview-summary .cta-link {
    display: inline-block;
    margin-top: 3px;
    color: #2d7a0e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.preview-summary a:hover,
.preview-summary .cta-link:hover {
    text-decoration: underline;
}
.preview-summary-value .meta {
    color: #4f575e;
    font-weight: 400;
}
.preview-summary-value .out-of-date {
    display: inline-block;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #fef3e2;
    color: #6b3d00;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    vertical-align: middle;
}
.site-info-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.status-card-head-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.status-card-h {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.5;
    min-height: 20px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: #e8f5e1;
    color: #1a5e04;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 12px;
}
.check-list li.fail::before {
    content: "✗";
    background: #fdeaea;
    color: #8b1a0e;
}
.check-list-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #4f575e;
    background: transparent;
    padding: 0;
}
.plugin-callout {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 8px;
    padding: 14px 16px;
}
.plugin-callout-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.plugin-callout-body-wrap {
    flex: 1;
    min-width: 0;
}
.plugin-callout-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.plugin-callout-body {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
    margin: 0;
}
.plugin-callout-link {
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}
.plugin-callout-link:hover {
    text-decoration: underline;
}
.preview-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 720px) {
    .preview-status-grid {
        grid-template-columns: 1fr;
    }
}
.status-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
}
.status-card-overline {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f575e;
    margin: 0 0 12px;
}
.status-card-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    line-height: 1.3;
}
.status-card-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0 0 12px;
}
.status-card-link {
    display: inline-block;
    color: #2d7a0e;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}
.status-card-link:hover {
    text-decoration: underline;
}
.status-card .action-with-tag {
    margin-top: auto;
    align-items: flex-start;
}
.audit-block {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 28px;
}
.audit-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.audit-block-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.audit-state-badge {
    display: inline-block;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    background: #f2f2f2;
    color: #4f575e;
}
.audit-state-badge--good {
    background: #e8f5e1;
    color: #1a5e04;
}
.audit-state-badge--warn {
    background: #fef3e2;
    color: #6b3d00;
}
.audit-date-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
}
.audit-info-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    align-items: center;
}
.audit-info-summary-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.audit-info-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}
.audit-date-label {
    color: #4f575e;
}
.audit-date-value {
    font-weight: 500;
}
.audit-method-name {
    font-weight: 500;
    color: #1a1a2e;
}
.audit-info-sep {
    color: #c6cad0;
}
.audit-date-errors {
    color: #4f575e;
    font-weight: 500;
}
.audit-date-errors:empty {
    display: none;
}
.audit-date-warning {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #8b1a0e;
    white-space: nowrap;
}
.audit-date-warning svg {
    width: 13px;
    height: 13px;
    color: currentColor;
}
.audit-date-action {
    align-self: center;
}
.audit-date-row--clickable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s;
}
.audit-date-row--clickable:hover {
    border-color: #c6cad0;
    background: #f2f2f2;
}
.audit-date-row--clickable:focus-visible {
    outline: 2px solid #2d7a0e;
    outline-offset: 2px;
}
.audit-info-pages {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e4e5e7;
}
.audit-info-pages-label {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4f575e;
    margin-bottom: 4px;
}
.audit-pages-tested-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.audit-pages-tested-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(228, 229, 231, 0.7);
    flex-wrap: wrap;
}
.audit-pages-tested-list li:first-child {
    border-top: none;
}
.audit-pages-tested-list .page-name {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #1a1a2e;
    flex-shrink: 0;
}
.audit-pages-tested-list .page-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    color: #4f575e;
    word-break: break-all;
    min-width: 0;
}
.newer-results-banner {
    background: #e8f5e1;
    border: 1px solid #c8e5b5;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.newer-results-banner-text {
    flex: 1;
    min-width: 240px;
}
.newer-results-banner-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.newer-results-banner-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 0;
    line-height: 1.5;
}
.last-audit-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.last-audit-card-info {
    flex: 1;
    min-width: 0;
}
.last-audit-card-overline {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f575e;
    margin: 0 0 4px;
}
.last-audit-card-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}
.last-audit-card-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
    margin: 0;
}
.last-audit-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.reg-note {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    color: #4f575e;
}
.method-summary .preview-summary-row {
    padding: 12px 22px;
    grid-template-columns: 180px 1fr;
}
.method-row-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.method-row-link {
    margin-top: 0 !important;
    color: #2d7a0e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.method-row-link:hover {
    text-decoration: underline;
}
.preview-summary-result a:hover {
    text-decoration: underline;
}
.result-teaser {
    color: #636b74;
    font-size: 13px;
}
@media (max-width: 640px) {
    .preview-summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
.pages-start-audit {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    margin-bottom: 32px;
}
.human-tests {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 32px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.human-tests-image {
    width: 260px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f2f2f2;
    align-self: stretch;
}
.human-tests-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.human-tests-body {
    flex: 1;
    min-width: 0;
}
@media (max-width: 760px) {
    .human-tests {
        flex-direction: column;
        gap: 18px;
    }
    .human-tests-image {
        width: 100%;
        aspect-ratio: 16/9;
        align-self: auto;
    }
}
.human-tests h3 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.human-tests-intro {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0 0 4px;
}
.test-scenarios {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: scenario;
}
.test-scenarios li {
    counter-increment: scenario;
    padding: 14px 0 14px 44px;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
}
.test-scenarios li:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}
.test-scenarios li::before {
    content: counter(scenario);
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f5e1;
    color: #1a5e04;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.test-scenarios li strong {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    color: #1a1a2e;
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.35;
}
.scenario-description {
    font-size: 13px;
}
.human-tests-cta {
    margin-top: 16px;
}
.scenario-cta {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid #c6cad0;
    color: #1a1a2e;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition:
        background 0.15s,
        border-color 0.15s;
}
.scenario-cta:hover {
    background: #f2f2f2;
    border-color: #4f575e;
}
.human-tests-outro {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid #f2f2f2;
}
.human-tests-outro a {
    color: #2d7a0e;
    font-weight: 500;
    text-decoration: none;
}
.human-tests-outro a:hover {
    text-decoration: underline;
}
.testing-section-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin: 28px 0 14px;
    letter-spacing: -0.01em;
}
.testing-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}
@media (max-width: 760px) {
    .testing-why-grid {
        grid-template-columns: 1fr;
    }
}
.testing-why-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 10px;
    padding: 18px 20px;
}
.testing-why-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f5e1;
    color: #1a5e04;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.testing-why-card h4 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.testing-why-card p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0;
}
.testing-cta-banner {
    background: #e8f5e1;
    border: 1px solid #c8e5b5;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.testing-cta-banner-text {
    flex: 1;
    min-width: 240px;
}
.testing-cta-banner-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.testing-cta-banner-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 0;
    line-height: 1.5;
}
.statement-details {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}
.statement-summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.statement-summary::-webkit-details-marker {
    display: none;
}
.statement-summary::marker {
    content: "";
}
.statement-summary-main {
    flex: 1;
    min-width: 0;
}
.statement-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.statement-field {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
}
.statement-field:last-child {
    margin-bottom: 0;
}
.statement-field.align-top {
    align-items: flex-start;
}
.statement-field-label {
    width: 140px;
    flex-shrink: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
}
.statement-field-value {
    flex: 1;
    min-width: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.55;
    word-break: break-word;
}
.statement-field-value a {
    color: #2d7a0e;
    text-decoration: none;
    font-weight: 500;
}
.statement-field-value a:hover {
    text-decoration: underline;
}
.statement-chevron {
    color: #4f575e;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}
.statement-details[open] .statement-chevron {
    transform: rotate(180deg);
}
.statement-body {
    padding: 18px 24px 22px;
    border-top: 1px solid #f2f2f2;
}
.statement-issues {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e4e5e7;
}
.statement-issues-label {
    width: 140px;
    flex-shrink: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
}
.statement-issues-content {
    flex: 1;
    min-width: 0;
}
.statement-issues-content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.statement-issues-content li {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.55;
    margin-bottom: 6px;
}
.statement-issues-content li:last-child {
    margin-bottom: 0;
}
.badge-conformance {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}
.badge-conformance.partial {
    background: #fef3e2;
    color: #6b3d00;
}
.badge-conformance.pass {
    background: #e8f5e1;
    color: #1a5e04;
}
.badge-conformance.fail {
    background: #fdeaea;
    color: #8b1a0e;
}
.tests-section {
    margin-bottom: 24px;
}
.tests-header h3 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.tests-header p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    margin-bottom: 16px;
    line-height: 1.55;
}
.test-card {
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 10px;
}
.test-card:last-child {
    margin-bottom: 0;
}
.test-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}
.test-card-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    flex: 1;
    line-height: 1.3;
    margin: 0;
}
.test-persona {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: #f2f2f2;
    color: #4f575e;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}
.test-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
    margin-bottom: 12px;
}
.test-meta {
    display: flex;
    gap: 20px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    align-items: flex-start;
}
.test-meta-duration {
    flex-shrink: 0;
    font-weight: 500;
    white-space: nowrap;
}
.test-meta-wcag {
    flex: 1;
    line-height: 1.4;
}
.my-sites-main {
    background: #fafafa;
    padding: 36px 0 80px;
    min-height: calc(100vh - 73px);
}
.my-sites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}
.my-sites-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 1000px) {
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .sites-grid {
        grid-template-columns: 1fr;
    }
}
.site-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.site-card:hover {
    border-color: #c6cad0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.site-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.site-card-favicon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.site-card-favicon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.site-card-favicon svg {
    width: 22px;
    height: 22px;
    color: #4f575e;
}
.site-card-title-block {
    flex: 1;
    min-width: 0;
}
.site-card-name {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    word-break: break-word;
    line-height: 1.3;
    margin-bottom: 6px;
}
.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
}
.access-badge--public {
    background: #e5f0fb;
    color: #0b4f8f;
}
.access-badge--auth {
    background: #fef3e2;
    color: #6b3d00;
}
.access-badge--fail {
    background: #fdeaea;
    color: #8b1a0e;
}
.access-badge svg {
    color: currentColor;
}
.check-list-pro-line {
    margin: 12px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
}
.check-list-pro-line a {
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}
.check-list-pro-line a:hover {
    text-decoration: underline;
}
.site-card--upgrade {
    background: #fff;
    border: 1.5px dashed #c6cad0;
    cursor: default;
    text-align: center;
    padding: 18px 20px;
    align-items: center;
}
.site-card--upgrade:hover {
    border-color: #2d7a0e;
    background: #fafafa;
}
.site-upgrade-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #4f575e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.site-upgrade-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.site-upgrade-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
    margin: 0 0 12px;
}
.site-upgrade-cta {
    width: auto;
}
.badge-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}
.badge-status.ready {
    background: #f2f2f2;
    color: #4f575e;
}
.badge-status.completed {
    background: #e8f5e1;
    color: #1a5e04;
}
.badge-status.needs-extension {
    background: #fef3e2;
    color: #6b3d00;
}
.site-card-delete {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: #4f575e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.15s,
        color 0.15s;
    flex-shrink: 0;
    margin: -4px -4px 0 0;
}
.site-card-delete:hover {
    background: #fdeaea;
    color: #8b1a0e;
}
.site-card-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #4f575e;
    word-break: break-all;
    flex: 1;
    margin-bottom: 10px;
    line-height: 1.45;
}
.site-card-divider {
    height: 1px;
    background: #f2f2f2;
    margin-bottom: 8px;
}
.site-card-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.ds-profile-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #66ba1e;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    padding: 0;
    box-shadow: 0 0 0 0 rgba(102, 186, 30, 0);
    transition:
        background 0.15s ease,
        box-shadow 0.15s ease;
}
.ds-profile-circle:hover {
    background: #4a9b14;
    box-shadow: 0 0 0 4px rgba(102, 186, 30, 0.18);
}
.ds-profile-circle:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 5px #66ba1e;
}
.profile-menu {
    position: fixed;
    z-index: 1000;
    width: 320px;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    padding: 20px 22px;
}
.profile-menu[hidden] {
    display: none;
}
.pm-overline {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.pm-user-card {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
}
.pm-user-name {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.pm-user-email {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 0 0 10px;
}
.pm-plan-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    background: #dadce0;
    color: #1a1a2e;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pm-divider {
    border: none;
    border-top: 1px solid #f2f2f2;
    margin: 14px 0;
}
.pm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.pm-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
}
.pm-select {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 6px 30px 6px 12px;
    border: 1.5px solid #c6cad0;
    border-radius: 6px;
    background: #fff url(data:image/svg+xml;utf8,<svg\ xmlns=\'http://www.w3.org/2000/svg\'\ width=\'12\'\ height=\'12\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'%234F575E\'\ stroke-width=\'2.5\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'><polyline\ points=\'6\ 9\ 12\ 15\ 18\ 9\'/></svg>) no-repeat right 10px center;
    color: #1a1a2e;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.pm-select:focus {
    outline: none;
    border-color: #2d7a0e;
}
.pm-dashboard {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 4px;
}
.pm-signout {
    display: block;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    text-decoration: none;
    padding: 10px 0 4px;
    margin-top: 4px;
}
.pm-signout:hover {
    color: #2d7a0e;
}
#screen-my-sites .container,
#screen-site-detail .container {
    max-width: 1200px;
}
.site-card {
    cursor: pointer;
}
#screen-results .web-header-right--private {
    display: none;
}
#screen-checking .web-nav,
#screen-checking .web-header-right,
#screen-preview .web-nav,
#screen-preview .web-header-right,
#screen-audit-running .web-nav,
#screen-audit-running .web-header-right,
#screen-results .web-nav--public,
#screen-results .web-header-right--public {
    display: none;
}
#screen-results .web-nav--private {
    display: none;
}
#screen-results.private-mode .web-header-right--public {
    display: none;
}
#screen-results.private-mode .web-header-right--private {
    display: flex;
    align-items: center;
    gap: 12px;
}
#screen-results.private-mode .web-nav--public {
    display: none;
}
#screen-results.private-mode .web-nav--private {
    display: flex;
}
#screen-results .results-back-row--public {
    display: block;
    padding-top: 6px;
}
#screen-results .results-back-row--private {
    display: none;
}
#screen-results.private-mode .results-back-row--public {
    display: none;
}
#screen-results.private-mode .results-back-row--private {
    display: block;
    padding-top: 6px;
}
#screen-results .results-back-row .back-to-sites {
    margin-bottom: 12px;
}
#screen-login {
    min-height: 100vh;
    flex-direction: column;
    background: #f1f8ec;
}
#screen-login.active {
    display: flex;
}
.login-header {
    background: #fff;
}
.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.login-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 16px;
    padding: 44px 44px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
}
.login-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.login-wordmark {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    letter-spacing: -0.01em;
}
.login-tagline {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0 0 28px;
}
.login-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.login-field-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.login-input {
    height: 48px;
    border: 1.5px solid #c6cad0;
    border-radius: 10px;
    background: #fff;
    padding: 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #1a1a2e;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.login-input::placeholder {
    color: #9da4ac;
}
.login-input:focus {
    outline: none;
    border-color: #2d7a0e;
    box-shadow: 0 0 0 3px rgba(45, 122, 14, 0.12);
}
.login-submit {
    margin-top: 14px;
    height: 48px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s;
}
.login-submit:hover {
    background: #000;
}
.login-hint {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 14px 0 0;
    text-align: center;
}
.login-foot {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 24px 0 0;
}

/* LoginScreen component styles */
.login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: #f1f8ec;
}
.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.login-btn-google {
    background: #fff;
    border: 1.5px solid #c6cad0;
    color: #1a1a2e;
}
.login-btn-google:hover {
    background: #f8f9fa;
    border-color: #9da4ac;
}
.login-btn-email {
    background: #fff;
    border: 1.5px solid #c6cad0;
    color: #1a1a2e;
}
.login-btn-email:hover {
    background: #f8f9fa;
    border-color: #9da4ac;
}
.login-btn-secondary {
    background: #f4f4f4;
    border: 1.5px solid #c6cad0;
    color: #4f575e;
    flex: 1;
}
.login-btn-secondary:hover {
    background: #e8e8e8;
}
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
    color: #9da4ac;
    font-size: 13px;
}
.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e4e5e7;
}
.login-error {
    background: #fdeaea;
    color: #8b1a0e;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
}
.login-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}
.login-form-actions .login-submit {
    flex: 2;
    margin-top: 0;
}
.login-resend {
    margin-top: 16px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    color: #2d7a0e;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}
.login-resend:hover {
    color: #1e5a09;
}
.login-resend:disabled {
    color: #9da4ac;
    cursor: not-allowed;
}
.wordmark-wcag {
    font-weight: 700;
    color: #1a1a2e;
}
.wordmark-pilot {
    font-weight: 400;
    color: #2d7a0e;
}

@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px 28px;
    }
}
#screen-my-plan .container {
    max-width: 1200px;
}
.my-plan-main {
    background: #fafafa;
    padding: 36px 0 80px;
    min-height: calc(100vh - 73px);
}
.my-plan-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1a1a2e;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.plan-section-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a2e;
    margin: 32px 0 14px;
    letter-spacing: -0.01em;
}
.plan-current-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 22px 26px;
}
.plan-current-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f2f2f2;
}
.plan-current-since {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 8px 0 0;
}
.plan-usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .plan-usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .plan-usage-grid {
        grid-template-columns: 1fr;
    }
}
.plan-usage-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.plan-stat-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #4f575e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}
.plan-stat-value {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    margin: 0;
}
.plan-stat-value strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    margin-right: 2px;
}
.plan-stat-value--locked {
    color: #4f575e;
    font-weight: 500;
}
.plan-stat-meta {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #4f575e;
    margin: 0;
}
.plan-stat-bar {
    height: 6px;
    background: #f2f2f2;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 2px;
}
.plan-stat-bar-fill {
    height: 100%;
    background: #66ba1e;
    border-radius: 100px;
}
.plan-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .plan-compare-grid {
        grid-template-columns: 1fr;
    }
}
.plan-tier-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
}
.plan-tier-card--featured {
    border-color: #2d7a0e;
    box-shadow: 0 0 0 1px #2d7a0e;
}
.plan-tier-card--current {
    border-style: dashed;
}
.plan-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}
.plan-tier-name {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.plan-tier-tag {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f2f2f2;
    color: #4f575e;
}
.plan-tier-tag--featured {
    background: #e8f5e1;
    color: #1a5e04;
}
.plan-tier-price {
    margin: 0 0 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
}
.plan-tier-price strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a2e;
    margin-right: 4px;
    letter-spacing: -0.01em;
}
.plan-tier-price span {
    font-size: 13px;
}
.plan-tier-blurb {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0 0 14px;
}
.plan-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.plan-tier-features li {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #1a1a2e;
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}
.plan-tier-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #e8f5e1
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231A5E04' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
        center/10px no-repeat;
    border-radius: 50%;
}
.plan-tier-card .btn-primary,
.plan-tier-card .btn-outline {
    width: 100%;
    display: flex;
    justify-content: center;
}
.plan-tier-card .btn-outline[disabled] {
    cursor: default;
    color: #4f575e;
    background: #fafafa;
    border-color: #e4e5e7;
}
.plan-billing-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    overflow: hidden;
}
.plan-billing-row {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid #f2f2f2;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.plan-billing-row:last-child {
    border-bottom: none;
}
.plan-billing-label {
    color: #4f575e;
}
.plan-billing-value {
    color: #1a1a2e;
    font-weight: 500;
}
.plan-billing-value--muted {
    color: #4f575e;
    font-weight: 400;
}
.site-detail-main {
    background: #fafafa;
    padding: 0 0 80px;
    min-height: calc(100vh - 73px);
}
.site-detail-context {
    background: #fff;
    border-bottom: 1px solid #e4e5e7;
    padding: 20px 0 0;
}
.back-to-sites {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.15s;
}
.back-to-sites:hover {
    color: #1a1a2e;
}
.site-detail-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
}
.site-detail-favicon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.site-detail-favicon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.site-detail-favicon svg {
    width: 26px;
    height: 26px;
    color: #4f575e;
}
.site-detail-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.site-detail-name {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.site-detail-url {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: #4f575e;
    margin-top: 2px;
}
.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid transparent;
    margin-top: 4px;
}
.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #4f575e;
    cursor: pointer;
    position: relative;
    transition: color 0.15s;
}
.tab-btn:hover {
    color: #1a1a2e;
}
.tab-btn.active {
    color: #1a1a2e;
}
.tab-btn.active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -1px;
    height: 3px;
    background: #2d7a0e;
    border-radius: 2px 2px 0 0;
}
.tab-panel {
    display: none;
    padding: 32px 0;
}
.tab-panel.active {
    display: block;
}
.tab-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}
.tab-panel-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 720px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
.dashboard-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
}
.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}
.dashboard-card-header h3 {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.dashboard-card-link {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.dashboard-card-link:hover {
    color: #1a5e04;
}
.dashboard-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dashboard-empty {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
}
.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.compact-list li {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.5;
}
.compact-list .compact-title {
    font-weight: 600;
    color: #1a1a2e;
    display: block;
    margin-bottom: 2px;
}
.compact-list .compact-meta {
    color: #4f575e;
    font-size: 12px;
}
.statement-compact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f2f2f2;
    font-family: "Inter", sans-serif;
    font-size: 13px;
}
.statement-compact-row:last-child {
    border-bottom: none;
}
.statement-compact-row .label {
    color: #4f575e;
}
.statement-compact-row .value {
    color: #1a1a2e;
    font-weight: 600;
}
.audits-table {
    width: 100%;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}
.audits-table thead th {
    background: #fafafa;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f575e;
    text-align: left;
    padding: 12px 22px;
    border-bottom: 1px solid #e4e5e7;
}
.audits-table tbody td {
    padding: 16px 22px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 14px;
    color: #1a1a2e;
    vertical-align: middle;
}
.audits-table tbody tr:last-child td {
    border-bottom: none;
}
.audits-table tbody tr {
    cursor: pointer;
    transition: background 0.12s;
}
.audits-table tbody tr:hover {
    background: #fafafa;
}
.audits-table tbody tr:focus-visible {
    background: #fafafa;
    outline: 2px solid #2d7a0e;
    outline-offset: -2px;
}
.audits-table .col-date {
    color: #4f575e;
    white-space: nowrap;
}
.audits-table .col-method {
    font-weight: 500;
}
.audits-table .col-pages {
    white-space: nowrap;
}
.audits-table .col-errors {
    white-space: nowrap;
    font-weight: 500;
}
.audits-table .col-result {
    white-space: nowrap;
}
.audits-table .col-action {
    text-align: right;
    white-space: nowrap;
}
.compliance-status {
    display: inline-block;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.compliance-status.pass {
    background: #e8f5e1;
    color: #1a5e04;
}
.compliance-status.fail {
    background: #fdeaea;
    color: #8b1a0e;
}
.ut-status-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fef3e2;
    border: 1px solid #f3ddb1;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
}
.ut-status-bar-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #6b3d00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.ut-status-bar-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.5;
}
.ut-status-bar-text strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 1px;
}
.ut-status-bar-meta {
    color: #4f575e;
    font-size: 13px;
}
.dashboard-empty-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 8px;
    background: #fef3e2;
    border-radius: 100px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.dashboard-empty-flag .flag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c77700;
    flex-shrink: 0;
}
.dashboard-empty-flag .flag-text {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #6b3d00;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dashboard-empty-headline {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.dashboard-empty-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0;
}
.dashboard-empty-link {
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 4px;
}
.dashboard-empty-link:hover {
    text-decoration: underline;
}
.ut-section {
    margin-bottom: 24px;
}
.ut-section-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.ut-section-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 22px 26px;
}
.empty-table-state {
    background: #fff;
    border: 1px dashed #c6cad0;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}
.empty-table-state-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fafafa;
    color: #4f575e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.empty-table-state-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.empty-table-state-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 460px;
}
.ut-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}
@media (max-width: 760px) {
    .ut-why-grid {
        grid-template-columns: 1fr;
    }
}
.ut-why-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ut-why-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f5e1;
    color: #1a5e04;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.ut-why-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.01em;
}
.ut-why-body {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
    margin: 0;
}
.ut-scenarios {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: ut-scenario;
}
.ut-scenarios li {
    counter-increment: ut-scenario;
    padding: 14px 0 14px 44px;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}
.ut-scenarios li:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}
.ut-scenarios li::before {
    content: counter(ut-scenario);
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f5e1;
    color: #1a5e04;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ut-scenarios .ut-s-title {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    color: #1a1a2e;
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.35;
}
.ut-scenarios .ut-s-desc {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    line-height: 1.55;
}
.upgrade-banner {
    background: #e8f5e1;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.upgrade-banner-text {
    flex: 1;
    min-width: 240px;
}
.upgrade-banner-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    margin: 0 0 2px;
}
.upgrade-banner-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin: 0;
    line-height: 1.5;
}
.user-tests-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    overflow: hidden;
}
.user-tests-list li {
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 16px 22px;
    border-bottom: 1px solid #f2f2f2;
}
.user-tests-list li:last-child {
    border-bottom: none;
}
.ut-date {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
}
.audit-list-link,
.ut-link {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.audit-list-link:hover,
.ut-link:hover {
    color: #1a5e04;
}
.user-tests-list li {
    grid-template-columns: 140px 1fr auto auto;
}
.ut-scenario {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.35;
}
.ut-meta {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin-top: 2px;
}
.ut-status {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.ut-status.completed {
    background: #e8f5e1;
    color: #1a5e04;
}
.ut-status.in-progress {
    background: #fef3e2;
    color: #6b3d00;
}
.ut-status.scheduled {
    background: #f2f2f2;
    color: #4f575e;
}
.statement-panel-card {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 24px 26px;
}
.statement-panel-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 18px;
}
.statement-panel-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef3e2;
    color: #6b3d00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.statement-panel-status-icon.ok {
    background: #e8f5e1;
    color: #1a5e04;
}
.statement-panel-status-icon.fail {
    background: #fdeaea;
    color: #8b1a0e;
}
.statement-panel-status-text {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
}
.statement-panel-status-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #4f575e;
    margin-top: 2px;
}
.statement-panel-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.statement-panel-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}
.statement-panel-row:last-child {
    border-bottom: none;
}
.statement-panel-row .label {
    color: #4f575e;
}
.statement-panel-row .value {
    color: #1a1a2e;
    font-weight: 500;
}
.statement-panel-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.blocked-card {
    text-align: center;
}
.blocked-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fef3e2;
    color: #6b3d00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blocked-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #4f575e;
    line-height: 1.55;
    max-width: 480px;
    margin: 0 auto 28px;
}
.blocked-solution {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fafafa;
    border: 1px solid #e4e5e7;
    border-radius: 12px;
    padding: 18px 22px;
    text-align: left;
    margin-bottom: 28px;
}
.blocked-solution-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f5e1;
    color: #1a5e04;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blocked-solution-text {
    flex: 1;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4f575e;
    line-height: 1.55;
}
.blocked-solution-text strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    margin-bottom: 2px;
}
.blocked-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.statement-promise {
    background: #e8f5e1;
    border: 1px solid #66ba1e;
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.statement-promise-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2d7a0e;
}
.statement-promise-body {
    flex: 1;
}
.statement-promise h3 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.statement-promise p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.55;
}
.statement-promise p a {
    color: #2d7a0e;
    font-weight: 600;
    text-decoration: none;
}
.statement-promise p a:hover {
    text-decoration: underline;
}
@media (max-width: 640px) {
    .check-card-large {
        padding: 28px 20px;
        border-radius: 12px;
    }
    .result-context-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .result-actions {
        width: 100%;
    }
    .result-summary {
        padding: 24px 20px;
    }
    .result-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .result-card {
        padding: 18px 20px;
    }
    .result-cta-card {
        padding: 32px 20px;
    }
    .page-result-header {
        padding: 16px 18px;
        gap: 10px;
    }
    .page-result-summary-meta {
        display: none;
    }
    .page-result-body {
        padding: 4px 18px 14px;
    }
    .criterion-body {
        padding: 14px 14px 14px 38px;
    }
    .statement-promise {
        flex-direction: column;
        padding: 20px;
    }
}
@media (max-width: 960px) {
    .check-grid,
    .steps,
    .pricing-grid,
    .viral-examples {
        grid-template-columns: 1fr 1fr;
    }
    .persona-grid {
        grid-template-columns: 1fr;
    }
    .method-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .hero-title {
        font-size: 44px;
    }
}
@media (max-width: 640px) {
    .web-header {
        padding: 14px 20px;
    }
    .web-nav {
        display: none;
    }
    .container,
    .container-narrow {
        padding: 0 20px;
    }
    section {
        padding: 56px 0;
    }
    .check-grid,
    .steps,
    .pricing-grid,
    .viral-examples {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 48px 0 64px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-form {
        flex-direction: column;
        padding: 8px;
    }
    .hero-form button {
        width: 100%;
    }
    .section-title {
        font-size: 26px;
    }
    .final-cta h2 {
        font-size: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .header-link {
        display: none;
    }
}