:root {
    --bg: #0f1113;
    --card: rgba(255, 255, 255, 0.03);
    --muted: #bdbdbd;
    --accent: #6c5b7b;
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 14px;
}

html, body {
    height: 100%;
    margin: 0;
    background: linear-gradient(180deg, #0b0c0d 0%, #0f1113 100%);
    color: #fff;
    font-family: Inter, system-ui, Arial;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px;
}

/* header */
header.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;   /* keeps logo proportions */
    box-shadow: 0 6px 22px rgba(0,0,0,0.5);
    background: none;
}


.brand h1 {
    font-family: Pacifico;
    margin: 0;
    font-size: 20px;
    color: var(--accent)
}

.brand p {
    margin: 0;
    font-size: 12px;
    color: var(--muted)
}

.top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-cta {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 10px;
}

/* hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
    margin-top: 12px;
}

.hero-left {
    padding: 22px 12px;
}

.kicker {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-family: Pacifico;
    font-size: 48px;
    margin: 0 0 10px;
    color: var(--accent);
    line-height: 1;
}

.subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 60ch;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
}

.playstore {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, #1f1f1f, #151515);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.playstore img {
    height: 26px;
}

.small-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

/* hero-right - mockup */
.mockup {
    background: var(--card);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.phone {
    width: 220px;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #000; /* fallback */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 0; /* remove bezel */
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 0; /* no inner corner rounding */
    background: url('assets/img/phone-art.png') center/cover no-repeat;
}

.phone .controls {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.mini {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--glass);
    display: grid;
    place-items: center;
    color: var(--accent);
}

/* features */
.features {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.feature {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature h3 {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 15px
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

/* screenshots strip */
.screens {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    overflow: hidden;
    padding-bottom: 8px;
}

.screens img {
    width: 160px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* footer / details */
.details {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-detail {
    background: var(--card);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-size: 13px;
}

footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
}

/* responsive */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr 320px;
    }

    .title {
        font-size: 40px;
    }
}

@media (max-width: 740px) {
    .hero {
        grid-template-columns: 1fr;
        padding-bottom: 18px;
    }

    .mockup {
        order: -1;
        margin-bottom: 18px;
    }

    .screens {
        justify-content: center;
    }

    .features {
        grid-template-columns: repeat(1, 1fr);
    }
}