/*
 * Ported VERBATIM from the design prototype — landing page (.lp-*)
 *
 * Do not restructure or reformat: this is kept byte-identical to the design
 * so it can be diffed against it. Overrides belong in a separate file.
 */

/* NorthBite — marketing landing page. Extends c-styles.css design tokens. */

/* ---- Marketing nav ---- */
.lp-nav { position: sticky; top: 0; z-index: 40; background: rgba(251,248,241,.82); backdrop-filter: saturate(160%) blur(16px); border-bottom: 1px solid var(--line); }
.lp-nav-inner { max-width: 1320px; margin: 0 auto; padding: 15px 28px; display: flex; align-items: center; gap: 28px; }
.lp-nav-logo { display: flex; align-items: center; cursor: pointer; }
/*
 * 38px, not the design prototype's 27px (client, 2026-07-30): the wordmark carries
 * a "Delivery Built for the North" strapline under it, which at 27px was too small
 * to read. The logo is an SVG, so scaling costs nothing, and 38px still sits inside
 * the nav's existing height — that is set by the taller "Order now" button, so the
 * header does not grow.
 */
.lp-nav-logo img { height: 38px; }
.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-links a { padding: 9px 14px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); border-radius: 999px; cursor: pointer; white-space: nowrap; }
.lp-nav-links a:hover { background: var(--line-2); color: var(--ink); }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lp-nav-signin { font-size: 14.5px; font-weight: 600; cursor: pointer; padding: 9px 6px; white-space: nowrap; }
.lp-nav-actions .cbtn { white-space: nowrap; }
.lp-nav-signin:hover { color: var(--nb-3); }
@media (max-width: 1220px) { .lp-nav-links { display: none; } }
.lp-nav-burger { display: none; width: 40px; height: 40px; border-radius: 999px; background: var(--line-2); border: 1px solid var(--line); color: var(--ink); place-items: center; cursor: pointer; }
.lp-nav-burger:hover { background: var(--line); }
@media (max-width: 1220px) { .lp-nav-burger { display: grid; } }
@media (max-width: 620px) { .lp-nav-signin { display: none; } }
.lp-nav-drawer { display: flex; flex-direction: column; border-top: 1px solid var(--line); background: var(--bg); padding: 8px 20px 16px; }
.lp-nav-drawer a { padding: 12px 6px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--line); }
.lp-nav-drawer a:last-child { border-bottom: none; }

/* ---- Hero ---- */
.lp-hero { max-width: 1320px; margin: 18px auto 0; padding: 0 28px; position: relative; }
.lp-hero-inner { position: relative; background: linear-gradient(135deg, #0F1410 0%, #1A2A20 62%, #0E2616 100%); border-radius: var(--r-xl); overflow: hidden; padding: 74px 60px 66px; color: white; transition: min-height .4s ease, padding .4s ease; }
/* full-width canvas mode */
.lp-hero.full { max-width: none; margin: 0; padding: 0; }
.lp-hero.full .lp-hero-inner { border-radius: 0; padding: 90px 8vw; }
.lp-hero.full .lp-hero-grid { max-width: 1320px; margin: 0 auto; width: 100%; }
.lp-hero-toggle { position: absolute; z-index: 5; top: 20px; right: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: white; border-radius: 999px; font-size: 12.5px; font-weight: 600; cursor: pointer; backdrop-filter: blur(8px); transition: background .15s; }
.lp-hero-toggle:hover { background: rgba(255,255,255,.22); }
.lp-hero-toggle svg { transform: rotate(-45deg); }
.lp-hero.full .lp-hero-toggle svg { transform: none; }
.lp-hero-mesh { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 84% 18%, rgba(255,179,71,.34), transparent 36%), radial-gradient(circle at 12% 82%, rgba(0,167,93,.42), transparent 42%), radial-gradient(circle at 72% 92%, rgba(244,118,58,.24), transparent 32%); }
.lp-hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
/*
 * Let the columns shrink below their contents' intrinsic width (client,
 * 2026-08-17: hero cut off on small screens).
 *
 * A grid item defaults to min-width: auto, so a column can never be narrower
 * than its min-content. The phone column's min-content is .lp-phone-video's
 * fixed width — 297px below the 760px breakpoint — so under about 350px of
 * viewport the whole grid was forced wider than the space it had, and
 * .lp-hero-inner's overflow: hidden sliced it. The headline, lead and store
 * badges went with it, because they share the grid: measured at 300px, the
 * content box was 264px while the grid's min-content was 297px.
 *
 * That clipping never produced a horizontal scrollbar — overflow: hidden ate
 * it — which is why a document-level scrollWidth check reports the page as
 * clean and missed this entirely. Measure against .lp-hero-inner's box, not
 * the document's.
 *
 * This is only half the fix: the video also needs a max-width so it actually
 * shrinks once it is allowed to. That lives beside its width in
 * wp-overrides.css, which owns .lp-phone-video and loads after this file.
 *
 * Verified 280-1440px: no element passes .lp-hero-inner's edge at any width,
 * and the video's computed width is unchanged at every width from 360px up.
 */
.lp-hero-grid > * { min-width: 0; }
/*
 * 1300px, not the prototype's 940px (client, 2026-08-17: on iPad Pro only the
 * right card shows).
 *
 * Between 941px and 1300px the phone column is too narrow to hold the phone and
 * both cards: side by side there, the cards covered 15.7-20.9% of the app
 * screenshot, and hiding the bottom-left one to stop that is what left the iPad
 * with a single card. Stacking that band instead gives the phone the full width,
 * which puts the cards beside it rather than across it — both visible, and
 * coverage down to 8.7%.
 *
 * The cost is height: at 1024x1366 the hero goes from 793px to 1258px. On a
 * tablet in portrait that is a hero filling most of the first screen, which is
 * ordinary; it is the same arrangement phones already get.
 */
@media (max-width: 1300px) { .lp-hero-grid { grid-template-columns: 1fr; } .lp-hero-inner { padding: 48px 30px 44px; } }
.lp-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 22px; }
.lp-hero-eyebrow .led { width: 6px; height: 6px; border-radius: 999px; background: #6BD27A; box-shadow: 0 0 0 3px rgba(107,210,122,.25); }
/* line-height was the prototype's 1.01, which only worked because its headline
   ("Crave it. / We'll bring it.") had no descender on line 1. The client's copy
   of 2026-07-31 does — "Hungry?" — and at 1.01 the g/y descenders overlap the
   caps of "We'll Deliver." by 1.5px at 1440px and touch at 390px, reading as one
   joined block. 1.10 is the smallest step that clears both (+5.5px / +4.0px of
   measured ink gap) while keeping the display type tight. */
.lp-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(42px, 5.4vw, 74px); line-height: 1.10; letter-spacing: -.03em; margin: 0 0 18px; }
.lp-hero h1 em { font-style: italic; color: #FFB347; font-weight: 500; }
.lp-hero .lead { font-size: 17.5px; line-height: 1.55; color: rgba(255,255,255,.76); max-width: 460px; margin: 0 0 28px; }

/* app store buttons */
.lp-hero-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-store { display: flex; align-items: center; gap: 12px; padding: 12px 22px; background: white; color: var(--ink); border-radius: 14px; cursor: pointer; transition: transform .15s; }
.lp-store:hover { transform: translateY(-2px); }
.lp-store .sub { font-size: 11px; opacity: .65; line-height: 1; }
.lp-store .name { font-size: 15px; font-weight: 700; line-height: 1.1; margin-top: 3px; }
.lp-hero-meta { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.lp-hero-meta .stars { color: #FFB347; display: inline-flex; }
/* app store badges */
.lp-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; background: #000; color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; cursor: pointer; transition: transform .15s, background .15s; }
.lp-badge:hover { transform: translateY(-2px); background: #111; }
.lp-badge svg { flex-shrink: 0; }
.lp-badge span { display: flex; flex-direction: column; line-height: 1; }
.lp-badge small { font-size: 10px; font-weight: 500; letter-spacing: .02em; opacity: .9; }
.lp-badge b { font-size: 18px; font-weight: 600; margin-top: 3px; letter-spacing: -.01em; }
/* app-cta badges sit on light bg — keep them black too */
.app-cta .lp-badge { border-color: rgba(0,0,0,.08); }

/* phone mockup */
.lp-hero-phone { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
@media (max-width: 1300px) { .lp-hero-phone { margin-top: 40px; } }
.lp-phone { position: relative; width: 288px; height: 590px; background: #0A0D0B; border-radius: 44px; padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.06); transform: rotate(-3deg); }
.lp-phone-notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 108px; height: 26px; background: #0A0D0B; border-radius: 999px; z-index: 3; }
.lp-phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, var(--nb-soft) 0%, var(--bg) 26%); border-radius: 34px; overflow: hidden; padding: 46px 14px 14px; display: flex; flex-direction: column; gap: 10px; }
.lp-phone-top { display: flex; flex-direction: column; gap: 9px; }
.lp-phone-top .loc { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--ink); }
.lp-phone-top .loc strong { font-weight: 700; }
.lp-phone-top .loc svg:last-child { color: var(--mute); transform: rotate(90deg); margin-left: -1px; }
.lp-phone-search { display: flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: var(--mute); font-size: 12.5px; }
.lp-phone-hero { position: relative; height: 128px; border-radius: 16px; overflow: hidden; }
.lp-phone-hero .tag { position: absolute; z-index: 2; bottom: 10px; left: 10px; background: var(--ink); color: white; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.lp-phone-rest { display: flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 8px; }
.lp-phone-thumb { width: 46px; height: 46px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.lp-phone-rest .info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lp-phone-rest .info strong { font-size: 13px; font-weight: 700; color: var(--ink); }
.lp-phone-rest .info span { font-size: 11px; color: var(--mute); margin-top: 1px; }
.lp-phone-rest .heart { color: #E54848; }
.lp-phone-rest .heart.off { color: var(--mute-2); }
.lp-phone-track { display: flex; align-items: center; gap: 10px; margin-top: auto; background: var(--ink); color: white; border-radius: 14px; padding: 11px 14px; }
.lp-phone-track .dot { width: 9px; height: 9px; border-radius: 999px; background: #6BD27A; box-shadow: 0 0 0 4px rgba(107,210,122,.25); flex-shrink: 0; }
.lp-phone-track .txt { flex: 1; display: flex; flex-direction: column; }
.lp-phone-track .txt strong { font-size: 12.5px; font-weight: 700; }
.lp-phone-track .txt span { font-size: 11px; opacity: .7; }
.lp-phone-track .eta { font-family: var(--font-mono); font-weight: 700; font-size: 15px; }
.lp-float { position: absolute; background: white; border-radius: 18px; padding: 12px; box-shadow: 0 20px 44px rgba(0,0,0,.34); width: 210px; color: var(--ink); animation: lpfloaty 6s ease-in-out infinite; }
.lp-float .ph { height: 118px; margin: -12px -12px 10px; border-radius: 18px 18px 6px 6px; overflow: hidden; }
.lp-float .t { font-weight: 700; font-size: 14px; }
.lp-float .s { font-size: 12px; color: var(--mute); margin-top: 2px; }
.lp-float .p { font-family: var(--font-mono); font-weight: 700; margin-top: 8px; font-size: 14px; color: var(--nb-3); }
@keyframes lpfloaty { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-9px) rotate(var(--rot,0deg)); } }
/*
 * Both cards keep the prototype's size and their horizontal anchors, and are
 * moved along the vertical instead, so they clip the phone's corners rather
 * than lie across it (client, 2026-08-17: reduce how much of the app they
 * cover, at every width).
 *
 * The cards are meant to overlap the phone — that is the design — but they were
 * covering 21% of the app screenshot at 1280px and 18% even at 1440px, on a
 * mock-up whose whole job is to show the app. `bottom` goes 30px -> -60px and
 * `top` 6px -> -45px; nothing else about either card changes.
 *
 * Two other levers were tried and both were wrong:
 *
 *  - SHRINKING the cards to 86%. It reduced coverage, but a smaller card is a
 *    different card: the client's objection was that the design had changed.
 *  - MOVING the top-right card outward horizontally. Lower coverage again, but
 *    it cut that card's grip on the phone from 106px to 57px, and at wide
 *    viewports — where the grid caps at 1320px while the phone stays 345px —
 *    the card visibly came away from the corner it is supposed to rest on.
 *
 * The bottom-left card cannot go left either: it shares a line with the store
 * badges and lands on them at every width from 1125px up. Vertical is the only
 * axis with room, which is what makes it the right one.
 *
 * Coverage after: 11.6% at 1646px and above, 13.5% at 1440px, 15.5% at 1280px,
 * against 15.6 / 18.2 / 21% before — a bigger reduction than shrinking them
 * achieved, with both cards untouched.
 *
 * -60 and -45 are as far as they go: at -90 / -65 the bottom-left card starts
 * being cut off by .lp-hero-inner's own overflow: hidden.
 */
.lp-hero-float { position: absolute; bottom: 30px; left: 0; width: 176px; box-shadow: 0 24px 48px rgba(0,0,0,.4); }
/*
 * Stacked, anchor this card to the phone rather than to the column (client,
 * 2026-08-17: it should touch the phone, as the top-right one does).
 *
 * At left: 0 it sits against the edge of a column that is now the full width, so
 * on a tablet it floated well clear of the phone while its opposite number still
 * rested on the corner — one attached, one adrift.
 *
 * calc(50% - 263px) is the same expression the side-by-side layout uses: 50% is
 * the phone's centre, 172.5px reaches its left edge, and the remaining 90.5px
 * reproduces the overlap the design has at 1440px. Because it is measured from
 * the centre it holds that overlap steady as the column changes width, which
 * left: 0 could not.
 *
 * Nothing to collide with here: stacked, the copy and the store badges sit above
 * the phone rather than beside it, which is what makes this possible at these
 * widths and not in the side-by-side layout, where the badges share the card's
 * line and cap its travel at 30px.
 */
@media (max-width: 1300px) {
	.lp-hero-float { left: calc(50% - 263px); }

	/*
	 * And the same corner-clipping offsets the side-by-side layout uses, for the
	 * same reason: anchored but sitting square on the phone, the two cards covered
	 * 18% of the app screenshot, above the 15.7% the wide layout settles at.
	 * Lifting them off the corners brings it to 14.9%, with the card still resting
	 * on 100px of the phone — the grip the design has.
	 *
	 * -40px and not the -60px used above 1301px: at 640px, -60px drops the card
	 * through .lp-hero-inner's bottom edge. -40px clears every width in this band.
	 */
	.lp-hero-float { bottom: -40px; }
	.lp-hero-float-tr { top: -30px; }
}
/*
 * Side-by-side layout only, which now begins at 1301px.
 *
 * Both cards keep the prototype's size; the reduction is positional. The
 * bottom-left one is the awkward one: it is anchored at left: 0 of a column the
 * phone is centred in, and the phone is a fixed 345px, so as that column
 * narrows its left edge slides towards the card and the overlap grows by itself
 * — 5.1% of the app screenshot at 1595px against 8.9% by 1124px, with nothing
 * having moved.
 *
 * Everything that could hold it back within this layout was measured, and each
 * hit something solid:
 *
 *  - LEFT, to follow the phone: it reaches the store badges, which share its
 *    line. -40px already touches them at 1200px and 1129px, so only about 30px
 *    of the ~59px needed was available.
 *  - DOWN, below the phone: past -60px it is cut off by .lp-hero-inner's own
 *    overflow: hidden.
 *  - SMALLER: rejected — a smaller card is a different card, and changing the
 *    design was not the ask.
 *  - A BIGGER PHONE, so the same card covers proportionally less: worth only
 *    17.7% -> 16.9%, and a design change in its own right.
 *
 * Which is why the band below this one is stacked rather than patched: there,
 * the phone gets the full width and the cards fall naturally beside it. See the
 * 1300px breakpoint above.
 */
@media (min-width: 1301px) {
	/*
	 * Both cards keep the prototype's size. The reduction is positional: this
	 * one drops below the phone's lower corner, the other lifts above its upper
	 * one, so they clip the corners instead of lying across the screenshot.
	 */
	.lp-hero-float { bottom: -60px; }
	.lp-hero-float-tr { top: -45px; }

	/*
	 * And this one follows the phone rather than the column, within a 30px
	 * budget. It is anchored at left: 0 of a column the phone is centred in,
	 * and the phone is a fixed 345px, so as the column narrows its left edge
	 * slides towards the card and the overlap grows by itself — 5.1% of the
	 * screenshot at 1595px against 8.9% by 1124px, with nothing moving.
	 *
	 * calc(50% - 263px) is the position that would hold it constant: 50% is the
	 * phone's centre, 172.5px reaches its left edge, and the remaining 90.5px
	 * reproduces the bite the design has at 1440px. It only gets 30px of that,
	 * because further left it reaches the store badges, which share its line —
	 * measured, -40px touches them at 1200px and 1129px.
	 *
	 * The upper 0px keeps wide viewports exactly as drawn; without it the same
	 * formula pushes the card inward past 1440px.
	 */
	.lp-hero-float { left: clamp(-30px, calc(50% - 263px), 0px); }
}

/*
 * A rule here used to hide this card between 941px and 1300px, because the
 * corrections above could not keep its overlap down once the column got that
 * narrow. It is gone: the band is stacked now instead, which gives the phone the
 * full width and puts both cards beside it. Hiding a card was solving the
 * symptom of a column that had run out of room.
 */
/*
 * Anchored to the phone, not to the column. The phone is 288px wide and
 * flex-centred in .lp-hero-phone, so its right edge is at 50% + 144px; the
 * design overlaps the card 43px over that edge (measured off the mockup:
 * 168px card, left edge 43px inside the phone). Using `right` instead let the
 * card drift away from the phone as the column grew.
 *
 * The min() is a clamp, not a reposition (client, 2026-08-10: "appears heavily
 * cropped"). Between the two-column breakpoint at 941px and about 1085px, the
 * anchored position pushed the card past the viewport and .lp-hero-inner's
 * overflow: hidden sliced it — 28.8px lost at its worst, at 960px. The first
 * term is the design's position and wins at every width where it fits, so wide
 * viewports are byte-for-byte unchanged; the second only takes over in that
 * band, sliding the card left just enough to stay whole.
 *
 * The second term is "the column's right edge, plus the hero's own side padding
 * that the card is allowed to hang into, less the card and a margin for the
 * -6deg rotation's extra width". The 8vw MUST match .lp-hero.full's padding
 * above — change one and this stops tracking the viewport edge.
 */
.lp-hero-float-tr { position: absolute; top: 6px; left: min(calc(50% + 101px), calc(100% + 8vw - 188px)); width: 168px; box-shadow: 0 24px 48px rgba(0,0,0,.4); }
.lp-hero-float-tr .ph { height: 88px; }
@media (max-width: 620px) { .lp-hero-float-tr { display: none; } }
/*
 * 620px, not the prototype's 460px (client, 2026-08-17: card over the app on a
 * phone).
 *
 * Same mechanism as the desktop band, one layout down. Here the phone is
 * centred in a full-width column while this card sits at its left edge, so as
 * the viewport narrows the phone slides into the card: measured, it covers 5.6%
 * of the app screenshot at 620px, 10.6% by 540px and 14.9% by 470px — the
 * worst figure anywhere on the page.
 *
 * Moving it left is not available at these widths; there is no room beside the
 * phone to move into. Raising the breakpoint to meet .lp-hero-float-tr's own
 * 620px is what is left, and it means both cards appear and disappear together
 * rather than one lingering into the widths where it does the most damage.
 */
@media (max-width: 620px) { .lp-hero-float { display: none; } }
/*
 * Two earlier rules stood here: one hiding the bottom-left card between 941px
 * and 1120px, and one easing it downwards between 1121px and 1280px. Both were
 * attempts to hold the overlap down at the squeezed end of the two-column
 * layout, and both only moved the problem to the width either side of their own
 * boundary. The single `display: none` above covers the whole side-by-side
 * range and replaces them.
 */
.lp-hero-float .ph { height: 92px; }

/* ---- Trust strip ---- */
.lp-trust { max-width: 1320px; margin: 0 auto; padding: 34px 28px 38px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.lp-trust .t-item { display: flex; align-items: baseline; gap: 8px; }
.lp-trust .t-item .n { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -.02em; color: var(--ink); }
.lp-trust .t-item .l { font-size: 13.5px; color: var(--mute); }
.lp-trust .divider { width: 1px; height: 30px; background: var(--line); }
@media (max-width: 700px) { .lp-trust .divider { display: none; } .lp-trust { gap: 22px; } }

/* ---- How it works — auto-playing showcase ---- */
.lp-show { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .lp-show { grid-template-columns: 1fr; gap: 24px; } }
.lp-show-stage { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 500px; display: grid; place-items: center; background: linear-gradient(165deg, #0F1410 0%, #16281D 60%, #0E2616 100%); }
@media (max-width: 860px) { .lp-show-stage { min-height: 440px; } }
.lp-show-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 34%, hsl(var(--h) 70% 55% / .45), transparent 55%), radial-gradient(circle at 82% 88%, hsl(var(--h) 80% 60% / .28), transparent 45%); transition: background .8s ease; }
.lp-show-phone { position: relative; z-index: 1; animation: lpShowIn .6s cubic-bezier(.22,.9,.3,1) both; }
@keyframes lpShowIn { from { opacity: 0; transform: translateY(26px) scale(.96); } to { opacity: 1; transform: none; } }
.lp-show-chip { position: absolute; top: 24px; left: 24px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); color: white; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .03em; animation: lpChipIn .5s ease both; }
.lp-show-chip svg { color: #6BD27A; }
@keyframes lpChipIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: none; } }

.lp-show-steps { display: flex; flex-direction: column; gap: 8px; }
.lp-show-step { display: flex; gap: 18px; text-align: left; background: transparent; border: none; border-radius: var(--r-lg); padding: 22px 24px; cursor: pointer; position: relative; transition: background .3s ease; font: inherit; color: inherit; }
.lp-show-step::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px; border-radius: 999px; background: var(--line); transition: background .3s; }
.lp-show-step.on { background: white; box-shadow: var(--shadow); }
.lp-show-step.on::before { background: var(--nb); }
.lp-show-step:not(.on):hover { background: var(--line-2); }
.lp-show-num { flex-shrink: 0; font-family: var(--font-mono); font-weight: 600; font-size: 15px; color: var(--mute); background: var(--line-2); width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; transition: .3s; }
.lp-show-step.on .lp-show-num { color: white; background: var(--nb); box-shadow: 0 0 0 0 rgba(0,167,93,.4); animation: lpPulse 2s infinite; }
@keyframes lpPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,167,93,.4); } 50% { box-shadow: 0 0 0 9px rgba(0,167,93,0); } }
.lp-show-body { flex: 1; min-width: 0; }
.lp-show-body h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.2vw, 24px); letter-spacing: -.01em; margin: 8px 0 0; color: var(--ink); transition: color .3s; }
.lp-show-step:not(.on) .lp-show-body h3 { color: var(--mute); }
.lp-show-detail { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .4s ease, opacity .4s ease, margin .4s ease; }
.lp-show-step.on .lp-show-detail { grid-template-rows: 1fr; opacity: 1; margin-top: 8px; }
.lp-show-detail p { overflow: hidden; margin: 0; color: var(--mute); font-size: 15px; line-height: 1.6; }
.lp-show-track { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; margin-top: 16px; }
.lp-show-track i { display: block; height: 100%; background: linear-gradient(90deg, var(--nb), var(--warm-2)); border-radius: 999px; transform-origin: left; animation: lpFill linear forwards; }
@keyframes lpFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .lp-show-phone, .lp-show-chip { animation: none; } .lp-show-num { animation: none !important; } }


/* mini phone used inside feature rows */
.lp-mphone { position: relative; width: 260px; height: 400px; background: #0A0D0B; border-radius: 40px 40px 0 0; padding: 10px 10px 0; box-shadow: 0 34px 70px rgba(20,25,22,.28), inset 0 0 0 2px rgba(255,255,255,.05); }
.lp-mphone .notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #0A0D0B; border-radius: 999px; z-index: 3; }
.lp-mphone .scr { width: 100%; height: 100%; background: var(--bg); border-radius: 32px 32px 0 0; overflow: hidden; padding: 40px 12px 0; display: flex; flex-direction: column; gap: 9px; }
.lp-mphone .top { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.lp-mphone .top.bar { background: white; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--mute); }
.lp-mphone .top strong { color: var(--ink); font-weight: 700; }
.lp-mphone .top .chev { margin-left: auto; color: var(--mute); }
.lp-mphone .map { position: relative; flex: 1; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #DCE5D0 0%, #C4D2B4 100%); }
.lp-mphone .map::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.45) 0 1px, transparent 1px 26px), repeating-linear-gradient(90deg, rgba(255,255,255,.45) 0 1px, transparent 1px 26px); }
.lp-mphone .pin { position: absolute; width: 22px; height: 22px; border-radius: 999px 999px 999px 0; transform: rotate(-45deg); box-shadow: 0 3px 8px rgba(0,0,0,.25); }
.lp-mphone .card-ov { position: absolute; left: 10px; right: 10px; bottom: 10px; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.28); background: var(--ink); }
.lp-mphone .card-ov .img { height: 96px; position: relative; }
.lp-mphone .card-ov .cap { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 10px 12px; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 70%); color: white; }
.lp-mphone .card-ov .cap .badge { position: absolute; top: 10px; left: 10px; background: var(--warm-2); color: #3D2C1F; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 999px; }
.lp-mphone .card-ov .cap strong { font-size: 14px; }
.lp-mphone .card-ov .cap .row { display: flex; justify-content: space-between; font-size: 11px; opacity: .85; margin-top: 2px; }
/* order variant */
.lp-mphone .item { display: flex; gap: 10px; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 8px; }
.lp-mphone .item .th { width: 44px; height: 44px; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.lp-mphone .item .m { flex: 1; min-width: 0; }
.lp-mphone .item .m strong { font-size: 12.5px; display: block; }
.lp-mphone .item .m .pr { font-family: var(--font-mono); font-weight: 700; font-size: 12px; margin-top: 2px; }
.lp-mphone .item .qb { align-self: center; background: var(--nb); color: white; border-radius: 999px; font-size: 11px; font-weight: 700; padding: 5px 10px; }
.lp-mphone .paybar { margin-top: auto; margin-bottom: 12px; background: var(--nb); color: white; border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 13px; }
.lp-mphone .paybar .amt { font-family: var(--font-mono); }
/* track variant */
.lp-mphone .track { margin-top: auto; margin-bottom: 12px; background: var(--ink); color: white; border-radius: 14px; padding: 12px 14px; }
.lp-mphone .track .lab { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; opacity: .6; }
.lp-mphone .track .eta { font-family: var(--font-mono); font-weight: 700; font-size: 22px; margin: 2px 0 8px; }
.lp-mphone .track .prog { height: 5px; background: rgba(255,255,255,.18); border-radius: 999px; overflow: hidden; }
.lp-mphone .track .prog i { display: block; height: 100%; width: 66%; background: linear-gradient(90deg, #6BD27A, var(--warm-2)); border-radius: 999px; }
.lp-mphone .rider { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.lp-mphone .rider .av { width: 26px; height: 26px; border-radius: 999px; background: linear-gradient(135deg, var(--warm-1), var(--warm-2)); color: white; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.lp-mphone .rider .rn { font-size: 11.5px; } .lp-mphone .rider .rn strong { display: block; }


/* ---- Partner split (restaurants / riders) ---- */
.lp-partner { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .lp-partner { grid-template-columns: 1fr; } }
.lp-pcard { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 44px 42px; color: white; display: flex; flex-direction: column; min-height: 440px; }
.lp-pcard.rest { background: linear-gradient(150deg, #003C1F 0%, #00592D 58%, #007C42 100%); }
.lp-pcard.rider { background: linear-gradient(150deg, #4F1E0E 0%, #B04E1C 68%, #E08A3C 100%); }
.lp-pcard .p-mesh { position: absolute; inset: 0; pointer-events: none; opacity: .5; background: radial-gradient(circle at 85% 12%, rgba(255,255,255,.22), transparent 40%); }
.lp-pcard .p-label { position: relative; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .82; }
.lp-pcard h3 { position: relative; font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.02em; line-height: 1.06; margin: 10px 0 12px; }
.lp-pcard > p { position: relative; opacity: .84; font-size: 15.5px; line-height: 1.55; max-width: 420px; margin: 0 0 24px; }
.lp-plist { position: relative; display: flex; flex-direction: column; gap: 12px; margin: 0 0 28px; }
.lp-plist .li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.45; }
.lp-plist .li .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px; background: rgba(255,255,255,.16); display: grid; place-items: center; margin-top: 1px; }
.lp-pcard .p-stats { position: relative; display: flex; gap: 30px; margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.lp-pcard .p-stats .n { font-family: var(--font-display); font-weight: 600; font-size: 26px; letter-spacing: -.02em; }
.lp-pcard .p-stats .l { font-size: 12.5px; opacity: .72; margin-top: 2px; }
.lp-pcard .p-cta { position: relative; margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; }
.lp-pcard .cbtn { background: white; color: var(--ink); border: none; }
.lp-pcard .cbtn.line { background: transparent; color: white; border: 1px solid rgba(255,255,255,.35); }
.lp-pcard .cbtn.line:hover { background: rgba(255,255,255,.12); }

/* ---- Testimonials ---- */
.lp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .lp-reviews { grid-template-columns: 1fr; } }
.lp-review { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px 24px; display: flex; flex-direction: column; }
.lp-review .stars { color: #F5A623; display: inline-flex; gap: 1px; margin-bottom: 14px; }
.lp-review .quote { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 20px; flex: 1; }
.lp-review .who { display: flex; align-items: center; gap: 12px; }
.lp-review .who .av { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(135deg, var(--warm-1), var(--warm-2)); color: white; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.lp-review .who .nm { font-weight: 700; font-size: 14px; }
.lp-review .who .wn { font-size: 12.5px; color: var(--mute); }

/* ---- Cities ---- */
.lp-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-city { padding: 11px 18px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 500; cursor: pointer; transition: .15s; display: inline-flex; align-items: center; gap: 8px; }
.lp-city:hover { border-color: var(--nb); color: var(--nb-3); transform: translateY(-2px); }
.lp-city .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--nb); }

/* ---- Section rhythm (landing) ---- */
.section { padding-bottom: 88px; }
#about { padding-top: 16px; }
#how { padding-top: 0 !important; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
/* stagger children of revealed grids */
.reveal .lp-step, .reveal .why-card, .reveal .cuisine-card, .reveal .lp-review, .reveal .lp-pcard, .reveal .lp-faq-item, .reveal .t-item, .reveal .lp-area, .reveal .lp-post, .reveal .lp-portal, .reveal .lp-about-stat { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in .lp-step, .reveal.in .why-card, .reveal.in .cuisine-card, .reveal.in .lp-review, .reveal.in .lp-pcard, .reveal.in .lp-faq-item, .reveal.in .t-item, .reveal.in .lp-area, .reveal.in .lp-post, .reveal.in .lp-portal, .reveal.in .lp-about-stat { opacity: 1; transform: none; }
.reveal.in .lp-area:nth-child(4n+2), .reveal.in .lp-post:nth-child(2), .reveal.in .lp-portal:nth-child(2), .reveal.in .lp-about-stat:nth-child(2) { transition-delay: .07s; }
.reveal.in .lp-area:nth-child(4n+3), .reveal.in .lp-post:nth-child(3), .reveal.in .lp-portal:nth-child(3), .reveal.in .lp-about-stat:nth-child(3) { transition-delay: .14s; }
.reveal.in .lp-area:nth-child(4n), .reveal.in .lp-about-stat:nth-child(4) { transition-delay: .21s; }
.reveal.in .lp-area:nth-child(n+5) { transition-delay: .26s; }
.reveal.in .lp-step:nth-child(2), .reveal.in .why-card:nth-child(2), .reveal.in .lp-review:nth-child(2), .reveal.in .lp-pcard:nth-child(2), .reveal.in .cuisine-card:nth-child(2) { transition-delay: .08s; }
.reveal.in .lp-step:nth-child(3), .reveal.in .why-card:nth-child(3), .reveal.in .lp-review:nth-child(3), .reveal.in .cuisine-card:nth-child(3) { transition-delay: .16s; }
.reveal.in .cuisine-card:nth-child(4) { transition-delay: .24s; }
.reveal.in .lp-faq-item:nth-child(n+2) { transition-delay: .05s; }
@media (prefers-reduced-motion: reduce) { .reveal .lp-step, .reveal .why-card, .reveal .cuisine-card, .reveal .lp-review, .reveal .lp-pcard, .reveal .lp-faq-item, .reveal .t-item, .reveal .lp-area, .reveal .lp-post, .reveal .lp-portal, .reveal .lp-about-stat { opacity: 1; transform: none; transition: none; } }

.lp-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item { background: white; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.lp-faq-item.open { border-color: var(--nb); box-shadow: var(--shadow); }
.lp-faq-q { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16.5px; color: var(--ink); list-style: none; }
.lp-faq-q .chev { flex-shrink: 0; margin-left: auto; color: var(--mute); transition: transform .2s, color .2s; }
.lp-faq-item.open .lp-faq-q .chev { transform: rotate(45deg); color: var(--nb-3); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.lp-faq-a p { margin: 0; padding: 0 24px 22px 24px; color: var(--mute); font-size: 15px; line-height: 1.6; max-width: 680px; }

/* ---- Final CTA ---- */
.lp-final { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.lp-final.full { max-width: none; margin: 60px 0 0; padding: 0; }
.lp-final-inner { position: relative; overflow: hidden; border-radius: var(--r-xl); background: linear-gradient(135deg, #0F1410 0%, #143024 70%, #0E2616 100%); color: white; padding: 66px 60px; text-align: center; }
.lp-final.full .lp-final-inner { border-radius: 0; padding: 96px 8vw; }
.lp-final-logo { position: relative; height: 68px; width: auto; margin: 0 auto 30px; display: block; }
@media (max-width: 700px) { .lp-final-logo { height: 48px; } .lp-final.full .lp-final-inner { padding: 64px 24px; } }
.lp-final-mesh { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 20% 20%, rgba(0,167,93,.4), transparent 40%), radial-gradient(circle at 82% 80%, rgba(255,179,71,.3), transparent 40%); }
.lp-final h2 { position: relative; font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -.02em; line-height: 1.04; margin: 0 auto 14px; max-width: 720px; }
.lp-final p { position: relative; font-size: 17px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 28px; }
.lp-final .btns { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-final .cbtn.white { background: white; color: var(--ink); border: none; }
.lp-final .cbtn.line { background: transparent; color: white; border: 1px solid rgba(255,255,255,.3); }
.lp-final .cbtn.line:hover { background: rgba(255,255,255,.12); }
