:root {
  --ink: #111111;
  --black: #050505;
  --paper: #f4efe4;
  --paper-2: #ece4d5;
  --paper-3: #ddd0ba;
  --muted: #62605a;
  --line: #d7cbb6;
  --line-strong: #171717;
  --accent: #15966f;
  --accent-soft: #30c295;
  --blue: #1f5eff;

  --color-bg: var(--paper);
  --color-fg: var(--ink);
  --color-muted: var(--muted);
  --color-accent: var(--accent);
  --color-accent-2: var(--accent);
  --color-border: var(--line);
  --color-soft: var(--paper-2);

  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: var(--font-body);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  --max-page: 1320px;
  --max-copy: 760px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(244, 239, 228, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.06) 1px, transparent 1px),
    var(--black);
  background-size: 72px 72px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

.skip-link {
  position: absolute;
  top: -10rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.7rem 0.9rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

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

.container {
  width: min(100% - 2rem, var(--max-page));
  margin-inline: auto;
}

.narrow {
  max-width: var(--max-copy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background: rgba(244, 239, 228, 0.94);
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  color: transparent;
  background: var(--blue);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.brand-mark::before {
  width: 0.45rem;
  height: 0.45rem;
  left: -0.18rem;
  top: -0.18rem;
}

.brand-mark::after {
  width: 0.25rem;
  height: 0.25rem;
  right: -0.12rem;
  bottom: -0.12rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  text-decoration: none;
}

.site-nav .nav-login-link {
  display: none;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1.05rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--paper);
  background: var(--ink);
}

.btn-sun {
  color: var(--paper);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-sun:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.btn-light:hover {
  color: var(--paper);
  background: transparent;
}

.text-link,
.text-cta {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link::after,
.text-cta::after {
  content: " ->";
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
}

main {
  padding: 0.65rem;
}

main > section {
  width: min(100%, 1440px);
  margin: 0 auto 0.65rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.section-pad {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

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

.section-soft,
.soft-band {
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper-2);
  background-size: 72px 72px;
}

.section-dark,
.final-cta,
.tiers-section {
  color: var(--paper);
  background:
    linear-gradient(rgba(244, 239, 228, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.07) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

main :target {
  scroll-margin-top: 6rem;
}

.site-hero,
.page-hero {
  position: relative;
  min-height: min(790px, calc(100vh - 5.5rem));
  color: var(--ink);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.page-hero {
  min-height: 570px;
}

.site-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 calc(50% + clamp(1rem, 2vw, 2.5rem));
  border-left: 1px solid var(--line-strong);
  pointer-events: none;
}

.site-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(2rem, 9vw, 9rem);
  top: 50%;
  width: clamp(14rem, 30vw, 28rem);
  aspect-ratio: 1;
  background:
    linear-gradient(0deg, transparent 0 14%, rgba(244, 239, 228, 0.16) 14% 20%, transparent 20% 34%, rgba(244, 239, 228, 0.16) 34% 40%, transparent 40% 54%, rgba(244, 239, 228, 0.16) 54% 60%, transparent 60%),
    var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.bottleneck-hero {
  min-height: min(760px, calc(100vh - 5.5rem));
}

.bottleneck-hero::before {
  display: none;
}

.bottleneck-hero::after {
  right: max(2rem, calc(50% - 40rem));
  top: auto;
  bottom: -9rem;
  opacity: 0.16;
  transform: none;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.two-column {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(20rem, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.site-hero .hero-grid,
.page-hero .page-hero-grid {
  min-height: inherit;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.bottleneck-hero .hero-focus {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(4.25rem, 7vw, 6rem);
}

.hero-copy,
.page-copy,
.section-heading {
  max-width: var(--max-copy);
}

.site-hero .hero-copy {
  max-width: 38rem;
}

.site-hero .hero-focus-copy {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.hero-focus-copy .eyebrow {
  margin-inline: auto;
}

.hero-focus-copy h1 {
  max-width: 11ch;
  margin-inline: auto;
}

.hero-focus-copy .hero-subtitle {
  max-width: 46rem;
  margin-inline: auto;
}

.page-hero .page-copy {
  max-width: 39rem;
}

.eyebrow,
.kicker,
.section-tag,
.lane-tag,
.offer-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 2.1rem;
  height: 1px;
  margin-right: 0.72rem;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-top: 1.35rem;
  font-size: 6.2rem;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 13.5ch;
  font-size: 4.8rem;
}

h2 {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

h4 {
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1.12;
}

em {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 420;
  text-transform: none;
}

.hero-subtitle,
.page-subtitle,
.section-intro {
  max-width: 720px;
  margin-top: 1.35rem;
  color: var(--color-muted);
  font-size: 1.16rem;
  line-height: 1.55;
}

.hero-body,
.page-body,
.section-heading p,
.centered-cta p {
  color: var(--color-muted);
}

.hero-body,
.page-body {
  max-width: var(--max-copy);
  margin-top: 1rem;
}

.bottleneck-form {
  max-width: 54rem;
  margin: 2rem auto 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: var(--paper);
  background:
    linear-gradient(rgba(244, 239, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
  border: 1px solid var(--line-strong);
  box-shadow: 12px 12px 0 rgba(5, 5, 5, 0.22);
}

.bottleneck-label {
  display: block;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bottleneck-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.85rem;
  margin-top: 0.72rem;
}

.bottleneck-input-row input {
  width: 100%;
  min-width: 0;
  min-height: 3.35rem;
  padding: 0.62rem 0 0.58rem;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.48);
  border-radius: 0;
  caret-color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.bottleneck-input-row input::placeholder {
  color: rgba(244, 239, 228, 0.42);
}

.bottleneck-input-row input:focus {
  outline: 0;
  border-bottom-color: var(--accent-soft);
}

.bottleneck-submit {
  min-height: 3.35rem;
  white-space: nowrap;
}

.bottleneck-status {
  min-height: 1.35rem;
  margin-top: 0.6rem;
  color: rgba(244, 239, 228, 0.62);
  font-size: 0.86rem;
}

.lead-modal {
  width: min(100% - 2rem, 46rem);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.lead-modal::backdrop {
  background:
    linear-gradient(rgba(5, 5, 5, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.16) 1px, transparent 1px),
    rgba(5, 5, 5, 0.74);
  background-size: 40px 40px;
}

.lead-modal-shell {
  position: relative;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: 14px 14px 0 rgba(5, 5, 5, 0.26);
}

.lead-modal-close {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-heading {
  padding-right: 2.8rem;
}

.lead-modal-heading h2 {
  max-width: 9ch;
  margin-top: 0.75rem;
  font-size: 3.1rem;
}

.lead-bottleneck {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.lead-form {
  margin-top: 1.1rem;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.lead-form label {
  display: grid;
  gap: 0.52rem;
  padding: 0.9rem;
  background: var(--paper-2);
}

.lead-form label span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 2.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.68rem 0.75rem;
}

.lead-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.lead-form-status {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.hero-path-row {
  display: grid;
  grid-template-columns: auto repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 62rem;
  margin: 1.4rem auto 0;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  text-align: left;
}

.hero-path-row > span,
.hero-path-row a {
  min-height: 4.25rem;
  padding: 0.8rem 0.95rem;
  background: rgba(244, 239, 228, 0.78);
}

.hero-path-row > span {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-path-row a {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0.28rem;
  padding-right: 2.1rem;
  color: var(--ink);
  text-decoration: none;
}

.hero-path-row a::after {
  content: "->";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  transform: translateY(-50%);
}

.hero-path-row a:hover,
.hero-path-row a:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.hero-path-row a:hover::after,
.hero-path-row a:focus-visible::after {
  color: var(--paper);
}

.hero-path-row a span {
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-path-row a strong {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.hero-path-row a:hover strong,
.hero-path-row a:focus-visible strong {
  color: rgba(244, 239, 228, 0.72);
}

.hero-sector-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 38rem;
  margin-top: 1.05rem;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.hero-sector-links span,
.hero-sector-links a {
  min-height: 2.2rem;
  padding: 0.52rem 0.64rem;
  background: rgba(244, 239, 228, 0.72);
}

.hero-sector-links span {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-sector-links a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 1.55rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.hero-sector-links a::after {
  content: "->";
  position: absolute;
  right: 0.55rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.hero-sector-links a:hover,
.hero-sector-links a:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.hero-actions,
.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.trust-line {
  margin-top: 1.35rem;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(2.4rem, 4vw, 3.8rem);
}

.section-heading h2,
.centered-cta h2 {
  margin-top: 0.85rem;
}

.section-heading p,
.centered-cta p {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(18rem, 0.52fr);
  align-items: end;
  gap: 2rem;
  max-width: none;
}

.centered-cta {
  position: relative;
  max-width: 66rem;
  margin-inline: auto;
  text-align: center;
}

.centered-cta .section-tag {
  margin-inline: auto;
}

.centered-cta .cta-button-row {
  justify-content: center;
}

.final-cta {
  position: relative;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow,
.final-cta .kicker,
.final-cta .section-tag {
  color: var(--paper);
}

.final-cta p {
  color: rgba(244, 239, 228, 0.68);
}

.audit-form {
  display: grid;
  gap: 1.15rem;
  max-width: 58rem;
  margin: 2.2rem auto 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(244, 239, 228, 0.72);
  text-align: left;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.audit-form label {
  display: grid;
  gap: 0.52rem;
  padding: 0.9rem;
  background: var(--paper-2);
}

.audit-form label span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  min-height: 2.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.68rem 0.75rem;
}

.audit-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.audit-form .btn-secondary {
  border-color: var(--ink);
}

.form-status {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.final-cta .audit-form p {
  color: var(--color-muted);
}

.ops-console,
.route-panel,
.dashboard-panel,
.report-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--paper);
  background: rgba(244, 239, 228, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.ops-console,
.dashboard-panel,
.report-panel {
  background:
    linear-gradient(rgba(244, 239, 228, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.075) 1px, transparent 1px),
    linear-gradient(135deg, #081b2e 0%, #0b3f35 58%, #062317 100%);
  background-size: 42px 42px, 42px 42px, auto;
  border-color: rgba(244, 239, 228, 0.34);
}

.ops-console {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.ops-console::before,
.dashboard-panel::before,
.report-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244, 239, 228, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
}

.ops-console::after,
.dashboard-panel::after,
.report-panel::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 23rem;
  aspect-ratio: 1;
  background:
    linear-gradient(0deg, transparent 0 17%, rgba(244, 239, 228, 0.16) 17% 23%, transparent 23% 39%, rgba(244, 239, 228, 0.16) 39% 45%, transparent 45% 61%, rgba(244, 239, 228, 0.16) 61% 67%, transparent 67%),
    var(--accent);
  border-radius: 50%;
}

.console-label,
.panel-label {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-title {
  position: relative;
  z-index: 1;
  max-width: 17rem;
  margin-top: 1rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.console-roles,
.metric-stack,
.source-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin-top: 3rem;
  list-style: none;
}

.console-roles li,
.source-stack li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 0;
  color: var(--paper);
  border-top: 1px solid rgba(244, 239, 228, 0.34);
  font-weight: 850;
}

.console-roles li:last-child,
.source-stack li:last-child {
  border-bottom: 1px solid rgba(244, 239, 228, 0.34);
}

.role-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.16rem 0.34rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(244, 239, 228, 0.72);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-note {
  position: absolute;
  right: 1.35rem;
  top: 1.35rem;
  z-index: 2;
  width: min(15rem, 42%);
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(244, 239, 228, 0.55);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
}

.console-note span {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-note strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.02rem;
  line-height: 1.15;
}

.sector-console {
  display: flex;
  flex-direction: column;
  align-self: start;
  margin-top: 4.4rem;
}

.sector-console .console-title {
  max-width: 20rem;
  font-size: 1.9rem;
}

.sector-routes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin-top: 1.35rem;
  background: rgba(244, 239, 228, 0.35);
  border: 1px solid rgba(244, 239, 228, 0.45);
}

.sector-routes a {
  position: relative;
  display: grid;
  gap: 0.34rem;
  padding: 0.66rem 3rem 0.66rem 0.85rem;
  color: rgba(244, 239, 228, 0.72);
  background: rgba(5, 5, 5, 0.16);
  text-decoration: none;
}

.sector-routes a::after {
  content: "->";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transform: translateY(-50%);
}

.sector-routes a:hover,
.sector-routes a:focus-visible {
  color: var(--paper);
  background: rgba(244, 239, 228, 0.12);
}

.sector-routes span {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.sector-routes strong {
  max-width: 26rem;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.3;
}

.sector-note {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  margin-top: auto;
  padding-top: 0.75rem;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.86rem;
}

.grid,
.route-card-grid,
.proof-grid,
.pricing-grid,
.offer-ladder,
.service-grid,
.feature-grid,
.path-grid,
.functions-grid,
.tiers-grid,
.month-grid,
.builds-grid {
  display: grid;
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.grid-2,
.route-card-grid,
.path-grid,
.builds-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4,
.offer-ladder,
.functions-grid,
.service-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.route-card,
.service-card,
.feature-card,
.path-card,
.proof-card,
.pricing-card,
.offer-card,
.process-step,
.platform-card,
.contact-panel,
.callout,
.gap-card,
.function-card,
.tier-card,
.week-card,
.build-card {
  background: var(--paper);
  border: 0;
  border-radius: 0;
}

.card,
.route-card,
.service-card,
.feature-card,
.path-card,
.proof-card,
.pricing-card,
.offer-card,
.process-step,
.platform-card,
.contact-panel,
.callout,
.gap-card,
.function-card,
.tier-card,
.week-card,
.build-card {
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
}

.route-card,
.service-card,
.feature-card,
.path-card,
.platform-card,
.function-card,
.tier-card,
.build-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 16rem;
}

.path-card::before,
.function-card::before,
.week-card::before,
.build-card::before,
.service-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--blue);
}

.path-card:nth-child(2n)::before,
.function-card:nth-child(2n)::before,
.service-card:nth-child(2n)::before {
  background: var(--accent);
}

.route-card h3,
.service-card h3,
.feature-card h3,
.path-card h3,
.proof-card h3,
.pricing-card h3,
.offer-card h3,
.process-step h3,
.platform-card h3,
.contact-panel h3,
.function-card h3,
.tier-card h3,
.week-card h3,
.build-card h3 {
  margin-top: 0.95rem;
}

.route-card p,
.service-card p,
.feature-card p,
.path-card p,
.proof-card p,
.pricing-card p,
.offer-card p,
.process-step p,
.platform-card p,
.contact-panel p,
.function-card p,
.tier-card p,
.week-card p,
.build-card p,
.callout p,
.gap-card p {
  margin-top: 0.72rem;
  color: var(--color-muted);
}

.lane-tag,
.offer-label {
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.62rem;
}

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

.gap-card {
  background: var(--paper);
}

.gap-card-bad {
  box-shadow: inset 4px 0 0 var(--blue);
}

.gap-card-good {
  box-shadow: inset 4px 0 0 var(--accent);
}

.gap-card ul,
.check-list,
.simple-list,
.tier-includes,
.function-list,
.build-card-includes {
  display: grid;
  gap: 0.62rem;
  margin-top: 1.15rem;
  list-style: none;
}

.gap-card li,
.check-list li,
.simple-list li,
.tier-includes li,
.function-list li,
.build-card-includes li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-muted);
}

.gap-card li::before,
.check-list li::before,
.simple-list li::before,
.tier-includes li::before,
.function-list li::before,
.build-card-includes li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--accent);
}

.function-num,
.week-label,
.build-card-num,
.tier-name,
.price-note {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.function-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-top: 1.1rem;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-mono);
  font-weight: 850;
}

.tiers-section {
  position: relative;
}

.tiers-section .section-heading h2,
.tiers-section .section-heading p,
.tiers-section .section-tag {
  color: var(--paper);
}

.tiers-section .section-heading p {
  color: rgba(244, 239, 228, 0.68);
}

.tiers-section .tiers-grid {
  background: rgba(244, 239, 228, 0.18);
  border-color: rgba(244, 239, 228, 0.18);
}

.tier-card {
  color: var(--paper);
  background: var(--ink);
}

.tier-card h3,
.tier-card p {
  color: var(--paper);
}

.tier-card p,
.tier-includes li {
  color: rgba(244, 239, 228, 0.72);
}

.tier-card.featured,
.pricing-card.featured,
.offer-card.featured,
.featured-offer {
  box-shadow: inset 0 0 0 4px var(--accent);
}

.tier-price,
.price {
  margin-top: 0.85rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.35;
}

.tier-card .tier-price {
  color: var(--paper);
}

.tier-card .btn,
.pricing-card .btn,
.offer-card .btn,
.build-card .btn {
  width: fit-content;
  margin-top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.process-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step span,
.step-number {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.timeline-item,
.function-block {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.timeline-item p,
.function-block p {
  color: var(--color-muted);
}

.number-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  list-style: none;
  counter-reset: number-list;
}

.number-list li {
  position: relative;
  padding-left: 2.2rem;
  color: var(--color-muted);
}

.number-list li::before {
  counter-increment: number-list;
  content: counter(number-list);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.pill-row,
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  padding: 0.5rem 0.85rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  font-size: 0.84rem;
  font-weight: 760;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.proof-item {
  padding: 1.45rem;
  background: var(--paper);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.proof-item span {
  display: block;
  margin-top: 0.62rem;
  color: var(--color-muted);
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
}

.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--paper);
}

.compare th,
.compare td {
  padding: 1rem;
  border-bottom: 1px solid var(--line-strong);
  text-align: left;
}

.compare th {
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare td {
  color: var(--color-muted);
}

.compare .tier-head,
.compare .cell-tier {
  text-align: center;
}

.compare .featured-col {
  background: rgba(239, 61, 19, 0.09);
}

.faq-list {
  display: grid;
  gap: 1px;
  max-width: 62rem;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.faq-list details {
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: var(--ink);
  font-weight: 850;
}

.faq-list details p {
  padding: 0 1.2rem 1.2rem;
  color: var(--color-muted);
}

.site-footer {
  padding: 4rem 0 2rem;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand {
  color: var(--paper);
}

.site-footer p {
  max-width: 32rem;
  margin-top: 1rem;
  color: rgba(244, 239, 228, 0.64);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: rgba(244, 239, 228, 0.68);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: rgba(244, 239, 228, 0.44);
  border-top: 1px solid rgba(244, 239, 228, 0.16);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-lanes,
.route-panel-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  padding: 1.25rem;
  background: var(--line-strong);
  list-style: none;
}

.visual-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  font-weight: 850;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  background: var(--accent);
}

.route-lane,
.route-panel-list li,
.metric-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.92rem;
  color: var(--color-muted);
  background: var(--paper);
  text-decoration: none;
}

.route-lane strong,
.route-panel-list strong,
.metric-card strong {
  color: var(--ink);
}

.metric-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: var(--line-strong);
}

.dashboard-panel,
.dossier-panel,
.report-panel {
  min-height: 440px;
  padding: 1.45rem;
}

.dossier-panel {
  position: relative;
  min-height: 440px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
}

.dossier-panel::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 20rem;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.9;
}

.dossier-panel > * {
  position: relative;
  z-index: 1;
}

.dossier-panel .panel-label {
  color: var(--accent);
}

.tracker-table {
  position: relative;
  display: grid;
  margin-top: 1.35rem;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
}

.tracker-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.72fr 0.9fr;
  gap: 0.8rem;
  padding: 0.82rem;
  border-bottom: 1px solid var(--line-strong);
}

.tracker-row:first-child {
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-panel {
  color: var(--ink);
}

.map-block {
  position: relative;
  min-height: 190px;
  margin-top: 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper-2);
  background-size: 36px 36px;
  border: 1px solid var(--line-strong);
}

.map-block::before,
.map-block::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border: 1px solid var(--line-strong);
}

.map-block::before {
  left: 18%;
  top: 18%;
  width: 45%;
  height: 52%;
  clip-path: polygon(8% 14%, 62% 0, 100% 26%, 86% 84%, 30% 100%, 0 61%);
}

.map-block::after {
  right: 13%;
  top: 31%;
  width: 35%;
  height: 40%;
  background: var(--blue);
  clip-path: polygon(15% 0, 100% 20%, 84% 100%, 0 76%);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .site-hero::before,
  .page-hero::before {
    display: none;
  }

  .site-hero::after,
  .page-hero::after {
    opacity: 0.18;
  }

  .grid-4,
  .offer-ladder,
  .functions-grid,
  .service-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .proof-grid,
  .pricing-grid,
  .tiers-grid,
  .month-grid,
  .proof-row,
  .process-grid.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 4.05rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0.75rem;
    left: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.22);
  }

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

  .site-nav a {
    padding: 0.85rem 0.9rem;
  }

  .site-nav .nav-login-link {
    display: block;
  }

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

  .header-cta {
    display: none;
  }

  main {
    padding: 0.4rem;
  }

  main > section {
    margin-bottom: 0.5rem;
  }

  .section-pad {
    padding-block: 4.25rem;
  }

  .site-hero,
  .page-hero {
    min-height: auto;
  }

  .site-hero .hero-grid,
  .page-hero .page-hero-grid {
    padding-block: 4rem;
  }

  .hero-sector-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 38rem;
  }

  .hero-sector-links span {
    grid-column: auto;
  }

  .hero-sector-links span,
  .hero-sector-links a {
    white-space: normal;
  }

  .bottleneck-input-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .bottleneck-submit {
    width: 100%;
  }

  .hero-path-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-path-row > span {
    grid-column: 1 / -1;
    justify-content: center;
  }

  h1,
  .page-hero h1 {
    max-width: 11ch;
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .split-heading,
  .footer-grid,
  .timeline-item,
  .function-block {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--max-page));
  }

  h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-button-row,
  .cta-button-row .btn,
  .form-actions,
  .form-actions .btn {
    width: 100%;
  }

  .hero-path-row {
    grid-template-columns: 1fr;
  }

  .hero-path-row > span {
    justify-content: flex-start;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-modal-heading h2 {
    font-size: 2.2rem;
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .route-card-grid,
  .proof-grid,
  .pricing-grid,
  .offer-ladder,
  .service-grid,
  .feature-grid,
  .path-grid,
  .functions-grid,
  .tiers-grid,
  .month-grid,
  .builds-grid,
  .proof-row,
  .process-grid,
  .process-grid.three-up,
  .gap-grid,
  .metric-stack {
    grid-template-columns: 1fr;
  }

  .console-note {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin-top: 1rem;
  }

  .ops-console,
  .dashboard-panel,
  .dossier-panel,
  .report-panel {
    min-height: auto;
  }

  .tracker-row {
    grid-template-columns: 1fr;
  }

  .visual-header {
    flex-direction: column;
  }
}

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

/* Homepage systems redesign */
.home-shell {
  --home-bg: #fbfbfc;
  --home-ink: #0a0c10;
  --home-panel: #ffffff;
  --home-panel-2: #f3f5f7;
  --home-panel-3: #f8f9fb;
  --home-line: rgba(10, 12, 16, 0.12);
  --home-line-strong: rgba(10, 12, 16, 0.24);
  --home-muted: rgba(10, 12, 16, 0.64);
  --home-faint: rgba(10, 12, 16, 0.42);
  --home-green: #078b5f;
  --home-blue: #255bd6;
  --console-bg: #ffffff;
  --console-panel: #f7f9fb;
  --console-ink: #0a0c10;
  --console-muted: rgba(10, 12, 16, 0.56);
  --console-line: rgba(10, 12, 16, 0.14);

  color: var(--home-ink);
  background:
    linear-gradient(rgba(10, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(117deg, rgba(7, 139, 95, 0.08), transparent 31rem),
    linear-gradient(243deg, rgba(37, 91, 214, 0.07), transparent 33rem),
    var(--home-bg);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.home-shell .site-header {
  color: var(--home-ink);
  background: rgba(251, 251, 252, 0.9);
  border-bottom-color: var(--home-line);
}

.home-shell .brand,
.home-shell .site-nav {
  color: var(--home-ink);
}

.home-shell .brand-mark {
  background: var(--home-ink);
}

.home-shell .brand-mark::before {
  background: var(--home-green);
}

.home-shell .brand-mark::after {
  background: var(--home-blue);
}

.home-shell .nav-toggle {
  color: var(--home-ink);
  border-color: var(--home-line-strong);
}

.home-shell .header-cta,
.home-shell .btn-primary {
  color: var(--home-bg);
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.home-shell .header-cta:hover,
.home-shell .btn-primary:hover {
  color: var(--home-bg);
  background: var(--home-green);
  border-color: var(--home-green);
}

.home-shell .btn-secondary {
  color: var(--home-ink);
  border-color: var(--home-line-strong);
}

.home-shell .btn-secondary:hover {
  color: var(--home-bg);
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.home-shell .btn-sun {
  color: var(--home-bg);
  background: var(--home-green);
  border-color: var(--home-green);
}

.home-shell main {
  padding: 0;
}

.home-shell main > section {
  width: 100%;
  margin: 0 auto;
  color: var(--home-ink);
  background: var(--home-panel);
  border: 0;
  border-bottom: 1px solid var(--home-line);
  border-radius: 0;
}

.home-shell .section-soft,
.home-shell .soft-band,
.home-shell .tiers-section,
.home-shell .final-cta {
  background:
    linear-gradient(rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    var(--home-panel-3);
  background-size: 56px 56px;
}

.home-shell .bottleneck-hero {
  min-height: auto;
  color: var(--home-ink);
  background:
    linear-gradient(rgba(10, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent 24rem),
    var(--home-bg);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.home-shell .bottleneck-hero::before {
  display: block;
  inset: 0;
  border: 0;
  background:
    linear-gradient(120deg, transparent 0 49%, rgba(7, 139, 95, 0.12) 49.5% 50%, transparent 50.5%),
    linear-gradient(60deg, transparent 0 52%, rgba(37, 91, 214, 0.1) 52.5% 53%, transparent 53.5%);
  opacity: 0.46;
}

.home-shell .bottleneck-hero::after {
  inset: 0;
  right: auto;
  bottom: auto;
  top: auto;
  width: auto;
  aspect-ratio: auto;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 6.5rem,
      rgba(10, 12, 16, 0.045) 6.5rem 6.58rem
    );
  border-radius: 0;
  opacity: 1;
  transform: none;
}

.home-shell .bottleneck-hero .hero-focus {
  min-height: calc(100vh - 4.25rem);
  padding-block: 5.4rem 3rem;
}

.home-shell .site-hero .hero-focus-copy {
  max-width: 78rem;
}

.home-shell .hero-focus-copy h1 {
  max-width: 12ch;
  color: var(--home-ink);
  font-size: 7rem;
  line-height: 0.86;
}

.home-shell .hero-subtitle,
.home-shell .page-subtitle,
.home-shell .section-intro,
.home-shell .hero-body,
.home-shell .page-body,
.home-shell .section-heading p,
.home-shell .centered-cta p,
.home-shell .card p,
.home-shell .route-card p,
.home-shell .service-card p,
.home-shell .feature-card p,
.home-shell .path-card p,
.home-shell .proof-card p,
.home-shell .pricing-card p,
.home-shell .offer-card p,
.home-shell .process-step p,
.home-shell .platform-card p,
.home-shell .contact-panel p,
.home-shell .callout p,
.home-shell .gap-card p,
.home-shell .function-card p,
.home-shell .tier-card p,
.home-shell .week-card p,
.home-shell .build-card p {
  color: var(--home-muted);
}

.home-shell .eyebrow,
.home-shell .kicker,
.home-shell .section-tag,
.home-shell .lane-tag,
.home-shell .offer-label,
.home-shell .function-num,
.home-shell .week-label,
.home-shell .build-card-num,
.home-shell .tier-name,
.home-shell .price-note {
  color: var(--home-green);
  letter-spacing: 0;
}

.home-shell .bottleneck-form {
  position: relative;
  max-width: 72rem;
  margin-top: 2.25rem;
  overflow: hidden;
  color: var(--console-ink);
  background:
    linear-gradient(rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    var(--console-bg);
  background-size: 28px 28px;
  border-color: rgba(7, 139, 95, 0.46);
  box-shadow:
    0 0 0 1px rgba(7, 139, 95, 0.14),
    0 22px 70px rgba(10, 12, 16, 0.12);
}

.home-shell .bottleneck-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(69, 243, 176, 0.1), transparent);
  opacity: 0.7;
  transform: translateX(-100%);
  animation: home-scan 8s linear infinite;
  pointer-events: none;
}

.home-shell .bottleneck-form > :not(.sr-only) {
  position: relative;
  z-index: 1;
}

.bottleneck-console-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--console-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bottleneck-console-label span:last-child {
  color: var(--home-green);
}

.bottleneck-console-label span:last-child::before {
  content: "";
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  margin-right: 0.45rem;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.home-shell .bottleneck-input-row {
  margin-top: 0.95rem;
}

.home-shell .bottleneck-input-row input {
  min-height: 4.75rem;
  padding: 0.9rem 1rem;
  color: var(--console-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(69, 243, 176, 0.42);
  box-shadow: inset 0 0 0 1px rgba(10, 12, 16, 0.04);
  font-size: 1.15rem;
}

.home-shell .bottleneck-input-row input::placeholder {
  color: rgba(10, 12, 16, 0.42);
}

.home-shell .bottleneck-input-row input:focus {
  border-color: var(--home-green);
  box-shadow:
    inset 0 0 0 1px rgba(69, 243, 176, 0.35),
    0 0 34px rgba(69, 243, 176, 0.16);
}

.home-shell .bottleneck-submit {
  min-height: 4.75rem;
  padding-inline: 1.45rem;
  color: var(--console-bg);
  background: var(--console-ink);
  border-color: var(--console-ink);
}

.home-shell .bottleneck-status {
  color: var(--console-muted);
}

.workflow-visual {
  max-width: 78rem;
  margin: 1.25rem auto 0;
  text-align: left;
}

.workflow-console {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(69, 243, 176, 0.14), transparent 18rem),
    radial-gradient(circle at 20% 70%, rgba(120, 168, 255, 0.1), transparent 17rem),
    linear-gradient(rgba(10, 12, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  border: 1px solid rgba(10, 12, 16, 0.15);
  box-shadow: 0 18px 54px rgba(10, 12, 16, 0.13);
}

.workflow-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(84, 241, 178, 0.08), transparent);
  transform: translateY(-100%);
  animation: home-scan-y 10s linear infinite;
  pointer-events: none;
}

.workflow-console-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.9rem;
  color: rgba(10, 12, 16, 0.52);
  border-bottom: 1px solid rgba(10, 12, 16, 0.12);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.workflow-console-head span:first-child {
  color: var(--home-green);
}

.workflow-river {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(10rem, 16vw, 15rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 43% 50%, rgba(255, 126, 40, 0.12), transparent 27%),
    radial-gradient(circle at 72% 48%, rgba(84, 241, 178, 0.12), transparent 24%),
    #fff;
}

.workflow-river canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 12, 16, 0.1);
  border-top: 1px solid rgba(10, 12, 16, 0.12);
  list-style: none;
}

.workflow-steps li {
  min-height: 9.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  animation: workflow-card 9s ease-in-out infinite;
  animation-delay: calc(var(--step) * 1s);
}

.workflow-step-code {
  display: inline-flex;
  width: fit-content;
  color: var(--home-green);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.workflow-steps strong {
  display: block;
  margin-top: 0.6rem;
  color: var(--home-ink);
  font-size: 0.95rem;
  line-height: 1.12;
}

.workflow-steps small {
  display: block;
  margin-top: 0.55rem;
  color: var(--home-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.home-shell .hero-path-row {
  max-width: 78rem;
  margin-top: 1.25rem;
  background: var(--home-line);
  border-color: var(--home-line);
}

.home-shell .hero-path-row > span {
  background: rgba(255, 255, 255, 0.92);
}

.home-shell .hero-path-row > span,
.home-shell .hero-path-row a::after {
  color: var(--home-green);
}

.home-shell .hero-path-row a {
  color: var(--home-bg);
  background: var(--home-ink);
}

.home-shell .hero-path-row a strong {
  color: rgba(247, 248, 255, 0.68);
}

.home-shell .hero-path-row a:hover,
.home-shell .hero-path-row a:focus-visible {
  color: #fff;
  background: #151922;
}

.home-shell .hero-path-row a:hover strong,
.home-shell .hero-path-row a:focus-visible strong,
.home-shell .hero-path-row a:hover::after,
.home-shell .hero-path-row a:focus-visible::after {
  color: var(--home-green);
}

.home-shell .trust-line {
  color: var(--home-faint);
  letter-spacing: 0;
}

.home-shell.interior-shell .page-hero {
  min-height: auto;
  color: var(--home-ink);
  background:
    linear-gradient(rgba(10, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), transparent 26rem),
    linear-gradient(118deg, rgba(7, 139, 95, 0.1), transparent 34rem),
    linear-gradient(246deg, rgba(37, 91, 214, 0.08), transparent 36rem),
    var(--home-bg);
  background-size: 56px 56px, 56px 56px, auto, auto, auto, auto;
}

.home-shell.interior-shell .page-hero::before {
  display: block;
  inset: 0;
  border: 0;
  background:
    linear-gradient(120deg, transparent 0 48.6%, rgba(7, 139, 95, 0.12) 48.9% 49.2%, transparent 49.5%),
    linear-gradient(60deg, transparent 0 54%, rgba(37, 91, 214, 0.1) 54.3% 54.6%, transparent 54.9%);
  opacity: 0.52;
}

.home-shell.interior-shell .page-hero::after {
  inset: 0;
  right: auto;
  bottom: auto;
  top: auto;
  width: auto;
  aspect-ratio: auto;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 6.5rem,
      rgba(10, 12, 16, 0.045) 6.5rem 6.58rem
    );
  border-radius: 0;
  opacity: 1;
  transform: none;
}

.home-shell.interior-shell .page-hero .page-hero-grid {
  min-height: min(680px, calc(100vh - 4.25rem));
  padding-block: 5.35rem 4.25rem;
}

.home-shell.interior-shell .page-hero .page-copy {
  max-width: 46rem;
}

.home-shell.interior-shell .page-hero h1 {
  max-width: 12ch;
  color: var(--home-ink);
  font-size: 5.45rem;
  line-height: 0.88;
}

.home-shell.interior-shell .page-hero .page-subtitle {
  max-width: 42rem;
  font-size: 1.18rem;
}

.home-shell.interior-shell .hero-actions {
  margin-top: 1.75rem;
}

.home-shell .portal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.home-shell .portal-menu-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.home-shell .portal-hero h1 {
  max-width: 10ch;
}

.home-shell .portal-console {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  color: var(--home-ink);
  background:
    linear-gradient(rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    var(--home-panel);
  background-size: 28px 28px;
  border: 1px solid var(--home-line-strong);
  box-shadow: 0 22px 70px rgba(10, 12, 16, 0.12);
}

.home-shell .portal-console::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  aspect-ratio: 1;
  background:
    linear-gradient(0deg, transparent 0 16%, rgba(255, 255, 255, 0.34) 16% 21%, transparent 21% 36%, rgba(255, 255, 255, 0.34) 36% 41%, transparent 41% 56%, rgba(255, 255, 255, 0.34) 56% 61%, transparent 61%),
    var(--home-green);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.home-shell .portal-console-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 16rem;
  padding: clamp(1.3rem, 3vw, 1.8rem);
}

.home-shell .portal-console-body span {
  color: var(--home-green);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shell .portal-console-body strong {
  max-width: 11ch;
  margin-top: 0.75rem;
  color: var(--home-ink);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-shell .portal-console-body p {
  margin-top: 1rem;
  color: var(--home-muted);
}

.home-shell.interior-shell .btn-sun {
  color: var(--home-bg);
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.home-shell.interior-shell .btn-sun:hover {
  color: var(--home-bg);
  background: var(--home-green);
  border-color: var(--home-green);
}

.home-shell .gap-grid,
.home-shell .grid,
.home-shell .route-card-grid,
.home-shell .proof-grid,
.home-shell .pricing-grid,
.home-shell .offer-ladder,
.home-shell .service-grid,
.home-shell .feature-grid,
.home-shell .path-grid,
.home-shell .functions-grid,
.home-shell .tiers-grid,
.home-shell .month-grid,
.home-shell .builds-grid,
.home-shell .process-grid,
.home-shell .proof-row,
.home-shell .portal-grid,
.home-shell .form-grid,
.home-shell .lead-form-grid {
  background: var(--home-line);
  border-color: var(--home-line);
}

.home-shell .timeline {
  border-top-color: var(--home-line);
}

.home-shell .function-block {
  border-bottom-color: var(--home-line);
}

.home-shell .function-block p,
.home-shell .compare td,
.home-shell .faq-list details p,
.home-shell .proof-item span,
.home-shell .route-panel-list li,
.home-shell .board-checks li {
  color: var(--home-muted);
}

.home-shell .card,
.home-shell .route-card,
.home-shell .service-card,
.home-shell .feature-card,
.home-shell .path-card,
.home-shell .proof-card,
.home-shell .pricing-card,
.home-shell .offer-card,
.home-shell .process-step,
.home-shell .platform-card,
.home-shell .contact-panel,
.home-shell .callout,
.home-shell .gap-card,
.home-shell .function-card,
.home-shell .tier-card,
.home-shell .week-card,
.home-shell .build-card,
.home-shell .portal-card,
.home-shell .proof-item {
  color: var(--home-ink);
  background: var(--home-panel);
}

.home-shell .route-panel,
.home-shell .local-board {
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow: hidden;
  color: var(--home-ink);
  background:
    linear-gradient(rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 12, 16, 0.045) 1px, transparent 1px),
    var(--home-panel);
  background-size: 28px 28px;
  border: 1px solid var(--home-line-strong);
  box-shadow: 0 22px 70px rgba(10, 12, 16, 0.12);
}

.home-shell .route-panel {
  align-self: stretch;
}

.home-shell .local-board {
  padding: 1.4rem;
}

.home-shell .visual-header,
.home-shell .board-top {
  color: var(--home-muted);
  border-color: var(--home-line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shell .visual-header {
  border-bottom-color: var(--home-line);
}

.home-shell .visual-header span:first-child,
.home-shell .board-top strong,
.home-shell .status-pill {
  color: var(--home-green);
}

.home-shell .status-pill {
  letter-spacing: 0;
}

.home-shell .status-pill::before {
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.home-shell .route-panel-list {
  background: var(--home-line);
}

.home-shell .route-panel-list li {
  background: rgba(255, 255, 255, 0.92);
}

.home-shell .route-panel-list strong {
  color: var(--home-ink);
}

.home-shell .board-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--home-line);
}

.home-shell .board-note {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: rgba(248, 249, 251, 0.94);
  border: 1px solid var(--home-line);
  border-left: 4px solid var(--home-green);
}

.home-shell .board-note span,
.home-shell .board-grid span {
  color: var(--home-green);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shell .board-note p {
  margin-top: 0.58rem;
  color: var(--home-ink);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.18;
}

.home-shell .board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  background: var(--home-line);
  border: 1px solid var(--home-line);
}

.home-shell .board-grid div {
  padding: 0.92rem;
  background: rgba(255, 255, 255, 0.92);
}

.home-shell .board-grid strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--home-ink);
  line-height: 1.22;
}

.home-shell .board-checks {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(243, 245, 247, 0.92);
  border: 1px solid var(--home-line);
  list-style: none;
}

.home-shell .board-checks li {
  position: relative;
  padding-left: 1.1rem;
}

.home-shell .board-checks li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--home-green);
}

.home-shell .pill {
  color: var(--home-ink);
  background: var(--home-panel);
  border-color: var(--home-line-strong);
}

.home-shell .compare-wrap,
.home-shell .faq-list {
  border-color: var(--home-line);
}

.home-shell .compare,
.home-shell .faq-list details {
  background: var(--home-panel);
}

.home-shell .compare th,
.home-shell .compare td {
  border-bottom-color: var(--home-line);
}

.home-shell .compare th {
  color: var(--home-ink);
  background: var(--home-panel-2);
  letter-spacing: 0;
}

.home-shell .compare .featured-col {
  background: rgba(7, 139, 95, 0.08);
}

.home-shell .faq-list {
  background: var(--home-line);
}

.home-shell .faq-list summary {
  color: var(--home-ink);
}

.home-shell .portal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--home-line);
}

.home-shell .portal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  text-decoration: none;
}

.home-shell .portal-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--home-blue);
}

.home-shell .portal-card:nth-child(2n)::before {
  background: var(--home-green);
}

.home-shell .portal-card-code {
  color: var(--home-green);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shell .portal-card h3 {
  margin-top: 0.95rem;
  color: var(--home-ink);
}

.home-shell .portal-card p {
  margin-top: 0.72rem;
  color: var(--home-muted);
}

.home-shell .portal-card strong {
  width: fit-content;
  margin-top: auto;
  color: var(--home-ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-shell .portal-card strong::after {
  content: " ->";
  color: var(--home-green);
}

.home-shell .portal-card:hover,
.home-shell .portal-card:focus-visible {
  color: var(--home-bg);
  background: var(--home-ink);
}

.home-shell .portal-card:hover h3,
.home-shell .portal-card:focus-visible h3,
.home-shell .portal-card:hover strong,
.home-shell .portal-card:focus-visible strong {
  color: var(--home-bg);
}

.home-shell .portal-card:hover p,
.home-shell .portal-card:focus-visible p {
  color: rgba(247, 248, 255, 0.68);
}

.home-shell .path-card::before,
.home-shell .function-card::before,
.home-shell .week-card::before,
.home-shell .build-card::before,
.home-shell .service-card::before,
.home-shell .feature-card::before {
  background: var(--home-blue);
}

.home-shell .path-card:nth-child(2n)::before,
.home-shell .function-card:nth-child(2n)::before,
.home-shell .service-card:nth-child(2n)::before {
  background: var(--home-green);
}

.home-shell .gap-card-bad {
  box-shadow: inset 4px 0 0 var(--home-blue);
}

.home-shell .gap-card-good {
  box-shadow: inset 4px 0 0 var(--home-green);
}

.home-shell .gap-card li,
.home-shell .check-list li,
.home-shell .simple-list li,
.home-shell .tier-includes li,
.home-shell .function-list li,
.home-shell .build-card-includes li {
  color: var(--home-muted);
}

.home-shell .gap-card li::before,
.home-shell .check-list li::before,
.home-shell .simple-list li::before,
.home-shell .tier-includes li::before,
.home-shell .function-list li::before,
.home-shell .build-card-includes li::before {
  background: var(--home-green);
}

.home-shell .function-icon,
.home-shell .process-step span,
.home-shell .step-number {
  color: var(--home-bg);
  background: var(--home-ink);
}

.home-shell .tier-card.featured,
.home-shell .pricing-card.featured,
.home-shell .offer-card.featured,
.home-shell .featured-offer {
  box-shadow: inset 0 0 0 2px var(--home-green);
}

.home-shell .tier-price,
.home-shell .price,
.home-shell .proof-item strong,
.home-shell .route-card h3,
.home-shell .service-card h3,
.home-shell .feature-card h3,
.home-shell .path-card h3,
.home-shell .proof-card h3,
.home-shell .pricing-card h3,
.home-shell .offer-card h3,
.home-shell .process-step h3,
.home-shell .platform-card h3,
.home-shell .contact-panel h3,
.home-shell .function-card h3,
.home-shell .tier-card h3,
.home-shell .week-card h3,
.home-shell .build-card h3 {
  color: var(--home-ink);
}

.home-shell .tiers-section .section-heading h2,
.home-shell .final-cta h2 {
  color: var(--home-ink);
}

.home-shell .tiers-section .section-heading p,
.home-shell .final-cta p {
  color: var(--home-muted);
}

.home-shell .audit-form,
.home-shell .lead-modal-shell {
  color: var(--home-ink);
  background: var(--home-panel);
  border-color: var(--home-line-strong);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.home-shell .audit-form label,
.home-shell .lead-form label {
  background: var(--home-panel-2);
}

.home-shell .audit-form label span,
.home-shell .lead-form label span {
  color: var(--home-green);
  letter-spacing: 0;
}

.home-shell .audit-form input,
.home-shell .audit-form select,
.home-shell .audit-form textarea,
.home-shell .lead-form input {
  color: var(--home-ink);
  background: var(--home-panel-3);
  border-color: var(--home-line-strong);
}

.home-shell .audit-form input::placeholder,
.home-shell .audit-form textarea::placeholder,
.home-shell .lead-form input::placeholder {
  color: var(--home-faint);
}

.home-shell .audit-form .btn-secondary {
  border-color: var(--home-line-strong);
}

.home-shell .form-status,
.home-shell .lead-form-status {
  color: var(--home-muted);
}

.home-shell .lead-modal::backdrop {
  background:
    linear-gradient(rgba(247, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 255, 0.04) 1px, transparent 1px),
    rgba(0, 0, 0, 0.82);
  background-size: 40px 40px;
}

.home-shell .lead-modal-close {
  color: var(--home-bg);
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.home-shell .lead-bottleneck {
  color: var(--home-ink);
  background: var(--home-panel-3);
  border-color: var(--home-line);
}

.home-shell .site-footer {
  background: var(--home-bg);
  border-top: 1px solid var(--home-line);
}

.home-shell .footer-brand {
  color: var(--home-ink);
}

.home-shell .site-footer p,
.home-shell .footer-nav {
  color: var(--home-muted);
}

.home-shell .footer-nav a:hover {
  color: var(--home-ink);
}

.home-shell .footer-bottom {
  color: var(--home-faint);
  border-top-color: var(--home-line);
}

@keyframes home-scan {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes home-scan-y {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes workflow-card {
  0%,
  18%,
  100% {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 0 0 0 rgba(69, 243, 176, 0);
  }
  8% {
    background: rgba(231, 255, 246, 0.96);
    box-shadow: inset 0 2px 0 #45f3b0;
  }
}

@media (max-width: 1080px) {
  .home-shell.interior-shell .page-hero h1 {
    font-size: 4.4rem;
  }

  .home-shell .hero-focus-copy h1 {
    font-size: 5.2rem;
  }

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

  .home-shell .portal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-shell .site-nav {
    background: var(--home-panel);
    border-color: var(--home-line-strong);
  }

  .home-shell.interior-shell .page-hero .page-hero-grid {
    min-height: auto;
    padding-block: 4.4rem 3.2rem;
  }

  .home-shell.interior-shell .page-hero h1 {
    font-size: 3.75rem;
  }

  .home-shell .portal-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 4.2rem 1.6rem;
  }

  .home-shell .portal-console {
    min-height: 17rem;
  }

  .home-shell .portal-console-body {
    min-height: 11rem;
  }

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

  .home-shell .bottleneck-hero .hero-focus {
    min-height: auto;
    padding-block: 4.4rem 2.4rem;
  }

  .home-shell .hero-focus-copy h1 {
    font-size: 4.1rem;
  }

  .workflow-river {
    height: 11.75rem;
  }

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

@media (max-width: 640px) {
  .home-shell.interior-shell .page-hero h1 {
    font-size: 2.9rem;
  }

  .home-shell .hero-focus-copy h1 {
    font-size: 3.15rem;
  }

  .home-shell .bottleneck-form {
    margin-top: 1.55rem;
    padding: 0.85rem;
  }

  .home-shell .bottleneck-input-row input {
    font-size: 1rem;
  }

  .bottleneck-console-label,
  .workflow-console-head {
    flex-direction: column;
    gap: 0.28rem;
  }

  .workflow-river {
    height: 10rem;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    min-height: auto;
  }

  .home-shell .portal-grid {
    grid-template-columns: 1fr;
  }

  .home-shell .portal-console {
    display: none;
  }

  .home-shell .portal-card {
    min-height: 13rem;
  }

  .home-shell .board-top,
  .home-shell .board-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-shell .workflow-packet {
    display: none;
  }
}
