:root {
    --paper: #f7f1e7;
    --paper-soft: #fffaf2;
    --surface: #ffffff;
    --surface-warm: #fff6e8;
    --ink: #17211d;
    --muted: #657068;
    --forest: #183f38;
    --forest-2: #22594e;
    --tomato: #c8563c;
    --clay: #9d5636;
    --gold: #d6a64d;
    --blue: #315d73;
    --mint: #dceee6;
    --line: rgba(23, 33, 29, .12);
    --line-dark: rgba(255, 255, 255, .16);
    --shadow-soft: 0 18px 48px rgba(53, 42, 29, .12);
    --shadow-strong: 0 28px 90px rgba(23, 33, 29, .24);
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --max: 1180px;
    --hero-base: #17211d;
    --theme-color: #183f38;
}

body[data-theme="bosque"] {
    --paper: #eef3ea;
    --paper-soft: #fbfff7;
    --surface-warm: #f4fbef;
    --ink: #13221c;
    --muted: #5c6f64;
    --forest: #2f5d4f;
    --forest-2: #3f7566;
    --tomato: #c86f3e;
    --clay: #83533d;
    --gold: #d9b650;
    --blue: #426b7f;
    --mint: #d9eddf;
    --line: rgba(19, 34, 28, .13);
    --hero-base: #10241d;
    --theme-color: #2f5d4f;
}

body[data-theme="fiordo"] {
    --paper: #eef3f1;
    --paper-soft: #f8fcfb;
    --surface-warm: #eef8f7;
    --ink: #11222b;
    --muted: #5f6f76;
    --forest: #315d73;
    --forest-2: #437f94;
    --tomato: #c95f4d;
    --clay: #8f5846;
    --gold: #d5a94f;
    --blue: #234b62;
    --mint: #d8edf0;
    --line: rgba(17, 34, 43, .13);
    --hero-base: #102432;
    --theme-color: #315d73;
}

body[data-theme="terra"] {
    --paper: #f6efe3;
    --paper-soft: #fff8ea;
    --surface-warm: #fff3dc;
    --ink: #201811;
    --muted: #6d5d4b;
    --forest: #4b2d20;
    --forest-2: #70402e;
    --tomato: #8f1d1d;
    --clay: #7a3f2c;
    --gold: #c9a24d;
    --blue: #244f6f;
    --mint: #eee1c8;
    --line: rgba(32, 24, 17, .14);
    --hero-base: #1c120d;
    --theme-color: #8f1d1d;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(24, 63, 56, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(24, 63, 56, .03) 1px, transparent 1px),
        var(--paper);
    background-size: 42px 42px, 42px 42px, auto;
    overflow-x: hidden;
    line-height: 1.55;
}

body.nav-is-compact .landing-nav {
    min-height: 64px;
    background: color-mix(in srgb, var(--paper-soft) 92%, transparent);
    box-shadow: 0 14px 40px rgba(23, 33, 29, .08);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    z-index: 200;
    background: linear-gradient(90deg, var(--tomato), var(--gold), var(--forest-2));
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.landing-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px clamp(18px, 4vw, 44px);
    color: var(--ink);
    background: color-mix(in srgb, var(--paper) 78%, transparent);
    border-bottom: 1px solid rgba(23, 33, 29, .09);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}

.palette-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: min(44vw, 410px);
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--paper-soft) 74%, transparent);
}

.palette-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 9px;
    border: 0;
    border-radius: 6px;
    color: color-mix(in srgb, var(--ink) 68%, transparent);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: .78rem;
    font-weight: 900;
    white-space: nowrap;
}

.palette-btn:hover,
.palette-btn.active {
    color: var(--ink);
    background: rgba(255, 255, 255, .66);
}

.palette-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--dot);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--forest);
    border-radius: var(--radius-sm);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 26px rgba(24, 63, 56, .2);
}

.brand-mark svg {
    width: 23px;
    height: 23px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 30px);
    color: rgba(23, 33, 29, .68);
    font-weight: 750;
    font-size: .92rem;
}

.nav-links a {
    text-decoration: none;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login {
    color: rgba(23, 33, 29, .72);
    text-decoration: none;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

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

.btn-primary {
    color: #fff;
    background: var(--tomato);
    box-shadow: 0 14px 28px rgba(200, 86, 60, .24);
}

.btn-primary:hover {
    background: #b94d35;
    box-shadow: 0 18px 36px rgba(200, 86, 60, .3);
}

.btn-soft {
    color: var(--ink);
    background: rgba(255, 250, 242, .86);
    border-color: rgba(23, 33, 29, .14);
}

.btn-soft:hover {
    background: #fff;
    border-color: rgba(23, 33, 29, .22);
}

.btn-soft.dark {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
}

.btn-sm {
    min-height: 42px;
    padding: 11px 15px;
    font-size: .86rem;
}

.hero {
    position: relative;
    min-height: 86svh;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    align-items: center;
    padding: 106px clamp(18px, 5vw, 74px) 56px;
    background:
        linear-gradient(90deg, rgba(255, 250, 242, .045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 250, 242, .04) 1px, transparent 1px),
        var(--hero-base);
    background-size: 52px 52px, 52px 52px, auto;
}

.hero-live {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: .72;
}

.live-board,
.live-ticket,
.live-kitchen {
    position: absolute;
    border: 1px solid rgba(255, 250, 242, .18);
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 242, .08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.live-board {
    right: clamp(22px, 5vw, 92px);
    top: 18%;
    width: min(48vw, 620px);
    padding: 18px;
    transform: rotate(-2deg);
}

.live-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 250, 242, .82);
    font-size: .88rem;
    font-weight: 900;
}

.live-top b {
    color: #f0bf70;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.live-grid i {
    display: block;
    aspect-ratio: 1.6;
    border: 1px solid rgba(255, 250, 242, .22);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .08);
}

.live-grid .free { border-top: 4px solid #8ed9b3; }
.live-grid .busy { border-top: 4px solid #f0bf70; }
.live-grid .pay { border-top: 4px solid var(--tomato); }
.live-grid .reserved { border-top: 4px solid #7fb4cc; }

.live-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 78px;
    margin-top: 18px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, .18);
}

.live-chart span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #f0bf70, var(--tomato));
}

.live-ticket {
    right: clamp(26px, 7vw, 120px);
    bottom: 18%;
    width: 218px;
    padding: 18px;
    color: #fffaf2;
    transform: rotate(2deg);
}

.live-ticket small,
.live-kitchen span {
    color: rgba(255, 250, 242, .68);
    font-weight: 800;
}

.live-ticket strong {
    display: block;
    margin: 8px 0 14px;
    font-size: 2rem;
}

.live-ticket span {
    display: block;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 950;
    color: #fff;
    background: var(--tomato);
}

.live-kitchen {
    right: min(54vw, 700px);
    top: 26%;
    width: 190px;
    padding: 16px;
    color: #fffaf2;
    transform: rotate(2deg);
}

.live-kitchen b,
.live-kitchen span {
    display: block;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(16, 24, 21, .98) 0%, rgba(16, 24, 21, .9) 38%, rgba(16, 24, 21, .5) 72%, rgba(16, 24, 21, .78) 100%),
        linear-gradient(180deg, rgba(247, 241, 231, .02) 0%, rgba(247, 241, 231, .02) 54%, var(--paper) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    z-index: -1;
    background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 680px) minmax(220px, 300px);
    align-items: end;
    gap: clamp(26px, 5vw, 72px);
}

.hero-copy {
    color: #fffaf2;
    padding-top: 28px;
    min-width: 0;
    max-width: 100%;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--tomato);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.hero .eyebrow {
    color: #f0bf70;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    font-family: Fraunces, Georgia, serif;
    letter-spacing: 0;
    line-height: .98;
}

h1 {
    max-width: 720px;
    font-size: clamp(3.25rem, 9vw, 7.45rem);
    font-weight: 760;
    text-wrap: balance;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 250, 242, .84);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.7;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    max-width: 680px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    color: rgba(255, 250, 242, .86);
    border: 1px solid rgba(255, 250, 242, .2);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 242, .08);
    backdrop-filter: blur(10px);
    font-size: .84rem;
    font-weight: 800;
}

.hero-service {
    justify-self: end;
    width: min(100%, 284px);
    color: #fffaf2;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-md);
    background: rgba(24, 63, 56, .72);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(16px);
}

.service-label {
    display: block;
    color: #f0bf70;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-service strong {
    display: block;
    margin-top: 8px;
    font-size: 2.35rem;
    line-height: 1;
    letter-spacing: 0;
}

.hero-service span:last-of-type {
    color: rgba(255, 250, 242, .72);
    font-weight: 750;
}

.service-bars {
    display: flex;
    align-items: end;
    gap: 7px;
    height: 74px;
    margin-top: 18px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.service-bars i {
    flex: 1;
    min-width: 0;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #f0bf70, var(--tomato));
}

.proof-strip {
    overflow: hidden;
    margin-top: -1px;
    color: #fffaf2;
    background: var(--forest);
    border-block: 1px solid rgba(255,255,255,.1);
}

.proof-track {
    display: flex;
    gap: 34px;
    width: max-content;
    padding: 14px 0;
    animation: marquee 34s linear infinite;
}

.proof-track span {
    position: relative;
    white-space: nowrap;
    color: rgba(255, 250, 242, .86);
    font-size: .9rem;
    font-weight: 800;
}

.proof-track span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--gold);
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section {
    width: min(100% - 36px, var(--max));
    margin: 0 auto;
    padding: clamp(70px, 11vw, 124px) 0;
}

.section-narrow {
    width: min(100% - 36px, var(--max));
    margin: 0 auto;
}

.section-intro {
    padding-bottom: 34px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    gap: clamp(22px, 6vw, 74px);
    align-items: end;
}

.section-heading h2,
.showcase-copy h2,
.screen-copy h2,
.integrations h2,
.final-cta h2 {
    color: var(--ink);
    font-size: clamp(2.2rem, 5.4vw, 4.7rem);
    font-weight: 760;
    text-wrap: balance;
}

.section-heading p,
.showcase-copy p,
.screen-copy p,
.integrations p,
.final-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 8px 0 clamp(70px, 10vw, 118px);
}

.flow-step {
    position: relative;
    min-height: 248px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 242, .68);
    box-shadow: 0 16px 42px rgba(53, 42, 29, .08);
}

.flow-step span {
    display: inline-flex;
    color: var(--tomato);
    font-weight: 950;
    font-size: .8rem;
    letter-spacing: .12em;
}

.flow-step h3,
.module-card h3,
.addons-panel h3 {
    margin: 50px 0 10px;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.2;
}

.flow-step p,
.module-card p,
.addons-panel p {
    margin: 0;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.65;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 6vw, 76px);
    padding: 0 0 clamp(76px, 11vw, 132px);
}

.showcase-copy h2,
.screen-copy h2,
.integrations h2 {
    font-size: clamp(2rem, 4.3vw, 3.8rem);
}

.showcase-copy p {
    margin-top: 20px;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.metric-row div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 12px 30px rgba(53, 42, 29, .06);
}

.metric-row strong {
    display: block;
    color: var(--forest);
    font-size: 1.65rem;
    line-height: 1;
}

.metric-row span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ops-shell {
    position: relative;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) 220px;
    gap: 16px;
    min-height: 520px;
    padding: 18px;
    border: 1px solid rgba(23, 33, 29, .14);
    border-radius: var(--radius-lg);
    background: #111916;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.ops-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.ops-sidebar,
.ops-main,
.ops-order {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.06);
}

.ops-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 14px;
    color: #fffaf2;
}

.ops-sidebar span {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--tomato);
}

.ops-sidebar b {
    font-size: .88rem;
}

.ops-sidebar i {
    width: 64px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.1);
}

.ops-sidebar i:first-of-type {
    background: var(--tomato);
}

.ops-main {
    padding: 20px;
}

.ops-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    color: #fffaf2;
}

.ops-header small,
.ops-header span {
    display: block;
    color: rgba(255, 250, 242, .62);
    font-weight: 800;
}

.ops-header strong {
    display: block;
    margin-top: 2px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
}

.ops-header > span {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: #113027;
    background: #9ee4c5;
    white-space: nowrap;
}

.ops-mesas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.ops-mesas article {
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-sm);
    color: #fffaf2;
    background: rgba(255,255,255,.06);
}

.ops-mesas article::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    border-radius: 50%;
}

.ops-mesas .free::before { background: #8ed9b3; }
.ops-mesas .busy::before { background: #f0bf70; }
.ops-mesas .pay::before { background: var(--tomato); }

.ops-mesas b,
.ops-mesas span,
.ops-mesas strong {
    display: block;
}

.ops-mesas span {
    color: rgba(255, 250, 242, .6);
    font-size: .82rem;
    font-weight: 800;
}

.ops-mesas strong {
    margin-top: 12px;
    font-size: 1.28rem;
}

.ops-chart {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.2fr);
    gap: 16px;
    align-items: end;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    color: #fffaf2;
    background: rgba(0, 0, 0, .18);
}

.ops-chart b,
.ops-chart span {
    display: block;
}

.ops-chart span {
    margin-top: 5px;
    color: rgba(255, 250, 242, .58);
    font-size: .84rem;
    font-weight: 800;
}

.ops-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 92px;
}

.ops-bars i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #f0bf70, var(--tomato));
}

.ops-order {
    align-self: center;
    padding: 22px;
    color: var(--ink);
    background: #fffaf2;
}

.ops-order b,
.ops-order span {
    display: block;
}

.ops-order > b {
    font-size: 1.8rem;
}

.ops-order > span {
    margin: 4px 0 18px;
    color: var(--muted);
    font-weight: 800;
}

.ops-order div,
.ops-order footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid rgba(23, 33, 29, .1);
    font-weight: 800;
}

.ops-order footer {
    margin-top: 8px;
    color: var(--forest);
    font-size: 1.15rem;
}

.section-modules {
    padding-top: 0;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.module-card {
    min-height: 278px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.72);
    box-shadow: 0 16px 42px rgba(53, 42, 29, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 63, 56, .24);
    box-shadow: var(--shadow-soft);
}

.module-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    color: var(--forest);
    background: var(--mint);
}

.module-icon svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.module-icon.warm { color: #fff; background: var(--tomato); }
.module-icon.green { color: #fff; background: var(--forest); }
.module-icon.blue { color: #fff; background: var(--blue); }
.module-icon.gold { color: var(--ink); background: var(--gold); }
.module-icon.clay { color: #fff; background: var(--clay); }
.module-icon.ink { color: #fff; background: #17211d; }

.module-card h3 {
    margin-top: 40px;
}

.screens {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: clamp(26px, 6vw, 86px);
    align-items: center;
    padding: 0 0 clamp(76px, 11vw, 132px);
}

.screen-copy p {
    margin-top: 20px;
}

.screen-stack {
    display: grid;
    grid-template-columns: minmax(180px, 320px) minmax(180px, 320px);
    justify-content: end;
    gap: clamp(12px, 2.6vw, 28px);
    align-items: center;
}

.qr-mock,
.receipt-mock {
    min-height: 520px;
    border: 1px solid rgba(23, 33, 29, .14);
    border-radius: var(--radius-lg);
    background: #fffaf2;
    box-shadow: var(--shadow-strong);
}

.qr-mock {
    position: relative;
    padding: 26px 22px 76px;
    transform: translateY(28px);
}

.mock-brand {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}

.mock-brand span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--tomato);
}

.mock-brand b,
.mock-brand small {
    display: block;
}

.mock-brand small {
    color: var(--muted);
    font-weight: 800;
}

.qr-field {
    padding: 18px;
    margin-top: 12px;
    border: 1px solid rgba(23, 33, 29, .12);
    border-radius: var(--radius-sm);
    background: #fff;
}

.qr-field small,
.qr-field strong {
    display: block;
}

.qr-field small {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.qr-field strong {
    margin-top: 10px;
    font-size: 2rem;
}

.qr-mock h3 {
    margin: 24px 0 12px;
}

.qr-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    margin-top: 10px;
    border: 1px solid rgba(23, 33, 29, .1);
    border-radius: var(--radius-sm);
    background: #fff;
    font-weight: 850;
}

.qr-product b {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    background: var(--tomato);
}

.qr-mock button {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    min-height: 50px;
    border: 0;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--tomato);
    font: inherit;
    font-weight: 950;
}

.receipt-mock {
    padding: 34px 30px;
    transform: translateY(-24px);
}

.receipt-mock h3,
.receipt-mock p {
    margin: 0;
    text-align: center;
}

.receipt-mock h3 {
    font-size: 1.45rem;
    letter-spacing: .04em;
}

.receipt-mock p {
    color: var(--ink);
    font-weight: 900;
}

.receipt-mock hr {
    border: 0;
    border-top: 2px solid var(--ink);
    margin: 22px 0;
}

.receipt-mock div,
.receipt-mock footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.receipt-mock footer {
    align-items: baseline;
    font-size: 1.2rem;
    font-weight: 950;
}

.receipt-mock footer strong {
    font-size: 1.55rem;
}

.receipt-mock small {
    display: block;
    margin-top: 24px;
    text-align: center;
    color: var(--muted);
    font-weight: 850;
}

.integrations {
    display: grid;
    grid-template-columns: minmax(260px, 430px) 1fr;
    gap: clamp(24px, 6vw, 70px);
    align-items: center;
    padding: 0 0 clamp(76px, 11vw, 132px);
}

.integrations h2 {
    margin-bottom: 18px;
}

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

.integration-logo {
    display: grid;
    place-items: center;
    min-height: 112px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 36px rgba(53, 42, 29, .06);
}

.integration-logo img {
    max-width: 150px;
    max-height: 46px;
}

.pricing {
    padding-top: 0;
}

.pricing-toggle {
    display: flex;
    width: fit-content;
    max-width: 100%;
    gap: 6px;
    margin: 36px auto 0;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.7);
}

.pricing-toggle button {
    min-height: 42px;
    padding: 10px 15px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: .9rem;
    font-weight: 900;
}

.pricing-toggle button.active {
    color: #fff;
    background: var(--forest);
}

.pricing-toggle span {
    margin-left: 5px;
    color: inherit;
    opacity: .75;
    font-size: .75rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-soft);
}

.plan-card.featured {
    color: #fffaf2;
    background: var(--forest);
    border-color: rgba(255,255,255,.18);
    box-shadow: var(--shadow-strong);
}

.plan-card.featured,
.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured small,
.plan-card.featured li,
.plan-card.featured span,
.plan-card.featured .plan-price,
.plan-card.featured .plan-save {
    color: #fffaf2;
}

.plan-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--gold);
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.featured .plan-ribbon {
    color: #fffaf2;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255,255,255,.2);
}

.plan-head h3 {
    margin: 0;
    max-width: calc(100% - 120px);
    color: inherit;
    font-size: 1.45rem;
    line-height: 1.15;
}

.plan-head p {
    min-height: 3.1em;
    max-width: 520px;
    margin: 9px 0 0;
    color: var(--muted);
}

.featured .plan-head p,
.featured .plan-price small,
.featured li,
.featured .plan-save {
    color: #fffaf2;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 26px;
}

.plan-price span {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
}

.plan-price small {
    color: var(--muted);
    font-weight: 850;
}

.plan-save {
    min-height: 22px;
    margin-top: 8px;
    color: var(--forest);
    font-size: .86rem;
    font-weight: 900;
}

.plan-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(23, 33, 29, .78);
    font-size: .94rem;
}

.plan-card li svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--tomato);
}

.featured li svg {
    color: #fffaf2;
}

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    margin-top: auto;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: #fff;
    text-decoration: none;
    font-weight: 950;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.plan-btn svg {
    width: 17px;
    height: 17px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 33, 29, .24);
}

.plan-btn.primary {
    color: #fff;
    background: var(--tomato);
    border-color: rgba(255,255,255,.1);
}

.addons-panel {
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 22px;
    margin-top: 18px;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 242, .84);
    box-shadow: 0 16px 42px rgba(53, 42, 29, .07);
}

.addons-panel h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

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

.addon-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
}

.addon-item > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--addon-color, var(--forest));
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--addon-color, var(--forest)) 12%, #fff);
}

.addon-item svg {
    width: 22px;
    height: 22px;
}

.addon-item strong,
.addon-item small {
    display: block;
    min-width: 0;
}

.addon-item strong {
    color: var(--ink);
    font-size: .92rem;
}

.addon-item small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.35;
}

.addon-item b {
    color: var(--forest);
    white-space: nowrap;
    font-size: .88rem;
}

.final-cta {
    margin-top: 18px;
    padding: clamp(76px, 11vw, 128px) clamp(18px, 5vw, 74px);
    color: #fffaf2;
    background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
        var(--forest);
    background-size: 44px 44px, 44px 44px, auto;
}

.final-inner {
    width: min(100%, 820px);
    margin: 0 auto;
    text-align: center;
}

.final-cta .eyebrow {
    color: #f0bf70;
}

.final-cta h2 {
    color: #fffaf2;
}

.final-cta p {
    max-width: 660px;
    margin: 22px auto 0;
    color: rgba(255, 250, 242, .78);
}

.final-cta .hero-actions {
    justify-content: center;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px clamp(18px, 5vw, 74px);
    color: rgba(255, 250, 242, .72);
    background: #111916;
}

.site-footer .brand {
    color: #fffaf2;
}

.site-footer .brand-mark {
    width: 34px;
    height: 34px;
    background: var(--tomato);
}

.site-footer p {
    margin: 0;
    font-size: .9rem;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 82svh;
    }

    .hero-inner,
    .section-heading,
    .product-showcase,
    .screens,
    .integrations,
    .addons-panel {
        grid-template-columns: 1fr;
    }

    .hero-service {
        justify-self: start;
    }

    .hero-live {
        opacity: .38;
    }

    .live-board {
        right: -120px;
        width: 620px;
    }

    .live-ticket,
    .live-kitchen {
        display: none;
    }

    .ops-shell {
        grid-template-columns: 86px 1fr;
    }

    .ops-order {
        grid-column: 2;
        align-self: stretch;
    }

    .workflow,
    .module-grid {
        grid-template-columns: 1fr 1fr;
    }

    .screen-stack {
        justify-content: start;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body {
        background-size: 32px 32px, 32px 32px, auto;
    }

    .landing-nav {
        min-height: 66px;
        padding: 10px 14px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .nav-login {
        display: none;
    }

    .nav-actions {
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
        gap: 8px;
        min-width: 0;
        max-width: calc(100vw - 158px);
        overflow: hidden;
    }

    .palette-switcher {
        width: auto;
        max-width: none;
        justify-content: flex-end;
        padding: 3px;
        overflow: hidden;
    }

    .palette-btn {
        width: 26px;
        min-width: 26px;
        min-height: 30px;
        justify-content: center;
        padding: 4px;
    }

    .palette-btn span:not(.palette-dot) {
        display: none;
    }

    .palette-dot {
        width: 13px;
        height: 13px;
    }

    .nav-actions .btn {
        min-height: 40px;
        padding: 10px 12px;
    }

    .nav-actions .btn-sm {
        display: none;
    }

    .hero {
        min-height: 78svh;
        padding: 92px 18px 44px;
    }

    .hero-live {
        opacity: .24;
    }

    .live-board {
        right: -230px;
        top: 16%;
        width: 560px;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(16, 24, 21, .95) 0%, rgba(16, 24, 21, .82) 100%),
            linear-gradient(180deg, rgba(247, 241, 231, .04) 0%, var(--paper) 100%);
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 3.45rem);
        line-height: 1.03;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.62;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .hero-service {
        width: 100%;
        padding: 15px;
    }

    .hero-service strong {
        font-size: 2rem;
    }

    .service-bars {
        height: 48px;
    }

    .section,
    .section-narrow {
        width: min(100% - 28px, var(--max));
    }

    .section {
        padding: 62px 0;
    }

    .workflow,
    .module-grid,
    .plans-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }

    .flow-step,
    .module-card {
        min-height: auto;
    }

    .flow-step h3,
    .module-card h3 {
        margin-top: 28px;
    }

    .product-showcase,
    .screens,
    .integrations {
        padding-bottom: 70px;
    }

    .ops-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 14px;
    }

    .ops-sidebar {
        display: none;
    }

    .ops-header,
    .ops-chart {
        grid-template-columns: 1fr;
    }

    .ops-header {
        align-items: stretch;
    }

    .ops-header > span {
        width: fit-content;
        white-space: normal;
    }

    .ops-mesas {
        grid-template-columns: 1fr;
    }

    .ops-order {
        grid-column: auto;
    }

    .metric-row,
    .screen-stack {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .qr-mock,
    .receipt-mock {
        transform: none;
        min-height: 0;
    }

    .pricing-toggle {
        width: 100%;
    }

    .pricing-toggle button {
        flex: 1;
        padding-inline: 9px;
        white-space: normal;
    }

    .plan-ribbon {
        position: static;
        width: fit-content;
        margin-bottom: 14px;
    }

    .plan-head h3 {
        max-width: none;
    }

    .plan-head p {
        min-height: 0;
    }

    .addon-item {
        grid-template-columns: 40px 1fr;
    }

    .addon-item b {
        grid-column: 2;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .brand span:last-child {
        font-size: .96rem;
    }

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

    .hero-points span {
        min-height: 40px;
        justify-content: center;
        text-align: center;
        font-size: .76rem;
    }

    .screen-stack {
        grid-template-columns: 1fr;
    }

    .qr-mock,
    .receipt-mock {
        max-width: 280px;
        margin-inline: auto;
    }
}
