:root {
    --ink: #0d1714;
    --muted: #66736e;
    --paper: #f4f7f2;
    --line: #dfe7e1;
    --green: #19c37d;
    --dark: #07120f;
    --lime: #bdfc73;
    --white: #fff;
    --shadow: 0 18px 60px rgba(11, 34, 27, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select {
    font: inherit;
}

.wrap {
    width: min(1180px, 100% - 40px);
    margin: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    z-index: 99;
    background: #fff;
    padding: 10px;
}

.topbar {
    padding: 8px;
    text-align: center;
    background: var(--lime);
    font-size: 12px;
    font-weight: 800;
}

.nav {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font: 800 21px Manrope;
}

.logo span {
    color: var(--green);
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.nav-name {
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    padding: 13px 19px;
    font-weight: 800;
    cursor: pointer;
}

.button.dark {
    background: var(--dark);
    color: #fff;
}

.button.green {
    background: var(--green);
    color: #032218;
}

.button.ghost {
    background: #fff;
    border: 1px solid var(--line);
}

.button.small {
    padding: 10px 14px;
}

.button.full {
    width: 100%;
}

.hero {
    min-height: 580px;
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #218057;
    font-size: 11px;
    font-weight: 800;
}

.eyebrow.light {
    color: var(--lime);
}

h1, h2 {
    font-family: Manrope;
    letter-spacing: -2.5px;
    line-height: 1.05;
}

h1 {
    font-size: clamp(42px, 5vw, 68px);
    margin: 18px 0;
}

h2 {
    font-size: clamp(30px, 4vw, 44px);
}

h3 {
    font-family: Manrope;
}

h1 em {
    color: #169d68;
    font-style: normal;
}

.hero>div>p, .pricing-page>div>p, .page-intro {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.actions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 38px;
    color: var(--muted);
    font-size: 12px;
}

.stats b {
    display: block;
    color: var(--ink);
    font: 800 20px Manrope;
}

.score-card {
    min-height: 370px;
    padding: 34px;
    background: var(--dark);
    border-radius: 27px;
    color: #fff;
    box-shadow: 0 25px 70px rgba(7, 18, 15, .23);
    position: relative;
    overflow: hidden;
}

.score-card:after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid #275041;
    border-radius: 50%;
    right: -100px;
    bottom: -170px;
    box-shadow: 0 0 0 60px rgba(30, 95, 70, .1);
}

.score-card h2 {
    margin: 65px 0 22px;
}

.score-card p {
    color: #91aaa0;
    position: relative;
}

.big-score {
    width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    border: 8px solid var(--green);
    border-radius: 50%;
    font: 800 30px Manrope;
}

.activity-strip {
    background: #e2f7eb;
    border-block: 1px solid #c8ead8;
    color: #24664c;
}

.activity-strip .wrap {
    padding: 14px 0;
    text-align: center;
}

.activity-strip span {
    margin: 0 8px;
}

.section {
    padding: 75px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.section-title h2 {
    margin: 10px 0 5px;
}

.section-title p {
    color: var(--muted);
    margin: 0;
}

.page-title {
    font-size: clamp(42px, 5vw, 60px);
    margin-bottom: 10px;
}

.page-intro {
    max-width: 780px;
}

.notice {
    display: inline-block;
    background: #e1f6ea;
    border: 1px solid #c8ead8;
    border-radius: 10px;
    padding: 10px 14px;
    color: #245f48;
}

.filters {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.filters input, .filters select, .form-card input {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fbfcfb;
    padding: 0 13px;
    outline: none;
}

.filters input:focus, .filters select:focus, .form-card input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px #ddf7eb;
}

.sorts, .pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.sorts a, .pagination a {
    background: #fff;
    border: 1px solid var(--line);
    padding: 8px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.pagination {
    justify-content: center;
}

.pagination .active {
    background: var(--dark);
    color: #fff;
}

.table-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table-scroll {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

th {
    text-align: left;
    background: #fafcfb;
    color: #7d8c86;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 10px;
    padding: 13px 18px;
}

td {
    border-top: 1px solid #edf1ee;
    padding: 16px 18px;
    font-size: 14px;
}

.domain-link {
    display: block;
    font: 800 15px Manrope;
}

.domain-link:hover {
    color: #159763;
}

td small {
    display: block;
    color: var(--muted);
}

.score-pill {
    display: inline-grid;
    place-items: center;
    min-width: 43px;
    height: 32px;
    padding: 0 8px;
    border-radius: 99px;
    background: #dff8ec;
    color: #087c50;
    font-weight: 800;
}

.tier {
    background: #e9f3ed;
    color: #2d6650;
    padding: 5px 8px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
}

.locked-box {
    text-align: center;
    padding: 35px;
    background: linear-gradient(120deg, #edf9f3, #fff);
    border-radius: 0 0 17px 17px;
}

.locked-box b {
    font: 800 20px Manrope;
}

.locked-box p {
    color: var(--muted);
}

.dark-section {
    background: var(--dark);
    color: #fff;
}

.dark-section h2 {
    margin: 12px 0 35px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat (4, 1fr);
    gap: 13px;
}

.feature-grid article {
    border: 1px solid #254239;
    background: #0d201a;
    padding: 23px;
    border-radius: 14px;
}

.feature-grid p {
    color: #95aaa2;
    font-size: 13px;
    line-height: 1.5;
}

.answer-section>p {
    max-width: 900px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.faq-grid article {
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px;
    border-radius: 14px;
}

.faq-grid p {
    color: var(--muted);
    line-height: 1.6;
}

.pricing-page {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 70px;
    align-items: center;
    min-height: 650px;
}

.pricing-page ul {
    padding: 0;
    list-style: none;
}

.pricing-page li {
    margin: 13px 0;
}

.pricing-page li:before {
    content: "✓";
    margin-right: 10px;
    color: #129862;
    font-weight: 900;
}

.price-card, .form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.offer {
    display: inline-block;
    background: #ffe4d3;
    color: #924514;
    border-radius: 99px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
}

.price-card>p, .price-card small {
    color: var(--muted);
}

.price-card small {
    display: block;
    text-align: center;
    margin-top: 12px;
}

.auth {
    min-height: 620px;
    display: grid;
    place-items: center;
}

.form-card {
    width: min(440px, 100%);
}

.form-card h1 {
    font-size: 42px;
}

.form-card label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    margin: 15px 0;
}

.form-card p {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.form-card p a {
    color: #12875b;
    font-weight: 800;
}

.alert, .error {
    background: #ffe7e3;
    color: #922d1e;
    border-radius: 9px;
    padding: 11px;
    font-size: 13px;
}

.status {
    text-transform: capitalize;
    color: #148359;
}

.legal {
    max-width: 780px;
    min-height: 600px;
}

.legal>p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
}

.legal h2 {
    margin-top: 45px;
}

.cookie {
    position: fixed;
    z-index: 9;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 800px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 50px rgba(0, 0, 0, .18);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.cookie[hidden] {
    display: none;
}

.cookie p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.cookie>div:last-child {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 45px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.footer-grid p, .footer-grid a {
    color: var(--muted);
}

.copyright {
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding-top: 18px;
    color: var(--muted);
    font-size: 11px;
}

@media (max-width: 850px) {
    nav>a:not(.button), .nav-name {
        display: none;
    }

    .hero, .pricing-page {
        grid-template-columns: 1fr;
    }

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

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

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

}

@media (max-width: 550px) {
    .wrap {
        width: calc(100% - 24px);
    }

    .hero {
        padding-top: 40px;
        gap: 35px;
    }

    .score-card {
        min-height: 310px;
    }

    .stats {
        justify-content: space-between;
        gap: 8px;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

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

    .pricing-page {
        gap: 20px;
    }

    .cookie {
        align-items: flex-start;
        flex-direction: column;
    }

    .activity-strip .wrap {
        text-align: left;
    }

    .actions {
        flex-direction: column;
    }

    .actions .button {
        width: 100%;
    }

}

.detail-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.publish-notice {
    max-width: 760px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.publish-notice h2 {
    margin: 12px 0;
}

.publish-notice p,
.publish-notice small {
    color: var(--muted);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 22px 0 10px;
}

.newsletter-form input {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
}

.hp-field,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.alert.success {
    background: #dff8ec;
    color: #087c50;
    border: 1px solid #bcebd5;
}

@media (max-width: 550px) {
    .newsletter-form {
        grid-template-columns: 1fr;
    }
}

.detail-head h1 {
    margin-bottom: 8px;
}

.detail-head p {
    color: var(--muted);
}

.light-score {
    color: var(--ink);
    background: #fff;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat (3, 1fr);
    gap: 12px;
}

.metric-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 18px;
}

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

.metric-grid b {
    font: 800 25px Manrope;
}

.metric-grid .metric-text {
    font-size: 16px;
}

.analysis-copy {
    max-width: 850px;
    margin: 45px 0;
}

.analysis-copy p, .disclaimer {
    color: var(--muted);
    line-height: 1.7;
}

.disclaimer {
    font-size: 12px;
}

@media (max-width: 850px) {
    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 550px) {
    .detail-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

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

}
