body{
  background-color: transparent;
}

:root {
    --accent: #31d6a5;
    --accent-light: #7af1cd;
    --accent-dark: #15aa80;
    --text: #f2faf7;
    --muted: #a7bbb4;
    --border: rgba(136, 195, 175, 0.16);
    --surface: rgba(5, 28, 22, 0.64);
    --surface-strong: rgba(7, 37, 29, 0.82);
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Poppins", "Inter", sans-serif;
    line-height: 1.6;
}

button,
a {
    font: inherit;
}

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

.landing-page {
    min-height: 100vh;
    overflow: hidden;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 clamp(24px, 5vw, 80px);
    border-bottom: 1px solid var(--border);
    background: rgba(1, 17, 13, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 118px;
    max-height: 42px;
    object-fit: contain;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
}

.landing-nav a,
.login-link,
.footer-links a {
    color: #c8d8d3;
    font-size: 0.9rem;
    transition: color 180ms ease;
}

.landing-nav a {
    position: relative;
    padding: 30px 0;
}

.landing-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    border-radius: 100px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.landing-nav a:hover,
.login-link:hover,
.footer-links a:hover {
    color: var(--accent-light);
}

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

.header-actions,
.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-link svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.button span {
    margin-left: 12px;
    font-size: 1.25rem;
    transition: transform 180ms ease;
}

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

.button:hover span {
    transform: translateX(4px);
}

.button-primary {
    color: #042019;
    background: var(--accent);
    box-shadow: 0 12px 34px rgba(49, 214, 165, 0.18);
}

.button-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 16px 42px rgba(49, 214, 165, 0.3);
}

.button-secondary {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
    border-color: rgba(49, 214, 165, 0.48);
    background: rgba(49, 214, 165, 0.07);
}

.button-small {
    min-height: 46px;
    padding: 0 22px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    gap: clamp(50px, 8vw, 110px);
    padding-top: 70px;
    padding-bottom: 90px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    color: var(--accent-light);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(49, 214, 165, 0.2);
    border-radius: 100px;
    background: rgba(49, 214, 165, 0.055);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(49, 214, 165, 0.1);
    animation: pulse 2.4s infinite;
}

.hero h1 {
    max-width: 680px;
    margin: 25px 0 22px;
    font-size: clamp(3.6rem, 6vw, 6.8rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.95;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero-description {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
    margin-top: 34px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 620px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.proof-item {
    padding-right: 20px;
}

.proof-item + .proof-item {
    padding-left: 20px;
    border-left: 1px solid var(--border);
}

.proof-item strong,
.proof-item span {
    display: block;
}

.proof-item strong {
    font-size: 0.82rem;
    font-weight: 600;
}

.proof-item span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.7rem;
}

.hero-content {
    animation: hero-enter 700ms ease both;
}

.hero-visual {
    position: relative;
    animation: hero-enter 700ms 120ms ease both;
}

.dashboard-preview {
    overflow: hidden;
    border: 1px solid rgba(129, 215, 185, 0.2);
    border-radius: 24px;
    background: rgba(4, 26, 20, 0.84);
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.34),
        0 0 80px rgba(49, 214, 165, 0.07);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 400ms ease;
}

.hero-visual:hover .dashboard-preview {
    transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-5px);
}

.preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 17px;
    border-bottom: 1px solid var(--border);
}

.preview-topbar > div:first-child {
    display: flex;
    gap: 6px;
}

.preview-topbar > div:first-child span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.65rem;
}

.preview-status span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.preview-body {
    display: flex;
    min-height: 410px;
}

.preview-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 64px;
    padding: 19px 0;
    border-right: 1px solid var(--border);
    gap: 18px;
}

.sidebar-logo {
    display: grid;
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
    place-items: center;
    border-radius: 9px;
    color: #03241a;
    background: var(--accent);
    font-weight: 700;
}

.preview-sidebar i {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
}

.preview-sidebar i.active {
    background: rgba(49, 214, 165, 0.35);
}

.preview-content {
    flex: 1;
    padding: 28px;
}

.preview-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.preview-heading small,
.preview-heading strong {
    display: block;
}

.preview-heading small {
    color: var(--muted);
    font-size: 0.6rem;
}

.preview-heading strong {
    font-size: 1rem;
}

.preview-avatar {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-dark), #173e33);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 10px;
}

.stat-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.stat-card.featured {
    background: linear-gradient(
        135deg,
        rgba(49, 214, 165, 0.15),
        rgba(49, 214, 165, 0.025)
    );
}

.stat-card small,
.stat-card strong,
.stat-card span {
    display: block;
}

.stat-card small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.52rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stat-card strong {
    margin: 7px 0;
    font-size: 0.95rem;
}

.stat-card span {
    color: var(--accent-light);
    font-size: 0.5rem;
}

.orders-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.orders-title,
.order-row {
    display: grid;
    align-items: center;
}

.orders-title {
    grid-template-columns: 1fr auto;
    margin-bottom: 11px;
    font-size: 0.66rem;
}

.orders-title span {
    color: var(--accent);
    font-size: 0.54rem;
}

.order-row {
    grid-template-columns: 0.8fr 1fr auto;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.55rem;
}

.order-number {
    color: var(--text);
    font-weight: 600;
}

.order-state {
    padding: 4px 7px;
    border-radius: 100px;
}

.order-state.preparing {
    color: #ffc76d;
    background: rgba(255, 199, 109, 0.1);
}

.order-state.ready {
    color: var(--accent-light);
    background: rgba(49, 214, 165, 0.1);
}

.order-state.new {
    color: #94baff;
    background: rgba(90, 143, 255, 0.1);
}

.floating-card {
    position: absolute;
    display: flex;
    padding: 13px;
    border: 1px solid rgba(129, 215, 185, 0.2);
    border-radius: 14px;
    background: rgba(7, 37, 29, 0.9);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
    animation: float 4.5s ease-in-out infinite;
}

.floating-order {
    bottom: 45px;
    left: -45px;
    align-items: center;
    gap: 10px;
}

.floating-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    color: #05241b;
    background: var(--accent);
    font-weight: 700;
}

.floating-order strong,
.floating-order small,
.floating-growth small,
.floating-growth strong {
    display: block;
}

.floating-order strong {
    font-size: 0.67rem;
}

.floating-order small,
.floating-growth small {
    color: var(--muted);
    font-size: 0.53rem;
}

.floating-growth {
    top: 75px;
    right: -30px;
    display: block;
    animation-delay: -2s;
}

.floating-growth strong {
    color: var(--accent-light);
    font-size: 1rem;
}

.section-centered {
    text-align: center;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-heading-left {
    margin-right: 0;
    margin-left: 0;
}

.section-heading h2,
.pricing-card h2,
.about-section h2,
.cta-card h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.15rem, 4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading p,
.feature-card p,
.step-card p,
.pricing-card p,
.about-section > p,
.cta-card p {
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    text-align: left;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 265px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition:
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.feature-card:hover {
    border-color: rgba(49, 214, 165, 0.34);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    transform: translateY(-7px);
}

.feature-card-large {
    grid-row: span 2;
    min-height: 548px;
}

.feature-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(49, 214, 165, 0.24);
    border-radius: 13px;
    color: var(--accent);
    background: rgba(49, 214, 165, 0.075);
    font-size: 0.7rem;
    font-weight: 700;
}

.feature-card h3,
.step-card h3 {
    margin: 22px 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    max-width: 460px;
    margin: 0;
    font-size: 0.9rem;
}

.feature-link {
    position: absolute;
    bottom: 28px;
    left: 32px;
    color: var(--accent-light);
    font-size: 0.78rem;
}

.feature-visual {
    position: absolute;
    right: 20px;
    bottom: -42px;
    left: 20px;
    height: 245px;
}

.phone {
    position: absolute;
    right: 12%;
    bottom: 0;
    width: 180px;
    height: 280px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #08231c;
    transform: rotate(5deg);
    transition: transform 300ms ease;
}

.feature-card:hover .phone {
    transform: translateY(-8px) rotate(2deg);
}

.phone-content {
    height: 100%;
    padding: 26px 15px;
    border-radius: 21px;
    background: linear-gradient(150deg, #133d31, #061e18);
}

.phone-content strong {
    display: block;
    margin: 14px 0 25px;
    font-size: 0.8rem;
}

.mini-pill {
    padding: 4px 8px;
    border-radius: 100px;
    color: var(--accent-light);
    background: rgba(49, 214, 165, 0.12);
    font-size: 0.45rem;
}

.food-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.food-row i {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: linear-gradient(135deg, #326a57, #163a2f);
}

.food-row span {
    width: 72px;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.qr-code {
    position: absolute;
    bottom: 68px;
    left: 16%;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 16px;
    color: #09261e;
    background: var(--text);
    font-size: 3.3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    transform: rotate(-7deg);
}

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

.step-card {
    position: relative;
    min-height: 270px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition:
        background 220ms ease,
        transform 220ms ease;
}

.step-card:hover {
    background: var(--surface-strong);
    transform: translateY(-6px);
}

.step-number {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.step-card::after {
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 36px;
    height: 1px;
    background: var(--accent);
    content: "";
    transition: width 220ms ease;
}

.step-card:hover::after {
    width: 64px;
}

.pricing-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: clamp(35px, 6vw, 70px);
    border: 1px solid rgba(49, 214, 165, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(49, 214, 165, 0.16), transparent 36%),
        var(--surface-strong);
    gap: 60px;
}

.pricing-card h2 {
    max-width: 700px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.pricing-card p {
    max-width: 650px;
    margin-bottom: 0;
}

.pricing-action {
    min-width: 205px;
    text-align: center;
}

.pricing-action > span {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.72rem;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 80px;
}

.about-section h2 {
    margin-bottom: 0;
}

.about-section > p {
    margin: 0 0 7px;
    font-size: 1rem;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(50px, 8vw, 95px) 24px;
    border-radius: 30px;
    color: #05221a;
    background: var(--accent);
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: -180px;
    left: 50%;
    width: 600px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(100px);
    transform: translateX(-50%);
}

.cta-card > *:not(.cta-glow) {
    position: relative;
}

.cta-card .section-label {
    color: #0a654d;
}

.cta-card h2 {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

.cta-card p {
    max-width: 530px;
    margin: 0 auto;
    color: rgba(5, 34, 26, 0.74);
}

.cta-actions {
    justify-content: center;
    margin-top: 30px;
}

.button-light {
    color: #05221a;
    background: #f2fff9;
}

.button-dark {
    color: white;
    background: #073027;
}

.landing-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 45px 0;
    border-top: 1px solid var(--border);
    gap: 35px;
}

.footer-brand img {
    width: 95px;
}

.landing-footer p,
.landing-footer > span {
    color: var(--muted);
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.75rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-enter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 8px rgba(49, 214, 165, 0.03);
    }
}

@keyframes float {
    50% {
        transform: translateY(-9px);
    }
}

@media (max-width: 1050px) {
    .landing-nav {
        gap: 25px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 90px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        width: min(680px, 94%);
        margin: 0 auto;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .landing-header {
        padding: 0 24px;
    }

    .landing-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 18px;
        left: 18px;
        display: flex;
        visibility: hidden;
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(3, 27, 20, 0.96);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
        opacity: 0;
        gap: 2px;
        transform: translateY(-10px);
        transition:
            opacity 180ms ease,
            transform 180ms ease,
            visibility 180ms ease;
    }

    .landing-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .landing-nav a {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .landing-nav a:hover {
        background: rgba(49, 214, 165, 0.07);
    }

    .landing-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions .button {
        display: none;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        min-height: 520px;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pricing-action {
        text-align: left;
    }

    .pricing-action > span {
        display: none;
    }

    .landing-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .section {
        width: min(100% - 32px, 1180px);
        padding: 78px 0;
    }

    .brand img {
        width: 100px;
    }

    .login-link {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 68px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .hero-actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proof-item,
    .proof-item + .proof-item {
        padding: 0;
        border-left: 0;
    }

    .dashboard-preview {
        transform: none;
    }

    .preview-body {
        min-height: 320px;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-content {
        padding: 17px;
    }

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

    .stat-card:last-child {
        display: none;
    }

    .floating-order {
        bottom: -32px;
        left: -8px;
    }

    .floating-growth {
        top: -30px;
        right: -5px;
    }

    .feature-card,
    .step-card {
        padding: 25px;
    }

    .feature-link {
        left: 25px;
    }

    .phone {
        right: 2%;
    }

    .qr-code {
        left: 5%;
    }

    .cta-card {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}