:root {
    --warm-orange: #F28C38;
    --deep-green: #2E6B57;
    --cream: #FAF5E8;
    --charcoal: #2E2E33;
    --amber: #F5C233;
    --light-green: #8CC58C;
    --orange-dark: #EB6B2E;
    --green-dark: #245744;
    --hero-bg: linear-gradient(145deg, #FFF7F0 0%, #FFF 30%, #F0FAF5 60%, #FFF8EE 100%);
}

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

html {
    min-height: 100%;
    background: var(--hero-bg);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    color: var(--charcoal);
    background: var(--hero-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
    min-height: min(720px, calc(100svh - 48px));
    padding: 40px 24px 36px;
}

/* Background decoration */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 12s ease-in-out infinite;
}

.orb-1 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--warm-orange), transparent 70%);
    top: -80px; right: -40px;
    opacity: 0.18;
}

.orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--deep-green), transparent 70%);
    bottom: -60px; left: -40px;
    opacity: 0.12;
    animation-delay: -4s;
}

.orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--amber), transparent 70%);
    top: 50%; left: 15%;
    opacity: 0.08;
    animation-delay: -8s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -10px); }
}

/* Dot grid pattern */
.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Floating food emojis */
.float-emoji {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.15;
    z-index: 0;
    animation: bob 6s ease-in-out infinite;
    pointer-events: none;
}

.e1 { top: 12%; left: 8%; animation-delay: 0s; }
.e2 { top: 20%; right: 10%; animation-delay: -1s; font-size: 2.2rem; }
.e3 { bottom: 25%; left: 6%; animation-delay: -2s; }
.e4 { bottom: 15%; right: 8%; animation-delay: -3s; font-size: 2rem; }
.e5 { top: 55%; left: 15%; animation-delay: -4s; }
.e6 { top: 40%; right: 14%; animation-delay: -5s; font-size: 1.6rem; }

@keyframes bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* Hero content layout */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 920px;
}

/* ===== PHONE MOCKUP ===== */
.phone-frame {
    flex-shrink: 0;
    width: 240px;
    background: #111;
    border-radius: 34px;
    padding: 5px;
    box-shadow:
        0 24px 64px rgba(0,0,0,0.16),
        0 0 0 1px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.08);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 100px;
    width: 3px;
    height: 32px;
    background: #333;
    border-radius: 0 2px 2px 0;
}

.phone-screen {
    width: 100%;
    aspect-ratio: 883 / 1920;
    border-radius: 29px;
    overflow: hidden;
    background: #f9f2e6;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    background: #fff;
    position: relative;
}

.screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-placeholder {
    background:
        linear-gradient(#fff, #fff),
        radial-gradient(circle at 50% 28%, rgba(242, 140, 56, 0.08), transparent 38%);
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.carousel-dot {
    width: 5px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
    background: rgba(0, 0, 0, 0.72);
    transform: scale(1.28);
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--warm-orange);
    outline-offset: 4px;
}

/* ===== TEXT SIDE ===== */
.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--warm-orange), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.1;
}

.tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Store buttons */
.store-badges {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

.badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.platform-android .google-play-download,
.platform-ios .app-store-download {
    order: 1;
}

.platform-android .app-store-download,
.platform-ios .google-play-download {
    order: 2;
}

.app-store-download,
.google-play-download {
    position: relative;
}

.download-nudge {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--deep-green);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: 0;
    animation: nudgeBounce 1.8s ease-in-out infinite;
}

.platform-android .google-play-download .download-nudge,
.platform-ios .app-store-download .download-nudge {
    display: inline-flex;
}

.nudge-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    border-radius: 10px;
    padding: 8px 16px;
    min-width: 140px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.platform-android .google-play-download .store-btn,
.platform-ios .app-store-download .store-btn {
    position: relative;
    isolation: isolate;
    min-width: 176px;
    min-height: 50px;
    padding: 9px 18px;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18),
        0 0 0 0 rgba(242, 140, 56, 0);
    animation: ctaHeartbeat 2.6s ease-in-out infinite;
}

.platform-android .google-play-download .store-btn::after,
.platform-ios .app-store-download .store-btn::after {
    content: '';
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 2px solid rgba(242, 140, 56, 0.34);
    border-radius: 16px;
    opacity: 0;
    animation: ctaRing 2.6s ease-out infinite;
}

a.store-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.platform-android .google-play-download a.store-btn:hover,
.platform-ios .app-store-download a.store-btn:hover {
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.22),
        0 0 0 7px rgba(242, 140, 56, 0.12);
}

@media (min-width: 701px) {
    .platform-desktop .store-badges {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 8px;
        width: 190px;
    }

    .platform-desktop .badge-wrapper {
        width: 100%;
        align-items: stretch;
        gap: 4px;
    }

    .platform-desktop .app-store-download {
        order: 1;
    }

    .platform-desktop .google-play-download {
        order: 2;
    }

    .platform-desktop .store-btn {
        width: 100%;
        justify-content: center;
        min-height: 46px;
        padding: 8px 16px;
    }

    .platform-desktop .available-now {
        text-align: center;
        font-size: 0.58rem;
        letter-spacing: 0;
    }

    .platform-android .badge-wrapper,
    .platform-ios .badge-wrapper {
        padding-top: 28px;
    }

    .download-nudge {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}

.store-small {
    display: block;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.75);
    line-height: 1;
    font-weight: 400;
}

.store-name {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

.available-now {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--deep-green);
    text-transform: uppercase;
    letter-spacing: 0;
}

@keyframes nudgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@keyframes ctaHeartbeat {
    0%, 58%, 100% {
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.18),
            0 0 0 0 rgba(242, 140, 56, 0);
    }
    14% {
        box-shadow:
            0 16px 34px rgba(0, 0, 0, 0.23),
            0 0 0 8px rgba(242, 140, 56, 0.14);
    }
    26% {
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.18),
            0 0 0 0 rgba(242, 140, 56, 0);
    }
    38% {
        box-shadow:
            0 15px 32px rgba(0, 0, 0, 0.21),
            0 0 0 5px rgba(242, 140, 56, 0.1);
    }
}

@keyframes ctaRing {
    0%, 12% {
        opacity: 0;
        transform: scale(0.98);
    }
    18% {
        opacity: 1;
    }
    54%, 100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

/* ===== FOOTER ===== */
footer {
    padding: 18px 24px;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.5);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--warm-orange); }

.footer-links .divider {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
}

.copyright {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== APP OVERVIEW ===== */
.app-overview {
    background: var(--hero-bg);
    border-top: 1px solid rgba(46, 107, 87, 0.08);
}

.overview-section,
.store-summary {
    max-width: 1040px;
    margin: 0 auto;
    padding: 58px 24px;
}

.overview-copy {
    max-width: 500px;
}

.section-eyebrow {
    margin-bottom: 10px;
    color: var(--deep-green);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.overview-section h2,
.store-summary h2 {
    margin: 0 0 12px;
    color: var(--charcoal);
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: 0;
}

.overview-copy p,
.store-summary p,
.feature-list p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.65;
}

.overview-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    gap: 44px;
}

.overview-tags {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.overview-tags > span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--charcoal);
    font-size: 0.94rem;
    font-weight: 700;
}

.overview-tags > span > span {
    display: inline;
    font-size: 1.1rem;
    line-height: 1;
}

.overview-visual {
    position: relative;
    min-height: 330px;
}

.overview-shot {
    position: absolute;
    width: 164px;
    aspect-ratio: 883 / 1920;
    object-fit: cover;
    border: 5px solid #111;
    border-radius: 24px;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.17),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    background: #f9f2e6;
}

.shot-primary {
    left: 56px;
    top: 0;
    z-index: 2;
}

.shot-secondary {
    right: 54px;
    top: 42px;
    z-index: 1;
    opacity: 0.92;
}

.visual-note {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(46, 107, 87, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--charcoal);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    font-size: 0.84rem;
    font-weight: 800;
}

.note-top {
    top: 44px;
    left: 0;
}

.note-bottom {
    right: 0;
    bottom: 28px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.feature-list article {
    position: relative;
    min-height: 236px;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(46, 107, 87, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.feature-visual {
    position: relative;
    display: grid;
    place-items: center;
    height: 112px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(46, 107, 87, 0.11);
    border-radius: 8px;
    background:
        radial-gradient(circle at 24% 24%, rgba(242, 140, 56, 0.18), transparent 32%),
        radial-gradient(circle at 76% 72%, rgba(46, 107, 87, 0.14), transparent 34%),
        rgba(250, 245, 232, 0.62);
}

.feature-emoji {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--charcoal);
    font-size: 1.1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.mini-card {
    position: absolute;
    display: grid;
    place-items: center;
    width: 76px;
    height: 56px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.mini-card-back {
    left: 36px;
    top: 30px;
    transform: rotate(-9deg);
    background: #fff;
    color: #E74D3C;
}

.mini-card-front {
    right: 40px;
    top: 22px;
    transform: rotate(8deg);
    background: var(--deep-green);
    color: #fff;
}

.taste-visual {
    align-content: center;
    justify-items: start;
    gap: 8px;
    padding-left: 18px;
}

.taste-chip {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--charcoal);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.taste-chip:nth-child(2) {
    margin-left: 24px;
    background: rgba(242, 140, 56, 0.16);
}

.taste-chip:nth-child(3) {
    margin-left: 8px;
    background: rgba(46, 107, 87, 0.14);
}

.list-visual {
    justify-items: start;
    align-content: center;
    gap: 9px;
    padding-left: 18px;
}

.list-line {
    position: relative;
    min-width: 120px;
    min-height: 26px;
    padding: 5px 10px 5px 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--charcoal);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.list-line::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--deep-green);
}

.cook-visual {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 26px;
}

.step-dot {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--warm-orange);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(242, 140, 56, 0.2);
}

.step-line {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(46, 107, 87, 0.22);
}

.feature-list h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--deep-green);
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.feature-list p {
    position: relative;
    z-index: 1;
}

.store-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(46, 107, 87, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.store-summary-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(242, 140, 56, 0.24);
}

.store-summary-copy .section-eyebrow {
    margin-bottom: 6px;
}

.store-summary h2 {
    margin-bottom: 4px;
    font-size: 1.55rem;
}

.store-summary p {
    margin: 0;
}

.seo-note {
    max-width: 640px;
    margin-top: 8px !important;
    color: #666 !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
}

.store-summary-links {
    display: grid;
    gap: 9px;
    min-width: 190px;
    margin-top: 0;
}

.store-summary-links .store-btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 8px 16px;
}

.store-summary-links .store-btn:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .hero {
        flex: initial;
        min-height: calc(100svh - 24px);
        min-height: calc(100dvh - 24px);
        align-items: center;
        padding: max(16px, env(safe-area-inset-top)) 18px max(16px, env(safe-area-inset-bottom));
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 28px;
        width: 100%;
        max-width: 380px;
        transform: none;
    }

    .hero-text {
        text-align: center;
        width: 100%;
    }

    .phone-frame {
        width: min(53vw, 204px);
        border-radius: 32px;
        padding: 5px;
        margin-bottom: 18px;
        box-shadow:
            0 18px 44px rgba(0,0,0,0.13),
            0 0 0 1px rgba(0,0,0,0.06),
            inset 0 0 0 1px rgba(255,255,255,0.08);
    }

    .phone-frame::before {
        top: 88px;
        height: 30px;
    }

    .carousel-dots {
        bottom: -20px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
        margin-bottom: 4px;
    }

    .tagline {
        font-size: 1.08rem;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 0.96rem;
        margin-bottom: 10px;
    }

    .store-badges {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        width: min(100%, 326px);
        max-width: calc(100vw - 32px);
        margin: 0 auto;
        padding: 2px 0 0;
    }

    .badge-wrapper {
        width: 100%;
        min-width: 0;
        gap: 5px;
    }

    .app-store-download {
        width: min(100%, 248px);
        margin: 0 auto;
    }

    .download-nudge {
        font-size: 0.7rem;
        gap: 2px;
        margin-bottom: 2px;
    }

    .nudge-arrow {
        width: 9px;
        height: 9px;
    }

    .store-btn {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        justify-content: center;
        padding: 9px 12px;
        border-radius: 12px;
        gap: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    }

    .platform-android .google-play-download .store-btn,
    .platform-ios .app-store-download .store-btn {
        min-height: 52px;
        border-radius: 14px;
        padding: 9px 14px;
    }

    .platform-android .google-play-download .store-btn::after,
    .platform-ios .app-store-download .store-btn::after {
        border-radius: 20px;
        inset: -6px;
    }

    .platform-android .google-play-download .store-name,
    .platform-ios .app-store-download .store-name {
        font-size: 0.94rem;
    }

    .platform-android .google-play-download .store-small,
    .platform-ios .app-store-download .store-small {
        font-size: 0.54rem;
    }

    .app-store-download,
    .google-play-download {
        width: min(100%, 248px);
        margin: 2px auto 0;
    }

    .store-btn svg {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .store-small {
        font-size: 0.52rem;
    }

    .store-name {
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .available-now {
        font-size: 0.62rem;
        letter-spacing: 0;
        line-height: 1.15;
    }

    .float-emoji {
        display: block;
        font-size: clamp(1.2rem, 5.2vw, 1.65rem);
        opacity: 0.14;
    }

    .e1 {
        top: 6%;
        left: 6%;
    }
    .e2 {
        top: 18%;
        right: 4%;
        font-size: clamp(1.35rem, 5.8vw, 1.85rem);
    }
    .e3 {
        top: 31%;
        bottom: auto;
        left: 2%;
    }
    .e4 {
        top: 54%;
        right: 3%;
        bottom: auto;
        font-size: clamp(1.3rem, 5.5vw, 1.75rem);
    }
    .e5 {
        top: 73%;
        left: 9%;
    }
    .e6 {
        top: 64%;
        right: 16%;
        font-size: clamp(1.15rem, 5vw, 1.55rem);
    }

    .overview-section,
    .store-summary {
        padding: 42px 20px;
    }

    .overview-hero {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .overview-copy {
        text-align: center;
        max-width: 100%;
    }

    .overview-tags {
        justify-items: center;
        margin-top: 18px;
    }

    .overview-visual {
        min-height: 260px;
    }

    .overview-shot {
        width: 132px;
        border-width: 4px;
        border-radius: 21px;
    }

    .shot-primary {
        left: calc(50% - 130px);
    }

    .shot-secondary {
        right: calc(50% - 132px);
        top: 32px;
    }

    .visual-note {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.76rem;
    }

    .note-top {
        top: 28px;
        left: calc(50% - 164px);
    }

    .note-bottom {
        right: calc(50% - 164px);
        bottom: 22px;
    }

    .overview-section h2,
    .store-summary h2 {
        font-size: 1.45rem;
    }

    .overview-section h2 {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .feature-list article {
        min-height: auto;
        padding: 16px;
    }

    .feature-visual {
        height: 104px;
    }

    .store-summary {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        margin: 0 20px 32px;
        padding: 24px 18px;
    }

    .store-summary-links {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 240px);
    }
}

@media (max-width: 700px) and (max-height: 740px) {
    .hero {
        padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    }

    .hero-content {
        gap: 18px;
        transform: none;
    }

    .phone-frame {
        width: min(42vw, 154px);
        border-radius: 30px;
        padding: 4px;
        margin-bottom: 12px;
    }

    .phone-frame::before {
        top: 78px;
        height: 28px;
    }

    .carousel-dots {
        bottom: -18px;
    }

    .hero-text h1 {
        font-size: 2.1rem;
        margin-bottom: 3px;
    }

    .tagline {
        font-size: 0.98rem;
        margin-bottom: 6px;
    }

    .subtitle {
        font-size: 0.88rem;
        margin-bottom: 8px;
    }

    .store-btn {
        min-height: 42px;
        padding: 7px 9px;
        border-radius: 11px;
        gap: 7px;
    }

    .platform-android .google-play-download .store-btn,
    .platform-ios .app-store-download .store-btn {
        min-height: 48px;
        padding: 8px 12px;
        border-radius: 13px;
    }

    .store-btn svg {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .store-small {
        font-size: 0.48rem;
    }

    .store-name {
        font-size: 0.8rem;
    }

    .platform-android .google-play-download .store-name,
    .platform-ios .app-store-download .store-name {
        font-size: 0.92rem;
    }

    .download-nudge {
        font-size: 0.62rem;
        margin-bottom: 1px;
    }

    .float-emoji {
        font-size: clamp(1rem, 4.6vw, 1.35rem);
        opacity: 0.12;
    }

    .e2 { top: 16%; }
    .e3 { top: 27%; }
    .e4 { top: 49%; }
    .e5 { top: 72%; }
    .e6 {
        top: 61%;
        right: 15%;
    }

    .available-now {
        font-size: 0.56rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }

    .download-nudge,
    .float-emoji,
    .store-btn,
    .store-btn::after {
        animation: none;
    }
}

/* ===== LEGAL PAGES ===== */
.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.legal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.legal-nav a {
    text-decoration: none;
    color: var(--warm-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.legal-nav img { border-radius: 8px; }

.legal h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.legal .last-updated {
    font-size: 0.88rem;
    color: #999;
    margin-bottom: 32px;
}

.legal h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-green);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal p, .legal li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--charcoal); }
.legal a { color: var(--warm-orange); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
