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

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Coming soon overlay ─── */
body.coming-soon {
    overflow: hidden;
}
.page-blur {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: scale(1.03);
    transform-origin: center;
    pointer-events: none;
    user-select: none;
}
.coming-soon-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.72));
}
.cs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 480px;
    padding: 48px 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 80px rgba(64, 167, 193, 0.22), 0 8px 24px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.cs-icon {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(64, 167, 193, 0.28);
    margin-bottom: 24px;
}
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #02B5A1;
    margin-bottom: 18px;
}
.cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #02B5A1;
    animation: pulse-glow 2s ease-in-out infinite;
}
.cs-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1D1D1D;
    line-height: 1.05;
    margin-bottom: 16px;
}
.cs-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #6e6e73;
}
@media (max-width: 768px) {
    .cs-card {
        padding: 40px 24px;
        border-radius: 32px;
    }
    .cs-title {
        font-size: 40px;
    }
    .cs-sub {
        font-size: 15px;
    }
    .cs-icon {
        width: 72px;
        height: 72px;
    }
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(64, 167, 193, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.nav-title {
    font-weight: 700;
    font-size: 18px;
    color: #1D1D1D;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #40A7C1, #02B5A1);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 18px;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
}
.nav-cta:hover {
    transform: scale(1.03) translateY(-1px);
    box-shadow: 0 6px 18px rgba(2, 181, 161, 0.28);
}

@media (max-width: 768px) {
    .navbar {
        gap: 16px;
        padding: 10px 18px;
    }
    .nav-cta {
        font-size: 13px;
        padding: 6px 14px;
    }
}

/* ─── Hero ─── */
.container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 100px;
    padding-top: 120px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.left-content {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    color: #1D1D1D;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(270deg, #40A7C1, #02B5A1, #40A7C1, #02B5A1);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 20px;
    color: #6e6e73;
    line-height: 1.5;
    margin-bottom: 40px;
}

.download-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #02B5A1;
    font-weight: 600;
}

.coming-soon-dot {
    width: 8px;
    height: 8px;
    background-color: #02B5A1;
    border-radius: 50%;
    display: inline-block;
}

.download-btn {
    background: linear-gradient(90deg, #40A7C1, #02B5A1);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(2, 181, 161, 0.32);
}

.apple-icon {
    font-size: 22px;
}

/* ─── Hero visual (icon + gradient glow + floating stat chips) ─── */
.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(2, 181, 161, 0.38), rgba(64, 167, 193, 0.20) 45%, transparent 70%);
    filter: blur(28px);
    z-index: 0;
}

/* Raw app screenshot gets a faux device bezel */
.phone-screenshot {
    position: relative;
    z-index: 1;
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 10px solid #1D1D1D;
    border-radius: 48px;
    box-shadow: 0 30px 70px rgba(64, 167, 193, 0.28), 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ─── Footer ─── */
.footer-wrap {
    background-color: #1D1D1D;
}
footer {
    background-color: #FFFFFF;
    padding: 0;
    border-top: 1px solid rgba(29, 29, 29, 0.06);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 100px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    max-width: 360px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.footer-name {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1D;
}
.footer-desc {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.5);
    line-height: 1.6;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1D1D1D;
    margin-bottom: 4px;
}
.footer-col a {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #40A7C1;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(29, 29, 29, 0.1);
}
.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(29, 29, 29, 0.4);
    letter-spacing: 0.05em;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #02B5A1;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(2, 181, 161, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(2, 181, 161, 0); }
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(29, 29, 29, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 40px 30px;
        padding-top: 100px;
        text-align: center;
    }

    .left-content {
        max-width: 100%;
    }

    .right-content {
        margin-top: 60px;
    }

    h1 {
        font-size: 56px;
    }

    .download-row {
        justify-content: center;
    }

    .footer-inner {
        padding: 48px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
        padding-top: 100px;
    }
    h1 {
        font-size: 34px;
    }
    .tagline {
        font-size: 17px;
    }
    .phone-screenshot {
        max-width: 240px;
        border-width: 8px;
        border-radius: 40px;
    }
    .hero-glow {
        width: 300px;
        height: 300px;
    }
}
