:root {
  color-scheme: light;
  --ink: #001848;
  --ink-2: #08275f;
  --muted: #536276;
  --line: #d7e3ef;
  --soft: #f5f9fc;
  --warm: #f8fbff;
  --blue: #0f3d91;
  --blue-dark: #001848;
  --teal: #078a9a;
  --teal-bright: #10b8c8;
  --teal-soft: #e5fbfd;
  --amber: #c98309;
  --amber-soft: #fff8e8;
  --danger: #b42318;
  --shadow: 0 1px 2px rgba(2, 18, 52, 0.05), 0 26px 64px -18px rgba(2, 18, 52, 0.2);
  --shadow-soft: 0 1px 2px rgba(2, 18, 52, 0.04), 0 14px 34px -12px rgba(2, 18, 52, 0.12);
  --radius: 14px;
  --radius-lg: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 520px at 88% -120px, rgba(16, 184, 200, 0.1), transparent 60%),
    radial-gradient(900px 480px at -140px 260px, rgba(15, 61, 145, 0.07), transparent 55%),
    #f8fbfd;
  color: var(--ink);
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -0.011em;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 24, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 184, 200, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}

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

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

main,
section,
.hero-copy,
.hero-visual,
.system-map,
.section-heading,
.assessment-copy,
.assessment-form,
.result-card {
  min-width: 0;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(16, 184, 200, 0.48);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(0, 24, 72, 0.1);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(165%);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

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

.site-header[data-elevated="true"] {
  box-shadow: 0 10px 32px rgba(0, 24, 72, 0.1);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-width: 242px;
}

.brand-logo {
  display: block;
  width: min(226px, 42vw);
  height: auto;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

.brand small {
  display: block;
  margin-left: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.desktop-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: #373d45;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a:hover {
  background: #eef8fb;
  color: var(--ink);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.header-action,
.primary-button {
  border-color: transparent;
  background: linear-gradient(135deg, var(--ink) 0%, #0a3f7e 48%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(0, 24, 72, 0.5);
}

.secondary-button {
  border-color: #c3cfdf;
  background: rgba(255, 255, 255, 0.86);
  color: #1f2937;
  backdrop-filter: blur(8px);
}

.primary-button:hover,
.header-action:hover {
  background: linear-gradient(135deg, var(--ink-2) 0%, #0a3f7e 42%, #056f80 100%);
  box-shadow: 0 18px 36px -12px rgba(7, 138, 154, 0.55);
  transform: translateY(-1px);
}

.secondary-button:hover {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
}

.section-band {
  width: 100%;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.04fr);
  gap: clamp(28px, 3.2vw, 46px);
  align-items: center;
  min-height: min(820px, calc(100vh - 76px));
  padding-top: 64px;
  padding-bottom: 72px;
  background:
    radial-gradient(1000px 520px at 86% -140px, rgba(16, 184, 200, 0.3), transparent 58%),
    radial-gradient(760px 420px at -100px 110%, rgba(16, 184, 200, 0.14), transparent 55%),
    linear-gradient(135deg, #021238, #0a2f6e 58%, #066d7c);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero .hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: 620px;
}

.hero .eyebrow {
  color: #7ee7f0;
}

.hero h1 {
  max-width: 11.8em;
  color: #fff;
  font-size: clamp(2.65rem, 3.35vw, 3.25rem);
  line-height: 1.03;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  display: inline;
  white-space: normal;
}

.hero h1 span:last-child {
  background: linear-gradient(90deg, #5eead4, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero .hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

.mobile-hero-flow {
  display: none;
}

.hero .primary-button {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, 0.5);
}

.hero .primary-button:hover {
  background: #e9fafc;
  box-shadow: 0 20px 40px -12px rgba(16, 184, 200, 0.45);
}

.hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero .secondary-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-bright), var(--blue));
  box-shadow: 0 0 0 4px rgba(16, 184, 200, 0.14);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 3.85vw, 3.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: #0b1220;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-text {
  max-width: 650px;
  color: #384252;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-actions,
.form-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-metrics-bar > .metric-item {
  flex: 1;
  min-width: 0;
}

.hero-metrics-bar dt {
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.08;
}

.hero-metrics-bar dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.3;
}

.metrics-sep {
  flex: 0 0 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 34px 80px -24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.flow-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(132px, 0.28fr) minmax(0, 0.42fr);
  gap: 14px;
  align-items: center;
  padding: 28px;
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 231, 240, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 78%);
}

.flow-column,
.flow-core {
  position: relative;
  z-index: 2;
}

.flow-column {
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 400px;
  align-content: center;
}

.output-flow {
  padding: 20px;
  border: 1px solid rgba(126, 231, 240, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 18%, rgba(16, 184, 200, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.08);
}

.flow-column > strong {
  color: #fff;
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.output-flow > strong {
  max-width: 9.4em;
  font-size: clamp(1.6rem, 2.05vw, 2.15rem);
}

.flow-column small,
.flow-core small {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.flow-kicker {
  width: fit-content;
  min-width: 92px;
  padding: 7px 10px;
  border: 1px solid rgba(126, 231, 240, 0.38);
  border-radius: 999px;
  background: rgba(126, 231, 240, 0.12);
  color: #7ee7f0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manual-stack,
.output-stack {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.manual-stack span,
.output-stack span {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.18;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.output-stack span {
  min-height: 52px;
  border-color: rgba(126, 231, 240, 0.54);
  background: rgba(255, 255, 255, 0.98);
  font-size: 0.9rem;
  font-weight: 850;
}

.mini-tool {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.mini-tool svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-tool.erp {
  background: #334155;
}

.mini-tool.files {
  background: #0ea5a8;
}

.mini-tool.mail {
  background: #2563eb;
}

.mini-tool.software {
  background: #7c3aed;
}

.mini-tool.ai {
  background: var(--ink);
}

.mini-logo {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  border-radius: 8px;
}

.flow-core {
  display: grid;
  min-width: 0;
  min-height: 218px;
  place-items: center;
  gap: 12px;
  padding: 22px 16px;
  border: 1px solid rgba(126, 231, 240, 0.45);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 22%, rgba(16, 184, 200, 0.32), transparent 48%),
    linear-gradient(150deg, #0a2f6e, #021238);
  color: #fff;
  text-align: center;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 0 0 10px rgba(126, 231, 240, 0.07);
}

.flow-core-mark {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.flow-core-line {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.28;
  text-wrap: balance;
}

.flow-core small {
  color: rgba(126, 231, 240, 0.9);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-visual::before,
.flow-visual::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, rgba(126, 231, 240, 0.05), rgba(16, 184, 200, 0.8), rgba(126, 231, 240, 0.05));
  content: "";
}

.flow-visual::before {
  left: 30%;
  width: 15%;
}

.flow-visual::after {
  right: 37%;
  width: 15%;
}

.flow-pulse {
  display: none;
}

.flow-pulse.one {
  left: 25%;
}

.flow-pulse.two {
  left: 50%;
  animation-delay: 1.7s;
}

@keyframes horizontalSignal {
  0%,
  10% {
    opacity: 0;
    transform: translateX(0) scale(0.82);
  }

  22%,
  76% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(180px) scale(1.08);
  }
}

.review-band {
  padding-top: 68px;
  padding-bottom: 68px;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(255, 255, 255, 0.94)),
    #fff;
}

.compact-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.review-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid #e3edf7;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px -28px rgba(2, 18, 52, 0.35);
}

.review-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #eefcff, #f7fbff);
  color: var(--teal);
}

.review-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.review-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.review-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.system-map {
  position: relative;
  display: grid;
  gap: 18px;
  height: 100%;
  min-height: 560px;
  align-content: center;
  padding: 42px;
}

.case-proof-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 252, 0.82)),
    #f8fcfd;
}

.case-scan-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}

.case-scan-strip article {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid #e2edf6;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px -26px rgba(2, 18, 52, 0.28);
}

.case-scan-strip span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-scan-strip strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.18;
}

.case-scan-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.before-after-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto 46px;
}

.before-after-panel article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #dfeaf5;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.before-after-panel article:first-child {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.78), rgba(255, 255, 255, 0.96)),
    #fff;
}

.before-after-panel article:last-child {
  background:
    linear-gradient(180deg, rgba(229, 251, 253, 0.84), rgba(255, 255, 255, 0.96)),
    #fff;
}

.compare-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 24, 72, 0.07);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.before-after-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after-panel li {
  position: relative;
  padding-left: 24px;
  color: #27364a;
  font-weight: 750;
  line-height: 1.35;
}

.before-after-panel li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.before-after-panel article:last-child li::before {
  background: var(--teal);
}

.compare-arrow {
  display: grid;
  place-items: center;
  color: var(--teal);
}

.compare-arrow svg {
  width: 60px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.examples-heading {
  margin-bottom: 28px;
}

.examples-heading h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

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

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  padding: 22px;
  border: 1px solid #e6edf6;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.case-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--case, var(--teal));
  content: "";
}

.case-card:hover {
  box-shadow: 0 30px 64px -18px rgba(2, 18, 52, 0.24);
  transform: translateY(-3px);
}

.case-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  min-width: 0;
}

.case-logo {
  display: grid;
  flex: 0 0 auto;
  width: 62px;
  height: 52px;
  place-items: center;
  padding: 8px;
  border: 1px solid #e3edf6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px -18px rgba(2, 18, 52, 0.4);
}

.case-logo.dark-logo {
  background: var(--ink);
}

.case-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-card h3 {
  margin: 0;
  min-width: 0;
  font-size: 1.2rem;
  line-height: 1.12;
}

.case-impact {
  display: block;
  margin-bottom: 16px;
  padding: 18px 16px;
  border: 1px solid color-mix(in srgb, var(--case, var(--teal)) 20%, #e8eef7);
  border-radius: var(--radius);
  background: linear-gradient(180deg, color-mix(in srgb, var(--case, var(--teal)) 7%, #fff), #fff);
}

.case-impact strong {
  display: block;
  color: var(--case, var(--teal));
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}

.case-ba {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.case-state {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border-radius: var(--radius);
}

.case-before {
  background: #f4f6fa;
}

.case-after {
  background: color-mix(in srgb, var(--case, var(--teal)) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--case, var(--teal)) 26%, transparent);
}

.case-label {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e3e8f0;
  color: #5a6678;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-state p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(229, 251, 253, 0.62));
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.04;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.proof-logo {
  display: inline-flex;
  min-width: 132px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #e8eef7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.proof-logo:hover {
  box-shadow: 0 20px 40px -16px rgba(2, 18, 52, 0.2);
  transform: translateY(-2px);
}

.proof-logo img {
  display: block;
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.88;
  transition:
    filter 0.18s ease,
    opacity 0.18s ease;
}

.proof-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.proof-logo.wide {
  min-width: 168px;
}

.proof-logo.extra-wide {
  min-width: 200px;
}

.proof-logo.dark-logo {
  background: #14213a;
}

.proof-logo.dark-logo img {
  max-width: 160px;
  max-height: 32px;
  filter: grayscale(0.4) brightness(1.5);
  opacity: 0.95;
}

.proof-logo.dark-logo:hover img {
  filter: none;
  opacity: 1;
}

.profile-proof-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 46px;
  padding-bottom: 46px;
  background:
    radial-gradient(760px 340px at 88% 10%, rgba(16, 184, 200, 0.14), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 250, 253, 0.82)),
    #f8fcfd;
}

.profile-proof-card,
.profile-proof-side {
  border: 1px solid #e4edf7;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.profile-proof-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 28px;
}

.profile-proof-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.profile-avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(16, 184, 200, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(150deg, #dff8fb, #ffffff 52%, #dbeafe);
  box-shadow: 0 18px 34px -18px rgba(0, 24, 72, 0.38);
}

.profile-avatar img {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  object-fit: cover;
  object-position: 50% 22%;
}

.profile-meta {
  display: grid;
  gap: 4px;
}

.profile-meta strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.1;
}

.profile-meta span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.profile-meta .profile-linkedin {
  width: fit-content;
  margin-top: 4px;
  padding: 5px 9px;
  border: 1px solid #b9dff3;
  border-radius: 999px;
  background: #eef8ff;
  color: #075985;
  font-size: 0.74rem;
  font-weight: 800;
}

.profile-proof-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.42rem, 1.9vw, 2.08rem);
  line-height: 1.08;
}

.profile-proof-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.profile-proof-side {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.proof-kicker {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

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

.compact-proof-logos .proof-logo,
.compact-proof-logos .proof-logo.wide,
.compact-proof-logos .proof-logo.extra-wide {
  min-width: 0;
  min-height: 78px;
  padding: 12px 14px;
  box-shadow: none;
}

.compact-proof-logos .proof-logo img {
  max-width: 154px;
  max-height: 38px;
}

.compact-proof-logos .logo-boost img {
  transform: scale(1.18);
}

.compact-proof-logos .logo-boost.strong img {
  transform: scale(1.34);
}

.experience-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  text-align: center;
}

.experience-lanes span {
  padding: 5px 8px;
  border: 1px solid #dce8f5;
  border-radius: 999px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.proof-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.not-found-page .site-header,
.entity-page .site-header {
  position: sticky;
}

.not-found-wrap,
.entity-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.not-found-card,
.entity-side-card,
.entity-card,
.entity-result-card {
  border: 1px solid #e4edf7;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.not-found-card {
  max-width: 760px;
  padding: 36px;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.not-found-links a {
  padding: 10px 14px;
  border: 1px solid #dce8f5;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.entity-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
}

.entity-side-card,
.entity-card,
.entity-result-card {
  padding: 28px;
}

.entity-side-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.entity-side-card strong,
.entity-result-card strong {
  font-size: 1.1rem;
}

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

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

.entity-card p:last-child,
.entity-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .entity-hero,
  .entity-grid,
  .entity-results-grid {
    grid-template-columns: 1fr;
  }

  .not-found-card,
  .entity-side-card,
  .entity-card,
  .entity-result-card {
    padding: 24px;
  }
}

.chaos-map {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 80px minmax(220px, 0.7fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #dce8f5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 250, 253, 0.9)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.chaos-cluster {
  position: relative;
  min-height: 150px;
}

.chaos-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 10px 12px;
  border: 1px solid #e0e8f2;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 24, 72, 0.08);
}

.chaos-node.excel {
  left: 3%;
  top: 8%;
  color: #047857;
  transform: rotate(-4deg);
}

.chaos-node.files {
  left: 34%;
  top: 0;
  color: #0f3d91;
  transform: rotate(3deg);
}

.chaos-node.teams {
  left: 16%;
  top: 55%;
  color: #4f46e5;
  transform: rotate(2deg);
}

.chaos-node.mail {
  right: 10%;
  top: 38%;
  color: #0a8aa0;
  transform: rotate(-3deg);
}

.chaos-node.erp {
  right: 28%;
  bottom: 4%;
  color: #c98309;
  transform: rotate(4deg);
}

.chaos-arrow {
  color: var(--teal);
}

.chaos-arrow svg {
  width: 100%;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chaos-result {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--ink), #0a5d72);
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 42px -22px rgba(0, 24, 72, 0.7);
}

.chaos-result img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.chaos-result strong {
  font-size: 1.2rem;
}

.chaos-result span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.manual-loss-flow article {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border: 1px solid #e1ebf5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 252, 0.9)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.manual-loss-flow article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--loss, var(--teal));
  content: "";
}

.loss-step {
  color: color-mix(in srgb, var(--loss, var(--teal)) 30%, #c7d4e3);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 0.9;
}

.loss-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: color-mix(in srgb, var(--loss, var(--teal)) 12%, #fff);
  color: var(--loss, var(--teal));
}

.loss-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manual-loss-flow h3 {
  margin: 0;
  font-size: 1.25rem;
}

.manual-loss-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  display: grid;
  border: 1px solid #e4edf7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 24, 72, 0.04);
  overflow: hidden;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #eefcff;
  color: #075c68;
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.faq-list p {
  margin: 0 18px 18px 68px;
  color: var(--muted);
  line-height: 1.5;
}

.logo-system-band {
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 250, 253, 0.86)),
    #fff;
}

.logo-system-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1.04;
}

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

.tool-logo {
  display: grid;
  min-height: 98px;
  place-items: center;
  gap: 10px;
  padding: 16px 10px;
  border: 1px solid #e8eef7;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.tool-logo:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.tool-logo img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.tool-svg {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--teal) 14%, #fff);
  color: var(--teal);
}

.tool-svg svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-logo.local-tool {
  position: relative;
  overflow: hidden;
}

.tool-logo.local-tool::before {
  display: none;
  content: "";
}

.tool-logo.local-tool img,
.tool-logo.local-tool strong {
  position: relative;
  z-index: 1;
}

.tool-logo.local-tool img {
  width: 42px;
  height: 42px;
}

.excel-tool {
  --tool-color: #1b834e;
}

.teams-tool {
  --tool-color: #5f67cd;
}

.sharepoint-tool {
  --tool-color: #148e94;
}

.powerbi-tool {
  --tool-color: #e4b336;
}

.tool-logo strong {
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.12;
}

.custom-tool i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.excel-tool i {
  background: #15803d;
}

.teams-tool i {
  background: #4f46e5;
}

.sharepoint-tool i {
  background: #0891b2;
}

.powerbi-tool i {
  background: #d97706;
}

.system-map::before {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 50%;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 24, 72, 0.34) 0,
    rgba(0, 24, 72, 0.34) 10px,
    transparent 10px,
    transparent 18px
  );
  content: "";
}

.system-map::after {
  position: absolute;
  left: calc(50% - 5px);
  top: 84px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-bright);
  box-shadow: 0 0 0 8px rgba(16, 184, 200, 0.14);
  animation: signalTravel 6s ease-in-out infinite;
  content: "";
}

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

.map-node {
  position: relative;
  z-index: 1;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #c8d4e4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.map-node span,
.map-node strong {
  display: block;
  font-weight: 800;
}

.map-node small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.4;
}

.map-node.compact,
.map-node.outcome {
  display: grid;
  min-height: 74px;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.map-node.source {
  border-color: rgba(0, 24, 72, 0.28);
  background: #edf6fb;
}

.map-node.warehouse {
  background: linear-gradient(135deg, var(--ink), var(--blue));
  color: #fff;
}

.map-node.warehouse small {
  color: #cfd3d8;
}

.map-row.final .map-node {
  border-color: rgba(16, 184, 200, 0.44);
  background: var(--teal-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

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

.problem-grid,
.pain-grid {
  max-width: var(--max);
}

.problem-grid article,
.pain-grid article,
.services-grid article {
  min-height: 186px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 24, 72, 0.05);
}

.pain-grid article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 250, 253, 0.92)),
    #fff;
}

.pain-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(16, 184, 200, 0.2);
  border-radius: 999px;
  background: rgba(16, 184, 200, 0.08);
  content: "";
}

.pain-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(0, 24, 72, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 24, 72, 0.08);
}

.pain-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.problem-grid article:nth-child(1),
.services-grid article:nth-child(1) {
  border-top: 4px solid var(--blue);
}

.problem-grid article:nth-child(2),
.services-grid article:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.problem-grid article:nth-child(3),
.services-grid article:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.problem-grid article:nth-child(4),
.services-grid article:nth-child(4) {
  border-top: 4px solid #7c3aed;
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.problem-grid p,
.services-grid p,
.case-item p,
.assessment-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.solution-band,
.assessment-band {
  background:
    linear-gradient(180deg, rgba(248, 252, 253, 0.92), rgba(244, 250, 252, 0.78)),
    var(--soft);
}

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

.solution-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 22px 26px;
  border: 1px solid #e6edf6;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.solution-step:hover {
  box-shadow: 0 28px 60px -18px rgba(2, 18, 52, 0.22);
  transform: translateY(-4px);
}

.solution-step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--step, var(--teal)) 40%, #c9d4e3);
}

.solution-step-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--step, var(--teal)) 16%, #fff), #fff);
  color: var(--step, var(--teal));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--step, var(--teal)) 18%, transparent);
}

.solution-step-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-step h3 {
  margin: 12px 0 0;
  font-size: 1.18rem;
}

.solution-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@keyframes pipelinePulse {
  0%,
  12% {
    opacity: 0;
    transform: translateX(0) scale(0.78);
  }

  20%,
  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(1080px) scale(1.08);
  }
}

.case-list {
  border-top: 1px solid var(--line);
}

.ideas-feature-band,
.ideas-index {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 250, 253, 0.72)),
    #fff;
}

.ideas-preview-grid,
.ideas-grid,
.related-grid {
  display: grid;
  gap: 16px;
}

.ideas-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
}

.idea-preview-card,
.idea-card,
.idea-mini-card {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.idea-preview-card,
.idea-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(0, 24, 72, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.idea-preview-card:hover,
.idea-card:hover {
  box-shadow: 0 26px 56px -14px rgba(2, 18, 52, 0.22);
  transform: translateY(-3px);
}

.idea-preview-card {
  border-top: 4px solid var(--teal);
}

.idea-preview-card:nth-child(2) {
  border-top-color: var(--blue);
}

.idea-preview-card:nth-child(3) {
  border-top-color: var(--amber);
}

.idea-preview-card span,
.idea-card > span,
.idea-mini-card span,
.idea-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.idea-preview-card strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.idea-preview-card {
  padding: 0;
  overflow: hidden;
}

.idea-thumb {
  display: block;
  width: calc(100% + 0px);
  margin: 0;
  padding: 18px 18px 6px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--teal) 14%, #fff), #fff);
}

.has-article-image .idea-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  background: #eef5f8;
}

.idea-thumb img,
.idea-card-image img,
.article-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idea-preview-card:nth-child(2) .idea-thumb {
  background: linear-gradient(160deg, color-mix(in srgb, var(--blue) 12%, #fff), #fff);
}

.idea-preview-card:nth-child(3) .idea-thumb {
  background: linear-gradient(160deg, color-mix(in srgb, var(--amber) 14%, #fff), #fff);
}

.idea-thumb svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.idea-preview-card:nth-child(2) .idea-thumb svg {
  stroke: var(--blue);
}

.idea-preview-card:nth-child(3) .idea-thumb svg {
  stroke: var(--amber);
}

.idea-thumb svg .idea-badge {
  stroke: var(--ink);
  opacity: 0.85;
}

.idea-thumb svg .idea-badge-mark {
  stroke: var(--danger);
}

.idea-tag {
  width: fit-content;
  margin: 18px 18px 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #5a6678 !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

.idea-preview-card strong {
  margin: 0 18px;
}

.idea-points {
  margin: 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.idea-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.idea-points li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
  content: "›";
}

.idea-readmore {
  margin: 4px 18px 20px;
  color: var(--blue) !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.idea-preview-card:hover .idea-readmore {
  text-decoration: underline;
}

.ideas-link {
  width: fit-content;
  margin-top: 24px;
}

.ideas-hero {
  min-height: 520px;
  align-content: center;
  background:
    radial-gradient(circle at top right, rgba(16, 184, 200, 0.16), transparent 36%),
    linear-gradient(135deg, #f8fbff, #edf9fb 68%, #fff7ed);
}

.ideas-index .section-heading {
  max-width: 920px;
}

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

.idea-card-image {
  aspect-ratio: 16 / 8.8;
  overflow: hidden;
  margin: -24px -24px 6px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #eef5f8;
}

.idea-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.idea-card h3 a {
  color: inherit;
  text-decoration: none;
}

.idea-card p {
  color: var(--muted);
  line-height: 1.58;
}

.idea-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.idea-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(16, 184, 200, 0.24);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--ink);
}

.idea-article {
  max-width: none;
  margin-inline: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max);
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.idea-article {
  padding-top: 68px;
}

.article-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  max-width: var(--max);
  margin: 34px auto 0;
}

.article-header {
  max-width: none;
  min-width: 0;
}

.idea-article h1 {
  max-width: 920px;
  margin: 18px 0 20px;
  font-size: clamp(2.9rem, 4.35vw, 4.75rem);
  line-height: 1.12;
  padding-block: 0.03em 0.05em;
  text-wrap: balance;
}

.idea-article .hero-text {
  max-width: 780px;
  color: #44546a;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.58;
}

.article-meta {
  margin-top: 22px;
}

.article-side-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
  position: sticky;
  top: 104px;
}

.article-hero-image {
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(0, 24, 72, 0.1);
  border-radius: var(--radius);
  background: #eef5f8;
  box-shadow: 0 22px 54px rgba(0, 24, 72, 0.1);
}

.answer-box,
.article-cta {
  margin: 42px 0;
  padding: 26px;
  border: 1px solid rgba(16, 184, 200, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(229, 251, 253, 0.92), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: 0 18px 44px rgba(0, 24, 72, 0.07);
}

.article-side-panel .answer-box {
  margin: 0;
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.answer-box p,
.article-cta p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.article-body {
  max-width: 820px;
  margin: 56px auto 0;
}

.article-cta {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.related-ideas {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

.article-body p,
.article-body li {
  color: #29313a;
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-checklist {
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-checklist li::before {
  position: absolute;
  left: 16px;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.article-cta {
  background:
    linear-gradient(135deg, #001848, #0b3c87 60%, #078a9a),
    var(--ink);
  color: #fff;
}

.article-cta h2 {
  color: #fff;
}

.article-cta .eyebrow,
.article-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.article-cta .primary-button {
  width: fit-content;
  margin-top: 22px;
}

.related-ideas {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.related-ideas h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

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

.idea-mini-card {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.idea-mini-card strong {
  font-size: 1.04rem;
  line-height: 1.25;
}

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

.footer-links a {
  color: var(--blue);
  text-decoration: none;
}

.case-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.case-number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.case-item h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.case-item p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 24, 72, 0.05);
}

.process-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-dark);
  font-weight: 800;
}

.process-steps strong {
  display: block;
}

.assessment-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 44px;
  align-items: start;
}

.assessment-copy {
  position: sticky;
  top: 112px;
}

.assessment-note {
  display: grid;
  gap: 8px;
  max-width: 460px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--amber-soft);
  border-color: rgba(245, 158, 11, 0.35);
}

.assessment-note span {
  color: var(--muted);
  line-height: 1.5;
}

.assessment-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.compact-lead-form {
  align-self: start;
}

.form-greeter {
  display: flex;
  justify-content: center;
  margin: -52px 0 8px;
}

.form-avatar {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(160deg, #eafafc, #fff);
  border: 3px solid #fff;
  box-shadow: 0 14px 30px -10px rgba(7, 138, 154, 0.45);
}

.form-avatar img {
  width: 60px;
  height: 60px;
  image-rendering: pixelated;
}

.form-avatar-dot {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #22c55e;
}

.process-field {
  display: block;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(16, 184, 200, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(229, 251, 253, 0.64), rgba(255, 255, 255, 0.9));
}

.process-field textarea {
  min-height: 116px;
}

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

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

.time-estimator {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(0, 24, 72, 0.1);
  border-radius: var(--radius);
  background: #f8fbff;
}

.estimator-head {
  display: grid;
  gap: 3px;
}

.estimator-head strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.estimator-head span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.estimate-output {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: #064e5a;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid.compact {
  align-items: stretch;
}

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: #29313a;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c8ced6;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(16, 184, 200, 0.15);
}

fieldset {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

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

.choice-grid label,
.stacked-options label {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: #2d333b;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
}

.choice-grid input,
.stacked-options input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--teal);
}

.stacked-options {
  display: grid;
  gap: 10px;
}

.assessment-form > label {
  display: block;
  margin-top: 18px;
}

.form-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.form-promise span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(16, 184, 200, 0.32);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 700;
}

.field-invalid {
  border-color: var(--danger);
}

.field-invalid:focus {
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.result-band {
  padding-top: 56px;
  background:
    radial-gradient(900px 420px at 86% -60px, rgba(16, 184, 200, 0.26), transparent 58%),
    linear-gradient(135deg, #021238, #0a2f6e 58%, #066d7c);
  color: #fff;
}

.result-card {
  max-width: var(--max);
}

.result-card .eyebrow,
.result-card p {
  color: #d7dbe0;
}

.result-card h2 {
  color: #fff;
}

.result-card .secondary-button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.result-card .secondary-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.result-summary,
#resultSummary {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.result-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 28px 0 0;
  padding: 0;
  counter-reset: result-step;
  list-style: none;
}

.result-steps li {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  counter-increment: result-step;
}

.result-steps li::before {
  width: fit-content;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(16, 184, 200, 0.22);
  color: #a9f2f7;
  content: "0" counter(result-step);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.result-steps strong {
  color: #fff;
  font-size: 0.98rem;
}

.result-steps span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.5;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 13, 36, 0.68);
  backdrop-filter: blur(10px);
}

.success-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(620px 280px at 100% -80px, rgba(16, 184, 200, 0.28), transparent 62%),
    #fff;
  box-shadow: 0 28px 80px rgba(0, 24, 72, 0.32);
}

.success-modal-card .eyebrow {
  color: var(--teal);
}

.success-modal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.success-modal-card #resultSummary {
  color: var(--muted);
}

.success-modal-card .result-steps {
  grid-template-columns: 1fr;
  max-width: none;
  margin-top: 22px;
}

.success-modal-card .result-steps li {
  background: #f7fafc;
  border-color: var(--line);
}

.success-modal-card .result-steps li::before {
  background: var(--teal-soft);
  color: var(--teal);
}

.success-modal-card .result-steps strong {
  color: var(--ink);
}

.success-modal-card .result-steps span {
  color: var(--muted);
}

.success-modal-card .result-actions {
  margin-top: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.booking-band {
  background:
    radial-gradient(900px 460px at 84% -80px, rgba(16, 184, 200, 0.28), transparent 58%),
    linear-gradient(135deg, #021238, #0a2f6e 58%, #066d7c);
  color: #fff;
}

.booking-band .eyebrow {
  color: #7ee7f0;
}

.booking-band h2 {
  color: #fff;
}

.booking-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-band .primary-button {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, 0.5);
}

.booking-band .primary-button:hover {
  background: #e9fafc;
}

.booking-band .secondary-button {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.booking-band .secondary-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #373d45;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-nav a:hover {
  background: #eef8fb;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 24, 72, 0.08);
  font-size: 0.86rem;
}

.footer-privacy {
  color: #7e8ba0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.footer-brand img {
  display: block;
  width: 186px;
  max-width: 42vw;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.noscript {
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--danger);
  color: #fff;
  font-weight: 700;
}

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

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

  .hero {
    min-height: auto;
    gap: 34px;
  }

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

  .hero-visual,
  .system-map {
    min-height: 500px;
  }

  .flow-visual {
    min-height: 480px;
    padding: 30px;
  }

  .pipeline,
  .problem-grid,
  .pain-grid,
  .review-grid,
  .case-scan-strip,
  .case-proof-grid,
  .ideas-preview-grid,
  .services-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pipeline::before,
  .pipeline::after,
  .pipeline-step::after {
    display: none;
  }

  .pipeline-core {
    transform: none;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .profile-proof-band {
    grid-template-columns: 1fr;
  }

  .profile-avatar {
    width: 82px;
    height: 82px;
  }

  .profile-avatar img {
    width: 64px;
    height: 64px;
  }

  .manual-loss-flow {
    grid-template-columns: 1fr;
  }

  .before-after-panel {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .article-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-side-panel {
    position: static;
    max-width: 720px;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

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

  .chaos-arrow {
    display: none;
  }

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

  .tool-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-note {
    grid-column: auto;
    margin-top: -10px;
  }

  .assessment-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    padding: 10px 20px;
  }

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

  .proof-logo,
  .proof-logo.wide,
  .proof-logo.extra-wide {
    min-width: 0;
    min-height: 52px;
    padding: 8px 10px;
  }

  .proof-logo img {
    max-width: 100%;
    max-height: 28px;
  }

  .profile-proof-card {
    gap: 16px;
    padding: 16px;
  }

  .profile-proof-head {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .profile-avatar {
    width: 58px;
    height: 58px;
  }

  .profile-avatar img {
    width: 46px;
    height: 46px;
  }

  .profile-proof-copy h2 {
    font-size: 1.3rem;
  }

  .profile-proof-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .profile-proof-side {
    padding: 16px;
  }

  .compact-proof-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .compact-proof-logos .proof-logo,
  .compact-proof-logos .proof-logo.wide,
  .compact-proof-logos .proof-logo.extra-wide {
    min-height: 48px;
    padding: 7px;
  }

  .compact-proof-logos .proof-logo img {
    max-height: 24px;
  }

  .compact-proof-logos .logo-boost img {
    transform: scale(1.08);
  }

  .compact-proof-logos .logo-boost.strong img {
    transform: scale(1.18);
  }

  .manual-loss-flow article {
    min-height: auto;
    padding: 22px;
  }

  .loss-step {
    font-size: 2.25rem;
  }

  .chaos-map {
    padding: 14px;
  }

  .chaos-cluster {
    min-height: 138px;
  }

  .chaos-node {
    min-width: 78px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .chaos-result {
    min-height: 120px;
  }

  .faq-list summary {
    padding: 14px;
  }

  .faq-list p {
    margin: 0 14px 16px 64px;
  }

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

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100vw - 178px);
  }

  .brand-logo {
    width: min(154px, 100%);
    max-height: 30px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.8rem;
  }

  .section-band {
    padding: 64px 20px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 30px;
    gap: 24px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.64rem, 8.25vw, 2.32rem);
    line-height: 1.04;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.64rem, 8.25vw, 2.32rem);
  }

  h1 span {
    white-space: normal;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.92rem, 8.6vw, 2.8rem);
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .hero .hero-text {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .mobile-hero-flow {
    position: relative;
    display: grid;
    gap: 9px;
    margin: 14px 0 16px;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background:
      radial-gradient(220px 140px at 88% 20%, rgba(16, 184, 200, 0.24), transparent 62%),
      rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 44px -24px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(12px);
  }

  .mobile-hero-flow::before,
  .mobile-hero-flow::after {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 14px;
    background: linear-gradient(180deg, transparent, rgba(94, 234, 212, 0.95), transparent);
    content: "";
  }

  .mobile-hero-flow::before {
    top: 118px;
  }

  .mobile-hero-flow::after {
    bottom: 106px;
  }

  .mobile-flow-stage {
    display: grid;
    gap: 7px;
    justify-items: center;
    text-align: center;
  }

  .mobile-flow-stage .flow-kicker {
    min-width: 86px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .mobile-flow-stage strong {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.15;
  }

  .mobile-flow-stage-result strong {
    font-size: 1.18rem;
  }

  .mobile-flow-row {
    display: grid;
    gap: 7px;
  }

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

  .mobile-flow-result {
    grid-template-columns: 1fr;
  }

  .mobile-flow-row span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-flow-row .mini-logo {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
  }

  .mobile-flow-row .mini-tool {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    font-size: 0.65rem;
  }

  .mobile-flow-row .mini-tool svg {
    width: 15px;
    height: 15px;
  }

  .mobile-flow-core {
    display: grid;
    width: min(244px, 100%);
    min-height: 104px;
    place-self: center;
    place-items: center;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(126, 231, 240, 0.35);
    border-radius: 24px;
    background: linear-gradient(145deg, #061f55, #07355e 58%, #087681);
    box-shadow: 0 18px 42px -18px rgba(16, 184, 200, 0.75);
  }

  .mobile-flow-core img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .mobile-flow-core span {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
  }

  .mobile-flow-core small {
    color: #7ee7f0;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .hero-actions,
  .form-actions,
  .result-actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    white-space: normal;
    text-align: center;
  }

  .booking-band .primary-button {
    width: 100%;
  }

  .header-action {
    width: auto;
    white-space: nowrap;
  }

  .result-steps {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-grid,
  .pain-grid,
  .review-grid,
  .case-scan-strip,
  .case-proof-grid,
  .solution-steps,
  .ideas-preview-grid,
  .ideas-grid,
  .related-grid,
  .services-grid,
  .pipeline,
  .process-steps,
  .form-grid,
  .compact-lead-form .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin-top: 18px;
  }

  .hero-metrics-bar dt {
    font-size: 0.92rem;
  }

  .hero-metrics-bar dd {
    font-size: 0.68rem;
  }

  .metrics-sep {
    display: none;
  }

  .review-band {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .review-grid article,
  .before-after-panel article {
    min-height: auto;
    padding: 20px;
  }

  .before-after-panel {
    gap: 12px;
    margin-bottom: 34px;
  }

  .hero-visual,
  .search-landing-hero .hero-visual {
    display: none;
  }

  .system-map {
    min-height: 430px;
  }

  .flow-visual {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 14px;
  }

  .flow-visual::before,
  .flow-visual::after,
  .flow-pulse {
    display: none;
  }

  .flow-column {
    min-height: auto;
    padding: 14px;
  }

  .flow-core {
    min-height: 142px;
    border-radius: 28px;
  }

  .manual-stack span:nth-child(2),
  .manual-stack span:nth-child(3),
  .manual-stack span:nth-child(4),
  .output-stack span:nth-child(2),
  .output-stack span:nth-child(3) {
    transform: none;
  }

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

  .case-proof-grid article {
    min-height: auto;
    padding: 20px;
  }

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

  .case-scan-strip article {
    min-height: auto;
    padding: 14px;
  }

  .case-scan-strip strong {
    font-size: 0.9rem;
  }

  .case-scan-strip p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .case-head {
    align-items: flex-start;
    gap: 10px;
  }

  .case-logo {
    width: 52px;
    height: 46px;
  }

  .case-impact {
    margin-bottom: 12px;
    padding: 14px;
  }

  .case-impact strong {
    font-size: 1.28rem;
  }

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

  .case-state {
    gap: 7px;
    padding: 11px;
  }

  .case-state p {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .profile-proof-band {
    gap: 14px;
  }

  .profile-proof-side {
    display: none;
  }

  .case-proof-band .section-heading h2 {
    font-size: clamp(1.76rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .case-proof-band .section-heading p:not(.eyebrow) {
    max-width: 34ch;
  }

  .solution-band {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .solution-band .section-heading {
    margin-bottom: 22px;
  }

  .solution-band .section-heading h2 {
    font-size: clamp(1.86rem, 8.2vw, 2.3rem);
    line-height: 1.08;
  }

  .solution-steps {
    gap: 12px;
  }

  .solution-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 13px;
    row-gap: 5px;
    align-items: center;
    min-height: auto;
    padding: 15px 16px;
    border-radius: 20px;
    text-align: left;
  }

  .solution-step-num {
    top: 12px;
    right: 14px;
    font-size: 0.9rem;
  }

  .solution-step-icon {
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .solution-step-icon svg {
    width: 26px;
    height: 26px;
  }

  .solution-step h3 {
    min-width: 0;
    margin: 0;
    padding-right: 22px;
    font-size: 1.08rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .solution-step p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

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

  .case-number {
    max-width: 100%;
    white-space: normal;
  }

  .ideas-hero {
    min-height: auto;
  }

  .idea-preview-card,
  .idea-card {
    min-height: auto;
    padding: 20px;
  }

  .idea-article {
    padding-top: 48px;
  }

  .idea-article h1 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
    line-height: 1.12;
  }

  .answer-box,
  .article-cta {
    padding: 20px;
  }

  .article-cta .primary-button,
  .ideas-link {
    width: 100%;
  }

  .idea-article {
    padding-top: 42px;
  }

  .idea-article h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
    line-height: 1.12;
  }

  .case-flow {
    grid-template-columns: 1fr;
  }

  .case-arrow {
    width: 100%;
    min-height: 24px;
  }

  .case-mini-flow {
    grid-template-columns: 1fr;
  }

  .case-arrow-visual {
    min-height: 24px;
    transform: rotate(90deg);
  }

  .case-side {
    min-height: 138px;
    padding: 14px;
  }

  .pipeline {
    padding: 16px;
  }

  .pipeline-step {
    min-height: 220px;
  }

  .pipeline-step strong {
    min-height: auto;
  }

  .trust-strip {
    display: none;
  }

  .proof-band {
    padding: 34px 16px;
  }

  .profile-proof-band {
    padding: 28px 16px;
  }

  .profile-proof-card {
    padding: 16px;
  }

  .profile-proof-copy h2 {
    font-size: 1.3rem;
  }

  .logo-system-band {
    padding: 38px 16px;
  }

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

  .tool-logo {
    min-height: 88px;
  }

  .proof-logos {
    gap: 8px;
  }

  .proof-logo {
    min-width: calc(50% - 4px);
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .proof-logo.wide,
  .proof-logo.extra-wide {
    min-width: 100%;
  }

  .proof-logo img {
    max-width: 118px;
    max-height: 26px;
  }

  .system-map {
    gap: 12px;
    padding: 18px;
  }

  .map-node {
    min-height: 68px;
    padding: 14px;
  }

  .map-node.compact,
  .map-node.outcome {
    min-height: 58px;
  }

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

  .system-map::before {
    left: 50%;
  }

  .case-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .assessment-form {
    padding: 18px;
  }

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

  .success-modal {
    align-items: end;
    padding: 12px;
  }

  .success-modal-card {
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
    border-radius: 18px;
  }

  .success-modal-card .result-actions {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    max-width: calc(100vw - 158px);
  }

  .brand-logo {
    width: min(138px, 100%);
  }

  .header-action {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.76rem;
  }

  .section-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(1.54rem, 8vw, 2rem);
  }

  .case-scan-strip,
  .case-ba {
    grid-template-columns: 1fr;
  }

  .case-impact strong {
    font-size: 1.18rem;
  }

  .solution-step {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 11px;
    padding: 14px;
  }

  .solution-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .solution-step-icon svg {
    width: 24px;
    height: 24px;
  }

  .solution-step h3 {
    font-size: 1rem;
  }

  .solution-step p {
    font-size: 0.86rem;
  }

  .mobile-flow-row span {
    gap: 5px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 0.7rem;
  }

  .mobile-flow-row .mini-logo {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .mobile-flow-row .mini-tool {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 0.58rem;
  }
}

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

  .system-map::after {
    animation: none;
  }

  .flow-pulse,
  .pipeline::after {
    animation: none;
  }
}

@keyframes signalTravel {
  0%,
  14% {
    transform: translateY(0);
    opacity: 0;
  }

  20%,
  82% {
    opacity: 1;
  }

  100% {
    transform: translateY(396px);
    opacity: 0;
  }
}
