﻿/* ── Variables ── */
:root {
    --l-accent: #E8801A;
    --l-accent-light: #F5A94E;
    --l-accent-pale: rgba(232,128,26,0.12);
    --l-dark: #111008;
    --l-dark-2: #1C1508;
    --l-dark-3: #232014;
    --l-light: #F5F0E8;
    --l-light-2: #FDFAF4;
    --l-muted: #7a6a50;
    --l-muted-2: #a89070;
    --l-border: rgba(255,255,255,0.08);
    --l-border-light: rgba(107,76,40,0.14);
    --l-radius: 16px;
    --l-radius-sm: 10px;
    --l-shadow: 0 8px 40px rgba(0,0,0,0.28);
}

/* ── Reset landing ── */
.landing-body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--l-dark);
    color: #fff;
    overflow-x: hidden;
}

    .landing-body a {
        color: inherit;
    }

    .landing-body * {
        box-sizing: border-box;
    }

/* ── Container ── */
.l-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Sections ── */
.l-section {
    padding: 96px 24px;
}

.l-section--dark {
    background: var(--l-dark-2);
}

.l-section--darker {
    background: var(--l-dark);
}

.l-section--light {
    background: var(--l-light);
    color: var(--l-dark);
}

.l-section__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--l-accent);
    margin-bottom: 14px;
}

.l-section__tag--centered {
    display: block;
    text-align: center;
}

.l-section__title {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: inherit;
    margin-bottom: 16px;
    max-width: 560px;
}

.l-section__title--centered {
    max-width: 100%;
    text-align: center;
}

.l-section--light .l-section__title {
    color: var(--l-dark);
}

.l-section__sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin-bottom: 48px;
}

.l-section__sub--centered {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.l-section--light .l-section__sub {
    color: var(--l-muted);
}

/* ── Accent ── */
.l-accent {
    color: var(--l-accent);
}

.l-accent-text {
    color: var(--l-accent);
}

/* ── NAV ── */
.l-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(17,16,8,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--l-border);
}

.l-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.l-nav__logo-avatar {
    width: 36px !important;
    height: 36px !important;
}

.l-nav__logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.l-nav__links {
    display: flex;
    gap: 32px;
}

.l-nav__link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

    .l-nav__link:hover {
        color: #fff;
    }

/* ── Buttons ── */
.l-btn {
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
}

.l-btn--primary {
    background: var(--l-accent) !important;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(232,128,26,0.38) !important;
}

    .l-btn--primary:hover {
        background: #d06d10 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 32px rgba(232,128,26,0.50) !important;
    }

.l-btn--outline {
    background: transparent !important;
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

    .l-btn--outline:hover {
        color: #fff !important;
        border-color: rgba(255,255,255,0.45) !important;
    }

.l-btn--lg {
    font-size: 16px !important;
    padding: 14px 36px !important;
}

/* ── Arrow link ── */
.l-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}

    .l-link-arrow:hover {
        gap: 12px;
        color: #fff;
    }

/* ── Badge ── */
.l-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.l-badge--accent {
    background: var(--l-accent-pale);
    color: var(--l-accent-light);
    border: 1px solid rgba(232,128,26,0.25);
}

    .l-badge--accent::before {
        content: '●';
        font-size: 7px;
    }

/* ════════════════════════════════════════
           HERO
        ════════════════════════════════════════ */
.l-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 120px 64px 80px;
    position: relative;
    overflow: hidden;
}

.l-hero__glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,128,26,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.l-hero__title {
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 24px;
}

.l-hero__sub {
    font-size: 17px;
    line-height: 1.75;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    max-width: 460px;
    margin-bottom: 36px;
}

.l-hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.l-hero__note {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

/* ── KDS Screen ── */
.l-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.l-kds-screen {
    background: #1A1508;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 18px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.l-kds-screen__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.l-kds-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.l-kds-dot--r {
    background: #FF5F57;
}

.l-kds-dot--y {
    background: #FEBC2E;
}

.l-kds-dot--g {
    background: #28C840;
}

.l-kds-screen__title {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin: 0 auto;
    font-weight: 400;
}

.l-kds-live {
    font-size: 11px;
    color: var(--l-accent-light);
    font-weight: 600;
}

.l-kds-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.l-kds-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px;
}

.l-kds-card--urgent {
    background: rgba(201,59,42,0.10);
    border-color: rgba(201,59,42,0.45);
}

.l-kds-card--ready {
    background: rgba(45,106,79,0.12);
    border-color: rgba(45,106,79,0.5);
}

.l-kds-card__mesa {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

.l-kds-card__num {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.l-kds-card__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .l-kds-card__items li {
        font-size: 10px;
        color: rgba(255,255,255,0.6);
        padding: 3px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .l-kds-card__items li:last-child {
            border: none;
        }

        .l-kds-card__items li::before {
            content: '·';
            color: var(--l-accent);
        }

        .l-kds-card__items li.done {
            text-decoration: line-through;
            color: rgba(255,255,255,0.25);
        }

            .l-kds-card__items li.done::before {
                content: '✓';
                color: #28C840;
                font-size: 8px;
            }

.l-kds-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.l-kds-time {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.l-kds-badge {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.l-kds-badge--urgent {
    background: rgba(201,59,42,0.3);
    color: #FF7B6B;
}

.l-kds-badge--prep {
    background: rgba(232,128,26,0.2);
    color: var(--l-accent-light);
}

.l-kds-badge--ready {
    background: rgba(45,106,79,0.3);
    color: #5DCF96;
}

.l-kds-screen__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 10px;
    color: rgba(255,255,255,0.2);
}

/* ── Float stats ── */
.l-float-stat {
    position: absolute;
    background: var(--l-light-2);
    border: 1px solid var(--l-border-light);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.l-float-stat--tl {
    bottom: -16px;
    left: -28px;
}

.l-float-stat--br {
    top: -14px;
    right: -22px;
}

.l-float-stat__label {
    font-size: 11px;
    color: var(--l-muted);
    margin-bottom: 2px;
}

.l-float-stat__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--l-dark);
    line-height: 1.1;
}

.l-float-stat__trend {
    font-size: 11px;
    color: #16a34a;
    font-weight: 600;
    margin-top: 2px;
}

.l-float-stat__trend--up::before {
    content: '';
}

/* ════════════════════════════════════════
           PROOF
        ════════════════════════════════════════ */
.l-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 28px 24px;
    background: var(--l-dark-3);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
}

.l-proof__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    margin-right: 6px;
}

.l-proof__chip {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════
           VIDEO
        ════════════════════════════════════════ */
.l-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

    .l-video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 14px;
    }

/* ════════════════════════════════════════
           TWO COL
        ════════════════════════════════════════ */
.l-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ════════════════════════════════════════
           PROBLEM / SOLUTION
        ════════════════════════════════════════ */
.l-check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.l-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--l-radius-sm);
    font-size: 15px;
    font-weight: 500;
}

.l-check-item--bad {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.12);
    color: #444;
}

.l-check-item--good {
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.14);
    color: #444;
}

.l-solution-card {
    background: #fff;
    border: 1px solid var(--l-border-light);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.l-solution-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.l-solution-card__brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--l-dark);
}

/* ════════════════════════════════════════
           FEATURES
        ════════════════════════════════════════ */
.l-feat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--l-radius);
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    position: relative;
}

    .l-feat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 2px;
        background: var(--l-accent);
        border-radius: 0 0 4px 4px;
        opacity: 0;
        transition: opacity 0.25s;
    }

    .l-feat-card:hover {
        border-color: rgba(232,128,26,0.3);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    }

        .l-feat-card:hover::before {
            opacity: 1;
        }

.l-feat-card__icon {
    width: 44px;
    height: 44px;
    background: var(--l-accent-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.l-feat-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.l-feat-card__desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.48);
}

/* ════════════════════════════════════════
           STEPS
        ════════════════════════════════════════ */
.l-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
}

    .l-steps::before {
        content: '';
        position: absolute;
        top: 27px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(232,128,26,0.35), transparent);
    }

.l-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.l-step__num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,128,26,0.1);
    border: 1px solid rgba(232,128,26,0.3);
    font-size: 22px;
    font-weight: 900;
    color: var(--l-accent-light);
    margin: 0 auto 18px;
}

.l-step__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.l-step__desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

/* ════════════════════════════════════════
           ROLES
        ════════════════════════════════════════ */
.l-role-card {
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.25s;
    height: 100%;
}

    .l-role-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

.l-role-card__emoji {
    font-size: 36px;
    margin-bottom: 16px;
}

.l-role-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1208;
    margin-bottom: 6px;
}

.l-role-card__sub {
    font-size: 13px;
    color: var(--l-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.l-role-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .l-role-card__features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        font-weight: 400;
        color: #2e2010;
        padding: 8px 0;
        border-bottom: 1px solid rgba(107,76,40,0.1);
    }

        .l-role-card__features li:last-child {
            border: none;
        }

.l-role-arrow {
    color: var(--l-accent);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ════════════════════════════════════════
           FAQ
        ════════════════════════════════════════ */
.l-faq .mud-expand-panel {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: var(--l-radius-sm) !important;
    margin-bottom: 8px !important;
    color: #fff !important;
}

.l-faq .mud-expand-panel-header {
    color: #fff !important;
    font-weight: 600 !important;
}

.l-faq__answer {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    padding: 4px 0 8px;
    border-left: 2px solid var(--l-accent);
    padding-left: 16px;
    margin-top: 4px;
}

.l-faq .mud-expand-panel--expanded {
    border-color: rgba(232,128,26,0.35) !important;
    background: rgba(232,128,26,0.04) !important;
}

/* ════════════════════════════════════════
           CTA FOOTER
        ════════════════════════════════════════ */
.l-cta-footer {
    padding: 100px 24px;
    background: var(--l-dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.l-cta-footer__glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(232,128,26,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.l-cta-footer__card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232,128,26,0.25);
    border-radius: 28px;
    padding: 64px 48px;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.l-cta-footer__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 16px;
}

.l-cta-footer__sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 440px;
    margin: 0 auto 36px;
}

.l-cta-footer__note {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 18px;
    font-weight: 300;
}

.l-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 56px;
    opacity: 0.4;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.l-nav__toggle {
    display: none;
}

/* ════════════════════════════════════════
           RESPONSIVE
        ════════════════════════════════════════ */
@media (max-width: 960px) {
    .l-hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 0;
    }

    .l-hero__visual {
        /*display: none;*/
        .l-hero__visual

{
    display: block;
    margin-top: 32px;
}

}

.l-two-col {
    grid-template-columns: 1fr;
}

.l-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

    .l-steps::before {
        display: none;
    }

/*.l-nav__links {
        display: none;
    }*/
.l-nav__toggle {
    display: block;
    cursor: pointer;
    font-size: 26px;
    color: #fff;
}

.l-nav__links {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: rgba(17,16,8,0.95);
    position: absolute;
    top: 64px;
    right: 0;
    padding: 20px;
}

    .l-nav__links.open {
        display: flex;
    }

}

@media (max-width: 600px) {
    .l-hero__title {
        letter-spacing: -1px;
    }

    .l-steps {
        grid-template-columns: 1fr;
    }

    .l-cta-footer__card {
        padding: 40px 24px;
    }
}
