:root {
  color-scheme: light;
  --bg: #f4f7f3;
  --surface: #ffffff;
  --surface-2: #e9efe9;
  --surface-3: #dce6df;
  --text: #18211d;
  --muted: #5f6d65;
  --line: #cbd6ce;
  --line-strong: #9eaea3;
  --accent: #0f766e;
  --accent-strong: #095e58;
  --accent-soft: #d7eeea;
  --blue: #245ec7;
  --blue-soft: #dde8fb;
  --warm: #c9503f;
  --warm-soft: #f8dfda;
  --code-bg: #101915;
  --code-surface: #16221c;
  --code-text: #e1ece5;
  --code-muted: #8fa298;
  --header-bg: rgba(244, 247, 243, 0.93);
  --shadow: 0 18px 50px rgba(30, 49, 39, 0.1);
  --content-width: 1180px;
  --header-height: 72px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1410;
  --surface: #151e18;
  --surface-2: #1c2820;
  --surface-3: #26342b;
  --text: #e7eee9;
  --muted: #a0ada4;
  --line: #334139;
  --line-strong: #53645a;
  --accent: #5eead4;
  --accent-strong: #8bf4e3;
  --accent-soft: #193c35;
  --blue: #8bacf4;
  --blue-soft: #1d3152;
  --warm: #ff9684;
  --warm-soft: #4b2924;
  --code-bg: #080d0a;
  --code-surface: #101713;
  --code-text: #e3ede6;
  --code-muted: #93a399;
  --header-bg: rgba(13, 20, 16, 0.93);
  --shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  transition: background-color 180ms ease, color 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

h1,
h2,
h3,
h4,
strong {
  font-weight: 750;
}

::selection {
  background: var(--accent);
  color: var(--code-bg);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-color: var(--line);
  background: var(--header-bg);
  box-shadow: 0 8px 30px rgba(20, 36, 28, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--content-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--text);
  border-radius: 4px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.data-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 44px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-canvas {
  opacity: 0.84;
}

.hero-grid {
  border-right: 1px solid color-mix(in srgb, var(--line) 45%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--line) 45%, transparent);
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 48px));
  margin: auto;
  padding: calc(var(--header-height) + 78px) 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 80px;
}

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

.eyebrow,
.section-kicker,
.case-label {
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 88px;
  line-height: 0.98;
}

.hero-statement {
  margin-bottom: 24px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.32;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #071412;
}

html[data-theme="light"] .button-primary {
  color: #ffffff;
}

.button-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--text);
  background: var(--surface-2);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 2px solid var(--bg);
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.hero-console {
  overflow: hidden;
  border: 1px solid #304238;
  border-radius: 6px;
  background: var(--code-bg);
  color: var(--code-text);
  box-shadow: var(--shadow);
  font-family: Consolas, "SFMono-Regular", monospace;
}

.console-header {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid #2e3e35;
  background: var(--code-surface);
  color: var(--code-muted);
  font-size: 12px;
}

.console-status {
  color: #72e6c8;
  font-weight: 800;
}

.hero-console pre {
  margin: 0;
  padding: 24px;
  overflow-x: auto;
  color: var(--code-text);
  font-size: 14px;
  line-height: 1.9;
}

.code-key {
  color: #85aaff;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
}

.hero-metrics > div {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.hero-metrics > div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 28px;
  line-height: 1.2;
}

.hero-metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 14px;
}

.section h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.24;
}

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

.intro-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

.intro-copy {
  padding-top: 30px;
}

.intro-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.role-scope {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  margin-top: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.role-scope > svg {
  width: 27px;
  height: 27px;
  margin-top: 3px;
  color: var(--accent-strong);
}

.role-scope span,
.role-scope strong {
  display: block;
}

.role-scope span {
  margin-bottom: 3px;
  color: var(--blue);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  font-weight: 750;
}

.role-scope strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.role-scope p {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 60px;
}

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

.compact-heading {
  margin-bottom: 40px;
}

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

.case-study {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 172px;
  gap: 32px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.case-featured {
  padding-top: 68px;
}

.case-study:not(.case-featured) {
  padding-top: 44px;
  padding-bottom: 44px;
}

.case-study:not(.case-featured) .case-summary,
.case-study:not(.case-featured) .technical-note,
.case-study:not(.case-featured) .case-columns {
  margin-bottom: 23px;
}

.case-index {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 13px;
  font-weight: 700;
}

.case-title-row {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.case-label {
  margin-bottom: 7px;
  color: var(--blue);
}

.case-title-row h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.35;
}

.ownership {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 750;
}

.case-summary {
  max-width: 800px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.human-interface {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 30px;
  padding: 18px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--line);
}

.human-interface > svg {
  width: 25px;
  height: 25px;
  margin-top: 2px;
  color: var(--accent-strong);
}

.human-interface strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.human-interface p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.technical-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  margin-bottom: 30px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.technical-note > svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--blue);
}

.technical-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.technical-note p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.case-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 30px;
}

.case-columns > div {
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.case-columns > div:first-child {
  border-color: var(--blue);
}

.case-columns > div:last-child {
  border-color: var(--warm);
}

.case-columns h4 {
  margin-bottom: 12px;
  font-size: 14px;
}

.case-columns p,
.clean-list {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.case-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 23px;
}

.case-brief p {
  margin: 0;
  padding-top: 15px;
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.case-brief p:first-child {
  border-color: var(--blue);
}

.case-brief p:last-child {
  border-color: var(--warm);
}

.case-brief strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 12px;
}

.clean-list {
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 16px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--line-strong);
}

.metric-basis {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -10px 0 25px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.metric-basis svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: var(--accent-strong);
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.stack-row span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
}

.case-proof {
  align-self: stretch;
  display: grid;
  align-content: start;
  border-left: 1px solid var(--line);
}

.case-proof > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
}

.case-proof > div:last-child {
  border-bottom: 0;
}

.case-proof strong {
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 21px;
  line-height: 1.2;
}

.case-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.supporting-work {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

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

.support-grid article {
  min-height: 232px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.support-grid article > svg {
  width: 26px;
  height: 26px;
  margin-bottom: 30px;
  color: var(--accent-strong);
}

.support-grid h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.support-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.public-code-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.public-code-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: 16px;
}

.featured-repository,
.repository-index {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
}

.featured-repository {
  padding: 34px;
}

.repository-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.repository-heading span,
.repository-index span {
  color: var(--blue);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  font-weight: 800;
}

.repository-heading > a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
}

.repository-heading svg {
  width: 19px;
  height: 19px;
}

.featured-repository h3 {
  margin-bottom: 13px;
  font-size: 27px;
}

.featured-repository > p {
  max-width: 760px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 15px;
}

.repository-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.repository-facts span {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.repository-facts svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--accent-strong);
}

.repository-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.text-link svg {
  width: 15px;
  height: 15px;
}

.repository-index {
  display: grid;
}

.repository-index > a {
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 55px 22px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.repository-index > a:last-child {
  border-bottom: 0;
}

.repository-index strong,
.repository-index small {
  display: block;
}

.repository-index strong {
  margin: 5px 0 3px;
  font-size: 15px;
}

.repository-index small {
  color: var(--muted);
  font-size: 11px;
}

.repository-index svg {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 17px;
  height: 17px;
  color: var(--muted);
  transform: translateY(-50%);
}

.codex-activity-section {
  border-top: 1px solid #26342b;
  border-bottom: 1px solid #26342b;
  background: #0d1410;
  color: #e7eee9;
}

.codex-activity-section .section-kicker {
  color: #72e6c8;
}

.codex-activity-section h2 {
  color: #f4f8f5;
}

.codex-activity-heading > p {
  color: #a7b6ad;
}

.codex-activity-panel {
  overflow: hidden;
  border: 1px solid #3b4a41;
  border-radius: 6px;
  background: #111a15;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.codex-profile-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 22px;
  border-bottom: 1px solid #2c3931;
}

.codex-profile-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.codex-profile-mark {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid #5d7165;
  border-radius: 50%;
  background: #1d2a22;
  color: #72e6c8;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 16px;
  font-weight: 800;
}

.codex-profile-identity strong,
.codex-profile-identity span {
  display: block;
}

.codex-profile-identity strong {
  margin-bottom: 1px;
  color: #f4f8f5;
  font-size: 17px;
}

.codex-profile-identity span,
.codex-activity-updated {
  color: #93a399;
  font-size: 11px;
}

.codex-activity-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.codex-activity-updated svg {
  width: 14px;
  height: 14px;
  color: #72e6c8;
}

.codex-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid #2c3931;
}

.codex-metrics > div {
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-right: 1px solid #2c3931;
  text-align: center;
}

.codex-metrics > div:last-child {
  border-right: 0;
}

.codex-metrics strong,
.codex-metrics span {
  display: block;
}

.codex-metrics strong {
  min-height: 36px;
  color: #f4f8f5;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 24px;
  line-height: 1.45;
}

.codex-metrics span {
  color: #93a399;
  font-size: 10px;
  font-weight: 700;
}

.codex-heatmap-block {
  padding: 27px 22px 29px;
  border-bottom: 1px solid #2c3931;
}

.codex-heatmap-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.codex-heatmap-heading strong,
.codex-heatmap-heading span {
  display: block;
}

.codex-heatmap-heading strong {
  margin-bottom: 2px;
  color: #e7eee9;
  font-size: 13px;
}

.codex-heatmap-heading > div > span {
  color: #829188;
  font-size: 10px;
}

.codex-heatmap-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #829188;
  font-size: 9px;
}

.codex-heatmap-legend span {
  display: inline;
}

.codex-heatmap-legend i,
.codex-activity-cell {
  width: 11px;
  height: 11px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 2px;
}

.codex-heatmap-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #506158 transparent;
  scrollbar-width: thin;
}

.codex-heatmap-chart {
  width: 748px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}

.codex-day-labels {
  display: grid;
  grid-template-rows: repeat(7, 11px);
  gap: 3px;
  padding-top: 22px;
  color: #6f7e75;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
  line-height: 11px;
}

.codex-month-labels {
  height: 22px;
  display: grid;
  grid-template-columns: repeat(52, 11px);
  gap: 3px;
  color: #718077;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
  white-space: nowrap;
}

.codex-month-labels span {
  align-self: start;
}

.codex-heatmap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 11px;
  grid-template-rows: repeat(7, 11px);
  gap: 3px;
}

.codex-activity-cell {
  transition: transform 120ms ease, border-color 120ms ease;
}

.codex-activity-cell:hover {
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.58);
  transform: scale(1.35);
}

.codex-activity-cell.is-future {
  opacity: 0.28;
}

.codex-heatmap-legend .level-0,
.codex-activity-cell.level-0 {
  background: #1b2620;
}

.codex-heatmap-legend .level-1,
.codex-activity-cell.level-1 {
  background: #234b55;
}

.codex-heatmap-legend .level-2,
.codex-activity-cell.level-2 {
  background: #2f7185;
}

.codex-heatmap-legend .level-3,
.codex-activity-cell.level-3 {
  background: #4da0bc;
}

.codex-heatmap-legend .level-4,
.codex-activity-cell.level-4 {
  background: #91d8ee;
}

.codex-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #2c3931;
}

.codex-methods > div {
  min-height: 72px;
  display: grid;
  grid-template-columns: 22px 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  border-right: 1px solid #2c3931;
}

.codex-methods > div:last-child {
  border-right: 0;
}

.codex-methods svg {
  width: 18px;
  height: 18px;
  color: #72e6c8;
}

.codex-methods span {
  color: #64736a;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
}

.codex-methods strong {
  overflow-wrap: anywhere;
  color: #cfdad3;
  font-size: 11px;
}

.codex-privacy-note {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 11px 20px;
  color: #829188;
  font-size: 10px;
}

.codex-privacy-note svg {
  width: 15px;
  height: 15px;
  color: #72e6c8;
}

.codex-activity-panel.has-error .codex-metrics,
.codex-activity-panel.has-error .codex-heatmap-block {
  opacity: 0.58;
}

.flow-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: stretch;
  margin-bottom: 50px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.flow-step {
  min-height: 188px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 12px;
}

.flow-step > span {
  position: absolute;
  top: 14px;
  right: 10px;
  color: var(--line-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
}

.flow-step > svg {
  width: 25px;
  height: 25px;
  margin-bottom: 18px;
  color: var(--blue);
}

.flow-step h3 {
  margin-bottom: 5px;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 17px;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.flow-arrow {
  align-self: center;
  width: 18px;
  height: 18px;
  color: var(--line-strong);
}

.data-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.data-workbench {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.data-toolbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}

.sheet-sync {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--code-surface);
  color: var(--code-text);
}

.sheet-sync-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sheet-sync-title > svg {
  width: 23px;
  height: 23px;
  color: #72e6c8;
}

.sheet-sync-title strong,
.sheet-sync-title span {
  display: block;
}

.sheet-sync-title strong {
  margin-bottom: 1px;
  font-size: 13px;
}

.sheet-sync-title span {
  color: var(--code-muted);
  font-size: 10px;
}

.sheet-sync-state {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sheet-sync-state span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--code-muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  font-weight: 700;
}

.sheet-sync-state svg {
  width: 13px;
  height: 13px;
  color: #72e6c8;
}

.segmented-control {
  display: flex;
  align-items: stretch;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-2);
}

.segmented-control button {
  min-width: 94px;
  min-height: 36px;
  padding: 7px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button[aria-selected="true"] {
  background: var(--text);
  color: var(--bg);
}

.data-meta {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.data-meta > div {
  min-width: 0;
  padding: 13px 16px;
  border-right: 1px solid var(--line);
}

.data-meta > div:last-child {
  border-right: 0;
}

.data-meta span {
  display: block;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
}

.data-meta strong {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-meta .status-ready {
  color: var(--accent-strong);
}

.data-meta .status-error {
  color: var(--warm);
}

.data-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.data-summary > div {
  min-width: 0;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.data-summary > div:last-child {
  border-right: 0;
}

.data-summary span,
.data-summary small {
  color: var(--muted);
}

.data-summary span {
  font-size: 10px;
  font-weight: 700;
}

.data-summary strong {
  display: block;
  overflow: hidden;
  margin: 4px 0 2px;
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 22px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-summary small {
  font-size: 9px;
}

.table-controls {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.table-search {
  min-width: min(360px, 48vw);
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.table-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-soft) 72%, transparent);
}

.table-search svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.table-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}

.table-search input::placeholder {
  color: var(--muted);
}

.attention-filter {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.attention-filter input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--warm);
}

.table-result-count {
  margin-left: auto;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  white-space: nowrap;
}

.table-shell {
  min-height: 408px;
  overflow: auto;
  background: var(--surface);
}

.data-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 1.5;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  background: var(--code-surface);
  color: var(--code-text);
  font-size: 10px;
  text-transform: uppercase;
}

.data-table tbody tr:nth-child(even) {
  background: var(--surface-2);
}

.data-table tbody tr:hover {
  background: var(--accent-soft);
}

.data-table td.cell-positive {
  color: var(--accent-strong);
  font-weight: 700;
}

.data-table td.cell-attention {
  color: var(--warm);
  font-weight: 700;
}

.data-table td.cell-muted {
  color: var(--muted);
  font-style: italic;
}

.data-empty {
  min-height: 408px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--muted);
}

.data-empty[hidden] {
  display: none;
}

.data-empty p {
  margin: 10px 0 0;
}

.data-caption {
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.data-caption svg {
  width: 16px;
  height: 16px;
  color: var(--accent-strong);
}

.data-journey {
  border-top: 0;
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.journey-tabs button {
  min-height: 86px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-content: center;
  column-gap: 9px;
  padding: 14px 17px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.journey-tabs button:last-child {
  border-right: 0;
}

.journey-tabs button[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--text);
  box-shadow: inset 0 3px 0 var(--accent);
}

.journey-tabs span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  font-weight: 800;
}

.journey-tabs strong,
.journey-tabs small {
  min-width: 0;
  display: block;
}

.journey-tabs strong {
  font-size: 14px;
}

.journey-tabs small {
  color: var(--muted);
  font-size: 10px;
}

.journey-stage {
  padding: 48px 0 0;
  border-bottom: 0;
}

.journey-stage[hidden] {
  display: none;
}

.journey-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  column-gap: 46px;
  margin-bottom: 30px;
}

.journey-copy > span {
  grid-row: 1 / 3;
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  font-weight: 750;
}

.journey-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.28;
}

.journey-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.journey-connector {
  display: none;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.journey-connector svg {
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
}

.sheet-demo,
.intelligence-demo,
.order-ai-demo,
.jarvis-demo {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.sheet-demo,
.intelligence-demo,
.order-ai-demo {
  background: var(--surface);
}

.sheet-demo-header,
.demo-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.sheet-demo-header > div,
.sheet-sync-ok {
  display: flex;
  align-items: center;
}

.sheet-demo-header > div {
  min-width: 0;
  gap: 10px;
}

.sheet-demo-header > div > svg {
  color: var(--accent-strong);
}

.sheet-demo-header strong {
  font-size: 15px;
}

.sheet-demo-header > div > span {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.sheet-sync-ok {
  flex: 0 0 auto;
  gap: 6px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 750;
}

.sheet-sync-ok svg {
  width: 16px;
  height: 16px;
}

.sheet-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--code-surface);
  color: var(--code-text);
}

.sheet-route > div {
  min-width: 0;
  padding: 8px 10px;
}

.sheet-route > div:last-child {
  grid-column: 5;
}

.sheet-route > div span,
.sheet-route > div strong {
  display: block;
}

.sheet-route > div span {
  margin-bottom: 2px;
  color: #72e6c8;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
}

.sheet-route > div strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-route > svg {
  width: 16px;
  height: 16px;
  color: var(--code-muted);
}

.sheet-grid-shell,
.demo-table-shell {
  overflow-x: auto;
}

.sheet-grid,
.demo-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  line-height: 1.5;
}

.sheet-grid th,
.sheet-grid td,
.demo-table th,
.demo-table td {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.sheet-grid th:last-child,
.sheet-grid td:last-child,
.demo-table th:last-child,
.demo-table td:last-child {
  border-right: 0;
}

.sheet-grid th,
.demo-table th {
  background: var(--surface-2);
  color: var(--muted);
  font-size: 10px;
}

.sheet-grid tbody tr:hover,
.demo-table tbody tr:hover {
  background: var(--accent-soft);
}

.sheet-grid td > span,
.demo-row-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--accent-strong);
  font-size: 9px;
  font-weight: 750;
}

.sheet-grid td > span.is-watch,
.demo-row-status.status-watch,
.demo-row-status.status-danger {
  border-color: color-mix(in srgb, var(--warm) 50%, var(--line));
  background: var(--warm-soft);
  color: var(--warm);
}

.sheet-demo-foot {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 16px;
  color: var(--muted);
  font-size: 11px;
}

.sheet-demo-foot svg {
  width: 15px;
  height: 15px;
  color: var(--accent-strong);
}

.demo-header {
  background: var(--surface);
}

.demo-header h3,
.demo-header p {
  margin-bottom: 0;
}

.demo-header h3 {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.35;
}

.demo-header p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.demo-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  font-weight: 750;
}

.demo-status-badge svg {
  width: 13px;
  height: 13px;
}

.demo-update {
  flex: 0 0 auto;
  text-align: right;
}

.demo-update span,
.demo-update strong {
  display: block;
}

.demo-update span {
  color: var(--muted);
  font-size: 9px;
}

.demo-update strong {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
}

.demo-product-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.demo-product-switcher button {
  min-width: 0;
  min-height: 92px;
  padding: 15px 17px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--surface-2);
  text-align: left;
  cursor: pointer;
}

.demo-product-switcher button:last-child {
  border-right: 0;
}

.demo-product-switcher button:hover {
  background: var(--accent-soft);
}

.demo-product-switcher button.is-active {
  box-shadow: inset 0 4px 0 var(--blue);
  background: var(--surface);
}

.demo-product-switcher span,
.demo-product-switcher strong,
.demo-product-switcher small {
  display: block;
}

.demo-product-switcher span,
.demo-product-switcher small {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
}

.demo-product-switcher span {
  font-size: 9px;
}

.demo-product-switcher strong {
  overflow: hidden;
  margin: 3px 0 1px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-product-switcher small {
  font-size: 9px;
}

.demo-query {
  display: grid;
  grid-template-columns: minmax(210px, 1.18fr) minmax(160px, 0.75fr) minmax(330px, 1.55fr) minmax(165px, 0.75fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.demo-product-field,
.demo-filter-group,
.demo-date-group {
  min-width: 0;
}

.demo-product-field {
  position: relative;
}

.demo-product-field > label,
.demo-filter-group legend,
.demo-date-group label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.demo-search-box {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.demo-search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue-soft) 75%, transparent);
}

.demo-search-box svg {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.demo-search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px;
}

.demo-product-meta {
  overflow: hidden;
  margin: 3px 0 0;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-product-results {
  position: absolute;
  z-index: 12;
  top: 69px;
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demo-product-results[hidden] {
  display: none;
}

.demo-product-results button {
  width: 100%;
  display: block;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.demo-product-results button:last-child {
  border-bottom: 0;
}

.demo-product-results button:hover {
  background: var(--accent-soft);
}

.demo-product-results strong,
.demo-product-results span {
  display: block;
}

.demo-product-results strong {
  font-size: 11px;
}

.demo-product-results span,
.demo-product-results > p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.demo-product-results > p {
  padding: 12px;
}

.demo-filter-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.demo-filter-group legend {
  margin-bottom: 4px;
}

.demo-check-list {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.demo-check-list label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 10px;
  white-space: nowrap;
}

.demo-check-list input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--blue);
}

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

.demo-date-group label {
  display: grid;
  gap: 4px;
}

.demo-date-group input,
.demo-date-group select {
  min-width: 0;
  width: 100%;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: var(--surface);
  color: var(--text);
  font-size: 10px;
}

.demo-run-button {
  min-width: 78px;
  height: 40px;
  padding: 0 13px;
}

.demo-query-status {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.demo-query-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.demo-query-status strong {
  color: var(--text);
}

.demo-source-map {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 18px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.demo-source-map-title strong,
.demo-source-map-title span {
  display: block;
}

.demo-source-map-title strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 10px;
}

.demo-source-map-title strong svg {
  width: 15px;
  height: 15px;
  color: var(--accent-strong);
}

.demo-source-map-title span {
  margin-top: 3px;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
}

.demo-source-map ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-source-map li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.demo-source-map li::before {
  width: 5px;
  height: 5px;
  background: var(--accent);
  content: "";
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.demo-kpis > div {
  min-width: 0;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.demo-kpis > div:nth-child(4n) {
  border-right: 0;
}

.demo-kpis > div:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.demo-kpis span,
.demo-kpis small {
  color: var(--muted);
  font-size: 9px;
}

.demo-kpis strong {
  margin: 4px 0 2px;
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 22px;
  line-height: 1.2;
}

.decision-workbench {
  background: var(--code-bg);
  color: var(--code-text);
}

.decision-workbench-heading {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.decision-workbench-heading span,
.decision-workbench-heading h3 {
  display: block;
}

.decision-workbench-heading span,
.decision-flow article > span,
.decision-summary span {
  color: #72e6c8;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  font-weight: 750;
}

.decision-workbench-heading h3 {
  margin: 3px 0 0;
  font-size: 17px;
}

.decision-priority {
  flex: 0 0 auto;
  max-width: 290px;
  padding: 8px 10px;
  border: 1px solid #72e6c8;
  border-radius: 4px;
  color: #72e6c8;
  font-size: 11px;
  text-align: center;
}

.decision-priority.is-critical {
  border-color: #ffad9f;
  color: #ffad9f;
}

.decision-priority.is-watch {
  border-color: #f6c85f;
  color: #f6c85f;
}

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

.decision-flow article {
  min-width: 0;
  min-height: 154px;
  padding: 20px 18px;
  border-right: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.decision-flow article:last-child {
  border-right: 0;
}

.decision-flow article > strong {
  display: block;
  margin: 10px 0 7px;
  color: var(--code-text);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 15px;
  line-height: 1.45;
}

.decision-flow article > p {
  margin: 0;
  color: var(--code-muted);
  font-size: 11px;
  line-height: 1.65;
}

.decision-summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-top: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
  background: var(--code-surface);
}

.decision-summary > svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid #72e6c8;
  border-radius: 4px;
  color: #72e6c8;
}

.decision-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--code-text);
  font-size: 12px;
  line-height: 1.6;
}

.trend-panel,
.demo-detail {
  background: var(--surface);
}

.chart-mode-toolbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.chart-mode-toolbar > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.chart-mode-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.chart-mode-tabs button {
  min-width: 96px;
  min-height: 32px;
  padding: 5px 10px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.chart-mode-tabs button:last-child {
  border-right: 0;
}

.chart-mode-tabs button:hover {
  color: var(--accent-strong);
}

.chart-mode-tabs button[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.panel-heading,
.demo-detail-heading {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}

.panel-heading span,
.demo-detail-heading span {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
}

.panel-heading h3,
.demo-detail-heading h3 {
  margin: 2px 0 0;
  font-size: 15px;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px;
}

.chart-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-family: inherit;
  font-size: 9px;
}

.legend-bar,
.legend-line {
  width: 13px;
  display: inline-block;
  background: var(--blue);
}

.legend-bar {
  height: 8px;
  border-radius: 1px;
}

.legend-line {
  height: 2px;
  background: var(--accent);
}

.chart-shell {
  position: relative;
  height: 390px;
  padding: 20px 18px 8px;
}

.chart-shell canvas {
  width: 100% !important;
  height: 100% !important;
}

.chart-fallback {
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--muted);
  text-align: center;
}

.chart-fallback[hidden] {
  display: none;
}

.chart-fallback p {
  margin: 8px 0 0;
  font-size: 12px;
}

.chart-caption {
  margin: 0;
  padding: 8px 18px 16px;
  color: var(--muted);
  font-size: 10px;
}

.demo-detail {
  border-top: 1px solid var(--line);
}

.demo-detail-heading {
  list-style: none;
  cursor: pointer;
}

.demo-detail-heading::-webkit-details-marker {
  display: none;
}

.demo-detail-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 750;
}

.demo-detail-toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.demo-detail[open] .demo-detail-toggle svg {
  transform: rotate(180deg);
}

.demo-detail-download {
  display: flex;
  justify-content: flex-end;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
}

.demo-detail-download a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.demo-detail-download a:hover {
  color: var(--accent-strong);
}

.demo-detail-download svg {
  width: 14px;
  height: 14px;
}

.demo-table {
  min-width: 1500px;
}

.demo-detail-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.demo-detail-heading a:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.demo-detail-heading a svg {
  width: 14px;
  height: 14px;
}

.demo-row-status.status-normal {
  background: var(--accent-soft);
}

.order-ai-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.order-ai-heading,
.order-ai-header > strong {
  display: flex;
  align-items: center;
}

.order-ai-heading {
  min-width: 0;
  gap: 11px;
}

.order-ai-heading > svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent-strong);
}

.order-ai-heading span,
.order-ai-heading h3 {
  display: block;
}

.order-ai-heading span,
.order-ai-review-heading span,
.order-ai-result > span,
.order-ai-check > span {
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  font-weight: 750;
}

.order-ai-heading h3 {
  margin: 2px 0 0;
  font-size: 16px;
}

.order-ai-header > strong {
  flex: 0 0 auto;
  gap: 6px;
  color: var(--accent-strong);
  font-size: 10px;
}

.order-ai-header > strong svg {
  width: 15px;
  height: 15px;
}

.order-ai-table-shell {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.order-ai-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 10px;
  line-height: 1.45;
}

.order-ai-table th,
.order-ai-table td {
  padding: 12px 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.order-ai-table th:last-child,
.order-ai-table td:last-child {
  border-right: 0;
}

.order-ai-table th {
  background: var(--surface);
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
}

.order-ai-table tbody tr {
  background: var(--surface);
  transition: background-color 150ms ease, box-shadow 150ms ease;
}

.order-ai-table tbody tr:hover {
  background: var(--accent-soft);
}

.order-ai-table tbody tr.is-active {
  background: var(--blue-soft);
  box-shadow: inset 4px 0 0 var(--blue);
}

.order-ai-table td > strong,
.order-ai-table td > small,
.order-ai-product-button strong,
.order-ai-product-button small {
  display: block;
}

.order-ai-table td > strong {
  color: var(--text);
  font-size: 10px;
}

.order-ai-table td > small,
.order-ai-product-button small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.order-ai-product-button {
  min-width: 190px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.order-ai-product-button strong {
  color: var(--text);
  font-size: 11px;
}

.order-ai-product-button:hover strong,
.order-ai-product-button[aria-pressed="true"] strong {
  color: var(--blue);
}

.order-ai-status,
.order-ai-review-heading > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.order-ai-status.status-critical,
.order-ai-review-heading > strong.status-critical {
  border-color: color-mix(in srgb, var(--warm) 55%, var(--line));
  background: var(--warm-soft);
  color: var(--warm);
}

.order-ai-status.status-watch,
.order-ai-review-heading > strong.status-watch {
  border-color: color-mix(in srgb, var(--blue) 55%, var(--line));
  background: var(--blue-soft);
  color: var(--blue);
}

.order-ai-status.status-normal,
.order-ai-review-heading > strong.status-normal {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.order-ai-table-note {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 9px;
}

.order-ai-table-note svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
}

.order-ai-review-heading {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.order-ai-review-heading h3,
.order-ai-review-heading small {
  display: block;
}

.order-ai-review-heading h3 {
  margin: 3px 0 1px;
  font-size: 18px;
  line-height: 1.35;
}

.order-ai-review-heading small {
  color: var(--muted);
  font-size: 9px;
}

.order-ai-factor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.order-ai-factor-grid > div {
  min-width: 0;
  min-height: 106px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.order-ai-factor-grid > div:nth-child(4n) {
  border-right: 0;
}

.order-ai-factor-grid > div:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.order-ai-factor-grid span,
.order-ai-factor-grid strong,
.order-ai-factor-grid small {
  display: block;
}

.order-ai-factor-grid span,
.order-ai-factor-grid small {
  color: var(--muted);
  font-size: 9px;
}

.order-ai-factor-grid strong {
  margin: 7px 0 3px;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.order-ai-outcome {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  background: var(--code-bg);
  color: var(--code-text);
}

.order-ai-result,
.order-ai-check {
  min-width: 0;
  padding: 20px 18px;
}

.order-ai-result {
  border-right: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.order-ai-result > span,
.order-ai-check > span {
  color: #72e6c8;
}

.order-ai-result > strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--code-text);
  font-size: 19px;
  line-height: 1.35;
}

.order-ai-result > p,
.order-ai-check ul {
  color: var(--code-muted);
  font-size: 11px;
  line-height: 1.65;
}

.order-ai-result > p {
  max-width: 720px;
  margin: 0;
}

.order-ai-check ul {
  display: grid;
  gap: 5px;
  margin: 9px 0 0;
  padding-left: 17px;
}

.order-ai-boundary {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 9px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.order-ai-boundary svg {
  width: 15px;
  height: 15px;
  color: var(--accent-strong);
}

.jarvis-demo {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  background: var(--code-bg);
  color: var(--code-text);
}

.jarvis-demo-header {
  grid-column: 1 / -1;
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.jarvis-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #72e6c8;
  border-radius: 4px;
  color: #72e6c8;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 17px;
  font-weight: 750;
}

.jarvis-demo-header span,
.jarvis-demo-header h3 {
  display: block;
}

.jarvis-demo-header span {
  color: var(--code-muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
}

.jarvis-demo-header h3 {
  margin: 1px 0 0;
  font-size: 16px;
}

.jarvis-demo-header > strong {
  color: #72e6c8;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
}

.ai-context,
.ai-overview {
  min-width: 0;
  padding: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.ai-context {
  border-right: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.ai-context span,
.ai-context strong,
.ai-context small,
.ai-overview > span,
.ai-overview > strong {
  display: block;
}

.ai-context span,
.ai-overview > span {
  color: #72e6c8;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  font-weight: 750;
}

.ai-context strong {
  margin: 8px 0 4px;
  font-size: 15px;
  line-height: 1.45;
}

.ai-context small {
  color: var(--code-muted);
  font-size: 10px;
}

.ai-overview > strong {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
}

.ai-overview.is-critical > strong {
  color: #ffad9f;
}

.ai-overview ul {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--code-muted);
  font-size: 11px;
}

.ai-quick-actions,
.ai-chat,
.ai-question-form,
.ai-disclosure {
  grid-column: 1 / -1;
}

.ai-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.ai-quick-actions button {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--code-muted) 50%, transparent);
  border-radius: 4px;
  background: var(--code-surface);
  color: var(--code-text);
  font-size: 10px;
  cursor: pointer;
}

.ai-quick-actions button:hover {
  border-color: #72e6c8;
  color: #72e6c8;
}

.ai-chat {
  min-height: 250px;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 22px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
}

.chat-message {
  max-width: min(760px, 88%);
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.chat-message.user {
  align-self: flex-end;
}

.chat-message > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--code-muted) 55%, transparent);
  border-radius: 4px;
  color: var(--code-muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
  font-weight: 750;
}

.chat-message.assistant > span {
  border-color: #72e6c8;
  color: #72e6c8;
}

.chat-message p {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
  border-radius: 5px;
  background: var(--code-surface);
  color: var(--code-text);
  font-size: 12px;
  line-height: 1.65;
}

.chat-message.user p {
  background: color-mix(in srgb, var(--blue) 25%, var(--code-surface));
}

.ai-question-form {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
  padding: 11px 18px;
}

.ai-question-form input {
  min-width: 0;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--code-muted) 50%, transparent);
  border-radius: 4px;
  outline: 0;
  background: var(--code-surface);
  color: var(--code-text);
  font-size: 11px;
}

.ai-question-form input:focus {
  border-color: #72e6c8;
}

.ai-question-form button {
  display: grid;
  place-items: center;
  border: 1px solid #72e6c8;
  border-radius: 4px;
  background: #72e6c8;
  color: #101915;
  cursor: pointer;
}

.ai-question-form button svg {
  width: 16px;
  height: 16px;
}

.ai-disclosure {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 8px 18px;
  border-top: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
  color: var(--code-muted);
  font-size: 9px;
}

.ai-disclosure svg {
  width: 14px;
  height: 14px;
  color: #72e6c8;
}

.data-journey > .data-caption {
  border-top: 0;
  justify-content: center;
  padding-top: 22px;
  text-align: center;
}

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

.experience-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.experience-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.experience-heading > p:last-child {
  max-width: 340px;
  margin-top: 24px;
  color: var(--muted);
}

.experience-content {
  min-width: 0;
}

.timeline {
  border-top: 1px solid var(--line-strong);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
}

.timeline-item h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline-state {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  font-weight: 800;
}

.credentials {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}

.credentials-title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 22px 0 15px;
}

.credentials-title svg {
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
}

.credentials-title h3 {
  font-size: 15px;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.credential-list li {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 17px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-list .credential-wide {
  grid-column: 1 / -1;
}

.credential-list strong {
  font-size: 14px;
  line-height: 1.5;
}

.credential-list span {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
}

.archive-section {
  border-top: 1px solid var(--line);
}

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

.archive-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.archive-item:hover,
.archive-item:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.archive-item img,
.archive-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
}

.archive-item img {
  object-fit: cover;
  object-position: top;
}

.archive-visual {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 13px;
  background: var(--surface-2);
  color: var(--blue);
}

.archive-visual svg {
  width: 48px;
  height: 48px;
}

.archive-visual strong {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
}

.archive-body {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 23px;
}

.archive-item span {
  color: var(--blue);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  font-weight: 800;
}

.archive-item h3 {
  margin: 8px 0 9px;
  font-size: 18px;
}

.archive-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
}

.archive-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.archive-links a:hover {
  color: var(--accent-strong);
  text-decoration-color: currentColor;
}

.archive-links svg {
  width: 13px;
  height: 13px;
}

.contact-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  background: var(--text);
  color: var(--bg);
}

.contact-section .section-kicker {
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.contact-layout h2 {
  font-size: 40px;
}

.contact-layout > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: color-mix(in srgb, var(--bg) 68%, transparent);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px;
}

.contact-actions .button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #071412;
}

.contact-actions .button-secondary {
  border-color: color-mix(in srgb, var(--bg) 38%, transparent);
  background: transparent;
  color: var(--bg);
}

.copy-status {
  min-height: 20px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  text-align: right;
}

.site-footer {
  min-height: 158px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 10px 30px;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
}

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

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-statement {
    font-size: 29px;
  }

  .case-study {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .case-proof {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-proof > div {
    min-height: 78px;
    padding: 14px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .case-proof > div:last-child {
    border-right: 0;
  }

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

  .flow-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    border-right: 1px solid var(--line);
  }

  .flow-step:last-child {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .hero-metrics,
  .site-footer,
  .hero-grid {
    width: min(100% - 32px, var(--content-width));
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    position: fixed;
    z-index: 49;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    box-shadow: 0 20px 35px rgba(10, 20, 14, 0.14);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: calc(100svh - 34px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: calc(var(--header-height) + 55px) 0 46px;
  }

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

  .hero h1 {
    font-size: 64px;
  }

  .hero-description {
    max-width: 620px;
  }

  .hero-console {
    max-width: 560px;
  }

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

  .hero-metrics > div {
    min-height: 82px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics > div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section h2 {
    font-size: 36px;
  }

  .intro-layout,
  .experience-layout,
  .section-heading,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .support-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .public-code-layout {
    grid-template-columns: 1fr;
  }

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

  .repository-index > a {
    min-height: 145px;
    padding: 20px 42px 20px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .repository-index > a:last-child {
    border-right: 0;
  }

  .support-grid article {
    min-height: 0;
  }

  .support-grid article > svg {
    margin-bottom: 24px;
  }

  .flow-map {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
  }

  .flow-step {
    min-height: 134px;
    padding: 22px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-step:last-child {
    border-bottom: 0;
  }

  .data-toolbar {
    align-items: flex-start;
  }

  .sheet-sync {
    align-items: flex-start;
  }

  .sheet-sync-state {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

  .data-summary > div:nth-child(2) {
    border-right: 0;
  }

  .data-summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .segmented-control {
    flex-wrap: wrap;
  }

  .segmented-control button {
    min-width: 112px;
  }

  .experience-heading {
    position: static;
  }

  .archive-item {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .archive-item img,
  .archive-visual {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .contact-actions {
    justify-content: start;
  }

  .copy-status {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 24px);
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 30px;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 52px;
  }

  .hero-statement {
    margin-bottom: 17px;
    font-size: 24px;
  }

  .hero-description {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-note {
    align-items: flex-start;
    font-size: 11px;
  }

  .hero-console {
    display: none;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .hero-metrics span {
    font-size: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    font-size: 30px;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .case-study,
  .case-featured {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 44px 0;
  }

  .case-main,
  .case-proof {
    grid-column: 1;
  }

  .case-title-row {
    display: grid;
    gap: 12px;
  }

  .ownership {
    width: fit-content;
  }

  .case-title-row h3 {
    font-size: 23px;
  }

  .case-summary {
    font-size: 15px;
  }

  .role-scope {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .role-scope strong {
    font-size: 15px;
  }

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

  .case-brief {
    grid-template-columns: 1fr;
    gap: 17px;
  }

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

  .case-proof > div {
    padding: 12px 10px;
  }

  .case-proof strong {
    font-size: 17px;
  }

  .case-proof span {
    font-size: 10px;
  }

  .supporting-work {
    padding: 68px 0;
  }

  .featured-repository {
    padding: 24px;
  }

  .featured-repository h3 {
    font-size: 22px;
  }

  .repository-facts,
  .repository-index {
    grid-template-columns: 1fr;
  }

  .repository-index > a {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .repository-index > a:last-child {
    border-bottom: 0;
  }

  .data-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .sheet-sync {
    display: grid;
    gap: 12px;
  }

  .sheet-sync-state {
    justify-content: flex-start;
    gap: 11px;
  }

  .sheet-sync-title span {
    line-height: 1.55;
  }

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

  .segmented-control button {
    min-width: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .segmented-control button:nth-child(2n) {
    border-right: 0;
  }

  .segmented-control button:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .data-meta > div:nth-child(2) {
    border-right: 0;
  }

  .data-meta > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .data-meta strong {
    font-size: 10px;
  }

  .data-summary > div {
    min-height: 86px;
    padding: 13px;
  }

  .data-summary strong {
    font-size: 18px;
  }

  .table-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
  }

  .table-search {
    min-width: 0;
  }

  .table-result-count {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .table-shell,
  .data-empty {
    min-height: 352px;
  }

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

  .credential-list {
    grid-template-columns: 1fr;
  }

  .archive-item {
    display: block;
  }

  .archive-item img,
  .archive-visual {
    height: auto;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .archive-body {
    min-height: 0;
  }

  .contact-layout h2 {
    font-size: 30px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .copy-status {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 0;
  }

  .site-footer > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .site-footer p {
    grid-column: 1;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero-inner {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 35px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-statement {
    font-size: 28px;
  }

  .hero-description {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero-note {
    margin-top: 14px;
  }

  .hero-metrics > div {
    min-height: 78px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media (max-width: 1120px) {
  .demo-query {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-date-group {
    grid-column: 1 / -1;
  }

  .demo-run-button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .journey-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-tabs button:nth-child(2) {
    border-right: 0;
  }

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

  .journey-stage {
    padding: 38px 0 0;
  }

  .journey-copy {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 24px;
  }

  .journey-copy > span {
    grid-row: auto;
  }

  .journey-copy h3 {
    font-size: 27px;
  }

  .journey-connector {
    min-height: 86px;
  }

  .sheet-route {
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
  }

  .sheet-route > div:last-child {
    grid-column: 1;
  }

  .sheet-route > svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .demo-product-switcher button {
    min-height: 84px;
    padding: 13px;
  }

  .demo-product-switcher strong {
    font-size: 12px;
  }

  .demo-query {
    grid-template-columns: 1fr;
  }

  .demo-date-group,
  .demo-run-button {
    grid-column: 1;
  }

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

  .demo-kpis > div:nth-child(even) {
    border-right: 0;
  }

  .demo-kpis > div:nth-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

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

  .decision-flow article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
  }

  .decision-flow article:last-child {
    border-bottom: 0;
  }

  .panel-heading {
    align-items: flex-start;
  }

  .chart-legend {
    max-width: 52%;
  }

  .chart-shell {
    height: 340px;
  }

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

  .order-ai-factor-grid > div:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .order-ai-factor-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .order-ai-factor-grid > div:nth-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .order-ai-outcome {
    grid-template-columns: 1fr;
  }

  .order-ai-result {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--code-muted) 35%, transparent);
  }

  .jarvis-demo {
    grid-template-columns: 1fr;
  }

  .jarvis-demo-header,
  .ai-quick-actions,
  .ai-chat,
  .ai-question-form,
  .ai-disclosure {
    grid-column: 1;
  }

  .ai-context {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .journey-tabs button {
    min-height: 76px;
    grid-template-columns: 23px minmax(0, 1fr);
    padding: 11px 10px;
  }

  .journey-tabs strong {
    font-size: 12px;
  }

  .journey-copy h3 {
    font-size: 24px;
  }

  .journey-copy p {
    font-size: 14px;
  }

  .sheet-demo-header,
  .demo-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .sheet-demo-header > div {
    flex-wrap: wrap;
  }

  .sheet-sync-ok,
  .demo-update {
    text-align: left;
  }

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

  .demo-product-switcher button {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-product-switcher button:last-child {
    border-bottom: 0;
  }

  .demo-product-switcher button.is-active {
    box-shadow: inset 4px 0 0 var(--blue);
  }

  .demo-query {
    padding: 14px;
  }

  .demo-date-group {
    grid-template-columns: 1fr;
  }

  .demo-query-status {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  .demo-query-status [data-query-scope] {
    width: 100%;
    padding-left: 15px;
  }

  .demo-source-map {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 11px 14px;
  }

  .demo-kpis > div {
    min-height: 92px;
    padding: 13px;
  }

  .demo-kpis strong {
    font-size: 19px;
  }

  .decision-workbench-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .decision-priority {
    max-width: none;
    text-align: left;
  }

  .decision-flow article,
  .decision-summary {
    padding-right: 14px;
    padding-left: 14px;
  }

  .panel-heading,
  .demo-detail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 13px 14px;
  }

  .chart-mode-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 11px 14px;
  }

  .chart-mode-tabs {
    width: 100%;
  }

  .chart-mode-tabs button {
    min-width: 0;
    padding-right: 5px;
    padding-left: 5px;
  }

  .chart-legend {
    max-width: none;
    justify-content: flex-start;
  }

  .chart-shell {
    height: 300px;
    padding: 16px 8px 6px;
  }

  .chart-caption {
    padding: 8px 14px 14px;
  }

  .order-ai-header,
  .order-ai-review-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .order-ai-header > strong,
  .order-ai-review-heading > strong {
    align-self: flex-start;
  }

  .order-ai-table-note,
  .order-ai-result,
  .order-ai-check,
  .order-ai-boundary {
    padding-right: 14px;
    padding-left: 14px;
  }

  .order-ai-factor-grid > div {
    min-height: 112px;
    padding: 14px;
  }

  .order-ai-factor-grid strong {
    font-size: 13px;
  }

  .order-ai-result > strong {
    font-size: 17px;
  }

  .jarvis-demo-header {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 13px 14px;
  }

  .jarvis-demo-header > strong {
    grid-column: 2;
  }

  .ai-context,
  .ai-overview,
  .ai-quick-actions,
  .ai-chat {
    padding-right: 14px;
    padding-left: 14px;
  }

  .ai-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-chat {
    min-height: 280px;
  }

  .chat-message {
    max-width: 100%;
  }

  .ai-question-form {
    padding: 11px 14px;
  }

  .ai-disclosure {
    padding: 8px 14px;
  }

  .data-journey > .data-caption {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .codex-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .codex-metrics > div {
    min-height: 96px;
    border-bottom: 1px solid #2c3931;
  }

  .codex-metrics > div:nth-child(3n) {
    border-right: 0;
  }

  .codex-metrics > div:nth-child(n + 4) {
    border-bottom: 0;
  }

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

  .codex-methods > div:nth-child(-n + 2) {
    border-bottom: 1px solid #2c3931;
  }

  .codex-methods > div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .codex-profile-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .codex-activity-updated {
    padding-left: 62px;
  }

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

  .codex-metrics > div {
    min-height: 88px;
    border-right: 1px solid #2c3931;
    border-bottom: 1px solid #2c3931;
  }

  .codex-metrics > div:nth-child(2n) {
    border-right: 0;
  }

  .codex-metrics > div:nth-child(n + 4) {
    border-bottom: 1px solid #2c3931;
  }

  .codex-metrics > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .codex-metrics strong {
    font-size: 21px;
  }

  .codex-heatmap-block {
    padding: 22px 16px 24px;
  }

  .codex-heatmap-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .codex-privacy-note {
    align-items: flex-start;
    padding: 12px 16px;
  }
}
