:root {
  --ink: #102022;
  --muted: #5d6f72;
  --line: #dbe7e5;
  --paper: #f7faf8;
  --surface: #ffffff;
  --teal: #008c8c;
  --teal-dark: #005f62;
  --blue: #466987;
  --amber: #f1a208;
  --mint: #dff4ef;
  --steel: #e8eef3;
  --shadow: 0 24px 70px rgba(16, 32, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 231, 229, 0.8);
  background: rgba(247, 250, 248, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 14px 20px;
}

.brand-link {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand-link img {
  height: 62px;
  max-width: min(420px, 62vw);
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.mobile-header-actions {
  display: none;
}

.pill,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.pill {
  border: 1px solid var(--line);
  color: var(--muted);
}

.button {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: var(--teal);
}

.hero {
  background:
    linear-gradient(120deg, rgba(0, 140, 140, 0.14), rgba(70, 105, 135, 0.08) 48%, rgba(241, 162, 8, 0.13)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  margin: 0 auto;
  max-width: 1220px;
  min-height: calc(100vh - 132px);
  padding: 38px 20px 30px;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 72px;
  letter-spacing: 0;
  line-height: 0.98;
  margin-top: 14px;
  max-width: 780px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  margin-top: 18px;
  max-width: 690px;
}

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

.store-badges {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge-link {
  display: inline-flex;
  height: 45px;
  line-height: 0;
  position: relative;
  transition: filter 180ms ease, transform 180ms ease;
  width: 152px;
}

.store-badge-link img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

a.store-badge-link:hover {
  filter: drop-shadow(0 14px 24px rgba(16, 32, 34, 0.16));
  transform: translateY(-1px);
}

.store-badge-disabled {
  cursor: default;
  opacity: 0.56;
}

.store-soon-badge {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 32, 34, 0.14);
  border-radius: 999px;
  bottom: -7px;
  color: #10372d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
  position: absolute;
  right: -8px;
  text-transform: uppercase;
}

.owner-download-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 140, 140, 0.12), rgba(241, 162, 8, 0.08)),
    #fff;
  border: 1px solid rgba(0, 140, 140, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(16, 32, 34, 0.08);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-top: 24px;
  padding: 24px;
}

.owner-download-panel h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  margin-top: 8px;
}

.owner-download-panel p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
  max-width: 560px;
}

.owner-download-link {
  align-items: center;
  border: 1px solid rgba(0, 140, 140, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  white-space: nowrap;
}

.suite-nav {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  max-width: 760px;
}

.suite-nav a {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 231, 229, 0.92);
  border-radius: 8px;
  cursor: pointer;
  min-width: 0;
  padding: 12px 46px 12px 12px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.suite-nav a:hover {
  background: #fff;
  border-color: rgba(0, 140, 140, 0.36);
  transform: translateY(-1px);
}

.suite-nav a::after {
  align-items: center;
  background: rgba(0, 140, 140, 0.1);
  border: 1px solid rgba(0, 140, 140, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  content: "↗";
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 28px;
}

.suite-nav a:hover::after,
.suite-nav a:focus-visible::after {
  background: var(--teal);
  color: #fff;
  transform: translateX(2px);
}

.suite-nav span {
  color: var(--teal-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suite-nav strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  margin-top: 7px;
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  max-width: 720px;
}

.proof-item {
  border-left: 2px solid var(--teal);
  padding-left: 12px;
}

.proof-item strong {
  display: block;
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 3px;
}

.product-board {
  align-self: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic span {
  background: var(--line);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.board-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

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

.board-summary div {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  min-width: 0;
  padding: 13px;
}

.board-summary span,
.board-summary small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 750;
}

.board-summary strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  margin: 8px 0 4px;
}

.workflow-row {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  padding: 12px;
}

.workflow-icon {
  align-items: center;
  background: var(--mint);
  border-radius: 8px;
  color: var(--teal-dark);
  display: flex;
  font-weight: 850;
  height: 42px;
  justify-content: center;
}

.workflow-row strong {
  display: block;
  font-size: 15px;
}

.workflow-row small {
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

.status {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.status.live {
  background: #e3f8eb;
  color: #167044;
}

.status.sync {
  background: #e9f0f7;
  color: var(--blue);
}

.status.action {
  background: #fff2cc;
  color: #8a5d00;
}

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

.board-footer span {
  background: var(--steel);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  min-width: 0;
  padding: 7px 8px;
  text-align: center;
}

.section {
  margin: 0 auto;
  max-width: 1220px;
  padding: 82px 20px;
}

.section-head {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  margin-bottom: 34px;
}

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

.section-head p,
.text-block p {
  color: var(--muted);
  font-size: 17px;
}

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

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

.signal-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.signal-inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 20px;
}

.signal-item {
  border-left: 1px solid var(--line);
  padding: 24px 20px;
}

.signal-item:last-child {
  border-right: 1px solid var(--line);
}

.signal-item strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.signal-item span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.executive-summary {
  padding-bottom: 54px;
}

.summary-shell {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.07);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: 28px;
}

.summary-lead {
  align-self: center;
  min-width: 0;
}

.summary-lead h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin-top: 14px;
}

.summary-points {
  display: grid;
  gap: 10px;
}

.summary-points article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 231, 229, 0.94);
  border-radius: 8px;
  min-width: 0;
  padding: 18px;
}

.summary-points span {
  color: var(--teal-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-points strong {
  display: block;
  font-size: 20px;
  line-height: 1.14;
  margin-top: 10px;
}

.summary-points p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.decision-layer {
  padding-bottom: 66px;
}

.decision-shell {
  background:
    linear-gradient(135deg, rgba(16, 32, 34, 0.98), rgba(0, 95, 98, 0.94)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  padding: 28px;
}

.decision-copy {
  align-self: center;
  max-width: 480px;
  min-width: 0;
}

.decision-copy .eyebrow,
.decision-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.decision-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  margin-top: 16px;
}

.decision-copy p {
  font-size: 16px;
  margin-top: 18px;
}

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

.decision-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 210px;
  min-width: 0;
  padding: 18px;
}

.decision-grid span {
  align-items: center;
  background: rgba(241, 162, 8, 0.16);
  border: 1px solid rgba(241, 162, 8, 0.32);
  border-radius: 999px;
  color: #ffd36a;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  width: 42px;
}

.decision-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.14;
  margin-top: 18px;
}

.decision-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  margin-top: 12px;
}

.product-system {
  padding-bottom: 72px;
}

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

.system-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  min-width: 0;
  padding: 22px;
  position: relative;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.system-card:hover,
.system-card:focus-visible {
  border-color: rgba(0, 140, 140, 0.42);
  box-shadow: 0 18px 42px rgba(16, 32, 34, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.system-card::after {
  background: linear-gradient(180deg, rgba(0, 140, 140, 0.22), rgba(0, 140, 140, 0));
  content: "";
  height: 76px;
  position: absolute;
  right: -1px;
  top: 54px;
  width: 1px;
}

.system-card:last-child::after {
  content: none;
}

.system-card.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.system-card.public {
  background: linear-gradient(180deg, #ffffff, #edf8f6);
  border-color: rgba(0, 140, 140, 0.24);
}

.system-index {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  margin-bottom: 28px;
  width: 48px;
}

.system-card.primary .system-index {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.system-card h3 {
  font-size: 22px;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.system-card p {
  color: var(--muted);
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.system-card.primary p,
.system-card.primary li {
  color: rgba(255, 255, 255, 0.74);
}

.system-card ul {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0 18px;
}

.system-card li {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.system-card-cta {
  align-items: center;
  align-self: flex-start;
  background: rgba(0, 140, 140, 0.1);
  border: 1px solid rgba(0, 140, 140, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 12px;
}

.system-card-cta::after {
  content: "→";
  font-weight: 900;
}

.system-card.primary .system-card-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.product-visuals {
  padding-top: 54px;
}

.visual-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.visual-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 246, 0.78)),
    var(--surface);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.08);
  min-width: 0;
  padding: 20px;
}

.visual-panel.accent {
  background:
    linear-gradient(180deg, rgba(16, 32, 34, 0.96), rgba(0, 95, 98, 0.92)),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.visual-head {
  align-items: center;
  border-bottom: 1px solid rgba(219, 231, 229, 0.72);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 16px;
}

.visual-panel.accent .visual-head {
  border-color: rgba(255, 255, 255, 0.14);
}

.visual-head span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-panel.accent .visual-head span {
  color: rgba(255, 255, 255, 0.68);
}

.visual-head strong {
  font-size: 16px;
}

.clinic-visual {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  padding-top: 18px;
}

.clinic-day {
  display: grid;
  gap: 10px;
}

.clinic-day div {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
}

.clinic-day strong,
.clinic-day span {
  display: block;
}

.clinic-day strong {
  font-size: 18px;
}

.clinic-day span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.patient-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 20px;
}

.patient-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  margin-top: 22px;
  max-width: 460px;
}

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

.micro-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.micro-grid span {
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  min-width: 0;
  padding: 8px 10px;
  text-align: center;
}

.saas-visual {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.saas-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(90px, 0.42fr) minmax(70px, 0.32fr) minmax(0, 1fr);
  padding: 14px;
}

.saas-row > * {
  min-width: 0;
}

.saas-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.saas-row strong {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.saas-row small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.suite-architecture {
  padding-top: 58px;
}

.suite-architecture-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
}

.suite-rail {
  display: grid;
  gap: 10px;
}

.suite-rail a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 46px minmax(0, 0.58fr) minmax(0, 1fr) 34px;
  min-width: 0;
  padding: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.suite-rail a:hover,
.suite-rail a:focus-visible {
  border-color: rgba(0, 140, 140, 0.36);
  box-shadow: 0 14px 36px rgba(16, 32, 34, 0.08);
  transform: translateY(-1px);
}

.suite-rail a::after {
  align-items: center;
  background: rgba(0, 140, 140, 0.1);
  border: 1px solid rgba(0, 140, 140, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  content: "↗";
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 30px;
}

.suite-rail a:hover::after,
.suite-rail a:focus-visible::after {
  background: var(--teal);
  color: #fff;
  transform: translateX(2px);
}

.suite-rail span {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  width: 42px;
}

.suite-rail strong,
.suite-rail small {
  min-width: 0;
}

.suite-rail strong {
  font-size: 17px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.suite-rail small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.delivery-panel {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.08);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.delivery-row {
  background: rgba(255, 255, 255, 0.72);
  min-width: 0;
  padding: 22px;
}

.delivery-row span {
  color: var(--teal-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-row strong {
  display: block;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.06;
  margin-top: 12px;
}

.delivery-row p {
  color: var(--muted);
  margin-top: 12px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  font-size: 20px;
  line-height: 1.2;
}

.card p {
  color: var(--muted);
  margin-top: 12px;
}

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

.module-list span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
}

.operating-map {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.map-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.map-panel.dark {
  background: var(--ink);
  color: #fff;
}

.map-panel.dark p {
  color: rgba(255, 255, 255, 0.72);
}

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

.map-node {
  background: rgba(0, 140, 140, 0.08);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  padding: 16px;
}

.map-node strong {
  display: block;
}

.map-node span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

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

.audience-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 24px;
}

.audience-card .eyebrow {
  color: var(--blue);
}

.audience-card ul {
  color: var(--muted);
  margin: 18px 0 0;
  padding-left: 18px;
}

.audience-card li + li {
  margin-top: 8px;
}

.split-band {
  background: var(--ink);
  color: #fff;
}

.split-band .section-head p,
.split-band .card p,
.split-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.split-band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 34px minmax(0, 1fr);
}

.timeline-item span {
  align-items: center;
  background: var(--amber);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.content-planner {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.content-card-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.content-card h3 a {
  transition: color 160ms ease;
}

.content-card h3 a:hover {
  color: var(--teal-dark);
}

.content-card-section-link {
  align-items: center;
  border: 1px solid rgba(0, 140, 140, 0.24);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 850;
  min-height: 36px;
  padding: 0 13px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.content-card-section-link:hover,
.content-card-section-link:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.content-link-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.content-link-row {
  align-items: center;
  background: #f6fbfa;
  border: 1px solid rgba(219, 231, 229, 0.9);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 56px;
  padding: 13px 14px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.content-link-row:hover,
.content-link-row:focus-visible {
  background: #fff;
  border-color: rgba(0, 140, 140, 0.34);
  box-shadow: 0 12px 28px rgba(16, 32, 34, 0.07);
  transform: translateY(-1px);
}

.content-link-row span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.25;
  min-width: 0;
}

.content-link-row strong {
  align-items: center;
  background: rgba(0, 140, 140, 0.1);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  min-height: 34px;
  padding: 0 12px;
  transition: background 160ms ease, color 160ms ease;
}

.content-link-row strong::after {
  content: "↗";
  font-size: 13px;
  margin-left: 7px;
}

.content-link-row:hover strong,
.content-link-row:focus-visible strong {
  background: var(--teal);
  color: #fff;
}

.content-card-empty {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.product-focus-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr));
}

.product-focus-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 246, 0.74)),
    var(--surface);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.07);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  min-width: 0;
  padding: 24px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-focus-card:hover {
  border-color: rgba(0, 140, 140, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-focus-card.primary {
  background:
    linear-gradient(145deg, rgba(16, 32, 34, 0.98), rgba(0, 95, 98, 0.94)),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.product-focus-card span {
  color: var(--teal-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-focus-card.primary span {
  color: rgba(255, 255, 255, 0.68);
}

.product-focus-card h3 {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.06;
  margin-top: 18px;
}

.product-focus-card p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 16px;
}

.product-focus-card.primary p,
.product-focus-card.primary li {
  color: rgba(255, 255, 255, 0.72);
}

.product-focus-card ul {
  color: var(--muted);
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 24px 0 0 18px;
}

.product-focus-card li {
  font-size: 14px;
}

.product-focus-card strong {
  color: var(--teal-dark);
  display: block;
  font-size: 14px;
  margin-top: 24px;
}

.product-focus-card.primary strong {
  color: #ffd36a;
}

.product-focus-card::after {
  align-items: center;
  background: rgba(0, 140, 140, 0.1);
  border: 1px solid rgba(0, 140, 140, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  content: "↗";
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 34px;
}

.product-focus-card.primary::after {
  background: rgba(255, 211, 106, 0.15);
  border-color: rgba(255, 211, 106, 0.42);
  color: #ffd36a;
}

.product-focus-card:hover::after,
.product-focus-card:focus-visible::after {
  background: var(--teal);
  color: #fff;
  transform: translateX(2px);
}

.role-decision-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  overflow: hidden;
}

.role-decision-band div {
  background: linear-gradient(180deg, #ffffff, #f2f8f6);
  min-width: 0;
  padding: 18px;
}

.role-decision-band span {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-decision-band strong {
  display: block;
  font-size: 15px;
  line-height: 1.28;
  margin-top: 10px;
}

.seo-blueprint {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.07);
  margin-top: 22px;
  padding: 24px;
}

.blueprint-head {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  margin-bottom: 20px;
}

.blueprint-head h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  margin-top: 10px;
}

.blueprint-head p {
  color: var(--muted);
}

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

.blueprint-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 16px;
}

.blueprint-grid span {
  color: var(--teal-dark);
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blueprint-grid strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  margin-top: 10px;
  overflow-wrap: anywhere;
}

.blueprint-grid p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 9px;
}

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

.cms-listing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
}

.cms-listing-card--with-media {
  padding-top: 0;
}

.cms-listing-card-media {
  aspect-ratio: 1200 / 394;
  background: #eef7f5;
  border-bottom: 1px solid var(--line);
  margin: 0 -24px 22px;
  overflow: hidden;
}

.cms-listing-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cms-listing-empty {
  background: var(--surface);
  border: 1px dashed rgba(0, 140, 140, 0.28);
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  grid-column: 1 / -1;
  line-height: 1.5;
  padding: 22px;
}

.cms-listing-card span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cms-listing-card h3 {
  font-size: 24px;
  line-height: 1.16;
  margin-top: 18px;
}

.cms-listing-card p {
  color: var(--muted);
  margin-top: 14px;
}

.cms-listing-card strong {
  color: var(--teal-dark);
  display: block;
  font-size: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.founder-section {
  padding-top: 28px;
}

.founder-shell {
  background:
    linear-gradient(135deg, rgba(0, 104, 104, 0.96), rgba(0, 140, 140, 0.88)),
    radial-gradient(circle at 88% 12%, rgba(255, 178, 24, 0.36), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 70, 74, 0.22);
  color: #ffffff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  padding: 34px;
}

.founder-copy .eyebrow,
.founder-shell .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.founder-copy h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 680px;
}

.founder-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.founder-actions span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

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

.founder-benefits article {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 132px;
  padding: 18px;
}

.founder-benefits strong,
.founder-benefits span {
  display: block;
}

.founder-benefits strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.founder-benefits span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-top: 10px;
}

.founder-page-hero {
  background:
    linear-gradient(120deg, rgba(0, 140, 140, 0.12), rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, #f8fbfa, #ffffff);
  border-bottom: 1px solid var(--line);
}

.founder-page-hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  margin: 0 auto;
  max-width: 1220px;
  padding: 76px 20px 64px;
}

.founder-page-hero h1 {
  max-width: 850px;
}

.founder-status {
  align-self: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.founder-status span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-status strong {
  color: var(--text);
  font-size: 82px;
  letter-spacing: 0;
  line-height: 0.9;
  margin-top: 20px;
}

.founder-status p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 18px;
}

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

.founder-benefit-grid article,
.founder-register-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.founder-benefit-grid span {
  color: var(--teal-dark);
  display: block;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 28px;
}

.founder-benefit-grid strong,
.founder-register-card strong {
  color: var(--text);
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.founder-benefit-grid p,
.founder-register-card span {
  color: var(--muted);
  display: block;
  line-height: 1.55;
  margin-top: 12px;
}

.founder-form-shell {
  background: linear-gradient(135deg, rgba(0, 140, 140, 0.12), rgba(255, 178, 24, 0.1));
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.46fr);
  padding: 30px;
}

.founder-form-shell p {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
}

.founder-register-card {
  align-self: center;
}

.founder-register-card .button {
  margin-top: 22px;
}

.cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 34px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 26px 20px;
}

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

.product-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(0, 140, 140, 0.1), rgba(255, 255, 255, 0.65));
}

.product-hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  margin: 0 auto;
  max-width: 1220px;
  padding: 74px 20px 58px;
}

.product-hero h1 {
  max-width: 820px;
}

.product-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.product-aside ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.product-aside li {
  border-left: 3px solid var(--teal);
  color: var(--muted);
  padding-left: 12px;
}

.product-suite-switcher {
  padding-bottom: 48px;
}

.section-head.compact {
  align-items: end;
  margin-bottom: 22px;
}

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

.suite-switcher-grid a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  min-width: 0;
  padding: 20px 58px 20px 20px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.suite-switcher-grid a:hover {
  border-color: rgba(0, 140, 140, 0.38);
  box-shadow: 0 14px 36px rgba(16, 32, 34, 0.08);
  transform: translateY(-1px);
}

.suite-switcher-grid a.active {
  background: linear-gradient(180deg, #ffffff, #edf8f6);
  border-color: rgba(0, 140, 140, 0.34);
  box-shadow: 0 16px 42px rgba(16, 32, 34, 0.09);
}

.suite-switcher-grid a::after {
  align-items: center;
  background: rgba(0, 140, 140, 0.1);
  border: 1px solid rgba(0, 140, 140, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  content: "↗";
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 32px;
}

.suite-switcher-grid a:hover::after,
.suite-switcher-grid a:focus-visible::after {
  background: var(--teal);
  color: #fff;
  transform: translateX(2px);
}

.suite-switcher-grid span {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  width: 42px;
}

.suite-switcher-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  margin-top: 18px;
}

.suite-switcher-grid p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.product-narrative {
  padding-bottom: 54px;
}

.product-outcomes {
  padding-bottom: 54px;
  padding-top: 54px;
}

.outcomes-shell {
  background:
    linear-gradient(135deg, rgba(16, 32, 34, 0.98), rgba(0, 95, 98, 0.94)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding: 28px;
}

.outcomes-copy {
  align-self: center;
  min-width: 0;
}

.outcomes-copy .eyebrow,
.outcomes-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.outcomes-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin-top: 14px;
}

.outcomes-copy p {
  font-size: 16px;
  margin-top: 16px;
}

.outcomes-grid {
  display: grid;
  gap: 10px;
}

.outcomes-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-width: 0;
  padding: 18px;
}

.outcomes-grid span {
  align-items: center;
  background: rgba(241, 162, 8, 0.16);
  border: 1px solid rgba(241, 162, 8, 0.32);
  border-radius: 999px;
  color: #ffd36a;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  width: 42px;
}

.outcomes-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.14;
  margin-top: 16px;
}

.outcomes-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  margin-top: 10px;
}

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

.role-strip article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 150px;
  padding: 18px;
}

.role-strip strong {
  display: block;
  font-size: 17px;
}

.role-strip span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

.product-screen-section {
  padding-top: 54px;
}

.product-maturity {
  padding-top: 54px;
}

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

.maturity-grid article {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.07);
  min-height: 250px;
  min-width: 0;
  padding: 24px;
}

.maturity-grid span {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  width: 46px;
}

.maturity-grid strong {
  display: block;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
  margin-top: 28px;
}

.maturity-grid p {
  color: var(--muted);
  margin-top: 14px;
}

.product-screen-grid,
.saas-control-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.screen-frame,
.control-console,
.comparison-panel,
.governance-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.08);
  min-width: 0;
  overflow: hidden;
}

.screen-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  min-height: 54px;
  padding: 0 16px;
}

.screen-toolbar span {
  background: var(--line);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.screen-toolbar strong {
  margin-left: auto;
}

.screen-layout {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  padding: 16px;
}

.screen-sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.screen-sidebar strong {
  color: var(--teal-dark);
  display: block;
  font-size: 16px;
}

.screen-sidebar span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.screen-main {
  display: grid;
  gap: 12px;
}

.screen-card {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-radius: 8px;
  min-height: 210px;
  padding: 20px;
}

.screen-card > span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  margin-top: 28px;
}

.screen-card p {
  color: var(--muted);
  margin-top: 14px;
}

.screen-metrics,
.control-kpis {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-metrics div,
.control-kpis div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 13px;
}

.screen-metrics strong,
.control-kpis strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
}

.screen-metrics span,
.control-kpis span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-top: 5px;
}

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

.comparison-column {
  background: #fff;
  min-width: 0;
  padding: 22px;
}

.comparison-column.muted {
  background: var(--paper);
}

.comparison-column span {
  color: var(--teal-dark);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-column ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.control-console {
  background: linear-gradient(180deg, rgba(16, 32, 34, 0.97), rgba(0, 95, 98, 0.92));
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.control-console .screen-toolbar {
  border-color: rgba(255, 255, 255, 0.14);
}

.control-console .screen-toolbar span {
  background: rgba(255, 255, 255, 0.22);
}

.control-console .control-kpis {
  padding: 16px 16px 0;
}

.control-console .control-kpis div,
.control-list div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.control-console .control-kpis span,
.control-list span {
  color: rgba(255, 255, 255, 0.66);
}

.control-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.control-list div {
  border-radius: 8px;
  padding: 14px;
}

.control-list strong,
.control-list span {
  display: block;
}

.control-list span {
  font-size: 13px;
  margin-top: 5px;
}

.governance-card {
  padding: 24px;
}

.governance-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.governance-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(80px, 0.35fr) minmax(0, 1fr);
  padding: 15px 0;
}

.governance-row span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.governance-row strong {
  font-size: 15px;
}

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

.feature-table.expanded {
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.08);
}

.feature-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.4fr 1fr;
  padding: 18px 20px;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--line);
}

.feature-row strong {
  color: var(--ink);
}

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

.owner-experience {
  padding-top: 54px;
}

.owner-demo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.phone-mockup,
.owner-story-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.08);
  min-width: 0;
}

.phone-mockup {
  background:
    linear-gradient(180deg, rgba(16, 32, 34, 0.96), rgba(0, 95, 98, 0.92)),
    var(--ink);
  display: grid;
  justify-items: center;
  padding: 28px;
}

.phone-shell {
  background: #f7faf8;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  max-width: 330px;
  overflow: hidden;
  width: 100%;
}

.phone-top {
  align-items: center;
  background: #102022;
  color: #fff;
  display: flex;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
}

.phone-top span {
  background: var(--amber);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.phone-top strong {
  font-size: 14px;
}

.phone-screen {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.pet-summary,
.phone-row {
  border-radius: 8px;
  min-width: 0;
  padding: 14px;
}

.pet-summary {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.2);
}

.pet-summary span,
.pet-summary small,
.phone-row span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 750;
}

.pet-summary strong {
  display: block;
  font-size: 24px;
  line-height: 1.08;
  margin: 12px 0 8px;
}

.phone-row {
  background: #ffffff;
  border: 1px solid var(--line);
}

.phone-row strong {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.owner-story-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.story-row {
  align-items: start;
  background: linear-gradient(180deg, #ffffff, #f3f8f7);
  display: grid;
  gap: 16px;
  grid-template-columns: 48px minmax(0, 1fr);
  min-width: 0;
  padding: 24px;
}

.story-row span {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  width: 44px;
}

.story-row strong {
  display: block;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.07;
}

.story-row p {
  color: var(--muted);
  margin-top: 10px;
}

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

.process-line div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 20px;
}

.process-line span,
.platform-stack span {
  align-items: center;
  background: var(--amber);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  margin-bottom: 26px;
  width: 42px;
}

.process-line strong,
.platform-stack h3 {
  display: block;
  font-size: 20px;
  line-height: 1.18;
}

.process-line p,
.platform-stack p {
  color: var(--muted);
  margin-top: 12px;
}

.journey-section {
  padding-top: 54px;
}

.journey-grid {
  background:
    linear-gradient(135deg, rgba(16, 32, 34, 0.98), rgba(0, 95, 98, 0.94)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.journey-grid article {
  background: rgba(255, 255, 255, 0.07);
  min-width: 0;
  padding: 24px;
}

.journey-grid span {
  align-items: center;
  background: rgba(241, 162, 8, 0.18);
  border: 1px solid rgba(241, 162, 8, 0.34);
  border-radius: 999px;
  color: #ffd36a;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  width: 46px;
}

.journey-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.14;
  margin-top: 28px;
}

.journey-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 12px;
}

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

.platform-stack article {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.2);
  border-radius: 8px;
  min-height: 260px;
  padding: 24px;
}

.content-detail {
  background:
    linear-gradient(120deg, rgba(0, 140, 140, 0.1), rgba(70, 105, 135, 0.05) 45%, rgba(241, 162, 8, 0.1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.content-detail-inner {
  margin: 0 auto;
  max-width: 920px;
  padding: 78px 20px 86px;
}

.content-detail h1 {
  font-size: clamp(38px, 5.4vw, 70px);
  max-width: 900px;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.content-meta span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  padding: 7px 11px;
}

.content-cover {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  margin: 28px 0 0;
  overflow: hidden;
}

.content-cover img {
  aspect-ratio: 1200 / 394;
  height: auto;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.content-cover figcaption {
  border-top: 1px solid rgba(219, 231, 229, 0.8);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 18px 16px;
  text-align: center;
}

.content-body {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 18px 48px rgba(16, 32, 34, 0.08);
  color: var(--ink);
  display: grid;
  gap: 20px;
  margin-top: 34px;
  min-width: 0;
  padding: 28px;
}

.content-body > * {
  min-width: 0;
}

.content-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.content-body img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.content-body p > img {
  border-radius: 8px;
  margin: 1.35rem auto;
}

.content-body p:has(> img) {
  margin: 0;
}

.content-body h2,
.content-body h3 {
  color: var(--ink);
  line-height: 1.12;
}

.content-body h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-top: 8px;
}

.content-body h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-top: 6px;
}

.content-body ul,
.content-body ol {
  color: var(--muted);
  display: grid;
  font-size: 18px;
  gap: 10px;
  line-height: 1.64;
  margin: 0;
  padding-left: 26px;
}

.content-body blockquote,
.content-callout {
  background: linear-gradient(180deg, #ffffff, #eef7f5);
  border: 1px solid rgba(0, 140, 140, 0.18);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.62;
  margin: 0;
  padding: 18px 20px;
}

.content-inline-image {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  margin: 4px 0;
  max-width: 100%;
  overflow: hidden;
  width: min(100%, var(--content-image-width, 100%));
}

.content-inline-image--left {
  margin-right: auto;
}

.content-inline-image--center {
  margin-left: auto;
  margin-right: auto;
}

.content-inline-image--right {
  margin-left: auto;
}

.content-inline-image img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.content-inline-image figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 10px 14px;
}

.content-howto {
  counter-reset: content-step;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.content-howto li {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: content-step;
  display: grid;
  gap: 8px;
  padding: 18px 18px 18px 64px;
  position: relative;
}

.content-howto li::before {
  align-items: center;
  background: var(--teal);
  border-radius: 999px;
  color: #ffffff;
  content: counter(content-step);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 32px;
}

.content-howto strong {
  color: var(--ink);
  font-size: 18px;
}

.content-howto p,
.content-checklist p {
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

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

.content-checklist li {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 14px 16px;
}

.content-checklist span {
  align-items: center;
  border: 1px solid rgba(0, 140, 140, 0.28);
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.content-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-table {
  background: #ffffff;
  border-collapse: collapse;
  min-width: 520px;
  width: 100%;
}

.content-table th,
.content-table td {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

.content-table th {
  background: #eef7f5;
  color: var(--ink);
  font-weight: 800;
}

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

.preview-state {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  margin-top: 24px;
  padding: 13px 15px;
}

.preview-state.success {
  border-color: rgba(0, 140, 140, 0.28);
  color: var(--teal-dark);
}

.preview-state.error {
  border-color: rgba(241, 162, 8, 0.42);
  color: #765100;
}

.preview-translations {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.preview-translations strong,
.preview-translations a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-height: 34px;
  padding: 0 12px;
}

.preview-translations strong {
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.preview-translations a {
  background: var(--teal);
  color: #fff;
}

@media (max-width: 980px) {
  .nav-links {
    border-top: 1px solid rgba(219, 231, 229, 0.9);
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 4px;
    order: 3;
    overflow-x: auto;
    padding-top: 10px;
    scrollbar-width: thin;
    width: 100%;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-inner,
  .product-hero-inner,
  .section-head,
  .section-head.compact,
  .summary-shell,
  .outcomes-shell,
  .decision-shell,
  .grid-2,
  .cta,
  .visual-grid,
  .blueprint-head,
  .suite-architecture-grid,
  .product-screen-grid,
  .owner-demo-grid,
  .saas-control-grid,
  .founder-shell,
  .founder-page-hero-inner,
  .founder-form-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 54px;
  }

  .suite-nav,
  .board-summary {
    grid-template-columns: 1fr;
  }

  .module-list,
  .grid-3,
  .product-focus-grid,
  .suite-switcher-grid,
  .signal-inner,
  .audience-grid,
  .system-flow,
  .role-strip,
  .process-line,
  .journey-grid,
  .maturity-grid,
  .founder-benefit-grid,
  .platform-stack,
  .operating-map,
  .blueprint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operating-map {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .site-header {
    overflow: visible;
  }

  .nav {
    gap: 10px;
    padding: 10px 16px;
    position: relative;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .brand-link {
    flex: 1;
  }

  .brand-link img {
    height: 54px;
    max-width: min(56vw, 250px);
  }

  .mobile-header-actions {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-left: auto;
  }

  .mobile-signin {
    align-items: center;
    background: var(--ink);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 850;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .mobile-menu {
    position: relative;
  }

  .mobile-menu summary {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    height: 42px;
    justify-content: center;
    list-style: none;
    width: 42px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--ink);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 18px;
  }

  .mobile-menu[open] summary {
    border-color: rgba(0, 140, 140, 0.38);
    box-shadow: 0 12px 32px rgba(16, 32, 34, 0.12);
  }

  .mobile-menu-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(16, 32, 34, 0.18);
    display: grid;
    gap: 8px;
    padding: 10px;
    position: fixed;
    right: 16px;
    top: 72px;
    width: min(330px, calc(100vw - 32px));
    z-index: 50;
  }

  .mobile-menu-panel a {
    border-radius: 8px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    padding: 12px 14px;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible {
    background: rgba(0, 140, 140, 0.08);
    color: var(--teal-dark);
  }
}

@media (max-width: 620px) {
  .brand-link img {
    height: 50px;
    max-width: min(52vw, 220px);
  }

  .mobile-signin {
    font-size: 13px;
    min-height: 40px;
    padding: 0 13px;
  }

  .mobile-menu summary {
    height: 40px;
    width: 40px;
  }

  .mobile-menu-panel {
    top: 66px;
  }

  .hero-proof,
  .decision-grid,
    .module-list,
    .grid-3,
    .signal-inner,
    .audience-grid,
    .system-flow,
    .role-strip,
    .process-line,
    .journey-grid,
    .maturity-grid,
    .platform-stack,
    .map-grid,
    .content-planner,
    .founder-benefits,
    .founder-benefit-grid,
  .product-focus-grid,
  .role-decision-band,
  .cms-listing-grid,
  .clinic-visual,
  .blueprint-grid,
  .screen-layout,
  .comparison-panel,
  .screen-metrics,
  .control-kpis {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: auto;
  }

  .product-focus-card {
    min-height: auto;
  }

  .system-card::after {
    display: none;
  }

  .workflow-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .workflow-row .status {
    grid-column: 2;
    justify-self: start;
  }

  .section {
    padding: 58px 16px;
  }

  .hero-inner,
  .content-detail-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    gap: 32px;
    padding-bottom: 12px;
    padding-top: 30px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .lead {
    font-size: 17px;
    margin-top: 16px;
  }

  .hero-actions,
  .hero-proof {
    margin-top: 18px;
  }

  .owner-download-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .store-badges {
    gap: 10px;
  }

  .store-badge-link {
    height: 43px;
    width: 145px;
  }

  .owner-download-link {
    width: 100%;
  }

  .suite-nav {
    display: none;
  }

  .product-board {
    display: block;
    box-shadow: 0 18px 44px rgba(16, 32, 34, 0.12);
  }

  .product-board .board-top {
    padding: 12px 14px;
  }

  .product-board .board-top strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .product-board .board-body {
    gap: 8px;
    padding: 10px;
  }

  .product-board .board-summary {
    display: none;
  }

  .product-board .workflow-row {
    gap: 8px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    padding: 8px;
  }

  .product-board .workflow-icon {
    height: 32px;
    font-size: 12px;
  }

  .product-board .workflow-row strong {
    font-size: 13px;
    line-height: 1.18;
  }

  .product-board .workflow-row small {
    display: none;
  }

  .product-board .workflow-row .status {
    grid-column: auto;
    justify-self: end;
    padding: 4px 7px;
    font-size: 11px;
  }

  .hero-proof {
    display: none;
  }

  .product-board .optional-flow,
  .product-board .board-footer {
    display: none;
  }

  .product-hero .product-aside {
    display: none;
  }

  .visual-panel,
  .summary-shell,
  .outcomes-shell,
  .seo-blueprint,
  .decision-shell {
    padding: 18px;
  }

  .decision-layer {
    padding-bottom: 46px;
  }

  .decision-grid article {
    min-height: auto;
  }

  .visual-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .suite-rail a {
    align-items: start;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .suite-rail small {
    grid-column: 2;
  }

  .screen-layout {
    padding: 14px;
  }

  .comparison-column,
  .governance-card {
    padding: 18px;
  }

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

  .phone-mockup {
    padding: 18px;
  }

  .story-row {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .cta {
    padding: 24px;
  }

  .founder-shell,
  .founder-form-shell {
    padding: 22px;
  }

  .founder-page-hero-inner {
    padding: 46px 16px 42px;
  }

  .founder-status strong {
    font-size: 48px;
  }

  .content-body {
    padding: 20px;
  }

  .content-body img,
  .content-body p > img,
  .content-inline-image,
  .content-inline-image img {
    width: 100% !important;
  }

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

  .process-line div,
  .maturity-grid article,
  .platform-stack article,
  .role-strip article {
    min-height: auto;
  }
}
