:root {
    color-scheme: dark;
    --bg: #09070d;
    --surface: #1d1120;
    --surface-2: #25152a;
    --surface-soft: rgba(30, 17, 32, 0.78);
    --border: rgba(255, 224, 239, 0.12);
    --border-strong: rgba(255, 224, 239, 0.22);
    --text: #fff8fb;
    --muted: rgba(255, 239, 247, 0.58);
    --muted-2: rgba(255, 239, 247, 0.38);
    --pink: #ff76b7;
    --purple: #a86aff;
    --purple-strong: #d94f96;
    --green: #67f4c6;
    --danger: #ff708d;
    --warning: #ffd778;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-width: 0;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body,
button,
input {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    min-width: 0;
    min-height: 100vh;
    overflow-x: clip;
    background:
        radial-gradient(circle at 48% -10%, rgba(255, 118, 183, 0.16), transparent 34rem),
        var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.background-grid,
.background-glow,
.background-ring {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.background-grid {
    inset: 0;
    opacity: 0.58;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.background-glow {
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.24;
}

.glow-purple {
    width: 32rem;
    height: 22rem;
    top: -9rem;
    left: calc(50% - 26rem);
    background: rgba(255, 95, 174, 0.85);
}

.glow-green {
    width: 25rem;
    height: 18rem;
    top: 18rem;
    right: -12rem;
    background: rgba(149, 92, 255, 0.30);
}

.background-ring {
    width: 52rem;
    height: 52rem;
    top: -25rem;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.012), 0 0 0 180px rgba(255, 255, 255, 0.009);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 18px;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: #08090d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(12, 8, 14, 0.80);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.topbar-inner {
    width: min(1180px, calc(100% - 40px));
    min-width: 0;
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 26px rgba(255, 102, 178, 0.22);
}

.brand-logo::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 45%);
    pointer-events: none;
}

.brand-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-name span {
    margin-left: 3px;
    color: var(--muted);
    font-weight: 400;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link,
.nav-primary {
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nav-link {
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.58);
    transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.nav-primary {
    min-height: 38px;
    margin-left: 6px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a0b10;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, background 180ms ease;
}

.nav-primary:hover {
    transform: translateY(-1px);
    background: #f3f1ff;
}

.nav-primary svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reset-main {
    width: 100%;
    min-width: 0;
    padding: 144px 22px 80px;
}

.reset-shell {
    width: min(1120px, 100%);
    min-width: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
}

.intro-column {
    min-width: 0;
}

.service-badge {
    width: max-content;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 118, 183, 0.20);
    border-radius: 12px;
    background: rgba(255, 111, 181, 0.08);
    color: rgba(255, 227, 241, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.status-dot.online {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(79, 255, 193, 0.09), 0 0 14px rgba(79, 255, 193, 0.72);
}

.status-dot.offline {
    background: var(--danger);
    box-shadow: 0 0 14px rgba(255, 107, 122, 0.48);
}

.intro-column h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(3.25rem, 6vw, 5.65rem);
    line-height: 0.98;
    letter-spacing: -0.072em;
    font-weight: 700;
    text-wrap: balance;
}

.intro-column h1 span {
    display: inline-block;
    color: transparent;
    background: linear-gradient(110deg, #fff 0%, #ffd4e8 34%, #ff80bd 68%, #b47cff 122%);
    -webkit-background-clip: text;
    background-clip: text;
}

.intro-copy {
    max-width: 580px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.steps {
    display: grid;
    gap: 10px;
}

.step-card {
    min-width: 0;
    padding: 15px 16px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.step-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 118, 183, 0.18);
    border-radius: 12px;
    background: rgba(255, 118, 183, 0.09);
    color: #ffc5df;
    font-size: 11px;
    font-weight: 800;
}

.step-card strong,
.security-note strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
}

.step-card p,
.security-note p {
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.5;
}

.security-note {
    margin-top: 16px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(79, 255, 193, 0.11);
    border-radius: 16px;
    background: rgba(79, 255, 193, 0.045);
}

.security-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--green);
    background: rgba(79, 255, 193, 0.09);
}

.security-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.manager-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(56, 31, 61, 0.95), rgba(29, 17, 32, 0.98) 54%, #0d0910 100%);
    box-shadow: var(--shadow), inset 0 1px 1px rgba(255, 255, 255, 0.12), inset 0 -1px 2px rgba(255, 255, 255, 0.035);
}

.card-pattern,
.card-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.card-pattern {
    opacity: 0.26;
    background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    mask-image: radial-gradient(85% 55% at 50% 0%, #000, transparent 100%);
    -webkit-mask-image: radial-gradient(85% 55% at 50% 0%, #000, transparent 100%);
}

.card-light {
    background: radial-gradient(75% 48% at 50% 0%, rgba(255, 118, 183, 0.16), transparent 72%);
}

.card-header,
.manager-card form,
.message,
.result-panel,
.force-panel,
.card-footnote {
    position: relative;
    z-index: 1;
}

.card-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.manager-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 118, 183, 0.20);
    border-radius: 15px;
    color: #ffc2df;
    background: radial-gradient(circle at 50% 25%, rgba(255, 118, 183, 0.22), rgba(255, 118, 183, 0.065));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 28px rgba(0, 0, 0, 0.22);
}

.manager-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--pink, #ff76b7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.card-header h2 {
    margin-bottom: 4px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.card-header p {
    color: var(--muted-2);
    font-size: 12px;
}

.field-group {
    margin-bottom: 17px;
}

.field-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.key-field {
    min-width: 0;
    height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(5, 6, 10, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.key-field:focus-within {
    border-color: rgba(255, 118, 183, 0.58);
    background: rgba(7, 8, 13, 0.78);
    box-shadow: 0 0 0 4px rgba(255, 118, 183, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.field-icon {
    width: 19px;
    height: 19px;
    margin-left: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: rgba(255, 255, 255, 0.38);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.key-field input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 12px;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 14px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.key-field input::placeholder {
    color: rgba(255, 255, 255, 0.24);
}

.icon-button {
    width: 45px;
    height: 45px;
    margin-right: 5px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.42);
    background: transparent;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease;
}

.icon-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.icon-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-button .eye-closed {
    display: none;
}

.icon-button[aria-pressed="true"] .eye-open {
    display: none;
}

.icon-button[aria-pressed="true"] .eye-closed {
    display: block;
}

.field-help {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.primary-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.9fr);
    gap: 10px;
}

.button {
    position: relative;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, color 170ms ease;
}

.button svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:not(:disabled):hover {
    transform: translateY(-2px);
}

.button:not(:disabled):active {
    transform: translateY(0) scale(0.985);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.52;
}

.button-primary {
    color: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.button-primary::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -35%;
    width: 28%;
    height: 260%;
    transform: rotate(20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
    opacity: 0;
    transition: left 550ms ease, opacity 180ms ease;
}

.button-primary:not(:disabled):hover::before {
    left: 110%;
    opacity: 0.8;
}

.button-primary:not(:disabled):hover {
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34), 0 0 34px rgba(255, 118, 183, 0.16), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.button-secondary {
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button-secondary:not(:disabled):hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.065);
}

.button-ghost {
    width: 100%;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.075);
    background: rgba(255, 255, 255, 0.018);
}

.button-ghost:not(:disabled):hover {
    color: #d8c7ff;
    border-color: rgba(155, 108, 255, 0.24);
    background: rgba(155, 108, 255, 0.055);
}

.button-danger {
    width: 100%;
    color: #fff;
    border: 1px solid rgba(255, 107, 122, 0.48);
    background: linear-gradient(180deg, rgba(255, 107, 122, 0.24), rgba(189, 48, 66, 0.22));
}

.button-danger:not(:disabled):hover {
    border-color: rgba(255, 107, 122, 0.72);
    box-shadow: 0 16px 30px rgba(130, 25, 41, 0.2);
}

.button-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.button-spinner {
    width: 17px;
    height: 17px;
    display: none;
    border: 2px solid rgba(8, 9, 13, 0.25);
    border-top-color: #08090d;
    border-radius: 50%;
    animation: spin 700ms linear infinite;
}

.button-primary.is-loading .button-label {
    visibility: hidden;
}

.button-primary.is-loading .button-spinner {
    position: absolute;
    display: block;
}

.message {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
    line-height: 1.55;
}

.message.success {
    color: #aaffdf;
    border-color: rgba(79, 255, 193, 0.17);
    background: rgba(79, 255, 193, 0.055);
}

.message.error {
    color: #ffc0c7;
    border-color: rgba(255, 107, 122, 0.18);
    background: rgba(255, 107, 122, 0.055);
}

.message.warning {
    color: #ffe7a8;
    border-color: rgba(255, 213, 106, 0.2);
    background: rgba(255, 213, 106, 0.055);
}

.result-panel,
.force-panel {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    background: rgba(4, 5, 9, 0.42);
}

.panel-heading {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.panel-heading h3,
.force-copy h3 {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.result-badge {
    padding: 5px 9px;
    border: 1px solid rgba(79, 255, 193, 0.13);
    border-radius: 999px;
    color: var(--green);
    background: rgba(79, 255, 193, 0.065);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.result-badge.is-banned,
.result-badge.is-disabled {
    color: #ffc0c7;
    border-color: rgba(255, 107, 122, 0.16);
    background: rgba(255, 107, 122, 0.06);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.result-grid > div {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.022);
}

.result-grid .result-wide {
    grid-column: 1 / -1;
}

.result-grid dt {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.result-grid dd {
    min-width: 0;
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 650;
}

.force-panel {
    border-color: rgba(255, 213, 106, 0.15);
    background: rgba(255, 213, 106, 0.035);
}

.force-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--warning);
    background: rgba(255, 213, 106, 0.09);
}

.force-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.force-copy p {
    margin: 8px 0 14px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.confirm-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    cursor: pointer;
}

.confirm-row input {
    width: 16px;
    height: 16px;
    accent-color: var(--warning);
}

.card-footnote {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.31);
    font-size: 10px;
    text-align: center;
}

.card-footnote a {
    color: rgba(255, 255, 255, 0.62);
    text-underline-offset: 3px;
}

.site-footer {
    padding: 34px 22px 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background: radial-gradient(50% 100% at 50% 0%, rgba(31, 18, 34, 0.9), var(--bg));
}

.footer-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 650;
}

.footer-brand img {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a,
.footer-inner > p {
    color: rgba(255, 255, 255, 0.32);
    font-size: 11px;
}

.footer-links a {
    text-decoration: none;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-inner > p {
    text-align: right;
}


.reset-petals {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.reset-petals i {
    position: absolute;
    top: -9vh;
    width: 10px;
    height: 15px;
    border-radius: 80% 20% 75% 25%;
    background: linear-gradient(145deg, rgba(255, 225, 239, 0.8), rgba(255, 111, 179, 0.34));
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.32);
    opacity: 0.22;
    animation: resetPetalFall linear infinite;
}

.reset-petals i:nth-child(1) { left: 8%; animation-duration: 19s; animation-delay: -6s; }
.reset-petals i:nth-child(2) { left: 25%; animation-duration: 24s; animation-delay: -14s; transform: scale(.75); }
.reset-petals i:nth-child(3) { left: 43%; animation-duration: 21s; animation-delay: -9s; }
.reset-petals i:nth-child(4) { left: 62%; animation-duration: 26s; animation-delay: -19s; transform: scale(.7); }
.reset-petals i:nth-child(5) { left: 79%; animation-duration: 20s; animation-delay: -11s; }
.reset-petals i:nth-child(6) { left: 93%; animation-duration: 23s; animation-delay: -4s; transform: scale(.8); }

@keyframes resetPetalFall {
    0% { transform: translate3d(0, -10vh, 0) rotate(0deg); }
    50% { transform: translate3d(35px, 52vh, 0) rotate(180deg); }
    100% { transform: translate3d(-22px, 112vh, 0) rotate(360deg); }
}

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

@media (max-width: 900px) {
    .reset-main {
        padding-top: 124px;
    }

    .reset-shell {
        max-width: 680px;
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .intro-column {
        text-align: center;
    }

    .service-badge {
        margin-inline: auto;
    }

    .intro-column h1,
    .intro-copy {
        margin-inline: auto;
    }

    .steps,
    .security-note {
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-inner > p {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        width: calc(100% - 28px);
    }

    .brand-name span,
    .nav-link,
    .nav-premium {
        display: none;
    }

    .nav-primary {
        margin-left: 0;
        padding-inline: 12px;
    }

    .reset-main {
        padding: 112px 14px 56px;
    }

    .intro-column h1 {
        font-size: clamp(2.85rem, 14vw, 4rem);
    }

    .intro-copy {
        font-size: 14px;
    }

    .manager-card {
        padding: 22px 16px;
        border-radius: 23px;
    }

    .card-header {
        align-items: flex-start;
    }

    .primary-actions {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

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

    .result-grid .result-wide {
        grid-column: auto;
    }

    .site-footer {
        padding-inline: 14px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (hover: none), (pointer: coarse) {
    .button:not(:disabled):hover,
    .nav-primary:hover {
        transform: none;
    }

    .button-primary::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
