:root {
    color-scheme: dark;
    --bg: #06101d;
    --bg-deep: #030914;
    --surface: #0b1d31;
    --surface-soft: #102840;
    --surface-bright: #153651;
    --ink: #f7fbff;
    --muted: #a4b8ca;
    --line: rgba(167, 207, 235, 0.15);
    --cyan: #28e7ee;
    --cyan-dark: #08aebc;
    --coral: #ff574c;
    --pink: #f22a89;
    --violet: #934dff;
    --blue: #2f8cff;
    --green: #2dde9a;
    --amber: #ffb72e;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    --radius: 24px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--surface-bright) var(--bg-deep);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 6%, rgba(19, 126, 177, 0.16), transparent 28rem),
        radial-gradient(circle at 88% 28%, rgba(115, 41, 181, 0.14), transparent 32rem),
        var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 55%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
select,
input,
textarea {
    color: inherit;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 7vw, 6.8rem);
    font-weight: 850;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4.4vw, 4rem);
    font-weight: 820;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section {
    padding-block: clamp(76px, 10vw, 132px);
    scroll-margin-top: 80px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(3, 11, 21, 0.82);
    backdrop-filter: blur(20px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 750;
    text-decoration: none;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.brand img {
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(40, 231, 238, 0.16);
}

.brand strong {
    color: var(--cyan);
}

.nav-panel,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-panel {
    flex: 1;
    justify-content: flex-end;
    gap: 26px;
}

.nav-links {
    gap: 25px;
}

.nav-links a {
    color: #c5d5e2;
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 180ms ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links .nav-account-link {
    padding: 7px 10px;
    border: 1px solid rgba(255, 87, 76, 0.24);
    border-radius: 6px;
    background: rgba(255, 87, 76, 0.055);
    color: #ffc3bf;
}

.nav-links .nav-account-link:hover,
.nav-links .nav-account-link[aria-current="page"] {
    border-color: rgba(255, 87, 76, 0.42);
    background: rgba(255, 87, 76, 0.11);
    color: #fff;
}

.language-picker {
    position: relative;
    display: flex;
    align-items: center;
    height: 42px;
    padding-inline: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
}

.language-picker svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.7;
}

.language-picker select {
    max-width: 112px;
    padding: 3px 23px 3px 8px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.84rem;
    font-weight: 700;
}

.language-picker option {
    background: var(--surface);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 9px;
    background: var(--ink);
}

.hero {
    min-height: 760px;
    padding-block: clamp(74px, 9vw, 128px) 88px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(40px, 6vw, 82px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero h1 {
    max-width: 760px;
}

.hero h1::first-line {
    color: var(--ink);
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 32px;
    color: #b5c9d9;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-player-label {
    margin: -4px 0 10px;
    padding-inline-start: 11px;
    border-inline-start: 3px solid var(--cyan);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 5px rgba(255, 87, 76, 0.12), 0 0 18px var(--coral);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    50% { box-shadow: 0 0 0 8px rgba(255, 87, 76, 0), 0 0 24px var(--coral); }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-primary {
    background: var(--cyan);
    color: #001518;
    box-shadow: 0 15px 36px rgba(20, 217, 226, 0.2);
}

.button-primary:hover {
    box-shadow: 0 18px 42px rgba(20, 217, 226, 0.3);
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.045);
    color: var(--ink);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
}

.android-note {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #d5e1e9;
}

.android-note svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.android-note span {
    display: flex;
    flex-direction: column;
}

.android-note strong {
    font-size: 0.88rem;
}

.android-note small {
    color: var(--muted);
    font-size: 0.76rem;
}

.hero-visual {
    position: relative;
    min-width: 0;
    isolation: isolate;
}

.hero-visual::before {
    position: absolute;
    inset: -18% -15%;
    z-index: -2;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 212, 224, 0.2), rgba(44, 74, 198, 0.08) 42%, transparent 68%);
    filter: blur(16px);
}

.hero-shot {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(105, 229, 244, 0.28);
    border-radius: 25px;
    box-shadow: var(--shadow), 0 0 80px rgba(31, 105, 190, 0.14);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.signal {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(40, 231, 238, 0.25);
    border-radius: 50%;
}

.signal-one {
    width: 240px;
    height: 240px;
    top: -90px;
    right: -50px;
}

.signal-two {
    width: 330px;
    height: 330px;
    top: -135px;
    right: -95px;
}

.now-playing-card {
    position: absolute;
    right: -20px;
    bottom: -30px;
    max-width: 285px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(10, 32, 51, 0.88);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(15px);
}

.now-playing-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.now-playing-card small {
    color: var(--coral);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.now-playing-card strong {
    font-size: 0.85rem;
    line-height: 1.25;
}

.equalizer {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 13px;
    background: rgba(40, 231, 238, 0.12);
}

.equalizer i {
    width: 3px;
    border-radius: 2px;
    background: var(--cyan);
    animation: equalize 850ms ease-in-out infinite alternate;
}

.equalizer i:nth-child(1) { height: 11px; }
.equalizer i:nth-child(2) { height: 23px; animation-delay: -300ms; }
.equalizer i:nth-child(3) { height: 17px; animation-delay: -600ms; }
.equalizer i:nth-child(4) { height: 8px; animation-delay: -200ms; }

@keyframes equalize {
    to { height: 28px; }
}

.trust-strip {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-inline-end: 1px solid var(--line);
}

.trust-grid > div:first-child {
    padding-inline-start: 0;
}

.trust-grid > div:last-child {
    border: 0;
}

.trust-grid strong {
    margin-bottom: 3px;
    font-size: 0.92rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: 0.78rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading > p:last-child,
.row-heading > div > p:last-child {
    color: var(--muted);
    font-size: 1.06rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(18, 47, 72, 0.8), rgba(8, 25, 42, 0.88));
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(40, 231, 238, 0.28);
    background: linear-gradient(145deg, rgba(22, 57, 85, 0.94), rgba(8, 25, 42, 0.96));
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.feature-card-wide {
    min-height: 285px;
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 1fr;
    align-items: center;
    gap: 26px;
}

.feature-card-wide > div {
    max-width: 490px;
}

.feature-card-wide h3 {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.feature-card-wide::after {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    bottom: -250px;
    content: "";
    border-radius: 50%;
    background: rgba(40, 231, 238, 0.07);
    box-shadow: 0 0 120px rgba(40, 231, 238, 0.08);
}

.feature-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 18px;
    background: rgba(40, 231, 238, 0.12);
    color: var(--cyan);
}

.feature-card-wide > .feature-icon {
    width: 75px;
    height: 75px;
    margin: 0;
    border-radius: 23px;
}

.feature-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card-wide .feature-icon svg {
    width: 38px;
    height: 38px;
}

.feature-icon.coral { color: var(--coral); background: rgba(255, 87, 76, 0.11); }
.feature-icon.violet { color: #b17aff; background: rgba(147, 77, 255, 0.12); }
.feature-icon.blue { color: #62a9ff; background: rgba(47, 140, 255, 0.12); }
.feature-icon.green { color: var(--green); background: rgba(45, 222, 154, 0.11); }
.feature-icon.amber { color: var(--amber); background: rgba(255, 183, 46, 0.11); }
.feature-icon.pink { color: #ff72b6; background: rgba(242, 42, 137, 0.11); }

.country-cloud {
    position: relative;
    height: 190px;
}

.country-cloud b {
    position: absolute;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
    font-size: 0.78rem;
}

.country-cloud b:nth-child(1) { top: 55px; left: 45%; color: #58ccff; transform: scale(1.25); }
.country-cloud b:nth-child(2) { top: 3px; left: 11%; color: #ff6a61; }
.country-cloud b:nth-child(3) { right: 8%; bottom: 6px; color: #65e69e; }
.country-cloud b:nth-child(4) { top: 8px; right: 15%; color: #ffd655; transform: scale(.83); }
.country-cloud b:nth-child(5) { bottom: 0; left: 11%; color: #ff628d; transform: scale(.88); }
.country-cloud b:nth-child(6) { bottom: 9px; left: 48%; color: #c27aff; transform: scale(.7); }

.screenshots-section {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 100%, rgba(113, 28, 172, 0.16), transparent 40%),
        var(--bg-deep);
}

.row-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.row-heading > div:first-child {
    max-width: 700px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
    padding-bottom: 12px;
}

.carousel-controls button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
}

.carousel-controls button:hover {
    border-color: rgba(40, 231, 238, 0.36);
    background: var(--surface-bright);
}

.carousel-controls svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.screenshot-track-wrap {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
    overflow: visible;
}

.screenshot-track {
    display: flex;
    gap: 20px;
    padding: 5px 0 35px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(40, 231, 238, 0.4) transparent;
}

.screenshot-track figure {
    width: min(72vw, 720px);
    flex: 0 0 auto;
    margin: 0;
    scroll-snap-align: start;
}

.shot-button {
    width: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: transparent;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.shot-button img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 450ms ease;
}

.shot-button:hover img {
    transform: scale(1.018);
}

.community-section {
    padding-bottom: 0;
}

.community-card {
    min-height: 510px;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 50px;
    padding: clamp(35px, 6vw, 74px);
    overflow: hidden;
    border: 1px solid rgba(160, 103, 255, 0.22);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 50%, rgba(146, 52, 218, 0.22), transparent 32%),
        radial-gradient(circle at 15% 100%, rgba(21, 189, 208, 0.12), transparent 38%),
        linear-gradient(135deg, #101c36, #0a1325);
    box-shadow: var(--shadow);
}

.community-copy {
    position: relative;
    z-index: 2;
}

.community-copy > p:not(.eyebrow):not(.privacy-note) {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.02rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #cce2ee;
    font-size: 0.88rem;
    font-weight: 650;
}

.privacy-note svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.community-orbit {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1;
    margin-inline: auto;
    border: 1px solid rgba(159, 96, 255, 0.26);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(108, 46, 168, 0.1);
}

.community-orbit::before,
.community-orbit::after {
    position: absolute;
    inset: 13%;
    content: "";
    border: 1px dashed rgba(40, 231, 238, 0.19);
    border-radius: 50%;
}

.community-orbit::after {
    inset: 31%;
}

.orbit-center {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 98px;
    transform: translate(-50%, -50%);
}

.orbit-center img {
    border-radius: 24px;
    box-shadow: 0 0 45px rgba(40, 231, 238, 0.22);
}

.avatar,
.chat-bubble {
    position: absolute;
    display: grid;
    place-items: center;
    border: 3px solid #14213b;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-weight: 800;
}

.avatar { width: 58px; height: 58px; }
.avatar-one { top: 7%; left: 16%; background: #ea4c89; }
.avatar-two { right: 2%; top: 42%; background: #7254e8; }
.avatar-three { left: 12%; bottom: 5%; background: #109eaa; }
.chat-bubble { width: 45px; height: 45px; border-radius: 15px; }
.bubble-one { top: 6%; right: 18%; background: #ee4949; }
.bubble-two { left: 2%; top: 45%; background: #17af91; }

.rights-callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.rights-callout > div:nth-child(2) p:last-child {
    max-width: 770px;
    margin-bottom: 0;
    color: var(--muted);
}

.rights-callout h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.rights-icon {
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(40, 231, 238, 0.1);
}

.rights-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-section {
    padding-block: 68px;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.13);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(35px, 7vw, 95px);
}

.contact-grid h2 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

.contact-grid p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-email {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: var(--surface);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.contact-email:hover {
    transform: translateY(-3px);
    border-color: rgba(40, 231, 238, 0.4);
}

.contact-email span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-email small {
    color: var(--muted);
}

.contact-email strong {
    overflow-wrap: anywhere;
    font-size: clamp(0.98rem, 2vw, 1.22rem);
}

.contact-email svg {
    width: 25px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer {
    padding: 65px 0 24px;
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-bottom: 52px;
}

.footer-brand p {
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(125px, 1fr));
    gap: 40px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links strong {
    margin-bottom: 6px;
    font-size: 0.82rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    color: #71899c;
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

.lightbox {
    width: min(94vw, 1500px);
    max-width: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 22px;
    background: transparent;
}

.lightbox::backdrop {
    background: rgba(1, 5, 12, 0.9);
    backdrop-filter: blur(8px);
}

.lightbox img {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: -47px;
    right: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: #0e2032;
    font-size: 1.5rem;
    line-height: 1;
}

/* Legal and support pages */
.legal-hero {
    padding-block: clamp(68px, 9vw, 115px) 55px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 75% 20%, rgba(40, 231, 238, 0.1), transparent 30rem);
}

.legal-hero-inner {
    max-width: 850px;
}

.legal-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-hero p:not(.eyebrow):not(.updated) {
    color: var(--muted);
    font-size: 1.08rem;
}

.updated {
    margin: 25px 0 0;
    color: #718b9f;
    font-size: 0.79rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 760px);
    justify-content: center;
    gap: clamp(40px, 7vw, 90px);
    padding-block: 70px 110px;
}

.legal-aside {
    align-self: start;
    position: sticky;
    top: 105px;
}

.legal-aside nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legal-aside a {
    padding: 9px 12px;
    border-left: 2px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    text-decoration: none;
}

.legal-aside a:hover {
    border-color: var(--cyan);
    color: var(--ink);
}

.legal-content {
    min-width: 0;
}

.legal-content section {
    padding-block: 4px 36px;
    scroll-margin-top: 100px;
}

.legal-content h2 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    letter-spacing: -0.025em;
}

.legal-content h3 {
    margin-top: 25px;
    font-size: 1.04rem;
    letter-spacing: -0.01em;
}

.legal-content p,
.legal-content li {
    color: #b3c4d1;
    font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.25rem;
}

.legal-content li + li {
    margin-top: 8px;
}

.legal-content a {
    color: var(--cyan);
    text-underline-offset: 3px;
}

.legal-summary,
.notice-box,
.request-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--surface);
}

.legal-summary {
    margin-bottom: 38px;
    border-color: rgba(40, 231, 238, 0.25);
}

.legal-summary p:last-child,
.notice-box p:last-child,
.request-card p:last-child {
    margin-bottom: 0;
}

.notice-box {
    margin: 10px 0 35px;
    border-color: rgba(255, 183, 46, 0.24);
    background: rgba(255, 183, 46, 0.055);
}

.notice-box strong {
    color: #ffd271;
}

.request-card {
    margin-block: 18px 35px;
}

.request-card .button {
    margin-top: 10px;
    color: #001518;
}

.steps {
    margin: 25px 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.steps li {
    position: relative;
    min-height: 48px;
    padding-left: 60px;
    counter-increment: steps;
}

.steps li::before {
    position: absolute;
    top: -4px;
    left: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    content: counter(steps);
    border: 1px solid rgba(40, 231, 238, 0.25);
    border-radius: 12px;
    background: rgba(40, 231, 238, 0.08);
    color: var(--cyan);
    font-weight: 800;
}

.steps li + li {
    margin-top: 20px;
}

.back-link {
    width: fit-content;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #a9bdcb;
    font-size: 0.8rem;
    font-weight: 680;
    text-decoration: none;
    transition: color 220ms ease, transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.back-link svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border: 1px solid rgba(40, 231, 238, 0.2);
    border-radius: 9px;
    background: rgba(40, 231, 238, 0.055);
    color: var(--cyan);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: border-color 220ms ease, background 220ms ease;
}

.back-link span {
    line-height: 1;
}

.back-link:hover {
    color: var(--ink);
    transform: translateX(-3px);
}

.back-link:hover svg {
    border-color: rgba(40, 231, 238, 0.4);
    background: rgba(40, 231, 238, 0.11);
}

.legal-switch-note {
    margin-top: 16px;
    color: #71899c;
    font-size: 0.72rem;
}

/* 404 */
.not-found {
    min-height: calc(100vh - 76px);
    display: grid;
    place-items: center;
    padding: 60px 20px;
    text-align: center;
}

.not-found img {
    width: 105px;
    margin: 0 auto 28px;
    border-radius: 28px;
}

.not-found h1 {
    margin-bottom: 15px;
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--cyan);
}

.not-found p {
    max-width: 500px;
    margin: 0 auto 28px;
    color: var(--muted);
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .privacy-note,
[dir="rtl"] .android-note {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .back-link {
    padding: 0;
}

[dir="rtl"] .back-link svg {
    transform: rotate(180deg);
}

[dir="rtl"] .back-link:hover svg {
    transform: rotate(180deg);
}

[dir="rtl"] .back-link:hover {
    transform: translateX(3px);
}

[dir="rtl"] .legal-aside a {
    border-left: 0;
    border-right: 2px solid var(--line);
}

[dir="rtl"] .legal-content ul,
[dir="rtl"] .legal-content ol {
    padding-left: 0;
    padding-right: 1.25rem;
}

@media (max-width: 1040px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr);
        padding-top: 95px;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-visual {
        width: min(92%, 820px);
        margin-inline: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-wide {
        grid-column: span 2;
    }

    .rights-callout {
        grid-template-columns: auto 1fr;
    }

    .rights-callout .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .menu-button {
        display: block;
    }

    .nav-panel {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        padding: 18px 20px 23px;
        border-bottom: 1px solid var(--line);
        background: rgba(3, 11, 21, 0.98);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.32);
    }

    .nav-panel.is-open {
        display: flex;
    }

    .nav-links {
        flex: 1;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        padding: 11px 2px;
        font-size: 0.92rem;
    }

    .nav-links .nav-account-link {
        margin-top: 7px;
        padding: 10px 12px;
    }

    .language-picker {
        align-self: flex-start;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid > div:nth-child(2) {
        border-inline-end: 0;
    }

    .trust-grid > div:first-child {
        padding-inline-start: 24px;
    }

    .trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .community-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .community-orbit {
        width: min(80vw, 340px);
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-aside {
        display: none;
    }
}

@media (max-width: 620px) {
    .shell,
    .screenshot-track-wrap {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding-block: 76px;
    }

    .brand span {
        font-size: 0.93rem;
    }

    .hero {
        padding-top: 68px;
        padding-bottom: 78px;
        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 16vw, 4.6rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-shot {
        border-radius: 16px;
        transform: none;
    }

    .now-playing-card {
        right: 10px;
        bottom: -35px;
        max-width: 250px;
    }

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

    .feature-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .country-cloud {
        height: 170px;
    }

    .row-heading {
        align-items: start;
        flex-direction: column;
    }

    .carousel-controls {
        padding: 0;
    }

    .screenshot-track figure {
        width: 86vw;
    }

    .community-card {
        min-height: auto;
        padding: 34px 23px 45px;
        border-radius: 24px;
    }

    .community-orbit {
        width: min(100%, 300px);
    }

    .rights-callout {
        grid-template-columns: 1fr;
    }

    .rights-callout .button {
        grid-column: auto;
        justify-self: stretch;
    }

    .contact-email {
        padding: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .legal-layout {
        padding-top: 50px;
    }
}

@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; }
}

/* Account deletion */
.account-delete-page {
    min-height: calc(100dvh - 76px);
    padding: clamp(34px, 6vw, 72px) 20px clamp(64px, 8vw, 96px);
}

.account-delete-shell {
    width: min(100%, 860px);
    margin-inline: auto;
}

.account-delete-card {
    overflow: hidden;
    border: 1px solid rgba(167, 207, 235, 0.16);
    border-radius: 8px;
    background: linear-gradient(155deg, rgba(15, 38, 62, 0.96), rgba(7, 23, 39, 0.98));
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
}

.account-delete-header {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 19px;
    padding: clamp(25px, 5vw, 42px);
    border-bottom: 1px solid var(--line);
}

.account-delete-icon,
.scope-icon,
.session-avatar,
.dialog-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.account-delete-icon {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 87, 76, 0.28);
    border-radius: 8px;
    background: rgba(255, 87, 76, 0.1);
    color: #ff756d;
}

.account-delete-icon svg,
.scope-icon svg,
.session-avatar svg,
.delete-warning svg,
.delete-section-heading svg,
.account-delete-footer svg,
.dialog-icon svg,
.input-shell > svg,
.delete-auth-submit svg,
.password-toggle svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.account-delete-icon svg {
    width: 27px;
    height: 27px;
}

.account-delete-kicker,
.success-kicker {
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.account-delete-header h1 {
    margin-bottom: 9px;
    font-size: clamp(2rem, 5vw, 3.15rem);
}

.account-delete-header > div:last-child > p:last-child {
    margin: 0;
    color: var(--muted);
}

.deletion-scope {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: clamp(22px, 4vw, 34px) clamp(25px, 5vw, 42px) 0;
}

.scope-item {
    min-width: 0;
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.026);
}

.scope-item.preserved {
    border-color: rgba(45, 222, 154, 0.2);
    background: rgba(45, 222, 154, 0.045);
}

.scope-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 6px;
    background: rgba(40, 231, 238, 0.09);
    color: var(--cyan);
}

.scope-icon.violet {
    background: rgba(147, 77, 255, 0.11);
    color: #b986ff;
}

.scope-icon.green {
    background: rgba(45, 222, 154, 0.1);
    color: var(--green);
}

.scope-icon svg {
    width: 20px;
    height: 20px;
}

.scope-item h2 {
    margin-bottom: 7px;
    font-size: 0.98rem;
    letter-spacing: -0.015em;
}

.scope-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.scope-tombstones {
    display: block;
    margin-top: 8px;
    color: #b99de0;
    font-size: 0.68rem;
    font-weight: 720;
}

.delete-warning {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 13px;
    margin: 16px clamp(25px, 5vw, 42px) 0;
    padding: 16px 17px;
    border: 1px solid rgba(255, 87, 76, 0.24);
    border-radius: 6px;
    background: rgba(255, 87, 76, 0.075);
}

.delete-warning svg {
    width: 22px;
    margin-top: 2px;
    color: #ff756d;
}

.delete-warning strong {
    display: block;
    margin-bottom: 3px;
    color: #ffd4d1;
    font-size: 0.9rem;
}

.delete-warning p {
    margin: 0;
    color: #c7a9a8;
    font-size: 0.8rem;
}

.delete-auth-section {
    padding: clamp(29px, 5vw, 42px);
}

.delete-section-heading {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}

.delete-section-heading > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(40, 231, 238, 0.3);
    border-radius: 50%;
    background: rgba(40, 231, 238, 0.08);
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 850;
}

.delete-section-heading h2 {
    margin-bottom: 7px;
    font-size: 1.25rem;
}

.delete-section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.session-account {
    max-width: 570px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;
    padding: 13px 15px;
    border: 1px solid rgba(40, 231, 238, 0.18);
    border-radius: 6px;
    background: rgba(40, 231, 238, 0.045);
}

.session-account[hidden],
.form-field[hidden] {
    display: none;
}

.session-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(40, 231, 238, 0.1);
    color: var(--cyan);
}

.session-avatar svg {
    width: 19px;
}

.session-account span:last-child {
    min-width: 0;
    display: grid;
}

.session-account small {
    color: var(--muted);
    font-size: 0.68rem;
}

.session-account strong {
    overflow-wrap: anywhere;
    font-size: 0.88rem;
}

.delete-auth-form {
    max-width: 570px;
}

.form-field + .form-field {
    margin-top: 17px;
}

.form-field label {
    display: inline-block;
    margin-bottom: 7px;
    color: #dcebf5;
    font-size: 0.82rem;
    font-weight: 720;
}

.input-shell {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(2, 11, 21, 0.72);
    box-shadow: inset 0 0 0 1px rgba(167, 207, 235, 0.22);
    transition: box-shadow 160ms ease, background 160ms ease;
}

.input-shell:focus-within {
    background: rgba(3, 15, 28, 0.9);
    box-shadow: inset 0 0 0 2px var(--cyan), 0 0 0 3px rgba(40, 231, 238, 0.1);
}

.form-field.has-error .input-shell {
    box-shadow: inset 0 0 0 2px #ff756d;
}

.input-shell > svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-inline-start: 14px;
    color: #7995aa;
}

.input-shell input {
    min-width: 0;
    height: 50px;
    flex: 1;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    line-height: 50px;
}

.input-shell input:-webkit-autofill {
    -webkit-text-fill-color: var(--ink);
    box-shadow: 0 0 0 1000px #07182a inset;
}

.password-toggle {
    width: 46px;
    height: 50px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8da6b9;
}

.password-toggle:hover {
    color: var(--cyan);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.password-toggle .eye-closed,
.password-toggle.is-visible .eye-open {
    display: none;
}

.password-toggle.is-visible .eye-closed {
    display: block;
}

.form-field > small:not(.field-error) {
    display: block;
    margin-top: 6px;
    color: #7890a2;
    font-size: 0.72rem;
}

.field-error {
    display: block;
    min-height: 1.2em;
    margin-top: 5px;
    color: #ff8b84;
    font-size: 0.75rem;
}

.form-status {
    min-height: 22px;
    margin-top: 11px;
    color: #ff918b;
    font-size: 0.78rem;
}

.form-status.loading {
    color: var(--cyan);
}

.form-status.success {
    color: var(--green);
}

.delete-auth-submit,
.dialog-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.delete-auth-submit {
    width: 100%;
    margin-top: 5px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--cyan), #14bfc9);
    color: #03151c;
    box-shadow: 0 12px 28px rgba(40, 231, 238, 0.13);
}

.delete-auth-submit:hover:not(:disabled) {
    filter: brightness(1.06);
}

.delete-auth-submit svg {
    width: 18px;
    height: 18px;
}

.button-spinner {
    width: 18px;
    height: 18px;
    display: none;
    border: 2px solid rgba(3, 21, 28, 0.25);
    border-top-color: #03151c;
    border-radius: 50%;
    animation: deletion-spin 700ms linear infinite;
}

.delete-auth-form.is-loading .button-spinner {
    display: block;
}

.delete-auth-form.is-loading .button-lock {
    display: none;
}

.delete-auth-submit:disabled,
.dialog-button:disabled,
.password-toggle:disabled,
.input-shell input:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.account-delete-footer {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 17px clamp(25px, 5vw, 42px);
    border-top: 1px solid var(--line);
    background: rgba(2, 11, 21, 0.36);
    color: #829bad;
}

.account-delete-footer svg {
    width: 22px;
    flex: 0 0 22px;
    color: var(--green);
}

.account-delete-footer p {
    margin: 0;
    font-size: 0.73rem;
}

.account-delete-footer a {
    color: #b8cbd8;
}

.delete-dialog {
    width: min(calc(100% - 28px), 500px);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    padding: clamp(25px, 5vw, 36px);
    border: 1px solid rgba(167, 207, 235, 0.2);
    border-radius: 8px;
    background: #0a1c2f;
    color: var(--ink);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.delete-dialog::backdrop {
    background: rgba(1, 6, 13, 0.82);
    backdrop-filter: blur(7px);
}

.delete-dialog h2 {
    margin-bottom: 11px;
    font-size: clamp(1.55rem, 4vw, 2rem);
}

.delete-dialog > p:not(.success-kicker):not(.progress-note) {
    color: var(--muted);
    font-size: 0.9rem;
}

.dialog-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 8px;
}

.dialog-icon svg {
    width: 25px;
    height: 25px;
}

.dialog-icon.destructive {
    background: rgba(255, 87, 76, 0.1);
    color: #ff756d;
}

.dialog-icon.success {
    background: rgba(45, 222, 154, 0.11);
    color: var(--green);
}

.dialog-account {
    margin: 18px 0;
    padding: 12px 14px;
    overflow-wrap: anywhere;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
    color: #d9e8f2;
    font-size: 0.84rem;
    font-weight: 750;
}

.confirm-check {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    padding: 14px;
    border-radius: 6px;
    background: rgba(255, 87, 76, 0.055);
    color: #d8c8c7;
    font-size: 0.83rem;
    cursor: pointer;
}

.confirm-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--coral);
}

.dialog-actions {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 10px;
    margin-top: 22px;
}

.dialog-button {
    padding: 11px 15px;
    font-size: 0.84rem;
}

.dialog-button.neutral {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.055);
    color: #d5e2eb;
}

.dialog-button.destructive {
    background: #cf4038;
    color: #fff;
}

.dialog-button.destructive:hover:not(:disabled) {
    background: #e34b42;
}

.progress-dialog,
.success-dialog {
    text-align: center;
}

.progress-spinner {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 21px;
    border-radius: 50%;
    background: rgba(40, 231, 238, 0.07);
}

.progress-spinner span {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(40, 231, 238, 0.18);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: deletion-spin 750ms linear infinite;
}

.progress-bar {
    height: 5px;
    margin: 24px 0 13px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
    width: 0;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    transition: width 240ms ease;
}

.progress-note {
    margin: 0;
    color: #7890a2;
    font-size: 0.72rem;
}

.success-dialog .dialog-icon {
    margin-inline: auto;
}

.success-dialog .dialog-button.success {
    width: 100%;
    margin-top: 10px;
    background: var(--green);
    color: #032016;
}

.compact-footer {
    margin-top: 0;
}

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

[dir="rtl"] .account-delete-header,
[dir="rtl"] .delete-section-heading,
[dir="rtl"] .delete-warning,
[dir="rtl"] .confirm-check {
    text-align: right;
}

@media (max-width: 720px) {
    .account-delete-page {
        padding: 25px 12px 60px;
    }

    .account-delete-page .back-link {
        margin-inline-start: 8px;
    }

    .account-delete-header {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        padding: 23px 19px;
    }

    .account-delete-icon {
        width: 46px;
        height: 46px;
    }

    .account-delete-header h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .deletion-scope {
        grid-template-columns: 1fr;
        padding: 19px 19px 0;
    }

    .scope-item {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
    }

    .scope-icon {
        margin-bottom: 0;
    }

    .delete-warning {
        margin-inline: 19px;
    }

    .delete-auth-section {
        padding: 29px 19px;
    }

    .account-delete-footer {
        padding-inline: 19px;
        align-items: flex-start;
    }

    .delete-dialog {
        width: calc(100% - 20px);
        max-height: calc(100dvh - 20px);
        padding: 24px 19px;
    }
}

@media (max-width: 420px) {
    .account-delete-header {
        grid-template-columns: 1fr;
    }

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