:root {
    --primary: #007aff;
    --primary-dark: #075bc2;
    --navy: #17324d;
    --navy-deep: #0b2137;
    --text: #53697d;
    --muted: #7890a4;
    --surface: #ffffff;
    --surface-soft: #f3f8fc;
    --surface-blue: #eaf5fc;
    --line: rgba(23, 50, 77, 0.1);
    --gold: #fbbf24;
    --shadow: 0 28px 70px rgba(30, 73, 105, 0.16);
    --shadow-soft: 0 14px 38px rgba(30, 73, 105, 0.11);
    --radius: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Manrope",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--navy);
    background: var(--surface);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

.material-symbols-rounded {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 50, 77, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-placeholder {
    width: 48px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(0, 122, 255, 0.35);
    border-radius: 14px;
    background: var(--surface-blue);
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.logo-placeholder-small {
    width: 40px;
    border-radius: 12px;
}

.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.nav-links a,
.footer-links a {
    transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--primary);
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

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

.button-small {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 14px;
}

.button-secondary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 33, 55, 0.16);
}

.button-light {
    background: #fff;
    color: var(--navy-deep);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 88px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(152, 193, 217, 0.25),
            transparent 34%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -34% 36%;
    height: 620px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.1),
        rgba(152, 193, 217, 0.18)
    );
    z-index: -2;
    transform: rotate(-8deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 70px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow .material-symbols-rounded {
    font-size: 19px;
}

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

h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.052em;
}

h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.hero-text,
.section-heading > p,
.split-copy > p,
.pro-copy > p,
.download-card > div > p {
    color: var(--text);
    font-size: 18px;
}

.language-menu {
    position: relative;
    flex: 0 0 auto;
}

.language-button {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--navy);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background 160ms ease;
}

.language-button:hover {
    border-color: rgba(0, 122, 255, 0.3);
    background: var(--surface-soft);
}

.language-button .material-symbols-rounded {
    font-size: 19px;
}

.language-arrow {
    transition: transform 160ms ease;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1000;
    min-width: 165px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.language-menu.open .language-dropdown {
    display: grid;
}

.language-menu.open .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.language-dropdown a:hover,
.language-dropdown a.active {
    background: var(--surface-blue);
    color: var(--primary);
}

.hero-text {
    max-width: 630px;
    margin-bottom: 34px;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.official-store-badge {
    display: block;
    height: 56px;
    width: auto;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    color: var(--text);
    font-size: 13px;
}

.hero-proof p {
    margin: 0;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    width: 32px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin-left: -8px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--surface-blue);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.hero-visual,
.mockup-stage {
    position: relative;
    min-height: 580px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    width: 340px;
    aspect-ratio: 828 / 1792;
    height: auto;
    padding: 0;
    border: 7px solid #132c43;
    border-radius: 48px;
    overflow: hidden;
    background: #132c43;
    transform: none;
}

.phone-notch {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 50%;
    width: 92px;
    height: 25px;
    border-radius: 999px;
    background: #132c43;
    transform: translateX(-50%);
}

.phone-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 35px;
    background:
        linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.86),
            rgba(235, 245, 252, 0.96)
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(0, 122, 255, 0.03) 0,
            rgba(0, 122, 255, 0.03) 10px,
            transparent 10px,
            transparent 20px
        );
    color: var(--primary);
    text-align: center;
}

.phone-placeholder-primary {
    background:
        linear-gradient(
            155deg,
            rgba(235, 247, 255, 0.98),
            rgba(212, 235, 250, 0.98)
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(0, 122, 255, 0.04) 0,
            rgba(0, 122, 255, 0.04) 10px,
            transparent 10px,
            transparent 20px
        );
}

.phone-placeholder .material-symbols-rounded {
    font-size: 48px;
}

.phone-placeholder strong {
    font-size: 15px;
    letter-spacing: 0.08em;
}

.phone-placeholder small {
    max-width: 160px;
    color: var(--text);
}

.phone-back {
    left: 78px;
    top: 35px;
    transform: rotate(-9deg) scale(0.9);
    opacity: 0.92;
}

.phone-front {
    right: 70px;
    top: 0;
    z-index: 2;
    transform: rotate(5deg);
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 39px;
}

.visual-orbit,
.shape {
    position: absolute;
    border-radius: 50%;
}

.visual-orbit {
    border: 1px solid rgba(0, 122, 255, 0.14);
}

.orbit-one {
    width: 520px;
    height: 520px;
}

.orbit-two {
    width: 390px;
    height: 390px;
    border-style: dashed;
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(4px);
}

.hero-glow-one {
    top: 16%;
    right: 8%;
    width: 190px;
    height: 190px;
    background: rgba(0, 122, 255, 0.1);
}

.hero-glow-two {
    right: 38%;
    bottom: 10%;
    width: 120px;
    height: 120px;
    background: rgba(251, 191, 36, 0.1);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.89);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.floating-card > .material-symbols-rounded {
    width: 40px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--surface-blue);
    color: var(--primary);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card small {
    color: var(--muted);
    font-size: 11px;
}

.floating-card-top {
    top: 53px;
    right: 0;
}

.floating-card-bottom {
    bottom: 52px;
    left: 5px;
}

.logo-strip {
    border-block: 1px solid var(--line);
    background: #fff;
}

.logo-strip-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    overflow-x: auto;
    color: #7890a4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.section {
    padding: 118px 0;
}

.section-tinted {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

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

.section-heading > p {
    max-width: 620px;
    margin-inline: auto;
}

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

.feature-card {
    min-height: 220px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(30, 73, 105, 0.06);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    flex: 0 0 auto;
    width: 56px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--surface-blue);
    color: var(--primary);
}

.feature-icon .material-symbols-rounded {
    font-size: 29px;
}

.feature-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 95px;
}

.split-reverse .mockup-stage {
    order: 2;
}

.mockup-stage {
    display: grid;
    place-items: center;
    min-height: 640px;
    border-radius: 40px;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.95),
            transparent 28%
        ),
        linear-gradient(145deg, #dceefa, #eef7fc);
    overflow: hidden;
}

.phone-section {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    right: auto;
    transform: rotate(-4deg);
}

.phone-section-alt {
    transform: rotate(4deg);
}

.shape-one {
    width: 360px;
    height: 360px;
    background: rgba(0, 122, 255, 0.08);
}

.shape-two {
    top: 70px;
    right: 35px;
    width: 110px;
    height: 110px;
    border: 25px solid rgba(255, 255, 255, 0.65);
}

.shape-three {
    width: 430px;
    height: 430px;
    border: 1px dashed rgba(0, 122, 255, 0.25);
}

.split-copy {
    max-width: 535px;
}

.split-copy > p {
    margin-bottom: 32px;
}

.mini-feature-list {
    display: grid;
    gap: 22px;
}

.mini-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mini-feature > .material-symbols-rounded {
    width: 44px;
    aspect-ratio: 1;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 9px 25px rgba(30, 73, 105, 0.08);
}

.mini-feature h3 {
    margin-bottom: 3px;
    font-size: 16px;
}

.mini-feature p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
}

.text-link .material-symbols-rounded {
    transition: transform 160ms ease;
}

.text-link:hover .material-symbols-rounded {
    transform: translateX(4px);
}

.floating-card-section {
    right: 16px;
    bottom: 74px;
}

.pro-section {
    padding-top: 50px;
}

.pro-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: center;
    gap: 70px;
    min-height: 650px;
    padding: 70px 75px;
    border-radius: 38px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(152, 193, 217, 0.22),
            transparent 30%
        ),
        linear-gradient(135deg, #0b2137, #173c5f);
    color: #fff;
    overflow: hidden;
}

.pro-card::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.eyebrow-dark {
    color: #8fc8ff;
}

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

.pro-copy > p {
    color: rgba(255, 255, 255, 0.72);
}

.pro-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.pro-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.pro-list .material-symbols-rounded {
    color: #8fc8ff;
}

.pro-visual {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center;
}

.phone-pro {
    position: relative;
    z-index: 2;
    top: auto;
    right: auto;
    left: auto;
    transform: rotate(5deg);
}

.pro-badge {
    position: absolute;
    z-index: 4;
    right: -5px;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--gold);
    color: #3f2b00;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.download-section {
    padding-bottom: 100px;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 58px 65px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(0, 122, 255, 0.13),
            transparent 36%
        ),
        var(--surface-soft);
}

.download-card > div:first-child {
    max-width: 690px;
}

.download-card h2 {
    font-size: clamp(34px, 4vw, 50px);
}

footer {
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--text);
    font-size: 13px;
}

.footer-inner p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-weight: 700;
}

/* Lightweight entrance animation */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-copy {
        max-width: 760px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-text {
        margin-inline: auto;
    }

    .store-buttons,
    .hero-proof {
        justify-content: center;
    }

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

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

    .split-section {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .split-copy {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .mini-feature-list {
        max-width: 560px;
        margin-inline: auto;
        text-align: left;
    }

    .split-reverse .mockup-stage {
        order: 0;
    }

    .pro-card {
        grid-template-columns: 1fr;
    }

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

    .pro-visual {
        min-height: 570px;
    }

    .download-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header {
        position: relative;
    }

    .nav {
        min-height: 68px;
    }

    .nav-links {
        display: none;
    }

    .brand span {
        font-size: 14px;
    }

    h1 {
        font-size: clamp(44px, 14vw, 62px);
    }

    h2 {
        font-size: 38px;
    }

    .hero-text,
    .section-heading > p,
    .split-copy > p,
    .pro-copy > p,
    .download-card > div > p {
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 56px 0 30px;
        overflow: hidden;
    }

    .hero-grid {
        display: block;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
    }

    .hero-visual {
        width: 100%;
        max-width: 340px;
        min-height: 435px;
        margin: 28px auto 0;
        transform: none;
    }

    .phone-front {
        width: 190px;
        right: 4px;
    }

    .phone-back {
        width: 160px;
        top: 42px;
        left: 3px;
    }

    .floating-card-top {
        top: 18px;
        right: -4px;
        transform: scale(0.68);
    }

    .floating-card-bottom {
        bottom: 18px;
        left: -4px;
        transform: scale(0.68);
    }

    .orbit-one {
        width: 285px;
        height: 285px;
    }

    .orbit-two {
        width: 220px;
        height: 220px;
    }

    .hero-visual .phone {
        height: auto;
        padding: 7px;
        border-width: 6px;
        border-radius: 38px;
    }

    .hero-visual .phone-screenshot {
        border-radius: 29px;
    }

    .phone-front {
        width: 220px;
        aspect-ratio: 828 / 1792;
        top: 0;
        right: 12px;
        left: auto;
        transform: rotate(3deg);
    }

    .phone-back {
        width: 185px;
        aspect-ratio: 828 / 1792;
        top: 48px;
        left: 10px;
        right: auto;
        transform: rotate(-4deg);
    }

    .floating-card-top {
        top: 32px;
        right: -2px;
        transform: scale(0.78);
        transform-origin: top right;
    }

    .floating-card-bottom {
        bottom: 24px;
        left: -2px;
        transform: scale(0.78);
        transform-origin: bottom left;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 250px;
        height: 250px;
    }

    .logo-strip-inner {
        justify-content: flex-start;
    }

    .section {
        padding: 88px 0;
    }

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

    .feature-card {
        min-height: auto;
    }

    .mockup-stage {
        min-height: 570px;
    }

    .pro-card {
        padding: 48px 26px;
        border-radius: 28px;
    }

    .download-card {
        padding: 40px 26px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 0;
    }
}

@media (max-width: 520px) {
    .button-small {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .store-buttons {
        width: 100%;
    }

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .hero-proof {
        align-items: flex-start;
        text-align: left;
    }

    .hero-visual {
        min-height: 485px;
        margin-top: -22px;
        transform: scale(0.72);
        transform-origin: center top;
    }

    .feature-card {
        padding: 24px;
    }

    .mockup-stage {
        min-height: 520px;
    }

    .phone-section {
        transform: rotate(-3deg) scale(0.86);
    }

    .phone-section-alt {
        transform: rotate(3deg) scale(0.86);
    }

    .floating-card-section {
        right: -8px;
        bottom: 38px;
    }

    .pro-visual {
        min-height: 500px;
        transform: scale(0.86);
        transform-origin: center top;
    }

    .download-card .store-buttons {
        width: 100%;
    }
}

.legal-section {
    padding-top: 140px;
}

.legal-container {
    max-width: 860px;
}

.legal-content {
    margin-top: 40px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(41, 50, 65, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(4, 7, 38, 0.06);
}

.legal-content h2 {
    margin: 36px 0 12px;
    color: #293241;
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 18px;
    color: #6c757d;
    line-height: 1.75;
}

.legal-content ul {
    margin: 0 0 22px;
    padding-left: 22px;
    color: #6c757d;
    line-height: 1.75;
}

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

.legal-content a {
    color: #007aff;
    font-weight: 600;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .legal-section {
        padding-top: 110px;
    }

    .legal-content {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }
}

.store-badges-disabled {
    pointer-events: none;
}

.store-badge-disabled {
    position: relative;
    opacity: 0.45;
    filter: grayscale(1);
}

.download-note {
    margin-top: 14px;
    color: #6c757d;
    font-size: 0.95rem;
}

.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
    font-size: 0.85rem;
    font-weight: 700;
}
