/* Unified Solutions marketing site.
   Design language: ESO-inspired structure (dark utility bar, rounded hero bands,
   chip-tagged cards, screenshot-on-gradient child heroes, white footer) executed
   with Unified's own brand: logo-derived navy/blue, real product UI as imagery,
   CAD-dispatch status pills as the labeling system. */

:root {
  --navy: #0a2a43;
  --navy-800: #0d3557;
  --navy-700: #12466f;
  --blue: #1779c2;
  --blue-700: #0f65a8;
  --teal: #0d9488;
  --sky: #e8f2fa;
  --mist: #f5f9fc;
  --line: #d9e6f0;
  --ink: #0a2a43;
  --body-c: #3d5468;
  --muted: #6b8299;
  --white: #fff;

  --font-display: "Archivo", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1180px;
  --r-card: 16px;
  --r-panel: 28px;
  --shadow-sm: 0 1px 2px rgba(10, 42, 67, .05), 0 2px 8px rgba(10, 42, 67, .06);
  --shadow-md: 0 12px 32px rgba(10, 42, 67, .10);
  --shadow-lg: 0 28px 64px rgba(10, 42, 67, .16);
  --accent: var(--blue);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-c);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.icon { width: 24px; height: 24px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.section { padding: 88px 0; }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 700; }
.section-title.center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-lede { font-size: 1.1rem; color: var(--body-c); margin: 0; }

/* eyebrow: CAD-terminal micro-label */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 16px;
}

/* dispatch-status chip */
.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #fff;
  background: var(--chip, var(--blue));
  padding: 4px 10px 3px;
  border-radius: 6px;
  line-height: 1.4;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-body); font-weight: 600; border-radius: 999px;
  padding: .72rem 1.5rem; font-size: .95rem; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: .5rem 1.1rem; font-size: .88rem; }
.btn-lg { padding: .95rem 1.9rem; font-size: 1rem; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-800); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-700); }
.btn-outline { background: transparent; color: var(--blue-700); border-color: var(--blue); }
.btn-outline:hover { background: var(--sky); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); }

/* ---------- utility bar + header ---------- */
.util-bar { background: var(--navy); color: #bcd3e6; }
.util-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 38px; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.util-inner a { color: #dcebf7; padding: 4px 2px; }
.util-inner a:hover { color: #fff; }
.util-links { display: flex; gap: 22px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 36px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-scroll > a, .has-menu > a {
  padding: .55rem .85rem; border-radius: 8px; font-weight: 500;
  color: var(--body-c); font-size: .95rem;
}
.nav-scroll > a:not(.btn):hover, .has-menu > a:hover { color: var(--ink); background: var(--mist); }
.site-nav .btn-primary { color: #fff; margin-left: 10px; }
.site-nav .btn-primary:hover { color: #fff; background: var(--blue-700); }

.has-menu { position: relative; }
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 960px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-lg); padding: 18px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px 18px;
  align-items: start;
  opacity: 0; visibility: hidden; transition: all .18s ease;
}
.mega-group h5 {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin: 6px 0 8px; padding: 0 10px;
  border-bottom: 1px solid var(--line); padding-bottom: 8px;
}
.has-menu:hover .mega, .has-menu:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; gap: 12px; padding: 10px; border-radius: 10px; align-items: flex-start; }
.mega a:hover { background: var(--mist); }
.mega-ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--sky); }
.mega-ic .icon { width: 20px; height: 20px; }
.mega a strong { display: block; color: var(--ink); font-size: .92rem; font-weight: 600; }
.mega a em { display: block; color: var(--muted); font-style: normal; font-size: .8rem; line-height: 1.35; margin-top: 2px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Fly-out chrome: inert on desktop, where the nav is a plain inline row. */
.nav-head, .nav-backdrop, .nav-util { display: none; }
.nav-scroll, .nav-foot { display: contents; }

/* ---------- home hero: navy band, rounded bottom, real devices ---------- */
.hero-shell {
  background:
    radial-gradient(1000px 600px at 82% 10%, rgba(23, 121, 194, .45), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(13, 148, 136, .25), transparent 55%),
    linear-gradient(160deg, var(--navy) 20%, var(--navy-800) 60%, var(--navy-700));
  border-radius: 0 0 36px 36px;
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-block: 84px 120px;
}
.hero-copy .eyebrow { color: #7fc0ee; }
.hero-copy h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; margin-bottom: .4em; }
.hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.18rem); color: #c6dcee; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .05em; color: #8fb4d3; }
.hero-art img { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35)); }

/* stat cards overlapping the hero edge */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  transform: translateY(-58px); margin-bottom: -18px;
}
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px 22px; box-shadow: var(--shadow-md);
}
.stat-value {
  display: block; font-family: var(--font-mono); font-weight: 600;
  font-size: 1.55rem; color: var(--navy); letter-spacing: -.02em;
}
.stat-label { display: block; font-size: .9rem; color: var(--muted); margin-top: 8px; }

/* ---------- statement / pillars ---------- */
.info-section { padding: 84px 0; }
.info-section.alt { background: var(--mist); }
.info-grid { display: grid; gap: 20px; }
.info-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.info-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.info-card p { margin: 0; font-size: .96rem; }
.info-card.is-problem { border-top: 3px solid #d64545; }
.ic-kicker { display: block; font-weight: 600; color: var(--accent); font-size: .9rem; margin-bottom: 8px; }
.ic-stat {
  align-self: flex-start; margin-top: 18px; font-family: var(--font-mono); font-size: .72rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 85%, #000);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, #fff);
  padding: 6px 12px; border-radius: 6px;
}
.section-closing { text-align: center; margin: 44px auto 0; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.2rem; }

/* ---------- product cards (real screenshot tops) ---------- */
.products-section { background: var(--mist); }
.product-grid, .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pc-shot { display: block; aspect-ratio: 16 / 9.5; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--sky); }
.pc-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.pc-shot-icon { display: grid; place-items: center; aspect-ratio: 16 / 9.5; border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 14%, #fff), color-mix(in srgb, var(--accent) 4%, #fff)); }
.pc-shot-icon .icon { width: 52px; height: 52px; color: var(--accent); }
.pc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.16rem; margin: 10px 0 6px; }
.product-card p { font-size: .94rem; margin: 0 0 16px; }
.pc-more { margin-top: auto; font-weight: 600; color: var(--blue-700); font-size: .92rem; }
.product-card:hover .pc-more span { margin-left: 4px; }
.pc-more span { transition: margin .15s ease; display: inline-block; }

/* ---------- platform panel (navy, rounded) ---------- */
.platform { padding: 44px 0 88px; }
.platform-panel {
  background: linear-gradient(150deg, var(--navy), var(--navy-800) 70%, var(--navy-700));
  border-radius: var(--r-panel); color: #fff; padding: 64px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.platform-panel .section-title { color: #fff; }
.platform-panel p { color: #c6dcee; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: #eaf3fa; font-weight: 500; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px; border-radius: 50%; background: var(--teal); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 10px; width: 7px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.platform-visual { display: grid; place-items: center; }
.diagram { position: relative; width: 330px; height: 330px; }
.diagram-hub {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 104px; height: 112px; display: grid; place-items: center; z-index: 2;
  background: #fff; color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.diagram-node {
  position: absolute; width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); color: #cfe6f6;
  backdrop-filter: blur(4px);
}
.diagram-node .icon { width: 25px; height: 25px; }
.diagram-node.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.diagram-node.n2 { top: 14%; right: 4%; }
.diagram-node.n3 { top: 50%; right: 0; transform: translateY(-50%); }
.diagram-node.n4 { bottom: 14%; right: 4%; }
.diagram-node.n5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.diagram-node.n6 { bottom: 14%; left: 4%; }
.diagram-node.n7 { top: 50%; left: 0; transform: translateY(-50%); }
.diagram-node.n8 { top: 14%; left: 4%; }

/* ---------- what's new ---------- */
.whats-new { background: var(--mist); }
.news-list { display: grid; gap: 14px; max-width: 840px; margin: 0 auto; }
.news-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 26px; box-shadow: var(--shadow-sm);
}
.news-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.news-meta time { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .05em; color: var(--muted); font-weight: 500; }
.news-app {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .09em; color: #fff; background: var(--blue); padding: 3px 9px 2px; border-radius: 6px;
}
.news-item p { margin: 0; color: var(--ink); }

/* ---------- media / demo card ---------- */
.media-section { padding: 64px 0; }
.media-card {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-panel);
  padding: 26px; box-shadow: var(--shadow-md);
}
.media-frame { position: relative; border-radius: var(--r-card); overflow: hidden; }
.media-play {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border: 0; cursor: pointer;
  border-radius: 50%; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; transition: transform .15s ease;
}
.media-play:hover { transform: scale(1.06); }
.media-frame .play {
  position: relative; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent var(--accent); margin-left: 4px;
}
.media-dur {
  position: absolute; bottom: 10px; right: 10px; background: rgba(10, 42, 67, .78); color: #fff;
  font-family: var(--font-mono); font-size: .7rem; padding: 3px 9px; border-radius: 6px; z-index: 2;
}
.media-text h3 { font-size: 1.35rem; }
.media-text p { margin: 0; }

/* ---------- browser frame ---------- */
.browser { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: var(--mist); border-bottom: 1px solid var(--line); }
.browser-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; }
.browser-bar .dot:nth-child(1) { background: #ee6a5f; }
.browser-bar .dot:nth-child(2) { background: #f5bd4f; }
.browser-bar .dot:nth-child(3) { background: #61c454; }
.browser-url { flex: 1; height: 14px; margin-left: 8px; border-radius: 7px; background: var(--line); }
.browser-body { display: block; line-height: 0; }
.browser-body .mock-svg, .browser-body img { width: 100%; height: auto; display: block; }

/* ---------- product child hero: copy on white, screenshot breaking into gradient band ---------- */
.p-hero-top { padding: 20px 0 0; }
.crumbs {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  color: var(--muted); margin: 18px 0 40px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.crumbs a:hover { color: var(--blue-700); }
.p-hero-copy { max-width: 800px; margin: 0 auto; text-align: center; }
.p-hero-copy h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 700; margin: 18px 0 .4em; }
.p-hero-copy .hero-sub { color: var(--body-c); margin: 0 auto; max-width: 640px; }
.p-hero-copy .hero-cta { justify-content: center; }
.p-hero-copy .hero-note { color: var(--muted); }
.p-band {
  margin: 200px 20px 0;
  border-radius: var(--r-panel);
  background:
    radial-gradient(800px 400px at 85% 0%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 65%),
    linear-gradient(160deg, var(--navy) 30%, color-mix(in srgb, var(--accent) 55%, var(--navy)));
  padding-bottom: 64px;
  display: flow-root;
}
.p-shot {
  max-width: 940px; margin: 0 auto -150px; padding: 0 24px;
  position: relative; top: -150px;
}
.p-shot-video {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: pointer; position: relative; font: inherit; text-align: inherit;
}
.p-shot-video .p-shot-play {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; z-index: 2;
  border-radius: 50%; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; transition: transform .15s ease;
}
.p-shot-video:hover .p-shot-play,
.p-shot-video:focus-visible .p-shot-play { transform: scale(1.08); }
.p-shot-video .play {
  width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent var(--accent, var(--blue)); margin-left: 4px;
}
.p-band-tail {
  max-width: 720px; margin: 40px auto 0; padding: 0 24px; text-align: center;
  color: #d4e6f4; font-size: 1.05rem;
}

/* ---------- big CTA band (mid-page, product pages) ---------- */
.cta-band { padding: 44px 0; }
.cta-band .cta-panel, .big-cta .cta-panel {
  background: linear-gradient(150deg, var(--navy), var(--navy-800) 65%, var(--blue-700));
  border-radius: var(--r-panel); color: #fff;
}
.big-cta .cta-inner-2 { text-align: center; padding: 72px 48px; max-width: 780px; margin: 0 auto; }
.big-cta h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.big-cta p { color: #c6dcee; }
.big-cta .hero-cta { justify-content: center; }
.cta-contact { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.cta-contact a { color: #fff; font-weight: 600; font-family: var(--font-mono); font-size: .9rem; }
.cta-contact a:hover { text-decoration: underline; }
.cta-note { margin-top: 16px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; color: #9dc0dc; }

/* split CTA (bottom of pages): copy left, devices right */
.cta-split {
  display: grid; grid-template-columns: 1fr .9fr; gap: 40px; align-items: center;
  padding: 56px 64px;
}
.cta-split h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-split p { color: #c6dcee; margin-bottom: 24px; }
.cta-split img { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35)); }

/* ---------- standard product page intro / features / faq ---------- */
.product-intro { padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.intro-text p { font-size: 1.1rem; margin-bottom: 24px; }
.intro-aside {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--accent);
}
.aside-ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff); margin-bottom: 14px; }
.intro-aside h3 { font-size: 1.2rem; margin-bottom: 2px; }
.aside-cat { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.aside-list li { position: relative; padding-left: 26px; font-size: .94rem; color: var(--ink); }
.aside-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, #fff); border: 2px solid var(--accent); }

.features { background: var(--mist); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 940px; margin: 0 auto; }
.feature-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.feature-card p { margin: 0; color: var(--ink); font-weight: 500; }
.fc-check { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, #fff); }
.fc-check .icon { width: 20px; height: 20px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-display); font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { top: 0; left: 8px; width: 2px; height: 18px; transition: transform .2s ease, opacity .2s ease; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding: 0 0 18px; }
.faq-body p { margin: 0; }

/* ---------- legal ---------- */
.legal h1 { margin-bottom: 6px; }
.legal-updated { font-family: var(--font-mono); color: var(--muted); font-size: .8rem; }
.legal-intro { background: var(--sky); border: 1px solid var(--line); border-radius: var(--r-card); padding: 16px 18px; color: var(--navy-700); }
.legal h2 { font-size: 1.25rem; margin-top: 36px; }
.legal h3 { font-size: 1.05rem; margin-top: 24px; }
.legal-sep { border: 0; border-top: 1px solid var(--line); margin: 48px 0 8px; }
.legal-addendum-title { margin-top: 8px; }

/* ---------- footer: white, navy text ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 68px 0 36px; color: var(--body-c); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 36px; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { color: var(--navy); font-weight: 600; font-family: var(--font-mono); font-size: .84rem; }
.footer-contact a:hover { color: var(--blue-700); }
.footer-col h4 {
  font-family: var(--font-mono); color: var(--navy); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--body-c); font-size: .92rem; }
.footer-col a:hover { color: var(--blue-700); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line);
  margin-top: 52px; padding-top: 26px; font-family: var(--font-mono); font-size: .74rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--navy); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .info-grid.cols-3, .info-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .media-card { grid-template-columns: 1fr; }
  .platform-panel { padding: 44px 32px; }
}
@media (max-width: 900px) {
  .util-links { display: none; }
  .nav-toggle { display: flex; }

  /* backdrop-filter would make the header the containing block for the
     fixed fly-out, trapping it inside the 72px bar; solid white instead. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }

  /* Right-hand fly-out sheet: quick links, then products grouped by suite,
     trial CTA pinned at the bottom. */
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(400px, 92vw);
    flex-direction: column; align-items: stretch; gap: 0; padding: 0;
    background: #fff; box-shadow: -28px 0 70px rgba(10, 42, 67, .28);
    transform: translateX(105%); visibility: hidden;
    transition: transform .28s cubic-bezier(.32, .72, .29, 1), visibility 0s .28s;
    z-index: 60;
  }
  body.nav-open .site-nav {
    transform: none; visibility: visible;
    transition: transform .28s cubic-bezier(.32, .72, .29, 1);
  }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 55;
    background: rgba(10, 42, 67, .55); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility 0s .25s;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; transition: opacity .25s ease; }

  .nav-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px 14px; border-bottom: 1px solid var(--line);
  }
  .nav-head-label {
    font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .14em; color: var(--muted);
  }
  .nav-close {
    background: var(--mist); border: 0; cursor: pointer; color: var(--ink);
    width: 34px; height: 34px; border-radius: 50%; font-size: 1.35rem; line-height: 1;
    display: grid; place-items: center; padding: 0 0 2px;
  }

  .nav-scroll {
    display: flex; flex-direction: column; gap: 2px;
    flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 12px 14px 18px;
  }
  .nav-scroll > a { font-size: 1.02rem; padding: .7rem .85rem; }
  .nav-util { display: flex; flex-direction: column; gap: 2px; }
  .nav-util a { font-size: 1.02rem; padding: .7rem .85rem; border-radius: 8px; font-weight: 500; }
  .nav-util a:hover { background: var(--mist); color: var(--ink); }

  /* Products render as suite-grouped lists; the desktop "Products" anchor
     and hover-mega behavior are irrelevant here. */
  .has-menu > a { display: none; }
  .mega {
    position: static; width: auto; max-width: none; transform: none;
    opacity: 1; visibility: visible; box-shadow: none; border: 0;
    display: block; padding: 6px 0 2px; margin-top: 6px; border-top: 1px solid var(--line);
  }
  .has-menu:hover .mega, .has-menu:focus-within .mega { transform: none; }
  .mega-group { margin-bottom: 10px; }
  .mega-group h5 {
    display: flex; align-items: center; gap: 8px;
    margin: 12px 0 4px; padding: 0 10px 8px;
  }
  .mega-group h5::before {
    content: ""; width: 8px; height: 8px; border-radius: 3px;
    background: var(--suite, var(--blue)); flex: 0 0 auto;
  }
  .mega a { padding: 9px 10px; align-items: center; }
  .mega a em { display: none; }
  .mega-ic { width: 34px; height: 34px; border-radius: 9px; }
  .mega-ic .icon { width: 18px; height: 18px; }

  .nav-foot {
    display: block; padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
  }
  .nav-foot .btn-primary { display: flex; width: 100%; margin: 0; padding: .85rem 1.5rem; font-size: .98rem; }
  .hero-grid, .platform-panel, .intro-grid, .feature-grid, .footer-grid,
  .product-grid, .related-grid, .info-grid.cols-2, .cta-split { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 56px 96px; }
  .hero-art { max-width: 540px; margin: 0 auto; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .platform-visual { display: none; }
  .p-band { margin: 150px 12px 0; }
  .p-shot { margin-top: -120px; }
  .cta-split { padding: 40px 28px; text-align: left; }
}
@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .info-grid.cols-3, .info-grid.cols-4, .stats-band { grid-template-columns: 1fr; }
  .stats-band { transform: translateY(-40px); gap: 12px; }
  .platform-panel { padding: 36px 22px; }
  .big-cta .cta-inner-2 { padding: 52px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ---------- trial request modal ---------- */
.ts-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 42, 67, .55); padding: 2vh 16px; overflow-y: auto;
}
.ts-overlay.is-open { display: flex; }
.ts-panel {
  background: #fff; border-radius: var(--r-panel); width: 100%; max-width: 860px;
  padding: 26px 34px 30px; box-shadow: var(--shadow-lg); position: relative;
  max-height: 96vh; overflow-y: auto;
}
.ts-close {
  position: absolute; top: 18px; right: 20px; border: 0; background: none; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--muted); padding: 6px;
}
.ts-close:hover { color: var(--ink); }
.ts-panel h2 { text-align: center; font-size: 1.4rem; margin-bottom: 14px; }
.ts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-bottom: 10px; }
.ts-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.ts-field { display: flex; flex-direction: column; gap: 3px; }
.ts-field label { font-weight: 600; font-size: .86rem; color: var(--ink); }
.ts-field label .req { color: #d64545; }
.ts-field input, .ts-field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 9px; padding: 7px 11px; background: #fff;
}
.ts-field input:focus, .ts-field textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.ts-error { color: #d64545; font-size: .8rem; }
.ts-optional { margin: 6px 0 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.ts-optional > summary {
  cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--blue-700);
  list-style: none; display: inline-flex; align-items: center; gap: 8px; user-select: none;
}
.ts-optional > summary::-webkit-details-marker { display: none; }
.ts-optional > summary::before {
  content: "+"; display: inline-grid; place-items: center; width: 18px; height: 18px;
  border: 1px solid var(--line); border-radius: 5px; font-weight: 700; line-height: 1; color: var(--blue-700);
}
.ts-optional[open] > summary::before { content: "\2212"; }
.ts-optional-body { padding-top: 14px; }

.ts-combo { position: relative; }
.ts-combo-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 20;
  margin: 0; padding: 4px; list-style: none; background: #fff;
  border: 1px solid var(--line); border-radius: 9px; box-shadow: var(--shadow-md);
  max-height: 220px; overflow-y: auto;
}
.ts-combo-list[hidden] { display: none; }
.ts-combo-list li {
  padding: 7px 10px; border-radius: 6px; cursor: pointer; font-size: .92rem; color: var(--ink);
}
.ts-combo-list li[hidden] { display: none; }
.ts-combo-list li.is-active, .ts-combo-list li:hover { background: var(--sky); }
.ts-combo-intl { margin-top: 4px; border-top: 1px solid var(--line); font-weight: 600; color: var(--blue-700); }

.ts-apps { margin: 2px 0 10px; }
.ts-apps > span { display: block; font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: 6px; }
.ts-checks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px 16px; }
.ts-checks label { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--ink); cursor: pointer; }
.ts-checks input { width: 17px; height: 17px; accent-color: var(--blue); }
.ts-submit {
  width: 100%; border: 0; cursor: pointer; border-radius: 10px;
  background: var(--blue); color: #fff; font-family: var(--font-body);
  font-size: .98rem; font-weight: 600; padding: 11px; transition: background .15s ease;
}
.ts-submit:hover { background: var(--blue-700); }
.ts-form-error {
  background: #fdf1f1; border: 1px solid #f2c6c6; color: #a83232;
  border-radius: 10px; padding: 12px 14px; font-size: .92rem; margin-bottom: 16px;
}

/* ---------- welcome (post-trial) modal ---------- */
.ts-welcome { max-width: 560px; text-align: center; }
.ts-welcome-check {
  width: 64px; height: 64px; margin: 4px auto 18px; border-radius: 50%;
  border: 3px solid #16a34a; display: grid; place-items: center; color: #16a34a;
}
.ts-welcome-check svg { width: 30px; height: 30px; }
.ts-welcome h2 { margin-bottom: 10px; }
.ts-welcome p { color: var(--body-c); }
.ts-welcome .accent { color: var(--blue); font-weight: 600; }
.ts-getstarted {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 24px; margin-top: 22px;
}
.ts-getstarted h3 { font-size: 1.15rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ts-getstarted .ts-submit { margin-top: 14px; }

/* ---------- university iframe page ---------- */
/* width:1px + min-width:100% defeats iOS Safari's expand-iframe-to-content
   sizing, which otherwise renders the embed at desktop width on phones. */
.university-frame {
  display: block; width: 1px; min-width: 100%; height: calc(100vh - 111px);
  border: 0; background: #fff;
}

@media (max-width: 720px) {
  .ts-grid, .ts-grid.cols-3, .ts-checks { grid-template-columns: 1fr; }
  .ts-panel { padding: 28px 20px; }
}

/* ---------- what's new carousel ---------- */
[id] { scroll-margin-top: 124px; }
.news-carousel { display: flex; align-items: center; gap: 14px; }
.news-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; flex: 1; padding: 4px;
}
.news-track::-webkit-scrollbar { display: none; }
.news-track .news-item { scroll-snap-align: start; display: flex; flex-direction: column; }
.news-item h3 {
  font-size: 1.02rem; margin: 0 0 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-item p {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  font-size: .93rem;
}
.news-nav {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background .15s ease, transform .12s ease;
}
.news-nav:hover { background: var(--sky); transform: translateY(-1px); }
.news-nav svg { width: 20px; height: 20px; }
@media (max-width: 900px) {
  .news-track { grid-auto-columns: calc((100% - 18px) / 2); }
}
@media (max-width: 620px) {
  .news-track { grid-auto-columns: 88%; }
  .news-nav { display: none; }
}

/* ---------- pricing tables (kept compact: the section should fit one screen) ---------- */
.pricing-section { padding: 40px 0 46px; }
.pricing-section .section-head { margin-bottom: 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 24px 24px 22px; box-shadow: var(--shadow-sm); text-align: center;
  display: flex; flex-direction: column;
}
.price-card.is-highlighted {
  border: 2px solid var(--blue); box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .09em; color: #fff; background: var(--blue);
  padding: 5px 14px 4px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.price-blurb { font-size: .88rem; color: var(--body-c); margin-bottom: 8px; }
.price-line { margin: 0 0 14px; }
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--ink); letter-spacing: -.02em; }
.price-note { font-size: .92rem; color: var(--muted); margin-left: 8px; }
.price-card .btn { width: 100%; padding-block: .55rem; }
.price-features { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 5px; text-align: left; }
.price-features li { position: relative; padding-left: 24px; font-size: .85rem; line-height: 1.35; color: var(--ink); }
.price-features li::before { content: ""; position: absolute; left: 0; top: 1px; width: 15px; height: 15px; border-radius: 50%;
  background: color-mix(in srgb, #16a34a 14%, #fff); }
.price-features li::after { content: ""; position: absolute; left: 4px; top: 6px; width: 5px; height: 3px;
  border-left: 2px solid #16a34a; border-bottom: 2px solid #16a34a; transform: rotate(-45deg); }
.price-closing { margin-top: 26px; font-weight: 500; font-size: .92rem; color: var(--body-c); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin-inline: auto; }
@media (max-width: 900px) { .pricing-grid.two { grid-template-columns: 1fr; max-width: 480px; } }

.pricing-grid.one { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

/* ---------- video modal ---------- */
#video-modal { align-items: center; }
.vm-panel { position: relative; width: min(960px, 94vw); }
.vm-frame { aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.vm-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vm-close { top: -40px; right: -6px; color: #fff; font-size: 1.9rem; }
.vm-close:hover { color: #cbd5e1; }

/* ---------- hero proof bar (social proof) ---------- */
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.proof-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500; color: #dceaf6;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; padding: 6px 13px;
}
.proof-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #7fc0ee;
}
.proof-chip a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- section badge (published-pricing trust mark) ---------- */
.section-badge {
  display: inline-block; margin-bottom: 12px;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .09em; color: var(--blue-700); background: var(--sky);
  border: 1px solid var(--line); padding: 5px 13px; border-radius: 999px;
}

/* ---------- form reassurance + honeypot + success ---------- */
.ts-reassure { margin: 10px 0 0; font-size: .8rem; color: var(--muted); text-align: center; }
.ts-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ts-form-success {
  background: #eefaf1; border: 1px solid #b7e3c4; color: #1b7a3d;
  border-radius: 10px; padding: 14px 16px; font-size: .95rem;
}

/* ---------- thank-you (post-submission) page ---------- */
.thankyou-section { padding-top: 72px; }
.thankyou-card { text-align: center; max-width: 620px; }
.thankyou-check {
  width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
  border: 3px solid #16a34a; display: grid; place-items: center; color: #16a34a;
}
.thankyou-check svg { width: 34px; height: 34px; }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 12px; }
.thankyou-lede { font-size: 1.1rem; color: var(--body-c); margin: 0 auto 18px; max-width: 480px; }
.thankyou-redirect { color: var(--ink); margin: 0 0 22px; }
.thankyou-actions { margin-bottom: 14px; }
.thankyou-fallback { font-size: .9rem; color: var(--muted); }
.thankyou-fallback a { color: var(--blue); }

/* ---------- contact page ---------- */
.contact-section { padding-top: 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-intro .section-title { text-align: left; }
.contact-intro .section-lede { text-align: left; margin-top: 14px; }
.contact-points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.contact-points li { color: var(--body-c); font-size: .95rem; }
.contact-points strong { display: inline-block; width: 58px; color: var(--ink); }
.contact-points a { color: var(--blue); }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.contact-card form { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
