:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #586a7d;
  --soft: #f3f7f9;
  --paper: #ffffff;
  --line: #d7e2e8;
  --navy: #102033;
  --teal: #16898f;
  --teal-dark: #09656b;
  --blue: #2f6f9f;
  --green: #347861;
  --amber: #b7791f;
  --rose: #a13a30;
  --shadow: 0 20px 54px rgba(16, 32, 51, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8fbfc;
  line-height: 1.58;
  overflow-x: hidden;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.wrap {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 232, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a,
.nav-actions a {
  color: #25384c;
  font-weight: 650;
}

.nav-actions {
  gap: 12px;
}

.button,
button.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 16px;
  font: inherit;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: #bdd0da;
  color: var(--ink);
}

.button.dark {
  background: var(--navy);
  color: #ffffff;
}

.button:hover {
  text-decoration: none;
  filter: brightness(0.97);
}

.hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fa 100%);
  border-bottom: 1px solid var(--line);
}

.hero .wrap {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: center;
  padding: 64px 0 76px;
}

.hero .wrap > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  display: inline;
}

.lead {
  margin: 20px 0 0;
  max-width: 660px;
  color: #40566c;
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.product-visual {
  min-width: 0;
  border: 1px solid #c7d7df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--navy);
}

.visual-topbar strong {
  font-size: 14px;
}

.visual-pill {
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.visual-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 410px;
}

.visual-side {
  border-right: 1px solid var(--line);
  background: #f4f8fa;
  padding: 16px 12px;
}

.visual-side span {
  display: block;
  border-radius: 6px;
  padding: 10px 12px;
  color: #44596c;
  font-size: 13px;
  font-weight: 700;
}

.visual-side span.active {
  background: #dff3f1;
  color: var(--teal-dark);
}

.visual-main {
  min-width: 0;
  padding: 18px;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.visual-metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.visual-metric strong {
  display: block;
  font-size: 22px;
}

.visual-metric span {
  color: var(--muted);
  font-size: 12px;
}

.visual-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.visual-row {
  display: grid;
  grid-template-columns: 1fr 120px 92px;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: #40566c;
  font-size: 13px;
}

.visual-row:last-child {
  border-bottom: 0;
}

.visual-row.header {
  background: #f6f9fa;
  color: var(--ink);
  font-weight: 760;
}

.hero-image-card {
  position: relative;
  min-width: 0;
  min-height: 430px;
  border: 1px solid #c7d7df;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.hero-image-card img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-image-card picture {
  display: block;
}

.product-preview-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #c7d7df;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #102033;
}

.product-preview-card picture,
.product-preview-card img {
  display: block;
}

.product-preview-card picture {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-preview-card img {
  width: 100%;
  inline-size: 100%;
  height: auto;
  max-width: 100%;
  max-inline-size: 100%;
  aspect-ratio: 1440 / 1040;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0.02) 0%, rgba(16, 32, 51, 0.76) 100%);
  pointer-events: none;
}

.image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
  color: #ffffff;
  background: rgba(16, 32, 51, 0.74);
  backdrop-filter: blur(8px);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.product-preview-card .image-caption {
  background: rgba(16, 32, 51, 0.82);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--teal-dark);
  background: #dff3f1;
  font-size: 12px;
  font-weight: 760;
}

.tag.warn {
  color: #76500f;
  background: #f8e9cb;
}

section {
  padding: 76px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.section-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.band {
  background: #eef5f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.two-three {
  grid-template-columns: repeat(3, 1fr);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.tier,
.notice,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 32, 51, 0.03);
}

.card {
  padding: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff3f1;
  font-weight: 850;
}

/* Shared icon system: same Lucide-style stroke icons as the portal sidebar
   (portal.html .nav-icon svg — 1.8 stroke, round caps/joins, currentColor). */
.icon-box svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentcolor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.step-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 820;
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--muted);
}

.check {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #dff3f1;
  font-weight: 900;
  font-size: 14px;
}

.split.reverse {
  align-items: center;
}

.record-panel {
  border: 1px solid #c7d7df;
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.record-panel h3 {
  margin: 14px 0 18px;
  font-size: 24px;
  line-height: 1.18;
}

.record-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.record-panel div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.record-panel dt,
.record-panel dd {
  margin: 0;
}

.record-panel dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.record-panel dd {
  color: var(--ink);
  font-weight: 760;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #bdd0da;
  border-radius: 999px;
  padding: 0 14px;
  color: #315068;
  background: #ffffff;
  font-size: 14px;
  font-weight: 720;
}

.security-strip .section-head {
  margin-bottom: 24px;
}

.cta-band {
  background: var(--navy);
  color: #ffffff;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  color: #ffffff;
  max-width: 760px;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.page-hero {
  background: var(--navy);
  color: #ffffff;
}

.page-hero .wrap {
  padding: 58px 0 64px;
}

.page-hero h1 {
  color: #ffffff;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 58px);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-shell {
  padding: 44px 0 72px;
}

.resource-list {
  display: grid;
  gap: 16px;
}

.resource-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  margin-bottom: 24px;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c9d8e0;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.search-box input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 137, 143, 0.14);
}

.category-select {
  min-height: 48px;
  border: 1px solid #c9d8e0;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.category-tabs button {
  flex: 0 0 auto;
  border: 1px solid #bdd0da;
  border-radius: 999px;
  padding: 7px 11px;
  color: #365066;
  background: #ffffff;
  font-size: 13px;
  font-weight: 720;
  font: inherit;
  cursor: pointer;
}

.category-tabs button:hover,
.category-tabs button.active {
  border-color: var(--teal);
  color: var(--teal-dark);
  text-decoration: none;
}

.resource-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.resource-item h2,
.resource-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.resource-item p {
  margin: 0;
  color: var(--muted);
}

.resource-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.resource-meta .tag,
.card-meta .tag {
  background: #eef5f7;
  color: #40566c;
}

.role-strip,
.workflow-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.role-card,
.workflow-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.role-card:hover,
.workflow-card:hover {
  text-decoration: none;
  border-color: #9fc0ca;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
}

.role-card h3,
.workflow-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.22;
}

.role-card p,
.workflow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  font-weight: 850;
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.workflow-map div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.workflow-map strong {
  display: block;
  margin-bottom: 6px;
}

.workflow-map p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.toc strong {
  display: block;
  margin-bottom: 8px;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: #40566c;
  font-size: 14px;
}

.guide-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.guide-section {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 26px;
}

.guide-section h2 {
  font-size: 28px;
}

.guide-section h3 {
  margin: 18px 0 8px;
}

.guide-section p,
.guide-section li {
  color: #465b70;
}

.guide-section a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.guide-section ul,
.guide-section ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.guide-section li + li {
  margin-top: 7px;
}

.guide-cta {
  border: 1px solid #bdd0da;
  border-radius: 8px;
  padding: 24px;
  color: var(--ink);
  background: #f1f8fb;
}

.guide-cta h2,
.guide-cta h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.guide-cta p {
  margin: 0 0 16px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tier {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
}

.tier.recommended {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(22, 137, 143, 0.16);
}

.tier .label {
  align-self: flex-start;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #ffffff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier h2 {
  font-size: 21px;
}

.price {
  margin: 12px 0 2px;
  font-size: 32px;
  font-weight: 820;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.tier .fit {
  min-height: 72px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
}

.tier ul {
  flex: 1;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.tier li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  padding: 6px 0;
}

.tier li::before {
  content: "✓";
  color: var(--teal-dark);
  font-weight: 850;
}

.notice {
  padding: 20px 22px;
  color: #315068;
  background: #f1f8fb;
}

.notice.warn {
  color: #6e4a12;
  background: #fff7e8;
  border-color: #f1d59b;
}

.notice h2,
.notice h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.notice p {
  margin: 0;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: #f6f9fa;
  font-size: 14px;
}

.comparison-table td {
  color: #465b70;
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.status.testing {
  color: var(--teal-dark);
  background: #dff3f1;
}

.status.planned {
  color: #76500f;
  background: #f8e9cb;
}

.status.future {
  color: #40566c;
  background: #e9f0f3;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-card {
  padding: 32px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #c9d8e0;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 137, 143, 0.14);
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.simple-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  background: #ffffff;
  font-size: 14px;
}

.simple-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #40566c;
  font-weight: 650;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    gap: 12px 16px;
  }

  .nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-actions {
    justify-content: space-between;
  }

  .hero .wrap,
  .split,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    min-height: auto;
    padding: 48px 0 56px;
  }

  .toc {
    position: static;
  }

  .pricing-grid,
  .role-strip,
  .workflow-strip,
  .value-strip,
  .grid.two-three,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-body {
    grid-template-columns: 1fr;
  }

  .visual-side {
    display: none;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 16px;
    max-width: 34ch;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.4;
  }

  .hero h1 span {
    display: block;
  }

  .trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .grid,
  .grid.two,
  .grid.four,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 54px 0;
  }

  .cta-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-metrics,
  .visual-row {
    grid-template-columns: 1fr;
  }

  .visual-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .hero-image-card {
    min-height: 300px;
  }

  .hero-image-card img {
    height: 300px;
  }

  .product-preview-card .image-caption {
    position: static;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 14px;
  }

  .product-preview-card,
  .product-preview-card picture,
  .product-preview-card img {
    max-width: calc(100vw - 28px);
  }

  .product-preview-card picture {
    padding: 14px 14px 0;
  }

  .product-preview-card img {
    width: 82%;
    inline-size: 82%;
    margin: 0 auto;
    aspect-ratio: 720 / 520;
    border: 1px solid #c7d7df;
    border-radius: 8px;
  }

  .visual-table {
    min-width: 0;
  }

  .resource-item {
    grid-template-columns: 1fr;
  }

  .resource-tools,
  .workflow-map {
    grid-template-columns: 1fr;
  }

  .role-strip,
  .workflow-strip,
  .value-strip,
  .grid.two-three {
    grid-template-columns: 1fr;
  }

  .record-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-card {
    padding: 24px;
  }

  .guide-section {
    padding: 22px;
  }

  .guide-section li,
  .guide-section p {
    overflow-wrap: anywhere;
  }
}
