:root {
  --bg: #f6fafe;
  --bg-soft: #eef4fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-tint: rgba(37, 99, 235, 0.08);
  --line: rgba(115, 118, 134, 0.18);
  --line-strong: rgba(115, 118, 134, 0.32);
  --text: #1f2937;
  --text-soft: #334155;
  --text-muted: #64748b;
  --primary: #2563eb;
  --primary-deep: #004ac6;
  --accent: #943700;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 32px rgba(37, 99, 235, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --site-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f6fafe; /* fallback if WebGL unavailable */
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background: transparent; /* canvas handles the background */
}

body.has-splash {
  overflow: hidden;
}

body::before {
  display: none; /* canvas replaces this layer */
}

/* Animated mesh-gradient canvas — see assets/bg-shader.js */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

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

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

.site-shell {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 120;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--primary-deep);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.splash-overlay.is-fading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-overlay__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.splash-overlay__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.splash-overlay__enter {
  position: absolute;
  z-index: 1;
  min-width: 168px;
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.splash-overlay__enter:hover,
.splash-overlay__enter:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
}

.container {
  width: min(calc(100% - 2rem), var(--site-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(115, 118, 134, 0.12);
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%);
  mask-image: linear-gradient(to bottom, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 0 0 178px;
}

.brand__name {
  margin: 0;
  font-family: "Anybody", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__tag {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary-deep);
  text-shadow: 0 0 12px rgba(37, 99, 235, 0.18);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent 86%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--primary-deep);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-header__actions .button {
  min-height: 44px;
  padding: 0.68rem 1rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface-strong);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

/* Animated sweeping border — rotating conic-gradient comet arc */
@property --btn-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

@keyframes btn-border-spin {
  to { --btn-angle: 360deg; }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  position: relative;
  --btn-angle: 0deg;
  animation: btn-border-spin 4s linear infinite;
  transition: transform 150ms ease, box-shadow 180ms ease;
}

/* Sweeping arc ring — sits just outside the button edge */
.button::before {
  content: "";
  position: absolute;
  inset: -3px;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--btn-angle),
    transparent 0deg,
    transparent 210deg,
    rgba(100, 116, 139, 0.22) 255deg,
    rgba(71,  85, 105, 0.72) 290deg,
    #475569                  305deg,
    rgba(71,  85, 105, 0.72) 320deg,
    rgba(100, 116, 139, 0.22) 345deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.button--secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: var(--shadow-soft);
}

.button--ghost {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(115, 118, 134, 0.14);
}

.page {
  padding: 4rem 0 5rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.page-hero--stack {
  grid-template-columns: 1fr;
}

.page-hero__copy,
.page-hero__visual,
.card,
.band,
.quote-panel,
.image-panel,
.split-panel,
.timeline,
.checklist,
.stage-panel,
.cta-strip {
  border-radius: var(--radius);
}

/* Glass + faded-edge effect — all white card surfaces */
.page-hero__copy,
.page-hero__visual,
.card,
.quote-panel,
.stage-panel,
.timeline,
.cta-strip,
.checklist,
.hero-caption,
.split-panel,
.band,
.contact-panel,
.contact-aside {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  -webkit-mask-image:
    linear-gradient(to right,  rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%);
  mask-composite: intersect;
}

.page-hero__copy {
  padding: 2.2rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
}

.page-title {
  margin: 0 0 1rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.page-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

p {
  font-family: "Inter", sans-serif;
}

.hero-actions--stacked {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.hero-link {
  align-self: center;
  font-size: 0.98rem;
}

.hero-link--light {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.hero-link--light:hover,
.hero-link--light:focus-visible {
  color: white;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
  text-decoration-color: rgba(255, 255, 255, 0.56);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.hero-pill {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(115, 118, 134, 0.14);
  font-size: 0.85rem;
  font-weight: 600;
}

.page-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: auto;
  max-height: 700px;
  align-self: start;
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.82)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 60%);
  border: 1px solid rgba(115, 118, 134, 0.12);
  box-shadow: var(--shadow);
}

.page-hero__visual--compact {
  min-height: auto;
  align-self: start;
}

.page-hero__visual--auto-height {
  max-height: none !important;
  overflow: visible !important;
}

.ordered-steps {
  counter-reset: ordered-step;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.ordered-steps li {
  counter-increment: ordered-step;
  position: relative;
  margin-bottom: 1rem;
  padding: 0.1rem 0 0.1rem 3.25rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.ordered-steps li::before {
  content: counter(ordered-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow:
    0 0 0 8px rgba(37, 99, 235, 0.08),
    0 10px 22px rgba(37, 99, 235, 0.16);
  font-size: 0.9rem;
  font-weight: 800;
}

.band__eyebrow {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero--startzero {
  margin-bottom: 1.4rem;
}

.scroll-cue {
  display: flex;
  justify-content: center;
  margin: -0.1rem 0 2.2rem;
}

.scroll-cue__link {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.08);
}

.page-hero__visual::before {
  content: "10010011 00110100";
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(37, 99, 235, 0.16);
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-nav="toolkit"] .page-hero__visual {
  display: grid;
  gap: 1rem;
  align-content: start;
}

body[data-nav="toolkit"] .page-hero__visual::before {
  content: none;
}

.page-hero__visual--image {
  padding: 0;
}

.page-hero__visual--image::before {
  display: none;
}

.page-hero__visual--wide {
  min-height: 560px;
}

.page-hero__visual--home-hero {
  min-height: 454px; /* ~20% smaller than 560px */
}

.hero-figure {
  position: relative;
  min-height: 100%;
  height: 100%;
}

.hero-figure__art {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-figure__art--image {
  min-height: 560px;
}

.hero-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.hero-caption__kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-caption__text {
  margin: 0;
  color: var(--text);
  font-family: "Newsreader", serif;
  font-size: 1.14rem;
  line-height: 1.45;
}

.story-panel {
  display: grid;
  gap: 1rem;
}

.story-panel--sequence {
  gap: 0.9rem;
}

.story-panel--toolkit {
  gap: 1.1rem;
}

.story-panel--repo-map {
  gap: 1.1rem;
  padding: 1.35rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-panel--repo-flow {
  gap: 1rem;
  padding: 1.4rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-panel__label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
}

.story-panel__title {
  margin: 0;
  font-family: "Anybody", sans-serif;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.story-panel--sequence .story-panel__title {
  font-size: 1.7rem;
  line-height: 1.05;
  max-width: 100%;
}

.story-panel--sequence .story-panel__body {
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.action-notes {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.95rem;
  max-width: 62ch;
}

.action-notes p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.action-notes strong {
  color: var(--text);
}

.story-panel--toolkit .story-panel__title {
  font-size: 1.48rem;
  line-height: 1.06;
  max-width: 16.5ch;
}

.story-panel--repo-map .story-panel__label {
  color: var(--primary-deep);
}

.story-panel--repo-flow .story-panel__label {
  color: var(--primary-deep);
}

.repo-flow {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.repo-flow::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.25), rgba(37, 99, 235, 0));
}

.repo-flow__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.repo-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.repo-flow__content {
  display: grid;
  gap: 0.22rem;
}

.repo-flow__title {
  margin: 0;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.05rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.repo-flow__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.repo-flow__note {
  margin: 0.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.story-panel--repo-map .story-panel__title {
  max-width: 16ch;
  font-size: clamp(1.75rem, 2.6vw, 2.2rem);
  line-height: 1.02;
}

.story-panel--repo-map .story-panel__body {
  max-width: 40ch;
}

.story-panel--repo-map .mini-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.story-panel--toolkit .story-grid {
  margin-top: 0;
}

.story-panel__body {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.story-panel--transparency {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-panel--transparency .story-panel__label,
body[data-nav="public-transparency"] .page-hero__visual .story-panel__label {
  color: var(--primary-deep);
}

.story-panel--transparency .story-panel__title,
body[data-nav="public-transparency"] .page-hero__visual .story-panel__title {
  max-width: 16ch;
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  line-height: 1.02;
}

.story-panel--transparency .story-panel__body {
  max-width: 40ch;
}

/* Strip inner-box styling when sequence is directly inside the transparency panel */
.story-panel--transparency .transparency-sequence > *,
.story-panel--transparency .transparency-sequence__item {
  background: none;
  border: none;
  box-shadow: none;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.transparency-sequence {
  counter-reset: transparency-step;
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.transparency-sequence > *,
.transparency-sequence__item,
.transparency-sequence__step {
  counter-increment: transparency-step;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem 0.95rem 0.92rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(37, 99, 235, 0.11);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.transparency-sequence > *::before,
.transparency-sequence__item::before,
.transparency-sequence__step::before {
  content: counter(transparency-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 2.15rem;
  margin-top: 0.04rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow:
    0 0 0 10px rgba(37, 99, 235, 0.08),
    0 10px 22px rgba(37, 99, 235, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.transparency-sequence--checklist {
  counter-reset: transparency-check;
}

.transparency-sequence--checklist > *,
.transparency-sequence--checklist .transparency-sequence__item,
.transparency-sequence--checklist .transparency-sequence__step {
  counter-increment: transparency-check;
}

.transparency-sequence--checklist > *::before,
.transparency-sequence--checklist .transparency-sequence__item::before,
.transparency-sequence--checklist .transparency-sequence__step::before {
  content: "✓";
  font-size: 0.9rem;
  letter-spacing: 0;
}

.transparency-sequence__label,
.transparency-sequence__eyebrow,
.transparency-sequence__meta {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transparency-sequence__title,
.transparency-sequence__heading {
  margin: 0;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.transparency-sequence__text,
.transparency-sequence p {
  margin: 0.22rem 0 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.transparency-sequence__note {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.transparency-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.transparency-audience__card,
.audience-card,
.transparency-audience .card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.82));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.transparency-audience__card::before,
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary), rgba(37, 99, 235, 0.18));
}

.transparency-audience__role,
.transparency-audience__title,
.audience-card__title,
.audience-card h3 {
  margin: 0;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.08rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.transparency-audience__eyebrow,
.audience-card__eyebrow {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transparency-audience__text,
.audience-card p,
.audience-card__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.transparency-audience__note,
.audience-card__note {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.audience-card--researcher::before {
  background: linear-gradient(90deg, var(--accent), rgba(148, 55, 0, 0.18));
}

.story-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

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

.mini-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.mini-card--link {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.mini-card--link:hover,
.mini-card--link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1);
}

.mini-card--link strong {
  color: var(--text);
}

.mini-card__action {
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.section {
  margin-bottom: 3.3rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2,
.section-heading h3 {
  margin: 0 0 0.7rem;
  font-family: "Anybody", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid--stacked {
  margin-top: 1.2rem;
}

.card {
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-family: "Anybody", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
}

.card-note {
  margin-top: 0.8rem !important;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--text);
}

.card--span-4 {
  grid-column: span 4;
}

.card--span-5 {
  grid-column: span 5;
}

.card--span-6 {
  grid-column: span 6;
}

.card--span-7 {
  grid-column: span 7;
}

.card--span-8 {
  grid-column: span 8;
}

.card--span-12 {
  grid-column: span 12;
}

.card--wide {
  padding: 0.9rem 1.5rem;
}

.card--accent {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.09), rgba(255, 255, 255, 0.94));
}

.card--blue {
  color: white;
  background: linear-gradient(135deg, rgba(0, 74, 198, 0.96), rgba(37, 99, 235, 0.92));
}

.card--blue p,
.card--blue li,
.card--blue .metric__label {
  color: rgba(255, 255, 255, 0.86);
}

.card--blue .ghost-link,
.card--blue a {
  color: white;
}

.list,
.checklist ul,
.step-list,
.timeline ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.list li,
.checklist li,
.step-list li,
.timeline li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.85rem;
  color: var(--text-soft);
  line-height: 1.68;
}

.list li::before,
.checklist li::before,
.step-list li::before,
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), rgba(37, 99, 235, 0.4));
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.metric {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.metric__value {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Anybody", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.05em;
  color: var(--primary-deep);
}

.metric__label {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flow-diagram {
  position: relative;
  display: grid;
  gap: 1.65rem;
  margin-top: 0.9rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-right: 1.4rem;
  max-height: 390px;
  overflow-y: auto;
  scrollbar-width: none;
}

.flow-diagram::-webkit-scrollbar {
  display: none;
}

.flow-diagram::after {
  content: "";
  position: absolute;
  right: 0.3rem;
  bottom: 0.22rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.08);
}

.flow-diagram__line {
  position: absolute;
  right: 0.3rem;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), rgba(37, 99, 235, 0.88) 68%, rgba(37, 99, 235, 0.38));
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08), 0 0 18px rgba(37, 99, 235, 0.14);
}

.flow-diagram__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.02rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.08);
}

.flow-diagram__line::after {
  content: "";
  position: absolute;
  inset: -14% 0 auto;
  height: 26%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(147, 197, 253, 0.98), rgba(255, 255, 255, 0));
  animation: flowPulse 2.8s ease-in-out infinite;
}

.flow-diagram__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-left: 1.95rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
}

.flow-diagram__badge--end {
  margin-top: -0.15rem;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem 1.05rem 1.05rem 0.95rem;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.flow-step__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 2.15rem;
  margin-left: 0.02rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.09), 0 10px 22px rgba(37, 99, 235, 0.2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-step__content {
  display: grid;
  gap: 0.22rem;
  padding-top: 0.02rem;
  min-height: 4.75rem;
}

.flow-step__title {
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.flow-step__text {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.58;
}

.split-panel,
.band,
.quote-panel,
.timeline,
.checklist,
.stage-panel,
.cta-strip {
  padding: 1.7rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
}

.split-panel--repo-preview {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: start;
}

.split-panel--startzero-sequence {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
}

.stage-panel {
  display: grid;
  gap: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.78));
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.stage-panel__heading {
  margin-bottom: 0;
  max-width: 58ch;
}

.stage-panel .card-grid {
  gap: 1rem;
}

.stage-panel .card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.band--compact {
  align-self: center;
  display: grid;
  gap: 0.75rem;
  width: fit-content;
  max-width: 320px;
  justify-self: center;
  padding: 1.05rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.86));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08);
}

.band--repo-preview {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.band--repo-preview h3,
.band--repo-preview p,
.band--repo-preview .list {
  margin-top: 0;
}

.band--worked-example {
  align-self: center;
  justify-self: center;
  width: min(100%, 360px);
  padding: 1.3rem 1.35rem;
  gap: 0.8rem;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08);
}

.band--worked-example .card-link {
  margin-top: 0.35rem;
}

.band--startzero {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.band--startzero-copy {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.1rem;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.split-panel--transparency {
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.88));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.band--transparency,
.transparency-bridge {
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.88));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.band--transparency {
  align-self: stretch;
}

.transparency-bridge {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.transparency-bridge__copy,
.transparency-bridge__panel,
.transparency-bridge__files,
.transparency-bridge__actions,
.transparency-bridge__notes,
.transparency-bridge__list {
  display: grid;
  gap: 0.8rem;
}

.transparency-bridge__copy,
.transparency-bridge__panel {
  padding: 0.2rem;
}

.transparency-bridge__files,
.transparency-bridge__actions,
.transparency-bridge__notes {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.transparency-bridge__files h3,
.transparency-bridge__actions h3,
.transparency-bridge__notes h3,
.transparency-bridge__copy h3 {
  margin: 0;
  font-family: "Anybody", sans-serif;
  letter-spacing: -0.03em;
}

.transparency-bridge__files p,
.transparency-bridge__actions p,
.transparency-bridge__notes p,
.transparency-bridge__copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.transparency-bridge__files .list,
.transparency-bridge__actions .list,
.transparency-bridge__notes .list {
  margin-top: 0.2rem;
}

.band--transparency .section-heading,
.transparency-bridge .section-heading,
.split-panel--transparency .section-heading {
  max-width: 58ch;
}

.band--transparency .story-grid,
.transparency-bridge .story-grid,
.split-panel--transparency .story-grid {
  margin-top: 0;
}

/* Contact module */
.contact-section {
  display: grid;
  gap: 1.25rem;
}

.contact-intro,
.contact-bridge {
  max-width: 66ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-intro {
  font-size: 1.02rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  padding: 1.55rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-form {
  gap: 1.05rem;
}

.contact-form,
.contact-form fieldset {
  min-width: 0;
}

.contact-form fieldset,
.contact-field-group {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.contact-form fieldset + fieldset,
.contact-field-group + .contact-field-group {
  margin-top: 0.05rem;
}

.contact-form legend,
.contact-field-group__title {
  padding: 0;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.contact-form legend {
  float: none;
}

.contact-form legend + *,
.contact-field-group__title + * {
  margin-top: 0.1rem;
}

.contact-form .contact-field,
.contact-field {
  display: grid;
  gap: 0.48rem;
}

.contact-field--full,
.contact-field-group--full {
  grid-column: 1 / -1;
}

.contact-field--two,
.contact-field-group--two,
.contact-form__grid--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-field--three,
.contact-field-group--three,
.contact-form__grid--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-form label,
.contact-label,
.contact-field__label,
.contact-form legend,
.contact-field__legend {
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.35;
}

.contact-form label small,
.contact-label small,
.contact-field__label small,
.contact-field__legend small,
.contact-helper,
.contact-field__hint,
.contact-field__help {
  display: block;
  margin-top: 0.18rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 0;
  padding: 0.86rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(100, 116, 139, 0.72);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  outline: none;
  border-color: rgba(37, 99, 235, 0.52);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) calc(50% - 2px),
    calc(100% - 0.95rem) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.contact-field:focus-within,
.contact-field-group:focus-within,
.contact-form fieldset:focus-within {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-submit {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.contact-submit__actions,
.contact-submit__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.contact-submit__actions .button,
.contact-submit__row .button {
  width: auto;
}

.contact-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(239, 246, 255, 0.92);
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.contact-status.is-success,
.contact-status[data-tone="success"] {
  border-color: rgba(37, 99, 235, 0.16);
  background: rgba(229, 246, 255, 0.92);
  color: var(--text);
}

.contact-status.is-info,
.contact-status[data-tone="info"] {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.84);
}

.contact-status.is-error,
.contact-status[data-tone="error"] {
  border-color: rgba(220, 38, 38, 0.22);
  background: rgba(254, 242, 242, 0.92);
  color: #991b1b;
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.88));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 18px 38px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-aside__eyebrow {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-aside__title {
  margin: 0;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.5rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.contact-aside__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.contact-aside__list {
  display: grid;
  gap: 0.75rem;
}

.contact-aside__item,
.contact-aside .mini-card,
.contact-aside .audience-card {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.contact-aside__item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.contact-aside__item p,
.contact-aside .mini-card,
.contact-aside .audience-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.contact-aside__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.band__subnote {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.startzero-figure {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
}

.startzero-figure__art {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9));
}

.band--compact h3 {
  margin: 0;
}

.band--compact p {
  margin: 0;
  max-width: 30ch;
}

.quote-panel {
  border-left: 4px solid var(--primary);
  display: inline-grid;
  align-content: center;
}

.quote-panel--compact {
  position: relative;
  align-self: center;
  width: fit-content;
  max-width: 312px;
  justify-self: end;
  padding: 1.15rem 1.2rem 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-top: 4px solid var(--primary);
  border-left: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.quote-panel--compact::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0));
}

.quote-panel p {
  margin: 0;
}

.quote-panel__quote {
  color: var(--text);
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.6;
}

.quote-panel--compact .quote-panel__quote {
  position: relative;
  z-index: 1;
  padding-top: 0.55rem;
  font-size: 1.12rem;
  line-height: 1.52;
  max-width: 22ch;
  font-style: normal;
}

.quote-panel__stamp {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-panel__meta {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Two-column layout for how-it-works "What to open next" */
.how-it-works-next {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: center;
}

.how-it-works-next .card {
  align-self: stretch;
}

/* Image panel — replaces quote-panel in split-panel asides */
.image-panel {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.image-panel--standalone {
  max-width: 100%;
  justify-self: stretch;
  align-self: stretch;
}

.image-panel__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(0.78);
}

@keyframes flowPulse {
  0% {
    transform: translateY(-15%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

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

.ghost-link,
.inline-link {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.24);
  text-underline-offset: 0.24rem;
  transition: text-shadow 180ms ease, text-decoration-color 180ms ease;
}

.ghost-link:hover,
.ghost-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  text-shadow: 0 0 12px rgba(37, 99, 235, 0.22);
  text-decoration-color: rgba(37, 99, 235, 0.5);
}

.timeline {
  position: relative;
}

.timeline--stages {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.84));
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.stage-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.stage-card--wide {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.88));
}

.stage-card__list {
  margin-top: 1rem;
}

.timeline__phase {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.timeline strong,
.checklist strong,
.step-list strong,
.card strong {
  color: var(--text);
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1.5rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 74, 198, 0.92), rgba(37, 99, 235, 0.88)),
    var(--surface);
  color: white;
}

.cta-strip p,
.cta-strip li {
  color: rgba(255, 255, 255, 0.88);
}

.cta-strip__support {
  margin-top: 0.95rem !important;
  max-width: 46ch;
}

.cta-strip__support .inline-link,
.cta-strip__support .inline-link:hover,
.cta-strip__support .inline-link:focus-visible {
  color: white;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.cta-strip .hero-link--light,
.cta-strip .hero-link--light:hover,
.cta-strip .hero-link--light:focus-visible {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  text-decoration-color: rgba(255, 255, 255, 0.52);
}

.cta-strip h2,
.cta-strip h3 {
  margin: 0 0 0.75rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.cta-strip--transparency {
  background:
    linear-gradient(135deg, rgba(0, 74, 198, 0.96), rgba(37, 99, 235, 0.9)),
    var(--surface);
}

.cta-strip--transparency .button--secondary {
  background: rgba(255, 255, 255, 0.95);
}

.cta-strip--repo {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.cta-strip__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cta-option {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-option p {
  margin: 0;
}

.story-panel--city-needs-stats {
  gap: 1rem;
  padding: 1.35rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-panel--city-needs-stats .story-panel__label {
  color: var(--primary-deep);
}

.city-needs-stats {
  display: grid;
  gap: 1rem;
}

.city-needs-stats__item {
  display: grid;
  gap: 0.28rem;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.city-needs-stats__label {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.city-needs-stats__value {
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.city-needs-stats__note,
.city-needs-stats__footer {
  color: var(--text-soft);
  line-height: 1.55;
}

.city-needs-stats__footer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.band--city-needs-argument {
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.band--city-needs-argument .section-heading {
  margin-bottom: 0;
}

.band--city-needs-argument .section-heading h2 {
  color: var(--text);
}

.city-needs-argument__body {
  display: grid;
  gap: 1.2rem;
}

.city-needs-argument__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.stage-panel--city-needs-team .stage-panel__heading,
.stage-panel--city-needs-hours .stage-panel__heading,
.stage-panel--city-needs-gaps .stage-panel__heading,
.review-lanes .stage-panel__heading,
.stage-panel--vendor-eval .stage-panel__heading {
  max-width: none;
}

.stage-panel--city-needs-team .card p,
.stage-panel--city-needs-hours .card p {
  max-width: none;
}

.city-needs-hours__phase {
  margin: 0 0 0.7rem !important;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-panel--city-needs-output {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: start;
}

.band--city-needs-sidebar {
  align-self: center;
  justify-self: center;
  width: min(100%, 360px);
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.band--city-needs-sidebar h3,
.band--city-needs-sidebar p {
  margin: 0;
}

.band--city-needs-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 1.5rem 2.5rem;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.band--city-needs-line .section-heading {
  margin-bottom: 0;
}

.band--city-needs-line .section-heading h2,
.band--city-needs-line p {
  color: var(--text);
}

.band--city-needs-line p {
  margin: 0;
  max-width: none;
  color: var(--text-soft);
  line-height: 1.8;
}

.city-needs-line__statement {
  grid-column: 1 / -1;
  max-width: none !important;
  color: var(--text) !important;
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05 !important;
  letter-spacing: -0.04em;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.cta-strip--city-needs .button--secondary {
  background: rgba(255, 255, 255, 0.95);
}

.story-panel--oakridge-profile {
  gap: 1rem;
  padding: 1.35rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-panel--oakridge-profile .story-panel__label {
  color: var(--primary-deep);
}

.oakridge-profile__stats {
  display: grid;
  gap: 0.85rem;
}

.oakridge-profile__stat {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.oakridge-profile__label {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oakridge-profile__value {
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.oakridge-profile__note {
  color: var(--text-soft);
  line-height: 1.55;
}

.oakridge-profile__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0));
}

.oakridge-profile__footer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.band--oakridge-problem {
  display: grid;
  gap: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.band--oakridge-problem .section-heading {
  margin-bottom: 0;
}

.band--oakridge-problem .section-heading h2 {
  color: var(--text);
}

.oakridge-problem__body {
  display: grid;
  gap: 1rem;
  max-width: 72ch;
}

.oakridge-problem__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.split-panel--oakridge-discovery {
  align-items: center;
}

.oakridge-discovery__body {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.quote-panel--oakridge {
  width: min(100%, 360px);
  max-width: 360px;
}

.oakridge-timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding-left: 0.15rem;
}

.oakridge-timeline::before {
  content: "";
  position: absolute;
  left: 6.1rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.06));
}

.oakridge-entry {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1.45rem;
}

.oakridge-entry__rail {
  position: relative;
  padding-top: 1rem;
}

.oakridge-entry__rail::after {
  content: "";
  position: absolute;
  right: -0.92rem;
  top: 1.28rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.1);
}

.oakridge-entry__time {
  display: inline-flex;
  align-items: center;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oakridge-entry__content {
  padding: 1.45rem 1.55rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.86));
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.oakridge-entry__content h3 {
  margin: 0 0 0.8rem;
  font-family: "Anybody", sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.oakridge-entry__content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.oakridge-entry code,
.oakridge-files code {
  padding: 0.14rem 0.34rem;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-deep);
  font-size: 0.94em;
  font-weight: 600;
}

.oakridge-files {
  display: grid;
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.oakridge-files__label {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oakridge-files__list {
  margin-top: 0.5rem !important;
}

.oakridge-files__list li {
  margin-bottom: 0.7rem;
}

.stage-panel--oakridge-workflow .card p {
  max-width: 34ch;
}

.band--oakridge-landing {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.88));
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.band--oakridge-landing .section-heading {
  margin-bottom: 0;
}

.oakridge-landing__body {
  display: grid;
  gap: 1rem;
}

.oakridge-landing__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-strip--oakridge .button--secondary {
  background: rgba(255, 255, 255, 0.95);
}

.footer {
  padding: 0.5rem 0 3rem;
}

.footer__panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(115, 118, 134, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  -webkit-mask-image:
    linear-gradient(to right,  rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.20) 0px, rgba(0,0,0,.50) 7px, black 18px, black calc(100% - 18px), rgba(0,0,0,.50) calc(100% - 7px), rgba(0,0,0,.20) 100%);
  mask-composite: intersect;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(115, 118, 134, 0.14);
}

.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer__brand-name {
  font-family: "Anybody", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer__brand-tag {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__agent-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.footer__agent-link:hover,
.footer__agent-link:focus-visible {
  color: var(--primary-deep);
  background: rgba(37, 99, 235, 0.14);
}

.footer__nav-block {
  display: grid;
  gap: 0.9rem;
}

.footer__legal-note {
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(115, 118, 134, 0.14);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 72ch;
}

.footer__nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.4rem;
}

.footer__nav-row--sub {
  gap: 0.15rem 1.1rem;
}

.footer__sub-label {
  position: relative;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-right: 0.6rem;
  margin-right: 0.2rem;
}

.footer__sub-label::after {
  content: "→";
  position: absolute;
  right: -0.1rem;
  font-size: 0.85em;
  letter-spacing: 0;
}

.nav-link.footer__sub-link {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.support-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.card-note--muted {
  color: var(--text-muted) !important;
  font-style: italic;
}

.story-panel--review-audience {
  gap: 1rem;
  padding: 1.35rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-panel--review-audience .story-panel__label {
  color: var(--primary-deep);
}

.review-audience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.review-audience-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.review-audience-item__dot {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.review-audience-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-family: "Anybody", sans-serif;
  font-size: 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.review-audience-item span {
  color: var(--text-soft);
  line-height: 1.55;
}

.review-audience-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.story-panel--program-includes {
  gap: 1rem;
}

.page-hero--program-includes {
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.78fr);
  align-items: start;
  margin-bottom: 1.6rem;
}

.page-hero--program-includes .page-title {
  font-size: clamp(2.55rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.page-hero--program-includes .page-hero__visual {
  max-width: 420px;
  justify-self: end;
}

.page-hero--program-includes .story-panel__title {
  font-size: 1.55rem;
  line-height: 1.08;
}

.page-hero--program-includes .mini-card {
  min-height: 0;
}

.split-panel--program-includes-bridge {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.split-panel--program-includes-cta {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  align-items: start;
  padding: 1.2rem;
}

.band--program-includes-bridge,
.band--program-includes-repo {
  align-self: start;
  justify-self: center;
  width: min(100%, 360px);
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem;
}

.band--program-includes-bridge {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08);
}

.band--program-includes-repo {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.band--program-includes-repo h3,
.band--program-includes-repo p {
  margin: 0;
}

.cta-strip--program-includes {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.section--program-includes-intro {
  margin-top: -0.65rem;
}

.review-lanes {
  gap: 1.2rem;
}

.review-lanes__list {
  display: grid;
  gap: 1rem;
}

.review-lane {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-lane h3 {
  margin: 0;
  font-family: "Anybody", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.review-lane p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.split-panel--review-process {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.split-panel--review-bridge {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
}

.band--review-control {
  align-self: center;
  justify-self: center;
  width: min(100%, 360px);
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.band--review-control h3,
.band--review-control p {
  margin: 0;
}

.band--review-bridge-actions {
  align-self: center;
  justify-self: center;
  width: min(100%, 360px);
  display: grid;
  gap: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.08);
}

.cta-strip--review {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.section--review-tiers {
  position: relative;
  z-index: 1;
}

.split-panel--privacy-data {
  align-items: start;
}

.cta-strip--privacy {
  display: grid;
  gap: 1.4rem;
}

.cta-strip--privacy .cta-strip__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .page-hero,
  .split-panel,
  .how-it-works-next,
  .contact-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

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

  .transparency-audience,
  .transparency-bridge,
  .split-panel--transparency,
  .cta-strip__options {
    grid-template-columns: 1fr;
  }

  .section--review-tiers {
    margin-top: 0;
  }

  .oakridge-timeline {
    padding-left: 0;
  }

  .oakridge-timeline::before,
  .oakridge-entry__rail::after {
    display: none;
  }

  .oakridge-entry {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .oakridge-entry__rail {
    padding-top: 0;
  }

  .quote-panel--oakridge {
    justify-self: start;
    max-width: 100%;
  }

  .band--city-needs-sidebar {
    width: 100%;
  }

  .band--city-needs-line {
    grid-template-columns: 1fr;
  }

  .contact-field--two,
  .contact-field-group--two,
  .contact-form__grid--two,
  .contact-field--three,
  .contact-field-group--three,
  .contact-form__grid--three {
    grid-template-columns: 1fr;
  }

  .card--span-4,
  .card--span-5,
  .card--span-6,
  .card--span-7,
  .card--span-8,
  .card--span-12 {
    grid-column: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__actions .button {
    display: none;
  }
}

@media (min-width: 961px) {
  .section--review-tiers {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 2.6rem;
  }

  .page-hero__copy,
  .page-hero__visual,
  .card,
  .split-panel,
  .contact-panel,
  .contact-aside,
  .band,
  .quote-panel,
  .timeline,
  .checklist,
  .cta-strip,
  .footer__panel {
    padding: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-link {
    align-self: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-figure__art {
    min-height: 320px;
  }

  .hero-figure__art--image,
  .page-hero__visual--wide {
    min-height: 340px;
  }

  .page-hero--program-includes .page-title {
    font-size: clamp(1.95rem, 8.8vw, 2.55rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
  }

  .page-hero--program-includes .page-hero__visual {
    max-width: none;
  }

  .section--program-includes-intro {
    margin-top: 0;
  }

  .page-hero--program-includes .page-lead,
  .page-hero--program-includes .contact-bridge {
    max-width: 100%;
  }

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

  .footer__nav-row {
    gap: 0.15rem 1rem;
  }

  .footer__brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .contact-submit__actions,
  .contact-submit__row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit__actions .button,
  .contact-submit__row .button {
    width: 100%;
  }

  .contact-aside__title {
    font-size: 1.32rem;
  }

  .transparency-sequence > *,
  .transparency-sequence__item,
  .transparency-sequence__step,
  .transparency-audience__card,
  .audience-card,
  .transparency-bridge__files,
  .transparency-bridge__actions,
  .transparency-bridge__notes {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-overlay {
    display: none;
  }

  body.has-splash {
    overflow: auto;
  }

  .button {
    animation: none;
  }

  .button::before {
    display: none;
  }
}

.page-last-updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 1.5rem 0 0;
}

.city-manager-stake {
  margin: 0 0 1.1rem;
  color: var(--primary-deep);
  font-size: 1.14rem;
  line-height: 1.75;
  animation: stake-appear 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

@keyframes stake-appear {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

.stake-lead {
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .city-manager-stake {
    animation: none;
  }
}
