:root {
    --paper: #f0f3f9;
    --paper-dark: #e1e6f0;
    --white: #fff;
    --ink: #10162a;
    --muted: #566078;
    --blue: #4268fa;
    --blue-dark: #2c4fd6;
    --blue-soft: #dfe6ff;
    --line: #cbd2e0;
    --dark-line: #303b57;
    --content-width: 1120px;
    --reading-width: 900px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    font: inherit;
}

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

.narrow-shell {
    width: min(var(--content-width), calc(100% - 48px));
}

.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;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 9px 13px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-150%);
}

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

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(240, 243, 249, .96);
    box-shadow: 0 10px 30px rgba(21, 32, 63, .04);
}

.header-row {
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.brand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand img {
    width: 39px;
    height: 39px;
    border-radius: 10px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #444b57;
    font-size: 14px;
    font-weight: 600;
}

.primary-nav a {
    position: relative;
    padding-block: 27px;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -1px;
    height: 2px;
    background: var(--blue);
    transition: right .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    right: 0;
}

.header-download {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.header-download span,
.text-action span,
.hero-actions a span,
.privacy-copy a span,
.download-layout a span {
    transition: transform .2s ease;
}

.header-download:hover span,
.hero-actions a:hover span,
.privacy-copy a:hover span,
.download-layout a:hover span {
    transform: translate(2px, -2px);
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
}

.home-hero {
    padding: 74px 0 82px;
    overflow: hidden;
    background: #0d1530;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    align-items: center;
    gap: clamp(60px, 9vw, 132px);
}

.section-label {
    margin: 0 0 22px;
    color: var(--blue);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 750;
    letter-spacing: .16em;
}

.home-hero .section-label {
    color: #9db1ff;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(46px, 5.4vw, 64px);
    line-height: .99;
    font-weight: 700;
    letter-spacing: -.06em;
}

.hero-copy h1 em {
    color: #91a7ff;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: -.06em;
}

.hero-intro {
    max-width: 600px;
    margin: 30px 0 0;
    color: #b8c1d5;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
}

.button-primary {
    background: var(--blue);
    color: #fff;
}

.button-primary:hover {
    background: var(--blue-dark);
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid #65708a;
    padding-block: 7px 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.text-action:hover span {
    transform: translateY(3px);
}

.platform-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 21px 0 0;
    color: #99a4bb;
    font-size: 13px;
}

.platform-note span {
    color: #28a36a;
    font-size: 8px;
}

.hero-poster {
    width: min(100%, 450px);
    aspect-ratio: 1;
    min-height: 0;
    position: relative;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.hero-poster::before,
.hero-poster::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-poster::before {
    width: 84%;
    aspect-ratio: 1;
    border: 1px solid rgba(143, 169, 255, .46);
    border-radius: 50%;
}

.hero-poster::after {
    width: 64%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #263f9c;
}

.hero-poster img {
    --hero-logo-size: min(48%, 212px);
    position: relative;
    z-index: 2;
    width: var(--hero-logo-size);
    height: var(--hero-logo-size);
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 12px solid #4268fa;
    border-radius: 50%;
    box-shadow: 0 22px 48px rgba(3, 9, 28, .4);
}

.poster-index {
    position: absolute;
    z-index: 2;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #9da9c2;
    font-size: 12px;
    letter-spacing: .15em;
}

.poster-caption {
    position: absolute;
    z-index: 2;
    left: 8%;
    right: 8%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.poster-caption strong {
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
}

.poster-caption span {
    font-size: 12px;
    color: #9da9c2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.statement-band {
    border-block: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
}

.statement-row {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.statement-row > p {
    margin: 0;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
}

.statement-row ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    color: #aeb7c8;
    font-size: 12px;
    letter-spacing: .1em;
    list-style: none;
    text-transform: uppercase;
}

.statement-row li::before {
    content: "/";
    margin-right: 9px;
    color: #5f6c85;
}

.feature-section {
    padding: 116px 0 128px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
    align-items: end;
    margin-bottom: 62px;
}

.section-heading .section-label {
    grid-column: 1 / -1;
}

.section-heading h2,
.privacy-copy h2,
.download-layout h2,
.page-intro h1,
.not-found h1 {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.02;
    font-weight: 630;
    letter-spacing: -.055em;
}

.section-heading > p:last-child {
    max-width: 480px;
    margin: 0 0 4px;
    color: var(--muted);
    line-height: 1.72;
}

.feature-ledger {
    border-top: 1px solid var(--ink);
}

.feature-ledger article {
    display: grid;
    grid-template-columns: 70px 1fr 1.35fr 44px;
    align-items: center;
    gap: 28px;
    min-height: 144px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease, padding .2s ease;
}

.feature-ledger article:hover {
    padding-inline: 14px;
    background: var(--white);
}

.feature-number {
    color: var(--blue);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
}

.feature-ledger h3 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.15;
    font-weight: 620;
    letter-spacing: -.035em;
}

.feature-ledger p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.feature-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    font-size: 17px;
}

.privacy-section {
    padding: 92px 0;
    background: #0d1530;
    color: #fff;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.privacy-rule {
    height: 100%;
    min-height: 360px;
    position: relative;
    border-right: 1px solid var(--dark-line);
}

.privacy-rule span {
    position: absolute;
    top: 0;
    left: 0;
    color: #7c89a5;
    font-size: 12px;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.section-label-light {
    color: #8faaff;
}

.privacy-copy h2 {
    max-width: 450px;
    font-size: clamp(36px, 4.4vw, 50px);
}

.privacy-copy > p:not(.section-label) {
    max-width: 490px;
    margin: 26px 0;
    color: #aeb8ca;
    line-height: 1.75;
}

.privacy-copy a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 1px solid #7785a0;
    color: #fff;
    font-size: 14px;
    font-weight: 650;
}

.privacy-facts {
    border-top: 1px solid var(--dark-line);
}

.privacy-facts p {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    margin: 0;
    padding: 25px 0;
    border-bottom: 1px solid var(--dark-line);
}

.privacy-facts strong {
    color: #fff;
    font-size: 14px;
}

.privacy-facts span {
    color: #9da8bd;
    font-size: 14px;
    line-height: 1.65;
}

.download-section {
    padding: 88px 0;
    background: var(--white);
}

.download-layout {
    display: grid;
    grid-template-columns: 104px 1fr auto;
    align-items: center;
    gap: 34px;
}

.download-layout img {
    border-radius: 23px;
}

.download-layout .section-label {
    margin-bottom: 10px;
}

.download-layout h2 {
    font-size: clamp(32px, 3.8vw, 46px);
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.store-availability {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.site-footer {
    padding-top: 64px;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(120px, 1fr));
    gap: 46px;
}

.footer-identity p {
    max-width: 330px;
    margin: 20px 0 13px;
    color: var(--muted);
    font-size: 15px;
}

.owner-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h2 {
    margin: 5px 0 7px;
    color: #303640;
    font-size: 12px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted);
    font-size: 14px;
}

.footer-column .store-unavailable {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.footer-column a:hover {
    color: var(--blue);
}

.footer-column .danger-link {
    color: #c33434;
    font-weight: 600;
}

.footer-column .danger-link:hover {
    color: #971f1f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 58px;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line);
    color: #7b7f86;
    font-size: 12px;
}

/* Legal and support pages */
.page-intro {
    padding: 48px 0 18px;
    border-bottom: 0;
    background: var(--paper);
}

.page-intro > .site-shell {
    padding: 54px 58px 50px;
    border-radius: 16px;
    background: #0d1530;
    color: #fff;
    box-shadow: 0 22px 54px rgba(21, 33, 70, .12);
}

.page-intro .section-label {
    color: #9db1ff;
}

.page-intro h1 {
    max-width: 790px;
    font-size: clamp(42px, 5vw, 58px);
}

.page-intro > div > p:not(.section-label) {
    max-width: 700px;
    margin: 26px 0 0;
    color: #b8c1d5;
    font-size: 19px;
    line-height: 1.65;
}

.page-intro time {
    display: block;
    margin-top: 25px;
    color: #97a3bc;
    font-size: 13px;
}

.legal-content,
.support-content {
    padding: 22px 0 36px;
}

.legal-content > section {
    margin-bottom: 15px;
    padding: 31px 34px 34px;
    border: 1px solid #dce1eb;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(26, 38, 73, .045);
}

.legal-content > section:first-child {
    padding-top: 31px;
}

.legal-content > section:last-child {
    border-bottom: 1px solid #dce1eb;
}

.legal-content h2,
.support-content h2,
.owner-panel h2 {
    margin: 0 0 17px;
    font-size: clamp(25px, 3vw, 32px);
    line-height: 1.18;
    font-weight: 650;
    letter-spacing: -.035em;
}

.legal-content h3 {
    margin: 28px 0 7px;
    font-size: 17px;
    line-height: 1.3;
}

.legal-content p,
.legal-content li,
.support-content p {
    color: #545c69;
    font-size: 16px;
    line-height: 1.82;
}

.legal-content p {
    margin: 0 0 15px;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content ul {
    margin: 15px 0 18px;
    padding-left: 21px;
}

.legal-content li {
    margin-block: 8px;
    padding-left: 5px;
}

.legal-content a,
.support-content a:not(.button),
.owner-panel a {
    color: var(--blue);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: #9fb1ed;
    text-underline-offset: 3px;
}

.legal-content strong {
    color: #252c37;
}

.owner-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    margin-top: 4px;
    margin-bottom: 90px;
    padding: 31px 34px;
    border: 1px solid #c7d2f0;
    border-radius: 14px;
    background: var(--blue-soft);
    box-shadow: 0 12px 30px rgba(31, 59, 142, .07);
}

.owner-panel .section-label {
    margin-bottom: 13px;
}

.owner-panel p:not(.section-label) {
    margin: 0;
    color: #5c6370;
    font-size: 15px;
}

.owner-panel address {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
}

.owner-panel address a {
    padding: 7px 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.contact-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid #d7deea;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(26, 38, 73, .05);
}

.contact-strip a {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 20px;
    padding: 25px 27px;
    text-decoration: none !important;
}

.contact-strip a + a {
    border-left: 1px solid #d7deea;
}

.contact-strip small {
    color: #747a83;
    font-size: 11px;
    letter-spacing: .14em;
}

.contact-strip strong {
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 15px;
}

.contact-strip span {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--blue);
    font-size: 20px;
}

.faq-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    padding: 80px 0;
}

.faq-heading .section-label {
    margin-bottom: 14px;
}

.faq-list {
    border-top: 0;
}

.faq-list details {
    margin-bottom: 10px;
    padding-inline: 22px;
    border: 1px solid #dce1eb;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 7px 20px rgba(26, 38, 73, .035);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 640;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--blue);
    font-size: 20px;
    font-weight: 400;
    transition: transform .2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: -2px 40px 24px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.support-note {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 55px;
    margin-bottom: 50px;
    padding: 38px;
    background: #0d1530;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(21, 33, 70, .1);
}

.support-note h2 {
    color: #fff;
}

.support-note p {
    margin: 0 0 16px;
    color: #aeb8ca;
}

.support-note a {
    color: #fff !important;
    text-decoration-color: #7e8aa4 !important;
}

.security-note {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 26px;
    padding: 24px 26px;
    border: 1px solid #dce1eb;
    border-radius: 12px;
    background: var(--white);
}

.security-note strong {
    color: var(--blue);
}

.security-note p {
    margin: 0;
    font-size: 15px;
}

.contact-details {
    max-width: 700px;
    padding: 65px 0 40px;
}

.support-content > .contact-details {
    max-width: none;
    margin-top: 15px;
    padding: 31px 34px 34px;
    border: 1px solid #dce1eb;
    border-radius: 14px;
    background: var(--white);
}

.contact-details address {
    margin-top: 24px;
    color: #737985;
    font-size: 14px;
    font-style: normal;
}

.warning-panel {
    margin-bottom: 25px;
    padding: 32px !important;
    border: 1px solid #e2aaa2 !important;
    border-radius: 14px !important;
    background: #fff4f0;
}

.warning-panel .section-label {
    color: #a23e35;
    margin-bottom: 13px;
}

.instruction-list {
    margin: 28px 0 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.instruction-list li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 24px;
    margin: 0;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.instruction-list li > span {
    color: var(--blue);
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
}

.instruction-list h3 {
    margin: 0 0 3px;
}

.instruction-list p {
    margin: 0;
}

.not-found {
    min-height: 610px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--white);
}

.not-found p:not(.section-label) {
    max-width: 520px;
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 18px;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-poster {
        width: min(440px, 100%);
        min-height: 0;
        justify-self: center;
        margin-inline: auto;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .section-heading > p:last-child {
        margin-top: 26px;
    }

    .feature-ledger article {
        grid-template-columns: 52px 1fr 1.2fr 42px;
        gap: 20px;
    }

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

    .privacy-rule {
        display: none;
    }

    .footer-main {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 26px;
    }
}

@media (max-width: 760px) {
    .site-shell,
    .narrow-shell {
        width: min(100% - 30px, var(--content-width));
    }

    .header-row {
        min-height: 66px;
        grid-template-columns: 1fr auto auto;
        gap: 18px;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .brand {
        font-size: 17px;
    }

    .menu-button {
        width: 36px;
        height: 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 8px;
        cursor: pointer;
    }

    .menu-button > span:not(.sr-only) {
        width: 100%;
        height: 1px;
        background: var(--ink);
    }

    .primary-nav {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 15px 14px;
        border-bottom: 1px solid var(--ink);
        background: var(--paper);
    }

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

    .primary-nav a {
        padding: 14px 5px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav a::after {
        display: none;
    }

    .header-download {
        font-size: 13px;
    }

    .home-hero {
        padding: 57px 0 72px;
    }

    .hero-grid {
        gap: 62px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 11vw, 50px);
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-poster {
        width: min(340px, 100%);
        min-height: 0;
        box-shadow: none;
    }

    .poster-caption span {
        display: none;
    }

    .statement-row {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 24px;
        gap: 15px;
    }

    .statement-row ul {
        gap: 13px 20px;
    }

    .feature-section {
        padding: 82px 0 90px;
    }

    .section-heading {
        margin-bottom: 44px;
    }

    .section-heading h2,
    .privacy-copy h2,
    .page-intro h1 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .feature-ledger article {
        grid-template-columns: 42px 1fr 38px;
        gap: 14px;
        padding: 22px 0;
    }

    .feature-ledger article:hover {
        padding-inline: 6px;
    }

    .feature-ledger p {
        grid-column: 2 / -1;
    }

    .privacy-section {
        padding: 72px 0;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .privacy-facts p {
        grid-template-columns: 110px 1fr;
    }

    .download-section {
        padding: 66px 0;
    }

    .download-layout {
        grid-template-columns: 76px 1fr;
        gap: 22px;
    }

    .download-layout img {
        width: 76px;
        height: 76px;
        border-radius: 18px;
    }

    .download-layout .button {
        grid-column: 1 / -1;
        margin-top: 10px;
    }

    .download-layout .store-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-identity {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .page-intro {
        padding: 28px 0 12px;
    }

    .page-intro > .site-shell {
        padding: 38px 26px 36px;
        border-radius: 13px;
    }

    .page-intro > div > p:not(.section-label) {
        font-size: 17px;
    }

    .legal-content,
    .support-content {
        padding-top: 14px;
    }

    .legal-content > section,
    .legal-content > section:first-child {
        padding: 25px 22px 27px;
        border-radius: 12px;
    }

    .owner-panel {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 60px;
        padding: 26px 23px;
        border-radius: 12px;
    }

    .owner-panel address {
        align-items: flex-start;
    }

    .contact-strip,
    .faq-section,
    .support-note {
        grid-template-columns: 1fr;
    }

    .contact-strip a + a {
        border-top: 1px solid #d7deea;
        border-left: 0;
    }

    .faq-section {
        gap: 26px;
        padding: 62px 0;
    }

    .support-note {
        gap: 18px;
        padding: 28px 23px;
        border-radius: 12px;
    }

    .security-note {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}
