@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Italic-Variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #0a0a0a;
  --paper: #f5f5f3;
  --muted: #9a9a9a;
  --line: #242424;
  --panel: #151515;
  --section-soft: #0b0b0b;
  --section-raised: #141414;
  --blue: #326df4;
  --shell: min(1080px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; scrollbar-gutter: stable; scrollbar-width: thin; scrollbar-color: #292929 #000; }
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: #000; }
html::-webkit-scrollbar-thumb { background: #292929; border: 2px solid #000; border-radius: 999px; }
html::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }
body { margin: 0; background: var(--black); color: #fff; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-optical-sizing: auto; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.nav-wrap { position: fixed; top: 0; left: 0; right: 0; height: 84px; background: #000; z-index: 100; transition: transform .35s ease; }
.nav-wrap.nav-hidden { transform: translateY(-100%); }
.nav { height: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.nav-actions { grid-column: 2; }
main { padding-top: 84px; }
.logo { width: 27px; height: 27px; border-radius: 6px; overflow: hidden; display: block; }
.logo img { width: 100%; height: 100%; object-fit: cover; }
.logo.wordmark { width: auto; height: auto; border-radius: 0; overflow: visible; display: inline-flex; align-items: baseline; gap: 1px; color: #fff; }
.logo-nman { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: -.3px; }
.logo-creative { color: #fff; font-size: 15px; font-weight: 400; letter-spacing: -.3px; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 6px; font-size: 15px; }
.nav-login { margin-right: 7px; color: #929292; font-size: 14px; transition: color .2s ease; }
.nav-login:hover { color: #fff; }
.nav-login.account-nav-button {
  min-height: 36px;
  margin-right: 4px;
  padding: 0 14px;
  border: 1px solid #2c303a;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #15161a;
  color: #d8d8d8;
  font-weight: 560;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.nav-login.account-nav-button:hover {
  border-color: #3b4250;
  background: #20222a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
}
.hamburger { width: 32px; height: 38px; padding: 0; border: 0; background: transparent; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 6px; cursor: pointer; }
.hamburger span { width: 21px; height: 1.5px; display: block; background: #fff; transition: transform .28s cubic-bezier(.2,.8,.2,1), width .2s ease; }
.hamburger:hover span { width: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
.menu-scrim { position: fixed; inset: 0; z-index: 98; background: rgba(0,0,0,.55); backdrop-filter: blur(5px); opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.menu-scrim.open { opacity: 1; pointer-events: auto; }
.menu-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 99; width: min(390px, 88vw); padding: 105px 38px 34px; background: #050505; border-left: 1px solid #242424; display: flex; flex-direction: column; overflow-y: auto; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s; }
.menu-panel.open { opacity: 1; visibility: visible; pointer-events: auto; }
.menu-items { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.menu-items a { min-height: 78px; border-bottom: 1px solid #242424; display: flex; align-items: center; color: #fff; font-size: 31px; line-height: 1; letter-spacing: -.045em; font-weight: 560; transition: color .2s ease, padding-left .2s ease; }
.menu-items a:first-child { border-top: 1px solid #242424; }
.menu-items a:hover { color: #aaa; padding-left: 5px; }
.menu-items a.menu-signout { color: #919191; }
.menu-items a.menu-signout:hover { color: #ffc2c2; }
body.menu-open { overflow: hidden; }
.pill { min-height: 39px; padding: 0 17px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; font-size: 14px; letter-spacing: -.01em; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.pill:hover { transform: translateY(-2px); }
.pill-small { min-height: 36px; padding: 0 16px; font-size: 13px; }
.pill-light { color: #fff; background: var(--blue); box-shadow: 0 8px 24px rgba(50,109,244,.18); }
.pill-light:hover { background: #477df5; box-shadow: 0 11px 30px rgba(50,109,244,.28); }
.pill-dark { background: #1c1c1c; color: #fff; }
.pill-dark:hover { background: #292929; }

.hero { min-height: calc(100svh - 108px); padding: 110px 0 76px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero h1 { margin: 0; max-width: 1080px; font-size: clamp(66px, 6.65vw, 104px); line-height: .97; letter-spacing: -.066em; font-weight: 650; text-wrap: balance; }
.hero > p { max-width: 720px; margin: 37px auto 33px; color: #a1a1a1; font-size: clamp(19px, 1.4vw, 22px); line-height: 1.45; letter-spacing: -.025em; }
.hero-actions { display: flex; gap: 10px; justify-content: center; }
.hero-actions .pill { width: 116px; }

.showcase { position: relative; padding-bottom: 72px; }
.showcase-video { width: 100%; border-radius: 14px; overflow: hidden; background: #111; line-height: 0; }
.showcase video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; object-fit: cover; background: #090909; }
.site-footer { min-height: 0; padding: 64px 0 30px; border-top: 1px solid #242424; color: #737373; font-size: 13px; }
.footer-main { width: min(960px, 100%); margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 64px; }
.footer-brand { display: inline-flex; align-items: center; color: #fff; font-weight: 600; }
.footer-wordmark { gap: 1px; }
.footer-wordmark .logo-nman, .footer-wordmark .logo-creative { font-size: 17px; }
.footer-links { display: flex; align-items: center; justify-content: flex-end; gap: 29px; flex-wrap: wrap; padding-top: 2px; color: #858585; font-size: 14px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { width: min(960px, 100%); margin: 72px auto 0; padding-top: 22px; border-top: 1px solid #1d1d1d; color: #757575; font-size: 11px; letter-spacing: .02em; }
.legal-page { padding: 78px 0 88px; }
.legal-page-heading { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.legal-page-heading h1 { margin: 0; font-size: clamp(52px, 6vw, 82px); line-height: .98; letter-spacing: -.06em; font-weight: 640; }
.legal-page-heading p { margin: 20px 0 0; color: #8f8f8f; font-size: 15px; }
.legal-document { max-width: 820px; margin: 0 auto; padding-top: 18px; border-top: 1px solid #242424; }
.legal-document h2 { margin: 42px 0 12px; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.08; letter-spacing: -.04em; font-weight: 620; }
.legal-document h2:first-child { margin-top: 0; }
.legal-document p { margin: 0 0 15px; color: #9a9a9a; font-size: 16px; line-height: 1.72; }
.legal-document a { color: #9bb5ff; transition: color .2s ease; }
.legal-document a:hover { color: #fff; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* Motion system */
.motion-ready .nav-wrap { opacity: 0; transform: translateY(-12px); }
.motion-ready.page-loaded .nav-wrap { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1); }
.motion-ready.page-loaded .nav-wrap.nav-hidden { transform: translateY(-100%); }

.not-found-main {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
  padding: 160px 0 90px;
}
.not-found-page {
  display: grid;
  justify-items: start;
  gap: 20px;
}
.not-found-code {
  margin: 0;
  color: #8e8e8e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.not-found-page h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 10vw, 118px);
  line-height: .92;
  letter-spacing: 0;
}
.not-found-page > p:not(.not-found-code):not(.not-found-support) {
  max-width: 590px;
  margin: 0;
  color: #aaa;
  font-size: 18px;
  line-height: 1.55;
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.not-found-support {
  margin: 6px 0 0;
  color: #777;
  font-size: 14px;
}
.not-found-support a { color: #bbb; }
.not-found-support a:hover { color: #fff; }

.docs-main {
  padding-bottom: 88px;
}
.docs-hero {
  padding: 54px 0 28px;
}
.docs-eyebrow {
  margin: 0 0 18px;
  color: #8d8d8d;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.docs-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 640;
}
.docs-hero p:not(.docs-eyebrow) {
  max-width: 680px;
  margin: 25px 0 0;
  color: #999;
  font-size: 18px;
  line-height: 1.58;
}
.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 190px;
  gap: 44px;
  align-items: start;
}
.docs-sidebar,
.docs-toc {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 136px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #292929 transparent;
}
.docs-sidebar p,
.docs-toc p {
  margin: 0 0 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .02em;
}
.docs-sidebar nav,
.docs-toc nav,
.docs-mobile-menu nav {
  display: grid;
  gap: 4px;
}
.docs-sidebar a,
.docs-toc a,
.docs-mobile-menu a {
  color: #8a8a8a;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.docs-sidebar a {
  padding: 9px 10px;
  font-size: 14px;
}
.docs-toc a {
  padding: 7px 8px;
  font-size: 13px;
  line-height: 1.35;
}
.docs-sidebar a:hover,
.docs-toc a:hover,
.docs-mobile-menu a:hover {
  color: #fff;
  background: #121212;
  padding-left: 13px;
}
.docs-sidebar a.active,
.docs-mobile-menu a.active {
  color: #fff;
  background: #151515;
}
.docs-mobile-menu {
  display: none;
}
.docs-content {
  min-width: 0;
  padding-bottom: 24px;
  transition: opacity .18s ease;
}
.docs-content.is-loading {
  opacity: .45;
  pointer-events: none;
}
.docs-section {
  scroll-margin-top: 112px;
  padding: 0 0 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid #242424;
}
.docs-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.docs-section h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 630;
}
.docs-section h3 {
  margin: 0 0 9px;
  color: #f4f4f4;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 610;
}
.docs-section p,
.docs-section li {
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1.72;
}
.docs-section p {
  margin: 0 0 17px;
}
.docs-section a {
  color: #9bb5ff;
  transition: color .2s ease;
}
.docs-section a:hover {
  color: #fff;
}
.docs-section ul,
.docs-section ol {
  margin: 18px 0 0;
  padding-left: 22px;
}
.docs-section li + li {
  margin-top: 8px;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.docs-grid > div,
.docs-callout {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #0a0a0a;
}
.docs-grid > div {
  padding: 21px;
}
.docs-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.62;
}
.docs-callout {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 20px 22px;
  border-color: #354361;
  background: linear-gradient(145deg, #14161b 0%, #0c0d10 100%);
}
.docs-callout strong {
  color: #fff;
  font-size: 14px;
}
.docs-callout span {
  color: #9d9d9d;
  font-size: 15px;
  line-height: 1.62;
}
.docs-image {
  margin: 22px 0 24px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #0a0a0a;
  overflow: hidden;
}
.docs-image-compact {
  max-width: 578px;
}
.docs-image-small {
  max-width: 240px;
}
.docs-image img {
  display: block;
  width: 100%;
  height: auto;
}
.docs-image:not(.docs-image-compact) img {
  cursor: zoom-in;
}
.docs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 48px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s;
}
.docs-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.docs-lightbox img {
  display: block;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 140px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.docs-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  background: #0a0a0a;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.docs-lightbox-close:hover {
  background: #1a1a1a;
}
.docs-content code {
  padding: 2px 6px;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  background: #101010;
  color: #d9e2ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .92em;
}
.docs-content pre {
  overflow-x: auto;
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #080808;
}
.docs-content pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.65;
}
.docs-faq {
  display: grid;
  gap: 10px;
}
.docs-faq h3 {
  margin-top: 18px;
}
.docs-faq h3:first-child {
  margin-top: 0;
}
.docs-toc-empty {
  display: block;
  padding: 7px 8px;
  color: #686868;
  font-size: 13px;
  line-height: 1.4;
}
.docs-error {
  display: grid;
  justify-items: start;
}
.docs-error .pill {
  margin-top: 8px;
}
.changelog-main {
  padding-bottom: 88px;
}
.changelog-list {
  display: grid;
  gap: 18px;
}
.changelog-entry,
.changelog-empty {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #0a0a0a;
  overflow: hidden;
}
.changelog-empty {
  padding: 28px;
}
.changelog-entry summary {
  min-height: 96px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.changelog-entry summary::-webkit-details-marker {
  display: none;
}
.changelog-entry summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #8d8d8d;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  transition: color .2s ease, transform .2s ease;
}
.changelog-entry[open] summary::after {
  content: "-";
}
.changelog-entry summary:hover::after {
  color: #fff;
}
.changelog-entry summary span {
  display: block;
  color: #858585;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.changelog-entry summary strong,
.changelog-empty h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 630;
}
.release-notes-content {
  padding: 0 28px 28px;
}
.changelog-empty p,
.release-notes-content p,
.release-notes-content li {
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1.72;
}
.changelog-empty p {
  margin: 13px 0 0;
}
.release-notes-content p {
  margin: 0 0 15px;
}
.release-notes-content h1,
.release-notes-content h2,
.release-notes-content h3,
.release-notes-content h4,
.release-notes-content h5,
.release-notes-content h6 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 700;
}
.release-notes-content p:last-child,
.release-notes-content ul:last-child,
.release-notes-content ol:last-child {
  margin-bottom: 0;
}
.release-notes-content ul,
.release-notes-content ol {
  margin: 0 0 17px;
  padding-left: 23px;
}
.release-notes-content li + li {
  margin-top: 7px;
}
.release-notes-content strong {
  color: #fff;
  font-weight: 650;
}
.release-notes-content code {
  padding: 2px 6px;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  background: #101010;
  color: #d9e2ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .92em;
}
.release-notes-content pre {
  margin: 0 0 15px;
  padding: 13px 14px;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  background: #101010;
  color: #d9e2ff;
  overflow-x: auto;
}
.release-notes-content pre code {
  padding: 0;
  border: 0;
  background: transparent;
}
.release-notes-content a {
  color: #9bb5ff;
}
.release-notes-content a:hover {
  color: #fff;
}
.tutorials-main { padding-bottom: 88px; }
.tutorials-hero { padding: 54px 0 28px; }
.tutorials-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 640;
}
.tutorials-hero p:not(.docs-eyebrow) {
  max-width: 700px;
  margin: 25px 0 0;
  color: #999;
  font-size: 18px;
  line-height: 1.58;
}
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.tutorial-card {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #0a0a0a;
  overflow: hidden;
}
.tutorial-copy { padding: 22px 22px 18px; }
.tutorial-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 620;
}
.tutorial-video {
  aspect-ratio: 16 / 9;
  border-top: 1px solid #242424;
  background: #050505;
}
.tutorial-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.motion-ready .hero h1,
.motion-ready .hero > p,
.motion-ready .hero-actions { opacity: 0; transform: translateY(28px); }
.motion-ready.page-loaded .hero h1,
.motion-ready.page-loaded .hero > p,
.motion-ready.page-loaded .hero-actions { opacity: 1; transform: none; transition: opacity .72s ease, transform .78s cubic-bezier(.16,1,.3,1); }
.motion-ready.page-loaded .hero h1 { transition-delay: .08s; }
.motion-ready.page-loaded .hero > p { transition-delay: .18s; }
.motion-ready.page-loaded .hero-actions { transition-delay: .28s; }

.menu-items a { opacity: 0; transform: translateX(14px); transition: opacity .34s ease, transform .42s cubic-bezier(.16,1,.3,1), color .2s ease, padding-left .2s ease; }
.menu-panel.open .menu-items a { opacity: 1; transform: none; }
.menu-panel.open .menu-items a:nth-child(1) { transition-delay: .05s; }
.menu-panel.open .menu-items a:nth-child(2) { transition-delay: .08s; }
.menu-panel.open .menu-items a:nth-child(3) { transition-delay: .11s; }
.menu-panel.open .menu-items a:nth-child(4) { transition-delay: .14s; }
.menu-panel.open .menu-items a:nth-child(5) { transition-delay: .17s; }
.menu-panel.open .menu-items a:nth-child(6) { transition-delay: .20s; }
.menu-panel.open .menu-items a:nth-child(7) { transition-delay: .23s; }
.menu-panel.open .menu-items a:nth-child(8) { transition-delay: .26s; }
.menu-panel.open .menu-items a:nth-child(9) { transition-delay: .29s; }

.compatibility.reveal .engine-row > div { opacity: 0; transform: translateY(14px) scale(.97); transition: opacity .56s ease, transform .62s cubic-bezier(.16,1,.3,1); }
.compatibility.visible .engine-row > div { opacity: 1; transform: none; }
.compatibility.visible .engine-row > div:nth-child(1) { transition-delay: .08s; }
.compatibility.visible .engine-row > div:nth-child(2) { transition-delay: .14s; }
.compatibility.visible .engine-row > div:nth-child(3) { transition-delay: .20s; }
.compatibility.visible .engine-row > div:nth-child(4) { transition-delay: .26s; }

.selling-point.reveal { opacity: 1; transform: none; transition: none; }
.selling-point.reveal .point-copy,
.selling-point.reveal .point-media { opacity: 0; transition: opacity .7s ease, transform .82s cubic-bezier(.16,1,.3,1); }
.selling-point.reveal .point-copy { transform: translateY(24px); }
.selling-point.reveal .point-media { transform: translateY(28px) scale(.985); }
.selling-point.reveal.media-left .point-media { transform: translateX(-28px) scale(.985); }
.selling-point.reveal.media-right .point-media { transform: translateX(28px) scale(.985); }
.selling-point.visible .point-copy,
.selling-point.visible .point-media { opacity: 1; transform: none; }
.selling-point.visible .point-media { transition-delay: .12s; }

.comparison-card { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .72s cubic-bezier(.16,1,.3,1), border-color .25s ease, box-shadow .25s ease; }
.comparison-section.visible .comparison-card { opacity: 1; transform: none; }
.comparison-section.visible .comparison-card:nth-child(2) { transition-delay: .1s; }

.download-section.reveal,
.pricing-section.reveal,
.faq-section.reveal { opacity: 1; transform: none; transition: none; }
.download-section.reveal > *,
.pricing-section.reveal > *,
.faq-section.reveal > * { opacity: 0; transform: translateY(24px); transition: opacity .68s ease, transform .76s cubic-bezier(.16,1,.3,1); }
.pricing-section.reveal > .price-card { transition: opacity .68s ease, transform .76s cubic-bezier(.16,1,.3,1), border-color .25s ease, box-shadow .25s ease; }
.download-section.visible > *,
.pricing-section.visible > *,
.faq-section.visible > * { opacity: 1; transform: none; }
.download-section.visible > *:nth-child(2),
.pricing-section.visible > *:nth-child(2),
.faq-section.visible > *:nth-child(2) { transition-delay: .12s; }

@keyframes autovat-float {
  0%, 100% { transform: translateY(0) rotateX(57deg) rotateZ(-31deg); }
  50% { transform: translateY(-7px) rotateX(57deg) rotateZ(-29deg); }
}
.download-art img { animation: autovat-float 6s ease-in-out infinite; }

@media (hover: hover) and (pointer: fine) {
  .point-media img,
  .showcase video { transition: transform .65s cubic-bezier(.16,1,.3,1); }
  .point-media:hover img { transform: scale(1.018); }
  .showcase-video:hover video { transform: scale(1.008); }
  .comparison-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,.22); }
  .engine-row > div:hover img { transform: translateY(-3px) scale(1.04); }
  .engine-row img { transition: transform .3s cubic-bezier(.16,1,.3,1); }
}

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 48px); }
  .nav-wrap { height:72px; }.nav { grid-template-columns:1fr auto; }.nav-actions{grid-column:2}.pill-small{min-height:38px;font-size:13px;padding:0 16px}main{padding-top:72px}
  .hero { min-height: calc(100svh - 92px); padding: 115px 0 65px; }.hero h1{font-size:clamp(55px,14vw,78px)}.hero>p{font-size:18px;margin-top:32px;max-width:600px}
  .showcase video{min-height:0}
  .site-footer{padding-top:56px}.footer-main{flex-direction:column;gap:38px}.footer-links{justify-content:flex-start;padding-top:0}.footer-bottom{margin-top:54px}
  .docs-hero { padding: 40px 0 26px; }
  .tutorials-hero { padding: 40px 0 26px; }
  .docs-layout { display: block; }
  .docs-sidebar, .docs-toc { display: none; }
  .docs-mobile-menu {
    display: block;
    margin-bottom: 34px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    background: #090909;
  }
  .docs-mobile-menu summary {
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 700;
  }
  .docs-mobile-menu summary::-webkit-details-marker { display: none; }
  .docs-mobile-menu summary::after {
    content: "+";
    color: #8d8d8d;
    font-size: 20px;
    font-weight: 400;
  }
  .docs-mobile-menu[open] summary::after { content: "-"; }
  .docs-mobile-menu nav {
    padding: 0 10px 12px;
  }
  .docs-mobile-menu a {
    padding: 10px 9px;
    font-size: 14px;
  }
  .docs-section { scroll-margin-top: 90px; }
  .docs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero { min-height: calc(100svh - 84px); padding-top: 105px; }.hero-actions{flex-wrap:wrap}
  .footer-links{gap:17px 23px}
  .docs-hero h1 { font-size: clamp(42px, 12vw, 54px); }
  .tutorials-hero h1 { font-size: clamp(42px, 12vw, 54px); }
  .docs-hero p:not(.docs-eyebrow) { font-size: 16px; }
  .tutorials-hero p:not(.docs-eyebrow) { font-size: 16px; }
  .tutorial-grid { grid-template-columns: 1fr; gap: 18px; }
  .tutorial-copy { padding: 21px 20px 18px; }
  .docs-section { padding-bottom: 46px; margin-bottom: 46px; }
  .docs-section h2 { font-size: 32px; }
  .docs-grid > div, .docs-callout { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) { html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none} }

/* Streamlined product page */
#features, #download, #pricing, #engines, #faq { scroll-margin-top: 28px; }
.hero { min-height: calc(100svh - 245px); padding-top: 61px; padding-bottom: 61px; }
.hero h1 { max-width: 980px; font-size: clamp(64px, 6vw, 94px); }
.hero > p { margin-top: 30px; margin-bottom: 27px; }
.showcase-video { position: relative; border: 0; box-shadow: none; }

.selling-points { padding: 0; }
.selling-intro { max-width: 720px; margin: 0 auto; padding: 96px 0; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.selling-intro h2 { margin: 0 0 22px; font-size: clamp(44px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; font-weight: 630; }
.selling-intro p { margin: 0; color: #969696; font-size: 18px; line-height: 1.55; }
.selling-point { min-height: 0; margin: 0; padding: 84px 0; border: 0; border-radius: 0; overflow: hidden; color: #fff; position: relative; clip-path: inset(0 -100vmax); }
.point-light { background: var(--section-soft); box-shadow: 0 0 0 100vmax var(--section-soft); }
.point-dark { background: var(--section-raised); box-shadow: 0 0 0 100vmax var(--section-raised); }
.point-copy { max-width: 720px; }
.point-copy h3 { margin: 0 0 18px; max-width: 840px; font-size: clamp(38px, 4.3vw, 57px); line-height: 1.02; letter-spacing: -.052em; font-weight: 620; }
.point-copy p { max-width: 660px; margin: 0; color: #858585; font-size: 17px; line-height: 1.58; }
.point-media { height: 470px; margin-top: 48px; overflow: hidden; border-radius: 14px; background: transparent; box-shadow: none; }
.point-media img { display: block; width: 100%; height: 100%; border-radius: 14px; object-fit: cover; object-position: center; }
.point-media.contain { display: flex; align-items: center; justify-content: center; }
.point-media.contain img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.feature-split { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); grid-template-areas: "copy media"; gap: 64px; align-items: center; }
.feature-split.media-left { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); grid-template-areas: "media copy"; }
.feature-split .point-copy { grid-area: copy; max-width: 470px; }
.feature-split .point-copy h3 { font-size: clamp(38px, 4.2vw, 53px); }
.feature-split .point-copy p { font-size: 16px; }
.feature-split .point-media { grid-area: media; width: 100%; height: 390px; margin-top: 0; }

.comparison-section { padding: 104px 0; }
.comparison-intro { max-width: 780px; margin: 0 auto 70px; text-align: center; }
.comparison-intro h2 { margin: 0; font-size: clamp(44px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; font-weight: 630; }
.comparison-cards { width: min(960px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.comparison-card { padding: 36px; border: 1px solid #252525; border-radius: 14px; background: #0a0a0a; position: relative; overflow: hidden; }
.comparison-card h3 { margin: 0 0 10px; font-size: 27px; line-height: 1.1; letter-spacing: -.04em; font-weight: 610; }
.comparison-card > p { min-height: 51px; margin: 0; color: #7f7f7f; font-size: 15px; line-height: 1.55; }
.comparison-card ul { list-style: none; padding: 26px 0 0; margin: 28px 0 0; border-top: 1px solid #292929; }
.comparison-card li { position: relative; padding: 9px 0 9px 25px; color: #aaa; font-size: 15px; line-height: 1.4; }
.comparison-card li::before { content: "\2713"; position: absolute; left: 0; top: 9px; color: #777; font-weight: 700; }
.comparison-card li.manual { color: #757575; }
.comparison-card li.manual::before { content: "\2212"; color: #757575; }
.comparison-card-autovat { border-color: #354361; background: linear-gradient(145deg, #17191d 0%, #101113 100%); box-shadow: 0 28px 80px rgba(0,0,0,.48), 0 0 55px rgba(50,109,244,.08); }
.comparison-card-autovat::before, .price-card::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 2px; background: linear-gradient(90deg, transparent, #326df4 25%, #78a2ff 75%, transparent); }
.comparison-card-autovat h3 { color: #fff; }
.comparison-card-autovat li::before { color: #5f8eff; }
.comparison-card-autovat .comparison-primary { color: #fff; font-weight: 560; }

.download-section { min-height: 0; margin-top: 0; padding: 96px 0; border: 0; border-radius: 0; background: var(--section-soft); box-shadow: 0 0 0 100vmax var(--section-soft); clip-path: inset(0 -100vmax); display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 64px; overflow: hidden; }
.download-copy h2 { margin: 0 0 19px; max-width: 620px; font-size: clamp(42px, 5vw, 62px); line-height: 1.02; letter-spacing: -.055em; font-weight: 620; }
.download-copy > p { max-width: 550px; margin: 0; color: #909090; font-size: 17px; line-height: 1.58; }
.download-actions { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.download-art { display: grid; place-items: center; position: relative; min-height: 390px; perspective: 700px; }
.download-art::after { content: ""; position: absolute; width: 88%; height: 24%; bottom: 7%; border-radius: 50%; background: rgba(52,109,244,.18); filter: blur(35px); }
.download-art img { width: min(270px, 78%); height: auto; aspect-ratio: 1; border-radius: 20%; object-fit: cover; transform: rotateX(57deg) rotateZ(-31deg); box-shadow: -45px 65px 85px rgba(0,0,0,.65); position: relative; z-index: 2; }

.pricing-section { margin-top: 0; padding: 104px 0; border: 0; border-radius: 0; background: #000; color: #fff; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); gap: 64px; align-items: center; }
.pricing-copy { max-width: 550px; margin: 0; text-align: left; }
.pricing-copy h2 { margin: 0; font-size: clamp(44px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; font-weight: 630; }
.pricing-copy > p { max-width: 550px; margin: 19px auto 0; color: #909090; font-size: 17px; line-height: 1.58; }
.price-card { width: 100%; max-width: 520px; margin: 0; justify-self: end; padding: 38px; border: 1px solid #354361; border-radius: 14px; background: linear-gradient(145deg, #181a1f 0%, #101113 100%); color: #fff; position: relative; overflow: hidden; box-shadow: 0 28px 80px rgba(0,0,0,.48), 0 0 55px rgba(50,109,244,.08); }
.price-card h3 { margin: 0 0 7px; font-size: clamp(46px, 5vw, 62px); line-height: 1; letter-spacing: -.055em; font-weight: 620; }
.price-status { margin: 0; color: #999; font-size: 15px; }
.price-card ul { list-style: none; padding: 25px 0 28px; margin: 25px 0 0; border-top: 1px solid #2c2c2c; }
.price-card li { position: relative; padding: 8px 0 8px 22px; color: #a4a4a4; font-size: 14px; }
.price-card li::before { content: "\2713"; position: absolute; left: 0; color: #5f8eff; font-weight: 700; }
.price-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-card .pill { width: 100%; }

.faq-section { padding: 104px 0; background: var(--section-soft); box-shadow: 0 0 0 100vmax var(--section-soft); clip-path: inset(0 -100vmax); }
.faq-heading { text-align: center; }
.faq-heading h2 { margin: 0 0 70px; font-size: clamp(40px, 4.6vw, 60px); line-height: 1.02; letter-spacing: -.055em; font-weight: 620; }
.faq-list { width: min(960px, 100%); margin: 0 auto; border-top: 1px solid #292929; }
.faq-list details { border-bottom: 1px solid #292929; }
.faq-list summary { min-height: 78px; padding: 25px 54px 25px 0; display: flex; align-items: center; position: relative; cursor: pointer; list-style: none; color: #f1f1f1; font-size: 19px; line-height: 1.35; letter-spacing: -.025em; font-weight: 520; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; right: 5px; top: 50%; width: 17px; height: 1px; background: #8a8a8a; transition: transform .24s ease, background .2s ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list summary:hover::before, .faq-list summary:hover::after { background: #fff; }
.faq-list details p { max-width: 650px; margin: -5px 54px 0 0; padding: 0 0 27px; color: #909090; font-size: 16px; line-height: 1.62; }

.compatibility { margin-top: 0; padding: 72px 0; border: 0; background: var(--section-soft); box-shadow: 0 0 0 100vmax var(--section-soft); clip-path: inset(0 -100vmax); }
.compatibility-label { display: block; margin: 0 0 42px; color: #fff; font-size: clamp(28px, 3.2vw, 40px); line-height: 1; letter-spacing: -.04em; font-weight: 600; text-align: center; }
.engine-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; }
.engine-row > div { min-height: 104px; padding: 0; display: flex; align-items: center; justify-content: center; gap: 19px; border: 0; }
.engine-row img { width: 54px; height: 54px; object-fit: contain; flex: 0 0 auto; }
.engine-row strong { font-size: 19px; font-weight: 540; letter-spacing: -.02em; color: #e2e2e2; }

.vat-intro { padding: 96px 0; background: var(--section-raised); box-shadow: 0 0 0 100vmax var(--section-raised); clip-path: inset(0 -100vmax); display: grid; grid-template-columns: .85fr 1.15fr; gap: 84px; align-items: start; }
.vat-intro h2 { max-width: 520px; margin: 0; font-size: clamp(42px, 4.8vw, 60px); line-height: 1.02; letter-spacing: -.055em; font-weight: 620; }
.vat-intro-copy { padding-top: 5px; }
.vat-intro-copy p { max-width: 620px; margin: 0; color: #969696; font-size: 17px; line-height: 1.62; }
.vat-intro-copy p + p { margin-top: 20px; }


@media (max-width: 900px) {
  .hero { min-height: calc(100svh - 185px); padding-top: 53px; padding-bottom: 53px; }
  .hero h1 { font-size: clamp(54px, 8.4vw, 68px); }
  .hero > p { font-size: 18px; }
  .selling-intro { padding: 88px 0; }
  .selling-point { min-height: 0; padding: 68px 0; margin: 0; }
  .point-media { height: 390px; margin-top: 40px; }
  .feature-split, .feature-split.media-left { grid-template-columns: 1fr; grid-template-areas: "copy" "media"; gap: 40px; }
  .selling-point.reveal.media-left .point-media,
  .selling-point.reveal.media-right .point-media { transform: translateY(28px) scale(.985); }
  .selling-point.visible.media-left .point-media,
  .selling-point.visible.media-right .point-media { transform: none; }
  .feature-split .point-copy { max-width: 720px; }
  .feature-split .point-media { height: 390px; margin-top: 0; }
  .comparison-section { padding: 88px 0; }
  .comparison-intro { margin-bottom: 56px; }
  .comparison-cards { grid-template-columns: 1fr; gap: 14px; }
  .comparison-card > p { min-height: 0; }
  .download-section, .pricing-section { grid-template-columns: 1fr; padding: 85px 0; gap: 38px; }
  .pricing-copy { max-width: 780px; margin: 0 auto; text-align: center; }
  .price-card { margin: 0 auto; justify-self: center; }
  .faq-section { padding: 88px 0; }
  .faq-heading h2 { margin-bottom: 56px; }
  .download-art { min-height: 300px; }
  .engine-row { grid-template-columns: 1fr 1fr; }
  .vat-intro { padding: 84px 0; grid-template-columns: 1fr; gap: 35px; }
  .vat-intro-copy { padding-top: 0; }
}

@media (max-width: 720px) {
  .showcase { padding-bottom: 48px; }
  .hero { min-height: calc(100svh - 145px); padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(44px, 12vw, 54px); line-height: .98; letter-spacing: -.058em; }
  .hero > p { max-width: 560px; margin-top: 25px; margin-bottom: 25px; font-size: 17px; line-height: 1.5; }
  .hero-actions { gap: 9px; }
  .tutorial-grid { grid-template-columns: 1fr; gap: 18px; }
  .selling-intro p { font-size: 17px; }
  .selling-point { padding: 64px 0; }
  .point-copy p, .feature-split .point-copy p { font-size: 16px; }
  .feature-spotlight .point-media { height: auto; aspect-ratio: 16 / 9; }
  .feature-split .point-media { height: auto; max-height: 390px; aspect-ratio: 16 / 10; }
  .comparison-card { padding: 31px 28px; }
  .download-art { min-height: 250px; }
  .download-art img { width: min(220px, 68%); }
  .pricing-copy > p { display: none; }
  .engine-row { gap: 18px; }
  .engine-row > div { min-height: 88px; gap: 13px; }
  .engine-row img { width: 46px; height: 46px; }
  .engine-row strong { font-size: 17px; }
}

@media (max-width: 520px) {
  .showcase { padding-bottom: 40px; }
  :root { --shell: calc(100vw - 40px); }
  .hero { min-height: calc(100svh - 145px); padding-top: 45px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(42px, 12vw, 48px); }
  .hero > p { font-size: 16px; }
  .price-actions { grid-template-columns: 1fr; }
  .selling-intro { padding: 70px 0; }
  .selling-point { padding: 58px 0; min-height: 0; margin: 0; }
  .point-copy h3 { font-size: 37px; }
  .point-media { height: auto; aspect-ratio: 16 / 9; margin-top: 34px; }
  .feature-split, .feature-split.media-left { gap: 34px; }
  .feature-split .point-copy h3 { font-size: 37px; }
  .feature-split .point-media { height: auto; aspect-ratio: 16 / 10; }
  .comparison-section { padding: 70px 0; }
  .comparison-intro { margin-bottom: 44px; }
  .comparison-card { padding: 29px 25px; }
  .comparison-card h3 { font-size: 24px; }
  .comparison-card li { font-size: 14px; }
  .download-section { margin-top: 0; padding: 70px 0; }
  .download-actions { flex-direction: column; }
  .download-actions .pill { width: 100%; }
  .pricing-section { padding: 70px 0; }
  .pricing-copy > p { display: none; }
  .faq-section { padding: 70px 0; }
  .faq-heading h2 { margin-bottom: 44px; }
  .faq-list summary { min-height: 72px; padding: 22px 42px 22px 0; font-size: 17px; }
  .faq-list details p { margin-right: 36px; padding-bottom: 24px; font-size: 15px; }
  .compatibility { margin-top: 0; padding: 70px 0; }
  .engine-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .engine-row > div { min-height: 78px; gap: 10px; }
  .engine-row img { width: 40px; height: 40px; }
  .engine-row strong { font-size: 15px; }
  .vat-intro { padding: 70px 0; gap: 27px; }
  .vat-intro-copy p { font-size: 16px; }
  .nav-actions { gap: 6px; }
  .nav-login { display: none; }
  .pill-small { min-height: 36px; padding: 0 13px; font-size: 12px; }
  .menu-panel { padding: 88px 28px 28px; }
  .menu-items a { min-height: 66px; font-size: 27px; }
}

@media (hover: hover) and (pointer: fine) {
  .comparison-card-standard:hover { border-color: #3a3a3a; background: #0d0d0d; }
  .comparison-card-autovat:hover,
  .price-card:hover { transform: translateY(-5px); border-color: #526b9d; box-shadow: 0 34px 90px rgba(0,0,0,.55), 0 0 65px rgba(50,109,244,.14); }
}

.pill:active { transform: translateY(0); }
.pill:focus-visible { outline: 2px solid #8fb0ff; outline-offset: 3px; }

.trademark-notice {
  display: block;
  max-width: 980px;
  margin: 12px auto 0;
  color: #686868;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .motion-ready .nav-wrap,
  .motion-ready .hero h1,
  .motion-ready .hero > p,
  .motion-ready .hero-actions,
  .reveal,
  .selling-point.reveal .point-copy,
  .selling-point.reveal .point-media,
  .comparison-card,
  .download-section.reveal > *,
  .pricing-section.reveal > *,
  .faq-section.reveal > *,
  .compatibility.reveal .engine-row > div,
  .menu-items a { opacity: 1 !important; transform: none !important; }
}
