/* ==========================================================================
   Delete account — стили страницы удаления аккаунта и данных
   Дизайн-токены подключаются отдельно из variables.css
   ========================================================================== */

/* ===== База ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Onest", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Подвал прижат к низу даже на коротком контенте */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 22px;
}
.disp {
    font-family: "Unbounded", sans-serif;
}
a {
    color: var(--blue);
}

/* ===== Шапка ===== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(10, 0, 46, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}
.brand .mark {
    height: 26px;
    width: auto;
    display: block;
}
.brand b {
    font-family: "Unbounded";
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.02em;
}
.brand small {
    display: block;
    font-size: 9px;
    letter-spacing: 0.32em;
    color: var(--azure);
    font-weight: 600;
    margin-top: 1px;
}
.back {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.back:hover {
    color: #fff;
}

/* ===== Hero ===== */
.hero {
    background: var(--navy);
    color: #fff;
    padding: 60px 0 90px;
    position: relative;
    overflow: hidden;
}
.mesh {
    position: absolute;
    inset: -30%;
    filter: blur(90px);
    opacity: 0.6;
}
.blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}
.b1 {
    width: 420px;
    height: 420px;
    background: var(--azure);
    top: -100px;
    left: -40px;
}
.b2 {
    width: 360px;
    height: 360px;
    background: var(--barbie);
    top: 0;
    right: -30px;
}
.b3 {
    width: 320px;
    height: 320px;
    background: var(--purple);
    bottom: -160px;
    left: 35%;
}
.hero .wrap {
    position: relative;
    z-index: 2;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 90, 51, 0.18);
    border: 1px solid rgba(255, 90, 51, 0.4);
    color: #ffb3a0;
    padding: 7px 14px;
    border-radius: 999px;
}
h1 {
    font-family: "Unbounded";
    font-weight: 800;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.05;
    margin: 18px 0 12px;
    letter-spacing: -0.02em;
}
.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
}

/* ===== Контент ===== */
main {
    margin-top: -50px;
    position: relative;
    z-index: 3;
    padding-bottom: 80px;
    flex: 1 0 auto;
}
.card {
    background: var(--card);
    border-radius: 24px;
    padding: 36px 34px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    margin-bottom: 22px;
}
.card h2 {
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
}
.card h2 .badge {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: rgba(27, 47, 201, 0.1);
}
.card p {
    color: var(--muted);
    margin-bottom: 14px;
}
.card p:last-child {
    margin-bottom: 0;
}

/* ===== Карточка-метод (как удалить) ===== */
.method {
    background: linear-gradient(150deg, #2e54e0, #1b2fc9);
    color: #fff;
    border: none;
}
.method h2 {
    color: #fff;
}
.method p {
    color: rgba(255, 255, 255, 0.85);
}
.steps {
    counter-reset: s;
    list-style: none;
    margin: 18px 0 4px;
}
.steps li {
    position: relative;
    padding: 0 0 18px 46px;
    counter-increment: s;
}
.steps li::before {
    content: counter(s);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: "Unbounded";
}
.steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 34px;
    bottom: 4px;
    width: 2px;
    background: rgba(255, 255, 255, 0.18);
}
.steps b {
    color: #fff;
    display: block;
    margin-bottom: 2px;
}
.steps span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14.5px;
}
.mail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    font-size: 16px;
    padding: 15px 28px;
    border-radius: 14px;
    margin-top: 10px;
    transition: 0.25s;
    text-decoration: none;
}
.mail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.4);
}
.mono {
    font-family: ui-monospace, Menlo, monospace;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 9px;
    border-radius: 7px;
    font-size: 14px;
    color: #fff;
}

/* ===== Списки данных ===== */
ul.data,
ul.keep {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-top: 6px;
}
ul.data li,
ul.keep li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 15.5px;
    color: var(--ink);
}
ul.data .i {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(255, 42, 20, 0.12);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}
ul.keep .i {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(255, 179, 0, 0.16);
    color: #b07a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ===== Примечание ===== */
.note {
    display: flex;
    gap: 13px;
    background: #fff8ec;
    border: 1px solid #ffe2a8;
    border-radius: 16px;
    padding: 18px 20px;
    margin-top: 6px;
}
.note .i {
    flex: none;
    font-size: 20px;
}
.note p {
    color: #7a5a00;
    margin: 0;
    font-size: 14.5px;
}

/* ===== Таймлайн сроков ===== */
.timeline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.tl {
    flex: 1;
    min-width: 160px;
    background: var(--bg);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid var(--line);
}
.tl b {
    font-family: "Unbounded";
    font-style: oblique 8deg;
    font-size: 26px;
    display: block;
    color: var(--blue);
}
.tl span {
    font-size: 14px;
    color: var(--muted);
}

/* ===== Подвал ===== */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    font-size: 13.5px;
}
footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1180px;
}
footer a {
    color: var(--azure);
}
.ph {
    color: var(--coral);
    font-weight: 600;
}

/* ===== Адаптив ===== */
@media (max-width: 560px) {
    .card {
        padding: 26px 20px;
    }
    .nav .brand small {
        display: none;
    }
}
