@font-face { font-family: "Onest"; src: url("/static/fonts/Onest-Variable.ttf") format("truetype"); font-style: normal; font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/static/fonts/Manrope-Variable.ttf") format("truetype"); font-style: normal; font-weight: 200 800; font-display: swap; }

:root {
  --primary: #3157d5;
  --primary-hover: #294bc0;
  --primary-active: #213fa7;
  --primary-soft: #eef2ff;
  --bg: #f4f6f9;
  --surface: #ffffff;
  --surface-subtle: #f9fafc;
  --sidebar: #151c2c;
  --sidebar-raised: #1b2437;
  --text: #182033;
  --text-secondary: #536077;
  --text-muted: #778297;
  --border: #e1e5ec;
  --border-strong: #cfd6e2;
  --success: #238354;
  --success-soft: #eaf7f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-1: 0 1px 2px rgba(20, 31, 55, .04), 0 3px 10px rgba(20, 31, 55, .035);
  --shadow-2: 0 12px 32px rgba(20, 31, 55, .10);
  --shadow-3: 0 28px 70px rgba(4, 12, 30, .28);
  --header-height: 76px;
  --container: 1240px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--text); background: var(--bg); font-family: "Onest", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.nav-open, body.viewer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand, .button, summary { font-family: "Manrope", "Onest", ui-sans-serif, sans-serif; }
h1, h2, h3 { color: var(--text); line-height: 1.06; letter-spacing: -.045em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-heading, .faq-copy { scroll-margin-top: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: #fff; background: var(--primary); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.button:focus-visible, .menu-button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(49, 87, 213, .28); outline-offset: 3px; }

/* Header */
.site-header { position: fixed; z-index: 50; top: 0; right: 0; left: 0; height: var(--header-height); color: #fff; background: transparent; border-bottom: 1px solid transparent; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled, body.nav-open .site-header { color: var(--text); background: rgba(255, 255, 255, .94); border-bottom-color: rgba(225, 229, 236, .85); box-shadow: 0 7px 25px rgba(20, 31, 55, .08); backdrop-filter: blur(16px); }
.nav-shell { display: flex; height: 100%; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; color: inherit; font-size: 20px; font-weight: 800; letter-spacing: -.025em; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-name { white-space: nowrap; }
.brand-name b { color: #5685ec; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav > a { position: relative; color: #c8d2e3; font-size: 14px; font-weight: 650; transition: color .18s ease; }
.site-nav > a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; background: var(--primary); border-radius: 2px; opacity: 0; transform: scaleX(.4); transition: opacity .18s ease, transform .18s ease; }
.site-nav > a:hover, .site-nav > a.is-active { color: #fff; }
.site-nav > a:hover::after, .site-nav > a.is-active::after { opacity: 1; transform: scaleX(1); }
.site-header.is-scrolled .site-nav > a, body.nav-open .site-nav > a { color: var(--text-secondary); }
.site-header.is-scrolled .site-nav > a:hover, .site-header.is-scrolled .site-nav > a.is-active, body.nav-open .site-nav > a:hover, body.nav-open .site-nav > a.is-active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 10px; }
.nav-mobile-actions { display: none; }
.site-header:not(.is-scrolled) .button-quiet { color: #d2dbea; }
.site-header:not(.is-scrolled) .button-quiet:hover { color: #fff; background: rgba(255, 255, 255, .08); }
body.nav-open .site-header .button-quiet { color: var(--text-secondary); }
.menu-button { display: none; position: relative; width: 42px; height: 42px; padding: 0; color: inherit; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .24); border-radius: 11px; }
.site-header.is-scrolled .menu-button, body.nav-open .menu-button { color: var(--text); background: var(--surface); border-color: var(--border-strong); }
.menu-button span { position: absolute; left: 11px; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, top .2s ease; }
.menu-button span:first-child { top: 15px; }
.menu-button span:last-child { top: 24px; }
.menu-button.is-open span:first-child { top: 20px; transform: rotate(45deg); }
.menu-button.is-open span:last-child { top: 20px; transform: rotate(-45deg); }

/* Buttons */
.button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 9px; padding: 10px 17px; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 720; line-height: 1.15; transition: transform .18s var(--ease), color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--primary); border-color: var(--primary); box-shadow: 0 8px 20px rgba(49, 87, 213, .22); }
.button-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); box-shadow: 0 10px 24px rgba(49, 87, 213, .28); }
.button-primary:active { background: var(--primary-active); transform: translateY(0); }
.button-secondary { color: var(--primary); background: var(--primary-soft); border-color: #dce4ff; }
.button-secondary:hover { background: #e2e8ff; }
.button-quiet { color: var(--text-secondary); background: transparent; }
.button-quiet:hover { color: var(--primary); background: var(--primary-soft); }
.button-ghost { color: #fff; background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .22); }
.button-ghost:hover { background: rgba(255, 255, 255, .12); }
.button-light { color: var(--primary-active); background: #fff; border-color: #fff; box-shadow: 0 10px 28px rgba(3, 10, 28, .2); }
.button-light:hover { background: #f7f9ff; }
.button-lg { min-height: 52px; padding: 14px 22px; border-radius: 12px; font-size: 15px; }
.button-full { width: 100%; }

/* Hero */
.hero { position: relative; overflow: hidden; color: #fff; background: var(--sidebar); }
.hero::before { position: absolute; inset: 0; content: ""; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000, transparent 88%); }
.hero-glow { position: absolute; width: 820px; height: 820px; right: -250px; top: -360px; pointer-events: none; background: radial-gradient(circle, rgba(49, 87, 213, .42), rgba(49, 87, 213, 0) 68%); }
.hero-grid { position: relative; display: grid; min-height: 720px; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 58px; padding: calc(var(--header-height) + 66px) 0 84px; }
.trial-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px; padding: 7px 10px 7px 7px; color: #c9d6ff; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .11); border-radius: 999px; font-size: 12px; }
.trial-badge span { padding: 5px 9px; color: #fff; background: var(--primary); border-radius: 999px; font-weight: 760; }
.trial-badge small { font-size: 12px; }
.hero h1 { max-width: 650px; margin-bottom: 24px; color: #fff; font-size: clamp(50px, 5.2vw, 76px); font-weight: 790; letter-spacing: -.065em; }
.hero h1 span { color: #7f9df5; }
.hero-lead { max-width: 610px; margin-bottom: 31px; color: #b8c3d6; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; color: #cad3e2; font-size: 12px; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points span { display: grid; width: 19px; height: 19px; place-items: center; color: #72d59a; background: rgba(35, 131, 84, .15); border-radius: 50%; font-size: 11px; }
.hero-screen { position: relative; overflow: hidden; background: #e9edf5; border: 1px solid rgba(255, 255, 255, .18); border-radius: 18px; box-shadow: var(--shadow-3); transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); transition: transform .35s var(--ease), box-shadow .35s ease; }
.hero-screen:hover { transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-4px); box-shadow: 0 34px 90px rgba(4, 12, 30, .38); }
.hero-screen img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.browser-bar { display: flex; height: 34px; align-items: center; gap: 6px; padding: 0 12px; color: #758198; background: #fff; border-bottom: 1px solid var(--border); font-size: 10px; }
.browser-bar i { width: 7px; height: 7px; background: #d8dee8; border-radius: 50%; }
.browser-bar b { margin-left: 7px; font-weight: 560; }
.screen-hint { position: absolute; right: 13px; bottom: 13px; padding: 7px 10px; color: #fff; background: rgba(21, 28, 44, .86); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; font-size: 10px; font-weight: 700; backdrop-filter: blur(8px); }
.trust-strip { color: #cbd3e3; background: var(--sidebar-raised); border-top: 1px solid rgba(255, 255, 255, .07); }
.trust-items { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 18px; overflow: hidden; font-size: 11px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.trust-items i { width: 4px; height: 4px; flex: 0 0 4px; background: #6488f2; border-radius: 50%; }

/* Shared sections */
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items: end; gap: 60px; margin-bottom: 45px; }
.section-heading h2, .workflow-copy h2, .faq-copy h2, .final-cta h2 { max-width: 780px; margin: 0; font-size: clamp(38px, 4.5vw, 60px); font-weight: 760; }
.section-heading > p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.section-heading-center { display: block; max-width: 800px; margin: 0 auto 46px; text-align: center; }
.section-heading-center h2 { margin-inline: auto; }
.section-heading-center > p { max-width: 680px; margin: 19px auto 0; }

/* Screens */
.product-section { background: var(--surface); }
.screen-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-card { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.gallery-card:hover { border-color: #bdc9f7; box-shadow: var(--shadow-2); transform: translateY(-4px); }
.gallery-card-main { grid-column: 1 / -1; }
.gallery-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: top left; background: #edf0f5; }
.gallery-card > span { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 14px; padding: 18px 20px; }
.gallery-card b { font-size: 16px; }
.gallery-card small { grid-column: 1; color: var(--text-muted); font-size: 12px; }
.gallery-card i { grid-column: 2; grid-row: 1 / span 2; color: var(--primary); font-size: 18px; font-style: normal; }

/* Features */
.features-section { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { min-height: 230px; padding: 27px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); transition: border-color .2s ease, transform .25s var(--ease); }
.feature-grid article:hover { border-color: #c5cff1; transform: translateY(-3px); }
.feature-grid article > span { display: inline-flex; align-items: center; min-height: 30px; margin-bottom: 30px; padding: 6px 10px; color: var(--primary); background: var(--primary-soft); border: 1px solid #dfe6ff; border-radius: 999px; font-size: 10px; font-weight: 780; letter-spacing: .035em; }
.feature-grid h3 { margin-bottom: 12px; font-size: 23px; }
.feature-grid p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* Workflow */
.workflow-section { color: #fff; background: var(--sidebar); }
.workflow-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.workflow-copy h2 { margin-bottom: 21px; color: #fff; }
.workflow-copy > p { max-width: 530px; margin-bottom: 28px; color: #aeb9cc; }
.workflow-steps { display: grid; gap: 12px; }
.workflow-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-md); }
.workflow-steps li > span { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--primary); border-radius: 10px; font-size: 13px; font-weight: 800; }
.workflow-steps b { display: block; margin-bottom: 5px; color: #fff; font-size: 17px; }
.workflow-steps p { margin: 0; color: #aeb9cc; font-size: 13px; }

/* Pricing */
.pricing-section { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.plan-card { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 29px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }
.plan-card-featured { color: #fff; background: var(--sidebar); border-color: var(--sidebar); box-shadow: 0 20px 48px rgba(20, 31, 55, .2); }
.plan-popular { position: absolute; top: -13px; left: 50%; padding: 7px 13px; color: #fff; background: var(--primary); border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; white-space: nowrap; transform: translateX(-50%); }
.plan-head > span { color: var(--text-muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-head h3 { margin: 5px 0 7px; font-size: 30px; }
.plan-head p { min-height: 25px; margin: 0; color: var(--text-secondary); font-size: 13px; }
.plan-card-featured .plan-head > span, .plan-card-featured .plan-head p { color: #9eacc1; }
.plan-card-featured h3 { color: #fff; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 28px 0 24px; }
.plan-price strong { font-size: clamp(31px, 3vw, 43px); line-height: 1; letter-spacing: -.055em; white-space: nowrap; }
.plan-price span { color: var(--text-muted); font-size: 12px; font-weight: 650; }
.plan-card-featured .plan-price span { color: #9eacc1; }
.plan-card ul { display: grid; gap: 12px; margin-bottom: 27px; padding-top: 22px; border-top: 1px solid var(--border); }
.plan-card-featured ul { border-color: rgba(255,255,255,.12); }
.plan-card li { display: flex; gap: 9px; color: var(--text-secondary); font-size: 13px; }
.plan-card-featured li { color: #cbd3e3; }
.plan-card li span { color: var(--success); font-weight: 800; }
.plan-card .button { margin-top: auto; }
.pricing-note { margin: 26px auto 0; color: var(--text-muted); font-size: 12px; text-align: center; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 100px; }
.faq-copy { position: sticky; top: calc(var(--header-height) + 30px); align-self: start; }
.faq-copy h2 { margin-bottom: 18px; }
.faq-copy p { color: var(--text-secondary); }
.faq-list details { border-bottom: 1px solid var(--border-strong); }
.faq-list summary { position: relative; padding: 23px 44px 23px 0; color: var(--text); font-size: 17px; font-weight: 720; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 31px; right: 5px; width: 15px; height: 2px; content: ""; background: var(--primary); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; margin: -4px 0 23px; color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* Media viewer */
.media-viewer { position: fixed; z-index: 100; inset: 0; display: grid; padding: 24px; place-items: center; opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.media-viewer.is-open { opacity: 1; visibility: visible; }
.media-viewer__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(7, 13, 25, .82); border: 0; backdrop-filter: blur(7px); }
.media-viewer__dialog { position: relative; display: grid; width: min(1180px, 100%); max-height: calc(100dvh - 48px); overflow: hidden; background: #fff; border: 1px solid rgba(255, 255, 255, .18); border-radius: 18px; box-shadow: 0 34px 100px rgba(0, 0, 0, .42); transform: translateY(12px) scale(.985); transition: transform .24s var(--ease); }
.media-viewer.is-open .media-viewer__dialog { transform: translateY(0) scale(1); }
.media-viewer__toolbar, .media-viewer__footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 18px; }
.media-viewer__toolbar > div { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.media-viewer__toolbar strong { overflow: hidden; font-family: "Manrope", sans-serif; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.media-viewer__toolbar span { color: var(--text-muted); font-size: 11px; white-space: nowrap; }
.media-viewer__close { display: grid; width: 36px; height: 36px; flex: 0 0 36px; padding: 0; place-items: center; color: var(--text-secondary); background: var(--surface-subtle); border: 1px solid var(--border); border-radius: 10px; font-size: 22px; line-height: 1; }
.media-viewer__close:hover { color: var(--text); background: var(--primary-soft); border-color: #cbd6fb; }
.media-viewer__stage { display: grid; min-height: 240px; overflow: auto; place-items: center; background: #0e1524; }
.media-viewer__stage img { width: 100%; max-height: calc(100dvh - 190px); object-fit: contain; }
.media-viewer__footer { min-height: 66px; }
.media-viewer__footer p { max-width: 720px; margin: 0; color: var(--text-secondary); font-size: 12px; }
.media-viewer__controls { display: flex; flex: 0 0 auto; gap: 8px; }
.media-viewer__controls button { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; padding: 8px 12px; color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border-strong); border-radius: 9px; font-size: 12px; font-weight: 700; }
.media-viewer__controls button:hover { color: var(--primary); background: var(--primary-soft); border-color: #cbd6fb; }

/* CTA and footer */
.final-cta { padding: 80px 0; color: #fff; background: var(--primary); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta h2 { max-width: 800px; margin-bottom: 10px; color: #fff; }
.final-cta p { margin: 0; color: #dfe6ff; }
.final-cta .button { flex: 0 0 auto; }
.site-footer { color: #aeb9cc; background: #111827; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .85fr 1.3fr; gap: 48px; padding: 55px 0 43px; }
.footer-brand { margin-bottom: 16px; color: #fff; }
.footer-about p { max-width: 310px; margin: 0; color: #8f9bb0; font-size: 13px; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column b { margin-bottom: 5px; color: #fff; font-size: 13px; }
.footer-column a { color: #98a5ba; font-size: 12px; transition: color .18s ease; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); color: #77849a; font-size: 11px; }

/* Legal and 404 */
.legal-page { background: var(--bg); }
.site-header-plain { position: relative; color: var(--text); background: rgba(255, 255, 255, .96); border-bottom-color: var(--border); }
.site-header-plain .site-nav > a { color: var(--text-secondary); }
.site-header-plain.site-header .button-quiet { color: var(--text-secondary); }
.site-header-plain.site-header .button-quiet:hover { color: var(--primary); background: var(--primary-soft); }
.legal-main { padding: 58px 0 90px; }
.legal-content { max-width: 860px; padding: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-1); }
.legal-content h1 { margin: 0 0 12px; font-size: clamp(40px, 6vw, 64px); }
.legal-content h2 { margin: 37px 0 10px; font-size: 25px; }
.legal-content p { color: var(--text-secondary); }
.legal-date { color: var(--text-muted) !important; font-size: 13px; }
.legal-contact-card { display: grid; gap: 7px; margin: 28px 0; padding: 20px; background: var(--primary-soft); border: 1px solid #dbe4ff; border-radius: var(--radius-md); }
.legal-contact-card span { color: var(--text-secondary); font-size: 12px; }
.legal-contact-card a { color: var(--primary); text-decoration: underline; }
.legal-documents { display: grid; gap: 9px; margin: 24px 0 34px; }
.legal-documents a { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px 16px; color: var(--text); background: var(--surface-subtle); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 700; }
.legal-documents a:hover { color: var(--primary); border-color: #bdc9f7; }
.not-found-page { background: var(--sidebar); }
.not-found { position: relative; display: grid; min-height: 100dvh; place-items: center; overflow: hidden; padding: 30px; }
.not-found-content { position: relative; z-index: 1; max-width: 620px; color: #fff; text-align: center; }
.not-found-content .brand { justify-content: center; margin-bottom: 35px; color: #fff; }
.error-code { display: block; color: #7f9df5; font-size: clamp(90px, 20vw, 170px); font-weight: 850; line-height: .8; letter-spacing: -.09em; }
.not-found h1 { margin: 35px 0 12px; color: #fff; font-size: clamp(38px, 7vw, 62px); }
.not-found p { margin-bottom: 26px; color: #aeb9cc; }
.not-found-orb { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(49,87,213,.38), transparent 68%); }

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 55px; padding: calc(var(--header-height) + 58px) 0 75px; }
  .hero-copy { max-width: 780px; }
  .hero-screen { max-width: 900px; transform: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .workflow-layout { gap: 55px; }
  .footer-main { grid-template-columns: 1.2fr .7fr .9fr 1.2fr; gap: 30px; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 82px 0; }
  .site-nav { position: fixed; z-index: 49; top: calc(var(--header-height) + 8px); right: 16px; left: 16px; display: grid; gap: 0; max-height: calc(100dvh - var(--header-height) - 24px); margin: 0; padding: 10px 18px 18px; overflow-y: auto; color: var(--text); background: rgba(255,255,255,.98); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-2); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, visibility .2s ease, transform .2s var(--ease); }
  body.nav-open::before { position: fixed; z-index: 48; inset: var(--header-height) 0 0; content: ""; background: rgba(10, 17, 31, .46); backdrop-filter: blur(2px); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a { padding: 14px 2px; border-bottom: 1px solid var(--border); font-size: 15px; }
  .site-nav > a::after { display: none; }
  .nav-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 16px; }
  .nav-actions .button { display: none; }
  .menu-button { display: block; }
  .section-heading { display: block; }
  .section-heading > p { max-width: 650px; margin-top: 18px; }
  .workflow-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .workflow-copy { max-width: 740px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .plan-card-featured { order: -1; margin-top: 10px; }
  .faq-copy { position: static; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 66px 0; }
  .brand { gap: 7px; font-size: 18px; }
  .brand img { width: 34px; height: 34px; }
  .nav-shell { gap: 12px; }
  .site-nav { right: 12px; left: 12px; }
  .nav-mobile-actions { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; padding: calc(var(--header-height) + 38px) 0 59px; }
  .trial-badge { gap: 8px; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { margin-bottom: 26px; font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 9px; margin-top: 23px; }
  .hero-screen { border-radius: 12px; }
  .browser-bar { height: 28px; }
  .screen-hint { display: none; }
  .trust-items { min-height: 52px; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .trust-items::-webkit-scrollbar { display: none; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .workflow-copy h2, .faq-copy h2, .final-cta h2 { font-size: clamp(34px, 10vw, 46px); }
  .section-heading > p { font-size: 14px; }
  .screen-gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery-card-main { grid-column: auto; }
  .gallery-card { border-radius: 12px; }
  .gallery-card > span { padding: 14px; }
  .gallery-card small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .feature-grid { grid-template-columns: 1fr; gap: 11px; }
  .feature-grid article { min-height: 0; padding: 22px; }
  .feature-grid article > span { margin-bottom: 20px; }
  .workflow-layout { gap: 33px; }
  .workflow-steps li { grid-template-columns: 39px 1fr; gap: 12px; padding: 17px; }
  .workflow-steps li > span { width: 34px; height: 34px; }
  .plan-card { padding: 24px; }
  .plan-price strong { font-size: 36px; }
  .faq-list summary { padding: 20px 38px 20px 0; font-size: 15px; }
  .faq-list summary span::before, .faq-list summary span::after { top: 29px; }
  .final-cta { padding: 60px 0; }
  .final-cta-inner { align-items: stretch; flex-direction: column; gap: 25px; }
  .media-viewer { padding: 10px; }
  .media-viewer__dialog { max-height: calc(100dvh - 20px); border-radius: 13px; }
  .media-viewer__toolbar, .media-viewer__footer { padding: 11px 12px; }
  .media-viewer__stage img { max-height: calc(100dvh - 205px); }
  .media-viewer__footer { align-items: stretch; flex-direction: column; gap: 10px; }
  .media-viewer__controls { display: grid; grid-template-columns: 1fr 1fr; }
  .media-viewer__controls button { justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding: 42px 0 34px; }
  .footer-about, .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .legal-main { padding: 28px 0 55px; }
  .legal-content { padding: 28px 20px; border-radius: 17px; }
  .legal-content h1 { font-size: 40px; }
  .site-header-plain .nav-actions .button-primary { display: inline-flex; }
  .site-header-plain .nav-actions .button-quiet { display: none; }
}

@media (max-width: 390px) {
  .brand-name { font-size: 16px; }
  .hero h1 { font-size: 41px; }
  .plan-price strong { font-size: 32px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-column, .footer-column:last-child { grid-column: auto; }
}

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