:root {
  --graphite: #171a1f;
  --graphite-soft: #22272f;
  --signal-lime: #b7f34a;
  --signal-green: #4f7d00;
  --operational-green: #2fbf71;
  --amber: #f4b740;
  --critical-red: #e05252;
  --off-white: #f5f6f7;
  --surface: #ffffff;
  --surface-muted: #eef1f3;
  --ink: #101318;
  --muted: #5f6873;
  --line: #dce1e5;
  --line-dark: #343a43;
  --shadow: 0 22px 58px rgba(23, 26, 31, 0.11);
  --radius: 16px;
  --radius-small: 10px;
  --page: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#product,
#how-it-works,
#outputs,
#pricing {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--graphite);
  background: var(--signal-lime);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--graphite);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--operational-green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(220, 225, 229, 0.88);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner,
.page-shell {
  width: min(calc(100% - 40px), var(--page));
  margin-inline: auto;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--graphite);
  font-family: Manrope, Inter, sans-serif;
  font-size: 23px;
  font-weight: 420;
  letter-spacing: -0.035em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand strong {
  font-size: 25px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #303640;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: #5f8f0a;
}

.header-actions,
.hero-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.actions-top {
  margin-top: 24px;
}

.actions-top-small {
  margin-top: 20px;
}

.actions-centred {
  justify-content: center;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--graphite);
  background: var(--surface);
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  border-color: #aeb6bd;
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--signal-green);
  background: var(--signal-lime);
}

.button.primary:hover {
  background: #a9ec31;
}

.button.dark {
  border-color: var(--graphite);
  color: var(--surface);
  background: var(--graphite);
}

.button.quiet {
  border-color: transparent;
  background: transparent;
}

.button .arrow {
  font-size: 19px;
  line-height: 1;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #343a43;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-lime);
  content: "";
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
  padding: 72px 0 58px;
}

.hero h1,
.subpage-hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--graphite);
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.062em;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(50px, 6.1vw, 82px);
  font-weight: 730;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--signal-green);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 28px;
  color: #4b535d;
  font-size: clamp(17px, 1.5vw, 21px);
}

.trust-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #4f5761;
  font-size: 13px;
  font-weight: 650;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list li::before {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid var(--signal-green);
  border-radius: 50%;
  color: #5f9200;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.product-preview {
  min-width: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #cfd5da;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preview-rail {
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
  color: #d9dee3;
  background: var(--graphite);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px 22px;
  color: var(--surface);
  font-size: 13px;
}

.preview-brand img {
  width: 26px;
  height: 26px;
}

.preview-brand strong {
  font-style: italic;
}

.preview-menu {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.preview-menu li {
  padding: 9px 10px;
  border-radius: 8px;
}

.preview-menu li:first-child {
  color: var(--signal-lime);
  background: #2b3037;
}

.preview-person {
  margin-top: auto;
  padding: 14px 8px 2px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.preview-main {
  min-width: 0;
  padding: 20px;
  background: #fafbfb;
}

.preview-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.preview-topbar h2 {
  margin: 0 0 2px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.preview-topbar p,
.metric-head span,
.preview-caption {
  margin: 0;
  color: #6f7781;
  font-size: 11px;
}

.preview-tag {
  align-self: start;
  padding: 6px 8px;
  border: 1px solid #dfe4e7;
  border-radius: 999px;
  color: #69717b;
  background: var(--surface);
  font-size: 10px;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid #dfe4e7;
  border-radius: 12px;
  background: var(--surface);
}

.metric-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.metric-head strong {
  font-size: 13px;
}

.readiness-layout {
  display: flex;
  align-items: center;
  gap: 14px;
}

.readiness-ring {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  position: relative;
  background: conic-gradient(var(--signal-lime) 0 82%, #e8ecef 82% 100%);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 800;
}

.readiness-ring::before {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--surface);
  content: "";
}

.readiness-ring span {
  position: relative;
}

.status-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #167d46;
  font-size: 12px;
}

.status-copy p,
.handover-copy,
.module-card p,
.benefit p,
.step p,
.output-card p,
.price-card p,
.legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.coverage-value {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.coverage-value strong {
  font-size: 28px;
  line-height: 1;
}

.coverage-value span {
  font-size: 11px;
  font-weight: 700;
}

.coverage-bar {
  display: grid;
  grid-template-columns: 70fr 19fr 11fr;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e6;
}

.coverage-bar i:first-child {
  background: var(--operational-green);
}

.coverage-bar i:nth-child(2) {
  background: var(--signal-lime);
}

.metric-link {
  display: inline-block;
  margin-top: 10px;
  color: #3f7800;
  font-size: 11px;
  font-weight: 750;
}

.risk-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.risk-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf0f2;
}

.risk-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.risk-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
}

.risk-dot.red { background: var(--critical-red); }
.risk-dot.amber { background: var(--amber); }
.risk-dot.green { background: var(--operational-green); }

.preview-caption {
  grid-column: 1 / -1;
  padding-top: 4px;
  text-align: right;
}

.control-layer {
  margin-bottom: 82px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.control-layer-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 32px;
  align-items: end;
  padding: 24px;
  color: var(--surface);
  background: var(--graphite);
}

.control-layer-kicker {
  margin: 0 0 6px;
  color: var(--signal-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.control-layer-head h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.control-layer-head > p {
  margin: 0;
  color: #d5dae0;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-card {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.module-card:last-child {
  border-right: 0;
}

.module-icon,
.benefit-icon,
.output-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid #cceaa0;
  border-radius: 50%;
  color: #65a000;
  background: #f8ffeb;
}

.module-icon svg,
.benefit-icon svg,
.output-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.module-card h3,
.benefit h3,
.step h3,
.output-card h3,
.price-card h3,
.brief-box h3,
.question-card h2 {
  margin: 0 0 7px;
  color: var(--graphite);
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.025em;
}

.module-card h3 {
  font-size: 15px;
}

.section {
  padding: 76px 0;
}

.section.white {
  background: var(--surface);
}

.section.dark {
  color: var(--surface);
  background: var(--graphite);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

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

.dark .section-heading h2,
.dark .section-heading p {
  color: var(--surface);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit,
.output-card,
.price-card,
.question-card,
.brief-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.benefit h3 {
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: process;
}

.step {
  position: relative;
  padding: 24px 20px;
  border: 1px solid #343a43;
  border-radius: var(--radius);
  background: var(--graphite-soft);
  counter-increment: process;
}

.step::before {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--graphite);
  background: var(--signal-lime);
  content: counter(process, decimal-leading-zero);
  font-size: 11px;
  font-weight: 850;
}

.step h3 {
  color: var(--surface);
  font-size: 16px;
}

.step p {
  color: #bfc6cd;
}

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

.output-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.output-card h3 {
  font-size: 20px;
}

.output-demo {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.output-line,
.message-preview,
.handover-preview {
  padding: 10px 11px;
  border: 1px solid #e2e6e9;
  border-radius: 9px;
  color: #4b535d;
  background: #f8f9fa;
  font-size: 12px;
}

.output-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.message-preview strong,
.handover-preview strong {
  display: block;
  margin-bottom: 4px;
  color: var(--graphite);
}

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

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--signal-green);
}

.price-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #426e00;
  background: #ebffd0;
  font-size: 11px;
  font-weight: 800;
}

.price-card h3 {
  font-size: 20px;
}

.price {
  margin: 8px 0 10px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 38px;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: #4e5660;
  font-size: 13px;
}

.price-list li::before {
  margin-right: 8px;
  color: #5b9200;
  content: "✓";
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.legal-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #eef1f3;
}

.legal-note strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--graphite);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin: 80px 0;
  padding: 42px;
  border-radius: 22px;
  color: var(--surface);
  background: var(--graphite);
}

.final-cta h2 {
  color: var(--surface);
}

.final-cta p {
  margin: 10px 0 0;
  color: #c5cbd1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-copy {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
  color: #434b55;
  font-size: 13px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: var(--graphite);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: #6e7680;
  font-size: 12px;
}

.subpage-main {
  padding-bottom: 72px;
}

.subpage-hero {
  max-width: 850px;
  padding: 68px 0 36px;
}

.subpage-hero h1 {
  font-size: clamp(43px, 6vw, 68px);
  line-height: 1;
}

.subpage-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.brief-paper {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brief-paper::after {
  position: absolute;
  z-index: 0;
  top: 49%;
  left: -10%;
  width: 120%;
  color: rgba(224, 82, 82, 0.12);
  content: "SAMPLE ONLY — NOT FOR LIVE SERVICE";
  font-size: clamp(23px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: 0.05em;
  text-align: center;
  transform: rotate(-18deg);
  pointer-events: none;
}

.brief-paper > * {
  position: relative;
  z-index: 1;
}

.brief-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--graphite);
}

.brief-head .brand {
  margin-bottom: 12px;
}

.brief-head h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.045em;
}

.brief-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.status-badge {
  width: fit-content;
  height: fit-content;
  padding: 7px 10px;
  border: 1px solid #e7bd61;
  border-radius: 999px;
  color: #805500;
  background: #fff8e8;
  font-size: 12px;
  font-weight: 800;
}

.brief-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 18px;
}

.brief-box {
  padding: 18px;
  border-radius: 12px;
  box-shadow: none;
}

.brief-box h3 {
  font-size: 15px;
}

.brief-rows {
  display: grid;
  gap: 8px;
}

.brief-row {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.75fr;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #e4e8eb;
  border-radius: 8px;
  font-size: 12px;
}

.brief-row span {
  color: var(--muted);
}

.brief-alert {
  margin-bottom: 8px;
  padding: 10px;
  border-left: 4px solid var(--amber);
  border-radius: 7px;
  color: #6c4a00;
  background: #fff8e8;
  font-size: 12px;
  font-weight: 650;
}

.brief-list,
.question-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
  color: #4d5560;
  font-size: 13px;
}

.access-grid,
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.question-card h2 {
  font-size: 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 28px;
  border-radius: 16px;
  color: var(--surface);
  background: var(--graphite);
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.035em;
}

.contact-panel p {
  margin: 0;
  color: #c6ccd2;
}

.legacy-notice {
  max-width: 780px;
  margin: 96px auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.legacy-notice .brand {
  justify-content: center;
}

.legacy-notice h1 {
  margin: 26px 0 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(37px, 6vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legacy-notice p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 790px;
  }

  .product-preview {
    width: min(100%, 850px);
  }

  .module-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card:nth-child(2n) {
    border-right: 0;
  }

  .module-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .header-inner,
  .page-shell {
    width: min(calc(100% - 28px), var(--page));
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions .button:first-child {
    display: none;
  }

  .brand {
    font-size: 19px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 0;
    padding: 48px 0 42px;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 66px);
  }

  .product-preview {
    grid-template-columns: 1fr;
  }

  .preview-rail {
    display: none;
  }

  .control-layer-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .module-strip,
  .steps,
  .output-grid,
  .price-grid,
  .footer-inner,
  .brief-grid,
  .access-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .module-card,
  .module-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .module-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .final-cta,
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .header-actions .button {
    min-height: 43px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .dashboard-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .preview-main {
    padding: 14px;
  }

  .preview-topbar h2 {
    font-size: 20px;
  }

  .readiness-layout {
    align-items: flex-start;
  }

  .control-layer {
    margin-bottom: 54px;
  }

  .brief-paper {
    padding: 20px 16px;
  }

  .brief-head {
    display: grid;
  }

  .brief-row {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin: 56px 0;
  }

  .legacy-notice {
    margin: 48px auto;
    padding: 30px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .subpage-hero,
  .site-footer,
  .print-hidden {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .page-shell {
    width: 100%;
  }

  .subpage-main {
    padding: 0;
  }

  .brief-paper {
    padding: 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
