:root {
    --bg: #fff7f0;
    --bg-soft: #fff0ea;
    --card: rgba(255, 255, 255, .82);
    --text: #3a1824;
    --muted: #8d5960;
    --brand: #ff4e33;
    --brand-dark: #bf3518;
    --orange: #ff8a24;
    --pink: #ff5b92;
    --line: rgba(100, 42, 45, .12);
    --shadow: 0 24px 70px rgba(116, 36, 19, .18);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 91, 146, .2), transparent 28rem),
        radial-gradient(circle at 90% 0%, rgba(255, 138, 36, .28), transparent 30rem),
        var(--bg);
}

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

img {
    display: block;
    max-width: 100%;
}

.page {
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 247, 240, .78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav_inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer_brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -.04em;
}

.brand img,
.footer_brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(255, 78, 51, .28);
}

.nav_links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.nav_links a:hover {
    color: var(--brand-dark);
}

.nav_cta,
.primary_btn,
.secondary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 900;
}

.nav_cta,
.primary_btn {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    box-shadow: 0 14px 34px rgba(255, 78, 51, .28);
}

.secondary_btn {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
}

.hero {
    position: relative;
    padding: 74px 0 82px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 78, 51, .17) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, transparent 80%);
}

.hero_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
    align-items: center;
    gap: 56px;
}

.eyebrow,
.section_head span,
.download_inner span {
    display: inline-flex;
    width: fit-content;
    color: var(--brand-dark);
    background: rgba(255, 78, 51, .1);
    border: 1px solid rgba(255, 78, 51, .18);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(46px, 7vw, 82px);
    line-height: .94;
    letter-spacing: -.07em;
}

.hero p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.65;
}

.hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero_stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero_stats div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .58);
}

.hero_stats strong,
.hero_stats span {
    display: block;
}

.hero_stats strong {
    font-size: 22px;
}

.hero_stats span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero_visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.hero_shot {
    width: 56%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.hero_shot_back {
    position: absolute;
    left: 4%;
    top: 0;
    width: 50%;
    transform: rotate(-7deg);
    opacity: .96;
}

.hero_shot_front {
    position: relative;
    transform: rotate(4deg);
}

.section {
    padding: 86px 0;
}

.section_head {
    max-width: 680px;
    margin-bottom: 34px;
}

.section_head h2,
.download_inner h2 {
    margin: 16px 0 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -.06em;
}

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

.feature_card {
    min-height: 190px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 18px 50px rgba(116, 36, 19, .08);
}

.feature_card strong {
    display: block;
    font-size: 22px;
    letter-spacing: -.04em;
}

.feature_card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.screens_section {
    background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 240, 234, .72));
}

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

.screen_card {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.screen_card img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.screen_card figcaption {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.download_band {
    padding: 46px 0;
}

.download_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    color: #fff;
    border-radius: 36px;
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 255, 255, .28), transparent 18rem),
        linear-gradient(135deg, var(--brand), var(--orange));
    box-shadow: var(--shadow);
}

.download_inner span {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .22);
}

.primary_btn.light {
    color: var(--brand-dark);
    background: #fff;
}

.footer {
    padding: 54px 0 26px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .46);
}

.footer_top {
    display: grid;
    grid-template-columns: 1fr 180px 220px;
    gap: 34px;
}

.footer_about {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.6;
}

.footer_col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_col h4 {
    margin: 0 0 6px;
}

.footer_col a {
    color: var(--muted);
    font-weight: 700;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 20px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.main {
    padding: 54px 0 86px;
}

.legal_shell {
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 91, 146, .18), transparent 30rem),
        radial-gradient(circle at 100% 10%, rgba(255, 138, 36, .2), transparent 28rem);
}

.legal {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 36px;
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--shadow);
}

.legal h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: .96;
    letter-spacing: -.07em;
}

.legal .meta {
    display: inline-flex;
    margin: 18px 0 28px;
    color: var(--brand-dark);
    background: rgba(255, 78, 51, .1);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 900;
}

.legal h2 {
    margin: 34px 0 12px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.legal p,
.legal li {
    color: var(--muted);
    line-height: 1.76;
}

.legal ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.legal strong,
.legal a {
    color: var(--text);
}

@media (max-width: 900px) {
    .hero_grid,
    .feature_grid,
    .footer_top {
        grid-template-columns: 1fr;
    }
    .hero {
        padding-top: 48px;
    }
    .hero_visual {
        min-height: 520px;
    }
    .screens_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1120px);
    }
    .nav_inner,
    .download_inner,
    .footer_bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .nav_links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .hero_stats {
        grid-template-columns: 1fr;
    }
    .hero_visual {
        min-height: 440px;
    }
    .hero_shot {
        border-radius: 22px;
    }
    .screens_grid {
        gap: 12px;
    }
    .download_inner {
        padding: 28px;
        border-radius: 28px;
    }
}
