@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #090c10;
    --panel: #0f141b;
    --panel-2: #0c1117;
    --line: #1e2631;
    --text: #dbe4ef;
    --muted: #9aabc2;
    --brand: #7c5cff;
    --brand-2: #2ee6a6;
    --brand-3: #a28bff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --radius-lg: 28px;
    --maxw: 620px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

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

button {
    font: inherit;
}

.recovery-page {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 18px;
    overflow: hidden;
    isolation: isolate;
}

.recovery-gridlines {
    position: absolute;
    inset: -20% -10% -10% -10%;
    z-index: -4;
    opacity: .34;
    background:
        repeating-linear-gradient(115deg, rgba(124, 92, 255, .06) 0 2px, transparent 2px 12px),
        radial-gradient(760px 380px at 18% -10%, rgba(124, 92, 255, .2), transparent 60%),
        radial-gradient(560px 280px at 105% 0%, rgba(46, 230, 166, .18), transparent 60%);
    animation: gridshift 18s linear infinite;
}

@keyframes gridshift {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 600px -400px, 0 0, 0 0;
    }
}

.recovery-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: .45;
    pointer-events: none;
    z-index: -3;
}

.recovery-glow-one {
    width: 440px;
    height: 440px;
    left: -150px;
    top: 4%;
    background: radial-gradient(circle, rgba(124, 92, 255, .32), transparent 68%);
}

.recovery-glow-two {
    width: 400px;
    height: 400px;
    right: -140px;
    bottom: 0;
    background: radial-gradient(circle, rgba(46, 230, 166, .22), transparent 68%);
}

.recovery-shell {
    width: 100%;
    max-width: var(--maxw);
    display: grid;
    gap: 18px;
    justify-items: center;
}

.logo-orbit {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    transition: transform .18s ease, filter .2s ease;
}

.logo-orbit:hover {
    transform: translateY(-2px);
    filter: saturate(1.12);
}

.logo-ring {
    position: relative;
    width: 138px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02) 55%, transparent 56%),
        conic-gradient(from 0deg, rgba(124, 92, 255, 0), rgba(124, 92, 255, .52), rgba(46, 230, 166, .45), rgba(124, 92, 255, 0));
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow:
        inset 0 0 34px rgba(124, 92, 255, .18),
        0 0 42px rgba(46, 230, 166, .12);
}

.logo-ring::before {
    content: "";
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    border: 1px dashed rgba(207, 225, 255, .24);
    animation: pulse 2.4s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.045);
        opacity: 1;
    }
}

.logo-ring-dash {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 70%, rgba(255, 255, 255, .85) 74% 76%, transparent 80% 100%);
    mask: radial-gradient(circle at 50% 50%, transparent 62%, #000 63%);
    -webkit-mask: radial-gradient(circle at 50% 50%, transparent 62%, #000 63%);
    animation: dashspin 1.8s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .25));
}

@keyframes dashspin {
    to {
        transform: rotate(360deg);
    }
}

.logo-icon-card {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .28),
        0 0 28px rgba(124, 92, 255, .32);
    overflow: hidden;
}

.logo-icon-card img {
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
}

.recovery-card {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 32px;
    background:
        radial-gradient(620px 380px at 50% -20%, rgba(124, 92, 255, .16), transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.recovery-card-head {
    text-align: center;
    margin-bottom: 22px;
}

.recovery-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: #081018;
    background: #9ff0cf;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.recovery-card h1 {
    margin: 12px 0 7px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.recovery-card-head p {
    margin: 0 auto;
    max-width: 42ch;
    color: var(--muted);
    font-size: .95rem;
}

.recovery-options {
    display: grid;
    gap: 12px;
}

.recovery-option {
    width: 100%;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 18px;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .09);
    transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.recovery-option:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 92, 255, .48);
    background:
        linear-gradient(180deg, rgba(124, 92, 255, .14), rgba(255, 255, 255, .035));
    box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
}

.recovery-option:active {
    transform: translateY(0) scale(.99);
}

.option-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #081018;
    font-weight: 900;
    background: radial-gradient(circle at 30% 30%, #fff, #cde6ff 60%, #9b87ff 100%);
    box-shadow: 0 8px 22px rgba(124, 92, 255, .3);
}

.option-content strong {
    display: block;
    line-height: 1.2;
    font-size: 1rem;
}

.option-content small {
    display: block;
    margin-top: 3px;
    color: #9fb1cd;
    font-size: .86rem;
    line-height: 1.45;
}

.option-arrow {
    color: var(--brand-2);
    font-weight: 900;
    font-size: 1.25rem;
}

.recovery-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(46, 230, 166, .07);
    border: 1px dashed rgba(46, 230, 166, .22);
}

.recovery-note span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 16px rgba(46, 230, 166, .7);
}

.recovery-note p {
    margin: 0;
    color: #b8c8e4;
    font-size: .88rem;
}

.recovery-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, .12);
}

.recovery-links a {
    color: #cfe1ff;
    font-weight: 800;
    font-size: .9rem;
    transition: color .2s ease, transform .2s ease;
}

.recovery-links a:hover {
    color: var(--brand-2);
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    .recovery-page {
        padding: 14px;
    }

    .recovery-shell {
        gap: 14px;
    }

    .logo-ring {
        width: 118px;
    }

    .logo-icon-card {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .logo-icon-card img {
        width: 40px;
        height: 40px;
    }

    .recovery-card {
        padding: 22px;
        border-radius: 24px;
    }

    .recovery-option {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .option-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .option-arrow {
        display: none;
    }

    .recovery-card h1 {
        font-size: 1.75rem;
    }
}