:root {
    --servedoor-green: #7ed321;
    --servedoor-gold: #f5a623;
    --hero-ink: #f8fafc;
    --hero-muted: rgba(248, 250, 252, 0.72);
    --hero-panel: rgba(15, 23, 42, 0.58);
    --hero-border: rgba(255, 255, 255, 0.18);
    --landing-container: 1400px;
    --landing-gutter: clamp(40px, 5vw, 80px);
}

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

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.page-shell {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, #28761d 0%, #1d3a2b 32%, #172033 62%, #57301d 100%),
        linear-gradient(135deg, #08111e 0%, #111827 48%, #05070d 100%) !important;
}

body.page-shell > main {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.landing-navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition:
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        backdrop-filter 220ms ease;
}

.landing-navbar.is-scrolled {
    background: rgba(7, 12, 20, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.landing-nav-inner {
    width: 100%;
    max-width: var(--landing-container);
    min-height: 76px;
    margin: 0 auto;
    padding-inline: var(--landing-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.landing-brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    padding: 4px;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 650;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    transition:
        color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.landing-nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.landing-nav-links .landing-login-link {
    border: 1px solid rgba(126, 211, 33, 0.42);
    background: rgba(126, 211, 33, 0.1);
    color: #f8fafc;
}

.landing-nav-links .landing-login-link:hover {
    border-color: rgba(126, 211, 33, 0.72);
    background: rgba(126, 211, 33, 0.18);
}

.landing-hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    border-radius: 0 !important;
    clip-path: none !important;
    overflow-x: hidden;
    overflow-y: hidden;
    color: var(--hero-ink);
    background:
        linear-gradient(90deg, #28761d 0%, #1d3a2b 32%, #172033 62%, #57301d 100%),
        radial-gradient(circle at 58% 72%, rgba(245, 166, 35, 0.12), transparent 30%),
        linear-gradient(135deg, #08111e 0%, #111827 48%, #05070d 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.96) 0%, rgba(8, 17, 30, 0.86) 44%, rgba(8, 17, 30, 0.42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--landing-container);
    min-height: 100vh;
    margin: 0 auto;
    padding: 112px var(--landing-gutter) 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
}

.hero-copy {
    max-width: 660px;
    min-width: 0;
}

.hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--hero-muted);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-primary {
    color: #10200a;
    background: linear-gradient(135deg, var(--servedoor-green), #a8ef5b);
    box-shadow: 0 18px 38px rgba(126, 211, 33, 0.26);
}

.hero-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(245, 166, 35, 0.58);
    background: rgba(245, 166, 35, 0.12);
    backdrop-filter: blur(12px);
}

.hero-btn-secondary:hover {
    border-color: var(--servedoor-gold);
    background: rgba(245, 166, 35, 0.18);
}

.hero-btn-link {
    min-height: 46px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(15, 23, 42, 0.34);
}

.hero-btn-link:hover {
    border-color: rgba(126, 211, 33, 0.58);
    background: rgba(126, 211, 33, 0.12);
}

.hero-highlights {
    display: grid;
    gap: 13px;
    max-width: 570px;
    margin-top: 34px;
}

.floating-card {
    border: 1px solid var(--hero-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    font-weight: 700;
}

.highlight-item span {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--servedoor-green), var(--servedoor-gold));
    box-shadow: 0 0 0 6px rgba(126, 211, 33, 0.12);
}

.highlight-item p {
    margin: 0;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 610px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.cinematic-card {
    position: relative;
    width: min(430px, 100%);
    max-width: 100%;
    aspect-ratio: 0.66;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #0b1120;
    box-shadow:
        0 42px 100px rgba(0, 0, 0, 0.46),
        0 0 0 12px rgba(255, 255, 255, 0.04);
}

.cinematic-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    pointer-events: none;
}

.cinematic-frame,
.cinematic-shot,
.cinematic-overlay {
    position: absolute;
    inset: 0;
}

.cinematic-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    animation: cinematic-food-cycle 24s ease-in-out infinite;
}

.shot-one {
    opacity: 1;
    animation-delay: 0s;
}

.shot-two {
    animation-delay: 4s;
}

.shot-three {
    animation-delay: 8s;
}

.shot-four {
    animation-delay: 12s;
}

.shot-five {
    animation-delay: 16s;
}

.shot-six {
    animation-delay: 20s;
}

.cinematic-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(5, 7, 13, 0.02) 0%, rgba(5, 7, 13, 0.18) 46%, rgba(5, 7, 13, 0.76) 100%);
}

.cinematic-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(8, 13, 22, 0.58);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.cinematic-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--servedoor-green);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cinematic-content strong {
    display: block;
    max-width: 320px;
    color: #ffffff;
    font-size: clamp(1.28rem, 3vw, 1.8rem);
    line-height: 1.15;
    font-weight: 950;
}

.phone-mockup {
    position: relative;
    width: min(330px, 82vw);
    aspect-ratio: 0.53;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
        #101827;
    box-shadow:
        0 42px 90px rgba(0, 0, 0, 0.44),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-top {
    position: absolute;
    top: 22px;
    left: 50%;
    z-index: 3;
    width: 92px;
    height: 25px;
    border-radius: 0 0 16px 16px;
    background: #0b1120;
    transform: translateX(-50%);
}

.phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #f8fafc;
}

.phone-hero-image {
    height: 58%;
    overflow: hidden;
}

.phone-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 24px;
    color: #111827;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.15);
}

.phone-eyebrow {
    margin: 0 0 4px;
    color: #5f8f16;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.phone-content h2 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.2;
    font-weight: 900;
}

.phone-meta {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.phone-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #243047;
    background: #eef2f7;
    font-size: 0.78rem;
    font-weight: 800;
}

.phone-progress {
    height: 8px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

.phone-progress span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--servedoor-green), var(--servedoor-gold));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: 285px;
    padding: 13px 15px;
    border-radius: 18px;
    color: #ffffff;
    z-index: 4;
    animation: float-card 5.6s ease-in-out infinite;
}

.floating-card strong {
    display: block;
    font-size: 0.94rem;
    line-height: 1.2;
}

.floating-card p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    line-height: 1.35;
}

.card-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #10200a;
    background: var(--servedoor-green);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.card-icon.accent {
    color: #201202;
    background: var(--servedoor-gold);
}

.order-card {
    top: 94px;
    left: 6px;
    background:
        linear-gradient(145deg, rgba(126, 211, 33, 0.22), rgba(255, 255, 255, 0.07)),
        rgba(9, 16, 28, 0.76);
}

.delivery-card {
    right: 0;
    bottom: 126px;
    animation-delay: 900ms;
    background:
        linear-gradient(145deg, rgba(245, 166, 35, 0.22), rgba(255, 255, 255, 0.07)),
        rgba(9, 16, 28, 0.78);
}

.restaurant-card {
    left: 26px;
    bottom: 32px;
    max-width: 318px;
    animation-delay: 1600ms;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
        rgba(9, 16, 28, 0.74);
}

.restaurant-card img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    object-fit: cover;
}

.experience-section {
    padding: 92px 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

.experience-inner,
.partner-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading span,
.partner-content span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #5f8f16;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2,
.partner-content h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: 0;
}

.section-heading p,
.partner-content p {
    max-width: 620px;
    margin: 16px 0 0;
    color: #64748b;
    font-size: 1.04rem;
    line-height: 1.7;
}

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

.experience-card {
    position: relative;
    min-height: 240px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.experience-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(126, 211, 33, 0.18), transparent 68%);
}

.experience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(126, 211, 33, 0.34);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.12);
}

.experience-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 34px;
    border-radius: 16px;
    color: #10200a;
    background: linear-gradient(135deg, var(--servedoor-green), #a8ef5b);
    font-size: 0.86rem;
    font-weight: 950;
}

.experience-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #111827;
    font-size: 1.28rem;
    font-weight: 900;
}

.experience-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: #64748b;
    line-height: 1.65;
}

.app-features-section {
    position: relative;
    padding: 72px 24px 96px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff3f4 0%, #fffafa 38%, #ffffff 100%);
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

.app-features-section::before,
.app-features-section::after {
    content: none;
}

.app-features-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.app-feature-heading {
    max-width: 620px;
    margin: 0 auto 32px;
    text-align: center;
}

.app-feature-heading span {
    display: none;
}

.app-feature-heading h2 {
    margin: 0;
    color: #465371;
    font-size: clamp(1.75rem, 3vw, 2.08rem);
    line-height: 1.32;
    font-weight: 500;
    letter-spacing: 0;
}

.app-feature-heading p {
    display: none;
}

.app-feature-showcase {
    position: relative;
    width: min(1180px, 100%);
    min-height: 420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px 360px 330px;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.feature-column {
    display: grid;
    grid-template-columns: repeat(2, 142px);
    grid-template-rows: repeat(2, 152px);
    align-items: center;
    gap: 22px 28px;
}

.feature-column-left {
    justify-items: end;
}

.feature-column-right {
    justify-items: start;
}

.feature-column-left .app-feature-card:nth-child(2) {
    --feature-x: 0;
    margin-top: 0;
}

.feature-column-left .app-feature-card:nth-child(3) {
    --feature-x: 0;
    margin-top: 0;
}

.feature-column-right .app-feature-card:nth-child(2) {
    --feature-x: 0;
    margin-top: 0;
}

.feature-column-right .app-feature-card:nth-child(3) {
    --feature-x: 0;
    margin-top: 0;
}

.app-feature-card,
.feature-phone-card {
    border: 1px solid rgba(70, 83, 113, 0.1);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(22, 28, 45, 0.1);
}

.app-feature-card {
    width: 142px;
    min-height: 152px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 76px auto;
    align-items: center;
    justify-items: center;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 18px;
    text-align: center;
    opacity: 0;
    transform: translateX(calc(var(--feature-x, 0px) + var(--entry-x, 0px))) translateY(18px);
    transition:
        opacity 640ms ease,
        transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 180ms ease,
        border-color 180ms ease;
    transition-delay: var(--feature-delay, 0ms);
}

.feature-column-left .app-feature-card {
    --entry-x: -42px;
}

.feature-column-right .app-feature-card {
    --entry-x: 42px;
}

.app-features-section.is-visible .app-feature-card {
    opacity: 1;
    transform: translateX(var(--feature-x, 0px)) translateY(0);
}

.app-feature-card:hover {
    border-color: rgba(126, 211, 33, 0.28);
    box-shadow: 0 24px 44px rgba(22, 28, 45, 0.14);
    transform: translateX(var(--feature-x, 0px)) translateY(-4px) scale(1.02);
}

.feature-illustration,
.phone-feature-illustration {
    display: grid;
    place-items: center;
    filter: drop-shadow(0 12px 16px rgba(22, 28, 45, 0.12));
}

.feature-illustration {
    width: 88px;
    height: 70px;
    line-height: 1;
}

.feature-illustration svg,
.feature-illustration img,
.phone-feature-illustration svg,
.phone-feature-illustration img {
    display: block;
    width: 100%;
    height: 100%;
}

.feature-illustration img,
.phone-feature-illustration img {
    object-fit: contain;
}

.feature-toggle-art {
    width: 86px;
    height: 48px;
    border-radius: 999px;
    background: #249326;
    box-shadow:
        inset 0 0 0 4px rgba(255, 255, 255, 0.36),
        0 12px 22px rgba(22, 28, 45, 0.12);
}

.feature-toggle-art span {
    display: block;
    width: 34px;
    height: 34px;
    margin-left: 42px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(22, 28, 45, 0.18);
}

.app-feature-card strong {
    display: block;
    color: #111827;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
}

.app-feature-card p {
    display: none;
}

.feature-phone {
    position: relative;
    width: min(340px, 100%);
    height: 410px;
    display: grid;
    place-items: center;
    border: 9px solid #070b13;
    border-bottom-width: 0;
    border-radius: 52px 52px 0 0;
    background:
        radial-gradient(circle at 50% 26%, rgba(126, 211, 33, 0.09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfff7 62%, #f8fafc 100%);
    box-shadow:
        0 24px 44px rgba(15, 23, 42, 0.14),
        0 0 0 2px rgba(148, 163, 184, 0.18),
        inset 0 0 0 1px #e5e7eb;
    opacity: 0;
    transform: translateY(86px) scale(0.96);
    transition:
        opacity 720ms ease,
        transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-features-section.is-visible .feature-phone {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-phone::before {
    content: "";
    position: absolute;
    inset: 54px 22px 40px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(126, 211, 33, 0.07), rgba(245, 166, 35, 0.05)),
        rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.74);
}

.feature-phone::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 78px;
    height: 5px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.2);
    transform: translateX(-50%);
}

.feature-phone-notch {
    position: absolute;
    top: -1px;
    left: 50%;
    width: 142px;
    height: 34px;
    border-radius: 0 0 19px 19px;
    background: #070b13;
    transform: translateX(-50%);
}

.phone-app-brand {
    position: absolute;
    top: 62px;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
    transform: translateX(-50%);
}

.phone-app-brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    box-shadow: 0 10px 24px rgba(126, 211, 33, 0.2);
}

.feature-phone-card {
    position: relative;
    z-index: 2;
    width: 178px;
    min-height: 192px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 20px;
    border-radius: 26px;
    text-align: center;
    margin-top: 38px;
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.phone-feature-illustration {
    width: 96px;
    height: 82px;
    line-height: 1;
}

.feature-phone-card strong {
    color: #111827;
    font-size: 1.28rem;
    line-height: 1.18;
    font-weight: 700;
}

.app-feature-more {
    max-width: 560px;
    margin: 24px auto 0;
    color: #465371;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.55;
    text-align: center;
    font-weight: 600;
}

.feature-phone-card p {
    display: block;
    margin: -2px 0 0;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.32;
    font-weight: 600;
}

.feature-phone-card strong,
.feature-phone-card p {
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.feature-phone-card .is-changing {
    opacity: 0;
    transform: translateY(6px);
}

.partner-section {
    padding: 86px 24px 98px;
    background: #f8fafc;
    content-visibility: auto;
    contain-intrinsic-size: 520px;
}

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

.partner-panel {
    position: relative;
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: space-between;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at 84% 20%, rgba(126, 211, 33, 0.2), transparent 32%),
        #ffffff;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.1);
}

.delivery-panel {
    background:
        radial-gradient(circle at 82% 24%, rgba(245, 166, 35, 0.22), transparent 32%),
        #101827;
}

.partner-content {
    position: relative;
    z-index: 2;
    max-width: min(620px, calc(100% - 250px));
    padding: 34px;
}

.delivery-panel .partner-content h2,
.delivery-panel .partner-content p {
    color: #ffffff;
}

.delivery-panel .partner-content p {
    color: rgba(255, 255, 255, 0.72);
}

.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 26px;
    padding: 0 20px;
    border-radius: 15px;
    color: #10200a;
    background: var(--servedoor-green);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(126, 211, 33, 0.26);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.panel-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(126, 211, 33, 0.34);
}

.partner-visual {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 210px;
    height: 210px;
    padding: 12px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    transform: rotate(-4deg);
}

.delivery-panel .partner-visual {
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(4deg);
}

.partner-visual img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.landing-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    padding: 28px 20px;
    color: #64748b;
    background: #f8fafc;
    font-size: 0.92rem;
}

.landing-footer a {
    color: #334155;
    font-weight: 700;
    text-decoration: none;
}

.landing-footer a:hover {
    color: #5f8f16;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    animation: fade-in-up 780ms ease forwards;
}

.fade-in-delay {
    animation-delay: 180ms;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-card {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes cinematic-food-cycle {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(0);
    }
    4% {
        opacity: 1;
    }
    16% {
        opacity: 1;
        transform: scale(1.13) translateY(-8px);
    }
    21% {
        opacity: 0;
        transform: scale(1.15) translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: scale(1.05) translateY(0);
    }
}

@keyframes feature-float {
    0%,
    100% {
        transform: translateX(var(--feature-x, 0)) translateY(0);
    }
    50% {
        transform: translateX(var(--feature-x, 0)) translateY(-8px);
    }
}

@keyframes phone-card-pulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 30px 72px rgba(15, 23, 42, 0.15);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1024px) {
    :root {
        --landing-gutter: clamp(24px, 4vw, 40px);
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 112px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .cinematic-card {
        width: min(430px, 86vw);
    }

    .order-card {
        left: max(0px, calc(50% - 305px));
    }

    .delivery-card {
        right: max(0px, calc(50% - 315px));
    }

    .restaurant-card {
        left: max(18px, calc(50% - 286px));
    }

    .app-feature-showcase {
        grid-template-columns: 250px 290px 250px;
        gap: 20px;
    }

    .feature-column {
        grid-template-columns: repeat(2, 112px);
        grid-template-rows: repeat(2, 134px);
        gap: 14px;
    }

    .app-feature-card {
        width: 132px;
        min-height: 140px;
        grid-template-rows: 66px auto;
    }

    .feature-illustration {
        width: 86px;
        height: 70px;
    }

    .feature-phone {
        width: min(290px, 100%);
        height: 356px;
    }

    .feature-phone-card {
        width: 158px;
        min-height: 172px;
    }

    .partner-inner {
        grid-template-columns: 1fr;
    }

    .partner-content {
        max-width: min(620px, calc(100% - 250px));
    }
}

@media (max-width: 760px) {
    :root {
        --landing-gutter: 16px;
    }

    .experience-section,
    .app-features-section,
    .partner-section {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }

    .fade-in,
    .app-feature-card,
    .feature-phone,
    .app-feature-toggle,
    .phone-app-brand,
    .feature-phone-card {
        opacity: 1;
        transform: none;
    }

    .landing-nav-inner {
        width: 100%;
        max-width: var(--landing-container);
        padding-inline: var(--landing-gutter);
        min-height: 68px;
        gap: 12px;
    }

    .landing-brand img {
        width: 38px;
        height: 38px;
    }

    .landing-brand span {
        font-size: 1rem;
    }

    .landing-nav-links {
        gap: 2px;
        min-width: 0;
    }

    .landing-nav-links a {
        padding: 8px 7px;
        font-size: 0.8rem;
    }

    .hero-shell {
        width: 100%;
        max-width: var(--landing-container);
        padding: 96px var(--landing-gutter) 36px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-highlights {
        margin-top: 28px;
    }

    .hero-visual {
        min-height: auto;
        overflow: visible;
        padding-bottom: 8px;
    }

    .cinematic-card {
        width: min(390px, 100%);
        aspect-ratio: 0.68;
        border-radius: 28px;
    }

    .cinematic-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 15px;
    }

    .phone-mockup {
        width: min(286px, 78vw);
        transform: none;
    }

    .floating-card {
        position: relative;
        inset: auto;
        width: min(100%, 340px);
        max-width: none;
        margin: 12px auto 0;
        padding: 12px 13px;
        animation-name: none;
        transform: none;
    }

    .order-card {
        margin-top: 18px;
    }

    .delivery-card {
        transform: none;
    }

    .restaurant-card {
        transform: none;
    }

    .experience-section,
    .app-features-section,
    .partner-section {
        padding: 58px 18px;
    }

    .experience-grid,
    .partner-inner {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .app-feature-showcase {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        grid-auto-rows: auto;
        gap: 12px;
    }

    .feature-column-left,
    .feature-column-right {
        justify-items: stretch;
    }

    .feature-column-left .app-feature-card:nth-child(2),
    .feature-column-left .app-feature-card:nth-child(3),
    .feature-column-right .app-feature-card:nth-child(2),
    .feature-column-right .app-feature-card:nth-child(3) {
        --feature-x: 0;
        grid-column: auto;
        margin-top: 0;
    }

    .app-feature-card {
        width: 100%;
        min-height: 138px;
        grid-template-columns: 1fr;
        grid-template-rows: 72px auto;
        gap: 8px;
        padding: 14px 10px;
    }

    .feature-illustration {
        width: 72px;
        height: 62px;
    }

    .feature-toggle-art {
        width: 72px;
        height: 40px;
    }

    .feature-toggle-art span {
        width: 28px;
        height: 28px;
        margin-left: 34px;
    }

    .feature-phone {
        order: -1;
        width: min(292px, 88vw);
        height: 356px;
        margin: 0 auto 8px;
        border-radius: 44px 44px 0 0;
    }

    .phone-app-brand {
        top: 52px;
        gap: 8px;
        font-size: 0.9rem;
    }

    .phone-app-brand img {
        width: 32px;
        height: 32px;
    }

    .feature-phone-card {
        width: 158px;
        min-height: 166px;
        padding: 16px;
        margin-top: 32px;
    }

    .phone-feature-illustration {
        width: 78px;
        height: 68px;
    }

    .partner-panel {
        min-height: auto;
        display: flex;
        flex-direction: column;
        border-radius: 26px;
    }

    .partner-content {
        max-width: none;
        padding: 26px 26px 0;
    }

    .partner-content span {
        margin-bottom: 10px;
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .partner-content h2 {
        max-width: 100%;
        font-size: 2rem;
        line-height: 1.08;
    }

    .partner-content p {
        max-width: 100%;
        margin-top: 14px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .panel-link {
        width: 100%;
        min-height: 48px;
        margin-top: 22px;
        padding-inline: 14px;
        text-align: center;
        font-size: 0.96rem;
    }

    .partner-visual {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 52px);
        height: 150px;
        margin: 22px 26px 26px;
        border-radius: 22px;
        transform: none;
    }

    .delivery-panel .partner-visual {
        transform: none;
    }

    .partner-visual img {
        border-radius: 16px;
    }
}

@keyframes float-card-centered {
    0%,
    100% {
        transform: translate3d(-50%, 0, 0);
    }
    50% {
        transform: translate3d(-50%, -12px, 0);
    }
}

@keyframes float-card-centered-right {
    0%,
    100% {
        transform: translate3d(50%, 0, 0);
    }
    50% {
        transform: translate3d(50%, -12px, 0);
    }
}

@media (max-width: 520px) {
    .landing-nav-links a:not(.landing-login-link) {
        display: none;
    }

    .landing-nav-links .landing-login-link {
        padding: 8px 9px;
        font-size: 0.72rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .app-feature-heading h2 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .feature-column {
        grid-template-columns: 1fr;
    }

    .phone-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 15px;
    }

    .phone-content h2 {
        font-size: 1.05rem;
    }

    .floating-card p {
        font-size: 0.78rem;
    }

    .partner-section {
        padding-inline: 12px;
    }

    .partner-panel {
        border-radius: 24px;
    }

    .partner-content {
        padding: 24px 24px 0;
    }

    .partner-content h2 {
        font-size: 1.82rem;
        line-height: 1.12;
    }

    .partner-content p {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .panel-link {
        min-height: 46px;
        border-radius: 14px;
        font-size: 0.9rem;
        white-space: normal;
    }

    .partner-visual {
        width: calc(100% - 48px);
        height: 138px;
        margin: 20px 24px 24px;
    }
}

@media (max-width: 560px) {
    .landing-brand span {
        display: none;
    }
}

.landing-hero {
    border-radius: 0 !important;
    clip-path: none !important;
    background:
        linear-gradient(90deg, #28761d 0%, #1d3a2b 32%, #172033 62%, #57301d 100%),
        linear-gradient(135deg, #08111e 0%, #111827 48%, #05070d 100%) !important;
}

html:has(body.landing-page),
body.landing-page,
body.landing-page > main,
body.landing-page .landing-hero,
body.landing-page .hero-shell,
body.landing-page .hero-gradient,
body.landing-page .hero-texture {
    border-radius: 0 !important;
    clip-path: none !important;
}

body.landing-page {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

body.landing-page > main {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

body.landing-page .landing-hero {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

body.landing-page .hero-shell {
    border-radius: 0 !important;
    overflow: visible !important;
}
