:root {
    --ff-orange: #FE6524;
    --ff-orange-dark: #E5520F;
    --ff-blue: #006AE5;
    --ff-ink: #334257;
    --ff-dark: #0B1220;
    --ff-muted: #66758A;
    --ff-line: #E8EDF5;
    --ff-surface: #FFF8F3;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.landing-body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ff-ink);
    background: #fff;
    font-family: Inter, system-ui, sans-serif;
}

.landing-noise {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: .34;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(254, 101, 36, .1), transparent 28%),
        radial-gradient(circle at 78% 8%, rgba(0, 106, 229, .1), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fffaf6 36%, #fff 100%);
}

#cursorGlow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    opacity: .18;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(254, 101, 36, .72), rgba(0, 106, 229, .22) 42%, transparent 70%);
    filter: blur(18px);
}

.landing-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
    border-bottom: 1px solid transparent;
}

.landing-nav.is-scrolled {
    background: rgba(255, 255, 255, .82);
    border-color: rgba(232, 237, 245, .9);
    box-shadow: 0 18px 60px rgba(51, 66, 87, .08);
    backdrop-filter: blur(18px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ff-dark);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 71px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(254, 101, 36, .15), rgba(0, 106, 229, .1));
    box-shadow: 0 14px 35px rgba(254, 101, 36, .18);
}

.brand-mark img {
    width: 58px !important;
    height: 43px;
    object-fit: contain;
}

.brand-lockup strong {
    display: block;
    font: 800 18px/1.1 Sora, Inter, sans-serif;
    letter-spacing: 0;
}

.brand-lockup small {
    display: block;
    margin-top: 2px;
    color: var(--ff-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-lockup-light,
.brand-lockup-light small {
    color: #fff;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    color: rgba(51, 66, 87, .78);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.nav-menu a:hover {
    color: var(--ff-orange);
}

.nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(232, 237, 245, .95);
    border-radius: 12px;
    color: var(--ff-dark);
    background: rgba(255, 255, 255, .72);
}

.btn-primary,
.btn-ghost,
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--ff-orange), #ff8a45);
    box-shadow: 0 18px 45px rgba(254, 101, 36, .32);
}

.btn-primary:hover,
.btn-glass:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--ff-dark);
    border: 1px solid rgba(232, 237, 245, .95);
    background: #fff;
}

.btn-glass {
    color: var(--ff-dark);
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .56);
    backdrop-filter: blur(16px);
}

.btn-xl {
    min-height: 54px;
    border-radius: 16px;
    padding: 0 24px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 128px 0 72px;
}

.hero-grid {
    display: grid;
    min-height: calc(100vh - 200px);
    align-items: center;
    gap: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(254, 101, 36, .16);
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--ff-orange-dark);
    background: rgba(254, 101, 36, .08);
    font-size: 13px;
    font-weight: 800;
}

.eyebrow.dark {
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .12);
}

.headline {
    margin: 22px 0 0;
    color: var(--ff-dark);
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: 0;
}

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

.gradient-text {
    background: linear-gradient(110deg, var(--ff-orange), #ff9b55 42%, var(--ff-blue));
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(51, 66, 87, .78);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.72;
}

.hero-actions,
.hero-proof,
.store-buttons,
.cta-banner div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-top: 34px;
}

.hero-proof {
    margin-top: 28px;
    color: rgba(51, 66, 87, .72);
    font-size: 13px;
    font-weight: 800;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.orb {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(6px);
}

.orb-one {
    width: 360px;
    height: 360px;
    top: 40px;
    right: 12%;
    background: radial-gradient(circle, rgba(254, 101, 36, .36), transparent 67%);
}

.orb-two {
    width: 320px;
    height: 320px;
    right: -6%;
    bottom: 40px;
    background: radial-gradient(circle, rgba(0, 106, 229, .26), transparent 65%);
}

.hero-lottie {
    position: absolute;
    right: -38px;
    top: -8px;
    width: 170px;
    height: 170px;
    opacity: .9;
    filter: drop-shadow(0 18px 30px rgba(254, 101, 36, .18));
}

.floating-card {
    animation: floatY 6s ease-in-out infinite;
}

.dashboard-mockup,
.phone-mockup,
.food-card,
.notification-chip,
.feature-card,
.stats-panel,
.preview-card,
.timeline-step,
.faq-item,
.cta-banner {
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 28px 90px rgba(51, 66, 87, .14);
    backdrop-filter: blur(18px);
}

.dashboard-mockup {
    position: absolute;
    top: 60px;
    right: 0;
    width: min(620px, 100%);
    overflow: hidden;
    border-radius: 28px;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid var(--ff-line);
}

.mockup-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #ff5f57;
}

.mockup-topbar span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-topbar span:nth-child(3) {
    background: #28c840;
}

.mockup-topbar strong {
    margin-left: auto;
    color: var(--ff-muted);
    font-size: 12px;
}

.mockup-body {
    display: grid;
    grid-template-columns: 86px 1fr;
    min-height: 390px;
}

.mock-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 22px;
    background: #fff8f3;
}

.mock-sidebar span {
    width: 42px;
    height: 12px;
    border-radius: 999px;
    background: rgba(51, 66, 87, .12);
}

.mock-sidebar .active {
    background: var(--ff-orange);
}

.mock-content {
    padding: 26px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metric-row div {
    border-radius: 18px;
    padding: 17px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(232, 237, 245, .9);
}

.metric-row b {
    display: block;
    color: var(--ff-dark);
    font-size: 28px;
}

.metric-row small,
.live-order small {
    color: var(--ff-muted);
}

.chart-card {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 150px;
    margin-top: 16px;
    border-radius: 22px;
    padding: 20px;
    background: linear-gradient(135deg, #11192b, #334257);
}

.chart-card span {
    flex: 1;
    border-radius: 999px 999px 5px 5px;
    background: linear-gradient(180deg, #ff9b55, var(--ff-orange));
}

.live-order {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 16px;
    border-radius: 20px;
    padding: 16px;
    background: #fff;
}

.live-order i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    color: var(--ff-orange);
    background: rgba(254, 101, 36, .1);
    font-size: 24px;
}

.live-order strong,
.live-order small {
    display: block;
}

.live-order em {
    margin-left: auto;
    border-radius: 99px;
    padding: 5px 10px;
    color: #00aa6d;
    background: rgba(0, 170, 109, .1);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.phone-mockup {
    width: 178px;
    height: 352px;
    border-radius: 36px;
    padding: 11px;
    background: #101827;
}

.phone-left {
    position: absolute;
    left: 0;
    bottom: 20px;
    animation-delay: -2s;
}

.phone-screen {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    padding: 22px 18px;
    color: #fff;
    background:
        radial-gradient(circle at 70% 12%, rgba(254, 101, 36, .55), transparent 30%),
        linear-gradient(160deg, #18243a, #0b1220);
}

.phone-screen .pill {
    border-radius: 99px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .13);
    font-size: 11px;
    font-weight: 800;
}

.phone-screen h3 {
    margin: 36px 0 18px;
    font: 800 23px/1.15 Sora, Inter, sans-serif;
}

.route-line {
    height: 122px;
    border: 2px dashed rgba(255, 255, 255, .42);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 36px 0 0;
}

.rider-dot {
    position: absolute;
    right: 40px;
    bottom: 98px;
    width: 20px;
    height: 20px;
    border-radius: 99px;
    background: var(--ff-orange);
    box-shadow: 0 0 0 9px rgba(254, 101, 36, .18);
}

.phone-screen p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.food-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    padding: 13px 16px;
    color: var(--ff-dark);
    font-size: 13px;
    font-weight: 900;
}

.food-card i {
    color: var(--ff-orange);
    font-size: 24px;
}

.food-card-one {
    left: 48px;
    top: 96px;
    animation-delay: -1s;
}

.food-card-two {
    right: 40px;
    bottom: 60px;
    animation-delay: -3s;
}

.stats-section {
    padding: 0 0 84px;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(232, 237, 245, .9);
}

.stat-card {
    padding: 30px 22px;
    text-align: center;
    background: rgba(255, 255, 255, .86);
}

.stat-card strong {
    display: block;
    color: var(--ff-dark);
    font: 800 clamp(30px, 5vw, 48px)/1 Sora, Inter, sans-serif;
}

.stat-card span {
    display: block;
    margin-top: 9px;
    color: var(--ff-muted);
    font-weight: 800;
}

.section-shell {
    padding: 96px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading.text-left {
    margin-left: 0;
    text-align: left;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ff-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading h2,
.app-section h2,
.cta-banner h2 {
    margin: 0;
    color: var(--ff-dark);
    font: 800 clamp(26px, 3.6vw, 42px)/1.14 Sora, Inter, sans-serif;
    letter-spacing: 0;
}

.section-heading p,
.app-section p,
.cta-banner p {
    margin: 18px auto 0;
    color: rgba(51, 66, 87, .72);
    font-size: 17px;
    line-height: 1.75;
}

.section-heading.light h2,
.section-heading.light p,
.section-heading.light span {
    color: #fff;
}

.section-heading.light p {
    color: rgba(255, 255, 255, .68);
}

.feature-grid {
    display: grid;
    gap: 18px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -55% -30%;
    height: 120px;
    background: radial-gradient(circle, rgba(254, 101, 36, .2), transparent 66%);
    opacity: 0;
    transition: opacity .25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 101, 36, .22);
    box-shadow: 0 34px 100px rgba(254, 101, 36, .16);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    color: var(--ff-orange);
    background: linear-gradient(135deg, rgba(254, 101, 36, .14), rgba(0, 106, 229, .08));
    font-size: 28px;
}

.feature-card h3,
.timeline-step h3,
.preview-copy h3 {
    margin: 20px 0 10px;
    color: var(--ff-dark);
    font: 800 20px/1.2 Sora, Inter, sans-serif;
}

.feature-card p,
.timeline-step p,
.preview-copy p {
    margin: 0;
    color: rgba(51, 66, 87, .68);
    font-size: 14px;
    line-height: 1.7;
}

.preview-section,
.testimonial-section {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(254, 101, 36, .22), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(0, 106, 229, .2), transparent 30%),
        linear-gradient(135deg, #0b1220, #18243a 52%, #0f172a);
}

.preview-card {
    display: grid;
    gap: 26px;
    align-items: center;
    border-radius: 28px;
    padding: 26px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.macbook-frame {
    border-radius: 24px 24px 10px 10px;
    padding: 13px 13px 18px;
    background: linear-gradient(145deg, #f8fafc, #cfd8e5);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.macbook-screen {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.mini-dashboard {
    display: grid;
    grid-template-columns: 62px 1fr;
    height: 312px;
}

.mini-dashboard aside {
    background: #fff3ec;
}

.mini-dashboard main {
    padding: 18px;
}

.mini-header,
.mini-kpis span,
.mini-chart,
.mini-table span {
    display: block;
    border-radius: 12px;
    background: #eef3f9;
}

.mini-header {
    width: 62%;
    height: 24px;
}

.mini-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.mini-kpis span {
    height: 62px;
}

.mini-kpis span:first-child {
    background: rgba(254, 101, 36, .18);
}

.mini-chart {
    height: 102px;
    margin-top: 16px;
    background: linear-gradient(135deg, rgba(0, 106, 229, .16), rgba(254, 101, 36, .18));
}

.mini-table {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.mini-table span {
    height: 16px;
}

.preview-copy span {
    color: rgba(255, 255, 255, .5);
    font-weight: 900;
}

.preview-copy h3 {
    color: #fff;
    font-size: 28px;
}

.preview-copy p {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
}

.preview-swiper .swiper-pagination {
    position: static;
    margin-top: 28px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .35;
}

.swiper-pagination-bullet-active {
    background: var(--ff-orange);
    opacity: 1;
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
    max-width: 930px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--ff-orange), var(--ff-blue));
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 58px 1fr;
    align-items: center;
    gap: 18px;
    border-radius: 24px;
    padding: 20px;
}

.timeline-step > span {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--ff-orange);
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(254, 101, 36, .22);
}

.timeline-step i {
    color: var(--ff-blue);
    font-size: 36px;
}

.timeline-step h3 {
    margin-top: 0;
}

.app-section {
    overflow: hidden;
    padding: 112px 0;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(254, 101, 36, .34), transparent 28%),
        linear-gradient(135deg, #11192b, #334257);
}

.app-section h2 {
    color: #fff;
}

.app-section p {
    color: rgba(255, 255, 255, .72);
}

.store-buttons {
    margin-top: 30px;
}

.store-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 12px 16px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    text-decoration: none;
    backdrop-filter: blur(14px);
}

.store-buttons i {
    font-size: 28px;
}

.store-buttons span {
    font-size: 11px;
    line-height: 1.15;
}

.store-buttons strong {
    font-size: 16px;
}

.app-mockups {
    position: relative;
    min-height: 540px;
}

.app-lottie {
    position: absolute;
    right: 4%;
    top: -32px;
    width: 150px;
    height: 150px;
    opacity: .75;
}

.app-phone-primary {
    position: absolute;
    left: 15%;
    top: 0;
    width: 220px;
    height: 438px;
    animation-delay: -1.5s;
}

.app-phone-secondary {
    position: absolute;
    right: 8%;
    top: 82px;
    width: 190px;
    height: 378px;
    animation-delay: -3s;
}

.app-screen {
    background: linear-gradient(160deg, #fff, #fff4ec);
    color: var(--ff-dark);
}

.app-top {
    width: 70px;
    height: 8px;
    border-radius: 99px;
    background: rgba(51, 66, 87, .14);
}

.app-food {
    height: 150px;
    margin: 18px 0;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 48%, #ffd29e 0 28%, #fb8d4c 29% 44%, transparent 45%),
        linear-gradient(135deg, rgba(254, 101, 36, .14), rgba(0, 106, 229, .08));
}

.app-screen button,
.driver-screen button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--ff-orange);
    font-weight: 900;
}

.driver-screen {
    background: linear-gradient(160deg, #0b1220, #1a2438);
}

.driver-screen span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 800;
}

.driver-map {
    height: 142px;
    margin: 28px 0;
    border-radius: 22px;
    background:
        linear-gradient(45deg, transparent 46%, rgba(254, 101, 36, .72) 47% 53%, transparent 54%),
        radial-gradient(circle at 72% 22%, var(--ff-blue) 0 7px, transparent 8px),
        rgba(255, 255, 255, .08);
}

.notification-chip {
    position: absolute;
    left: 34%;
    bottom: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 18px;
    color: var(--ff-dark);
    font-size: 13px;
    font-weight: 900;
}

.notification-chip i {
    color: var(--ff-orange);
}

.advanced-section {
    background: #fffaf6;
}

.advanced-grid {
    display: grid;
    gap: 14px;
}

.advanced-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    border: 1px solid rgba(232, 237, 245, .95);
    border-radius: 18px;
    padding: 0 20px;
    color: var(--ff-dark);
    background: #fff;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(51, 66, 87, .06);
}

.advanced-pill i {
    color: var(--ff-orange);
    font-size: 22px;
}

.testimonial-swiper blockquote {
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    padding: 36px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.testimonial-swiper blockquote > i {
    color: var(--ff-orange);
    font-size: 36px;
}

.testimonial-swiper p {
    margin: 12px 0 24px;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.45;
}

.testimonial-swiper footer strong,
.testimonial-swiper footer span {
    display: block;
}

.testimonial-swiper footer span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border-radius: 20px;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    padding: 22px 24px;
    color: var(--ff-dark);
    background: transparent;
    text-align: left;
    font-weight: 900;
}

.faq-item i {
    color: var(--ff-orange);
    font-size: 24px;
    transition: transform .22s ease;
}

.faq-item button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 22px;
    color: rgba(51, 66, 87, .7);
    line-height: 1.7;
}

.cta-section {
    padding: 90px 0 110px;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(34px, 7vw, 72px);
    color: #fff;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .28), transparent 28%),
        linear-gradient(135deg, var(--ff-orange), #ff8a45 45%, var(--ff-blue));
}

.cta-banner span {
    color: rgba(255, 255, 255, .78);
    font-weight: 900;
    text-transform: uppercase;
}

.cta-banner h2,
.cta-banner p {
    color: #fff;
}

.cta-banner p {
    max-width: 720px;
    margin-left: 0;
    color: rgba(255, 255, 255, .78);
}

.cta-banner div {
    margin-top: 30px;
}

.footer-shell {
    background: #0b1220;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, .55fr) minmax(180px, .55fr);
    gap: clamp(36px, 7vw, 110px);
    padding-top: 56px;
    padding-bottom: 62px;
}

.footer-brand .brand-lockup {
    align-items: center;
}

.footer-brand .brand-mark {
    width: 92px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 44, .14), rgba(11, 18, 32, .88));
}

.footer-brand .brand-mark img {
    max-width: 66px;
    max-height: 36px;
}

.footer-brand .brand-lockup strong {
    font-size: 24px;
    line-height: 1.05;
}

.footer-brand .brand-lockup small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

.footer-brand p {
    max-width: 500px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
}

.footer-shell h3 {
    margin: 0 0 20px;
    color: #fff;
    font: 800 18px/1.15 Sora, Inter, sans-serif;
}

.footer-shell a:not(.brand-lockup):not(.social-link) {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .58);
    font-size: 16px;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-shell a:hover {
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 16px 20px;
    color: rgba(86, 108, 145, .7);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.social-link {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .footer-brand p {
        margin-top: 28px;
        font-size: 16px;
        line-height: 1.7;
    }

    .footer-shell h3 {
        margin-bottom: 16px;
        font-size: 17px;
    }

    .footer-shell a:not(.brand-lockup):not(.social-link) {
        margin-top: 12px;
        font-size: 15px;
    }
}

.food-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    top: 105%;
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--ff-orange);
    opacity: .22;
    animation: particleRise 18s linear infinite;
}

.particle::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.particle-a { left: 9%; animation-duration: 15s; color: var(--ff-orange); }
.particle-b { left: 25%; animation-duration: 21s; animation-delay: -6s; color: var(--ff-blue); }
.particle-c { left: 52%; animation-duration: 18s; animation-delay: -10s; color: var(--ff-orange); }
.particle-d { left: 76%; animation-duration: 24s; animation-delay: -2s; color: var(--ff-blue); }
.particle-e { left: 91%; animation-duration: 19s; animation-delay: -12s; color: var(--ff-orange); }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes particleRise {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-120vh) rotate(360deg); }
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advanced-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .preview-card {
        grid-template-columns: 1.35fr .65fr;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: .92fr 1.08fr;
    }

    .stats-panel {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .feature-card {
        min-height: 260px;
    }

    .advanced-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .nav-menu {
        position: absolute;
        inset: 78px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(232, 237, 245, .95);
        border-radius: 20px;
        padding: 10px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 24px 80px rgba(51, 66, 87, .16);
        backdrop-filter: blur(18px);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        border-radius: 14px;
        padding: 13px 14px;
    }

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

    .dashboard-mockup {
        right: auto;
        left: 0;
        right: 0;
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .phone-left {
        left: 6%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 112px;
    }

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

    .dashboard-mockup {
        top: 20px;
    }

    .mockup-body {
        grid-template-columns: 58px 1fr;
        min-height: 330px;
    }

    .mock-sidebar {
        padding: 22px 12px;
    }

    .mock-sidebar span {
        width: 30px;
    }

    .mock-content {
        padding: 16px;
    }

    .metric-row {
        gap: 8px;
    }

    .metric-row div {
        padding: 12px 9px;
    }

    .metric-row b {
        font-size: 20px;
    }

    .phone-left,
    .food-card {
        display: none;
    }

    .timeline::before {
        display: none;
    }

    .timeline-step {
        grid-template-columns: 52px 1fr;
    }

    .timeline-step i {
        display: none;
    }

    .timeline-step > span {
        width: 52px;
        height: 52px;
    }

    .app-mockups {
        min-height: 500px;
    }

    .app-phone-primary {
        left: 2%;
        width: 202px;
        height: 402px;
    }

    .app-phone-secondary {
        right: 0;
        top: 90px;
        width: 170px;
        height: 338px;
    }

    .notification-chip {
        left: 8%;
        bottom: 22px;
    }
}

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