:root {
  --navy-950: #061426;
  --navy-900: #07182d;
  --navy-800: #0d2744;
  --navy-700: #153a60;
  --blue-600: #087bd6;
  --blue-500: #13a4ee;
  --cyan-400: #41d6df;
  --orange-500: #f05a28;
  --red-500: #cc2929;
  --ink: #102034;
  --muted: #5b6c7e;
  --line: #dbe4eb;
  --soft: #f3f7fa;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 24, 45, .12);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.shell { width: 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;
  z-index: 100;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 228, 235, .9);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 174px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.primary-nav > a,
.nav-products > button {
  border: 0;
  padding: 12px 0;
  background: transparent;
  color: #33475c;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 700;
  cursor: pointer;
}
.primary-nav > a:hover,
.nav-products > button:hover { color: var(--blue-600); }
.nav-products { position: relative; }
.nav-products > button span { margin-left: 4px; }
.product-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  width: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7, 24, 45, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;
}
.nav-products > button[aria-expanded="true"] + .product-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.product-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
}
.product-menu a:hover { background: var(--soft); color: var(--blue-600); }
.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 11px 17px;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.nav-cta { background: var(--navy-900); color: var(--white); }
.nav-cta:hover { background: var(--blue-600); }
.menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
}
.menu-lines { width: 17px; display: grid; gap: 3px; }
.menu-lines i { height: 2px; background: currentColor; }

.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 8%, rgba(19, 164, 238, .18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #0b2b49);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(65, 214, 223, .12);
  border-radius: 50%;
}
.hero-grid {
  min-height: 680px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 78px;
  align-items: center;
  padding-block: 82px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 9px;
  background: currentColor;
  vertical-align: middle;
}
.eyebrow.light { color: #65dce6; }
.hero h1,
.section-heading h2,
.product-hero h1,
.product-cta h2,
.support-hero h1,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero h1 em {
  display: block;
  color: #70dbe8;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero-lead {
  max-width: 660px;
  margin: 28px 0 30px;
  color: #bbcad7;
  font-size: 1.08rem;
  line-height: 1.72;
}
.button-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button-primary { background: var(--blue-500); color: var(--navy-950); }
.button-primary:hover { background: #5ddce8; }
.button-quiet { border-color: #315271; color: var(--white); background: rgba(255, 255, 255, .03); }
.button-quiet:hover { border-color: #6e97b6; background: rgba(255, 255, 255, .08); }
.button-quiet-light { border-color: rgba(255,255,255,.35); color: var(--white); }
.button-outline { border-color: #b9cbd8; background: var(--white); color: var(--navy-900); }
.button-outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.button-red { background: var(--red-500); color: var(--white); }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 46px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-size: .95rem; }
.hero-facts span { color: #839aae; font-size: .72rem; }
.hero-showcase {
  padding: 24px;
  border: 1px solid rgba(117, 184, 221, .3);
  border-radius: 16px;
  background: rgba(5, 18, 33, .68);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
}
.showcase-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #88a8be;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.status { color: #a7d9c0; }
.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #56d593;
}
.showcase-product {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-left: 3px solid var(--blue-500);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
  color: var(--white);
  text-decoration: none;
  transition: .18s ease;
}
.showcase-product + .showcase-product { margin-top: 10px; }
.showcase-product:hover { transform: translateX(4px); background: rgba(255, 255, 255, .075); }
.showcase-product.accent-orange { border-left-color: var(--orange-500); }
.showcase-product > img { width: 64px; height: 64px; object-fit: contain; border-radius: 11px; background: var(--white); }
.showcase-product > span { display: flex; flex-direction: column; }
.showcase-product small { color: #65dbe5; font-size: .64rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.showcase-product.accent-orange small { color: #ff9a6d; }
.showcase-product strong { margin: 2px 0; font-size: 1rem; }
.showcase-product em { color: #8fa7ba; font-size: .72rem; font-style: normal; }
.showcase-product > b { color: #39536c; font-size: 1rem; }
.showcase-note {
  min-height: 94px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 8px 16px 8px 8px;
  border-radius: 9px;
  background: #edf7fa;
  color: var(--navy-900);
}
.showcase-note img { width: 74px; height: 70px; object-fit: cover; object-position: center 35%; border-radius: 7px; }
.showcase-note p { margin: 0; font-size: .78rem; font-weight: 700; line-height: 1.45; }
.trust-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-bar .shell {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.trust-bar span {
  padding: 8px 18px;
  border-right: 1px solid var(--line);
  color: #50677c;
  text-align: center;
  font-size: .74rem;
  font-weight: 800;
}
.trust-bar span:first-child { border-left: 1px solid var(--line); }

.section { padding-block: 110px; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2,
.product-cta h2 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); }
.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  gap: 80px;
  align-items: end;
}
.split-heading > p { margin: 0 0 7px !important; }
.centered { margin-inline: auto; text-align: center; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 470px), 1fr));
  gap: 28px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(8, 31, 55, .08);
}
.product-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #07111b;
}
.product-card.accent-red .product-image { background: #f5f5f3; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-image:hover img { transform: scale(1.025); }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 30px; }
.product-title { display: flex; gap: 14px; align-items: center; }
.product-title > img { width: 54px; height: 54px; object-fit: contain; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.product-title span { color: var(--blue-600); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.accent-orange .product-title span { color: #cc4718; }
.product-title h3 { margin: 1px 0 0; font-size: 1.55rem; letter-spacing: -.035em; }
.product-card-body > p { color: var(--muted); }
.product-card-body > ul { margin: 5px 0 22px; padding: 0; list-style: none; }
.product-card-body > ul li { position: relative; padding: 7px 0 7px 24px; color: #344a5e; font-size: .88rem; }
.product-card-body > ul li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 900; }
.accent-orange .product-card-body > ul li::before { color: var(--orange-500); }
.price-note { margin-top: auto; font-size: .78rem !important; font-weight: 700; }
.price-note.light { color: #a9bbc9; }
.card-actions { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.store-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid #182838;
  border-radius: 7px;
  background: #101820;
  color: var(--white);
  text-decoration: none;
  line-height: 1.05;
  white-space: nowrap;
}
.store-button:hover { background: #243747; }
.store-button > span:last-child { font-size: .78rem; font-weight: 700; }
.store-button small { display: block; font-size: .48rem; letter-spacing: .05em; }
.store-button.large { min-height: 54px; padding-inline: 17px; }
.ms-mark { width: 19px; height: 19px; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; }
.ms-mark i:nth-child(1) { background: #f35325; }
.ms-mark i:nth-child(2) { background: #81bc06; }
.ms-mark i:nth-child(3) { background: #05a6f0; }
.ms-mark i:nth-child(4) { background: #ffba08; }

.demo-section {
  background:
    radial-gradient(circle at 12% 95%, rgba(65, 214, 223, .12), transparent 29%),
    var(--navy-900);
  color: var(--white);
}
.demo-heading { max-width: 820px; }
.demo-heading > p:last-child { color: #a9bdcc; }
.demo-card {
  overflow: hidden;
  border: 1px solid #2d506d;
  border-radius: 14px;
  background: #0a1c30;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
}
.demo-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #2d506d; }
.demo-tabs button {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-right: 1px solid #2d506d;
  background: #071626;
  color: #99afc0;
  font-weight: 800;
  cursor: pointer;
}
.demo-tabs button:last-child { border-right: 0; }
.demo-tabs button[aria-selected="true"] { background: #102b45; color: var(--white); box-shadow: inset 0 -3px var(--cyan-400); }
.demo-tabs img { width: 32px; height: 32px; border-radius: 6px; background: var(--white); }
.demo-panel {
  position: relative;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 28px;
  padding: 30px;
}
.demo-instructions { padding: 10px 4px; }
.step-label { margin: 0; color: #65dce6; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-instructions h3 { margin: 8px 0 10px; font-size: 1.55rem; }
.demo-instructions > p:not(.step-label) { color: #a6bac9; font-size: .88rem; }
.demo-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.tool-button,
.reset-button {
  min-height: 44px;
  border: 1px solid #46627a;
  border-radius: 6px;
  padding: 8px 12px;
  background: transparent;
  color: #c7d8e4;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}
.tool-button.active { border-color: #5ed8e1; background: #123a50; color: var(--white); }
.reset-button { margin-left: auto; }
.sample-document,
.sample-screenshot {
  min-height: 310px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: #1b2834;
  box-shadow: inset 0 0 0 1px #d6dfe5;
}
.document-top { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 2px solid #243749; color: #657786; font-size: .64rem; font-weight: 900; letter-spacing: .08em; }
.sample-document h4 { margin: 25px 0 14px; font-size: 1.35rem; }
.sample-document p { line-height: 2.15; }
.sample-empty {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #667a8b;
  text-align: center;
}
.sample-empty > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 60px;
  margin-bottom: 10px;
  border: 2px solid var(--red-500);
  border-radius: 3px;
  color: var(--red-500);
  font-size: .72rem;
  font-weight: 900;
}
.sample-empty p { margin: 4px 0; font-size: .78rem; }
.loaded-sample p { display: grid; grid-template-columns: 92px 1fr; margin: 4px 0; line-height: 1.8; }
.loaded-sample mark {
  width: fit-content;
  padding: 1px 5px;
  border-radius: 3px;
  background: #ffe1df;
  color: #7e1a1a;
  transition: none;
}
.loaded-sample mark.auto-redacted {
  min-width: 100px;
  background: #111;
  color: transparent;
  user-select: none;
}
.fake-file-picker {
  position: absolute;
  z-index: 4;
  inset: 20px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 9px;
  background: rgba(3, 12, 22, .88);
}
.fake-file-picker > div {
  width: min(520px, 100%);
  padding: 20px;
  border: 1px solid #aab9c4;
  border-radius: 9px;
  background: #f5f7f8;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0,0,0,.4);
}
.fake-picker-head { display: flex; justify-content: space-between; align-items: center; }
.fake-picker-head button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}
.fake-file-picker > div > p { color: var(--muted); font-size: .8rem; }
.sample-file-option {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid #cad5dc;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.sample-file-option:hover { border-color: var(--blue-600); background: #eef7fc; }
.sample-file-option > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 50px;
  height: 54px;
  background: var(--red-500);
  color: var(--white);
  font-size: .7rem;
  font-weight: 900;
}
.sample-file-option b { align-self: end; }
.sample-file-option small { align-self: start; color: var(--muted); }
.sample-token,
.visual-token {
  border: 1px solid #eaa9a9;
  border-radius: 4px;
  padding: 2px 5px;
  background: #fff1f1;
  color: #801a1a;
  font-weight: 800;
  cursor: pointer;
}
.sample-token.selected { background: #ffe268; border-color: #bb8c00; color: #342900; }
.sample-token.redacted { min-width: 90px; border-color: #111; background: #111; color: #fff; }
.demo-feedback {
  min-height: 42px;
  margin: 20px 0 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--blue-500);
  background: #eef6fb;
  color: #37536a;
  font-size: .78rem;
  font-weight: 800;
}
.button:disabled { opacity: .5; cursor: not-allowed; }
.demo-result {
  grid-column: 1 / -1;
  padding: 15px 18px;
  border: 1px solid #2b7591;
  border-radius: 7px;
  background: #0d3045;
}
.demo-result strong { color: #6fe1cf; }
.demo-result p { display: inline; margin: 0 8px; color: #a9bfcc; font-size: .84rem; }
.demo-result a { color: var(--white); font-size: .84rem; font-weight: 800; }
.demo-disclaimer {
  margin: 0;
  padding: 13px 30px;
  border-top: 1px solid #263f57;
  color: #7f9aae;
  font-size: .72rem;
}
.fake-window-bar { display: flex; align-items: center; gap: 5px; margin: -26px -26px 25px; padding: 10px 13px; background: #eef2f4; color: #6b7883; font-size: .68rem; }
.fake-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ff6d5d; }
.fake-window-bar i:nth-child(2) { background: #f7be45; }
.fake-window-bar i:nth-child(3) { background: #62c96c; margin-right: 7px; }
.message-row { display: flex; gap: 13px; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.avatar { display: grid; place-items: center; width: 43px; height: 43px; flex: 0 0 43px; border-radius: 50%; background: #dbeeff; color: #15578d; font-weight: 900; }
.message-row p { margin: 5px 0; }
.address-line { margin-top: 22px; }
.invoice-sample { font-size: .84rem; }
.invoice-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #243749;
}
.invoice-heading small { color: var(--muted); }
.invoice-sample > p { display: grid; grid-template-columns: 125px 1fr; align-items: center; margin: 6px 0; }
.invoice-field {
  width: fit-content;
  max-width: 100%;
  border: 0;
  border-radius: 3px;
  padding: 4px 7px;
  color: #273746;
  text-align: left;
  cursor: pointer;
}
.safe-field { background: #e8ebe5; }
.private-field { background: #ffe0d7; color: #78270e; font-weight: 800; }
.private-field.concealed {
  min-width: 115px;
  background: #111;
  color: transparent;
  user-select: none;
}
.invoice-total {
  display: block;
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  text-align: right;
}
.visual-token.blackout { min-width: 100px; background: #101010; border-color: #101010; color: transparent; }
.visual-token.pixelate {
  color: transparent;
  border-color: #777;
  background:
    linear-gradient(45deg, #333 25%, transparent 25%, transparent 75%, #333 75%),
    linear-gradient(45deg, #777 25%, #aaa 25%, #aaa 75%, #777 75%);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
}

.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 22px; }
.comparison-card { padding: 30px; border: 1px solid var(--line); border-top: 4px solid var(--blue-600); border-radius: 10px; }
.comparison-card.accent-orange { border-top-color: var(--orange-500); }
.comparison-card > div { display: flex; align-items: center; gap: 10px; color: var(--blue-600); font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.comparison-card.accent-orange > div { color: #c74d22; }
.comparison-card img { width: 38px; height: 38px; border-radius: 7px; }
.comparison-card h3 { margin: 17px 0; font-size: 1.65rem; }
.comparison-card ul,
.check-list { padding: 0; list-style: none; }
.comparison-card li,
.check-list li { position: relative; padding: 8px 0 8px 25px; color: var(--muted); }
.comparison-card li::before,
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 900; }
.comparison-card a { display: inline-block; margin-top: 14px; color: var(--blue-600); font-size: .84rem; font-weight: 900; }

.gallery-section { background: var(--soft); }
.screenshot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr)); gap: 22px; }
.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 40px rgba(7, 24, 45, .07);
  cursor: zoom-in;
}
.screenshot-card > img { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #0a121a; }
.screenshot-card > span { min-height: 80px; display: grid; grid-template-columns: 38px 1fr; column-gap: 11px; align-items: center; padding: 13px 16px; }
.screenshot-card > span img { width: 38px; height: 38px; grid-row: 1 / 3; border-radius: 7px; }
.screenshot-card > span b { align-self: end; font-size: .88rem; }
.screenshot-card > span small { align-self: start; color: var(--muted); }
.product-gallery { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.product-gallery .screenshot-card > span { grid-template-columns: 1fr; }
.lightbox {
  width: min(1180px, calc(100% - 32px));
  max-height: 92vh;
  overflow: auto;
  padding: 18px;
  border: 1px solid #42637f;
  border-radius: 10px;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 30px 120px #000;
}
.lightbox::backdrop { background: rgba(2, 9, 17, .86); backdrop-filter: blur(8px); }
.lightbox > img { width: 100%; max-height: 78vh; object-fit: contain; background: #07101a; }
.lightbox p { margin: 12px 42px 0 4px; color: #b1c4d2; }
.lightbox-close {
  position: sticky;
  z-index: 2;
  float: right;
  top: 5px;
  width: 46px;
  height: 46px;
  margin: 4px;
  border: 1px solid #617990;
  border-radius: 50%;
  background: #0b2137;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process-list li { position: relative; padding: 27px; border-top: 1px solid #adc1cf; background: linear-gradient(#fff, #f8fafb); }
.process-list span { color: var(--blue-600); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.process-list h3 { margin: 24px 0 5px; font-size: 1.35rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .9rem; }
.why-section { background: var(--navy-900); color: var(--white); }
.why-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.why-grid > div:first-child h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -.05em; }
.why-grid > div:first-child > p:last-child { color: #9eb3c3; }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.principle-grid article { padding-top: 17px; border-top: 1px solid #31506b; }
.principle-grid span { color: #65dce6; font-size: .7rem; font-weight: 900; }
.principle-grid h3 { margin: 19px 0 6px; font-size: 1.05rem; }
.principle-grid p { margin: 0; color: #98adbd; font-size: .85rem; }
.support-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr auto;
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid #b9d6e7;
  border-radius: 12px;
  background: #f1f9fc;
}
.support-callout h2 { margin: 0; font-size: 2rem; line-height: 1.16; letter-spacing: -.04em; }
.support-callout p { color: var(--muted); }
.support-actions { display: grid; gap: 8px; }
.support-actions a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #cfdee7;
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}
.support-actions img { width: 40px; height: 40px; border-radius: 6px; }
.support-actions span { display: flex; flex-direction: column; }
.support-actions strong { font-size: .82rem; }
.support-actions small { color: var(--muted); font-size: .67rem; }
.support-actions b { color: var(--blue-600); }
.about-preview { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 80px; align-items: center; }
.about-grid > img { width: 100%; max-height: 390px; object-fit: cover; object-position: center 32%; border-radius: 12px; }
.about-grid h2 { margin: 0; font-size: clamp(2.4rem, 4.5vw, 3.8rem); letter-spacing: -.05em; }
.about-grid p { color: var(--muted); font-size: 1.03rem; }
.future-note { padding: 13px 17px; border-left: 3px solid var(--blue-500); background: var(--white); font-size: .88rem !important; font-weight: 700; }
.text-link { color: var(--blue-600); font-weight: 900; }

.site-footer { padding-top: 64px; background: var(--navy-950); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; padding-bottom: 55px; }
.footer-brand img { width: 175px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; color: #8fa7ba; font-size: .83rem; }
.footer-grid h2 { margin: 0 0 15px; color: #6ddde5; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin: 7px 0; }
.footer-grid a { color: #c1d0db; text-decoration: none; font-size: .82rem; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #20364b;
  color: #7891a5;
  font-size: .72rem;
}
.footer-bottom a { color: #9db1c0; }

.product-hero {
  background: linear-gradient(135deg, var(--navy-950), #0c2d4d);
  color: var(--white);
}
.product-hero.accent-orange { background: linear-gradient(135deg, #111923, #3a2018); }
.product-hero-grid { min-height: 630px; display: grid; grid-template-columns: .83fr 1.17fr; gap: 70px; align-items: center; padding-block: 75px; }
.back-link { display: inline-block; margin-bottom: 28px; color: #9ab0c1; font-size: .78rem; font-weight: 800; text-decoration: none; }
.app-identity { display: flex; gap: 12px; align-items: center; color: #74dce4; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.accent-orange .app-identity { color: #ff9c73; }
.app-identity img { width: 48px; height: 48px; border-radius: 9px; background: var(--white); }
.product-hero h1 { margin-top: 18px; }
.product-hero-copy > p { color: #b4c5d2; font-size: 1.02rem; }
.product-hero-image {
  overflow: hidden;
  position: relative;
  padding: 0;
  border: 1px solid #46647b;
  border-radius: 10px;
  background: #07111b;
  box-shadow: 0 28px 75px rgba(0,0,0,.32);
  color: var(--white);
  cursor: zoom-in;
}
.product-hero-image > img { width: 100%; aspect-ratio: 16/9; object-fit: contain; }
.product-hero-image > span { position: absolute; right: 10px; bottom: 10px; padding: 8px 11px; border-radius: 5px; background: rgba(4, 15, 26, .86); font-size: .72rem; font-weight: 800; }
.product-intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.product-intro-grid .section-heading { margin: 0; }
.large-feature-list { margin: 0; padding: 0; list-style: none; }
.large-feature-list li { padding: 18px 0 18px 34px; border-bottom: 1px solid var(--line); position: relative; font-size: 1rem; font-weight: 800; }
.large-feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); }
.soft-section { background: var(--soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #b8c9d4; border-left: 1px solid #b8c9d4; }
.feature-grid article { min-height: 150px; padding: 24px; border-right: 1px solid #b8c9d4; border-bottom: 1px solid #b8c9d4; background: rgba(255,255,255,.55); }
.feature-grid span { color: var(--blue-600); font-size: .68rem; font-weight: 900; }
.feature-grid h3 { margin: 30px 0 0; font-size: 1rem; line-height: 1.4; }
.workflow-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin: 0; padding: 0; list-style: none; }
.workflow-list li { min-height: 175px; padding: 20px; border: 1px solid var(--line); border-top: 3px solid var(--blue-600); border-radius: 7px; }
.workflow-list span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #e4f3fb; color: var(--blue-600); font-weight: 900; }
.workflow-list p { margin-top: 25px; color: #3c5164; font-size: .86rem; font-weight: 700; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.detail-columns h2 { margin: 0; font-size: 2rem; }
.limitation-box { padding: 32px; border-left: 4px solid #d48635; background: #fff9ef; }
.limitation-box ul { padding-left: 20px; color: #695641; }
.limitation-box li + li { margin-top: 12px; }
.system-grid { display: grid; grid-template-columns: .8fr 1fr .85fr; gap: 60px; align-items: start; }
.system-grid h2 { margin: 0; font-size: 2.1rem; letter-spacing: -.04em; }
.system-grid > ul { margin: 0; padding-left: 20px; color: var(--muted); }
.system-grid > ul li + li { margin-top: 12px; }
.system-links { display: grid; gap: 10px; }
.system-links a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--blue-600); font-size: .85rem; font-weight: 900; }
.faq-list { border-top: 1px solid #b8c8d3; }
.faq-list details { border-bottom: 1px solid #b8c8d3; }
.faq-list summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 4px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue-600); font-size: 1.5rem; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 820px; margin: 0 0 22px; color: var(--muted); }
.related-card { display: grid; grid-template-columns: 80px 1fr auto; gap: 26px; align-items: center; padding: 30px; border: 1px solid var(--line); border-left: 4px solid var(--blue-600); border-radius: 9px; }
.related-card.accent-orange { border-left-color: var(--orange-500); }
.related-card > img { width: 80px; height: 80px; border-radius: 12px; }
.related-card span { color: var(--blue-600); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.related-card h2 { margin: 3px 0; font-size: 1.6rem; }
.related-card p { margin: 0; color: var(--muted); }
.product-cta { padding-block: 65px; background: var(--navy-900); color: var(--white); }
.product-cta.accent-orange { background: #251914; }
.product-cta .shell { display: grid; grid-template-columns: 75px 1fr auto; gap: 25px; align-items: center; }
.product-cta img { width: 75px; height: 75px; border-radius: 11px; background: #fff; }
.product-cta span { color: #6fdde5; font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.product-cta h2 { font-size: 2.1rem; }
.product-cta p { margin: 3px 0 0; color: #9fb3c2; font-size: .84rem; }

.support-hero,
.legal-hero { padding-block: 95px; background: var(--navy-900); color: var(--white); }
.support-hero h1,
.legal-hero h1 { max-width: 850px; }
.support-hero p,
.legal-hero p { max-width: 720px; color: #a8bccb; font-size: 1.05rem; }
.support-product { padding: 65px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.support-product-head { display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: center; margin-bottom: 34px; }
.support-product-head > img { width: 70px; height: 70px; border: 1px solid var(--line); border-radius: 11px; }
.support-product-head span { color: var(--blue-600); font-size: .67rem; font-weight: 900; text-transform: uppercase; }
.support-product.accent-orange .support-product-head span { color: #c84a1e; }
.support-product-head h2 { margin: 0; font-size: 2.2rem; letter-spacing: -.04em; }
.support-product-head p { margin: 1px 0; color: var(--muted); }
.support-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.support-topic-grid article { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.support-topic-grid h3 { margin: 0 0 9px; font-size: .98rem; }
.support-topic-grid p { margin: 0; color: var(--muted); font-size: .82rem; }
.support-product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.support-form-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 72px;
  align-items: start;
}
.support-form-layout > div > h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.support-form-layout > div > p { color: var(--muted); }
.support-privacy-note {
  margin-top: 24px;
  padding: 14px 17px;
  border-left: 3px solid #d48635;
  background: #fff8ed;
  font-size: .82rem;
}
.support-form {
  padding: 30px;
  border: 1px solid #cbdbe5;
  border-radius: 11px;
  background: var(--soft);
  box-shadow: 0 20px 55px rgba(8, 31, 55, .08);
}
.support-form .form-row { display: grid; gap: 7px; margin-bottom: 18px; }
.support-form .form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.support-form label {
  color: #263c50;
  font-size: .79rem;
  font-weight: 800;
}
.support-form label span { color: var(--muted); font-size: .69rem; font-weight: 500; }
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #aebfcb;
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
}
.support-form textarea { min-height: 150px; resize: vertical; }
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(19, 164, 238, .2);
  outline-offset: 1px;
}
.form-confirmation {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 20px;
}
.form-confirmation input { width: 20px; min-height: 20px; margin: 1px 0 0; }
.form-confirmation span { color: #3d5264 !important; font-size: .78rem !important; font-weight: 700 !important; }
.support-form .button { width: 100%; }
.form-status { margin: 12px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; padding: 38px; border-radius: 10px; background: #eaf6fb; }
.contact-card h2 { margin: 0; font-size: 2rem; }
.contact-card p { color: var(--muted); }
.legal-layout { max-width: 830px; padding-block: 85px; }
.legal-layout h2 { margin-top: 45px; font-size: 1.7rem; letter-spacing: -.03em; scroll-margin-top: 95px; }
.legal-layout h3 { margin-top: 30px; }
.legal-layout p,
.legal-layout li { color: #445a6d; }
.legal-layout a { color: var(--blue-600); font-weight: 700; }
.legal-note { padding: 15px 18px; border-left: 4px solid var(--blue-600); background: var(--soft); }
.legal-layout .app-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.legal-layout .app-list li { display: flex; gap: 13px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 7px; }
.legal-layout .app-list img { width: 44px; height: 44px; border-radius: 7px; }
.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.not-found img { width: 180px; margin-inline: auto; }

@media (max-width: 1040px) {
  .primary-nav { gap: 16px; }
  .hero-grid,
  .product-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-showcase { width: min(680px, 100%); }
  .hero-grid { padding-block: 70px; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .demo-panel { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 55px; }
  .support-callout { grid-template-columns: 1fr 1fr; }
  .support-callout > .button { grid-column: 1 / -1; justify-self: start; }
  .workflow-list { grid-template-columns: repeat(3, 1fr); }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .system-links { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .support-topic-grid { grid-template-columns: 1fr 1fr; }
  .support-form-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  :root { --shell: min(calc(100% - 32px), 680px); }
  .site-header { backdrop-filter: none; }
  .nav-wrap { min-height: 66px; }
  .brand img { width: 145px; }
  .menu-button { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    margin: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 35px rgba(7, 24, 45, .12);
  }
  .primary-nav.open { display: grid; gap: 3px; }
  .primary-nav > a,
  .nav-products > button { width: 100%; padding: 14px; border-radius: 6px; text-align: left; }
  .product-menu {
    position: static;
    width: auto;
    display: none;
    margin: 0 10px 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-products > button[aria-expanded="true"] + .product-menu { display: block; }
  .trust-bar .shell { grid-template-columns: 1fr 1fr; padding-block: 8px; }
  .trust-bar span { min-height: 44px; display: grid; place-items: center; border: 0; }
  .trust-bar span:first-child { border: 0; }
  .section { padding-block: 80px; }
  .process-list { grid-template-columns: 1fr; }
  .support-callout { grid-template-columns: 1fr; padding: 30px; }
  .support-callout > .button { grid-column: auto; }
  .about-grid,
  .product-intro-grid,
  .detail-columns { grid-template-columns: 1fr; gap: 45px; }
  .about-grid > img { max-height: 310px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .workflow-list { grid-template-columns: 1fr 1fr; }
  .related-card { grid-template-columns: 65px 1fr; }
  .related-card > a { grid-column: 1 / -1; }
  .product-cta .shell { grid-template-columns: 65px 1fr; }
  .product-cta .store-button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 560px) {
  .hero-grid { min-height: auto; padding-block: 58px; }
  .hero h1,
  .product-hero h1,
  .support-hero h1,
  .legal-hero h1 { font-size: 2.65rem; }
  .button-row > * { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 13px; }
  .hero-facts li { flex-direction: row; gap: 8px; align-items: baseline; }
  .showcase-product { grid-template-columns: 51px 1fr; padding: 12px; }
  .showcase-product > img { width: 51px; height: 51px; }
  .showcase-product em,
  .showcase-product > b { display: none; }
  .showcase-note { display: none; }
  .trust-bar .shell { grid-template-columns: 1fr; }
  .trust-bar span { border-bottom: 1px solid var(--line); }
  .section { padding-block: 64px; }
  .section-heading h2 { font-size: 2.25rem; }
  .product-card-body { padding: 23px; }
  .card-actions { display: grid; }
  .card-actions > * { width: 100%; }
  .demo-tabs { grid-template-columns: 1fr; }
  .demo-tabs button { border-right: 0; border-bottom: 1px solid #2d506d; }
  .demo-panel { padding: 20px; }
  .fake-file-picker { inset: 10px; padding: 10px; }
  .sample-document,
  .sample-screenshot { padding: 18px; }
  .sample-document p { line-height: 2; }
  .sample-token,
  .visual-token { margin-block: 3px; }
  .invoice-sample > p { grid-template-columns: 1fr; gap: 3px; }
  .fake-window-bar { margin: -18px -18px 20px; }
  .demo-result p { display: block; margin: 5px 0; }
  .principle-grid { grid-template-columns: 1fr; }
  .about-grid > img { max-height: 250px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 20px; }
  .product-hero-grid { padding-block: 55px; }
  .feature-grid { grid-template-columns: 1fr; }
  .workflow-list { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: 1fr; gap: 35px; }
  .system-links { grid-column: auto; grid-template-columns: 1fr; }
  .related-card { grid-template-columns: 54px 1fr; padding: 23px; }
  .related-card > img { width: 54px; height: 54px; }
  .product-cta .shell { grid-template-columns: 54px 1fr; }
  .product-cta img { width: 54px; height: 54px; }
  .support-topic-grid { grid-template-columns: 1fr; }
  .support-form { padding: 22px; }
  .support-form .form-columns { grid-template-columns: 1fr; gap: 0; }
  .contact-card { grid-template-columns: 1fr; padding: 28px; }
}

@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;
  }
}

@media (forced-colors: active) {
  .sample-token.redacted,
  .visual-token.blackout,
  .visual-token.pixelate { border: 4px solid CanvasText; }
}
