:root {
    --bg: #ffffff;
    --bg-soft: #f8f8fc;
    --surface: #ffffff;
    --surface-2: #f4f3fb;
    --text: #101017;
    --muted: #676777;
    --muted-2: #9695a5;
    --line: #e7e6ee;
    --accent: #6438f4;
    --accent-2: #7a56ff;
    --accent-soft: #f0ebff;
    --dark: #090b12;
    --dark-2: #10141e;
    --dark-muted: #a6acbb;
    --shadow: 0 18px 55px rgba(26, 20, 53, .11);
    --shadow-soft: 0 10px 30px rgba(26, 20, 53, .07);
    --radius: 18px;
    --shell: 1180px;
    --header-h: 72px;
}

html[data-theme="dark"] {
    --bg: #0c0e14;
    --bg-soft: #11141c;
    --surface: #141821;
    --surface-2: #191d28;
    --text: #f4f4f7;
    --muted: #a8adba;
    --muted-2: #737b8a;
    --line: #252b37;
    --accent-soft: #231a46;
    --shadow: 0 18px 55px rgba(0, 0, 0, .28);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, .18);
}

@media (prefers-color-scheme: dark) {
    html[data-theme="auto"] {
        --bg: #0c0e14;
        --bg-soft: #11141c;
        --surface: #141821;
        --surface-2: #191d28;
        --text: #f4f4f7;
        --muted: #a8adba;
        --muted-2: #737b8a;
        --line: #252b37;
        --accent-soft: #231a46;
        --shadow: 0 18px 55px rgba(0, 0, 0, .28);
        --shadow-soft: 0 10px 30px rgba(0, 0, 0, .18);
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(calc(100% - 44px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -50px; z-index: 9999; background: #fff; color: #000; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); display: flex; align-items: center; background: color-mix(in srgb, var(--bg) 93%, transparent); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 26px rgba(18,18,26,.05); }
.site-header__inner { display: flex; align-items: center; gap: 30px; min-height: var(--header-h); }
.site-brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.brand-mark { width: 33px; height: 33px; display: inline-flex; }
.brand-mark img { display: block; width: 100%; height: 100%; }
.site-brand__name { font-size: 21px; font-weight: 820; letter-spacing: -.055em; text-transform: lowercase; }
.site-brand--custom img { max-height: 40px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav__list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 28px; }
.site-nav__list a { font-size: 13px; font-weight: 650; color: var(--text); }
.site-nav__list a:hover { color: var(--accent); }
.site-actions { display: flex; align-items: center; gap: 9px; }
.language-switcher select { max-width: 110px; border: 0; background: transparent; color: var(--text); font-size: 12px; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); cursor: pointer; }
.icon-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.theme-picker { position: relative; }
.theme-menu { position: absolute; right: 0; top: calc(100% + 10px); width: 130px; padding: 6px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow-soft); }
.theme-menu button { display: block; width: 100%; border: 0; padding: 9px 10px; border-radius: 8px; text-align: left; background: transparent; cursor: pointer; font-size: 12px; }
.theme-menu button:hover, .theme-menu button.is-active { background: var(--accent-soft); color: var(--accent); }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 43px; padding: 0 18px; border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button--small { min-height: 38px; padding-inline: 14px; }
.button--large { min-height: 50px; padding-inline: 24px; border-radius: 11px; }
.button--primary { color: #fff; background: linear-gradient(135deg, #7148fa, #5b2cf0); box-shadow: 0 9px 24px rgba(95, 47, 242, .27); }
.button--primary:hover { box-shadow: 0 12px 30px rgba(95, 47, 242, .38); }
.button--ghost { border-color: var(--line); background: var(--surface); }
.button--outline { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); color: var(--accent); background: transparent; }
.button--dark-ghost { border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.035); }
.button--block { width: 100%; }
.button--disabled { border-color: var(--line); background: var(--surface-2); color: var(--muted-2); pointer-events: none; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 88% 6%, rgba(87,29,221,.25), transparent 28%), linear-gradient(145deg, #0a0d14 0%, #0d1018 57%, #090b12 100%); color: #fff; }
.hero::after { content: ""; position: absolute; left: -3%; right: -3%; bottom: -46px; height: 78px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: var(--bg-soft); z-index: 4; }
.hero__grid { position: relative; z-index: 5; display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; min-height: 620px; padding: 76px 0 104px; }
.hero__content { max-width: 570px; }
.eyebrow { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .105em; }
.eyebrow--dark { background: rgba(104, 71, 241, .13); color: #b99cff; border: 1px solid rgba(143, 111, 255, .12); }
.hero h1 { margin: 18px 0 20px; font-size: clamp(46px, 5.1vw, 70px); line-height: .99; letter-spacing: -.058em; max-width: 720px; }
.hero h1::first-line { color: #fff; }
.hero__lead { max-width: 520px; color: #c4c9d3; font-size: 17px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.hero__benefits { display: flex; flex-wrap: wrap; gap: 15px 24px; margin-top: 44px; color: #b7bcc7; }
.hero__benefits span { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; white-space: nowrap; }
.hero__benefits svg { width: 16px; height: 16px; fill: none; stroke: #d7d9e1; stroke-width: 1.7; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero-glow--one { width: 330px; height: 330px; right: 5%; top: 6%; background: #4217ce; }
.hero-glow--two { width: 200px; height: 200px; right: 25%; bottom: 10%; background: #1269ff; opacity: .28; }
.hero-grid-pattern { position: absolute; right: -20px; top: 0; width: 330px; height: 270px; background-image: radial-gradient(rgba(126,82,255,.35) 1px, transparent 1px); background-size: 12px 12px; mask-image: linear-gradient(90deg, transparent, #000); }
.hero-demo { position: relative; min-height: 465px; }
.demo-orbit { position: absolute; border: 1px solid rgba(110,65,255,.28); border-radius: 50%; transform: rotate(-16deg); }
.demo-orbit--one { width: 570px; height: 230px; right: -65px; top: 80px; }
.demo-orbit--two { width: 510px; height: 190px; right: -15px; top: 116px; border-color: rgba(51,128,255,.24); }
.dashboard-window { position: absolute; right: 12px; top: 34px; width: min(610px, 93%); height: 420px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: #151922; box-shadow: 0 34px 90px rgba(0,0,0,.46), 0 0 0 7px rgba(255,255,255,.025); }
.dashboard-titlebar { height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
.dashboard-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 750; }
.dashboard-brand .brand-mark { width: 20px; height: 20px; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 6px; height: 6px; border-radius: 50%; background: #4c5360; }
.dashboard-body { display: grid; grid-template-columns: 126px 1fr; height: calc(100% - 44px); }
.dashboard-sidebar { padding: 16px 10px; background: #1c212b; }
.sidebar-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; margin-bottom: 3px; border-radius: 7px; color: #9ca5b5; font-size: 9px; }
.sidebar-item i { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 2px; }
.sidebar-item.is-active { background: #2b303b; color: #fff; }
.dashboard-content { padding: 18px; background: #fbfbfd; color: #181820; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; }
.dashboard-heading strong { display: block; font-size: 16px; }
.dashboard-heading small { display: block; margin-top: 9px; color: #727685; font-size: 8px; }
.dashboard-heading button { border: 0; border-radius: 7px; background: #6937f2; color: #fff; padding: 8px 10px; font-size: 8px; }
.calendar-head { display: flex; align-items: center; gap: 7px; margin: 19px 0 10px; }
.calendar-head strong { margin-right: auto; font-size: 11px; }
.calendar-head span { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid #e6e6eb; border-radius: 5px; color: #7f8190; }
.calendar-grid { position: relative; height: 260px; overflow: hidden; border: 1px solid #ececf2; border-radius: 9px; background: #fff; }
.calendar-days { display: grid; grid-template-columns: repeat(5, 1fr); height: 32px; border-bottom: 1px solid #ececf2; }
.calendar-days span { display: grid; place-items: center; border-right: 1px solid #ececf2; color: #6e7280; font-size: 7px; }
.calendar-lines { position: absolute; inset: 32px 0 0; background-image: linear-gradient(#f1f1f5 1px, transparent 1px), linear-gradient(90deg, #f1f1f5 1px, transparent 1px); background-size: 100% 38px, 20% 100%; }
.event { position: absolute; z-index: 2; left: calc((var(--col) - 1) * 20% + 6px); top: calc(32px + (var(--row) - 1) * 31px); width: calc(20% - 12px); min-height: 48px; padding: 6px; border-radius: 6px; font-size: 7px; color: #434350; }
.event b, .event small { display: block; font-size: inherit; }
.event small { margin-top: 3px; }
.event--green { background: #d9f2df; }
.event--purple { background: #e9ddff; }
.event--blue { background: #dceafc; }
.event--orange { background: #ffe8c8; }
.event--pink { background: #f8d8e3; }
.booking-card { position: absolute; right: -18px; bottom: -8px; z-index: 6; width: 195px; padding: 14px; border: 1px solid rgba(255,255,255,.45); border-radius: 17px; background: #fff; color: #17171f; box-shadow: 0 22px 50px rgba(0,0,0,.42); }
.booking-card__top { display: flex; align-items: center; gap: 7px; margin-bottom: 11px; }
.booking-card__top .brand-mark { width: 23px; height: 23px; }
.booking-card__top small { font-size: 10px; font-weight: 800; }
.booking-card label { display: block; margin: 8px 0; color: #7a7d88; font-size: 7px; }
.booking-card label span { display: flex; justify-content: space-between; margin-top: 4px; padding: 8px; border: 1px solid #ececf2; border-radius: 7px; color: #252631; font-size: 8px; }
.booking-card button { width: 100%; margin-top: 7px; padding: 9px; border: 0; border-radius: 7px; background: linear-gradient(135deg, #754df8, #5728e9); color: #fff; font-size: 8px; font-weight: 750; }

.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--integration { background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--accent) 2%, var(--bg)) 100%); }
.section-title { max-width: 720px; margin-bottom: 40px; }
.section-title--center { margin-inline: auto; text-align: center; }
.section-title h2, .integration-copy h2, .docs-copy h2 { margin: 13px 0 10px; font-size: clamp(34px, 4vw, 46px); line-height: 1.05; letter-spacing: -.052em; }
.section-title p, .integration-copy p, .docs-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.product-grid--four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { min-height: 278px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow-soft); }
.product-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; }
.product-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.product-icon--booking { color: #5f36ef; background: #eee8ff; }
.product-icon--pos { color: #168c46; background: #def3e5; }
.product-icon--gift { color: #d68a00; background: #fff0d6; }
.product-icon--inventory { color: #2563d7; background: #e3edff; }
.chip { display: inline-flex; padding: 5px 8px; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.chip--purple { background: var(--accent-soft); color: var(--accent); }
.product-card h3 { margin: 18px 0 9px; font-size: 18px; letter-spacing: -.035em; }
.product-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.text-link { margin-top: auto; color: var(--accent); font-size: 12px; font-weight: 750; }
.text-link--muted { color: var(--muted-2); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); text-align: center; box-shadow: var(--shadow-soft); }
.feature-card > span { width: 46px; height: 46px; display: grid; place-items: center; margin: 0 auto 13px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 21px; }
.feature-card:nth-child(2) > span { background: #e7f7ec; color: #1b9b52; }
.feature-card:nth-child(3) > span { background: #eaf2ff; color: #3174df; }
.feature-card:nth-child(4) > span { background: #fff0e5; color: #e27624; }
.feature-card h3 { margin: 0 0 7px; font-size: 16px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.integration-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.mini-dashboard { display: grid; grid-template-columns: 72px 1fr; min-height: 390px; overflow: hidden; border-radius: 20px; background: #f8f9fc; border: 1px solid #e4e6ec; box-shadow: 0 30px 80px rgba(22,22,43,.15); transform: perspective(900px) rotateY(3deg) rotateX(1deg); }
.mini-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 18px 12px; background: #101722; }
.mini-sidebar .brand-mark { width: 28px; height: 28px; margin-bottom: 10px; }
.mini-sidebar span { width: 29px; height: 6px; border-radius: 999px; background: #273242; }
.mini-main { padding: 28px; color: #161821; }
.mini-top { display: flex; justify-content: space-between; align-items: center; }
.mini-top small { color: #777b87; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0; }
.mini-stats div { padding: 14px; border: 1px solid #e8e9ee; border-radius: 10px; background: #fff; }
.mini-stats small, .mini-stats b { display: block; }
.mini-stats small { color: #818490; font-size: 9px; }
.mini-stats b { margin-top: 5px; font-size: 20px; }
.mini-chart { height: 128px; display: flex; align-items: flex-end; gap: 9px; padding: 18px; border: 1px solid #e8e9ee; border-radius: 10px; background: #fff; }
.mini-chart span { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, #7351f9, #9a83ff); }
.mini-list { display: grid; gap: 8px; margin-top: 16px; }
.mini-list span { height: 8px; border-radius: 999px; background: #e8e9ee; }
.mini-list span:nth-child(2) { width: 86%; }.mini-list span:nth-child(3) { width: 73%; }.mini-list span:nth-child(4) { width: 91%; }
.integration-copy { max-width: 530px; }
.ticks { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 26px; color: var(--muted); font-size: 14px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-size: 10px; font-weight: 900; }
.pricing-grid--three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1020px; margin-inline: auto; }
.price-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow-soft); }
.price-card--featured { border-color: #7049f5; box-shadow: 0 18px 48px rgba(101,58,242,.14); }
.price-ribbon { position: absolute; right: 18px; top: -10px; padding: 6px 10px; border-radius: 999px; background: #6b3cf4; color: #fff; font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.price-card__name { font-size: 18px; font-weight: 800; }
.price-card__lead { min-height: 52px; margin: 7px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.price { min-height: 49px; margin: 0 0 16px; }
.price strong { font-size: 29px; letter-spacing: -.05em; }
.price-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.price-list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 12px; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.docs-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.docs-copy { max-width: 460px; }
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.doc-card { padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.doc-card > span { color: var(--accent); font-size: 10px; font-weight: 850; }
.doc-card h3 { margin: 13px 0 7px; font-size: 18px; }
.doc-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.section--cta { padding-top: 35px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 42px 50px; overflow: hidden; border-radius: 20px; background: radial-gradient(circle at 8% 0%, rgba(87,57,235,.34), transparent 38%), linear-gradient(135deg, #0d1321, #080a10 72%); color: #fff; box-shadow: 0 30px 80px rgba(22,22,43,.18); }
.cta-panel h2 { margin: 12px 0 9px; font-size: clamp(31px, 4vw, 43px); letter-spacing: -.05em; }
.cta-panel p { margin: 0; max-width: 710px; color: #aeb5c3; line-height: 1.65; }
.section--blog { padding-bottom: 115px; }
.blog-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.blog-card small { color: var(--accent); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h3 { margin: 12px 0 8px; font-size: 18px; line-height: 1.25; }
.blog-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.site-footer { padding: 70px 0 24px; background: #0d1119; color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }
.site-brand--footer .site-brand__name { color: #fff; }
.site-footer__brand p { max-width: 280px; margin: 15px 0 0; color: #a9afba; font-size: 12px; line-height: 1.6; }
.footer-heading { margin: 3px 0 14px; color: #fff; font-size: 11px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a, .footer-links span { color: #a9afba; font-size: 11px; }
.footer-links a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: #7f8794; font-size: 9px; }

.page-hero { padding: 80px 0 50px; }
.page-hero h1 { margin: 10px 0; font-size: clamp(42px, 6vw, 70px); letter-spacing: -.055em; }
.prose { max-width: 780px; padding-bottom: 90px; font-size: 17px; line-height: 1.7; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--accent); text-decoration: underline; }
.post-list { display: grid; gap: 18px; padding-bottom: 90px; }
.post-card { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.post-card h2 { margin: 8px 0; }
.post-card__meta { color: var(--muted-2); font-size: 11px; }
.empty-state { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    .site-nav__list { gap: 18px; }
    .hero__grid { grid-template-columns: 1fr; gap: 35px; padding-top: 64px; }
    .hero__content { max-width: 720px; }
    .hero-demo { min-height: 490px; max-width: 780px; width: 100%; }
    .dashboard-window { left: 0; right: auto; }
    .booking-card { right: 5%; }
    .product-grid--four, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .integration-grid { gap: 50px; }
}

@media (max-width: 860px) {
    :root { --header-h: 66px; }
    body.admin-bar .site-header { top: 46px; }
    .site-header__inner { gap: 10px; }
    .nav-toggle { display: block; }
    .site-nav { display: none; position: fixed; top: calc(var(--header-h) + 10px); left: 18px; right: 18px; margin: 0; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); box-shadow: var(--shadow); }
    body.admin-bar .site-nav { top: calc(var(--header-h) + 56px); }
    .site-nav.is-open { display: block; }
    .site-nav__list { display: grid; gap: 2px; }
    .site-nav__list a { display: block; padding: 11px 9px; border-radius: 8px; }
    .site-nav__list a:hover { background: var(--surface-2); }
    .site-actions { margin-left: 0; }
    .language-switcher, .account-link { display: none; }
    .hero__grid { min-height: auto; }
    .hero h1 { font-size: clamp(44px, 11vw, 64px); }
    .hero__benefits { gap: 12px 18px; }
    .dashboard-window { width: 95%; }
    .integration-grid, .docs-section { grid-template-columns: 1fr; gap: 42px; }
    .integration-copy { max-width: 650px; }
    .pricing-grid--three { grid-template-columns: 1fr; max-width: 620px; }
    .price-card__lead { min-height: auto; }
    .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .site-footer__grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .header-cta { display: none; }
    .site-brand__name { font-size: 19px; }
    .hero__grid { padding: 48px 0 94px; }
    .hero__lead { font-size: 15px; }
    .hero__actions { align-items: stretch; flex-direction: column; }
    .hero__benefits { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-demo { min-height: 390px; }
    .dashboard-window { height: 335px; border-radius: 14px; }
    .dashboard-body { grid-template-columns: 84px 1fr; }
    .dashboard-sidebar { padding-inline: 7px; }
    .sidebar-item { padding: 8px 6px; font-size: 0; }
    .sidebar-item i { width: 9px; height: 9px; }
    .dashboard-content { padding: 12px; }
    .calendar-grid { height: 210px; }
    .booking-card { width: 162px; right: 0; bottom: -10px; }
    .product-grid--four, .feature-grid, .docs-grid, .blog-preview { grid-template-columns: 1fr; }
    .section { padding: 76px 0; }
    .section-title h2, .integration-copy h2, .docs-copy h2 { font-size: 34px; }
    .mini-dashboard { grid-template-columns: 54px 1fr; min-height: 335px; transform: none; }
    .mini-main { padding: 18px; }
    .mini-stats { grid-template-columns: 1fr 1fr; }
    .mini-stats div:last-child { display: none; }
    .cta-panel { flex-direction: column; align-items: flex-start; padding: 32px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__grid > div:last-child { grid-column: auto; }
    .site-footer__bottom { flex-direction: column; }
}

@media (max-width: 380px) {
    .hero__benefits { grid-template-columns: 1fr; }
    .dashboard-window { width: 100%; }
    .booking-card { display: none; }
}

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