:root {
    --brd-bg-amber: #ea295f;
    --brd-bg-lilac: #ff5d8a;
    --brd-bg-pink: #ff8fb1;
    --brd-bg-purple: #b41345;
    --brd-black: #111827;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
    background: #f9fafb;
    color: var(--brd-black);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bg-gradient-hero {
    background: radial-gradient(circle at top left,
            var(--brd-bg-amber),
            transparent 55%),
        radial-gradient(circle at top right,
            var(--brd-bg-lilac),
            transparent 55%),
        radial-gradient(circle at bottom right,
            var(--brd-bg-pink),
            transparent 55%),
        #fff1f6;
}

.rounded-3xl {
    border-radius: 1.75rem;
}

.rounded-4xl {
    border-radius: 2.5rem;
}

.shadow-soft {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.text-4xl {
    font-size: clamp(2.3rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
}

.font-display {
    font-weight: 700;
}

.btn-app-store {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    text-decoration: none;
    line-height: 0;
}

.btn-app-store:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 4px;
}

.app-store-badge {
    display: block;
    height: 50px;
    width: auto;
}

.badge-pill {
    border-radius: 999px;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
}

/* Hero mock image */
.hero-mock {
    width: min(360px, 80vw);
    height: auto;
    border-radius: 1.75rem;
    /*box-shadow: 0 32px 70px rgba(15, 23, 42, 0.45);*/
    display: block;
}

/* Feature cards */
.feature-card {
    background: #fefce8;
    border-radius: 1.6rem;
    padding: 1.6rem;
    height: 100%;
}

.feature-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.8rem;
    background: #f97316;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.section-pill {
    background: #e0f2fe;
    color: #0f172a;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.2rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

footer {
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

footer a {
    text-decoration: none;
    color: #4b5563;
}

footer a:hover,
footer a:focus-visible {
    text-decoration: underline;
    color: #111827;
}