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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ── Header ────────────────────────── */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav { display: flex; gap: 28px; }

nav a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .15s;
}
nav a:hover { color: #111; }

/* ── Hero ───────────────────────────── */

.hero {
    text-align: center;
    padding: 80px 32px 120px;
    max-width: 720px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 76px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #E63946, #F4A261, #E9C46A, #2A9D8F, #264653, #9B5DE5, #F15BB5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shift 8s ease infinite;
}
@keyframes shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* ── Buttons ────────────────────────── */

.pill {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 18px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.3px;
    transition: background .2s, transform .2s;
}
.pill:hover {
    background: #333;
    transform: scale(1.03);
}

/* ── Screenshot Blocks ──────────────── */

.shot-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 32px;
    gap: 40px;
}
.shot-block.alt {
    background: #fafafa;
}

.shot-wrap {
    position: relative;
    width: min(85vw, 420px);
}

.shot-wrap img {
    display: block;
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,.10), 0 8px 24px rgba(0,0,0,.06);
    transition: transform .3s;
}
.shot-wrap:hover img {
    transform: scale(1.02);
}

.shot-label {
    text-align: center;
    max-width: 480px;
}

.shot-label em {
    display: block;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #bbb;
    margin-bottom: 8px;
}

.shot-label h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.shot-label p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* ── CTA ────────────────────────────── */

.cta {
    text-align: center;
    padding: 100px 32px 120px;
    background: #fafafa;
}
.cta h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 36px;
}

/* ── Footer ─────────────────────────── */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    max-width: 1300px;
    margin: 0 auto;
    font-size: 14px;
    color: #aaa;
}
footer a { color: #888; text-decoration: none; }
footer a:hover { color: #111; }

/* ── Legal pages ────────────────────── */

.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 32px 80px;
}
.legal-page h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.legal-page .last-updated { color: #999; margin-bottom: 48px; font-size: 14px; }
.legal-page section { margin-bottom: 40px; }
.legal-page h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.legal-page h3 { font-size: 17px; font-weight: 600; margin-top: 24px; margin-bottom: 10px; }
.legal-page p  { font-size: 15px; color: #444; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; margin-bottom: 12px; }
.legal-page li { font-size: 15px; color: #444; margin-bottom: 8px; }
.legal-page a  { color: #111; text-decoration: underline; }

/* ── Responsive ─────────────────────── */

@media (max-width: 600px) {
    header { padding: 20px 20px; }
    .hero { padding: 60px 20px 80px; }
    .hero p { font-size: 17px; }

    .shot-block { padding: 56px 20px; gap: 28px; }
    .shot-wrap { width: min(90vw, 340px); }
    .shot-wrap img { border-radius: 32px; }

    .shot-label p { font-size: 15px; }

    .cta { padding: 72px 20px; }

    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px 20px;
    }

    .legal-page { padding: 40px 20px 60px; }
    .legal-page h1 { font-size: 32px; }
}
