/* Index */
.index-icon-container {
    background: var(--primary-50);
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    color: var(--primary);
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    border-radius: var(--border-radius);
    font-weight: 800;
}

[data-theme-style="dark"] .index-icon-container {
    background: var(--gray-100);
}

.index-background {
    background: transparent;
}

.index-background::before {
    content: none;
}

.index-background::after {
    content: none;
}


[data-theme-style="dark"] .index-background {
    background: transparent;
}


.index-header {
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 .25rem 1rem rgba(0, 35, 90, .32);
}

.index-subheader {
    font-size: 1rem;
    color: rgba(255, 255, 255, .84);
    text-shadow: 0 .2rem .75rem rgba(0, 35, 90, .24);
}

.index-button {
    padding: 0.8rem 3.5rem;
    font-size: 1.1rem;
}

.landing-audit-section {
    position: relative;
    padding: 7rem 0 7rem;
    overflow: hidden;
}

.controller-index main {
    background:
        linear-gradient(125deg, rgba(10, 22, 36, .96) 0%, rgba(11, 52, 63, .94) 34%, rgba(16, 73, 55, .92) 58%, rgba(13, 37, 63, .96) 78%, rgba(7, 14, 28, .98) 100%),
        linear-gradient(180deg, #091827 0%, #0c2433 48%, #07101f 100%);
    background-position: center;
    background-size: 180% 180%, cover;
    animation: landing-gradient-drift 26s ease-in-out infinite alternate;
    position: relative;
}

.controller-index main::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,.05) 0%, transparent 24%, rgba(0,0,0,.08) 72%, rgba(0,0,0,.2) 100%),
        linear-gradient(90deg, rgba(122,255,190,.08) 0%, transparent 28%, rgba(103,188,255,.06) 63%, transparent 100%);
    z-index: 0;
}

.controller-index main::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 13, 26, .08), transparent 35%, rgba(4, 13, 26, .22)),
        linear-gradient(90deg, rgba(255,255,255,.025), transparent 18%, transparent 82%, rgba(255,255,255,.018));
    opacity: .9;
    z-index: 0;
}

.controller-index .site-header-shell {
    background: linear-gradient(125deg, rgba(10, 28, 48, .98), rgba(10, 70, 83, .95), rgba(7, 35, 66, .98));
}

.controller-index .app-footer {
    margin: 0;
    background:
        linear-gradient(125deg, rgba(9, 24, 40, .98) 0%, rgba(9, 57, 67, .96) 48%, rgba(7, 28, 54, .98) 100%);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    padding: 2.75rem max(1rem, calc((100vw - 1140px) / 2)) 1.25rem;
    color: rgba(255, 255, 255, .82);
}

.controller-index .app-footer a:not(.dropdown-item),
.controller-index .app-footer a:hover:not(.dropdown-item) {
    color: rgba(255, 255, 255, .88);
}

.controller-index .app-footer a.icon {
    color: rgba(255, 255, 255, .88);
}

.controller-index .app-footer button,
.controller-index .app-footer button:hover {
    color: rgba(255, 255, 255, .8) !important;
}

.controller-index .app-footer .footer-logo {
    filter: brightness(0) invert(1);
}

.controller-index .footer-top {
    padding-bottom: 0;
}

.controller-index .footer-brand-block {
    max-width: 28rem;
}

.controller-index .footer-description {
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    line-height: 1.65;
}

.controller-index .footer-actions .btn {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 .4rem 1.2rem rgba(0, 35, 90, .12);
}

.controller-index .footer-heading {
    color: var(--white) !important;
}

.controller-index .footer-bottom {
    color: rgba(255, 255, 255, .62);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.controller-index main > * {
    position: relative;
    z-index: 2;
}

.landing-audit-section > .container {
    position: relative;
    z-index: 3;
}

.landing-background-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.landing-growth-chart {
    position: absolute;
    inset: 10rem 0 auto;
    width: 100%;
    height: calc(100% - 2rem);
    opacity: .62;
    mix-blend-mode: screen;
    z-index: 0;
}

.landing-growth-line-start,
.landing-growth-line-base,
.landing-growth-line-main {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-growth-line-start {
    stroke: rgba(148, 255, 218, .13);
    stroke-width: 2;
}

.landing-growth-line-base {
    stroke: rgba(148, 255, 218, .07);
    stroke-width: 2;
}

.landing-growth-line-main {
    stroke: url(#landing_growth_gradient);
    stroke-width: 2.35;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    filter: url(#landing_growth_glow);
    animation: landing-growth-draw 14s cubic-bezier(.16, 1, .3, 1) infinite;
}

.landing-growth-dot {
    fill: rgba(190, 255, 232, .92);
    filter: url(#landing_growth_glow);
    opacity: 0;
    animation: landing-growth-dot 14s ease-in-out infinite;
}

.landing-stat-card {
    position: absolute;
    min-width: 12rem;
    padding: .95rem 1rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .85rem;
    color: rgba(255, 255, 255, .74);
    background: rgba(4, 21, 50, .12);
    box-shadow: 0 1rem 3rem rgba(0, 18, 50, .12);
    backdrop-filter: blur(10px);
    opacity: .2;
    z-index: 2;
}

.landing-stat-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: .8rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.landing-stat-card strong {
    color: rgba(136, 255, 196, .78);
}

.landing-stat-card-visibility {
    left: 7%;
    top: 18%;
    animation: landing-stat-float-a 18s ease-in-out infinite alternate;
}

.landing-stat-card-keywords {
    right: 9%;
    top: 30%;
    animation: landing-stat-float-b 22s ease-in-out infinite alternate;
}

.landing-stat-card-score {
    left: 15%;
    bottom: 16%;
    display: flex;
    align-items: center;
    gap: .9rem;
    animation: landing-stat-float-c 20s ease-in-out infinite alternate;
}

.landing-stat-line-chart {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: .35rem;
    height: 4.75rem;
}

.landing-stat-line-chart span {
    display: block;
    height: var(--height);
    border-radius: 999px 999px .25rem .25rem;
    background: linear-gradient(180deg, rgba(118, 255, 191, .72), rgba(83, 174, 255, .32));
}

.landing-stat-bars {
    display: grid;
    gap: .55rem;
}

.landing-stat-bars span {
    display: block;
    width: var(--width);
    height: .45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(123, 232, 255, .28), rgba(120, 255, 183, .68));
}

.landing-stat-score {
    width: 3.75rem;
    height: 3.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: .35rem solid rgba(120, 255, 183, .52);
    color: rgba(255,255,255,.82);
    font-size: 1.15rem;
    font-weight: 800;
}

@keyframes landing-gradient-drift {
    0% {
        background-position: 0% 44%, center;
    }

    100% {
        background-position: 100% 56%, center;
    }
}

@keyframes landing-stat-float-a {
    from { transform: translate3d(0, -1rem, 0); }
    to { transform: translate3d(1.25rem, 1.35rem, 0); }
}

@keyframes landing-stat-float-b {
    from { transform: translate3d(.75rem, 1rem, 0); }
    to { transform: translate3d(-1rem, -1.2rem, 0); }
}

@keyframes landing-stat-float-c {
    from { transform: translate3d(-.5rem, .85rem, 0); }
    to { transform: translate3d(1rem, -1rem, 0); }
}

@keyframes landing-growth-draw {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    12% {
        opacity: .16;
    }

    74% {
        stroke-dashoffset: 0;
        opacity: .46;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes landing-growth-dot {
    0%,
    8% {
        opacity: 0;
    }

    16%,
    76% {
        opacity: .95;
    }

    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .controller-index main,
    .landing-growth-line-main,
    .landing-growth-dot,
    .landing-stat-card,
    .landing-audit-submit,
    .landing-audit-submit::before {
        animation: none;
    }
}

.landing-audit-form {
    max-width: 720px;
    margin: 0 auto;
}

.landing-tool-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: max-content;
    max-width: 100%;
    margin: 0 auto .75rem;
    padding: .28rem;
    border-radius: 999px;
    background: rgba(8, 21, 35, .5);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 .9rem 2rem rgba(0, 18, 45, .18);
    backdrop-filter: blur(12px);
}

.landing-tool-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: .45rem .9rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, .66);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.landing-tool-tab:hover,
.landing-tool-tab:focus {
    color: var(--white);
    outline: 0;
}

.landing-tool-tab.active {
    color: var(--white);
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .18), transparent 30%),
        linear-gradient(120deg, rgba(20, 184, 166, .9), rgba(34, 211, 238, .82));
    box-shadow:
        0 .55rem 1.5rem rgba(20, 184, 166, .2),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

.landing-audit-form-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .5rem;
    padding: .35rem .35rem .35rem 1rem;
    background: rgba(8, 21, 35, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 1.25rem 3.5rem rgba(0, 18, 45, .32);
    backdrop-filter: blur(14px);
}

.landing-audit-input {
    min-height: 3.25rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: var(--white);
    caret-color: rgba(136, 255, 196, .95);
}

.landing-audit-input::placeholder {
    color: rgba(255, 255, 255, .48);
}

.landing-audit-input:focus {
    box-shadow: none;
    background: transparent;
    color: var(--white);
}

.landing-audit-input:-webkit-autofill,
.landing-audit-input:-webkit-autofill:hover,
.landing-audit-input:-webkit-autofill:focus,
.landing-audit-input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    caret-color: rgba(136, 255, 196, .95);
    box-shadow: 0 0 0 1000px rgba(8, 21, 35, .72) inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

.landing-audit-settings,
.landing-audit-submit {
    min-height: 3.25rem;
    white-space: nowrap;
}

.landing-audit-settings {
    display: none;
}

.landing-audit-submit {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 999px;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .2), transparent 26%),
        linear-gradient(120deg, #0e7490 0%, #14b8a6 36%, #22d3ee 64%, #0f766e 100%);
    background-size: 180% 180%;
    border: 1px solid rgba(153, 246, 228, .42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .28),
        0 .75rem 1.75rem rgba(13, 148, 136, .28),
        0 0 0 1px rgba(45, 212, 191, .14);
    text-transform: uppercase;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .01em;
    animation: landing-button-gradient 7s ease-in-out infinite alternate;
}

.landing-audit-submit::before {
    content: "";
    position: absolute;
    inset: -40% -70%;
    z-index: -1;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, .34) 48%, transparent 62%);
    transform: translateX(-45%);
    animation: landing-button-sheen 4.8s ease-in-out infinite;
}

.landing-audit-submit:hover,
.landing-audit-submit:focus {
    color: var(--white);
    background-position: 100% 50%;
    border-color: rgba(190, 255, 232, .68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .34),
        0 .9rem 2.1rem rgba(20, 184, 166, .36),
        0 0 0 1px rgba(134, 239, 172, .26);
    transform: translateY(-1px);
}

.landing-audit-submit:disabled {
    color: rgba(255, 255, 255, .82);
    transform: none;
}

@keyframes landing-button-gradient {
    from {
        background-position: 0% 52%;
    }

    to {
        background-position: 100% 48%;
    }
}

@keyframes landing-button-sheen {
    0%,
    58% {
        transform: translateX(-48%);
        opacity: 0;
    }

    72% {
        opacity: .75;
    }

    100% {
        transform: translateX(48%);
        opacity: 0;
    }
}

.landing-audit-progress {
    width: min(100%, 700px);
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 3.25rem;
    align-items: center;
    gap: .85rem;
    opacity: 0;
    transform: translateY(-.35rem) scaleX(.96);
    transform-origin: center;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.landing-audit-progress.is-active {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

.landing-audit-progress-track {
    position: relative;
    height: .55rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .22),
        0 .75rem 2rem rgba(0, 28, 75, .22);
}

.landing-audit-progress-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
    transform: translateX(-100%);
    animation: landing-progress-scan 1.1s linear infinite;
}

.landing-audit-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, #7de000 0%, #55a800 56%, #d5ff58 100%);
    box-shadow: 0 0 1.25rem rgba(125, 224, 0, .58);
}

.landing-audit-progress-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213,255,88,.62), transparent 62%);
    transform: translate(-50%, -50%);
    animation: landing-progress-pulse 1.4s ease-in-out infinite;
    mix-blend-mode: screen;
}

.landing-audit-progress-value {
    color: rgba(255,255,255,.9);
    font-weight: 800;
    font-size: .85rem;
    text-align: right;
    text-shadow: 0 .2rem .75rem rgba(0, 35, 90, .32);
}

@keyframes landing-progress-scan {
    to {
        transform: translateX(100%);
    }
}

@keyframes landing-progress-pulse {
    0%, 100% {
        opacity: .45;
        transform: translate(-50%, -50%) scale(.86);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.landing-audit-preview {
    margin-top: -4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
    color: hsl(204, 12%, 95%);
}

.landing-audit-preview-reveal {
    animation: landing-result-reveal .82s cubic-bezier(.16, 1, .3, 1) both;
    transform-origin: top center;
    overflow: hidden;
}

.landing-audit-preview-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 12, 22, .96), rgba(7, 12, 22, .58) 42%, rgba(7, 12, 22, 0));
    transform: translateY(-100%);
    animation: landing-result-mask 1s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes landing-result-reveal {
    0% {
        opacity: 0;
        clip-path: inset(0 0 100% 0 round .75rem);
        transform: translateY(-1.25rem) scale(.985);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0 round .75rem);
        transform: translateY(0) scale(1);
    }
}

@keyframes landing-result-mask {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(105%);
    }
}

.landing-audit-preview-close {
    position: absolute;
    top: 1.25rem;
    right: 2.25rem;
    z-index: 4;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: rgba(24, 32, 43, .96);
    color: hsl(210, 20%, 90%);
    border: 1px solid rgba(130, 148, 170, .22);
    box-shadow: 0 .8rem 1.8rem rgba(0, 0, 0, .24);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.landing-audit-preview-close:hover,
.landing-audit-preview-close:focus {
    background: rgba(36, 47, 61, .98);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-1px);
}

.landing-audit-preview .card {
    background: rgba(2, 6, 13, .94);
    border: 1px solid rgba(130, 148, 170, .18);
    border-radius: calc(2 * var(--border-radius));
    color: hsl(204, 12%, 95%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .035),
        0 1.4rem 3.5rem rgba(0, 0, 0, .24);
}

.landing-audit-preview .card-header,
.landing-audit-preview .card-footer,
.landing-audit-preview .bg-white {
    background: rgba(2, 6, 13, .94) !important;
    border-color: rgba(130, 148, 170, .14);
}

.landing-audit-preview .card-body {
    background: transparent;
}

.landing-audit-preview .text-muted {
    color: hsl(214, 12%, 62%) !important;
}

.landing-audit-preview h2,
.landing-audit-preview .landing-issue-text,
.landing-audit-preview .font-weight-bold,
.landing-audit-preview strong {
    color: hsl(204, 12%, 95%);
}

.landing-audit-preview .badge-danger-light {
    background-color: #73000b;
    color: hsla(354, 60%, 85%, 1);
}

.landing-audit-preview .badge-warning-light {
    background-color: hsla(45, 30%, 22%, 1);
    color: hsla(45, 80%, 85%, 1);
}

.landing-audit-preview .badge-light-light {
    background-color: hsla(210, 12%, 22%, 1);
    color: hsl(210, 20%, 90%);
}

.landing-result-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding-right: 4rem;
}

.landing-score-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.8125rem;
    min-width: 7.8125rem;
    height: 7.8125rem;
}

.landing-result-copy {
    min-width: 0;
}

.landing-result-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.landing-result-metrics > div {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}

.landing-result-metrics span {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: rgba(31, 41, 55, .92);
    color: hsl(210, 20%, 90%);
}

.landing-performance-card {
    overflow: hidden;
}

.landing-performance-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.75rem;
    align-items: center;
    padding-right: 4rem;
}

.landing-performance-copy {
    min-width: 0;
}

.landing-performance-copy h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.landing-performance-scores {
    display: grid;
    grid-template-columns: repeat(2, minmax(7rem, 1fr));
    gap: 1rem;
    min-width: 16rem;
}

.landing-performance-score-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 9.25rem;
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, .06);
    background:
        radial-gradient(circle at 50% 15%, rgba(36, 210, 218, .12), transparent 58%),
        rgba(15, 23, 42, .28);
}

.landing-performance-score-ring {
    width: 6.25rem;
    min-width: 6.25rem;
    height: 6.25rem;
    font-size: .95rem;
}

.landing-performance-score-label {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: rgba(226, 232, 240, .82);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
}

.landing-performance-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-performance-kpis strong,
.landing-performance-metric strong {
    min-width: 0;
}

.landing-performance-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-performance-metric {
    min-height: 3.35rem;
    padding: .35rem .15rem;
}

.landing-performance-metric strong {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .75rem;
    width: 100%;
    white-space: nowrap;
}

.landing-performance-metric .landing-performance-metric-label {
    display: inline;
    width: auto;
    min-width: 0;
    height: auto;
    color: rgba(226, 232, 240, .72);
    background: transparent;
    font-size: .82rem;
    letter-spacing: 0;
}

.landing-performance-metric .landing-performance-metric-value {
    display: inline;
    width: auto;
    min-width: 0;
    height: auto;
    color: hsl(210, 20%, 96%);
    background: transparent;
}

.landing-issue-row {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(9rem, auto) minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: .55rem 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.landing-issue-row:hover,
.landing-issue-row:focus {
    background: rgba(31, 41, 55, .62);
    outline: 0;
}

.landing-issue-badge {
    justify-self: start;
    max-width: 100%;
}

.landing-issue-text {
    font-size: .95rem;
}

.landing-issue-lock {
    color: hsl(210, 20%, 90%);
}

.landing-domain-rating-score-ring {
    width: 7.5rem;
    min-width: 7.5rem;
    height: 7.5rem;
    background: conic-gradient(var(--domain-rating-score-color) var(--domain-rating-score), rgba(148, 163, 184, .18) 0);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        0 .8rem 2rem rgba(0, 0, 0, .28);
}

.landing-domain-rating-score-ring .domain-rating-score-ring-inner {
    color: var(--domain-rating-score-color);
    background: rgba(2, 6, 13, .96);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        0 0 1.5rem rgba(34, 211, 238, .08);
}

.landing-domain-rating-backlinks .card-body {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.landing-domain-rating-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1.05fr) minmax(0, .95fr) auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: .85rem 0;
    border: 0;
    border-bottom: 1px solid rgba(130, 148, 170, .14);
    color: hsl(204, 12%, 95%);
    background: transparent;
    text-align: left;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.landing-domain-rating-row:last-child {
    border-bottom: 0;
}

.landing-domain-rating-row:hover,
.landing-domain-rating-row:focus {
    color: var(--white);
    outline: 0;
    opacity: .92;
    transform: translateX(.15rem);
}

.landing-domain-rating-source,
.landing-domain-rating-target {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.landing-domain-rating-source small,
.landing-domain-rating-target small {
    color: hsl(214, 12%, 62%);
}

.landing-domain-rating-source-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    color: hsl(134, 50%, 78%);
    background: hsla(134, 45%, 35%, .2);
    font-weight: 800;
}

.controller-index .landing-unlock-modal {
    z-index: 1065;
}

.controller-index .modal-backdrop {
    z-index: 1060;
}

.landing-unlock-modal .modal-dialog {
    max-width: 440px;
}

.landing-unlock-modal .modal-content {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 211, 238, .18), transparent 32%),
        linear-gradient(145deg, rgba(13, 20, 32, .98), rgba(4, 10, 20, .98) 56%, rgba(9, 31, 30, .98));
    color: hsl(204, 12%, 95%);
    border: 1px solid rgba(130, 148, 170, .22);
    border-radius: 1rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 1.25rem 3.25rem rgba(0, 0, 0, .48);
}

.landing-unlock-modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .05), transparent 22%, transparent 78%, rgba(34, 211, 238, .05)),
        radial-gradient(circle at 86% 18%, rgba(74, 222, 128, .13), transparent 24%);
}

.landing-unlock-modal .modal-header,
.landing-unlock-modal .modal-body,
.landing-unlock-modal .modal-footer {
    position: relative;
    z-index: 1;
}

.landing-unlock-modal .modal-header {
    display: block;
    padding: 1.1rem 3.35rem .45rem 1.15rem;
}

.landing-unlock-modal .modal-title {
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0;
    font-size: 1.06rem;
    line-height: 1.35;
}

.landing-unlock-modal-kicker {
    color: rgba(153, 246, 228, .78);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
}

.landing-unlock-modal-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .72rem;
    color: rgba(190, 255, 232, .96);
    background: linear-gradient(135deg, rgba(20, 184, 166, .24), rgba(34, 211, 238, .12));
    border: 1px solid rgba(153, 246, 228, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.landing-unlock-modal .close {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    margin: 0;
    padding: 0;
    border-radius: .62rem;
    color: rgba(226, 232, 240, .74);
    background: rgba(31, 41, 55, .78);
    border: 1px solid rgba(130, 148, 170, .2);
    opacity: 1;
    text-shadow: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.landing-unlock-modal .close:hover,
.landing-unlock-modal .close:focus {
    color: var(--white);
    background: rgba(51, 65, 85, .92);
    transform: translateY(-1px);
    outline: 0;
}

.landing-unlock-modal .modal-body {
    padding: .65rem 1.15rem 1rem;
    color: hsl(214, 12%, 70%);
    font-size: .95rem;
    line-height: 1.52;
}

.landing-unlock-modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .55rem;
    padding: .85rem 1.15rem 1.05rem;
    border-top: 1px solid rgba(130, 148, 170, .16);
}

.landing-unlock-modal-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.landing-unlock-modal-login,
.landing-unlock-modal-register {
    min-width: 6.75rem;
    padding: .48rem .95rem;
    border-radius: .68rem;
    font-size: .92rem;
    font-weight: 750;
}

.landing-unlock-modal-login {
    color: hsl(210, 20%, 90%);
    background: rgba(15, 23, 42, .58);
    border: 1px solid rgba(148, 163, 184, .36);
}

.landing-unlock-modal-login:hover,
.landing-unlock-modal-login:focus {
    color: var(--white);
    background: rgba(30, 41, 59, .84);
    border-color: rgba(203, 213, 225, .46);
}

.landing-unlock-modal-register {
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .22), transparent 24%),
        linear-gradient(120deg, #0e7490, #14b8a6 44%, #22d3ee);
    border: 1px solid rgba(153, 246, 228, .42);
    box-shadow: 0 .75rem 1.8rem rgba(20, 184, 166, .22);
}

.landing-unlock-modal-register:hover,
.landing-unlock-modal-register:focus {
    color: var(--white);
    background-position: 100% 50%;
    border-color: rgba(190, 255, 232, .68);
    box-shadow: 0 .9rem 2.1rem rgba(20, 184, 166, .32);
}

.landing-auth-modal {
    z-index: 1065;
}

.landing-auth-modal .modal-dialog {
    max-width: 460px;
}

.landing-auth-modal .modal-content {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    color: hsl(204, 12%, 94%);
    background:
        radial-gradient(circle at 12% 4%, rgba(34, 211, 238, .16), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(74, 222, 128, .12), transparent 28%),
        linear-gradient(145deg, rgba(11, 19, 31, .98), rgba(4, 10, 20, .98) 58%, rgba(8, 32, 30, .98));
    border: 1px solid rgba(130, 148, 170, .22);
    border-radius: 1rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 1.25rem 3.25rem rgba(0, 0, 0, .5);
}

.landing-auth-modal .close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgba(226, 232, 240, .74);
    background: rgba(31, 41, 55, .72);
    border: 1px solid rgba(130, 148, 170, .2);
    border-radius: .62rem;
    opacity: 1;
    text-shadow: none;
}

.landing-auth-tabs {
    display: inline-flex;
    gap: .35rem;
    padding: .25rem;
    margin: 0 2.6rem 1rem 0;
    background: rgba(15, 23, 42, .62);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: .8rem;
}

.landing-auth-tab {
    border: 0;
    padding: .5rem .85rem;
    border-radius: .62rem;
    color: rgba(226, 232, 240, .72);
    background: transparent;
    font-size: .88rem;
    font-weight: 750;
}

.landing-auth-tab.active {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.landing-auth-panel {
    display: none;
}

.landing-auth-panel.active {
    display: block;
}

.landing-auth-heading {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.05rem;
}

.landing-auth-heading p {
    color: hsl(214, 12%, 68%);
    font-size: .92rem;
    line-height: 1.45;
}

.landing-auth-icon {
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(190, 255, 232, .96);
    background: linear-gradient(135deg, rgba(20, 184, 166, .24), rgba(34, 211, 238, .12));
    border: 1px solid rgba(153, 246, 228, .22);
    border-radius: .75rem;
}

.landing-auth-form label,
.landing-auth-form .custom-control-label {
    color: rgba(226, 232, 240, .78);
}

.landing-auth-form .form-control {
    color: var(--white);
    background: rgba(4, 10, 20, .64);
    border-color: rgba(148, 163, 184, .22);
}

.landing-auth-form .form-control:focus {
    color: var(--white);
    background: rgba(6, 16, 28, .86);
    border-color: rgba(34, 211, 238, .5);
    box-shadow: 0 0 0 .2rem rgba(34, 211, 238, .12);
}

.landing-auth-form a {
    color: rgba(153, 246, 228, .86);
}

.landing-auth-submit {
    color: var(--white);
    background:
        linear-gradient(120deg, #0e7490, #14b8a6 48%, #22d3ee);
    border: 1px solid rgba(153, 246, 228, .42);
    border-radius: .75rem;
    font-weight: 800;
    box-shadow: 0 .85rem 1.9rem rgba(20, 184, 166, .2);
}

.landing-auth-submit:hover,
.landing-auth-submit:focus {
    color: var(--white);
    border-color: rgba(190, 255, 232, .68);
    box-shadow: 0 1rem 2.2rem rgba(20, 184, 166, .3);
}

@media (max-width: 767px) {
    .landing-audit-section {
        padding: 5rem 0 7rem;
    }

    .landing-stat-card {
        opacity: .16;
        transform: scale(.82);
    }

    .landing-stat-card-visibility {
        left: -4rem;
        top: 12%;
    }

    .landing-stat-card-keywords {
        right: -5rem;
        top: 46%;
    }

    .landing-stat-card-score {
        display: none;
    }

    .index-header {
        font-size: 2.75rem;
    }

    .index-subheader {
        font-size: 1.15rem;
    }

    .landing-audit-form-inner,
    .landing-result-header,
    .landing-result-metrics {
        grid-template-columns: 1fr;
    }

    .landing-performance-header {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-right: 1.25rem;
    }

    .landing-performance-copy {
        text-align: center;
    }

    .landing-performance-scores {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .landing-performance-score-card {
        min-height: 8.5rem;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .landing-performance-score-ring {
        width: 5.75rem;
        min-width: 5.75rem;
        height: 5.75rem;
    }

    .landing-performance-kpis {
        grid-template-columns: 1fr;
    }

    .landing-performance-metrics {
        grid-template-columns: 1fr;
    }

    .landing-tool-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        margin-bottom: .85rem;
    }

    .landing-tool-tab {
        min-width: 0;
        padding-left: .65rem;
        padding-right: .65rem;
    }

    .landing-audit-preview-close {
        top: 1rem;
        right: 1.75rem;
    }

    .landing-audit-submit {
        width: 100%;
    }

    .landing-audit-progress {
        grid-template-columns: minmax(0, 1fr) 2.75rem;
        margin-top: 1.25rem;
    }

    .landing-audit-form-inner {
        border-radius: 1.25rem;
        padding: .65rem;
    }

    .landing-score-ring {
        margin: 0 auto;
    }

    .landing-domain-rating-score-ring {
        margin: 0 auto;
    }

    .landing-result-copy {
        text-align: center;
    }

    .landing-issue-row {
        grid-template-columns: 1fr auto;
        gap: .35rem .75rem;
    }

    .landing-issue-badge {
        grid-column: 1 / -1;
    }

    .landing-domain-rating-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: .35rem .75rem;
    }

    .landing-domain-rating-target {
        grid-column: 2 / 3;
    }
}

/* Index fade */
.index-fade {
    position: absolute;
    background: linear-gradient(0deg, var(--white), hsla(0, 0%, 100%, 0)) !important;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

/* Index testimonial */
.index-testimonial-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    transform: translateY(-70%);
    border: 4px solid var(--white);
    background: var(--white);
    position: absolute;
    left: 50%;
    margin-left: -52px;
}

.index-testimonial-comment {
    margin-left: 18px;
}

/* Index FAQ */
.index-faq svg {
    transition: all .15s;
    color: var(--primary-800);
}

/* Timeline */
.index-timeline {
    position: relative;
}

.index-timeline::before {
    content: '';
    position: absolute;
    border-left: 2px solid var(--primary-100);
    height: 100%;
    left: calc(57px / 2);
}

/* Index call to action */
.index-cta {
    background: var(--primary-800);
    background-image: radial-gradient(#ffffff33 1px, var(--primary-800) 1px);
    background-size: 20px 20px;
    color: white !important;
}

.index-cta a.btn {
    color: white;
    border-color: white;
    padding: 1.2rem 4.2rem;
    font-size: 1.25rem;
}

.index-cta a.btn:hover {
    background: var(--primary-700);
    border-color: var(--primary-700);
}

[data-theme-style="dark"] .index-cta {
    background: var(--primary-200);
    background-image: radial-gradient(#ffffff33 1px, var(--primary-200) 1px);
    background-size: 20px 20px;
}
