:root {
    --landing-ink: #111512;
    --landing-ink-soft: #1a211c;
    --landing-ivory: #f5f1e8;
    --landing-paper: #fbf9f4;
    --landing-gold: #d6a85f;
    --landing-gold-light: #f1d69e;
    --landing-sage: #8ea58f;
    --landing-muted: #6f756f;
    --landing-line: rgba(17, 21, 18, .13);
    --landing-shadow: 0 28px 80px rgba(17, 21, 18, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    background: var(--landing-ivory);
    color: var(--landing-ink);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    border: 0;
}

button {
    cursor: pointer;
}

img,
svg {
    display: block;
}

svg {
    width: 1.2em;
    height: 1.2em;
}

p,
h1,
h2,
h3,
ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

::selection {
    background: var(--landing-gold);
    color: var(--landing-ink);
}

:focus-visible {
    outline: 3px solid var(--landing-gold);
    outline-offset: 4px;
}

#toast-root {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    display: grid;
    gap: .75rem;
}

.app-toast {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem;
    width: min(24rem, calc(100vw - 2rem));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 1rem;
    background: #fff;
    padding: 1rem 1rem 1.15rem;
    color: #14734a;
    box-shadow: var(--landing-shadow);
    animation: landing-toast-in .22s ease both;
}

.app-toast-error { color: #b42318; }
.app-toast-content { font-size: .9rem; font-weight: 700; line-height: 1.45; }
.app-toast-close { background: transparent; color: #777; font-size: 1.3rem; }
.app-toast-progress { position: absolute; right: 0; bottom: 0; left: 0; height: .2rem; background: currentColor; transform-origin: left; animation: landing-toast-progress var(--toast-duration, 3400ms) linear forwards; }
.app-toast.is-leaving { animation: landing-toast-out .2s ease forwards; }

@keyframes landing-toast-in { from { opacity: 0; transform: translateY(-12px); } }
@keyframes landing-toast-out { to { opacity: 0; transform: translateY(-12px); } }
@keyframes landing-toast-progress { to { transform: scaleX(0); } }

.landing-page {
    min-height: 100vh;
    overflow: clip;
    background: var(--landing-ivory);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: .72rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    flex: none;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .82rem;
    background: #fff;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-brand > span:last-child {
    display: grid;
    gap: .06rem;
}

.landing-brand strong {
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.05;
}

.landing-brand em {
    color: currentColor;
    font-size: .59rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .13em;
    opacity: .62;
    text-transform: uppercase;
}

.landing-nav {
    position: fixed;
    top: 1rem;
    right: clamp(1rem, 3vw, 2.5rem);
    left: clamp(1rem, 3vw, 2.5rem);
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-height: 4.5rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 1.15rem;
    background: rgba(11, 14, 12, .36);
    padding: .65rem .7rem .65rem 1rem;
    color: #fff;
    backdrop-filter: blur(18px) saturate(130%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
    transition: background .28s ease, border-color .28s ease, color .28s ease, transform .28s ease;
}

.landing-nav.is-scrolled {
    border-color: rgba(17, 21, 18, .1);
    background: rgba(250, 248, 242, .92);
    color: var(--landing-ink);
    box-shadow: 0 18px 55px rgba(17, 21, 18, .11);
}

.landing-nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 2rem);
}

.landing-nav-links a,
.landing-login-link {
    position: relative;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.landing-nav-links a::after,
.landing-login-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -.45rem;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

.landing-nav-links a:hover::after,
.landing-login-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-button {
    display: inline-flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    gap: .72rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .7rem 1.2rem;
    font-size: .79rem;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button--gold {
    background: var(--landing-gold);
    color: #1a160e;
    box-shadow: 0 14px 32px rgba(214, 168, 95, .22);
}

.landing-button--gold:hover { box-shadow: 0 18px 40px rgba(214, 168, 95, .34); }
.landing-button--glass { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .08); color: #fff; backdrop-filter: blur(12px); }
.landing-button--glass:hover { background: rgba(255, 255, 255, .14); }
.landing-button--dark { border-color: var(--landing-ink); background: var(--landing-ink); color: #fff; }
.landing-nav-cta { min-height: 3rem; }

.landing-hero {
    position: relative;
    display: grid;
    min-height: max(46rem, 100svh);
    overflow: hidden;
    align-items: center;
    color: #f8f5ef;
}

.landing-hero-media,
.landing-hero-media img,
.landing-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.landing-hero-media img { object-fit: cover; object-position: center; }
.landing-hero-shade { background: linear-gradient(90deg, rgba(7, 9, 8, .94) 0%, rgba(7, 9, 8, .78) 42%, rgba(7, 9, 8, .24) 74%, rgba(7, 9, 8, .18) 100%); }
.landing-hero-shade::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(180deg, transparent, rgba(7, 9, 8, .72)); }
.landing-hero-glow { position: absolute; top: 18%; left: 45%; width: 34rem; height: 34rem; border-radius: 50%; background: rgba(214, 168, 95, .13); filter: blur(90px); }

.landing-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr);
    gap: 3rem;
    width: min(100%, 82rem);
    margin: 0 auto;
    padding: 9rem clamp(1.2rem, 4vw, 3rem) 6rem;
}

.landing-hero-copy { max-width: 52rem; }
.landing-eyebrow,
.landing-kicker {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--landing-gold-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.landing-eyebrow span { width: 2.25rem; height: 1px; background: currentColor; }
.landing-hero h1,
.landing-section-intro h2,
.landing-process-head h2,
.landing-faq-head h2,
.landing-quote-copy h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

.landing-hero h1 {
    max-width: 14ch;
    margin-top: 1.15rem;
    font-size: clamp(3.3rem, 6.4vw, 6.5rem);
    line-height: .88;
    text-wrap: balance;
}

.landing-hero-lead {
    max-width: 43rem;
    margin-top: 1.6rem;
    color: rgba(248, 245, 239, .76);
    font-size: clamp(.98rem, 1.35vw, 1.16rem);
    font-weight: 500;
    line-height: 1.75;
}

.landing-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.landing-hero-proof { display: flex; flex-wrap: wrap; gap: .8rem 1.35rem; margin-top: 1.45rem; }
.landing-hero-proof li { display: flex; align-items: center; gap: .45rem; color: rgba(248, 245, 239, .76); font-size: .76rem; font-weight: 650; }
.landing-hero-proof svg { color: var(--landing-gold); font-size: .9rem; }

.landing-hero-float {
    align-self: end;
    justify-self: end;
    width: min(100%, 19rem);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 1.35rem;
    background: rgba(17, 21, 18, .48);
    padding: 1.35rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.landing-hero-float-kicker { color: var(--landing-gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.landing-hero-float strong { display: block; margin-top: .65rem; font-family: "Cormorant Garamond", serif; font-size: 1.8rem; line-height: 1; }
.landing-hero-float-status { display: flex; align-items: center; gap: .5rem; margin-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 1rem; color: rgba(255, 255, 255, .72); font-size: .72rem; font-weight: 700; }
.landing-hero-float-status i { width: .52rem; height: .52rem; border-radius: 50%; background: #8ecb91; box-shadow: 0 0 0 .3rem rgba(142, 203, 145, .13); }

.landing-scroll-hint { position: absolute; bottom: 1.6rem; left: 50%; z-index: 3; display: grid; justify-items: center; gap: .5rem; color: rgba(255, 255, 255, .62); font-size: .61rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; transform: translateX(-50%); }
.landing-scroll-hint i { position: relative; width: 1px; height: 2.1rem; overflow: hidden; background: rgba(255, 255, 255, .25); }
.landing-scroll-hint i::after { content: ""; position: absolute; top: 0; left: 0; width: 1px; height: 55%; background: var(--landing-gold); animation: landing-scroll-hint 1.8s ease-in-out infinite; }
@keyframes landing-scroll-hint { 0% { transform: translateY(-120%); } 60%, 100% { transform: translateY(210%); } }

.landing-proof-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--landing-line);
    background: var(--landing-paper);
    padding: 1.25rem max(clamp(1.2rem, 4vw, 3rem), calc((100vw - 76rem) / 2));
}

.landing-proof-strip p { font-family: "Cormorant Garamond", serif; font-size: 1.28rem; }
.landing-proof-strip ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem 1.5rem; }
.landing-proof-strip li { position: relative; color: var(--landing-muted); font-size: .68rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.landing-proof-strip li:not(:first-child)::before { content: ""; position: absolute; top: 50%; left: -.8rem; width: .25rem; height: .25rem; border-radius: 50%; background: var(--landing-gold); transform: translateY(-50%); }

.landing-story-section,
.landing-features,
.landing-process,
.landing-faq,
.landing-quote {
    padding: clamp(5.5rem, 10vw, 9rem) clamp(1.2rem, 4vw, 3rem);
}

.landing-story-section { background: var(--landing-ivory); }
.landing-section-intro { width: min(100%, 76rem); margin: 0 auto; }
.landing-section-intro > p:last-child { max-width: 43rem; margin-top: 1.2rem; color: var(--landing-muted); font-size: .98rem; line-height: 1.8; }
.landing-kicker { color: #9c6c29; }
.landing-section-intro h2,
.landing-process-head h2,
.landing-faq-head h2,
.landing-quote-copy h2 {
    max-width: 18ch;
    margin-top: .8rem;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: .98;
    text-wrap: balance;
}

.landing-story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(21rem, .65fr);
    gap: clamp(2rem, 5vw, 5rem);
    width: min(100%, 82rem);
    margin: clamp(3.5rem, 7vw, 6rem) auto 0;
}

.landing-story-visual { min-height: calc(100vh - 7rem); }
.product-stage { position: relative; width: 100%; height: min(42rem, calc(100vh - 8rem)); min-height: 35rem; border: 1px solid rgba(17, 21, 18, .11); border-radius: 2rem; background: radial-gradient(circle at 50% 45%, rgba(214, 168, 95, .18), transparent 45%), linear-gradient(145deg, #e7e0d3, #f8f4eb); box-shadow: var(--landing-shadow); isolation: isolate; }
.product-stage::before { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(17, 21, 18, .06); border-radius: 1.4rem; pointer-events: none; }
.product-halo { position: absolute; top: 25%; left: 25%; width: 48%; aspect-ratio: 1; border-radius: 50%; background: rgba(214, 168, 95, .28); filter: blur(60px); }

.product-dashboard {
    position: absolute;
    top: 10%;
    left: 6%;
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    width: 76%;
    min-width: 29rem;
    height: 67%;
    overflow: hidden;
    border: 1px solid rgba(17, 21, 18, .11);
    border-radius: 1.25rem;
    background: #fbfaf7;
    box-shadow: 0 28px 70px rgba(17, 21, 18, .2);
}

.product-dashboard-sidebar { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; background: #151a16; padding: .9rem .55rem; }
.product-dashboard-brand { display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border-radius: .55rem; background: var(--landing-gold); color: #16140f; font-size: .7rem; font-weight: 900; }
.product-dashboard-sidebar i { width: 1.15rem; height: .22rem; border-radius: 999px; background: rgba(255, 255, 255, .18); }
.product-dashboard-sidebar i:nth-of-type(2) { background: var(--landing-gold); }
.product-dashboard-content { min-width: 0; padding: 1.05rem; }
.product-dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-dashboard-head div { display: grid; gap: .18rem; }
.product-dashboard-head small { color: #8a908b; font-size: .53rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.product-dashboard-head strong { font-size: .88rem; }
.product-dashboard-head > span { border-radius: 999px; background: #e2f3e3; padding: .32rem .55rem; color: #3b7743; font-size: .5rem; font-weight: 800; }
.product-dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .8rem; }
.product-dashboard-stats span { display: grid; gap: .2rem; border: 1px solid #ece8df; border-radius: .65rem; background: #fff; padding: .55rem; }
.product-dashboard-stats small { color: #898e89; font-size: .45rem; font-weight: 700; }
.product-dashboard-stats strong { font-size: .75rem; }
.product-dashboard-board { display: grid; gap: .45rem; margin-top: .75rem; }
.product-dashboard-row { position: relative; display: grid; grid-template-columns: 2.3rem 1fr auto; align-items: center; gap: .55rem; border: 1px solid #ebe7df; border-radius: .7rem; background: #fff; padding: .45rem; }
.product-dashboard-row--active { border-color: rgba(214, 168, 95, .6); box-shadow: 0 8px 20px rgba(214, 168, 95, .13); }
.product-dashboard-photo { width: 2.3rem; height: 2.3rem; border-radius: .55rem; }
.product-dashboard-photo--sage, .product-menu-visual--sage { background: radial-gradient(circle at 40% 40%, #c8d5b9 0 15%, transparent 16%), linear-gradient(135deg, #58725b, #d8c49d); }
.product-dashboard-photo--amber, .product-menu-visual--amber { background: radial-gradient(circle at 55% 45%, #f0c681 0 18%, transparent 19%), linear-gradient(135deg, #8d4c2f, #dfb06f); }
.product-dashboard-photo--cream, .product-menu-visual--cream { background: radial-gradient(circle at 50% 50%, #f6e7ae 0 18%, transparent 19%), linear-gradient(135deg, #c28b52, #f3e7ca); }
.product-dashboard-row div { display: grid; min-width: 0; gap: .18rem; }
.product-dashboard-row div strong { overflow: hidden; font-size: .59rem; text-overflow: ellipsis; white-space: nowrap; }
.product-dashboard-row div small { color: #91958f; font-size: .46rem; }
.product-availability { grid-column: 3; grid-row: 1; border-radius: 999px; padding: .3rem .43rem; font-size: .42rem; font-weight: 800; }
.product-availability--on { background: #e5f3e5; color: #477a4b; }
.product-availability--off { background: #f6dfdc; color: #9d4137; opacity: 0; }

.product-phone { position: absolute; right: 6%; bottom: 5%; z-index: 3; width: min(36%, 14rem); min-width: 11rem; }
.product-phone-shell { position: relative; border: .5rem solid #151a16; border-radius: 2rem; background: #151a16; box-shadow: 0 34px 70px rgba(17, 21, 18, .28); }
.product-phone-speaker { position: absolute; top: .4rem; left: 50%; z-index: 2; width: 2.8rem; height: .28rem; border-radius: 999px; background: #202722; transform: translateX(-50%); }
.product-phone-screen { overflow: hidden; border-radius: 1.45rem; background: #f8f4eb; }
.product-phone-cover { display: grid; align-content: end; min-height: 6rem; background: linear-gradient(0deg, rgba(17, 21, 18, .86), rgba(17, 21, 18, .08)), linear-gradient(135deg, #73836c, #c99b5a); padding: .8rem; color: #fff; }
.product-phone-cover span { font-size: .46rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-phone-cover strong { margin-top: .22rem; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }
.product-phone-tabs { display: flex; gap: .3rem; overflow: hidden; padding: .6rem; }
.product-phone-tabs span { border: 1px solid #dfd8cb; border-radius: 999px; background: #fff; padding: .25rem .42rem; font-size: .39rem; font-weight: 750; white-space: nowrap; }
.product-phone-tabs span:first-child { border-color: #1d241f; background: #1d241f; color: #fff; }
.product-phone-menu { display: grid; gap: .45rem; padding: 0 .6rem .75rem; }
.product-phone-menu article { position: relative; display: grid; grid-template-columns: 2.5rem 1fr; gap: .5rem; border-radius: .65rem; background: #fff; padding: .38rem; box-shadow: 0 6px 18px rgba(17, 21, 18, .06); }
.product-menu-visual { width: 2.5rem; height: 2.8rem; border-radius: .5rem; }
.product-phone-menu article div { display: grid; align-content: center; min-width: 0; }
.product-phone-menu strong { font-size: .47rem; }
.product-phone-menu small { margin-top: .1rem; overflow: hidden; color: #8b8f8a; font-size: .36rem; text-overflow: ellipsis; white-space: nowrap; }
.product-phone-menu b { margin-top: .18rem; font-size: .43rem; }
.product-phone-menu em { position: absolute; inset: auto .4rem .4rem auto; border-radius: 999px; background: #9d4137; padding: .18rem .28rem; color: #fff; font-size: .31rem; font-style: normal; font-weight: 800; opacity: 0; }

.product-qr-card { position: absolute; bottom: 6%; left: 7%; z-index: 4; display: grid; justify-items: center; width: min(34%, 13rem); min-width: 10.5rem; border-radius: 1rem; background: #fff; padding: 1rem; text-align: center; box-shadow: 0 28px 60px rgba(17, 21, 18, .2); transform: rotate(-4deg); }
.product-qr-brand { color: #8c744d; font-size: .46rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.product-qr-card > strong { margin-top: .4rem; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; line-height: .88; }
.product-qr-code { position: relative; width: 58%; margin-top: .65rem; overflow: hidden; }
.product-qr-code img { width: 100%; height: auto; }
.product-qr-card small { margin-top: .5rem; color: #858a85; font-size: .37rem; font-weight: 650; }
.product-scan-line { position: absolute; top: 0; right: 0; left: 0; height: 18%; background: linear-gradient(180deg, transparent, rgba(214, 168, 95, .72), transparent); opacity: 0; }
.product-sync-pill { position: absolute; right: 8%; bottom: 4%; z-index: 5; display: flex; align-items: center; gap: .45rem; border: 1px solid rgba(255, 255, 255, .62); border-radius: 999px; background: rgba(17, 21, 18, .91); padding: .62rem .8rem; color: #fff; font-size: .53rem; font-weight: 800; box-shadow: 0 16px 40px rgba(17, 21, 18, .25); opacity: 0; }
.product-sync-pill svg { color: var(--landing-gold); }

.landing-story-steps { min-width: 0; }
.landing-story-step { display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; min-height: 78vh; align-items: center; color: var(--landing-muted); opacity: .42; transition: opacity .25s ease; }
.landing-story-step.is-active { opacity: 1; }
.landing-story-step > span { align-self: center; font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-weight: 700; }
.landing-story-step > div > p:first-child { color: #9c6c29; font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.landing-story-step h3 { max-width: 12ch; margin-top: .65rem; color: var(--landing-ink); font-family: "Cormorant Garamond", serif; font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: .95; }
.landing-story-step > div > p:last-child { max-width: 28rem; margin-top: 1rem; font-size: .9rem; line-height: 1.75; }

.landing-features { background: var(--landing-ink); color: #f7f3eb; }
.landing-section-intro--split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .55fr); align-items: end; gap: 3rem; }
.landing-features .landing-section-intro h2 { max-width: 16ch; }
.landing-features .landing-section-intro > p:last-child { color: rgba(247, 243, 235, .58); }
.landing-features .landing-kicker { color: var(--landing-gold-light); }
.landing-bento-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; width: min(100%, 76rem); margin: 3.5rem auto 0; }
.landing-bento { position: relative; display: flex; min-height: 23rem; flex-direction: column; overflow: hidden; border: 1px solid rgba(255, 255, 255, .11); border-radius: 1.5rem; background: #202720; padding: 1.35rem; }
.landing-bento--wide { grid-column: span 7; }
.landing-bento--availability { grid-column: span 5; background: linear-gradient(145deg, #e7dfd1, #f7f1e6); color: var(--landing-ink); }
.landing-bento--media { grid-column: span 4; background: #d6a85f; color: var(--landing-ink); }
.landing-bento--qr { grid-column: span 4; background: #f7f3eb; color: var(--landing-ink); }
.landing-bento--support { grid-column: span 4; background: linear-gradient(145deg, #28352c, #171d19); }
.landing-bento-icon { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid currentColor; border-radius: .85rem; opacity: .74; }
.landing-bento-copy { position: relative; z-index: 2; margin-top: auto; }
.landing-bento-copy > p:first-child { font-size: .62rem; font-weight: 800; letter-spacing: .13em; opacity: .65; text-transform: uppercase; }
.landing-bento h3 { max-width: 18ch; margin-top: .55rem; font-family: "Cormorant Garamond", serif; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: .98; }
.landing-bento-copy > p:last-child { max-width: 34rem; margin-top: .75rem; font-size: .78rem; line-height: 1.65; opacity: .67; }

.bento-board { position: absolute; top: 2.4rem; right: 2rem; width: 43%; border: 1px solid rgba(255, 255, 255, .1); border-radius: 1rem; background: rgba(255, 255, 255, .06); padding: .65rem; transform: rotate(2deg); }
.bento-board span { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .5rem; border-bottom: 1px solid rgba(255, 255, 255, .08); padding: .65rem .35rem; }
.bento-board span:last-child { border: 0; }
.bento-board i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--landing-gold); }
.bento-board strong { font-size: .59rem; }
.bento-board em { color: rgba(255, 255, 255, .42); font-size: .46rem; font-style: normal; }
.bento-toggle { position: absolute; top: 2rem; right: 1.6rem; display: flex; align-items: center; gap: .65rem; border-radius: 999px; background: #fff; padding: .5rem .75rem .5rem .5rem; box-shadow: 0 16px 35px rgba(17, 21, 18, .11); }
.bento-toggle span { position: relative; width: 2.4rem; height: 1.35rem; border-radius: 999px; background: #7e9b7f; }
.bento-toggle span::after { content: ""; position: absolute; top: .18rem; right: .18rem; width: .99rem; height: .99rem; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0, 0, 0, .15); }
.bento-toggle strong { font-size: .58rem; }
.bento-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.2rem 0 2rem; }
.bento-tags span { border: 1px solid rgba(17, 21, 18, .18); border-radius: 999px; background: rgba(255, 255, 255, .2); padding: .42rem .55rem; font-size: .51rem; font-weight: 750; }
.bento-qr-visual { width: 8.2rem; margin: 0 auto 1.2rem; border-radius: 1rem; background: #fff; padding: .6rem; transform: rotate(-2deg); box-shadow: 0 16px 35px rgba(17, 21, 18, .09); }
.bento-qr-visual img { width: 100%; height: auto; }
.bento-support-line { display: flex; align-items: center; gap: .5rem; margin: 1.2rem 0 2rem; color: var(--landing-gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bento-support-line i { width: .55rem; height: .55rem; border-radius: 50%; background: #8ecb91; box-shadow: 0 0 0 .3rem rgba(142, 203, 145, .12); }

.landing-restaurants { padding: 7rem 1.5rem; background: #eee7dc; }
.landing-restaurant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; width: min(100%, 76rem); margin: 3.4rem auto 0; }
.landing-restaurant-grid article { overflow: hidden; border: 1px solid var(--landing-line); border-radius: 1.6rem; background: rgba(255, 255, 255, .72); box-shadow: 0 18px 48px rgba(57, 46, 34, .07); }
.landing-restaurant-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #1b3026, #bd7e54); text-decoration: none; }
.landing-restaurant-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.landing-restaurant-grid article:hover img { transform: scale(1.035); }
.landing-restaurant-media.has-placeholder { display: grid; place-items: center; }
.landing-restaurant-media.has-placeholder span { color: rgba(255,255,255,.9); font-family: "Cormorant Garamond", serif; font-size: 5rem; font-weight: 700; }
.landing-restaurant-grid article > div { padding: 1.5rem; }
.landing-restaurant-grid article p { color: #9c6c29; font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.landing-restaurant-grid h3 { margin-top: .55rem; font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: 1; }
.landing-restaurant-grid h3 a { text-decoration: none; }
.landing-restaurant-grid article > div > a:last-child { display: inline-flex; margin-top: 1.2rem; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 800; text-decoration: none; }
.landing-restaurants-action { display: flex; justify-content: center; width: min(100%, 76rem); margin: 2.5rem auto 0; }
.landing-process { background: var(--landing-paper); }
.landing-process-head { width: min(100%, 76rem); margin: 0 auto; }
.landing-process-head > p:last-child { max-width: 40rem; margin-top: 1rem; color: var(--landing-muted); line-height: 1.75; }
.landing-process-track { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; width: min(100%, 76rem); margin: 4rem auto 0; }
.landing-process-track::before,
.landing-process-line { content: ""; position: absolute; top: 1.3rem; right: 8%; left: 8%; height: 1px; background: rgba(17, 21, 18, .14); }
.landing-process-line { z-index: 1; background: linear-gradient(90deg, var(--landing-gold), var(--landing-sage)); transform: scaleX(0); transform-origin: left; }
.landing-process-track article { position: relative; z-index: 2; display: grid; align-content: start; min-width: 0; padding-top: 4.2rem; }
.landing-process-track article > span { position: absolute; top: 0; left: 0; display: grid; width: 2.65rem; height: 2.65rem; place-items: center; border: .45rem solid var(--landing-paper); border-radius: 50%; background: var(--landing-ink); color: #fff; font-family: "Cormorant Garamond", serif; font-size: .75rem; box-shadow: 0 0 0 1px rgba(17, 21, 18, .14); }
.landing-process-track article > div > p:first-child { color: #9c6c29; font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.landing-process-track h3 { max-width: 16ch; margin-top: .55rem; font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: 1; }
.landing-process-track article > div > p:last-child { max-width: 22rem; margin-top: .8rem; color: var(--landing-muted); font-size: .8rem; line-height: 1.7; }

.landing-faq { background: var(--landing-ivory); }
.landing-faq-head { width: min(100%, 76rem); margin: 0 auto; }
.landing-faq-head > p:last-child { max-width: 40rem; margin-top: 1rem; color: var(--landing-muted); line-height: 1.75; }
.landing-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 3.5rem; width: min(100%, 76rem); margin: 3rem auto 0; }
.landing-faq-grid article { display: grid; grid-template-columns: 2.5rem 1fr; column-gap: 1rem; border-top: 1px solid var(--landing-line); padding: 1.7rem 0; }
.landing-faq-grid article > span { grid-row: 1 / span 2; color: #9c6c29; font-family: "Cormorant Garamond", serif; font-size: .95rem; font-weight: 700; }
.landing-faq-grid h3 { font-size: .92rem; line-height: 1.45; }
.landing-faq-grid p { grid-column: 2; margin-top: .65rem; color: var(--landing-muted); font-size: .78rem; line-height: 1.72; }

.landing-quote { display: grid; grid-template-columns: minmax(0, .8fr) minmax(30rem, 1.2fr); align-items: start; gap: clamp(2.5rem, 6vw, 6rem); background: var(--landing-ink); color: #f7f3eb; }
.landing-quote-copy { position: sticky; top: 7rem; justify-self: end; width: min(100%, 32rem); }
.landing-quote-copy .landing-kicker { color: var(--landing-gold-light); }
.landing-quote-copy h2 { max-width: 12ch; }
.landing-quote-copy > p:nth-of-type(2) { margin-top: 1.2rem; color: rgba(247, 243, 235, .6); line-height: 1.8; }
.landing-quote-copy ul { display: grid; gap: 1rem; margin-top: 2rem; }
.landing-quote-copy li { display: grid; grid-template-columns: 2.6rem 1fr; gap: .8rem; align-items: center; }
.landing-quote-copy li > svg { width: 2.6rem; height: 2.6rem; border: 1px solid rgba(255, 255, 255, .14); border-radius: .8rem; padding: .65rem; color: var(--landing-gold-light); }
.landing-quote-copy li span { display: grid; gap: .2rem; }
.landing-quote-copy li strong { font-size: .78rem; }
.landing-quote-copy li small { color: rgba(247, 243, 235, .5); font-size: .68rem; }

.landing-quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; width: min(100%, 46rem); border: 1px solid rgba(255, 255, 255, .12); border-radius: 1.5rem; background: #f7f3eb; padding: clamp(1.2rem, 3vw, 2rem); color: var(--landing-ink); box-shadow: 0 35px 90px rgba(0, 0, 0, .2); }
.landing-form-head, .landing-field--wide, .landing-form-actions { grid-column: 1 / -1; }
.landing-form-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--landing-line); padding-bottom: 1.2rem; }
.landing-form-head span { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 700; }
.landing-form-head p { color: var(--landing-muted); font-size: .63rem; }
.landing-field label { display: block; margin-bottom: .45rem; color: #646b65; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.landing-field input, .landing-field textarea { width: 100%; border: 1px solid #dad3c7; border-radius: .8rem; background: #fff; padding: .82rem .9rem; color: var(--landing-ink); outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.landing-field input:focus, .landing-field textarea:focus { border-color: #a2793d; box-shadow: 0 0 0 4px rgba(214, 168, 95, .18); }
.landing-field textarea { min-height: 8.5rem; resize: vertical; }
.landing-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--landing-line); padding-top: 1.2rem; }
.landing-form-actions p { max-width: 20rem; color: var(--landing-muted); font-size: .64rem; line-height: 1.5; }
.landing-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.landing-footer { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; border-top: 1px solid var(--landing-line); background: var(--landing-paper); padding: 2.5rem max(clamp(1.2rem, 4vw, 3rem), calc((100vw - 76rem) / 2)); }
.landing-footer-brand { display: grid; gap: 1rem; }
.landing-footer-brand p { max-width: 30rem; color: var(--landing-muted); font-size: .75rem; line-height: 1.6; }
.landing-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem 1.2rem; }
.landing-footer nav a { font-size: .69rem; font-weight: 750; }
.landing-footer-meta { grid-column: 1 / -1; border-top: 1px solid var(--landing-line); padding-top: 1.2rem; color: #929891; font-size: .62rem; }

@media (max-width: 1080px) {
    .landing-nav-links { display: none; }
    .landing-nav { grid-template-columns: 1fr auto; }
    .landing-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(15rem, .4fr); }
    .landing-story-shell { grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .55fr); }
    .product-dashboard { left: 3%; width: 88%; }
    .landing-bento--wide, .landing-bento--availability { grid-column: span 6; }
    .landing-bento--media, .landing-bento--qr, .landing-bento--support { grid-column: span 4; }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 5rem; }
    .landing-nav { top: .65rem; right: .65rem; left: .65rem; min-height: 4rem; border-radius: 1rem; }
    .landing-login-link { display: none; }
    .landing-nav-cta { min-height: 2.7rem; padding: .6rem .9rem; }
    .landing-nav-cta svg { display: none; }
    .landing-hero { min-height: 48rem; }
    .landing-hero-media img { object-position: 62% center; }
    .landing-hero-shade { background: linear-gradient(90deg, rgba(7, 9, 8, .94), rgba(7, 9, 8, .72)); }
    .landing-hero-inner { grid-template-columns: minmax(0, 1fr); }
    .landing-hero-float { display: none; }
    .landing-proof-strip { align-items: flex-start; flex-direction: column; }
    .landing-proof-strip ul { justify-content: flex-start; }

    .landing-story-shell { display: block; }
    .landing-story-visual { min-height: 0; }
    .product-stage { display: flex; height: auto; min-height: 0; flex-direction: column; align-items: center; gap: 1.2rem; padding: 2rem 1rem; }
    .product-stage::before, .product-halo { display: none; }
    .product-dashboard, .product-phone, .product-qr-card, .product-sync-pill { position: relative; inset: auto; min-width: 0; transform: none; opacity: 1; }
    .product-qr-card { order: 1; width: min(100%, 13rem); }
    .product-phone { order: 2; width: min(100%, 14rem); }
    .product-dashboard { order: 3; width: min(100%, 35rem); height: 22rem; }
    .product-sync-pill { order: 4; right: auto; bottom: auto; }
    .landing-story-steps { display: grid; gap: 1rem; margin-top: 1rem; }
    .landing-story-step { min-height: 0; border: 1px solid var(--landing-line); border-radius: 1.2rem; background: var(--landing-paper); padding: 1.25rem; opacity: 1; }
    .landing-story-step h3 { font-size: 2.5rem; }

    .landing-section-intro--split { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .landing-restaurant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .landing-bento--wide, .landing-bento--availability, .landing-bento--media, .landing-bento--qr, .landing-bento--support { grid-column: span 6; }
    .landing-process-track { grid-template-columns: minmax(0, 1fr); gap: 1.2rem; }
    .landing-process-track::before, .landing-process-line { top: 1.3rem; bottom: 1.3rem; left: 1.3rem; width: 1px; height: auto; transform-origin: top; }
    .landing-process-line { transform: scaleY(0); }
    .landing-process-track article { min-height: 10rem; padding: 0 0 0 4.3rem; }
    .landing-faq-grid { grid-template-columns: minmax(0, 1fr); }
    .landing-quote { grid-template-columns: minmax(0, 1fr); }
    .landing-quote-copy { position: static; justify-self: start; }
}

@media (max-width: 640px) {
    .landing-nav { padding-left: .65rem; }
    .brand-mark { width: 2.25rem; height: 2.25rem; }
    .landing-brand em { display: none; }
    .landing-nav-cta span { max-width: 8.7rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .landing-hero { min-height: 47rem; }
    .landing-hero-inner { padding: 7.8rem 1rem 5rem; }
    .landing-hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
    .landing-hero-actions { align-items: stretch; flex-direction: column; }
    .landing-button { width: 100%; }
    .landing-scroll-hint { display: none; }
    .landing-proof-strip { padding: 1.4rem 1rem; }
    .landing-proof-strip ul { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; }
    .landing-proof-strip li::before { display: none; }
    .landing-story-section, .landing-features, .landing-restaurants, .landing-process, .landing-faq, .landing-quote { padding: 4.8rem 1rem; }
    .landing-restaurant-grid { grid-template-columns: minmax(0, 1fr); }
    .landing-section-intro h2, .landing-process-head h2, .landing-faq-head h2, .landing-quote-copy h2 { font-size: 2.75rem; }
    .landing-story-shell { margin-top: 2.5rem; }
    .product-dashboard { grid-template-columns: 2.4rem 1fr; height: 19rem; }
    .product-dashboard-sidebar { padding: .7rem .35rem; }
    .product-dashboard-content { padding: .7rem; }
    .product-dashboard-stats span:nth-child(3) { display: none; }
    .product-dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .product-dashboard-row { grid-template-columns: 2rem 1fr auto; }
    .product-dashboard-photo { width: 2rem; height: 2rem; }
    .landing-story-step { grid-template-columns: 2rem 1fr; }
    .landing-bento-grid { grid-template-columns: minmax(0, 1fr); }
    .landing-bento--wide, .landing-bento--availability, .landing-bento--media, .landing-bento--qr, .landing-bento--support { grid-column: auto; min-height: 22rem; }
    .bento-board { top: 4.8rem; right: 1rem; width: 54%; }
    .landing-faq-grid article { grid-template-columns: 1.8rem 1fr; }
    .landing-quote-form { grid-template-columns: minmax(0, 1fr); padding: 1rem; }
    .landing-form-head, .landing-field--wide, .landing-form-actions { grid-column: auto; }
    .landing-form-head, .landing-form-actions { align-items: stretch; flex-direction: column; }
    .landing-form-head p { line-height: 1.5; }
    .landing-footer { grid-template-columns: minmax(0, 1fr); padding: 2rem 1rem; }
    .landing-footer nav { justify-content: flex-start; }
    .landing-footer-meta { grid-column: auto; }
}

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