:root {
    --bg-main: #090d13;
    --bg-soft: #101826;
    --panel: rgba(19, 28, 44, 0.8);
    --panel-border: rgba(170, 194, 230, 0.22);
    --text-primary: #edf4ff;
    --text-muted: #a6bbd9;
    --text-soft: #7f95b8;
    --accent: #4ec9b0;
    --accent-strong: #1cb5a3;
    --accent-ink: #082019;
    --ring: rgba(78, 201, 176, 0.34);
    --nav-height: 76px;
    --container: 1160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(39, 87, 145, 0.35), transparent 46%),
        radial-gradient(circle at 86% 24%, rgba(78, 201, 176, 0.16), transparent 40%),
        linear-gradient(180deg, #090d13 0%, #0b121e 48%, #090d13 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(170, 194, 230, 0.12);
    backdrop-filter: blur(14px);
    background: rgba(9, 13, 19, 0.74);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-app {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text-primary);
}

.brand-company {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.company-mark-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 8px;
    opacity: 0.9;
    transition: opacity 140ms ease, transform 140ms ease;
}

.company-mark-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.company-mark {
    display: block;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.35));
}

.company-mark-nav {
    height: 40px;
    max-width: 210px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 600;
}

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

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: var(--accent-ink) !important;
    font-weight: 800 !important;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 74px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero-chip {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(170, 194, 230, 0.2);
    background: rgba(21, 32, 51, 0.72);
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    max-width: 620px;
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 46px;
    padding: 0 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.app-store-badge-link {
    display: inline-flex;
    align-items: center;
}

.app-store-badge,
.play-store-badge {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(170, 194, 230, 0.3);
    background: rgba(20, 31, 50, 0.64);
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.coming-soon {
    border-color: rgba(78, 201, 176, 0.45);
    color: #d8fff6;
}

.btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--accent-ink);
    background: linear-gradient(140deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid rgba(170, 194, 230, 0.26);
    background: rgba(20, 31, 50, 0.56);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: rgba(78, 201, 176, 0.58);
    color: #d0fff4;
}

.hero-points {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.hero-points li {
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
    font-size: 0.98rem;
}

.hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent), #7de5d2);
    box-shadow: 0 0 16px var(--ring);
}

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

.app-card {
    width: min(420px, 100%);
    border-radius: 26px;
    padding: 22px;
    border: 1px solid var(--panel-border);
    background: linear-gradient(165deg, rgba(22, 34, 54, 0.95), rgba(13, 20, 34, 0.88));
    box-shadow: 0 24px 60px rgba(2, 7, 16, 0.65);
    animation: card-enter 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.app-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.app-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
}

.app-card-title {
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}

.app-card-subtitle {
    color: var(--text-soft);
    font-size: 0.85rem;
}

.mockup-screen {
    border-radius: 16px;
    border: 1px solid rgba(170, 194, 230, 0.16);
    background: linear-gradient(180deg, rgba(17, 28, 43, 0.9), rgba(10, 16, 27, 0.95));
    padding: 16px;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.mockup-row strong {
    color: #ddfff8;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.mockup-chart {
    margin-top: 8px;
    height: 90px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(78, 201, 176, 0.26), rgba(78, 201, 176, 0.02)),
        repeating-linear-gradient(to right,
            rgba(170, 194, 230, 0.08),
            rgba(170, 194, 230, 0.08) 1px,
            transparent 1px,
            transparent 32px);
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    left: -20%;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: sweep 2600ms linear infinite;
}

.features {
    padding: 68px 0 18px;
}

.section-title {
    text-align: center;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 44px;
    letter-spacing: -0.01em;
}

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

.glass-card {
    border-radius: 16px;
    border: 1px solid var(--panel-border);
    background: var(--panel);
    backdrop-filter: blur(10px);
    padding: 24px;
    transition: transform 160ms ease, border-color 160ms ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(78, 201, 176, 0.54);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
}

.store-highlights {
    padding: 54px 0 12px;
}

.store-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.store-chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(170, 194, 230, 0.2);
    background: rgba(20, 31, 50, 0.5);
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.store-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.store-details-grid h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.store-details-grid p {
    color: var(--text-muted);
}

.download {
    padding: 30px 0 24px;
}

.download-card {
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(170, 194, 230, 0.2);
    background: linear-gradient(140deg, rgba(22, 33, 53, 0.9), rgba(14, 22, 35, 0.78));
    padding: 42px 22px;
}

.download-card h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    margin-bottom: 10px;
}

.download-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.page-content {
    padding: 56px 24px;
    min-height: 60vh;
}

.page-content h1 {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

.last-updated {
    color: var(--text-soft);
    margin-bottom: 34px;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.policy-section p,
.policy-section li {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.policy-section ul {
    list-style-position: outside;
    margin-left: 18px;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.footer {
    margin-top: 48px;
    padding: 42px 0 26px;
    border-top: 1px solid rgba(170, 194, 230, 0.14);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-top: 10px;
    color: var(--text-soft);
}

.footer-brand-mark .brand-icon {
    width: 34px;
    height: 34px;
}

.company-mark-footer {
    height: 34px;
    margin-top: 12px;
    max-width: 220px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: #dbfff8;
}

.footer-bottom {
    text-align: center;
    color: var(--text-soft);
    font-size: 0.85rem;
}

@keyframes card-enter {
    0% {
        transform: translateY(20px) scale(0.98);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes sweep {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(350%);
    }
}

@media (max-width: 980px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }

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

    .hero-content {
        text-align: center;
    }

    .hero-chip {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-points {
        text-align: left;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .store-details-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        justify-content: flex-start;
    }

    .company-mark-link {
        margin-left: 0;
        margin-right: 0;
    }

    .company-mark-nav {
        height: 34px;
        max-width: 180px;
    }
}

@media (max-width: 760px) {
    .navbar {
        height: auto;
        padding: 12px 0;
    }

    .navbar .container {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .company-mark-nav {
        height: 30px;
        max-width: 170px;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero {
        padding-top: 56px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .app-store-badge-link {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
