:root {
  --navy: #1a3c5e;
  --navy-2: #0c2d4a;
  --ink: #1a1a2e;
  --muted: #64707f;
  --soft: #f4f7fa;
  --paper: #ffffff;
  --line: #d6dce5;
  --line-dark: #b5c4d4;
  --blue-soft: #e6f1fb;
  --blue-mid: #b5d4f4;
  --blue-focus: #7eb3e0;
  --success: #dff5ea;
  --amber: #fff4d6;
  --danger: #fde8e8;
  --bg: #d5d5d5;
  --bg-soft: #eef3f7;
  --border: var(--line);
  --accent: var(--navy);
  --accent-strong: var(--navy-2);
  --max: 72rem;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); }
a:hover { color: var(--navy-2); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container.narrow { max-width: 46rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 0.6rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.8rem;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  z-index: 100;
  outline: 2px solid var(--blue-focus);
  outline-offset: 2px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.site-nav .inner {
  min-height: 56px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7px 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26), 0 5px 14px rgba(2, 16, 30, 0.24);
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
}
.nav-links li { display: inline-flex; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  padding: 8px 11px;
  transition: background 120ms ease, border-color 120ms ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

main { background: var(--bg); }
.home-page main { padding: 22px 0 0; }

.hero {
  padding: 3.25rem 0 2.5rem;
  background: linear-gradient(180deg, #f8fafc, #eef3f7);
  border-bottom: 1px solid var(--line);
}
.product-hero {
  padding: 0 0 24px;
  border-bottom: 0;
  background: transparent;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 670px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(230, 241, 251, 0.82) 0, rgba(230, 241, 251, 0.82) 38%, transparent 38%),
    #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.hero-logo {
  width: min(100%, 410px);
  height: auto;
  margin: 0 0 28px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1,
.product-hero h1 {
  margin: 0;
  max-width: 620px;
  color: #142c47;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 760;
}
.hero p.lede,
.lede {
  margin: 24px 0 26px;
  max-width: 560px;
  color: #334155;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 500;
}
.small-note {
  margin: 18px 0 0;
  max-width: 510px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
  max-width: 560px;
}
.hero-metrics span {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(26, 60, 94, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #24445d;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04);
}
.hero-metrics b {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.cta-row,
.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 9px 13px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease, transform 80ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: #244b73; border-color: #244b73; color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-dark);
}
.btn-secondary:hover { background: var(--blue-soft); border-color: var(--blue-mid); color: var(--navy); }

.product-canvas {
  position: relative;
  min-height: 670px;
  padding: 28px;
  background:
    linear-gradient(rgba(26, 60, 94, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 60, 94, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc, #eef3f7);
  background-size: 34px 34px, 34px 34px, auto;
  overflow: hidden;
}
.app-window {
  position: absolute;
  inset: 34px 30px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.app-toolbar {
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  color: #fff;
}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 650;
}
.pill-btn img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}
.pill-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: #0c447c;
  font-size: 11px;
  font-weight: 800;
}
.toolset { display: flex; gap: 6px; }
.toolset span {
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 650;
}
.app-body {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: calc(100% - 48px);
  background: #fff;
}
.app-sidebar {
  border-right: 1px solid var(--line);
  background: #fbfcfd;
  padding: 13px;
}
.sec-title {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 800;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 5px;
  margin: 0 0 10px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.fake-field small {
  display: block;
  margin-bottom: 3px;
  color: #777;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fake-field b {
  min-height: 26px;
  border-bottom: 1px solid #bbb;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 3px;
}
.status-box {
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-soft);
  padding: 10px;
  color: #0c447c;
  font-size: 12px;
  font-weight: 700;
}
.status-box.light { background: #fff; }
.status-box span { display: block; color: #486477; font-size: 11px; font-weight: 500; margin-top: 3px; }
.module-stack {
  margin-top: 16px;
  display: grid;
  gap: 7px;
}
.module-stack span {
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #536879;
  font-size: 11px;
  font-weight: 750;
}
.module-stack .current {
  color: #0c447c;
  background: var(--blue-soft);
  border-color: var(--blue-mid);
}
.chart-preview { padding: 14px; min-width: 0; border-bottom: 0; }
.chart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.chart-head h2 { margin: 0; color: var(--navy); font-size: 20px; letter-spacing: 0; }
.chart-head span { color: var(--navy); font-size: 13px; font-weight: 700; }
.record-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 10px;
}
.record-strip span {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde0f3;
  border-radius: 7px;
  background: #f2f8ff;
  color: #164a73;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chart-grid { border: 1.5px solid var(--navy); border-radius: 8px; overflow: hidden; background: #fff; }
.time-row { display: grid; grid-template-columns: 76px repeat(4, 1fr); background: #f0f5ff; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 10px; font-weight: 800; }
.time-row span { padding: 7px 6px; border-right: 1px solid var(--line); }
.time-row span:last-child { border-right: 0; }
.graph-area { display: grid; grid-template-columns: 76px 1fr; min-height: 260px; }
.labels { border-right: 1px solid var(--line); background: #fbfcfd; }
.labels span { display: block; height: 65px; padding: 8px 6px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.plot { position: relative; background-image: linear-gradient(#d6dce5 1px, transparent 1px), linear-gradient(90deg, #d6dce5 1px, transparent 1px); background-size: 100% 65px, 25% 100%; }
.line { position: absolute; left: 9%; right: 8%; height: 3px; border-radius: 999px; background: var(--navy); opacity: 0.86; }
.line.one { top: 26%; transform: rotate(-2deg); }
.line.two { top: 43%; background: #d04848; transform: rotate(1.2deg); }
.line.three { top: 60%; background: #22a06b; transform: rotate(-1deg); }
.med-row { display: grid; grid-template-columns: 76px repeat(4, 1fr); border-top: 1px solid var(--line); font-size: 10px; }
.med-row span { min-height: 34px; padding: 6px; border-right: 1px solid var(--line); }
.med-row span:first-child { color: var(--navy); font-weight: 800; background: #fbfcfd; text-transform: uppercase; }
.dose { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; min-height: 20px; border-radius: 4px; background: var(--blue-soft); color: var(--navy); font-weight: 800; }
.floating-card {
  position: absolute;
  right: 44px;
  bottom: 38px;
  width: min(315px, 42%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  padding: 14px;
  z-index: 4;
}
.floating-card h3 { margin: 0 0 7px; color: var(--navy); font-size: 16px; letter-spacing: 0; }
.floating-card p { margin: 0; color: #52616f; font-size: 13px; line-height: 1.35; }

section {
  padding: 3.75rem 0;
  border-bottom: 1px solid rgba(26, 60, 94, 0.12);
  background: #fff;
}
.home-page section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
section:last-of-type { border-bottom: 0; }
section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  margin: 0 0 0.65rem;
  color: #142c47;
  line-height: 1.06;
  letter-spacing: 0;
}
.section-title {
  margin: 0 0 28px;
  max-width: 820px;
  color: #142c47;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 760;
}
.section-lede {
  color: var(--muted);
  max-width: 46rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}
.grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04), 0 8px 22px rgba(15, 23, 32, 0.06);
}
.card h3 { font-size: 1.08rem; margin: 0 0 0.45rem; color: var(--navy); letter-spacing: 0; }
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.card-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #0c447c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.feature-card { min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; }
.active-module { border-color: var(--blue-mid); background: linear-gradient(180deg, #fff, #f5faff); }
.brand-assets-card {
  margin-top: 16px;
  padding: clamp(18px, 3vw, 26px);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  border: 1px solid rgba(26, 60, 94, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff, #ffffff 46%, #eef6ff);
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04), 0 12px 30px rgba(15, 23, 32, 0.07);
}
.brand-assets-card h3 {
  margin: 0 0 8px;
  color: #142c47;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.brand-assets-card p:not(.section-kicker) { margin: 0; color: var(--muted); }
.asset-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 12px;
  align-items: center;
}
.asset-preview img {
  width: 100%;
  height: auto;
  padding: 14px;
  border: 1px solid rgba(26, 60, 94, 0.12);
  border-radius: 8px;
  background: #fff;
}
.asset-preview img:last-child { padding: 8px; }
.card-link { text-decoration: none; color: var(--ink); display: block; transition: transform 0.08s ease, border-color 0.12s ease, box-shadow 0.12s ease; }
.card-link:hover { border-color: var(--blue-mid); transform: translateY(-2px); color: var(--ink); box-shadow: var(--shadow); }
.card-link .card-more { display: inline-block; margin-top: 0.75rem; color: var(--navy); font-weight: 800; font-size: 0.92rem; }
.soft-section { background: linear-gradient(180deg, #f8fafc, #edf3f8); }
.workflow-layout,
.split-section,
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.process-list li {
  display: grid;
  grid-template-columns: 52px 110px 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04);
}
.process-list span { color: var(--navy); font-weight: 800; font-size: 13px; }
.process-list strong { color: var(--ink); }
.process-list p { margin: 0; color: var(--muted); font-size: 0.93rem; }
.compact-card { box-shadow: none; }
.contact-section { background: var(--navy); color: #fff; }
.contact-section .section-kicker,
.contact-section h2,
.contact-section .section-lede { color: #fff; }
.contact-card { align-items: center; }
.contact-card .contact-actions { justify-content: flex-start; }
.contact-card .notice { grid-column: 1 / -1; }
.notice {
  background: var(--blue-soft);
  border-left: 3px solid var(--navy);
  padding: 0.9rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #466174;
  font-size: 0.95rem;
}
.notice-warn { background: #fff8e6; border-left-color: #c78a00; color: #5a3a00; margin-top: 1rem; }
.placeholder-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fff4d6;
  color: #7a5a00;
  border: 1px solid #f0dfa4;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.page-head {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #f8fafc, #eef3f7);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  margin: 0.15rem 0 0.75rem;
  color: #142c47;
  letter-spacing: 0;
  line-height: 0.98;
}
.page-head .lede { font-size: 1.12rem; color: #334155; max-width: 48rem; margin: 0; letter-spacing: 0; }
.doc { padding: 3rem 0; max-width: 48rem; }
.doc h1 { margin-top: 0; letter-spacing: 0; color: #142c47; }
.doc h2 { margin-top: 2rem; font-size: 1.2rem; letter-spacing: 0; }
.doc p,
.doc li { color: var(--ink); }
ul.clean { padding-left: 1.1rem; }
ul.clean li { margin: 0.45rem 0; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.timeline-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.1rem 0.9rem;
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04), 0 8px 22px rgba(15, 23, 32, 0.06);
}
.timeline-step { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; }
.timeline-body h3 { margin: 0 0 0.35rem; font-size: 1.05rem; color: var(--navy); }
.timeline-body p { margin: 0 0 0.5rem; color: var(--ink); font-size: 0.98rem; }
.timeline-body p:last-child { margin-bottom: 0; }
.timeline-body .note { background: var(--blue-soft); border-left: 3px solid var(--navy); padding: 0.6rem 0.8rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.95rem; color: #466174; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.3rem 1rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04), 0 8px 22px rgba(15, 23, 32, 0.06);
}
.qa summary { cursor: pointer; list-style: none; padding: 0.75rem 0; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-weight: 400; font-size: 1.3rem; color: var(--muted); line-height: 1; }
.qa[open] summary::after { content: "-"; }
.qa-body { padding: 0 0 0.9rem; color: var(--ink); }
.qa-body p { margin: 0 0 0.5rem; }
.qa-body p:last-child { margin-bottom: 0; }
.qa-pending { color: var(--muted); }
.qa-pending .placeholder-tag { margin-left: 0; margin-right: 0.5rem; }

footer.site-foot { padding: 2rem 0 3rem; color: #5d6977; font-size: 0.92rem; background: var(--bg); }
footer.site-foot .inner { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: space-between; align-items: center; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; flex-wrap: wrap; }
.foot-links li { display: inline-flex; }
.foot-links a { color: #5d6977; text-decoration: none; }
.foot-links a:hover { color: var(--navy); }

a:focus-visible,
.btn:focus-visible,
summary:focus-visible,
.card-link:focus-visible {
  outline: 2px solid var(--blue-focus);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (max-width: 68rem) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-canvas { min-height: 620px; }
}

@media (max-width: 52rem) {
  .site-nav .inner { align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 5px; }
  .grid-2,
  .grid-3,
  .workflow-layout,
  .split-section,
  .contact-card,
  .brand-assets-card { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 44px 1fr; }
  .process-list p { grid-column: 2; }
  .home-page section { width: calc(100% - 1.5rem); }
}

@media (max-width: 42rem) {
  body { font-size: 16px; }
  .container { padding: 0 1rem; }
  .home-page main { padding-top: 12px; }
  .hero-grid { border-radius: 0; border-left: 0; border-right: 0; }
  .hero-copy { padding: 32px 22px; }
  .hero h1,
  .product-hero h1 { font-size: clamp(38px, 13vw, 58px); }
  .hero p.lede,
  .lede { font-size: 18px; }
  .hero-logo { width: min(100%, 330px); margin-bottom: 22px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .product-canvas { min-height: 520px; padding: 12px; }
  .app-window { position: relative; inset: auto; min-height: 480px; }
  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .record-strip { grid-template-columns: 1fr; }
  .toolset span:nth-child(3) { display: none; }
  .floating-card { right: 22px; bottom: 22px; width: calc(100% - 44px); }
  .asset-preview { grid-template-columns: 1fr 76px; }
  section { padding: 2.5rem 0; }
  .home-page section { border-radius: 8px; }
  .section-title { font-size: clamp(31px, 10vw, 46px); }
}

@media print {
  .site-nav,
  .skip-link,
  .contact-actions,
  .notice-warn,
  footer.site-foot { display: none; }
  body,
  main,
  section,
  .home-page section { color: #000; background: #fff; font-size: 12pt; box-shadow: none; border: 0; width: auto; margin: 0; }
  a { color: #000; text-decoration: underline; }
  .hero,
  .page-head { background: none; border-bottom: 1px solid #999; padding: 0.5in 0 0.25in; }
  section { padding: 0.25in 0; border-bottom: 1px solid #ccc; }
  .card,
  .qa,
  .timeline-item { break-inside: avoid; box-shadow: none; border-color: #ccc; }
  .product-canvas { display: none; }
}
