:root {
    --ink: #0b1220;
    --ink-soft: #162033;
    --paper: #f6f7fb;
    --white: #ffffff;
    --muted: #667085;
    --muted-light: #98a2b3;
    --line: #e5e7eb;
    --primary: #6d5dfc;
    --primary-dark: #5145e5;
    --cyan: #34d9ef;
    --green: #6ee7b7;
    --lime: #c8f56a;
    --orange: #ffb067;
    --lilac: #ebe8ff;
    --mint: #ddfbef;
    --sand: #fff1da;
    --shadow: 0 24px 70px rgba(17, 24, 39, .12);
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, .08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin: 0 auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); background: var(--white); padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { transform: none; }

/* Navigation */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    transition: .3s ease;
}
.site-header.scrolled { padding: 10px 0; }
.nav-shell {
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 8px 10px 8px 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, .08);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.brand-word { font-size: 21px; }
.brand-mark {
    width: 34px; height: 34px; display: grid; place-items: center; position: relative;
    border-radius: 11px; background: var(--ink); overflow: hidden;
}
.brand-mark span { position: absolute; width: 8px; border-radius: 99px; transform: rotate(35deg); }
.brand-mark span:nth-child(1) { height: 18px; left: 8px; top: 8px; background: var(--cyan); }
.brand-mark span:nth-child(2) { height: 24px; left: 14px; top: 5px; background: var(--primary); }
.brand-mark span:nth-child(3) { height: 16px; left: 21px; top: 9px; background: var(--lime); }
.main-navigation { display: flex; justify-content: center; align-items: center; gap: 26px; }
.main-navigation a { font-size: 14px; font-weight: 700; color: #4a5568; transition: .2s ease; }
.main-navigation a:hover { color: var(--ink); }
.mobile-nav-login, .mobile-nav-signup { display: none !important; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.mobile-menu-button { display: none; }

/* Buttons */
.button {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 12px; }
.button-large { min-height: 58px; padding: 0 24px; border-radius: 16px; font-size: 15px; }
.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #897cff);
    box-shadow: 0 12px 30px rgba(109, 93, 252, .25);
}
.button-primary:hover { box-shadow: 0 16px 38px rgba(109, 93, 252, .34); }
.button-secondary { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.button-ghost { background: transparent; color: var(--ink); }
.button-white { background: var(--white); color: var(--ink); }
.button-dark-ghost { color: var(--white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; margin-top: 14px; }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 168px 0 58px;
    background:
        radial-gradient(circle at 20% 8%, rgba(109,93,252,.12), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(52,217,239,.15), transparent 28%),
        var(--paper);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11,18,32,.10) .7px, transparent .7px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 75%);
    pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(4px); opacity: .8; pointer-events: none; }
.hero-orb-one { width: 180px; height: 180px; background: var(--lilac); left: -80px; top: 280px; }
.hero-orb-two { width: 130px; height: 130px; background: var(--mint); right: -45px; bottom: 150px; }
.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.18fr;
    align-items: center;
    gap: 72px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--lime); border-radius: 99px; }
.eyebrow-dark { color: #596175; }
.eyebrow-dark span { background: var(--primary); }
.hero-copy .eyebrow { color: #667085; }
.hero-copy .eyebrow span { background: var(--primary); }
.hero h1 {
    max-width: 760px;
    margin: 22px 0 22px;
    font-size: clamp(52px, 6.2vw, 91px);
    line-height: .96;
    letter-spacing: -.066em;
    font-weight: 800;
}
.text-gradient {
    color: transparent;
    background: linear-gradient(100deg, var(--primary) 0%, #8767f9 45%, #26b6d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-lead { max-width: 640px; margin: 0; color: #5f6b7d; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 24px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #687386; font-size: 12px; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 6px; }
.hero-proof i { color: var(--primary); font-size: 16px; }
.form-alert { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 12px 14px; border-radius: 12px; font-weight: 700; font-size: 14px; }
.form-alert-success { background: #e8fff3; color: #087f5b; }
.form-alert-error { background: #fff0f0; color: #c92a2a; }

.hero-visual { position: relative; min-width: 0; }
.app-window { overflow: hidden; background: var(--white); border: 1px solid rgba(15,23,42,.08); border-radius: 24px; box-shadow: var(--shadow); }
.hero-app-window { transform: rotate(1.8deg); }
.app-window-topbar { height: 50px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 0 16px; background: #fbfbfd; border-bottom: 1px solid #eef0f3; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 8px; height: 8px; border-radius: 99px; background: #d7dae1; }
.window-address { justify-self: center; display: flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 9px; background: #f0f2f5; color: #7a8496; font-size: 10px; font-weight: 700; }
.window-live { display: inline-flex; align-items: center; gap: 5px; color: #667085; font-size: 10px; font-weight: 800; }
.window-live i { width: 7px; height: 7px; border-radius: 99px; background: #2ecc71; box-shadow: 0 0 0 4px rgba(46,204,113,.12); }
.app-window-body { background: var(--white); }
.app-window-body img { width: 100%; height: auto; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.96); border: 1px solid rgba(15,23,42,.06); border-radius: 15px; box-shadow: 0 15px 40px rgba(15,23,42,.14); backdrop-filter: blur(12px); }
.floating-card small, .floating-card strong { display: block; white-space: nowrap; }
.floating-card small { color: #8a94a6; font-size: 10px; font-weight: 700; }
.floating-card strong { color: var(--ink); font-size: 12px; }
.floating-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--lilac); color: var(--primary); }
.order-card { left: -38px; bottom: 54px; }
.print-card { right: -28px; top: 84px; }
.status-dot { width: 8px; height: 8px; margin-left: 8px; border-radius: 99px; background: #29c17e; box-shadow: 0 0 0 5px rgba(41,193,126,.12); }
.success-check { margin-left: 8px; color: #29c17e; }
.hero-rail { position: relative; display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: center; margin-top: 86px; padding: 20px 0 0; border-top: 1px solid #dfe3eb; }
.rail-intro { color: #667085; font-size: 13px; font-weight: 800; }
.rail-items { display: flex; justify-content: space-between; gap: 18px; overflow: hidden; }
.rail-items span { display: inline-flex; align-items: center; gap: 8px; color: #4e596c; white-space: nowrap; font-size: 13px; font-weight: 800; }
.rail-items i { color: var(--primary); font-size: 17px; }

/* Sections */
.section { padding: 118px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .demo-copy h2, .multilingual-copy h2, .faq-copy h2 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 4.5vw, 66px);
    line-height: 1.04;
    letter-spacing: -.055em;
    font-weight: 800;
}
.section-heading p, .multilingual-copy > p, .faq-copy > p { margin: 0; color: var(--muted); font-size: 17px; }

.section-intro { background: var(--white); }
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mode-card { position: relative; min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid #edf0f4; border-radius: var(--radius-lg); background: #fbfcfe; transition: .25s ease; }
.mode-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: #e2e7ef; }
.mode-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; font-size: 24px; }
.mode-icon-blue { background: #e9f2ff; color: #3b82f6; }
.mode-icon-orange { background: #fff1df; color: #f59e0b; }
.mode-icon-green { background: #e2f9ef; color: #16a36e; }
.mode-number { display: block; margin-top: 28px; color: #a5adba; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.mode-card h3 { margin: 5px 0 7px; font-size: 22px; letter-spacing: -.035em; }
.mode-card p { margin: 0; color: var(--muted); font-size: 14px; }
.mode-arrow { position: absolute; top: 24px; right: 24px; color: #aab2bf; }

.section-bento { background: #f0f1f6; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento-card { position: relative; overflow: hidden; min-height: 280px; border-radius: var(--radius-xl); padding: 32px; }
.bento-card h3 { margin: 12px 0 10px; font-size: 29px; line-height: 1.08; letter-spacing: -.045em; }
.bento-card p { margin: 0; color: #657085; font-size: 14px; }
.bento-card-large { grid-column: span 8; min-height: 500px; }
.bento-card-tall { grid-column: span 4; min-height: 500px; }
.bento-card-small { grid-column: span 4; }
.bento-card-wide { grid-column: span 8; }
.bento-card-medium { grid-column: span 4; }
.bento-dark { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; color: var(--white); background: var(--ink); }
.bento-dark p { color: rgba(255,255,255,.64); }
.bento-lilac { background: var(--lilac); }
.bento-mint { background: var(--mint); }
.bento-sand { background: var(--sand); }
.bento-ai { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 24px; background: linear-gradient(135deg, #f0ecff, #e7f9ff); }
.bento-white { background: var(--white); border: 1px solid #e6e8ee; }
.tag { display: inline-flex; align-items: center; gap: 6px; width: max-content; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.55); color: #5c6678; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.tag-green { background: rgba(110,231,183,.16); color: #24a875; }
.tag-purple { background: rgba(109,93,252,.12); color: var(--primary); }
.mini-checks { list-style: none; display: grid; gap: 8px; margin: 24px 0 0; padding: 0; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; }
.mini-checks i { margin-right: 6px; color: var(--green); }
.orders-media { align-self: end; margin-right: -120px; margin-bottom: -72px; border-radius: 18px 0 0 0; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.28); transform: rotate(-1.5deg); }
.orders-media img { width: 100%; min-height: 330px; object-fit: cover; object-position: left top; }
.phone-shell { position: absolute; left: 50%; bottom: -170px; width: 76%; transform: translateX(-50%); padding: 10px 10px 0; background: #111827; border-radius: 34px 34px 0 0; box-shadow: 0 22px 50px rgba(31,24,74,.18); }
.phone-shell img { width: 100%; border-radius: 26px 26px 0 0; }
.bento-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.7); font-size: 24px; }
.ai-visual { display: flex; align-items: center; justify-content: center; gap: 16px; }
.pdf-card { width: 112px; min-height: 132px; display: grid; place-items: center; align-content: center; gap: 9px; background: var(--white); border-radius: 20px; box-shadow: var(--shadow-soft); }
.pdf-card i { color: #ef4444; font-size: 34px; }
.pdf-card span { color: #606b7c; font-size: 11px; font-weight: 800; }
.ai-flow { display: flex; align-items: center; gap: 6px; color: var(--primary); }
.ai-flow span { width: 18px; height: 1px; background: #b6b0f8; }
.ai-flow i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; background: var(--primary); color: var(--white); box-shadow: 0 12px 24px rgba(109,93,252,.24); }
.menu-stack { display: grid; gap: 8px; }
.menu-stack span { display: flex; align-items: center; gap: 8px; padding: 9px 11px; background: rgba(255,255,255,.85); border-radius: 10px; box-shadow: 0 8px 24px rgba(15,23,42,.06); color: #566174; font-size: 10px; font-weight: 800; }
.menu-stack i { color: var(--primary); }
.stats-preview { position: absolute; width: 125%; max-width: none; right: -48px; bottom: -34px; border-radius: 16px; box-shadow: var(--shadow-soft); }

/* Demo */
.demo-section { color: var(--white); background: var(--ink); }
.demo-shell { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 70px; }
.demo-copy h2 { margin-top: 16px; }
.demo-copy p { color: rgba(255,255,255,.62); font-size: 16px; }
.demo-points { display: grid; gap: 10px; margin: 26px 0 30px; }
.demo-points span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; }
.demo-points i { color: var(--lime); }
.demo-player { position: relative; padding: 10px; border: 1px solid rgba(255,255,255,.10); border-radius: 28px; background: rgba(255,255,255,.06); box-shadow: 0 35px 90px rgba(0,0,0,.32); }
.demo-player video { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 20px; background: #050812; }
.demo-player-label { position: absolute; left: 24px; bottom: 24px; display: flex; align-items: center; gap: 7px; padding: 8px 11px; color: var(--ink); background: rgba(255,255,255,.94); border-radius: 11px; font-size: 10px; font-weight: 800; pointer-events: none; }

/* Workflow */
.workflow-section { background: var(--white); }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.workflow-grid::before { content: ""; position: absolute; top: 52px; left: 16%; right: 16%; height: 1px; background: linear-gradient(90deg, transparent, #d8dce5 15%, #d8dce5 85%, transparent); }
.workflow-step { position: relative; z-index: 1; padding: 28px; text-align: center; }
.step-number { display: inline-flex; margin-bottom: 14px; color: #9ba3b0; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.step-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 22px; border: 8px solid var(--white); border-radius: 24px; background: var(--lilac); color: var(--primary); font-size: 24px; box-shadow: 0 0 0 1px #e5e8ef; }
.workflow-step h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.03em; }
.workflow-step p { margin: 0; color: var(--muted); font-size: 14px; }

/* Multilingual */
.multilingual-section { background: #f0f1f6; }
.multilingual-shell { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 76px; }
.multilingual-visual { position: relative; }
.multilingual-visual .app-window { transform: rotate(-1.5deg); }
.multilingual-visual .app-window-body { padding: 18px; }
.multilingual-visual .app-window-body img { border-radius: 12px; }
.language-bubbles { position: absolute; right: -28px; top: -28px; display: flex; gap: 7px; }
.language-bubbles span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--white); box-shadow: var(--shadow-soft); color: var(--primary); font-size: 11px; font-weight: 800; }
.language-bubbles span:nth-child(2) { transform: translateY(16px); color: #0891b2; }
.language-bubbles span:nth-child(3) { transform: translateY(4px); color: #059669; }
.feature-list { display: grid; gap: 12px; margin-top: 28px; }
.feature-list > div { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid #dde1e9; }
.feature-list > div > i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--white); color: var(--primary); box-shadow: 0 8px 20px rgba(15,23,42,.05); }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { margin-bottom: 3px; font-size: 14px; }
.feature-list small { color: var(--muted); font-size: 12px; }

/* Pricing */
.pricing-section { background: var(--white); }
.pricing-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; max-width: 980px; margin: 0 auto; }
.pricing-card { padding: 34px; border: 1px solid #e7e9ee; border-radius: var(--radius-xl); background: #fbfcfd; box-shadow: var(--shadow-soft); }
.pricing-head h3 { margin: 15px 0 5px; font-size: 28px; letter-spacing: -.04em; }
.pricing-head p { margin: 0; color: var(--muted); font-size: 14px; }
.price-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0; }
.price-option { padding: 18px; border: 1px solid #e7e9ee; border-radius: 18px; background: var(--white); }
.price-option.active { border-color: rgba(109,93,252,.35); box-shadow: 0 0 0 3px rgba(109,93,252,.07); }
.price-option small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.price-option strong { display: inline-block; margin-top: 6px; font-size: 27px; letter-spacing: -.05em; }
.price-option span { margin-left: 4px; color: var(--muted); font-size: 11px; }
.pricing-features { display: grid; gap: 11px; margin: 0 0 26px; }
.pricing-features span { display: flex; align-items: center; gap: 9px; color: #596476; font-size: 13px; font-weight: 700; }
.pricing-features i { color: #22b47d; }
.pricing-login { display: block; margin-top: 14px; text-align: center; color: #6c7687; font-size: 12px; font-weight: 700; }
.pricing-side { display: grid; gap: 18px; }
.pricing-side-card { padding: 30px; border-radius: var(--radius-xl); }
.pricing-side-dark { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; color: var(--white); background: var(--ink); }
.pricing-side-dark h3 { margin: 10px 0; font-size: 28px; line-height: 1.08; letter-spacing: -.04em; }
.pricing-side-dark p { margin: 0 0 22px; color: rgba(255,255,255,.62); font-size: 13px; }
.mini-label { color: var(--lime); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pricing-side-light { display: flex; align-items: flex-start; gap: 15px; border: 1px solid #e7e9ee; background: #f6f8fb; }
.pricing-side-light > i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; background: var(--mint); color: #15966d; font-size: 20px; }
.pricing-side-light h4 { margin: 0 0 6px; font-size: 16px; letter-spacing: -.025em; }
.pricing-side-light p { margin: 0; color: var(--muted); font-size: 12px; }

/* FAQ */
.faq-section { background: #f0f1f6; }
.faq-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: start; }
.faq-copy { position: sticky; top: 120px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 0 22px; border: 1px solid #e2e5eb; border-radius: 18px; background: var(--white); }
.faq-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 32px 20px 0; color: var(--muted); font-size: 13px; }

/* Final CTA */
.final-cta { padding: 28px 0 0; background: #f0f1f6; }
.final-cta-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; min-height: 390px; padding: 60px; color: var(--white); border-radius: 42px; background: var(--ink); }
.cta-glow { position: absolute; width: 420px; height: 420px; right: 18%; bottom: -260px; border-radius: 999px; background: radial-gradient(circle, rgba(109,93,252,.72), rgba(109,93,252,0) 70%); pointer-events: none; }
.final-cta-copy { position: relative; z-index: 1; }
.final-cta h2 { margin: 16px 0 15px; font-size: clamp(42px, 5vw, 68px); line-height: .98; letter-spacing: -.06em; }
.final-cta h2 span { color: var(--lime); }
.final-cta p { max-width: 600px; margin: 0; color: rgba(255,255,255,.62); }
.final-cta-actions { position: relative; z-index: 1; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }

/* Footer */
.site-footer { padding: 70px 0 28px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr 1fr; gap: 44px; }
.brand-footer .brand-mark { background: var(--white); }
.brand-footer .brand-word { color: var(--white); }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.46); font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links h3 { margin: 0 0 5px; color: rgba(255,255,255,.38); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a, .footer-links button { padding: 0; border: 0; background: none; color: rgba(255,255,255,.7); text-align: left; font-size: 13px; cursor: pointer; }
.footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-cta > span { color: rgba(255,255,255,.52); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: 11px; }

/* Contact modal */
.contact-modal { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 20px; }
.contact-modal.open { display: grid; }
.contact-backdrop { position: absolute; inset: 0; background: rgba(5,10,20,.68); backdrop-filter: blur(8px); }
.contact-dialog { position: relative; z-index: 1; width: min(660px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 34px; border-radius: 30px; background: var(--white); box-shadow: 0 35px 100px rgba(0,0,0,.28); }
.contact-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 12px; background: #f1f3f6; cursor: pointer; }
.contact-modal-intro h2 { margin: 14px 0 8px; font-size: 34px; line-height: 1.05; letter-spacing: -.045em; }
.contact-modal-intro p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-form { display: grid; gap: 14px; margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: #596476; font-size: 11px; font-weight: 800; }
.contact-form label em { color: #9aa3b2; font-style: normal; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #dde1e8; border-radius: 13px; background: #fbfcfd; color: var(--ink); outline: none; transition: .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(109,93,252,.10); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

/* Responsive */
@media (max-width: 1080px) {
    .main-navigation { gap: 16px; }
    .main-navigation a { font-size: 12px; }
    .hero-shell { grid-template-columns: 1fr; gap: 58px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-visual { width: min(880px, 100%); margin: 0 auto; }
    .hero-rail { grid-template-columns: 1fr; text-align: center; }
    .bento-card-large { grid-column: span 12; }
    .bento-card-tall { grid-column: span 6; }
    .bento-card-small { grid-column: span 6; }
    .bento-card-wide { grid-column: span 12; }
    .bento-card-medium { grid-column: span 12; min-height: 350px; }
    .stats-preview { width: 80%; right: -10px; }
    .demo-shell, .multilingual-shell { grid-template-columns: 1fr; }
    .demo-copy { max-width: 720px; }
    .multilingual-visual { order: 2; }
    .pricing-wrap { grid-template-columns: 1fr; }
    .pricing-side { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
    .footer-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}

@media (max-width: 860px) {
    :root { --shell: min(100% - 28px, 1180px); }
    .site-header { padding: 10px 0; }
    .nav-shell { grid-template-columns: auto auto; justify-content: space-between; min-height: 58px; padding: 7px 8px 7px 14px; }
    .nav-actions { display: none; }
    .mobile-menu-button { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 0; border-radius: 12px; background: var(--ink); cursor: pointer; }
    .mobile-menu-button span { width: 19px; height: 2px; background: var(--white); border-radius: 99px; transition: .2s ease; }
    .mobile-menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .mobile-menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .main-navigation { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid #e5e8ee; border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-soft); }
    .main-navigation.open { display: flex; }
    .main-navigation a { padding: 12px 10px; border-radius: 10px; font-size: 14px; }
    .main-navigation a:hover { background: #f5f6f8; }
    .mobile-nav-login, .mobile-nav-signup { display: flex !important; align-items: center; justify-content: center; margin-top: 6px; min-height: 46px; border-radius: 12px; }
    .mobile-nav-login { background: #f2f4f7; color: var(--ink) !important; }
    .mobile-nav-signup { background: var(--primary); color: var(--white) !important; }
    .hero { padding-top: 138px; }
    .hero h1 { font-size: clamp(48px, 13vw, 76px); }
    .floating-card { transform: scale(.88); }
    .order-card { left: -10px; bottom: 30px; }
    .print-card { right: -10px; top: 66px; }
    .rail-items { flex-wrap: wrap; justify-content: center; }
    .section { padding: 86px 0; }
    .mode-grid { grid-template-columns: 1fr; }
    .mode-card { min-height: 220px; }
    .demo-shell, .multilingual-shell, .faq-shell { gap: 48px; }
    .workflow-grid { grid-template-columns: 1fr; }
    .workflow-grid::before { display: none; }
    .workflow-step { padding: 12px 20px 30px; }
    .faq-shell { grid-template-columns: 1fr; }
    .faq-copy { position: static; }
    .final-cta-shell { grid-template-columns: 1fr; padding: 46px; }
    .final-cta-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    .hero { padding-top: 122px; }
    .hero h1 { margin-top: 16px; font-size: 48px; }
    .hero-lead { font-size: 16px; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; justify-content: start; max-width: 320px; margin: 0 auto; text-align: left; }
    .hero-app-window { transform: none; }
    .app-window-topbar { height: 44px; padding: 0 10px; }
    .window-address { display: none; }
    .window-live { grid-column: 3; }
    .floating-card { display: none; }
    .hero-rail { margin-top: 56px; }
    .section-heading h2, .demo-copy h2, .multilingual-copy h2, .faq-copy h2 { font-size: 39px; }
    .bento-grid { display: block; }
    .bento-card { margin-bottom: 14px; min-height: 290px; padding: 24px; border-radius: 26px; }
    .bento-card h3 { font-size: 25px; }
    .bento-dark, .bento-ai { display: block; }
    .bento-dark { min-height: 520px; }
    .orders-media { position: absolute; left: 24px; right: -90px; bottom: -30px; margin: 0; }
    .orders-media img { min-height: 250px; }
    .bento-card-tall { min-height: 500px; }
    .bento-ai { min-height: 580px; }
    .ai-visual { margin-top: 46px; transform: scale(.88); }
    .stats-preview { width: 120%; }
    .demo-section { padding-top: 82px; padding-bottom: 82px; }
    .demo-shell { gap: 40px; }
    .multilingual-visual .app-window-body { padding: 8px; }
    .language-bubbles { right: 8px; top: -38px; }
    .price-options { grid-template-columns: 1fr; }
    .pricing-card, .pricing-side-card { padding: 24px; border-radius: 26px; }
    .pricing-side { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-dialog { padding: 24px; border-radius: 24px; }
    .contact-modal-intro h2 { font-size: 30px; }
    .final-cta { padding-top: 0; }
    .final-cta-shell { min-height: 470px; padding: 34px 24px; border-radius: 30px; }
    .final-cta h2 { font-size: 45px; }
    .final-cta-actions { display: grid; }
    .final-cta-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand, .footer-cta { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

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