html {
    scroll-padding-top: 150px;
}

.landing-body {
    --orange: #FF6B35;
    --red: #FF3B30;
    --blue: #2563EB;
    --green: #22C55E;
    --ink: #0F172A;
    --muted: #64748B;
    --bg: #F8FAFC;
    --surface: rgba(255,255,255,.78);
    --surface-strong: rgba(255,255,255,.92);
    --surface-soft: rgba(248,250,252,.72);
    --line: rgba(15,23,42,.1);
    --line-bright: rgba(255,255,255,.72);
    --shadow-soft: 0 18px 48px rgba(15,23,42,.08);
    --shadow-lift: 0 28px 78px rgba(15,23,42,.16);
    --shadow-orange: 0 22px 60px rgba(255,107,53,.28);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(255,107,53,.2), transparent 30rem),
        radial-gradient(circle at 86% 10%, rgba(37,99,235,.18), transparent 34rem),
        radial-gradient(circle at 52% 42%, rgba(34,197,94,.1), transparent 30rem),
        linear-gradient(180deg, #F8FAFC 0%, #EEF4FF 48%, #F8FAFC 100%);
    color-scheme: light;
    transition: background .35s ease, color .35s ease;
}

.landing-body[data-theme="dark"] {
    --ink: #F8FAFC;
    --muted: #9CA3AF;
    --bg: #0B1120;
    --surface: rgba(17,24,39,.7);
    --surface-strong: rgba(17,24,39,.9);
    --surface-soft: rgba(15,23,42,.76);
    --line: rgba(255,255,255,.11);
    --line-bright: rgba(255,255,255,.12);
    --shadow-soft: 0 22px 60px rgba(0,0,0,.22);
    --shadow-lift: 0 34px 90px rgba(0,0,0,.34);
    --shadow-orange: 0 28px 80px rgba(255,107,53,.24);
    background:
        radial-gradient(circle at 12% 8%, rgba(255,107,53,.22), transparent 28rem),
        radial-gradient(circle at 90% 4%, rgba(37,99,235,.28), transparent 34rem),
        radial-gradient(circle at 45% 42%, rgba(34,197,94,.12), transparent 28rem),
        linear-gradient(180deg, #0B1120 0%, #111827 52%, #0B1120 100%);
    color-scheme: dark;
}

.landing-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: .46;
    background-image:
        linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px),
        radial-gradient(circle at 1px 1px, rgba(15,23,42,.12) 1px, transparent 0);
    background-size: 68px 68px, 68px 68px, 18px 18px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.08) 70%, transparent);
}

.landing-body[data-theme="dark"]::before {
    opacity: .32;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 0);
}

.landing-main {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 104px 0 34px;
}

.landing-ambient {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.landing-ambient span {
    position: absolute;
    width: 34rem;
    aspect-ratio: 1;
    border-radius: 999px;
    filter: blur(70px);
    opacity: .42;
    transform: translate3d(0,0,0);
    animation: ambientFloat 14s ease-in-out infinite alternate;
}

.landing-ambient span:nth-child(1) {
    left: -12rem;
    top: 9rem;
    background: rgba(255,107,53,.42);
}

.landing-ambient span:nth-child(2) {
    right: -10rem;
    top: 2rem;
    background: rgba(37,99,235,.36);
    animation-delay: -5s;
}

.landing-ambient span:nth-child(3) {
    left: 45%;
    bottom: 8rem;
    width: 25rem;
    background: rgba(34,197,94,.2);
    animation-delay: -9s;
}

@keyframes ambientFloat {
    from { transform: translate3d(0,0,0) scale(1); }
    to { transform: translate3d(30px,-24px,0) scale(1.08); }
}

.landing-header {
    position: fixed;
    top: 14px;
    left: 50%;
    z-index: 30;
    width: min(1220px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--line-bright);
    border-radius: 24px;
    background: var(--surface-strong);
    background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(24px) saturate(165%);
    backdrop-filter: blur(24px) saturate(165%);
    transform: translateX(-50%);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.landing-header.is-scrolled {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(255,107,53,.24);
    box-shadow: 0 18px 54px rgba(15,23,42,.13);
}

.landing-logo {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 950;
    text-decoration: none;
}

.landing-logo-img {
    width: 176px;
    height: 50px;
    display: block;
    object-fit: contain;
}

.landing-logo span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff;
    box-shadow: 0 16px 36px rgba(255,107,53,.28), inset 0 1px 0 rgba(255,255,255,.28);
}

.landing-header nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.landing-header nav a,
.landing-footer a {
    position: relative;
    color: var(--muted);
    font-weight: 850;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s ease;
}

.landing-header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.landing-header nav a:hover,
.landing-footer a:hover {
    color: var(--orange);
}

.landing-header nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(255,107,53,.3);
}

.theme-toggle svg,
.landing-button svg,
.landing-kicker svg,
.hero-proof svg {
    width: 17px;
    height: 17px;
}

.landing-button {
    --magnet-x: 0px;
    --magnet-y: 0px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 18px;
    border: 0;
    border-radius: 17px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.22), transparent 34%),
        linear-gradient(135deg, var(--orange), var(--red));
    color: #fff !important;
    font-weight: 950;
    text-decoration: none;
    box-shadow: var(--shadow-orange);
    transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.landing-button::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), var(--blue), var(--red));
    opacity: 0;
    filter: blur(16px);
    transition: opacity .22s ease;
}

.landing-button:hover {
    filter: saturate(1.05);
    transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
    box-shadow: 0 30px 72px rgba(255,107,53,.36);
}

.landing-button:hover::before { opacity: .72; }

.landing-button.secondary {
    color: var(--ink) !important;
    background: var(--surface-strong);
    background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
}

.landing-button.secondary::before {
    opacity: 0;
    background: linear-gradient(90deg, rgba(255,107,53,.36), rgba(37,99,235,.28));
}

.landing-button.secondary:hover::before { opacity: .46; }

.landing-button.compact {
    min-height: 42px;
    padding: 10px 14px;
}

.button-ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    animation: ripple .58s ease-out forwards;
}

@keyframes ripple {
    to { opacity: 0; transform: translate(-50%, -50%) scale(18); }
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
    gap: 34px;
    align-items: center;
    min-height: clamp(620px, 82vh, 760px);
    padding: 40px 0 44px;
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,.32), rgba(37,99,235,.3), transparent);
}

.hero-copy h1 {
    max-width: 740px;
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: clamp(46px, 6vw, 82px);
    line-height: .95;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions,
.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-proof {
    margin-top: 22px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(15,23,42,.05);
}

.hero-proof svg { color: var(--orange); }

.hero-stage {
    position: relative;
    min-height: 520px;
    min-width: 0;
}

.hero-glow {
    position: absolute;
    inset: 4% -6% 0 -2%;
    border-radius: 44px;
    background:
        radial-gradient(circle at 18% 12%, rgba(255,107,53,.38), transparent 22rem),
        radial-gradient(circle at 92% 18%, rgba(37,99,235,.35), transparent 26rem),
        radial-gradient(circle at 60% 100%, rgba(34,197,94,.18), transparent 20rem);
    filter: blur(22px);
    opacity: .86;
    animation: premiumGlow 7s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    from { transform: scale(.98); opacity: .74; }
    to { transform: scale(1.04); opacity: .95; }
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 3px;
    min-width: 154px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 19px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 22px 60px rgba(15,23,42,.16);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    backdrop-filter: blur(18px) saturate(155%);
    animation: floatCard 5.8s ease-in-out infinite;
}

.landing-body[data-theme="dark"] .floating-card {
    background: rgba(17,24,39,.74);
    border-color: rgba(255,255,255,.12);
}

.floating-card svg { color: var(--orange); }
.floating-card span { color: var(--muted); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.floating-card strong { color: var(--ink); font-size: 14px; }
.floating-card-a { top: 8px; right: 18px; }
.floating-card-b { left: -20px; bottom: 58px; animation-delay: -2.4s; }

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

.hero-mockup {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(15,23,42,.95), rgba(17,24,39,.92)),
        radial-gradient(circle at top right, rgba(255,107,53,.34), transparent 18rem);
    box-shadow: 0 36px 120px rgba(15,23,42,.3), inset 0 1px 0 rgba(255,255,255,.16);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform .35s ease, box-shadow .35s ease;
}

.hero-mockup:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
    box-shadow: 0 46px 136px rgba(15,23,42,.34), inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-mockup::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.12) 44%, transparent 54% 100%);
    transform: translateX(-90%);
    animation: mockupShine 7s ease-in-out infinite;
}

@keyframes mockupShine {
    0%, 60% { transform: translateX(-92%); }
    100% { transform: translateX(92%); }
}

.mockup-topbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.window-dots {
    display: flex;
    gap: 7px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.window-dots span:nth-child(1) { background: #FF6B35; }
.window-dots span:nth-child(2) { background: #FACC15; }
.window-dots span:nth-child(3) { background: #22C55E; }

.mockup-search,
.mockup-live {
    min-height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 800;
}

.mockup-search {
    min-width: 0;
    overflow: hidden;
    padding: 0 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mockup-live { gap: 7px; padding: 0 11px; color: rgba(255,255,255,.76); }
.mockup-live span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}

.mockup-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
}

.mock-sidebar {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 13px;
    min-height: 446px;
    padding: 12px 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.06);
}

.mock-sidebar strong {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff;
}

.mock-sidebar span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(255,255,255,.09);
}

.mock-sidebar span.active {
    background: rgba(255,107,53,.9);
    box-shadow: 0 10px 30px rgba(255,107,53,.34);
}

.mock-content {
    min-width: 0;
    overflow: hidden;
}

.mock-heading,
.panel-head,
.order-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mock-heading {
    margin-bottom: 12px;
}

.mock-heading small,
.panel-head small,
.mock-kpi-row small {
    color: rgba(255,255,255,.54);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.mock-heading strong {
    display: block;
    color: #fff;
    font-size: 21px;
}

.mock-heading em {
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(34,197,94,.14);
    color: #86EFAC;
    font-style: normal;
    font-size: 12px;
    font-weight: 950;
}

.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.mock-kpi-row article,
.mock-panel {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.mock-kpi-row article {
    display: grid;
    gap: 5px;
    padding: 13px;
}

.mock-kpi-row strong {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.mock-kpi-row span {
    color: #86EFAC;
    font-size: 11px;
    font-weight: 900;
}

.mock-main-grid {
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 10px;
}

.mock-panel {
    min-width: 0;
    min-height: 150px;
    padding: 14px;
}

.panel-head span {
    color: #fff;
    font-weight: 900;
}

.revenue-panel {
    min-height: 206px;
}

.mock-chart {
    height: 118px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 9px;
    align-items: end;
    margin-top: 20px;
}

.mock-chart i {
    display: block;
    min-height: 24px;
    border-radius: 14px 14px 7px 7px;
    background: linear-gradient(180deg, #FF6B35, #2563EB);
    box-shadow: 0 12px 24px rgba(37,99,235,.18);
    animation: chartPulse 3.8s ease-in-out infinite;
}

.mock-chart i:nth-child(1) { height: 43%; }
.mock-chart i:nth-child(2) { height: 66%; animation-delay: -.4s; }
.mock-chart i:nth-child(3) { height: 52%; animation-delay: -.8s; }
.mock-chart i:nth-child(4) { height: 82%; animation-delay: -1.2s; }
.mock-chart i:nth-child(5) { height: 62%; animation-delay: -1.6s; }
.mock-chart i:nth-child(6) { height: 92%; animation-delay: -2s; }
.mock-chart i:nth-child(7) { height: 74%; animation-delay: -2.4s; }

@keyframes chartPulse {
    0%, 100% { filter: brightness(1); transform: scaleY(1); transform-origin: bottom; }
    50% { filter: brightness(1.12); transform: scaleY(1.05); }
}

.sparkline {
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,.12), var(--orange), var(--green), var(--blue));
    background-size: 180% 100%;
    animation: gradientRun 5s linear infinite;
}

@keyframes gradientRun {
    to { background-position: 180% 0; }
}

.live-orders,
.table-map,
.activity-feed {
    min-height: 150px;
}

.order-line {
    margin-top: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.84);
    font-size: 12px;
}

.order-line b { color: #fff; }
.order-line span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-line em { color: #FBBF24; font-style: normal; font-weight: 900; }

.tables-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 13px;
}

.tables-preview span {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    font-weight: 950;
}

.tables-preview .free { background: rgba(34,197,94,.78); }
.tables-preview .busy { background: rgba(255,107,53,.88); }
.tables-preview .bill { background: rgba(37,99,235,.82); }
.tables-preview .reserve { background: rgba(168,85,247,.78); }

.delivery-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 14px 0 12px;
}

.delivery-flow i {
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,107,53,.85), rgba(37,99,235,.74));
}

.activity-feed p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 12px;
    line-height: 1.45;
}

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 26px 0 72px;
}

.benefit-strip div,
.feature-card,
.price-card,
.tenant-card,
.final-cta,
.register-card,
.register-aside,
.social-proof,
.product-card {
    border: 1px solid var(--line-bright);
    background: var(--surface);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
    backdrop-filter: blur(20px) saturate(155%);
}

.benefit-strip div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 78px;
    padding: 16px;
    color: var(--ink);
    font-weight: 900;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.benefit-strip div:hover,
.feature-card:hover,
.product-card:hover,
.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,53,.26);
    box-shadow: var(--shadow-lift);
}

.benefit-strip svg,
.feature-card svg,
.product-card svg {
    color: var(--orange);
}

.social-proof {
    display: grid;
    gap: 20px;
    margin-bottom: 80px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(255,107,53,.09), rgba(37,99,235,.08)),
        var(--surface);
}

.proof-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.proof-intro h2 {
    max-width: 620px;
    margin: 6px 0 0;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    font-weight: 950;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.proof-stats article {
    min-height: 120px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-strong);
}

.proof-stats strong {
    color: var(--ink);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1;
    font-weight: 950;
}

.proof-stats span {
    color: var(--muted);
    font-weight: 850;
}

.proof-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.proof-logos span {
    color: var(--muted);
    color: color-mix(in srgb, var(--muted) 76%, var(--ink));
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 12px;
    opacity: .86;
}

.landing-section,
.tenant-section {
    margin-bottom: 82px;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 24px;
}

.section-heading h2,
.tenant-section h2,
.final-cta h2,
.register-aside h1 {
    margin: 10px 0 12px;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: 0;
}

.section-heading p,
.tenant-section p,
.final-cta p,
.register-aside p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.feature-card::after,
.price-card::after,
.product-card::after {
    content: "";
    position: absolute;
    inset: auto 16px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,.45), rgba(37,99,235,.35), transparent);
}

.feature-card svg {
    width: 34px;
    height: 34px;
}

.feature-card h3,
.product-card h3 {
    margin: 16px 0 8px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 950;
}

.feature-card p,
.price-card p,
.product-card p {
    color: var(--muted);
    line-height: 1.65;
}

.product-showcase {
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    display: grid;
    align-content: space-between;
    padding: 22px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card-copy {
    position: relative;
    z-index: 1;
}

.product-card svg {
    width: 32px;
    height: 32px;
}

.product-visual {
    position: relative;
    z-index: 1;
    min-height: 136px;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(15,23,42,.94), rgba(30,41,59,.92)),
        radial-gradient(circle at 90% 0, rgba(255,107,53,.3), transparent 9rem);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.product-visual span {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
}

.product-visual span:nth-child(1) { left: 16px; top: 18px; width: 42%; height: 10px; }
.product-visual span:nth-child(2) { left: 16px; top: 44px; width: 72%; height: 34px; border-radius: 15px; background: linear-gradient(90deg, var(--orange), var(--blue)); }
.product-visual span:nth-child(3) { left: 16px; bottom: 18px; width: 30%; height: 42px; border-radius: 16px; background: rgba(34,197,94,.75); }
.product-visual span:nth-child(4) { right: 16px; bottom: 18px; width: 42%; height: 42px; border-radius: 16px; background: rgba(255,255,255,.12); }

.product-card-mesas .product-visual span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
}
.product-card-mesas .product-visual span:nth-child(1) { left: 18px; top: 18px; background: rgba(34,197,94,.78); }
.product-card-mesas .product-visual span:nth-child(2) { left: 72px; top: 18px; background: rgba(255,107,53,.86); }
.product-card-mesas .product-visual span:nth-child(3) { left: 126px; top: 18px; background: rgba(37,99,235,.82); }
.product-card-mesas .product-visual span:nth-child(4) { left: 18px; top: 72px; background: rgba(168,85,247,.72); }

.product-card-cozinha .product-visual span {
    left: 16px;
    right: 16px;
    width: auto;
    height: 26px;
    border-radius: 12px;
}
.product-card-cozinha .product-visual span:nth-child(1) { top: 18px; background: rgba(255,107,53,.8); }
.product-card-cozinha .product-visual span:nth-child(2) { top: 54px; background: rgba(245,158,11,.74); }
.product-card-cozinha .product-visual span:nth-child(3) { top: 90px; background: rgba(34,197,94,.68); }
.product-card-cozinha .product-visual span:nth-child(4) { display: none; }

.product-card-delivery .product-visual span:nth-child(1) { width: 30px; height: 30px; left: 22px; top: 28px; background: var(--green); }
.product-card-delivery .product-visual span:nth-child(2) { left: 56px; top: 40px; right: 24px; width: auto; height: 4px; background: linear-gradient(90deg, var(--green), var(--orange), var(--blue)); }
.product-card-delivery .product-visual span:nth-child(3) { left: auto; right: 22px; top: 28px; width: 30px; height: 30px; background: var(--blue); }
.product-card-delivery .product-visual span:nth-child(4) { left: 18px; right: 18px; bottom: 24px; width: auto; height: 42px; border-radius: 16px; }

.tenant-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 26px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 36px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255,107,53,.3), transparent 18rem),
        radial-gradient(circle at 90% 28%, rgba(37,99,235,.26), transparent 20rem),
        #0F172A;
    box-shadow: 0 34px 100px rgba(15,23,42,.26);
}

.tenant-section h2,
.tenant-section p { color: #fff; }
.tenant-section p { color: rgba(255,255,255,.72); }

.tenant-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}

.tenant-card div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease;
}

.tenant-card div:hover {
    transform: translateX(4px);
    background: rgba(255,255,255,.12);
}

.tenant-card svg { color: #22C55E; }

.price-card {
    display: grid;
    gap: 12px;
}

.price-card.featured {
    color: #fff;
    background:
        radial-gradient(circle at 90% 0, rgba(255,255,255,.28), transparent 12rem),
        linear-gradient(145deg, var(--orange), var(--red));
    box-shadow: 0 30px 78px rgba(255,107,53,.3);
}

.price-card span {
    color: var(--blue);
    font-weight: 950;
    text-transform: uppercase;
    font-size: 12px;
}

.price-card strong {
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
}

.price-card.featured span,
.price-card.featured strong,
.price-card.featured p { color: #fff; }

.final-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 52px 24px;
    margin-bottom: 32px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,107,53,.22), transparent 18rem),
        linear-gradient(135deg, rgba(255,107,53,.12), rgba(37,99,235,.1)),
        var(--surface);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transform: translateX(-100%);
    animation: ctaSweep 9s ease-in-out infinite;
}

@keyframes ctaSweep {
    0%, 68% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.landing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    padding: 22px 0 6px;
}

.landing-footer strong {
    color: var(--ink);
}

.landing-footer nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.register-shell {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 34px 0;
}

.register-aside {
    position: sticky;
    top: 110px;
    padding: 28px;
}

.register-steps {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.register-steps span {
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--muted);
    background: var(--surface-soft);
    font-weight: 900;
    border: 1px solid var(--line);
}

.register-steps span.active {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 14px 32px rgba(255,107,53,.22);
}

.register-card {
    padding: 24px;
}

.simple-register-shell {
    grid-template-columns: minmax(300px, .78fr) minmax(0, 520px);
    align-items: center;
    min-height: calc(100vh - 116px);
}

.simple-register-aside h1 {
    margin: 10px 0 12px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.register-benefits {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.register-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-weight: 850;
}

.register-benefits svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.simple-register-card {
    display: grid;
    gap: 14px;
}

.simple-register-card .form-heading {
    display: grid;
    gap: 4px;
}

.simple-register-card .register-oauth {
    margin-bottom: 2px;
}

.simple-register-card .landing-button {
    width: 100%;
}

.register-login-link {
    justify-self: center;
    color: var(--muted);
    font-weight: 850;
}

.register-login-link:hover {
    color: var(--orange);
}

.register-oauth {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.register-oauth .google-auth-button,
.google-complete-card .google-auth-button {
    min-height: 54px;
    border-color: var(--line);
    background: var(--surface-strong);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(15,23,42,.08);
}

.register-oauth .google-auth-button:hover,
.google-complete-card .google-auth-button:hover {
    color: var(--ink);
    border-color: rgba(37,99,235,.28);
    background: color-mix(in srgb, var(--surface-strong) 94%, #fff);
}

.register-oauth .auth-divider,
.google-complete-card .auth-divider {
    color: var(--muted);
}

.register-step {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.register-step.active {
    display: grid;
    animation: registerIn .24s ease both;
}

@keyframes registerIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-heading {
    grid-column: 1 / -1;
}

.form-heading h2 {
    margin: 0 0 4px;
    color: var(--ink);
    font-weight: 950;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
}

.register-card label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 850;
}

.register-card input,
.register-card select,
.register-card textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface-strong);
    color: var(--ink);
    padding: 10px 12px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.register-card input:focus,
.register-card select:focus,
.register-card textarea:focus {
    border-color: rgba(255,107,53,.45);
    box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}

.register-card small {
    color: var(--muted);
    font-weight: 700;
}

.register-summary {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.register-summary div {
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.register-summary span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.register-summary strong {
    color: var(--ink);
    font-size: 18px;
}

.register-terms {
    grid-column: 1 / -1;
}

.checkbox-line {
    grid-template-columns: auto 1fr !important;
    align-items: center;
}

.checkbox-line input {
    width: 18px;
    min-height: 18px;
}

.register-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.register-actions [data-submit-step] {
    display: none;
}

.register-card.is-final [data-next-step] {
    display: none;
}

.register-card.is-final [data-submit-step] {
    display: inline-flex;
}

.google-complete-shell {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 560px);
    gap: 20px;
    align-items: start;
    padding: 34px 0;
}

.google-complete-card {
    display: grid;
    gap: 14px;
}

.google-profile-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-soft);
}

.google-profile-summary img,
.google-avatar-fallback {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 999px;
}

.google-profile-summary img {
    object-fit: cover;
}

.google-avatar-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: #fff;
    font-weight: 950;
}

.google-profile-summary strong,
.google-profile-summary span {
    display: block;
    min-width: 0;
}

.google-profile-summary strong {
    color: var(--ink);
}

.google-profile-summary span {
    color: var(--muted);
    font-weight: 750;
    overflow-wrap: anywhere;
}

.motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1);
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .landing-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
    }
    .hero-stage {
        min-height: 500px;
    }
    .hero-mockup {
        transform: none;
    }
    .hero-mockup:hover {
        transform: translateY(-4px);
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .landing-main {
        padding-top: 150px;
    }
    .landing-header {
        position: fixed;
    }
    .landing-header nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 14px;
        padding-top: 10px;
        border-top: 1px solid var(--line);
    }
    .tenant-section,
    .register-shell,
    .google-complete-shell {
        grid-template-columns: 1fr;
    }
    .benefit-strip,
    .feature-grid,
    .pricing-grid,
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .register-aside {
        position: static;
    }
}

@media (max-width: 720px) {
    .landing-main {
        width: 100%;
        max-width: 390px;
        margin: 0;
        padding-top: 138px;
        padding-left: 10px;
        padding-right: 10px;
        overflow: hidden;
    }
    .landing-header {
        top: 8px;
        width: min(390px, calc(100% - 20px));
        gap: 10px;
        padding: 10px;
    }
    .landing-header nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        padding: 9px 2px 1px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .landing-header nav::-webkit-scrollbar {
        display: none;
    }
    .landing-header nav a {
        flex: 0 0 auto;
        font-size: 13px;
    }
    .theme-toggle span {
        display: none;
    }
    .landing-logo-img {
        width: 142px;
        height: 42px;
    }
    .header-actions {
        flex-shrink: 0;
        gap: 14px;
    }
    .hero-copy,
    .hero-copy h1,
    .hero-copy p {
        max-width: 100%;
        min-width: 0;
    }
    .hero-copy h1 {
        overflow-wrap: normal;
        text-wrap: balance;
        font-size: clamp(34px, 9.6vw, 38px);
        line-height: 1.02;
    }
    .hero-copy p {
        font-size: 16px;
        line-height: 1.65;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .hero-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-proof span {
        min-width: 0;
    }
    .hero-stage {
        min-height: auto;
    }
    .floating-card {
        display: none;
    }
    .hero-mockup {
        min-height: auto;
        padding: 12px;
        border-radius: 26px;
    }
    .mockup-topbar {
        grid-template-columns: auto 1fr;
    }
    .mockup-live {
        display: none;
    }
    .mockup-layout {
        grid-template-columns: 1fr;
    }
    .mock-sidebar {
        display: none;
    }
    .mock-kpi-row,
    .mock-main-grid {
        grid-template-columns: 1fr;
    }
    .benefit-strip,
    .feature-grid,
    .pricing-grid,
    .register-step,
    .google-complete-card,
    .register-summary,
    .proof-stats,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .proof-intro {
        display: grid;
    }
    .tenant-section {
        padding: 26px;
    }
    .register-actions {
        display: grid;
    }
    .landing-button {
        width: 100%;
    }
    .landing-header .landing-button {
        width: 46px;
        height: 42px;
        min-width: 0;
        padding: 0;
        font-size: 0;
    }
    .landing-header .landing-button::after {
        content: "+";
        font-size: 24px;
        line-height: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
    .motion-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
