:root {
  --ink: #061943;
  --navy: #08245b;
  --blue: #1268e8;
  --teal: #079a9b;
  --coral: #ff654f;
  --sky: #eff8ff;
  --paper: #ffffff;
  --soft: #f8fbfe;
  --line: #d8e4f0;
  --muted: #526681;
  --shadow: 0 22px 60px rgba(6, 25, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(22px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(6, 25, 67, 0.08);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  border-bottom: 2px solid transparent;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "⌄";
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  border-color: var(--teal);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 190px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(6, 25, 67, 0.14);
  transform: translateX(-50%);
}

.nav-menu a {
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: var(--soft);
  border: 0;
}

.nav-button {
  justify-self: end;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(18, 104, 232, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(34px, 4.6vw, 72px);
  align-items: center;
  min-height: auto;
  padding: clamp(34px, 4.2vw, 56px) clamp(28px, 5vw, 68px) clamp(28px, 3.6vw, 46px);
  background:
    radial-gradient(circle at 68% 32%, rgba(18, 104, 232, 0.14), transparent 31%),
    radial-gradient(circle at 14% 12%, rgba(7, 154, 155, 0.1), transparent 30%),
    linear-gradient(90deg, #f4fbff 0%, #ffffff 48%, #f8fbff 100%);
}

.hero > * {
  width: 100%;
  max-width: 1480px;
}

.pill,
.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pill {
  padding: 8px 14px;
  background: rgba(7, 154, 155, 0.08);
  border: 1px solid rgba(7, 154, 155, 0.22);
  border-radius: 999px;
  text-transform: none;
}

.pill::before,
.eyebrow::before {
  content: "✦";
  color: var(--teal);
}

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

h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 3.7vw, 4.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.intro {
  max-width: 610px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.22vw, 1.22rem);
}

.product-definition,
.agent-definition {
  max-width: 610px;
  padding: 14px 0 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(7, 154, 155, 0.24);
  border-radius: 0;
  font-size: 0.98rem;
  font-weight: 800;
}

.product-definition {
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}

.agent-definition {
  margin-bottom: 22px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-copy,
.workflow-canvas,
.split > *,
.section-heading,
.product-family,
.action-panel {
  min-width: 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 32px rgba(18, 104, 232, 0.22);
}

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

.mobile-menu-button {
  display: none;
}

.process-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
  justify-self: stretch;
}

.process-cards::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 72px;
  content: "";
  border-top: 2px dashed rgba(18, 104, 232, 0.24);
}

.process-cards article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-height: 224px;
  padding: 24px 18px 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 228, 240, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(6, 25, 67, 0.08);
  text-align: center;
}

.process-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 20px;
  background: #efeaff;
}

.process-icon::before {
  color: #635bff;
  font-size: 1.65rem;
  font-weight: 900;
}

.request-icon::before {
  content: "□";
}

.support-icon {
  background: #edf4ff;
}

.support-icon::before {
  content: "✦";
  color: var(--blue);
}

.review-icon {
  background: #e8f8ef;
}

.review-icon::before {
  content: "◌";
  color: #26a36a;
}

.evidence-icon {
  background: #f0edff;
}

.evidence-icon::before {
  content: "◇";
  color: #635bff;
}

.process-cards h2 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.2;
}

.process-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.journey-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(239, 248, 255, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 25, 67, 0.08);
}

.journey-link h3 {
  max-width: 680px;
  margin: 0 0 8px;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

.journey-link p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.trust-row {
  margin-top: 22px;
}

.trust-row span {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-row span::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
}

.product-window,
.image-panel,
.governance-visual,
.system-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-window {
  min-width: 0;
  max-width: 820px;
  justify-self: end;
}

.image-panel img {
  width: 100%;
  height: auto;
}

figcaption {
  padding: 12px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.window-bar strong {
  display: block;
  color: var(--ink);
}

.window-bar span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.window-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.window-actions span,
.window-actions strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  background: var(--soft);
  border-radius: 8px;
  font-size: 0.82rem;
}

.window-actions strong {
  color: var(--paper);
  background: var(--blue);
}

.window-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 340px;
}

.window-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
}

.mini-logo {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  background: url("assets/ai-workbook-logo-icon.png") center / contain no-repeat;
}

.window-nav strong {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.window-nav .active {
  color: var(--blue);
  background: #eaf3ff;
}

.workflow-canvas {
  padding: clamp(15px, 2.4vw, 24px);
  overflow-wrap: anywhere;
}

.workflow-canvas h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.2vw, 2.4rem);
}

.example-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.example-switcher span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.example-switcher .active {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.app-shelf {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  padding: 9px;
  background: linear-gradient(135deg, rgba(239, 248, 255, 0.96), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(216, 228, 240, 0.95);
  border-radius: 18px;
}

.app-tile {
  min-height: 108px;
  padding: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.05);
}

.app-tile.tomo {
  background:
    linear-gradient(135deg, rgba(255, 101, 79, 0.12), rgba(7, 154, 155, 0.12)),
    var(--paper);
  border-color: rgba(255, 101, 79, 0.2);
}

.platform-shelf .app-tile:first-child {
  background:
    linear-gradient(135deg, rgba(18, 104, 232, 0.1), rgba(255, 255, 255, 0.96)),
    var(--paper);
  border-color: rgba(18, 104, 232, 0.2);
}

.platform-shelf .app-tile:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(7, 154, 155, 0.1), rgba(255, 255, 255, 0.96)),
    var(--paper);
  border-color: rgba(7, 154, 155, 0.2);
}

.platform-shelf .app-tile:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 101, 79, 0.09), rgba(255, 255, 255, 0.96)),
    var(--paper);
  border-color: rgba(255, 101, 79, 0.18);
}

.app-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-tile.tomo span {
  color: var(--coral);
}

.app-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
}

.app-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 1.22fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(7, 154, 155, 0.08), rgba(18, 104, 232, 0.08), rgba(255, 101, 79, 0.08));
  border: 1px solid rgba(216, 228, 240, 0.9);
  border-radius: 18px;
}

.hero-diagram article,
.diagram-core {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.05);
}

.hero-diagram article:first-child::after,
.diagram-core::after {
  position: absolute;
  right: -19px;
  top: 50%;
  z-index: 2;
  content: "→";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  transform: translateY(-50%);
}

.diagram-core {
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), #0aa8a4);
  border-color: rgba(18, 104, 232, 0.35);
  text-align: center;
}

.hero-diagram span,
.diagram-core span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diagram-core span {
  color: #dffdfb;
}

.hero-diagram strong,
.diagram-core strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.hero-diagram p,
.diagram-core p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.diagram-core p {
  color: #e9fbff;
}

.workflow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.workflow-row article,
.assistant-card,
.status-strip span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.05);
}

.workflow-row article {
  position: relative;
  min-height: 132px;
  padding: 16px;
}

.workflow-row article:not(:last-child)::after {
  position: absolute;
  right: -11px;
  top: 50%;
  z-index: 2;
  content: "→";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  transform: translateY(-50%);
}

.workflow-row span {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.workflow-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.96rem;
}

.workflow-row p,
.assistant-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-flow article:first-child {
  border-color: rgba(255, 101, 79, 0.22);
}

.assistant-card {
  width: min(520px, 100%);
  min-height: 96px;
  margin: 0 0 10px auto;
  padding: 13px 16px;
  background: #e8fbf9;
  border-color: rgba(7, 154, 155, 0.24);
}

.assistant-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-weight: 900;
}

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

.status-strip span {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 8px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.hero-feature-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  justify-self: center;
  margin: clamp(10px, 1.8vw, 22px) auto 0;
}

.hero-feature-row article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(6, 25, 67, 0.07);
}

.feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  background: #e8fbf9;
  border-radius: 14px;
}

.feature-icon::before {
  color: var(--teal);
  font-size: 2rem;
  font-weight: 900;
}

.workflow-icon::before {
  content: "□";
}

.apps-icon {
  background: #eaf3ff;
}

.apps-icon::before {
  content: "▦";
  color: var(--blue);
}

.ai-icon {
  background: #fff0ed;
}

.ai-icon::before {
  content: "✦";
  color: var(--coral);
}

.hero-feature-row h3 {
  margin-bottom: 8px;
}

.hero-feature-row p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-feature-row ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-feature-row li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-feature-row li::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "✓";
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.58rem;
}

.section {
  padding: clamp(50px, 6.2vw, 84px) clamp(24px, 5vw, 60px);
}

.offer-strip {
  padding: clamp(28px, 3.4vw, 42px) clamp(24px, 5vw, 60px) clamp(34px, 4.4vw, 56px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-top: 1px solid rgba(216, 228, 240, 0.9);
}

.offer-heading {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.offer-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
}

.offer-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.offer-grid article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.offer-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #f0edff;
  border-radius: 14px;
}

.offer-icon::before {
  color: #635bff;
  font-size: 1.55rem;
  font-weight: 900;
}

.offer-map-icon::before {
  content: "✦";
}

.offer-ai-icon::before {
  content: "▣";
}

.offer-review-icon::before {
  content: "◇";
}

.offer-evidence-icon::before {
  content: "▦";
}

.offer-grid h3 {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.offer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

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

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
}

.action-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.why-section {
  background: var(--paper);
  padding-top: clamp(38px, 4.8vw, 64px);
}

.why-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.why-heading h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.action-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 16px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.action-intake,
.action-output,
.action-flow article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.05);
}

.action-intake,
.action-output {
  display: grid;
  align-content: center;
  min-height: 320px;
  padding: 24px;
}

.action-intake {
  background:
    linear-gradient(135deg, rgba(18, 104, 232, 0.08), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.action-output {
  background:
    linear-gradient(135deg, rgba(7, 154, 155, 0.1), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.action-intake span,
.action-output span,
.action-flow span,
.tomo-product span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-intake p,
.action-output p,
.action-flow p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.action-flow article {
  position: relative;
  min-height: 154px;
  padding: 20px;
}

.action-flow article:first-child {
  border-color: rgba(18, 104, 232, 0.24);
}

.action-flow article:nth-child(2) {
  border-color: rgba(7, 154, 155, 0.24);
}

.action-flow article:nth-child(3) {
  border-color: rgba(126, 82, 231, 0.22);
}

.action-flow article:nth-child(4) {
  border-color: rgba(255, 101, 79, 0.22);
}

.action-output ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.action-output li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.action-output li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.68rem;
}

.split.reverse {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.split p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contrast-grid,
.stakeholder-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  background: var(--paper);
}

.audience-section > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-section .stakeholder-list {
  gap: 12px;
  margin-top: 30px;
}

.audience-section .stakeholder-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 16px;
  align-items: center;
  min-height: auto;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 228, 240, 0.82);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(6, 25, 67, 0.04);
}

.audience-section .stakeholder-list h3 {
  grid-column: 2;
  margin-bottom: 2px;
  font-size: 1rem;
}

.audience-section .stakeholder-list p {
  grid-column: 2;
  font-size: 0.92rem;
}

.stakeholder-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
}

.stakeholder-icon::before {
  font-size: 1.25rem;
  font-weight: 900;
}

.leaders-icon {
  background: #e8fbf9;
}

.leaders-icon::before {
  content: "◌";
  color: var(--teal);
}

.operations-icon {
  background: #eaf3ff;
}

.operations-icon::before {
  content: "⚙";
  color: var(--blue);
}

.risk-icon {
  background: #f3edff;
}

.risk-icon::before {
  content: "◇";
  color: #7e52e7;
}

.audience-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 104, 232, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 254, 0.98));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.map-ring {
  position: absolute;
  inset: 17%;
  border: 2px dashed rgba(18, 104, 232, 0.16);
  border-radius: 50%;
}

.map-core,
.map-node {
  position: absolute;
  display: grid;
  justify-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(6, 25, 67, 0.08);
}

.map-core {
  left: 50%;
  top: 50%;
  width: 260px;
  min-height: 230px;
  padding: 34px 28px;
  border-radius: 22px;
  transform: translate(-50%, -50%);
}

.map-core img {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.map-core h3 {
  margin-bottom: 4px;
  font-size: 1.65rem;
}

.map-core strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.05rem;
}

.map-core p {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-node {
  width: 190px;
  min-height: 130px;
  padding: 50px 18px 18px;
  border-radius: 18px;
}

.map-node img {
  position: absolute;
  top: -40px;
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 12px 22px rgba(6, 25, 67, 0.16));
}

.map-node h3 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.map-node p {
  margin: 0;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
}

.node-operations {
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
}

.node-risk {
  right: 8%;
  top: 38%;
}

.node-domain {
  right: 18%;
  bottom: 9%;
}

.node-technology {
  left: 16%;
  bottom: 9%;
}

.node-executive {
  left: 6%;
  top: 38%;
}

.governance-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(6, 25, 67, 0.08);
}

.governance-visual article {
  min-height: 180px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
}

.governance-visual .after {
  background: #e8fbf9;
  border-color: rgba(7, 154, 155, 0.24);
}

.governance-visual span,
.system-card-header span,
.capability-groups span,
.family-hero span,
.family-grid span,
.boundary-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.governance-visual p {
  margin-bottom: 0;
  color: var(--muted);
}

.bridge-line {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

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

.contrast-grid article,
.stakeholder-list article,
.three-part article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.contrast-grid p,
.stakeholder-list p,
.three-part p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.three-part,
.capability-groups {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.three-part {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.three-part span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.operating-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, 100%);
  margin: 30px auto 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 25, 67, 0.08);
}

.operating-model article {
  position: relative;
  min-height: 132px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.operating-model article:not(:last-child)::after {
  position: absolute;
  right: -11px;
  top: 50%;
  z-index: 2;
  content: "→";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  transform: translateY(-50%);
}

.operating-model strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.operating-model p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.how-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.how-flow article {
  position: relative;
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
}

.how-flow article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.how-flow article:not(:last-child)::after {
  position: absolute;
  right: -17px;
  top: 50%;
  z-index: 2;
  content: "→";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  transform: translateY(-50%);
}

.how-flow span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.how-flow h3 {
  max-width: 250px;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
}

.how-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.how-evidence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(980px, 100%);
  margin: 20px auto 0;
}

.how-evidence span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.system-card {
  padding: clamp(20px, 3vw, 34px);
}

.system-card-header {
  margin-bottom: 20px;
}

.system-card-header strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
}

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

.system-grid span {
  display: grid;
  min-height: 74px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 900;
}

.product-family {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.family-hero,
.family-grid article,
.boundary-card article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.05);
}

.family-hero {
  min-height: 230px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 101, 79, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 101, 79, 0.14), rgba(7, 154, 155, 0.14)),
    var(--paper);
}

.family-hero h3 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.family-hero p {
  max-width: 430px;
  margin-bottom: 22px;
}

.family-hero strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--coral);
  background: rgba(255, 101, 79, 0.1);
  border: 1px solid rgba(255, 101, 79, 0.18);
  border-radius: 999px;
  font-size: 0.84rem;
}

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

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

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

.family-grid article,
.app-grid article {
  min-height: 180px;
  padding: 20px;
}

.app-grid article {
  display: grid;
  align-content: start;
  min-height: 184px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(6, 25, 67, 0.05);
}

.app-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  background: #f0edff;
  border-radius: 14px;
}

.app-icon::before {
  color: #635bff;
  font-size: 1.35rem;
  font-weight: 900;
}

.app-tomo-icon::before {
  content: "◌";
}

.app-recruitment-icon {
  background: #e8fbf9;
}

.app-recruitment-icon::before {
  content: "◇";
  color: var(--teal);
}

.app-assessment-icon {
  background: #eaf3ff;
}

.app-assessment-icon::before {
  content: "□";
  color: var(--blue);
}

.app-marketing-icon {
  background: #fff0ed;
}

.app-marketing-icon::before {
  content: "✦";
  color: var(--coral);
}

.tomo-product {
  background:
    linear-gradient(135deg, rgba(255, 101, 79, 0.12), rgba(7, 154, 155, 0.09)),
    var(--paper);
  border-color: rgba(255, 101, 79, 0.2);
}

.tomo-product strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 14px;
  padding: 7px 10px;
  color: var(--coral);
  background: rgba(255, 101, 79, 0.1);
  border: 1px solid rgba(255, 101, 79, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
}

.family-grid h3 {
  margin-bottom: 10px;
}

.app-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-grid h3 {
  margin-bottom: 7px;
  font-size: 1.02rem;
}

.family-grid p,
.app-grid p {
  margin-bottom: 0;
}

.app-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.boundary-card article {
  padding: 20px;
  background: var(--soft);
}

.boundary-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.pattern-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pattern-list span {
  padding: 10px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.platform {
  background: var(--sky);
}

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

.capability-groups article {
  min-height: 300px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.capability-groups p {
  color: var(--muted);
}

.capability-groups div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.capability-groups strong {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
}

.closer {
  padding: clamp(54px, 6.4vw, 86px) clamp(24px, 5vw, 60px);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(6, 25, 67, 0.96), rgba(12, 57, 122, 0.96));
  color: var(--paper);
}

.closer h2 {
  max-width: 940px;
  margin: 0 auto 24px;
  color: var(--paper);
}

.closer .eyebrow {
  color: #bdeeed;
}

.closer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.closer .button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  min-height: auto;
  padding: clamp(74px, 9vw, 116px) clamp(24px, 5vw, 60px) clamp(58px, 7vw, 84px);
  background:
    linear-gradient(90deg, rgba(239, 248, 255, 0.94), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(8, 36, 91, 0.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(8, 36, 91, 0.04) 0 1px, transparent 1px 64px);
}

.contact-copy h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 4vw, 4.7rem);
}

.contact-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-proof {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.3vw, 26px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-proof-heading {
  padding: 4px 4px 8px;
}

.contact-proof-heading .eyebrow {
  margin-bottom: 10px;
}

.contact-proof-heading h2 {
  max-width: 540px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.contact-proof article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 128px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-proof span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal);
  background: rgba(7, 154, 155, 0.1);
  border-radius: 50%;
  font-weight: 900;
}

.contact-proof h3 {
  margin-bottom: 6px;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-panel h2 {
  max-width: 700px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-list span {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.booking-card {
  min-width: 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

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

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  width: min(1480px, calc(100% - 64px));
  margin: 34px auto 0;
  padding: clamp(36px, 5vw, 58px);
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 104, 232, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(231, 248, 246, 0.9), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(216, 228, 240, 0.95);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(6, 25, 67, 0.08);
}

.feature-copy h1,
.article-wrap h1 {
  max-width: 920px;
}

.feature-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4vw, 4.8rem);
  line-height: 1.06;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  vertical-align: middle;
  background: var(--muted);
  border-radius: 50%;
  opacity: 0.55;
}

.article-meta strong {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.byline {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0 28px;
  font-weight: 800;
}

.byline img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.text-link,
.view-all {
  color: var(--blue);
  font-weight: 900;
}

.text-link::after,
.view-all::after,
.article-row a::after {
  content: " →";
}

.feature-illustration {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.platform-plate {
  position: absolute;
  left: 14%;
  right: 5%;
  bottom: 42px;
  height: 210px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(222, 247, 249, 0.88)),
    repeating-linear-gradient(45deg, rgba(8, 36, 91, 0.04) 0 2px, transparent 2px 14px);
  border: 1px solid rgba(7, 154, 155, 0.2);
  border-radius: 42px;
  box-shadow:
    0 30px 48px rgba(6, 25, 67, 0.12),
    0 18px 0 rgba(7, 154, 155, 0.08),
    0 36px 0 rgba(18, 104, 232, 0.06);
  transform: skewY(-8deg) rotate(-1deg);
}

.float-card {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 154, 155, 0.35);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(6, 25, 67, 0.12);
}

.float-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.float-card strong {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 10px;
  font-size: 0.9rem;
}

.float-card i {
  display: block;
  width: 74px;
  height: 3px;
  margin: 9px 0 0 52px;
  background: rgba(7, 154, 155, 0.28);
  border-radius: 999px;
}

.agent-card {
  left: 26%;
  top: 36px;
}

.tools-card {
  right: 10%;
  top: 84px;
}

.review-card {
  left: 30%;
  bottom: 118px;
}

.outcome-card {
  right: 4%;
  bottom: 84px;
}

.mini-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.mini-icons b {
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 800;
}

.dotted-path {
  position: absolute;
  left: 24%;
  top: 118px;
  width: 54%;
  height: 190px;
  border: 4px dashed rgba(7, 154, 155, 0.9);
  border-radius: 44px;
}

.blog-list {
  background: var(--paper);
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto 24px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, rgba(7, 154, 155, 0.09), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(7, 154, 155, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.featured-post h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.featured-post p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.post-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(6, 25, 67, 0.06);
}

.post-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-grid h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.post-grid p {
  color: var(--muted);
}

.post-grid a,
.back-link {
  align-self: end;
  color: var(--blue);
  font-weight: 900;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: clamp(28px, 4vw, 60px);
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) 0 clamp(52px, 7vw, 86px);
}

.latest-column > h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.article-row {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 270px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(6, 25, 67, 0.05);
}

.article-thumb {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(135deg, rgba(7, 154, 155, 0.18), rgba(18, 104, 232, 0.08));
  border-radius: 8px;
}

.article-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 150px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 228, 240, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 38px rgba(6, 25, 67, 0.12);
  transform: translate(-50%, -50%);
}

.thumb-design span::before {
  position: absolute;
  right: 22px;
  top: 16px;
  content: "";
  width: 14px;
  height: 78px;
  background: linear-gradient(var(--navy), var(--teal));
  border-radius: 999px;
  transform: rotate(38deg);
}

.thumb-reliable {
  background: linear-gradient(135deg, rgba(86, 111, 230, 0.15), rgba(239, 248, 255, 0.98));
}

.thumb-reliable span::before {
  position: absolute;
  right: -18px;
  bottom: 32px;
  content: "✓";
  display: grid;
  width: 54px;
  height: 62px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), #5b6ee1);
  border-radius: 22px 22px 26px 26px;
  font-weight: 900;
}

.thumb-agent {
  background: linear-gradient(135deg, rgba(7, 154, 155, 0.13), rgba(255, 255, 255, 0.98));
}

.thumb-agent span {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 50%;
}

.thumb-agent span::before,
.thumb-agent span::after {
  position: absolute;
  top: 34px;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--paper);
  border-radius: 50%;
}

.thumb-agent span::before {
  left: 26px;
}

.thumb-agent span::after {
  right: 26px;
}

.article-row h3 {
  max-width: 480px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.article-row p {
  max-width: 560px;
  color: var(--muted);
}

.row-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
}

.sidebar-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(6, 25, 67, 0.05);
}

.sidebar-card h2 {
  font-size: 1.35rem;
}

.sidebar-card a {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.sidebar-card a span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.sidebar-card .view-all {
  color: var(--blue);
}

.popular-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular;
}

.popular-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  counter-increment: popular;
}

.popular-list li::before {
  content: counter(popular);
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 900;
}

.popular-list a {
  display: block;
  margin: 0;
  color: var(--ink);
}

.popular-list span {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.86rem;
}

.subscribe-card {
  background: linear-gradient(135deg, rgba(7, 154, 155, 0.09), rgba(255, 255, 255, 0.98));
  border-color: rgba(7, 154, 155, 0.22);
}

.subscribe-card p {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(120px, 0.5fr));
  gap: clamp(24px, 4vw, 54px);
  padding: 44px clamp(24px, 5vw, 60px);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  grid-template-columns: 54px minmax(0, 360px);
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(6, 25, 67, 0.08);
}

.footer-brand p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-page {
  padding: clamp(48px, 7vw, 86px) clamp(22px, 5vw, 60px);
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.82), rgba(255, 255, 255, 1) 340px);
}

.article-wrap {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.article-wrap .back-link {
  display: inline-flex;
  margin-bottom: 28px;
}

.article-wrap h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
}

.article-wrap h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.article-wrap p {
  color: var(--muted);
  font-size: 1.06rem;
}

.article-intro {
  color: var(--ink);
  font-size: clamp(1.16rem, 1.5vw, 1.32rem);
  font-weight: 700;
}

.article-cta {
  margin-top: 42px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(18, 104, 232, 0.09), rgba(7, 154, 155, 0.08));
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: 16px;
}

.article-cta h2 {
  margin-top: 0;
}

.legal-page {
  padding: clamp(48px, 7vw, 86px) clamp(22px, 5vw, 60px);
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.82), rgba(255, 255, 255, 1) 340px);
}

.legal-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.legal-wrap h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
}

.legal-wrap h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-wrap a {
  color: var(--blue);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 44px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(6, 25, 67, 0.18);
}

.cookie-banner strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: flex;
    justify-content: flex-start;
  }

  .section-nav-link {
    display: none;
  }

  .hero,
  .split,
  .audience-section,
  .contact-hero,
  .contact-panel,
  .blog-feature,
  .blog-layout,
  .article-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-window {
    max-width: none;
    justify-self: stretch;
  }

  .contact-panel {
    gap: 28px;
  }

  .three-part,
  .contrast-grid,
  .operating-model,
  .capability-groups,
  .how-flow,
  .action-panel,
  .offer-strip {
    grid-template-columns: 1fr;
  }

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

  .window-nav {
    display: none;
  }

  .workflow-row,
  .hero-diagram,
  .status-strip,
  .app-shelf,
  .hero-feature-row,
  .family-grid,
  .app-grid,
  .boundary-card,
  .action-flow,
  .post-grid {
    grid-template-columns: 1fr;
  }

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

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

  .blog-feature {
    width: min(100% - 36px, 960px);
  }

  .feature-illustration {
    min-height: 360px;
  }

  .article-row {
    gap: 22px;
  }

  .article-thumb {
    min-height: 250px;
  }

  .blog-layout {
    width: min(100% - 36px, 960px);
  }

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

  .site-footer {
    gap: 24px;
  }

  .workflow-row article:not(:last-child)::after,
  .hero-diagram article:first-child::after,
  .diagram-core::after,
  .how-flow article:not(:last-child)::after,
  .operating-model article:not(:last-child)::after {
    display: none;
  }

  .bridge-line {
    justify-self: center;
    transform: rotate(90deg);
  }

  .action-intake,
  .action-output {
    min-height: auto;
  }

  .audience-map {
    min-height: 760px;
  }

  .how-flow article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .how-flow article {
    min-height: auto;
  }

  .node-executive {
    left: 8%;
    top: 28%;
  }

  .node-risk {
    right: 8%;
    top: 28%;
  }

  .node-operations {
    top: 8%;
  }

  .node-technology {
    left: 8%;
    bottom: 8%;
  }

  .node-domain {
    right: 8%;
    bottom: 8%;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 22px 28px 18px;
    overflow: hidden;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-links {
    display: none;
  }

  .site-header.nav-open .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .site-header.nav-open .nav-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-button {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    padding: 13px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(6, 25, 67, 0.1);
  }

  .mobile-menu-button span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--ink);
    border-radius: 999px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 4.1rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .mobile-title-accent {
    display: block;
    color: #4057f2;
  }

  h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.7rem);
  }

  .window-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .window-actions {
    display: none;
  }

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

  .hero,
  .section,
  .offer-strip,
  .closer,
  .contact-hero,
  .blog-feature,
  .blog-layout,
  .article-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    gap: 30px;
    padding-top: 22px;
    padding-bottom: 32px;
    background:
      radial-gradient(circle at 56% 26%, rgba(18, 104, 232, 0.12), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
  }

  .offer-strip {
    display: none;
  }

  .why-section {
    padding-top: 34px;
  }

  .process-cards::before {
    display: block;
    left: 12%;
    right: 12%;
    top: 56px;
  }

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

  .process-cards article {
    align-content: start;
    min-height: auto;
    padding: 20px 14px 18px;
    border-radius: 14px;
  }

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

  .offer-grid article {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    min-height: 210px;
    padding: 20px 12px 18px;
    text-align: center;
  }

  .offer-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
  }

  .offer-grid h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.15;
  }

  .offer-grid p {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .brand {
    gap: 14px;
    font-size: 1.7rem;
  }

  .brand img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .pill,
  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }

  .pill {
    margin-bottom: 28px;
    padding: 9px 14px;
  }

  .intro {
    margin-bottom: 26px;
    font-size: clamp(1.22rem, 5.2vw, 1.55rem);
    line-height: 1.32;
  }

  .intro,
  .product-definition,
  .agent-definition {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .product-definition {
    display: none;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-actions .button.primary {
    min-height: 58px;
    font-size: 1.1rem;
  }

  .hero-actions .button.primary::after {
    content: "→";
    margin-left: 14px;
    font-size: 1.45rem;
    line-height: 1;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .process-cards h2 {
    font-size: 0.98rem;
  }

  .process-cards p {
    font-size: 0.88rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-row span {
    width: 100%;
  }

  .product-window,
  .action-panel,
  .product-family,
  .governance-visual,
  .operating-model,
  .audience-map {
    border-radius: 18px;
  }

  .workflow-canvas,
  .action-panel,
  .product-family {
    padding: 14px;
  }

  .how-flow {
    border-radius: 18px;
  }

  .how-flow article {
    padding: 22px;
  }

  .how-flow span {
    margin-bottom: 18px;
  }

  .how-flow h3 {
    max-width: none;
    font-size: 1.22rem;
  }

  .how-flow p {
    font-size: 0.95rem;
  }

  .how-evidence {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .how-evidence span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .app-grid article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px 14px;
    align-items: center;
    min-height: auto;
    padding: 14px;
  }

  .app-icon {
    grid-row: 1 / span 3;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }

  .app-grid small,
  .app-grid h3,
  .app-grid p,
  .tomo-product strong {
    grid-column: 2;
  }

  .app-grid h3 {
    margin-bottom: 0;
    font-size: 0.98rem;
  }

  .app-grid p {
    display: none;
  }

  .tomo-product strong {
    min-height: auto;
    margin-top: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 0.82rem;
  }

  .action-panel {
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .action-intake,
  .action-output {
    display: none;
  }

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

  .action-flow article {
    align-content: start;
    min-height: 180px;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .action-flow span {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .action-flow h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }

  .action-flow p {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .app-tile,
  .workflow-row article,
  .assistant-card,
  .offer-grid article,
  .hero-feature-row article,
  .action-flow article,
  .family-grid article,
  .app-grid article,
  .capability-groups article {
    min-height: auto;
  }

  .hero-feature-row article {
    grid-template-columns: 64px 1fr;
    padding: 18px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

  .audience-section .stakeholder-list article {
    grid-template-columns: 52px 1fr;
    min-height: auto;
    padding: 18px;
  }

  .stakeholder-icon {
    width: 46px;
    height: 46px;
  }

  .audience-map {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 16px;
  }

  .map-ring {
    display: none;
  }

  .map-core,
  .map-node {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .map-core {
    order: -1;
    padding: 24px;
  }

  .map-node {
    padding: 18px 18px 18px 86px;
    justify-items: start;
    text-align: left;
  }

  .map-node img {
    left: 16px;
    top: 50%;
    width: 56px;
    height: 56px;
    transform: translateY(-50%);
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .hero-actions,
  .contact-routes {
    width: 100%;
  }

  .journey-link {
    grid-template-columns: 1fr;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .blog-feature,
  .blog-layout {
    width: 100%;
  }

  .blog-feature {
    margin-top: 18px;
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .feature-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 8.8vw, 2.85rem);
    line-height: 1.08;
  }

  .blog-feature .article-meta {
    gap: 7px 10px;
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .blog-feature .article-meta span:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-left: 10px;
  }

  .blog-feature .intro {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .blog-feature .byline {
    display: flex;
    width: 100%;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 0.98rem;
  }

  .blog-feature .byline img {
    width: 34px;
    height: 34px;
  }

  .blog-feature .text-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    color: var(--paper);
    background: var(--blue);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(18, 104, 232, 0.22);
  }

  .feature-illustration {
    display: none;
  }

  .platform-plate {
    left: 8%;
    right: 5%;
    bottom: 34px;
    height: 150px;
  }

  .float-card {
    min-width: 118px;
    padding: 12px;
  }

  .agent-card {
    left: 14%;
    top: 18px;
  }

  .tools-card {
    right: 4%;
    top: 58px;
  }

  .review-card {
    left: 12%;
    bottom: 80px;
  }

  .outcome-card {
    right: 2%;
    bottom: 58px;
  }

  .dotted-path {
    left: 11%;
    top: 86px;
    width: 74%;
    height: 142px;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    margin-bottom: 10px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .article-thumb {
    display: none;
  }

  .article-row h3 {
    max-width: none;
    margin-bottom: 6px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .article-row p {
    margin-bottom: 8px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .article-row .article-meta {
    gap: 5px 8px;
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .article-row .article-meta span:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-left: 8px;
  }

  .article-row .article-meta strong {
    font-size: 0.68rem;
  }

  .row-footer,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .row-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.78rem;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sidebar-card {
    padding: 14px;
    border-radius: 10px;
  }

  .sidebar-card h2 {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .sidebar-card a {
    gap: 8px;
    margin-top: 9px;
    font-size: 0.84rem;
  }

  .sidebar-card a span {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .popular-list {
    gap: 0;
  }

  .popular-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .popular-list li::before {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--paper);
    background: var(--teal);
    border-radius: 50%;
    font-size: 0.78rem;
    line-height: 1;
  }

  .popular-list a {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .popular-list span {
    grid-column: 2;
    font-size: 0.74rem;
  }

  .subscribe-card p {
    margin-bottom: 10px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-proof,
  .booking-card,
  .article-wrap,
  .legal-wrap {
    border-radius: 18px;
  }

  .contact-proof {
    padding: 14px;
  }

  .contact-proof article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calendly-inline-widget {
    min-width: 0;
    height: 650px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    justify-content: stretch;
  }

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