:root {
    --bg: #f2f3f1;
    --panel: #ffffff;
    --ink: #111111;
    --muted: #777a74;
    --line: #e3e5df;
    --mint: #5fbf9e;
    --mint-dark: #276d5b;
    --peach: #ffb36b;
    --lilac: #ebe7ff;
    --sky: #e5f2ff;
    --shadow: 0 24px 80px rgba(20, 26, 22, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    line-height: 1.5;
}

a {
    color: inherit;
}

.site {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 32px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 4px 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 850;
    letter-spacing: 0;
    text-decoration: none;
}

.brand img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    box-shadow: 0 10px 32px rgba(95, 191, 158, 0.25);
}

.nav-links,
.actions,
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links {
    justify-content: flex-end;
}

.pill,
.button,
.store-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.pill {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.button {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
}

.button.light {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.store-disabled {
    background: #f0f1ee;
    color: var(--muted);
    border: 1px solid var(--line);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    padding: 48px 34px 38px;
    border-radius: 42px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 13px;
    border-radius: 999px;
    background: #f1f2ef;
    color: #333833;
    font-size: 12px;
    font-weight: 850;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin: 24px auto 18px;
    font-size: clamp(42px, 5.4vw, 66px);
    line-height: 1;
    letter-spacing: 0;
}

.muted-word {
    color: #959994;
}

.lead {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.actions {
    justify-content: center;
    margin-top: 32px;
}

.hero-stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(250px, 330px) 1fr;
    align-items: center;
    gap: 34px;
    max-width: 1120px;
    margin: 30px auto 0;
}

.float-stack {
    display: grid;
    gap: 24px;
}

.float-card {
    width: min(100%, 290px);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 42px rgba(18, 28, 24, 0.08);
}

.float-card:nth-child(2) {
    justify-self: end;
}

.label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.metric {
    margin-top: 6px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.metric small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.avatar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.avatar-row img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    background: #f5f5f2;
}

.phone {
    position: relative;
    min-height: 320px;
    padding: 18px;
    border: 5px solid var(--ink);
    border-radius: 36px;
    background: #f7f8f5;
    box-shadow: 0 20px 60px rgba(16, 18, 17, 0.16);
}

.phone-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 850;
}

.mockup {
    width: 100%;
    height: 230px;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    object-position: center 35%;
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.12);
}

.phone-card {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.phone-card div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 850;
}

.pet-float {
    position: absolute;
    right: -22px;
    bottom: 58px;
    width: 92px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(17, 17, 17, 0.18));
}

.language-switcher {
    justify-content: center;
    margin-top: 34px;
}

.language-switcher a {
    color: var(--muted);
    text-decoration: none;
}

.language-switcher a.active {
    color: var(--ink);
    background: #fff;
}

.section {
    padding: 96px 20px;
}

.split {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: center;
}

.section h2 {
    margin: 14px 0 18px;
    font-size: clamp(34px, 4.8vw, 66px);
    line-height: 1;
    letter-spacing: 0;
}

.section p {
    max-width: 580px;
    color: var(--muted);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.link-card {
    min-height: 144px;
    padding: 22px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(18, 28, 24, 0.1);
}

.link-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.link-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.media-band {
    min-height: 600px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
    align-items: end;
    padding: 44px;
    border-radius: 42px;
    background:
        radial-gradient(circle at 84% 18%, rgba(95, 191, 158, 0.24), transparent 30%),
        linear-gradient(135deg, #111111 0%, #18221d 58%, #111111 100%);
    color: #fff;
    overflow: hidden;
}

.media-band p {
    color: rgba(255, 255, 255, 0.72);
}

.media-band h2 {
    color: #fff;
}

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

.pet-card {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.pet-card img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.pet-card strong {
    display: block;
    margin-bottom: 2px;
}

.pet-card span {
    color: var(--muted);
    font-size: 13px;
}

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

.visual-tile {
    min-height: 330px;
    padding: 24px;
    border-radius: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    overflow: hidden;
}

.visual-tile img {
    display: block;
    max-width: 100%;
    height: 190px;
    margin: 34px auto 0;
    object-fit: contain;
}

.visual-tile img.store-preview {
    width: calc(100% + 48px);
    max-width: none;
    height: 205px;
    margin: 24px -24px -24px;
    object-fit: cover;
    object-position: center 35%;
}

.visual-tile.sky {
    background: var(--sky);
}

.visual-tile.lilac {
    background: var(--lilac);
}

.visual-tile.peach {
    background: #fff0de;
}

.footer {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 62px 44px 34px;
    border-radius: 42px;
    background: #121212;
    color: #fff;
}

.marquee {
    position: absolute;
    top: 42px;
    left: -80px;
    color: rgba(255, 255, 255, 0.08);
    font-size: clamp(72px, 12vw, 154px);
    font-weight: 900;
    white-space: nowrap;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.5fr));
    gap: 44px;
    align-items: start;
    padding-top: 150px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer h2 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.1;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.64);
}

.footer a {
    display: block;
    margin-top: 9px;
    text-decoration: none;
    font-size: 13px;
}

.footer strong {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
}

@media (max-width: 940px) {
    .hero {
        min-height: auto;
        padding: 34px 18px 24px;
        border-radius: 28px;
    }

    .hero-stage,
    .split,
    .media-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        gap: 18px;
        margin-top: 28px;
    }

    .hero-stage .float-stack {
        display: none;
    }

    .phone {
        max-width: 300px;
        margin: 0 auto;
    }

    .link-grid,
    .pet-gallery,
    .visual-row {
        grid-template-columns: 1fr;
    }

    .media-band,
    .footer {
        border-radius: 28px;
        padding: 34px 22px;
    }

    .footer-grid {
        padding-top: 116px;
    }
}

@media (max-width: 560px) {
    .site {
        width: min(100% - 18px, 1380px);
        padding-top: 14px;
    }

    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .float-stack {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 8px;
    }

    h1 {
        margin: 16px auto 12px;
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.03;
    }

    .lead {
        font-size: 16px;
    }

    .actions {
        margin-top: 20px;
    }

    .actions .store-disabled {
        display: none;
    }

    .phone {
        min-height: 0;
        padding: 14px;
        border-width: 4px;
        border-radius: 30px;
    }

    .phone-top {
        margin-bottom: 10px;
    }

    .mockup {
        height: 142px;
        border-radius: 20px;
    }

    .phone-card {
        display: none;
    }

    .pet-float {
        right: -8px;
        bottom: 20px;
        width: 62px;
    }

    .language-switcher {
        margin-top: 20px;
    }
}
