* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.75rem;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 50;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--color-accent);
  content: "";
  pointer-events: none;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: var(--space-3);
  left: var(--space-5);
  padding: var(--space-3) var(--space-4);
  transform: translateY(-160%);
  background: var(--color-surface-inverse);
  color: var(--color-text-inverse);
}

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

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

.page-shell {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-inline);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--color-border-soft);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--page-inline);
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  min-height: 2.75rem;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
}

.brand-lockup img {
  width: 2.85rem;
  height: 2.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-lockup span {
  white-space: nowrap;
}

.section-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.section-nav a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.45rem;
  color: var(--color-text-soft);
  font-size: var(--text-xs);
  font-weight: 700;
  text-decoration: none;
}

.section-nav a:hover {
  color: var(--color-accent);
}

.hero {
  overflow: hidden;
  background: var(--color-brand);
  color: var(--color-text-inverse);
}

.hero__inner {
  position: relative;
  padding-block: var(--space-8) var(--space-10);
}

.hero__inner::after {
  position: absolute;
  right: var(--page-inline);
  bottom: 0;
  width: 5.5rem;
  height: 4px;
  background: var(--color-accent);
  content: "";
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
}

.hero__meta-status {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
  text-align: right;
}

.sync-state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
}

.sync-state i {
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #69a98f;
}

.sync-state[data-status="stale"] i,
.sync-state[data-status="error"] i {
  background: #e3bb75;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #ffffff;
}

.live-label i {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  background: transparent;
}

.hero__heading {
  margin-bottom: var(--space-6);
}

.hero__heading p {
  margin-bottom: var(--space-1);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: 700;
}

.hero h1 {
  max-width: 10em;
  margin-bottom: 0;
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.15;
}

.hero__score {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.progress-ring {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  aspect-ratio: 1;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring circle {
  fill: none;
  stroke-width: 8;
}

.progress-ring .ring-track {
  stroke: rgba(255, 255, 255, 0.16);
}

.progress-ring .ring-value {
  stroke: var(--color-accent);
  stroke-dasharray: 100;
  stroke-dashoffset: var(--ring-offset);
  animation: ring-fill 760ms var(--ease-standard) both;
}

.progress-ring__label {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
}

.progress-ring__label small {
  margin-bottom: var(--space-1);
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--text-2xs);
  font-weight: 700;
}

.progress-ring__label strong {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  line-height: 1;
}

.progress-ring__label em {
  margin-left: 0.1em;
  color: var(--color-accent);
  font-size: 0.48em;
  font-style: normal;
}

.progress-ring--hero {
  width: 10.5rem;
}

.delivery-date {
  align-self: stretch;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
  padding-block: var(--space-4);
}

.delivery-date > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--text-xs);
  font-weight: 700;
}

.delivery-date > strong {
  margin-block: var(--space-1) var(--space-2);
  font-family: var(--font-mono);
  font-size: 2rem;
  line-height: 1;
}

.delivery-date > small,
.delivery-date #delivery-artifacts small {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-2xs);
  line-height: 1.55;
}

.delivery-date #delivery-artifacts {
  display: grid;
}

.delivery-date[data-status="at_risk"] > span:first-child,
.delivery-date[data-status="delayed"] > span:first-child {
  color: #ffd2cc;
}

.delivery-date[data-status="delayed"] {
  border-color: rgba(221, 82, 69, 0.72);
}

.hero__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--space-5);
}

.hero__bottom > p {
  max-width: 39rem;
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-sm);
}

.hero__bottom > p strong {
  color: #ffffff;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-3);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}

.button:active {
  transform: translateY(1px);
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.button--light {
  background: #ffffff;
  color: var(--color-brand);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
}

.button--dark {
  background: var(--color-text);
  color: #ffffff;
}

.signal-strip {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-inline: 0;
}

.signal-strip article {
  display: grid;
  min-height: 5.4rem;
  align-content: center;
  border-right: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  padding: var(--space-4) var(--page-inline);
}

.signal-strip article:nth-child(even) {
  border-right: 0;
}

.signal-strip article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.signal-strip strong {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  line-height: 1;
}

.signal-strip span {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
}

.signal-strip .is-alert strong {
  color: var(--color-accent);
}

.section {
  padding-block: var(--section-block);
}

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

.section-heading {
  margin-bottom: var(--space-8);
}

.section-heading--visual {
  display: grid;
  gap: var(--space-3);
}

.section-heading h2,
.proof-band h2,
.risk-band h2,
.share-section h2 {
  max-width: 14em;
  margin-bottom: 0;
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.22;
}

.section-heading > p,
.section-heading--visual > p {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.section-kicker {
  margin-bottom: var(--space-2);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.showcase {
  overflow: hidden;
  padding-top: var(--space-10);
  background: var(--color-canvas);
}

.showcase .section-heading {
  margin-bottom: var(--space-5);
}

.showcase-rail {
  display: grid;
  grid-auto-columns: min(86vw, 34rem);
  grid-auto-flow: column;
  gap: var(--space-5);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 var(--page-inline) var(--space-5);
  scroll-padding-inline: var(--page-inline);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.showcase-rail::-webkit-scrollbar,
.journey::-webkit-scrollbar {
  display: none;
}

.showcase-item {
  overflow: hidden;
  margin: 0;
  scroll-snap-align: start;
  border-block: 2px solid var(--color-text);
  background: var(--color-surface);
}

.showcase-item > a {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  aspect-ratio: 16 / 10;
  background: #e9edeb;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform var(--duration-base) var(--ease-standard);
}

.showcase-item > a:hover img {
  transform: scale(1.015);
}

.showcase-item figcaption {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
}

.showcase-item figcaption span {
  display: grid;
  min-width: 0;
}

.showcase-item figcaption small {
  margin-bottom: var(--space-1);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.showcase-item figcaption strong {
  font-size: var(--text-sm);
  line-height: 1.45;
}

.showcase-item figcaption em {
  flex: 0 0 auto;
  color: var(--color-success);
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: 800;
}

.showcase-item figcaption em.is-active,
.showcase-item figcaption em.is-blocked {
  color: var(--color-accent);
}

.showcase-item figcaption em.is-planned {
  color: var(--color-text-muted);
}

.journey-band {
  overflow: hidden;
  background: var(--color-brand);
  color: #ffffff;
}

.journey-band__inner {
  padding-block: var(--space-12);
}

.section-heading--inverse h2 {
  color: #ffffff;
}

.section-heading--inverse .section-kicker {
  color: #e6b4ae;
}

.journey {
  display: grid;
  grid-auto-columns: 8.7rem;
  grid-auto-flow: column;
  gap: 1px;
  overflow-x: auto;
  margin: 0;
  padding: 0 0 var(--space-3);
  list-style: none;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.journey li {
  position: relative;
  display: grid;
  min-height: 8.75rem;
  align-content: space-between;
  padding: var(--space-4);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
}

.journey li::after {
  position: absolute;
  top: 2rem;
  right: -0.42rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.46);
  content: "→";
  font-family: var(--font-mono);
}

.journey li:last-child::after {
  content: none;
}

.journey li span {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
}

.journey li strong {
  font-size: var(--text-sm);
  line-height: 1.4;
}

.journey li small {
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-2xs);
  font-weight: 700;
}

.journey li.is-done {
  border-top: 3px solid #4f9c80;
}

.journey li.is-active {
  border-top: 3px solid var(--color-accent);
}

.journey li.is-planned,
.journey li.is-blocked {
  border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.proof-band {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.proof-band__inner {
  display: grid;
  gap: var(--space-6);
  padding-block: var(--space-8);
}

.proof-summary {
  display: grid;
  gap: var(--space-3);
}

.proof-summary__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
}

.proof-summary__meta .section-kicker,
.proof-summary__meta p {
  margin-bottom: 0;
}

.proof-summary__meta > p:last-child {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
  white-space: nowrap;
}

.proof-summary h2 {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  max-width: none;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 2.35rem;
  line-height: 0.95;
}

.proof-summary h2 strong {
  font-family: var(--font-mono);
  font-size: inherit;
}

.proof-summary h2 span {
  color: var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.64em;
  font-weight: 700;
}

.proof-verdict {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
}

.proof-verdict__mark,
.proof-status-mark {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  background: var(--color-success);
}

.proof-verdict strong {
  color: var(--color-success);
  font-size: var(--text-sm);
}

.proof-summary[data-has-failures="true"] .proof-verdict__mark,
.proof-summary[data-has-failures="true"] .proof-status-mark {
  background: var(--color-accent);
}

.proof-summary[data-has-failures="true"] .proof-verdict strong {
  color: var(--color-accent);
}

.proof-list {
  border-top: 2px solid var(--color-text);
}

.proof-list article {
  display: grid;
  grid-template-columns: 0.5rem minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-3);
  min-height: 3.2rem;
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-2);
}

.proof-list article > strong {
  min-width: 0;
  font-size: var(--text-sm);
  line-height: 1.4;
}

.proof-count {
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  white-space: nowrap;
}

.proof-state {
  color: var(--color-success);
  font-size: var(--text-2xs);
  font-weight: 800;
  white-space: nowrap;
}

.proof-list article[data-status="partial"] .proof-status-mark,
.proof-list article[data-status="failed"] .proof-status-mark,
.proof-list article[data-status="pending"] .proof-status-mark {
  background: var(--color-accent);
}

.proof-list article[data-status="partial"] .proof-state,
.proof-list article[data-status="failed"] .proof-state,
.proof-list article[data-status="pending"] .proof-state {
  color: var(--color-accent);
}

.proof-track {
  grid-column: 2 / -1;
  height: 3px;
  overflow: hidden;
  background: var(--color-border-soft);
}

.proof-track i {
  display: block;
  height: 100%;
  background: var(--color-accent);
}

.task-list {
  border-top: 2px solid var(--color-text);
}

.task-item {
  border-bottom: 1px solid var(--color-border);
}

.task-item > summary {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr) 1.25rem;
  gap: var(--space-3);
  align-items: start;
  min-height: 6.35rem;
  padding-block: var(--space-4);
  cursor: pointer;
  list-style: none;
}

.task-item > summary::-webkit-details-marker {
  display: none;
}

.task-item__date {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--color-border-soft);
  padding-right: var(--space-3);
}

.task-item__date small {
  color: var(--color-text-muted);
  font-size: 0.625rem;
  font-weight: 700;
}

.task-item__date strong {
  margin-top: var(--space-1);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.task-item__body {
  display: block;
  min-width: 0;
}

.task-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.task-title {
  display: block;
  font-size: var(--text-md);
  line-height: 1.45;
}

.task-id {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.task-status {
  display: inline-flex;
  min-height: 1.5rem;
  align-items: center;
  color: var(--color-text-muted);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.task-status::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-right: var(--space-2);
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.task-item[data-status="complete"] .task-status {
  color: var(--color-success);
}

.task-item[data-status="active"] .task-status {
  color: var(--color-accent);
}

.task-item[data-status="blocked"] .task-status {
  color: var(--color-warning-strong);
}

.task-expand {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.task-item[open] .task-expand {
  transform: rotate(45deg);
}

.task-item__detail {
  margin-left: 6.55rem;
  border-left: 4px solid var(--color-border-soft);
  padding: 0 0 var(--space-5) var(--space-4);
}

.task-item__detail p {
  margin-bottom: var(--space-3);
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.task-owner {
  color: var(--color-text-muted);
  font-size: var(--text-2xs);
  font-weight: 700;
}

.progress-details {
  padding-block: var(--space-8);
  background: var(--color-canvas);
}

.breakdown-panel {
  border-block: 2px solid var(--color-text);
}

.breakdown-panel summary {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  list-style: none;
}

.breakdown-panel summary::-webkit-details-marker {
  display: none;
}

.breakdown-panel summary > span:first-child {
  display: grid;
}

.breakdown-panel summary small {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.breakdown-panel summary strong {
  font-size: var(--text-xl);
}

.summary-mark {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  transition: transform var(--duration-fast) var(--ease-standard);
}

.breakdown-panel[open] .summary-mark {
  transform: rotate(45deg);
}

.progress-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--color-border);
  background: var(--color-border);
}

.progress-breakdown article {
  display: grid;
  place-items: center;
  gap: var(--space-3);
  min-width: 0;
  padding: var(--space-5) var(--space-2);
  background: var(--color-surface);
  text-align: center;
}

.progress-breakdown article > div:last-child {
  display: grid;
  gap: var(--space-1);
}

.progress-breakdown article > div:last-child strong {
  font-size: var(--text-sm);
}

.progress-breakdown article > div:last-child span {
  color: var(--color-text-muted);
  font-size: var(--text-2xs);
}

.progress-ring--small {
  width: 6.5rem;
}

.progress-ring--small .ring-track {
  stroke: var(--color-border-soft);
}

.progress-ring--small circle {
  stroke-width: 7;
}

.progress-ring--small .progress-ring__label strong {
  color: var(--color-text);
  font-size: 1rem;
}

.progress-breakdown > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: var(--space-4);
  background: var(--color-canvas);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.capability-map {
  border-top: 2px solid var(--color-text);
}

.capability-map article {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: start;
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-4);
}

.capability-map article > span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.capability-map article > div {
  min-width: 0;
}

.capability-map strong {
  display: block;
  font-size: var(--text-md);
  line-height: 1.4;
}

.capability-map p {
  margin: var(--space-1) 0 0;
  color: var(--color-text-soft);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.capability-map em {
  color: var(--color-success);
  font-size: var(--text-2xs);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.capability-map em.is-active {
  color: var(--color-accent);
}

.capability-map em.is-planned {
  color: var(--color-text-muted);
}

.capability-map em.is-blocked {
  color: var(--color-accent);
}

.feature-catalog {
  margin-top: var(--space-6);
  border-block: 2px solid var(--color-text);
}

.feature-catalog > summary {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: 800;
  list-style: none;
}

.feature-catalog > summary::-webkit-details-marker {
  display: none;
}

.feature-catalog[open] > summary .summary-mark {
  transform: rotate(45deg);
}

.feature-catalog__body {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
}

.filter-bar {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-2);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  display: inline-flex;
  min-height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  color: var(--color-text-soft);
  cursor: pointer;
  font-size: var(--text-xs);
  font-weight: 800;
}

.filter-chip span {
  font-family: var(--font-mono);
}

.filter-chip.is-active {
  border-color: var(--color-text);
  background: var(--color-text);
  color: #ffffff;
}

.feature-ledger {
  border-top: 2px solid var(--color-text);
}

.feature-item {
  border-bottom: 1px solid var(--color-border);
}

.feature-trigger {
  display: grid;
  width: 100%;
  min-height: 5.75rem;
  grid-template-columns: 0.75rem minmax(0, 1fr) 2.75rem;
  gap: var(--space-3);
  align-items: start;
  border: 0;
  padding: var(--space-5) 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.feature-status-dot {
  width: 0.68rem;
  height: 0.68rem;
  margin-top: 0.38rem;
  border: 2px solid var(--color-text-muted);
  border-radius: 50%;
}

.feature-item[data-status="complete"] .feature-status-dot {
  border-color: var(--color-success);
  background: var(--color-success);
}

.feature-item[data-status="active"] .feature-status-dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.feature-name,
.feature-summary,
.feature-meta {
  display: block;
}

.feature-name {
  margin-bottom: var(--space-1);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.4;
}

.feature-item[data-status="active"] .feature-name {
  color: var(--color-accent);
}

.feature-summary {
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.feature-meta {
  color: var(--color-text-muted);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.feature-chevron {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem auto 0;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.feature-trigger[aria-expanded="true"] .feature-chevron {
  transform: rotate(45deg);
}

.feature-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-base) var(--ease-standard);
}

.feature-detail > div {
  overflow: hidden;
}

.feature-detail p {
  margin: 0 2.75rem var(--space-5) 1.75rem;
  border-left: 4px solid var(--color-border-soft);
  padding-left: var(--space-4);
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.feature-trigger[aria-expanded="true"] + .feature-detail {
  grid-template-rows: 1fr;
}

.timeline-section {
  background: var(--color-canvas);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  left: 2.65rem;
  width: 1px;
  background: var(--color-border);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  min-height: 7.5rem;
}

.timeline time {
  position: relative;
  z-index: 1;
  align-self: start;
  width: 3.9rem;
  border: 1px solid var(--color-border);
  background: var(--color-canvas);
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.9rem;
  text-align: center;
}

.timeline li.is-complete time {
  border-color: var(--color-success);
  color: var(--color-success);
}

.timeline li.is-active time {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
}

.timeline li > div {
  border-top: 1px solid var(--color-border);
  padding: 0 0 var(--space-6) var(--space-4);
}

.timeline li > div > span {
  color: var(--color-text-muted);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.timeline li.is-complete > div > span {
  color: var(--color-success);
}

.timeline li.is-active > div > span {
  color: var(--color-accent);
}

.timeline h3 {
  margin: var(--space-1) 0 var(--space-2);
  font-size: var(--text-lg);
  line-height: 1.4;
}

.timeline p {
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.risk-band {
  background: var(--color-text);
  color: #ffffff;
}

.risk-band__grid {
  display: grid;
  gap: var(--space-10);
  padding-block: var(--space-12);
}

.risk-band__heading > p:last-child {
  max-width: 28rem;
  margin: var(--space-4) 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

.risk-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.risk-list article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-block: var(--space-5);
}

.risk-list span {
  color: #e3bb75;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
}

.risk-list h3 {
  margin: var(--space-1) 0 var(--space-2);
  font-size: var(--text-lg);
  line-height: 1.4;
}

.risk-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-sm);
}

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

.share-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

.share-copy > p:not(.section-kicker) {
  max-width: 31rem;
  margin: var(--space-4) 0 var(--space-5);
  color: var(--color-text-soft);
  font-size: var(--text-sm);
}

.qr-figure {
  width: min(100%, 17rem);
  margin: 0 auto;
  border: 2px solid var(--color-text);
  padding: var(--space-3);
  background: #ffffff;
}

.qr-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-figure figcaption {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-2);
  color: var(--color-text-soft);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-canvas);
}

.site-footer__inner {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-2xs);
}

.site-footer__inner > div {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-footer img {
  width: 2.5rem;
  height: 2rem;
  object-fit: contain;
}

.site-footer p {
  margin-bottom: 0;
}

.toast {
  position: fixed;
  z-index: 80;
  right: var(--space-4);
  bottom: calc(var(--space-4) + env(safe-area-inset-bottom));
  left: var(--space-4);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-3) var(--space-4);
  background: var(--color-text);
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
}

@keyframes ring-fill {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: var(--ring-offset);
  }
}

@media (min-width: 40rem) {
  .delivery-date > strong {
    font-size: 2.35rem;
  }

  .signal-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-inline: var(--page-inline);
  }

  .signal-strip article,
  .signal-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .signal-strip article:nth-child(even) {
    border-right: 1px solid var(--color-border-soft);
  }

  .signal-strip article:last-child {
    border-right: 0;
  }

  .showcase-rail {
    padding-left: max(var(--page-inline), calc((100vw - var(--page-max)) / 2 + var(--page-inline)));
    padding-right: max(var(--page-inline), calc((100vw - var(--page-max)) / 2 + var(--page-inline)));
  }

  .share-grid {
    grid-template-columns: minmax(0, 1fr) 17rem;
  }

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

  .task-item > summary {
    grid-template-columns: 7rem minmax(0, 1fr) 1.25rem;
    gap: var(--space-5);
  }

  .task-item__detail {
    margin-left: 8.25rem;
  }

  .task-item__date strong {
    font-size: var(--text-md);
  }
}

@media (min-width: 60rem) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.78fr);
    column-gap: var(--space-16);
    padding-block: var(--space-12);
  }

  .hero__meta {
    grid-column: 1 / -1;
  }

  .hero__heading {
    align-self: start;
    margin: var(--space-6) 0 0;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero__score {
    grid-column: 2;
    grid-row: 2 / span 2;
    margin-bottom: 0;
  }

  .hero__bottom {
    grid-column: 1;
    align-self: end;
    margin-top: var(--space-10);
  }

  .hero-actions {
    max-width: 28rem;
  }

  .section-heading--visual {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
    align-items: end;
  }

  .showcase-rail {
    grid-auto-columns: 36rem;
  }

  .journey {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: initial;
    overflow: visible;
  }

  .journey li {
    min-height: 9.5rem;
  }

  .proof-band__inner {
    grid-template-columns: 20rem minmax(0, 1fr);
    align-items: stretch;
    gap: var(--space-8);
  }

  .proof-summary {
    border-right: 1px solid var(--color-border);
    align-content: center;
    padding-right: var(--space-8);
  }

  .proof-summary__meta {
    display: block;
  }

  .proof-summary__meta > p:last-child {
    margin-top: var(--space-2);
  }

  .proof-summary h2 {
    margin-top: var(--space-5);
    font-size: 3rem;
  }

  .proof-list {
    align-self: center;
  }

  .proof-list article {
    min-height: 2.75rem;
  }

  .risk-band__grid {
    grid-template-columns: minmax(16rem, 0.6fr) minmax(0, 1.4fr);
  }

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

  .risk-list article {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding: var(--space-5);
  }

  .risk-list article:last-child {
    border-right: 0;
  }
}

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

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