:root {
  --blue: #0066cc;
  --blue-focus: #0071e3;
  --ink: #1d1d1f;
  --muted: #7a7a7a;
  --light: #ffffff;
  --parchment: #f5f5f7;
  --pearl: #fafafc;
  --dark-1: #272729;
  --dark-2: #2a2a2c;
  --dark-3: #252527;
  --hairline: #e0e0e0;
  --on-dark-muted: #cccccc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--parchment); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif; -webkit-font-smoothing: antialiased; }
body, button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.layout-width { width: min(1440px, calc(100% - 48px)); margin-inline: auto; }

.sub-nav { position: sticky; z-index: 19; top: 0; height: 52px; color: var(--ink); background: rgba(245, 245, 247, .88); border-bottom: 1px solid rgba(0, 0, 0, .08); backdrop-filter: saturate(180%) blur(20px); }
.sub-nav-inner { height: 52px; display: flex; align-items: center; gap: 28px; }
.sub-nav-inner strong { font-size: 21px; font-weight: 600; line-height: 1.19; }
.sub-nav-inner nav { display: flex; gap: 21px; color: #555; font-size: 14px; }
.sub-nav-inner nav a:hover { color: var(--blue); }
.sub-nav-cta { min-height: 32px; margin-left: auto; padding: 8px 15px; display: inline-flex; align-items: center; color: #fff; background: var(--blue); border-radius: 999px; font-size: 14px; line-height: 1.29; transition: transform 180ms ease-out, background 180ms ease-out; }
.sub-nav-cta:hover { background: var(--blue-focus); transform: scale(.97); }

.product-tile { width: 100%; min-height: 760px; padding: 80px 0; overflow: hidden; }
.tile-inner { width: min(1240px, calc(100% - 48px)); min-height: 600px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.tile-light { color: var(--ink); background: var(--light); }
.tile-parchment { color: var(--ink); background: var(--parchment); }
.tile-dark { color: #fff; background: var(--dark-1); }
.tile-dark-2 { color: #fff; background: var(--dark-2); }
.eyebrow { margin-bottom: 16px; color: var(--blue); font-size: 12px; font-weight: 600; line-height: 1.3; letter-spacing: 0; }
.eyebrow-dark { color: #2997ff; }
.product-copy { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.product-copy h1, .product-copy h2 { margin-bottom: 17px; font-size: 56px; font-weight: 600; line-height: 1.07; letter-spacing: 0; }
.product-copy .lead { max-width: 690px; margin-bottom: 24px; font-size: 28px; font-weight: 400; line-height: 1.14; letter-spacing: 0; }
.product-copy p:not(.eyebrow) { margin-inline: auto; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.pill-button, .pill-link { min-height: 44px; padding: 11px 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-size: 17px; font-weight: 400; line-height: 1.47; letter-spacing: 0; transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out; }
.pill-button { border: 0; color: #fff; background: var(--blue); cursor: pointer; }
.pill-button:hover:not(:disabled) { background: var(--blue-focus); transform: scale(.97); }
.pill-button:disabled { color: var(--muted); background: #d2d2d7; cursor: not-allowed; }
.pill-link { color: var(--blue); background: transparent; }
.pill-link:hover { transform: scale(.97); }
.pill-link span { padding-left: 6px; font-size: 22px; line-height: 1; }
.pill-link-dark { color: #2997ff; }
.download-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.3; }
.tile-dark .download-note { color: var(--on-dark-muted); }

.hero-tile { min-height: 840px; padding-top: 95px; }
.hero-inner { min-height: 650px; }
.hero-copy { margin-bottom: 28px; }
.hero-product-visual { width: min(1120px, 100%); margin: 28px 0 0; }
.product-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.product-visual img { display: block; object-fit: contain; }
.hero-product-visual img { width: 100%; max-height: 480px; object-fit: cover; object-position: top center; box-shadow: rgba(0, 0, 0, .22) 3px 5px 30px 0; }
.product-visual figcaption { margin-top: 17px; color: var(--muted); font-size: 14px; line-height: 1.43; }
.tile-dark .product-visual figcaption, .tile-dark-2 .product-visual figcaption { color: var(--on-dark-muted); }

.product-visual-screen { width: min(1080px, 100%); margin-top: 52px; }
.product-visual-screen img { width: 100%; max-height: 520px; object-fit: cover; object-position: top center; box-shadow: rgba(0, 0, 0, .22) 3px 5px 30px 0; }
.two-column-tile .product-visual-screen { width: 100%; margin-top: 0; }
.two-column-tile { min-height: 600px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); align-items: center; gap: 80px; }
.two-column-reverse { grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr); }
.product-copy-left { text-align: left; }
.product-copy-right { text-align: left; }
.product-copy-left p:not(.eyebrow), .product-copy-right p:not(.eyebrow) { margin-inline: 0; }

.workspace-strip { padding-top: 120px; padding-bottom: 125px; }
.workspace-strip .tile-inner { min-height: 690px; align-items: stretch; }
.workspace-heading { max-width: 720px; margin-bottom: 50px; }
.workspace-heading h2 { margin-bottom: 19px; font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: 0; }
.workspace-heading p:last-child { max-width: 570px; margin-bottom: 0; color: #555; font-size: 17px; line-height: 1.47; }
.workspace-index { padding: 13px 0; display: flex; justify-content: space-between; color: #7a7a7a; border-top: 1px solid var(--hairline); font-size: 12px; line-height: 1.3; }
.workspace-product { margin: 0; align-items: stretch; }
.workspace-product img { width: 100%; max-height: 500px; object-fit: cover; object-position: top center; box-shadow: rgba(0, 0, 0, .22) 3px 5px 30px 0; }

.download-tile { min-height: 600px; }
.download-inner { min-height: 440px; align-items: center; justify-content: center; text-align: center; }
.download-inner h2 { margin-bottom: 20px; font-size: 56px; font-weight: 600; line-height: 1.07; letter-spacing: 0; }
.download-inner .lead { max-width: 600px; margin-bottom: 28px; color: var(--on-dark-muted); }

.site-footer { padding: 64px 0; color: #333; background: var(--parchment); }
.footer-inner { display: grid; gap: 39px; }
.footer-brand { color: var(--ink); font-size: 21px; font-weight: 600; line-height: 1.19; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; color: #7a7a7a; font-size: 12px; line-height: 1.3; }
.footer-legal a { color: #333; text-decoration: underline; text-underline-offset: 3px; }
.police-record { display: inline-flex; align-items: center; gap: 5px; }
.police-record-icon { width: 16px; height: 17px; flex: 0 0 16px; object-fit: contain; }

[data-reveal] { opacity: 0; transform: translateY(28px); }
.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
@media (max-width: 834px) {
  .layout-width, .tile-inner { width: min(100% - 40px, 680px); }
  .sub-nav-inner nav { display: none; }
  .sub-nav-cta { margin-left: auto; }
  .product-tile { min-height: 0; padding: 64px 0; }
  .hero-tile { padding-top: 75px; }
  .hero-inner { min-height: 0; }
  .product-copy h1, .product-copy h2, .download-inner h2 { font-size: 40px; }
  .product-copy .lead { font-size: 24px; line-height: 1.5; }
  .hero-product-visual { margin-top: 40px; }
  .hero-product-visual img, .product-visual-screen img, .workspace-product img { max-height: 360px; }
  .two-column-tile, .two-column-reverse { min-height: 0; display: flex; flex-direction: column; align-items: stretch; gap: 35px; }
  .product-copy-left, .product-copy-right { text-align: center; }
  .product-copy-left p:not(.eyebrow), .product-copy-right p:not(.eyebrow) { margin-inline: auto; }
  .two-column-tile .product-visual-screen { margin-top: 0; }
  .workspace-strip { padding-top: 80px; padding-bottom: 80px; }
  .workspace-strip .tile-inner { min-height: 0; }
  .workspace-heading h2 { font-size: 34px; }
}
@media (max-width: 480px) {
  .layout-width, .tile-inner { width: min(100% - 32px, 480px); }
  .sub-nav-inner strong { font-size: 17px; }
  .sub-nav-cta { padding: 7px 12px; font-size: 12px; }
  .product-tile { padding: 48px 0; }
  .hero-tile { padding-top: 62px; }
  .product-copy h1, .product-copy h2, .download-inner h2 { font-size: 34px; }
  .product-copy .lead { font-size: 21px; line-height: 1.5; }
  .pill-button, .pill-link { padding-inline: 17px; font-size: 14px; }
  .cta-row { flex-direction: column; }
  .hero-product-visual img, .product-visual-screen img, .workspace-product img { max-height: 230px; }
  .workspace-heading h2 { font-size: 29px; }
  .workspace-heading p:last-child { font-size: 15px; }
  .workspace-index { font-size: 10px; }
  .site-footer { padding: 48px 0; }
  .footer-legal { gap: 10px 14px; }
}
