.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding-top: 164px;
  background: var(--black);
  color: var(--on-dark);
}

.hero-intro { position: relative; z-index: 2; width: min(var(--content), calc(100% - 56px)); margin: 0 auto; }
.hero h1 { margin-bottom: 22px; font-size: 76px; font-weight: 650; line-height: 1.04; }
.hero-claim { max-width: 690px; font-size: 34px; font-weight: 560; line-height: 1.22; }
.hero-copy { max-width: 600px; margin-top: 19px; color: var(--dark-muted); font-size: 19px; }
.hero-actions { display: flex; gap: 22px; margin-top: 29px; }

.hero-product {
  position: absolute;
  right: max(-94px, calc((100% - var(--content)) / 2 - 60px));
  bottom: -176px;
  width: min(1000px, 71vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid #404044;
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  transform: rotate(-1.7deg);
}

.hero-product img { width: 100%; min-height: 500px; object-fit: cover; object-position: top center; }
.hero-product figcaption { padding: 10px 14px; color: var(--dark-muted); font-size: 11px; }

.hero-principle {
  position: absolute;
  z-index: 2;
  bottom: 78px;
  left: max(28px, calc((100% - var(--content)) / 2));
  display: grid;
  gap: 9px;
  padding-left: 18px;
  border-left: 4px solid var(--blue-light);
  color: var(--dark-muted);
  font-size: 15px;
  font-weight: 600;
}

.hero-intro .eyebrow { animation: hero-enter 720ms 80ms both cubic-bezier(0.22, 1, 0.36, 1); }
.hero h1 { animation: hero-enter 780ms 150ms both cubic-bezier(0.22, 1, 0.36, 1); }
.hero-claim { animation: hero-enter 780ms 240ms both cubic-bezier(0.22, 1, 0.36, 1); }
.hero-copy { animation: hero-enter 780ms 320ms both cubic-bezier(0.22, 1, 0.36, 1); }
.hero-actions { animation: hero-enter 780ms 390ms both cubic-bezier(0.22, 1, 0.36, 1); }
.hero-product { animation: product-arrive 1000ms 240ms both cubic-bezier(0.22, 1, 0.36, 1); }
.hero-principle { animation: hero-enter 800ms 500ms both cubic-bezier(0.22, 1, 0.36, 1); }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes product-arrive {
  from { opacity: 0; transform: rotate(-1.7deg) translateY(34px); }
  to { opacity: 1; transform: rotate(-1.7deg) translateY(0); }
}

.overview { padding-top: 150px; padding-bottom: 140px; }
.work-index { padding-top: 145px; padding-bottom: 140px; }
.project-index-list { margin-top: 69px; border-top: 1px solid var(--line); }
.project-index-item { display: grid; grid-template-columns: 80px minmax(260px, 0.9fr) minmax(320px, 1fr) 145px; gap: 27px; min-height: 190px; padding: 27px 0; border-bottom: 1px solid var(--line); align-items: start; transition: padding-left 240ms ease, background-color 240ms ease; }
.project-index-item:hover { padding-left: 14px; background: var(--soft); }
.project-number, .project-type { color: var(--blue); font-size: 12px; font-weight: 700; }
.project-type { margin-bottom: 17px; }
.project-index-item h3 { font-size: 29px; font-weight: 650; line-height: 1.18; }
.project-index-item > p { color: var(--muted); font-size: 16px; }
.project-index-item a { justify-self: end; padding-bottom: 3px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 13px; font-weight: 650; }
.dashboard-spotlight { display: grid; grid-template-columns: 1.05fr 0.45fr 0.9fr 145px; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); background: var(--soft); align-items: center; }
.dashboard-spotlight > div:first-child { padding-left: 22px; }
.dashboard-spotlight h3 { max-width: 345px; font-size: 23px; font-weight: 650; line-height: 1.25; }
.dashboard-spotlight > p { color: var(--muted); font-size: 14px; }
.dashboard-spotlight > a { justify-self: end; margin-right: 22px; padding-bottom: 3px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 13px; font-weight: 650; }
.spotlight-meter { display: grid; gap: 13px; }
.spotlight-meter span { display: grid; grid-template-columns: 1fr 35px; gap: 8px; align-items: center; }
.spotlight-meter i { display: block; height: 6px; background: #d2d2d7; }
.spotlight-meter i b { display: block; height: 100%; background: var(--blue); }
.spotlight-meter span:nth-child(2) i b { background: var(--orange); }
.spotlight-meter b { color: var(--muted); font-size: 11px; font-weight: 650; }
.overview-grid { display: grid; grid-template-columns: minmax(260px, 0.78fr) minmax(530px, 1.22fr); gap: 110px; margin-top: 75px; }
.overview-lead { color: var(--muted); font-family: var(--serif); font-size: 24px; line-height: 1.6; }
.overview-lead p + p { margin-top: 24px; }
.overview-points { border-top: 1px solid var(--line); }
.numbered-point { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.numbered-point > span { color: var(--blue); font-size: 13px; font-weight: 700; }
.numbered-point h3 { font-size: 21px; font-weight: 650; }
.numbered-point p { margin-top: 6px; color: var(--muted); font-size: 16px; }
.numbered-point { transition: padding-left 220ms ease, background-color 220ms ease; }
.numbered-point:hover { padding-left: 12px; background: var(--soft); }

.translation-band { padding: 125px 0; background: var(--black); color: var(--on-dark); }
.translation-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 100px; align-items: start; }
.translation-band h2 { font-size: 48px; font-weight: 650; line-height: 1.13; }
.translation-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--dark-line); }
.translation-flow li { min-height: 154px; padding: 22px 26px 18px 0; border-bottom: 1px solid var(--dark-line); }
.translation-flow li:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--dark-line); }
.translation-flow span, .translation-flow small { display: block; color: var(--dark-muted); font-size: 13px; }
.translation-flow span { color: var(--blue-light); font-weight: 700; }
.translation-flow b { display: block; margin: 24px 0 5px; font-size: 19px; }

.experience { padding-top: 145px; padding-bottom: 150px; }
.experience-layout { display: grid; grid-template-columns: 188px minmax(270px, 0.58fr) minmax(500px, 1.1fr); gap: 36px; margin-top: 68px; align-items: start; }
.experience-tabs { display: grid; border-top: 1px solid var(--line); }
.experience-tab { display: flex; gap: 10px; padding: 17px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: 14px; text-align: left; }
.experience-tab span { font-weight: 650; }
.experience-tab.is-active { color: var(--ink); }
.experience-tab.is-active span { color: var(--blue); }
.experience-copy { padding: 4px 8px 0 0; }
.demo-kicker { color: var(--blue); font-size: 13px; font-weight: 700; }
.experience-copy h3 { margin-top: 21px; font-size: 31px; font-weight: 650; line-height: 1.2; }
.experience-copy > p:not(.demo-kicker):not(.status-note) { margin-top: 17px; color: var(--muted); }
.demo-list { display: grid; gap: 9px; padding: 0; margin: 25px 0 0; list-style: none; color: var(--ink); font-size: 14px; }
.demo-list li { padding-left: 15px; border-left: 2px solid var(--blue); }
.status-note { margin-top: 28px; color: var(--muted); font-size: 13px; }
.experience-media { min-height: 430px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.experience-media img { width: 100%; height: 403px; object-fit: cover; object-position: top center; transition: opacity 180ms ease; }
.experience-media figcaption { padding: 10px 13px; color: var(--muted); font-size: 11px; }

.human-loop { padding: 130px 0; border-top: 1px solid var(--line); }
.human-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.human-statement h2 { font-size: 50px; font-weight: 650; line-height: 1.12; }
.human-statement > p:last-child { max-width: 510px; margin-top: 27px; color: var(--muted); font-size: 18px; }
.human-rule { min-height: 405px; padding: 39px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.rule-number { color: var(--blue); font-size: 144px; font-weight: 650; line-height: 0.84; }
.rule-title { max-width: 270px; margin-top: 22px; font-size: 26px; font-weight: 650; line-height: 1.22; }
.rule-steps { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 35px; }
.rule-steps span { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 600; }
.inline-status { margin-top: 20px; color: var(--muted); font-size: 12px; font-weight: 650; }
.inline-status-dark { color: var(--muted); }

.workflow { padding-top: 150px; padding-bottom: 145px; background: var(--soft); }
.workflow-rail { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.workflow-step { min-height: 259px; padding: 22px 24px 18px 0; border-right: 1px solid var(--line); }
.workflow-step + .workflow-step { padding-left: 24px; }
.workflow-step:last-child { padding-right: 0; border-right: 0; }
.workflow-step > span { color: var(--blue); font-size: 13px; font-weight: 700; }
.workflow-step h3 { margin-top: 57px; font-size: 22px; font-weight: 650; }
.workflow-step p { margin-top: 8px; color: var(--muted); font-size: 14px; }
.workflow-note { display: grid; grid-template-columns: 0.5fr 1fr; gap: 35px; margin-top: 32px; color: var(--muted); font-size: 15px; }
.workflow-note strong { color: var(--ink); }

.reuse { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; padding-top: 155px; padding-bottom: 150px; align-items: center; }
.reuse-visual { position: relative; min-height: 382px; }
.reuse-card { position: absolute; display: grid; width: min(350px, 80%); min-height: 218px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.11); }
.reuse-card span { color: var(--blue); font-size: 12px; font-weight: 700; }
.reuse-card b { margin-top: 49px; font-size: 28px; font-weight: 650; }
.reuse-card small { margin-top: 8px; color: var(--muted); font-size: 13px; }
.reuse-card-back { top: 6px; left: 6%; transform: rotate(-6deg); }
.reuse-card-front { right: 2%; bottom: 18px; transform: rotate(4deg); }
.reuse-card { transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease; }
.reuse-visual:hover .reuse-card-back { transform: rotate(-8deg) translate(-8px, -10px); }
.reuse-visual:hover .reuse-card-front { transform: rotate(6deg) translate(8px, 8px); box-shadow: 0 32px 62px rgba(0, 0, 0, 0.16); }
.reuse-copy h2 { margin-bottom: 25px; }
.reuse-copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); font-size: 18px; }
.boundary-list { display: grid; gap: 10px; margin-top: 29px; color: var(--muted); font-size: 14px; }
.boundary-list b { color: var(--ink); }

.resource-reuse { padding: 147px 0; background: var(--black); color: var(--on-dark); }
.resource-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; column-gap: 78px; }
.resource-heading .eyebrow, .resource-heading h2 { grid-column: 1; }
.resource-heading h2 { font-size: 51px; }
.resource-heading > p:last-child { grid-column: 2; grid-row: 2; align-self: end; color: var(--dark-muted); font-size: 17px; }
.resource-path { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 79px 0 0; list-style: none; border-top: 1px solid var(--dark-line); }
.resource-path li { min-height: 194px; padding: 21px 24px 16px 0; border-right: 1px solid var(--dark-line); }
.resource-path li + li { padding-left: 24px; }
.resource-path li:last-child { padding-right: 0; border-right: 0; }
.resource-path span, .resource-path small { display: block; color: var(--dark-muted); font-size: 13px; }
.resource-path span { color: var(--blue-light); font-weight: 700; }
.resource-path b { display: block; margin-top: 49px; font-size: 21px; }
.resource-path small { margin-top: 8px; }
.preview-boundary { display: grid; grid-template-columns: auto auto 1fr; gap: 12px; max-width: 790px; margin-top: 39px; color: var(--dark-muted); font-size: 14px; align-items: baseline; }
.preview-boundary strong { color: var(--on-dark); font-size: 13px; }
.preview-boundary p { margin: 0; }

.dashboard { padding-top: 151px; padding-bottom: 145px; }
.dashboard-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: end; }
.dashboard-heading h2 { max-width: 770px; font-size: 51px; font-weight: 650; line-height: 1.12; }
.dashboard-heading > p { max-width: 405px; color: var(--muted); font-size: 17px; }
.dashboard-demo { margin-top: 67px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.dashboard-topbar { display: flex; min-height: 58px; padding: 0 22px; border-bottom: 1px solid var(--line); background: var(--canvas); align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }
.dashboard-topbar > div { display: flex; gap: 10px; align-items: center; }
.dashboard-topbar strong { color: var(--ink); font-size: 14px; }
.dashboard-topbar small { color: var(--muted); }
.board-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.dashboard-summary { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.dashboard-summary > div { min-height: 132px; padding: 22px; border-right: 1px solid var(--line); }
.dashboard-summary > div:last-child { border-right: 0; }
.dashboard-summary small, .dashboard-summary span { display: block; color: var(--muted); font-size: 12px; }
.dashboard-summary b { display: block; margin: 21px 0 3px; font-size: 22px; font-weight: 650; }
.dashboard-table { width: 100%; border-collapse: collapse; background: var(--canvas); table-layout: fixed; }
.dashboard-table th, .dashboard-table td { min-height: 59px; padding: 15px 11px; border-bottom: 1px solid var(--line); font-size: 14px; text-align: left; vertical-align: middle; }
.dashboard-table thead th { min-height: 43px; padding-top: 12px; padding-bottom: 12px; color: var(--muted); font-size: 11px; font-weight: 700; }
.dashboard-table tbody th { color: var(--ink); font-weight: 500; }
.dashboard-table td:nth-child(2), .dashboard-table td:nth-child(3) { color: var(--muted); }
.dashboard-table td:nth-child(4) { display: flex; gap: 9px; align-items: center; color: var(--muted); font-size: 12px; }
.dashboard-table tbody tr:last-child th, .dashboard-table tbody tr:last-child td { border-bottom: 0; }
.load-bar { display: block; width: 78px; height: 5px; overflow: hidden; background: #d2d2d7; }
.load-bar b { display: block; height: 100%; background: var(--blue); }
.dashboard-table .is-review .load-bar b { background: var(--orange); }
.dashboard-table em { font-style: normal; }
.dashboard-table mark { display: inline-block; padding: 3px 6px; border-radius: 4px; font-size: 11px; font-weight: 650; }
.mark-review { background: #fff1d6; color: #8a4d00; }
.mark-steady { background: #d9f8e4; color: #16743a; }
.dashboard-caption { padding: 12px 22px; margin: 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.dashboard-claim { display: flex; gap: 25px; margin-top: 20px; align-items: baseline; justify-content: space-between; color: var(--muted); font-size: 13px; }
.dashboard-claim strong { color: var(--blue); }

.status { padding-top: 150px; padding-bottom: 138px; }
.status-table { width: 100%; margin-top: 70px; border-collapse: collapse; border-top: 1px solid var(--line); table-layout: fixed; }
.status-table th, .status-table td { padding: 20px 10px; border-bottom: 1px solid var(--line); font-size: 15px; text-align: left; vertical-align: middle; }
.status-table thead th { padding-top: 12px; padding-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 700; }
.status-table th:first-child, .status-table td:first-child { width: 30%; }
.status-table th:nth-child(2), .status-table td:nth-child(2) { width: 48%; color: var(--muted); }
.status-table th:last-child, .status-table td:last-child { width: 22%; }
.status-table tbody th { font-weight: 500; }
.status-footnote { margin-top: 18px; color: var(--muted); font-size: 13px; }

.role { padding-top: 152px; padding-bottom: 160px; background: var(--soft); }
.role-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 90px; }
.role-detail { align-self: end; padding-left: 28px; border-left: 2px solid var(--blue); }
.role-label { color: var(--blue); font-size: 13px; font-weight: 700; }
.role-detail > p:not(.role-label):not(.role-muted) { margin-top: 17px; font-family: var(--serif); font-size: 25px; line-height: 1.5; }
.role-muted { margin-top: 26px; color: var(--muted); }

.site-footer { display: flex; min-height: 146px; padding: 34px max(28px, calc((100% - var(--content)) / 2)); background: var(--black); color: var(--on-dark); align-items: center; justify-content: space-between; }
.site-footer > div { display: grid; gap: 4px; font-size: 14px; font-weight: 650; }
.site-footer small { color: var(--dark-muted); font-size: 9px; }
.site-footer p { color: var(--dark-muted); font-size: 12px; text-align: center; }
.site-footer a { padding-bottom: 2px; border-bottom: 1px solid var(--blue-light); color: var(--on-dark); font-size: 13px; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal-target { opacity: 1; transform: none; }
}
