:root {
  --blue: #1728d7;
  --blue-dark: #08166f;
  --ink: #11131a;
  --paper: #ffffff;
  --soft: #f2f4ff;
  --yellow: #ffd629;
  --line: #cdd3ef;
  --muted: #4f566b;
  --max: 1180px;
}

* { 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;
  font-size: 1rem;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: #fff;
  background: #000;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: rgba(23,40,215,.98);
}
.nav {
  min-height: 94px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { margin-right: auto; display: grid; grid-template-columns: auto minmax(110px,145px); gap: 14px; align-items: center; text-decoration: none; }
.brand img { width: 126px; height: auto; }
.brand span { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.3); color: #d5d8e6; font-size: .74rem; font-weight: 700; line-height: 1.25; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #fff;
  min-height: 44px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}
.nav-links a[aria-current="page"], .nav-links a:hover { background: #fff; color: var(--blue-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { min-height: 44px; padding: 9px 28px 9px 12px; display: inline-flex; align-items: center; border-radius: 8px; color: #fff; font-weight: 750; cursor: pointer; list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: "⌄"; position: absolute; right: 10px; top: 9px; color: var(--yellow); }
.nav-dropdown summary:hover, .nav-dropdown summary[aria-current="page"] { color: var(--blue-dark); background: #fff; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; padding: 8px; display: grid; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--paper); box-shadow: 0 14px 34px rgba(8,22,111,.14); }
.dropdown-menu a { color: var(--blue-dark); white-space: nowrap; }
.nav-links .company-link { margin-left: 8px; border-left: 1px solid rgba(255,255,255,.3); border-radius: 0; color: #fff; }
.nav-links .app-link { padding-right: 16px; padding-left: 16px; color: #101010; background: var(--yellow); }
.nav-links .app-link:hover { color: #101010; background: #f2c900; }
.menu-toggle { display: none; color: var(--blue-dark); }

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

.hero, .page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .12em;
}
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -.035em; }
h1 { max-width: 820px; font-size: clamp(3rem, 7vw, 6.8rem); }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p, .page-hero > div > p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}
.hero-copy > .hero-punchline {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 50px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
  text-decoration: none;
}
.button.secondary { color: var(--blue-dark); background: #fff; }
.button.yellow { border-color: var(--blue); color: #fff; background: var(--blue); }
.button.yellow:hover { border-color: var(--blue-dark); background: var(--blue-dark); }
.dark .button.yellow { border-color: var(--yellow); color: #101010; background: var(--yellow); }
.dark .button.yellow:hover { border-color: #f2c900; background: #f2c900; }
.hero-eycon { margin: 0; }
.hero-eycon img { width: min(100%, 340px); margin: auto; }
.hero-eycon figcaption {
  margin-top: 16px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  font-weight: 750;
  transform: rotate(-1.5deg);
  box-shadow: 7px 7px 0 var(--blue);
}

.eyecon-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  color: #fff;
  background: var(--blue);
}
.eyecon-feature h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.eyecon-feature p { max-width: 700px; margin: 20px 0 28px; color: #eef0ff; font-size: 1.15rem; }
.eyecon-feature .eyebrow { color: var(--yellow); }
.eyecon-feature .button { border-color: #fff; color: var(--blue-dark); background: #fff; }
.eyecon-feature-gallery { display: flex; align-items: center; }
.eyecon-feature-gallery img { width: clamp(90px, 10vw, 132px); height: clamp(90px, 10vw, 132px); padding: 10px; object-fit: contain; }
.eyecon-feature-gallery img + img { margin-left: clamp(-28px, -2vw, -18px); }

.outcomes-section { color: var(--ink); background: var(--soft); }
.outcomes-heading { max-width: 980px; }
.outcomes-heading .eyebrow { color: var(--blue-dark); }
.outcomes-heading h2 { max-width: 880px; }
.outcomes-heading p { max-width: 760px; color: var(--muted); font-size: 1.15rem; line-height: 1.7; }
.outcome-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.outcome-group { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: var(--paper); }
.outcome-business { background: var(--paper); }
.outcome-audience { display: block; margin-bottom: 14px; color: var(--blue); font-size: .9rem; font-weight: 900; letter-spacing: .1em; }
.outcome-group h3 { max-width: 480px; color: var(--ink); font-size: clamp(2rem, 3.4vw, 3.1rem); }
.outcome-group > p { margin: 18px 0 0; font-size: 1.08rem; }
.outcome-group ul { margin: 28px 0 0; padding: 0; list-style: none; }
.outcome-group li { padding: 18px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.outcome-group strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1.1rem; }
.outcome-proof { max-width: none; margin: 26px 0 0; padding: 22px 26px; border: 2px solid var(--yellow); border-left-width: 8px; border-radius: 12px; color: #fff; background: transparent; font-size: 1.08rem; line-height: 1.65; }
.outcome-proof strong { color: var(--yellow); }

.video-section {
  padding: 76px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--soft);
}
.video-intro { max-width: 820px; margin-bottom: 28px; }
.video-intro h2 { font-size: clamp(2.25rem, 5vw, 4.4rem); }
.video-intro p { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 1.15rem; }
.video-placeholder {
  position: relative;
  min-height: clamp(330px, 51vw, 620px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(28px, 6vw, 72px);
  border: 2px solid var(--ink);
  border-radius: 20px;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 12px 12px 0 var(--blue);
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  pointer-events: none;
}
.video-placeholder > img { width: min(100%, 280px); justify-self: center; }
.video-placeholder-copy { position: relative; z-index: 1; }
.video-status { color: var(--yellow); font-size: .86rem; font-weight: 850; letter-spacing: .1em; }
.video-placeholder-copy p { max-width: 650px; margin: 18px 0 30px; font-size: clamp(1.8rem, 4vw, 3.8rem); font-weight: 850; line-height: 1.08; letter-spacing: -.035em; }
.play-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--yellow);
}
.play-mark span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
}

.section { padding: 76px max(24px, calc((100vw - var(--max)) / 2)); }
.section.soft { border-top: 1px solid var(--line); background: var(--soft); }
.section.dark { border-top: 1px solid rgba(255,255,255,.3); color: #fff; background: var(--blue-dark); }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2.25rem, 5vw, 4.4rem); }
.section-heading p { max-width: 720px; margin: 18px 0 0; font-size: 1.15rem; }
.dark .eyebrow { color: var(--yellow); }

.history-section { border-top: 1px solid var(--line); background: #fff; }
.history-section .section-heading .eyebrow { color: var(--blue); }
.history-timeline { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; counter-reset: history; }
.history-timeline li { position: relative; min-width: 0; padding: 30px 24px 26px; border-top: 5px solid var(--blue); border-right: 1px solid var(--line); background: var(--soft); }
.history-timeline li:last-child { border-right: 0; }
.history-timeline li::before { content: ""; position: absolute; width: 17px; height: 17px; top: -11px; left: 24px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.history-years { display: block; margin-bottom: 12px; color: var(--blue-dark); font-size: .82rem; font-weight: 900; letter-spacing: .08em; }
.history-timeline h3 { font-size: 1.45rem; }
.history-timeline p { margin: 12px 0 0; color: var(--muted); }
.wrong-callout { margin-top: 28px; padding: clamp(24px, 5vw, 48px); display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 34px; align-items: center; border: 2px solid var(--ink); border-radius: 18px; background: var(--yellow); box-shadow: 10px 10px 0 var(--blue-dark); }
.wrong-callout img { width: 140px; }
.wrong-callout .eyebrow { color: var(--blue-dark); }
.wrong-callout h3 { font-size: clamp(2rem, 4vw, 3.4rem); }
.wrong-callout p { max-width: 850px; margin: 14px 0 0; font-size: 1.12rem; }
.consequence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.consequence-grid article { padding: 26px; border: 1px solid rgba(255,255,255,.42); border-radius: 16px; background: rgba(255,255,255,.06); }
.consequence-grid article:nth-child(2) { border-color: var(--yellow); background: rgba(255,214,41,.12); }
.consequence-number { display: block; margin-bottom: 18px; color: var(--yellow); font-size: .85rem; font-weight: 900; letter-spacing: .1em; }
.consequence-grid h3 { color: #fff; font-size: 1.45rem; }
.consequence-grid p { margin: 12px 0 0; color: #fff; }
.research-note { margin-top: 22px; padding: 26px; border-radius: 16px; color: var(--ink); background: #fff; }
.research-note { border-left: 8px solid var(--blue); }
.research-note h3 { font-size: 1.45rem; }
.research-note p { margin: 10px 0 0; }
.research-note p:last-child { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.research-note a { color: var(--blue-dark); font-weight: 850; }

.path-grid, .card-grid, .resource-grid, .recommendation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.profile-example {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
  gap: 24px;
  align-items: center;
}
.profile-panel { overflow: hidden; border: 2px solid var(--ink); border-radius: 18px; background: #fff; box-shadow: 10px 10px 0 var(--blue); }
.profile-topline { display: flex; justify-content: space-between; gap: 16px; padding: 14px 20px; color: #fff; background: var(--blue-dark); font-size: .85rem; font-weight: 850; letter-spacing: .08em; }
.finding { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 20px; border-top: 1px solid var(--line); }
.finding h3 { margin-top: 4px; font-size: 1.25rem; }
.finding p { margin: 6px 0 0; color: var(--muted); }
.finding-type { color: var(--blue); font-size: .82rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.finding-status { padding: 7px 10px; border: 2px solid var(--blue-dark); border-radius: 999px; color: var(--blue-dark); font-weight: 850; }
.cluzy-reaction { margin: 0; }
.cluzy-reaction img { width: min(220px, 80%); margin: 0 auto 18px; }
.cluzy-reaction p { margin: 0; padding: 16px 18px; border: 2px solid var(--ink); border-radius: 12px; background: #fff; font-size: 1.05rem; }
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.choice-row span { padding: 9px 13px; border: 2px solid var(--blue); border-radius: 999px; color: var(--blue-dark); background: #fff; font-weight: 800; }
.path-card, .card, .resource-card, .recommendation-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.path-card img { width: 104px; height: 104px; margin-bottom: 20px; object-fit: contain; }
.path-card span { color: var(--blue); font-weight: 850; }
.path-card h3, .card h3, .resource-card h2, .recommendation-card h2 { margin-top: 8px; font-size: 1.45rem; }
.path-card p, .card p, .resource-card p, .recommendation-card p { margin: 12px 0 0; color: var(--muted); }
.resource-card a, .card a, .recommendation-card a { display: inline-block; margin-top: 16px; color: var(--blue-dark); font-weight: 850; }
.resource-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.resource-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eyecon-resource { display: grid; grid-template-columns: 88px 1fr; gap: 18px; align-items: start; }
.eyecon-resource img { width: 88px; height: 88px; object-fit: contain; }
.eyecon-resource h2 { margin-top: 0; }

.eyecon-hero { align-items: center; }
.eyecon-intro { max-width: 760px; }
.eyecon-controls { margin-bottom: 32px; }
.eyecon-search { display: block; max-width: 720px; font-weight: 850; }
.eyecon-search span { display: block; margin-bottom: 8px; }
.eyecon-search input { width: 100%; min-height: 54px; padding: 12px 16px; border: 2px solid var(--ink); border-radius: 10px; color: var(--ink); background: #fff; font: inherit; }
.eyecon-count { margin: 12px 0 0; color: var(--muted); font-weight: 750; }
.eyecon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.eyecon-card { scroll-margin-top: 110px; display: grid; grid-template-columns: 150px minmax(0, 1fr); overflow: hidden; border: 2px solid var(--line); border-radius: 18px; background: #fff; }
.eyecon-card:target { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,40,215,.16); }
.eyecon-card > img { width: 100%; height: 100%; min-height: 220px; padding: 20px; object-fit: contain; background: var(--soft); }
.eyecon-card-copy { padding: 24px; }
.eyecon-card-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; color: var(--blue-dark); font-size: .78rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.eyecon-card h2 { margin-top: 12px; font-size: 1.65rem; }
.eyecon-state { margin: 5px 0 0; color: var(--blue); font-weight: 850; }
.eyecon-line { margin: 14px 0 0; color: var(--ink); font-size: 1.05rem; font-weight: 800; }
.eyecon-meaning, .eyecon-use { margin: 10px 0 0; color: var(--muted); }
.eyecon-use strong { color: var(--ink); }
.eyecon-anchor { display: inline-block; margin-top: 14px; color: var(--blue-dark); font-weight: 850; }

.example-section { border-top: 1px solid var(--line); background: #fff; }
.flow-section { overflow: hidden; color: var(--ink); background: var(--soft); }
.flow-intro h2 { font-size: clamp(2.25rem, 5vw, 4.4rem); }
.flow-intro > p { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 1.15rem; }
.process-sections { border-top: 1px solid var(--line); }
.process-step {
  padding: 52px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 72px 92px minmax(0, 760px);
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.process-step:nth-child(2) { background: var(--soft); }
.process-step .flow-number { margin: 0; font-size: 1.25rem; }
.process-step img { width: 82px; height: 82px; padding: 8px; object-fit: contain; }
.process-step .flow-copy h3 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.process-step .flow-copy p { max-width: 680px; font-size: 1.08rem; }
.flow-outcome { padding-top: 42px; padding-bottom: 52px; }
.flow-section .section-heading { max-width: 900px; }
.flow-section .section-heading p { color: var(--muted); }
.flow-section .eyebrow { color: var(--blue-dark); }
.data-flow {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}
.flow-step {
  position: relative;
  min-width: 0;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.flow-step:last-child { border-right: 1px solid var(--line); }
.flow-number {
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 900;
}
.flow-step img { width: 72px; height: 72px; margin: 0 0 20px; padding: 8px; object-fit: contain; border-radius: 12px; background: var(--soft); }
.flow-copy > span { color: var(--blue-dark); font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.flow-copy h3 { margin-top: 8px; color: var(--ink); font-size: 1.55rem; }
.flow-copy p { margin: 12px 0 0; color: var(--muted); }
.flow-summary {
  margin-top: 32px;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 900;
}
.flow-summary strong { color: var(--blue); font-size: 1.5rem; }
.text-link { display: inline-block; margin-top: 28px; color: var(--blue-dark); font-weight: 850; text-underline-offset: 4px; }

.truth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.market-section { border-top: 1px solid var(--line); background: #fff; }
.truth-item { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.truth-item:nth-child(2), .truth-item:nth-child(3) { background: #fff; }
.truth-item h3 { font-size: 1.5rem; color: var(--blue-dark); }
.dark .truth-item h3 { color: var(--yellow); }
.truth-item p { margin: 12px 0 0; }

.trust-section { border-top: 1px solid var(--line); background: var(--soft); }
.trust-intro { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; margin-bottom: 34px; }
.trust-intro h2 { max-width: 780px; font-size: clamp(2.25rem, 5vw, 4.4rem); }
.trust-eycon { width: 180px; margin: 0; text-align: center; }
.trust-eycon img { width: 105px; margin: 0 auto 8px; }
.trust-eycon figcaption { font-weight: 800; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.trust-grid h3 { color: var(--blue-dark); font-size: 1.4rem; }
.trust-grid p { margin: 12px 0 0; color: var(--muted); }

.explore-section { border-top: 1px solid var(--line); background: #fff; }
.eyecon-directory-feature { margin-bottom: 20px; padding: clamp(28px,5vw,52px); display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 32px; align-items: center; border: 2px solid var(--blue); border-radius: 20px; color: var(--ink); background: var(--soft); text-decoration: none; box-shadow: 9px 9px 0 var(--line); }
.eyecon-directory-feature .eyebrow { color: var(--blue-dark); }
.eyecon-directory-feature h2 { font-size: clamp(2.2rem,4.5vw,4.2rem); }
.eyecon-directory-feature p { max-width: 680px; margin: 16px 0; color: var(--muted); font-size: 1.1rem; }
.eyecon-directory-feature strong { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 5px; }
.eyecon-directory-feature .eyecon-feature-gallery { justify-content: flex-end; gap: 16px; }
.eyecon-directory-feature .eyecon-feature-gallery img { padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.eyecon-directory-feature .eyecon-feature-gallery img + img { margin-left: 0; }

.control-section { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(240px,.65fr); gap: clamp(36px,7vw,90px); align-items: center; border-top: 8px solid var(--blue); background: var(--paper); }
.control-intro h2 { font-size: clamp(2.25rem,5vw,4.4rem); }
.control-intro > p { max-width: 760px; margin: 18px 0 0; font-size: 1.12rem; }
.control-note { padding: 18px 20px; border-left: 6px solid var(--blue); background: #fff; }
.control-note strong { display: block; color: var(--blue-dark); }
.control-eycon { margin: 0; text-align: center; }
.control-eycon img { width: min(100%,220px); margin: 0 auto 14px; }
.control-eycon figcaption { font-weight: 850; }
.learn-flow { margin-top: 20px; }
.learn-details { background: #fff; }

.hub-strip { background: var(--soft); }
.hub-strip .section { padding-top: 56px; padding-bottom: 56px; }
.hub-strip h2 { max-width: 860px; font-size: clamp(2rem, 4vw, 3.4rem); }
.hub-strip p { max-width: 800px; font-size: 1.15rem; }

.breadcrumbs { max-width: var(--max); margin: 0 auto; padding: 22px 24px 0; color: var(--muted); }
.breadcrumbs a { font-weight: 750; }
.content-wrap { max-width: 920px; margin: 0 auto; padding: 0 24px 88px; }
.content-wrap h2 { margin-top: 48px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.content-wrap h3 { margin-top: 32px; font-size: 1.35rem; }
.content-wrap p, .content-wrap li { font-size: 1.08rem; }
.content-wrap ul, .content-wrap ol { padding-left: 1.4rem; }
.content-wrap li + li { margin-top: 10px; }
.callout { margin: 34px 0; padding: 24px; border-left: 7px solid var(--blue); background: var(--soft); }
.callout strong { display: block; font-size: 1.25rem; }
.term-list { margin: 0; }
.term-list > div { padding: 24px 0; border-top: 1px solid var(--line); }
.term-list dt { color: var(--blue-dark); font-size: 1.4rem; font-weight: 850; }
.term-list dd { margin: 8px 0 0; font-size: 1.05rem; }
.term-list dt a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.term-search { display: block; margin: 0 0 28px; font-weight: 850; }
.term-search span { display: block; margin-bottom: 8px; }
.term-search input { width: 100%; min-height: 54px; padding: 12px 16px; border: 2px solid var(--ink); border-radius: 10px; background: #fff; color: var(--ink); font: inherit; }
.term-empty { padding: 24px; border-radius: 12px; background: var(--soft); font-weight: 750; }
.term-page-hero { padding-bottom: 44px; }
.term-definition { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem) !important; line-height: 1.45; color: var(--blue-dark); }
.term-share { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 44px; }
.term-share button, .term-share a { min-height: 44px; padding: 10px 15px; border: 2px solid var(--blue-dark); border-radius: 8px; color: var(--blue-dark); background: #fff; font: inherit; font-weight: 850; text-decoration: none; cursor: pointer; }
.term-share button:first-child { color: #fff; background: var(--blue-dark); }
.related-terms { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); }
.related-terms a { color: var(--blue-dark); font-weight: 800; }
.about-hero .hero-eycon figcaption { max-width: 330px; margin-right: auto; margin-left: auto; }
.origin-story { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(36px,8vw,110px); }
.origin-story h2, .about-purpose h2, .cluzy-system h2 { font-size: clamp(2.4rem,5vw,4.8rem); }
.origin-story p { margin: 0 0 20px; color: #e3e6f3; font-size: 1.12rem; }
.origin-story strong { color: var(--yellow); }
.story-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.story-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.story-grid article img { width: 92px; height: 92px; margin-bottom: 22px; object-fit: contain; }
.story-grid h3 { font-size: 1.55rem; }
.story-grid p { margin: 12px 0 0; color: var(--muted); }
.about-purpose { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.8fr); gap: clamp(36px,8vw,110px); align-items: start; }
.purpose-steps p { margin: 0; padding: 20px 0; border-top: 1px solid var(--line); font-size: 1.08rem; }
.purpose-steps b { display: block; color: var(--blue-dark); font-size: 1.3rem; }
.cluzy-system .story-grid article { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.cluzy-system .story-grid h3, .cluzy-system .story-grid a { color: var(--yellow); }
.cluzy-system .story-grid p { color: #e3e6f3; }
.cluzy-system .story-grid a { display: inline-block; margin-top: 18px; font-weight: 850; }
.status-tag { display: inline-block; margin-bottom: 10px; padding: 4px 10px; border: 1px solid var(--blue); border-radius: 999px; color: var(--blue-dark); font-size: .85rem; font-weight: 850; }
.source-list a { color: var(--blue-dark); font-weight: 750; }

.site-footer { color: #fff; background: var(--blue); }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}
.footer-brand img { width: 150px; }
.footer-inner p { max-width: 600px; color: #d5d8e6; }
.footer-links { display: flex; flex-wrap: wrap; align-content: start; gap: 10px 18px; }
.footer-links a { min-height: 36px; color: #fff; font-weight: 750; }
.legal-line { grid-column: 1 / -1; margin: 0; font-size: .9rem; }

@media (max-width: 980px) {
  .history-timeline { grid-template-columns: 1fr 1fr; gap: 1px; }
  .consequence-grid { grid-template-columns: 1fr 1fr; }
  .nav { flex-wrap: wrap; gap: 10px; padding-top: 14px; padding-bottom: 14px; }
  .brand { margin-right: 0; }
  .brand span { display: none; }
  .menu-toggle { margin-left: auto; min-height: 44px; display: inline-flex; align-items: center; border: 2px solid var(--ink); border-radius: 8px; background: #fff; font: inherit; font-weight: 800; }
  .nav-links { width: 100%; display: none; }
  .site-header.open .nav-links { display: grid; }
  .nav-links a { width: 100%; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { width: 100%; }
  .dropdown-menu { position: static; margin: 4px 0 8px 16px; box-shadow: none; }
  .nav-links .company-link { margin-left: 0; border-left: 0; border-radius: 8px; }
  .nav-links .app-link { margin-top: 6px; }
  .hero, .page-hero { grid-template-columns: 1fr; gap: 34px; }
  .hero-eycon { max-width: 330px; }
  .eyecon-feature { grid-template-columns: 1fr; }
  .eyecon-feature-gallery { justify-content: flex-start; }
  .path-grid, .card-grid, .resource-grid, .recommendation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eyecon-grid { grid-template-columns: 1fr; }
  .origin-story, .about-purpose { grid-template-columns: 1fr; }
  .profile-example { grid-template-columns: 1fr; }
  .cluzy-reaction { max-width: 360px; }
  .data-flow { grid-template-columns: 1fr; }
  .flow-step { min-height: 0; }
  .flow-result { grid-column: auto; }
  .eyecon-directory-feature, .control-section { grid-template-columns: 1fr; }
  .eyecon-directory-feature .eyecon-feature-gallery { justify-content: flex-start; }
  .process-step { grid-template-columns: 56px 72px minmax(0,1fr); gap: 20px; }
  .process-step img { width: 68px; height: 68px; }
}

@media (max-width: 620px) {
  .history-timeline, .consequence-grid { grid-template-columns: 1fr; }
  .history-timeline li { border-right: 0; }
  .wrong-callout { grid-template-columns: 1fr; }
  .wrong-callout img { width: 105px; }
  .hero, .page-hero { padding-top: 48px; padding-bottom: 48px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.7rem); }
  .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .video-section { padding-top: 56px; padding-bottom: 56px; }
  .video-placeholder { min-height: 470px; grid-template-columns: 1fr; align-content: center; text-align: center; }
  .video-placeholder > img { width: 150px; }
  .play-mark { margin: 0 auto; }
  .path-grid, .card-grid, .resource-grid, .resource-grid.two-up, .recommendation-grid, .truth-grid, .trust-grid, .outcome-groups { grid-template-columns: 1fr; }
  .eyecon-card { grid-template-columns: 110px minmax(0, 1fr); }
  .eyecon-card > img { min-height: 190px; padding: 12px; }
  .eyecon-card-copy { padding: 20px; }
  .trust-intro { grid-template-columns: 1fr; }
  .trust-eycon { width: 150px; }
  .finding { grid-template-columns: 1fr; gap: 12px; }
  .finding-status { justify-self: start; }
  .story-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .eyecon-feature .button { width: 100%; }
  .eyecon-feature-gallery img { width: 100px; height: 100px; }
  .footer-inner { grid-template-columns: 1fr; }
  .legal-line { grid-column: auto; }
  .data-flow { grid-template-columns: 1fr; }
  .flow-step { min-height: 0; padding: 24px; }
  .flow-step img { width: 52px; height: 52px; }
  .flow-result { grid-column: auto; }
  .flow-summary { grid-template-columns: 1fr; gap: 6px; }
  .flow-summary strong { transform: rotate(90deg); }
  .process-step { padding-top: 38px; padding-bottom: 38px; grid-template-columns: 1fr; gap: 14px; }
  .process-step img { width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* A quiet transition from bad data to the Cluzy solution. */
.consequence-strip { padding: 18px 0; color: #fff; background: var(--blue); }
.consequence-strip-heading { max-width: var(--max); margin: 0 auto 10px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .875rem; letter-spacing: .1em; }
.consequence-pause { min-height: 32px; padding: 3px 10px; border: 1px solid rgba(255,255,255,.6); border-radius: 4px; color: inherit; background: transparent; font: inherit; font-size: .875rem; letter-spacing: 0; cursor: pointer; }
.consequence-pause[hidden] { display: none; }
.consequence-pause:hover { background: rgba(255,255,255,.12); }
.consequence-pause:focus-visible { outline-color: #fff; }
.consequence-window { overflow-x: auto; }
.consequence-track { display: flex; width: max-content; }
.consequence-items { display: flex; align-items: center; flex-shrink: 0; margin: 0; padding: 0; list-style: none; }
.consequence-items li { display: flex; align-items: center; gap: 28px; padding-right: 28px; white-space: nowrap; font-size: 1rem; font-weight: 850; letter-spacing: .065em; line-height: 1.6; }
.consequence-items li::before { content: "•"; opacity: .65; }
.consequence-strip.is-animated .consequence-window { overflow: hidden; }
.consequence-strip.is-animated .consequence-track { animation: consequence-drift 65s linear infinite; }
.consequence-strip:hover .consequence-track, .consequence-strip:focus-within .consequence-track, .consequence-strip.is-paused .consequence-track { animation-play-state: paused; }
@keyframes consequence-drift { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .consequence-strip.is-animated .consequence-track { animation: none; width: auto; }
  .consequence-items { flex-wrap: wrap; gap: 8px 0; padding: 0 24px; }
  .consequence-items li { white-space: normal; font-size: .875rem; }
  .consequence-items[aria-hidden="true"], .consequence-pause { display: none; }
}

/* Keep Explore destinations visible below the sticky navigation. */
main [id] { scroll-margin-top: 100px; }
.dropdown-menu { max-height: calc(100dvh - 110px); overflow-y: auto; }

.explore-group { display: grid; }
.explore-group + .explore-group { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
.explore-group-label { padding: 6px 12px; color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .08em; }
.dropdown-menu { width: min(320px, calc(100vw - 48px)); }
.dropdown-menu a { white-space: normal; line-height: 1.35; }
@media (max-width: 760px) { .dropdown-menu { max-width: calc(100% - 16px); } }

/* A distinct business-impact beat after the profile example. */
.company-costs { background: var(--blue-dark); }
.company-costs .consequence-strip-heading strong { color: var(--yellow); }
.consequence-pause { flex-shrink: 0; }

.site-header :focus-visible, .site-footer :focus-visible, .dark :focus-visible { outline-color: var(--yellow); }
.eyecon-directory-feature .eyecon-feature-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); min-width:0; }
.eyecon-directory-feature .eyecon-feature-gallery img { width:100%; min-width:0; height:auto; }
.nav-dropdown summary:hover::after, .nav-dropdown[open] summary::after, .nav-dropdown summary[aria-current="page"]::after { color:var(--blue-dark); }
