:root {
    --teal: #00ccbb;
    --teal-dark: #00a896;
    --teal-darker: #028174;
    --teal-soft: #e6faf7;
    --teal-glow: rgba(0, 204, 187, 0.18);
    --blue: #0077b6;
    --blue-dark: #005f92;
    --blue-soft: #e8f4fb;
    --ink: #0b2239;
    --ink-soft: #334155;
    --muted: #64748b;
    --cream: #f4fbfb;
    --white: #ffffff;
    --line: rgba(0, 168, 150, 0.14);
    --shadow: 0 20px 50px rgba(2, 98, 90, 0.12);
    --shadow-soft: 0 10px 30px rgba(2, 98, 90, 0.08);
    --radius: 18px;
    --radius-lg: 26px;
    --max: 1180px;
    --header-logo-h: 68px;
    --nav-h: calc(var(--header-logo-h) + 1rem + 3px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.container { max-width: var(--max); }

/* ── Header ── */

.landing-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 3px solid var(--teal);
    box-shadow: 0 4px 24px rgba(0, 168, 150, 0.1);
}

.landing-nav .container,
.landing-nav .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    min-height: calc(var(--header-logo-h) + 1rem);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
}

.header-brand-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.navbar-brand img,
.header-powered-by img {
    max-width: none;
    height: var(--header-logo-h);
    width: auto;
    object-fit: contain;
}

.navbar-brand img {
    border-radius: 12px;
}

.header-powered-by {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.desktop-nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.desktop-nav-links a:hover { color: var(--teal-dark); }

.desktop-social {
    display: flex;
    gap: 0.45rem;
    padding-left: 1rem;
    margin-left: 0.25rem;
    border-left: 1px solid var(--line);
}

.social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-soft);
    color: var(--teal-dark);
    border: 1px solid rgba(0, 168, 150, 0.18);
    transition: 0.2s ease;
}

.social:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.openSidebarMenu { display: none; }

.sidebarIconToggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--blue);
}

#sidebarMenu { display: none; }

@media (max-width: 991px) {
    :root { --header-logo-h: 50px; }

    .landing-nav .container,
    .landing-nav .header-inner {
        gap: 0.5rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .sidebarIconToggle {
        display: inline-flex;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    #sidebarMenu {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(11, 34, 57, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
    }

    .openSidebarMenu:checked ~ #sidebarMenu { opacity: 1; visibility: visible; }
    .openSidebarMenu:checked ~ #sidebarMenu .sidebar-panel { transform: translateX(0); }

    #sidebarMenu > .sidebarIconToggle {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.4rem;
        font-weight: 700;
        z-index: 2;
    }

    .sidebar-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: min(300px, 85vw);
        height: 100%;
        background: var(--white);
        padding: 3.25rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        box-shadow: var(--shadow);
    }

    .sidebarMenuInner a {
        display: block;
        padding: 0.9rem 0;
        font-weight: 600;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
    }

    .sidebar-social { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
}

@media (min-width: 992px) {
    .desktop-nav-links { display: flex; }

    :root { --header-logo-h: 72px; }
}

main { padding-top: calc(var(--nav-h) + 1.5rem); }

/* ── Hero ── */

.hero-section { padding: 1.25rem 0 0; overflow: hidden; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.hero-copy {
    background: linear-gradient(145deg, var(--teal-darker) 0%, var(--teal) 55%, var(--teal-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    height: 100%;
}

.hero-copy::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
    top: -70px;
    right: -70px;
}

.hero-eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 1rem;
}

.hero-title span { opacity: 0.92; font-style: italic; }

.hero-lead {
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    margin-bottom: 1.75rem;
}

.downApp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--white);
    color: var(--teal-darker);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    margin-bottom: 2rem;
}

.downApp:hover { transform: translateY(-2px); color: var(--teal-darker); }

.downApp svg { width: 20px; }
.downApp svg path { stroke: var(--teal-darker); }

.milestone.counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.milestone.counter > div {
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.milestone.counter strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
}

.milestone.counter span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 280px;
    display: flex;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    flex: 1;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(2, 129, 116, 0.92);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-badge em {
    display: block;
    font-style: normal;
    color: var(--white);
    font-size: 1.15rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.05fr 1fr;
        align-items: stretch;
        gap: 1.5rem;
    }

    .hero-copy {
        padding: 3.5rem 3rem;
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 100%;
    }

    .hero-visual img {
        min-height: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}

/* ── Sections ── */

.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 2.75rem;
}

.section-label {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 0.65rem;
}

.mainHead {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.section-subtitle { color: var(--muted); }

/* ── Food cards ── */

.food-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.food-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 119, 182, 0.25);
}

.food-card-image { aspect-ratio: 4 / 3; overflow: hidden; }

.food-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.food-card:hover .food-card-image img { transform: scale(1.05); }

.food-card-body { padding: 1.35rem; }

.food-card-body h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    margin: 0 0 0.65rem;
    color: var(--ink);
}

.food-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--teal-dark);
    font-size: 0.9rem;
}

.food-card-link svg { width: 18px; }

@media (min-width: 768px) {
    .food-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Promo banners ── */

.promo-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.promo-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 210px;
    box-shadow: var(--shadow-soft);
}

.promo-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 25%, rgba(2, 62, 138, 0.78) 100%);
    color: var(--white);
}

.promo-overlay h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    margin: 0 0 0.25rem;
}

.promo-overlay p { margin: 0; font-size: 0.9rem; opacity: 0.9; }

@media (min-width: 768px) {
    .promo-row { grid-template-columns: 1fr 1fr; }
}

/* ── Download ── */

.downloadApp {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, var(--teal-darker) 0%, #015a82 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow);
}

.downloadApp .mainHead { color: var(--white); }

.downloadApp p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 420px;
    margin: 0 auto 1.25rem;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: center;
}

.downloadApp .mockup {
    width: min(100%, 420px);
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.qr-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.qr-code {
    width: 112px;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    min-width: 170px;
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: 0.2s ease;
}

.store-btn:hover {
    background: var(--white);
    color: var(--teal-darker);
    transform: translateY(-2px);
}

.store-btn small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-btn strong { font-size: 0.92rem; }

@media (min-width: 768px) {
    .download-grid { grid-template-columns: 1fr 1fr; }
    .downloadApp { padding: 3rem; }
}

/* ── Content pages ── */

.content-block {
    max-width: 760px;
    margin: 0 auto;
    padding: 2.5rem 0 4.5rem;
}

.content-block h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    margin: 0;
    color: var(--ink);
}

.title-divider {
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    margin: 1.1rem 0 1.75rem;
}

.content-body, .content-block p, .content-block li { color: var(--ink-soft); }

/* ── Footer ── */

.landing-footer {
    background: var(--teal-darker);
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 0;
    margin-top: 1rem;
}

.landing-footer h5 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.landing-footer .quicklinks a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 2;
}

.landing-footer .quicklinks a:hover { color: var(--white); }

.landing-footer .social {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.landing-footer .social:hover {
    background: var(--white);
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

/* ── Back to top ── */

.top {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 900;
}

.top::before { content: '↑'; font-size: 1.15rem; font-weight: 800; }
.top.visible { opacity: 1; visibility: visible; }
.top:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-3px); }

@media (max-width: 767px) {
    main { padding-top: calc(var(--nav-h) + 1rem); }

    .hero-section { padding-top: 1rem; }

    .hero-copy {
        padding: 1.75rem 1.25rem 1.5rem;
        margin-top: 0;
    }

    .hero-eyebrow { margin-top: 0.25rem; margin-bottom: 1rem; }

    .hero-title { font-size: 2rem; margin-bottom: 0.75rem; }

    .hero-lead { margin-bottom: 1.25rem; font-size: 0.95rem; }

    .downApp { margin-bottom: 1.25rem; }

    .milestone.counter {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .milestone.counter > div { padding: 0.65rem 0.5rem; }

    .milestone.counter strong { font-size: 1.05rem; }

    .hero-grid { gap: 0; }

    .section { padding: 2rem 0; }

    .section-header { margin-bottom: 1.25rem; }

    .food-grid { gap: 0.85rem; }

    .promo-row { gap: 0.85rem; }

    .downloadApp {
        margin-top: 1.5rem;
        padding: 1.75rem 1.25rem;
    }

    .landing-footer { padding-top: 2.5rem; text-align: center; }

    .footer-social { justify-content: center; }

    .footer-bottom { flex-direction: column; margin-top: 1.5rem; }
}

@media (max-width: 480px) {
    :root { --header-logo-h: 44px; }
}
