:root {
    --app-navy: #00325d;
    --app-navy-deep: #001f3a;
    --app-navy-soft: #0f4a78;
    --app-red: #c6283d;
    --app-red-bright: #ff0042;
    --app-ink: #102a43;
    --app-muted: #52697b;
    --app-bg: #f3f6f8;
    --app-line: #dce5eb;
    --app-white: #ffffff;
    --app-radius-sm: 10px;
    --app-radius: 18px;
    --app-radius-lg: 28px;
    --app-shadow: 0 24px 70px rgba(0, 31, 58, 0.14);
    --app-container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--app-ink);
    background: var(--app-white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: clip;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

a:focus-visible {
    outline: 3px solid #ffbdcc;
    outline-offset: 4px;
    border-radius: 4px;
}

h1,
h2,
h3,
p,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--app-navy);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

p:last-child {
    margin-bottom: 0;
}

.app-container {
    width: min(calc(100% - 40px), var(--app-container));
    margin-inline: auto;
}

.app-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--app-white);
    background: var(--app-navy-deep);
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.app-skip-link:focus {
    transform: translateY(0);
}

.app-header {
    position: relative;
    z-index: 100;
    min-height: 76px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 50, 93, 0.1);
}

.app-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.app-brand {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 44px;
    align-items: center;
}

.app-brand img {
    width: 180px;
}

.app-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: var(--app-muted);
    border-radius: 8px;
    font-size: 0.91rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.app-nav a:hover,
.app-nav a[aria-current="page"] {
    color: var(--app-navy);
    background: var(--app-bg);
}

.app-hero {
    position: relative;
    min-height: 720px;
    color: var(--app-white);
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 0, 66, 0.28), transparent 23rem),
        linear-gradient(130deg, var(--app-navy-deep), var(--app-navy) 62%, #064879);
}

.app-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 50%, #000);
    mask-image: linear-gradient(to right, transparent, #000 50%, #000);
}

.app-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    min-height: 720px;
    gap: 68px;
    padding-block: 70px;
}

.app-hero__content {
    position: relative;
    z-index: 2;
}

.app-eyebrow,
.app-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--app-red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.app-eyebrow::before,
.app-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}

.app-eyebrow {
    color: #ff8ca9;
}

.app-kicker--light {
    color: #ff9ab4;
}

.app-hero h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--app-white);
    font-size: clamp(3rem, 5vw, 5.3rem);
}

.app-hero h1 span {
    color: #ff577f;
}

.app-lead {
    max-width: 610px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.65;
}

.app-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-store-badge {
    min-width: 178px;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 16px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 15, 28, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    cursor: not-allowed;
}

.app-store-badge svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.app-store-badge span,
.app-store-badge small,
.app-store-badge strong {
    display: block;
}

.app-store-badge small {
    font-size: 0.67rem;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.app-store-badge strong {
    margin-top: 3px;
    font-size: 1rem;
    line-height: 1.1;
}

.app-availability {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.app-hero__visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.app-phone {
    position: relative;
    z-index: 2;
    margin: 0;
    overflow: hidden;
    background: #091b2a;
    border: 9px solid #0b1d2d;
    border-radius: 38px;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.38);
}

.app-phone::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 50%;
    width: 30%;
    height: 19px;
    background: #0b1d2d;
    border-radius: 99px;
    transform: translateX(-50%);
}

.app-phone img {
    width: 100%;
}

.app-phone--hero {
    width: 282px;
    transform: rotate(2deg);
}

.app-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.app-orbit--one {
    width: 470px;
    height: 470px;
}

.app-orbit--two {
    width: 340px;
    height: 340px;
    border-color: rgba(255, 0, 66, 0.35);
}

.app-floating-card {
    position: absolute;
    z-index: 4;
    min-width: 194px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    color: var(--app-ink);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.app-floating-card--top {
    top: 17%;
    right: 0;
}

.app-floating-card--bottom {
    bottom: 13%;
    left: 0;
}

.app-floating-card__icon {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--app-red);
    background: #fff0f4;
    border-radius: 10px;
}

.app-floating-card__icon svg {
    width: 20px;
    fill: currentColor;
}

.app-floating-card small,
.app-floating-card strong {
    display: block;
    line-height: 1.25;
}

.app-floating-card small {
    color: var(--app-muted);
    font-size: 0.68rem;
}

.app-floating-card strong {
    margin-top: 2px;
    color: var(--app-navy);
    font-size: 0.85rem;
}

.app-section {
    padding-block: 112px;
}

.app-centered-copy {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.app-centered-copy .app-kicker {
    justify-content: center;
}

.app-centered-copy h2,
.app-section-heading h2,
.app-how h2,
.app-trust h2,
.app-delete-main > h2,
.app-delete-privacy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.05rem, 3.5vw, 3.45rem);
}

.app-centered-copy > p,
.app-trust__heading > p {
    color: var(--app-muted);
    font-size: 1.08rem;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 58px;
}

.app-feature-card {
    position: relative;
    min-height: 312px;
    padding: 32px 28px;
    overflow: hidden;
    background: var(--app-white);
    border: 1px solid var(--app-line);
    border-radius: var(--app-radius);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    border-color: #b7cbd9;
    box-shadow: 0 20px 48px rgba(0, 50, 93, 0.1);
}

.app-feature-card > svg {
    width: 42px;
    height: 42px;
    margin-bottom: 42px;
    fill: var(--app-red);
}

.app-feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.app-feature-card p {
    margin-bottom: 0;
    color: var(--app-muted);
    font-size: 0.93rem;
}

.app-feature-card__number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #c7d4dd;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.app-how {
    color: var(--app-white);
    background: var(--app-navy);
}

.app-how__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    align-items: center;
    gap: 80px;
}

.app-how h2 {
    max-width: 640px;
    color: var(--app-white);
}

.app-steps {
    margin: 46px 0 0;
    padding: 0;
    list-style: none;
}

.app-steps li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.app-steps li > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--app-white);
    background: var(--app-red);
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 800;
}

.app-steps strong {
    color: var(--app-white);
    font-size: 1.05rem;
}

.app-steps p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
}

.app-how__phones {
    position: relative;
    min-height: 610px;
}

.app-how__phones .app-phone {
    position: absolute;
    width: 260px;
}

.app-phone--back {
    top: 20px;
    left: 5%;
    transform: rotate(-6deg);
    opacity: 0.88;
}

.app-phone--front {
    right: 5%;
    bottom: 10px;
    transform: rotate(5deg);
}

.app-gallery {
    background: var(--app-bg);
}

.app-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 58px;
}

.app-section-heading h2 {
    margin-bottom: 0;
}

.app-section-heading > p {
    color: var(--app-muted);
    font-size: 1.03rem;
}

.app-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.app-screenshot-grid figure {
    margin-bottom: 0;
}

.app-screenshot-grid img {
    width: 100%;
    border: 7px solid #102536;
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(0, 31, 58, 0.15);
}

.app-screenshot-grid figcaption {
    margin-top: 17px;
    color: var(--app-navy);
    font-size: 0.87rem;
    font-weight: 800;
    text-align: center;
}

.app-trust {
    background: var(--app-white);
}

.app-trust__heading {
    max-width: 690px;
    margin-bottom: 46px;
}

.app-legal-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.app-legal-card {
    min-height: 138px;
    display: grid;
    grid-template-columns: 54px 1fr 24px;
    align-items: center;
    gap: 19px;
    padding: 28px;
    color: var(--app-ink);
    border: 1px solid var(--app-line);
    border-radius: var(--app-radius);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-legal-card:hover {
    transform: translateY(-4px);
    border-color: #a9c2d3;
    box-shadow: 0 18px 45px rgba(0, 50, 93, 0.1);
}

.app-legal-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--app-red);
    background: #fff0f4;
    border-radius: 14px;
}

.app-legal-card__icon svg {
    width: 27px;
    fill: currentColor;
}

.app-legal-card small,
.app-legal-card strong {
    display: block;
}

.app-legal-card small {
    margin-bottom: 3px;
    color: var(--app-muted);
    font-size: 0.76rem;
}

.app-legal-card strong {
    color: var(--app-navy);
    font-size: 1.05rem;
}

.app-legal-card__arrow,
.app-inline-cta svg,
.app-button svg,
.app-breadcrumb svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.app-legal-card__arrow {
    width: 23px;
    color: var(--app-red);
}

.app-footer {
    padding-block: 60px 26px;
    color: rgba(255, 255, 255, 0.68);
    background: var(--app-navy-deep);
}

.app-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-bottom: 42px;
}

.app-footer__logo {
    width: 161px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.app-footer__grid p {
    max-width: 390px;
    font-size: 0.88rem;
}

.app-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 8px 32px;
}

.app-footer__links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.app-footer__links a:hover {
    color: var(--app-white);
}

.app-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.76rem;
}

.app-footer__legal p {
    margin-bottom: 0;
}

/* Legal pages */
.app-legal-page,
.app-delete-page {
    background: var(--app-bg);
}

.app-page-hero {
    position: relative;
    padding-block: 70px 78px;
    overflow: hidden;
    color: var(--app-white);
    background: linear-gradient(125deg, var(--app-navy-deep), var(--app-navy) 70%, #075082);
}

.app-page-hero::after {
    content: "";
    position: absolute;
    top: -130px;
    right: -90px;
    width: 400px;
    height: 400px;
    border: 70px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.app-page-hero--delete::after {
    border-color: rgba(227, 49, 67, 0.1);
}

.app-page-hero__content {
    position: relative;
    z-index: 1;
}

.app-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.8rem;
}

.app-breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--app-white);
    text-decoration: none;
}

.app-breadcrumb a:hover {
    text-decoration: underline;
}

.app-breadcrumb svg {
    width: 14px;
}

.app-page-hero h1 {
    max-width: 870px;
    margin-bottom: 18px;
    color: var(--app-white);
    font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.app-page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.app-updated {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.app-updated span {
    width: 7px;
    height: 7px;
    background: #67dda5;
    border-radius: 50%;
}

.app-legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    justify-content: center;
    align-items: start;
    gap: 64px;
    padding-block: 76px 112px;
}

.app-toc {
    position: sticky;
    top: 28px;
    padding: 22px;
    background: var(--app-white);
    border: 1px solid var(--app-line);
    border-radius: var(--app-radius-sm);
}

.app-toc > p {
    margin-bottom: 12px;
    color: var(--app-navy);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-toc nav {
    display: grid;
    gap: 2px;
}

.app-toc a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 5px 8px;
    color: var(--app-muted);
    border-left: 2px solid transparent;
    font-size: 0.77rem;
    line-height: 1.35;
    text-decoration: none;
}

.app-toc a:hover {
    color: var(--app-navy);
    border-left-color: var(--app-red);
}

.app-legal-content {
    min-width: 0;
    padding: 54px clamp(28px, 5vw, 66px);
    background: var(--app-white);
    border: 1px solid var(--app-line);
    border-radius: var(--app-radius);
}

.app-legal-content section {
    scroll-margin-top: 28px;
    padding-top: 8px;
}

.app-legal-content section + section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--app-line);
}

.app-legal-content h2 {
    margin-bottom: 20px;
    font-size: 1.65rem;
    letter-spacing: -0.025em;
}

.app-legal-content h3 {
    margin: 28px 0 10px;
    font-size: 1.06rem;
    letter-spacing: -0.01em;
}

.app-legal-content p,
.app-legal-content li {
    color: #3f5668;
    font-size: 0.96rem;
}

.app-legal-content p {
    margin-bottom: 17px;
}

.app-legal-content ul {
    margin: 4px 0 20px;
    padding-left: 24px;
}

.app-legal-content li {
    padding-left: 6px;
    margin-bottom: 9px;
}

.app-legal-content li::marker {
    color: var(--app-red);
}

.app-notice {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    margin-bottom: 46px;
    padding: 20px;
    color: var(--app-navy);
    background: #eef7fb;
    border-left: 3px solid var(--app-navy-soft);
    border-radius: 4px 10px 10px 4px;
}

.app-notice svg {
    width: 28px;
    fill: var(--app-navy-soft);
}

.app-notice p {
    margin-bottom: 0;
    color: var(--app-navy);
    font-size: 0.88rem;
}

.app-data-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-block: 24px;
}

.app-data-list div {
    padding: 19px;
    background: var(--app-bg);
    border-radius: 10px;
}

.app-data-list h3 {
    margin: 0 0 8px;
    font-size: 0.93rem;
}

.app-data-list p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
}

.app-inline-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    color: var(--app-red);
    font-size: 0.91rem;
    font-weight: 800;
    text-decoration: none;
}

.app-inline-cta:hover {
    text-decoration: underline;
}

.app-inline-cta svg {
    width: 18px;
}

.app-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 22px;
    background: var(--app-bg);
    border-radius: 10px;
}

.app-contact-card span,
.app-contact-card strong,
.app-contact-card small {
    display: block;
}

.app-contact-card span,
.app-contact-card small {
    color: var(--app-muted);
    font-size: 0.75rem;
}

.app-contact-card strong {
    margin-block: 3px;
    color: var(--app-navy);
    font-size: 0.87rem;
}

.app-contact-card a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--app-red);
    font-size: 0.86rem;
    font-weight: 800;
}

.app-legal-bottom-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 54px;
    padding-top: 30px;
    border-top: 1px solid var(--app-line);
}

.app-legal-bottom-nav a {
    min-height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    color: var(--app-navy);
    background: var(--app-bg);
    border-radius: 9px;
    text-decoration: none;
}

.app-legal-bottom-nav a:last-child {
    text-align: right;
}

.app-legal-bottom-nav span {
    color: var(--app-muted);
    font-size: 0.69rem;
}

.app-legal-bottom-nav strong {
    font-size: 0.83rem;
}

/* Delete page */
.app-delete-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
    gap: 54px;
    padding-block: 92px;
}

.app-section-lead {
    margin-bottom: 36px;
    color: var(--app-muted);
}

.app-delete-steps {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.app-delete-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 29px;
    width: 2px;
    background: #cbd9e2;
}

.app-delete-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    min-height: 112px;
    padding-bottom: 24px;
}

.app-delete-steps__number {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    color: var(--app-white);
    background: var(--app-navy);
    border: 7px solid var(--app-bg);
    border-radius: 50%;
    font-weight: 800;
}

.app-delete-steps h3 {
    margin: 4px 0 8px;
    font-size: 1.16rem;
}

.app-delete-steps p {
    color: var(--app-muted);
    font-size: 0.92rem;
}

.app-delete-aside {
    display: grid;
    gap: 18px;
}

.app-warning-card,
.app-help-card {
    padding: 28px;
    border-radius: var(--app-radius);
}

.app-warning-card {
    color: #583037;
    background: #fff1f3;
    border: 1px solid #f6cbd3;
}

.app-warning-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--app-red);
    background: var(--app-white);
    border-radius: 12px;
}

.app-warning-card__icon svg {
    width: 26px;
    fill: currentColor;
}

.app-warning-card h2,
.app-help-card h2 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.app-warning-card p,
.app-help-card p {
    font-size: 0.87rem;
}

.app-help-card {
    background: var(--app-white);
    border: 1px solid var(--app-line);
}

.app-help-card p {
    color: var(--app-muted);
}

.app-help-card a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--app-red);
    font-size: 0.83rem;
    font-weight: 800;
    word-break: break-word;
}

.app-after-delete {
    background: var(--app-white);
}

.app-delete-scope {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.app-delete-scope article {
    padding: 30px;
    background: var(--app-bg);
    border-radius: var(--app-radius);
}

.app-delete-scope svg {
    width: 37px;
    height: 37px;
    margin-bottom: 28px;
    fill: var(--app-red);
}

.app-delete-scope h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.app-delete-scope p {
    margin-bottom: 0;
    color: var(--app-muted);
    font-size: 0.88rem;
}

.app-retention-note,
.app-recreation-note {
    max-width: 920px;
    margin: 28px auto 0;
}

.app-retention-note {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 24px;
    background: #eef7fb;
    border-radius: 12px;
}

.app-retention-note svg {
    width: 28px;
    fill: var(--app-navy-soft);
}

.app-retention-note h3,
.app-recreation-note h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.app-retention-note p,
.app-recreation-note p {
    margin-bottom: 0;
    color: var(--app-muted);
    font-size: 0.87rem;
}

.app-recreation-note {
    padding: 24px 26px;
    border: 1px solid var(--app-line);
    border-left: 3px solid var(--app-red);
    border-radius: 4px 12px 12px 4px;
}

.app-delete-privacy {
    padding-block: 80px;
    color: var(--app-white);
    background: linear-gradient(120deg, var(--app-navy-deep), var(--app-navy));
}

.app-delete-privacy__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
}

.app-delete-privacy h2 {
    color: var(--app-white);
}

.app-delete-privacy p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
}

.app-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.app-button--light {
    color: var(--app-navy);
    background: var(--app-white);
}

.app-button svg {
    width: 18px;
}

@media (max-width: 1024px) {
    .app-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
        gap: 30px;
    }

    .app-floating-card {
        display: none;
    }

    .app-feature-grid,
    .app-screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-how__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 40px;
    }

    .app-how__phones .app-phone {
        width: 230px;
    }

    .app-legal-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 30px;
    }
}

@media (max-width: 800px) {
    .app-container {
        width: min(calc(100% - 32px), var(--app-container));
    }

    .app-header__inner {
        min-height: 70px;
    }

    .app-nav a {
        padding-inline: 9px;
        font-size: 0.78rem;
    }

    .app-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 72px 60px;
        text-align: center;
    }

    .app-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-hero__visual {
        min-height: 530px;
    }

    .app-hero::before {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .app-section {
        padding-block: 82px;
    }

    .app-how__grid {
        grid-template-columns: 1fr;
    }

    .app-how__phones {
        min-height: 560px;
    }

    .app-how__phones .app-phone {
        width: 238px;
    }

    .app-section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .app-legal-cards,
    .app-delete-scope {
        grid-template-columns: 1fr;
    }

    .app-footer__grid,
    .app-delete-privacy__inner {
        grid-template-columns: 1fr;
    }

    .app-legal-layout {
        grid-template-columns: 1fr;
        padding-block: 40px 80px;
    }

    .app-toc {
        position: static;
    }

    .app-toc nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-delete-layout {
        grid-template-columns: 1fr;
        padding-block: 72px;
    }

    .app-delete-privacy__inner {
        text-align: center;
    }

    .app-delete-privacy__inner > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-button {
        justify-self: center;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .app-header__inner {
        min-height: 124px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding-block: 10px;
    }

    .app-brand img {
        width: 168px;
    }

    .app-nav {
        width: 100%;
        justify-content: center;
    }

    .app-nav a {
        justify-content: center;
        text-align: center;
    }

    .app-hero h1 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
    }

    .app-hero__visual {
        min-height: 480px;
    }

    .app-phone--hero {
        width: 238px;
    }

    .app-orbit--one {
        width: 360px;
        height: 360px;
    }

    .app-orbit--two {
        width: 280px;
        height: 280px;
    }

    .app-store-row {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .app-store-badge {
        justify-content: center;
    }

    .app-feature-grid,
    .app-screenshot-grid {
        grid-template-columns: 1fr;
    }

    .app-feature-card {
        min-height: 260px;
    }

    .app-screenshot-grid {
        gap: 42px;
    }

    .app-screenshot-grid figure {
        width: min(82%, 300px);
        margin-inline: auto;
    }

    .app-how__phones {
        min-height: 490px;
    }

    .app-how__phones .app-phone {
        width: 195px;
    }

    .app-phone--back {
        left: 0;
    }

    .app-phone--front {
        right: 0;
    }

    .app-legal-card {
        grid-template-columns: 48px 1fr 18px;
        padding: 22px 18px;
    }

    .app-legal-card__icon {
        width: 48px;
        height: 48px;
    }

    .app-footer__links {
        grid-template-columns: 1fr;
    }

    .app-footer__legal {
        flex-direction: column;
        gap: 5px;
    }

    .app-page-hero {
        padding-block: 48px 58px;
    }

    .app-page-hero h1 {
        font-size: 2.7rem;
    }

    .app-toc nav,
    .app-data-list {
        grid-template-columns: 1fr;
    }

    .app-legal-content {
        padding: 34px 22px;
    }

    .app-contact-card,
    .app-legal-bottom-nav {
        grid-template-columns: 1fr;
    }

    .app-contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .app-legal-bottom-nav a:last-child {
        text-align: left;
    }

    .app-delete-steps li {
        grid-template-columns: 52px 1fr;
        gap: 16px;
    }

    .app-delete-steps::before {
        left: 25px;
    }

    .app-delete-steps__number {
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
