:root {
  --bg: #101329;
  --bg-soft: #161a36;
  --surface: #191f3d;
  --surface-strong: #222957;
  --ink: #f4f8ff;
  --ink-strong: #ffffff;
  --muted: #c9d3e6;
  --muted-strong: #e7efff;
  --line: #3a4277;
  --line-strong: #5a66ad;
  --nav: #101329;
  --nav-soft: #1d2350;
  --teal: #44dcc2;
  --teal-dark: #29b69d;
  --blue: #7cc7ff;
  --purple: #5a35ee;
  --violet: #8b6cff;
  --mint: #5fe0a4;
  --gold: #e0b86f;
  --red: #c75b73;
  --shadow: 0 24px 58px rgba(5, 8, 26, 0.48);
  --radius: 8px;
  --max: 1160px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(90, 53, 238, 0.24), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(68, 220, 194, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(16, 19, 41, 0.9), rgba(18, 24, 49, 0.84) 42%, rgba(7, 10, 24, 0.97)),
    linear-gradient(125deg, rgba(90, 53, 238, 0.14), transparent 34%, rgba(68, 220, 194, 0.12) 72%, rgba(95, 224, 164, 0.08));
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 16, 38, 0.96);
  color: #f5f8fc;
  backdrop-filter: blur(12px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 15rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 199, 255, 0.36);
  background: linear-gradient(135deg, rgba(90, 53, 238, 0.2), rgba(68, 220, 194, 0.14)), var(--nav-soft);
  box-shadow: 0 0 0 3px rgba(90, 53, 238, 0.08), 0 10px 28px rgba(68, 220, 194, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: #c8d5e1;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.74rem;
  border-radius: var(--radius);
  color: #e1e9f0;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(122, 134, 219, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  border-color: rgba(124, 199, 255, 0.32);
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(5, 8, 26, 0.46);
  box-shadow: 0 14px 30px rgba(90, 53, 238, 0.26), 0 10px 24px rgba(68, 220, 194, 0.14);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: #ffffff;
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--ink-strong);
}

.btn-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: #1b2455;
  color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #222957;
  color: #ffffff;
}

main {
  display: grid;
  gap: 3.5rem;
  padding: 2rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 430px);
  gap: 1rem;
  align-items: start;
  min-height: 0;
}

.hero-copy,
.hero-visual,
.page-hero,
.band,
.cta-band {
  border: 1px solid rgba(124, 199, 255, 0.18);
  background: linear-gradient(180deg, rgba(25, 31, 61, 0.97), rgba(18, 24, 49, 0.97));
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  align-content: start;
  padding: 1.9rem;
  border-radius: var(--radius);
}

.hero-visual {
  width: 100%;
  max-width: 430px;
  min-height: 0;
  justify-self: end;
  padding: 0.95rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 16%, rgba(90, 53, 238, 0.24), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(95, 224, 164, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(11, 13, 31, 0.99), rgba(25, 31, 61, 0.99)),
    var(--bg);
  color: #edf4f9;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-visual .eyebrow,
.cta-band .eyebrow {
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 1.12;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 15.5ch;
  font-size: 3.65rem;
}

h2 {
  max-width: 18ch;
  font-size: 2.35rem;
}

h3 {
  font-size: 1.08rem;
}

h4 {
  font-size: 0.95rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 65ch;
  margin-top: 1.1rem;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.hero-intro {
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.hero-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.8rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-scope-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(124, 199, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(27, 36, 85, 0.64), rgba(21, 27, 63, 0.82));
}

.hero-scope-card strong {
  color: var(--ink-strong);
  font-size: 0.96rem;
}

.hero-scope-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--muted-strong);
  padding: 0.45rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual h2,
.hero-visual h3,
.hero-visual h4,
.cta-band h2,
.cta-band h3 {
  color: #ffffff;
}

.ops-panel {
  display: grid;
  gap: 0.85rem;
  min-height: 0;
  align-content: start;
}

.ops-copy {
  display: grid;
  gap: 0.45rem;
  padding: 0.25rem 0.35rem 0;
}

.ops-copy h2 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3vw, 2.25rem);
}

.ops-copy p {
  max-width: 34ch;
  color: #dde6ee;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ops-svg {
  display: block;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 760 / 340;
}

.work-path-backbone {
  fill: none;
  stroke: rgba(223, 233, 241, 0.2);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-path-active {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 96 620;
  animation: work-path-flow 6s linear infinite;
}

.node-ring {
  fill: #1f3145;
  stroke: rgba(223, 233, 241, 0.54);
  stroke-width: 2;
}

.node-core {
  fill: var(--mint);
}

.node-label {
  fill: #f1f6fb;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.node-meta {
  fill: #beccd8;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.status-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.status-item {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-height: 0;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(223, 233, 241, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: none;
    justify-self: stretch;
  }

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

  .hero-scope-card {
    min-height: 0;
  }
}

.status-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.96rem;
}

.status-item span {
  display: block;
  color: #dde6ee;
  font-size: 0.88rem;
}

@keyframes work-path-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -716;
  }
}

.section-head {
  display: grid;
  gap: 0.6rem;
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.section-head p {
  color: var(--muted);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1.5rem;
  align-items: end;
  padding: 2rem;
  border-radius: var(--radius);
}

.page-hero h1 {
  max-width: 15ch;
}

.page-hero aside {
  display: grid;
  gap: 0.75rem;
}

.page-hero aside p {
  color: var(--muted);
}

.band {
  padding: 2rem;
  border-radius: var(--radius);
}

.band-soft {
  background: rgba(58, 81, 106, 0.88);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
  align-items: start;
}

.grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

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

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

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

.card,
.lane-card,
.proof-card,
.price-card,
.step-card,
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card,
.proof-card,
.price-card,
.step-card,
.note-card {
  padding: 1.1rem;
}

.card,
.proof-card,
.price-card,
.step-card,
.note-card,
.brief-item {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.card,
.proof-card,
.price-card,
.step-card {
  height: 100%;
}

.card p,
.proof-card p,
.price-card p,
.step-card p,
.note-card p,
.lane-card p {
  color: var(--muted);
}

.card h2,
.card h3,
.proof-card h2,
.proof-card h3,
.price-card h2,
.price-card h3,
.step-card h2,
.step-card h3,
.note-card h2,
.note-card h3 {
  max-width: none;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.24;
}

.card h2,
.card h3,
.step-card h2,
.step-card h3 {
  min-height: 4rem;
}

.card-label,
.price-label,
.proof-label,
.step-kicker {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: underline;
}

.lane-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
}

.lane-title {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1.25rem;
  background: var(--surface-strong);
  border-right: 1px solid var(--line);
}

.lane-title h2 {
  max-width: 13ch;
  font-size: 1.75rem;
}

.lane-title p {
  color: var(--muted);
}

.lane-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.detail-block {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.detail-block h3 {
  font-size: 0.95rem;
}

.plain-list,
.check-list,
.artifact-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.plain-list li,
.check-list li,
.artifact-list li {
  margin: 0;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
}

.artifact-list a,
.inline-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.artifact-list a:hover,
.artifact-list a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  position: relative;
  min-height: 190px;
}

.step-number {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nav);
  color: #ffffff;
  font-weight: 800;
}

.proof-card {
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.proof-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 0.75rem;
}

.proof-card header h2,
.proof-card header h3 {
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  max-width: none;
  min-height: 4rem;
}

.proof-label {
  flex: 0 0 auto;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(153, 168, 236, 0.3);
  background: rgba(153, 168, 236, 0.14);
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.sample-table th,
.sample-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.62rem;
  text-align: left;
  vertical-align: top;
}

.sample-table th {
  background: var(--surface-strong);
  color: var(--muted-strong);
}

.sample-table tr:last-child td {
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.code-block {
  overflow-x: auto;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #152639;
  color: #edf4f9;
  font-size: 0.88rem;
  line-height: 1.55;
}

.price-card {
  align-content: start;
}

.price-card h2,
.price-card h3 {
  min-height: 3.2rem;
}

.price {
  display: grid;
  align-content: start;
  color: var(--ink-strong);
  font-size: 1.65rem;
  font-weight: 800;
  min-height: 6rem;
}

.price small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.retainer-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.retainer-table th,
.retainer-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
}

.retainer-table th {
  background: var(--surface-strong);
  color: var(--muted-strong);
}

.retainer-table tr:last-child td {
  border-bottom: 0;
}

.note-card {
  background: var(--surface-strong);
}

@media (min-width: 781px) {
  .grid-3>.price-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.note-card strong {
  color: var(--ink-strong);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.contact-callout {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--nav);
  color: #edf4f9;
}

.contact-callout h2,
.contact-callout h3 {
  color: #ffffff;
}

.contact-callout h2 {
  max-width: none;
  overflow-wrap: anywhere;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.contact-callout p {
  color: #d2dde8;
}

.contact-callout .btn {
  width: fit-content;
}

.brief-list {
  display: grid;
  gap: 0.75rem;
}

.brief-item {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.brief-item strong {
  display: block;
}

.brief-item span {
  display: block;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 20%, rgba(90, 53, 238, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(20, 24, 53, 0.98), rgba(36, 61, 82, 0.98)),
    var(--nav);
  color: #edf4f9;
}

.cta-band p {
  max-width: 68ch;
  color: #d2dde8;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(12, 16, 38, 0.88);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-row a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer-row a:hover,
.footer-row a:focus-visible {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.legal-page {
  gap: 2rem;
}

.legal-hero h1 {
  max-width: 14ch;
}

.legal-content {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.legal-content h2 {
  max-width: none;
  margin-top: 0.45rem;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
}

.legal-content p {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .nav-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .page-hero,
  .split,
  .contact-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

}

@media (max-width: 780px) {
  main {
    gap: 2.2rem;
    padding-top: 1rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-copy,
  .page-hero,
  .band {
    padding: 1.25rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .hero-scope-grid,
  .process-timeline,
  .status-card,
  .lane-card,
  .lane-details {
    grid-template-columns: 1fr;
  }

  .card h2,
  .card h3,
  .step-card h2,
  .step-card h3,
  .proof-card header h2,
  .proof-card header h3,
  .price-card h2,
  .price-card h3,
  .price {
    min-height: 0;
  }

  .lane-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-band .btn {
    width: 100%;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(var(--max), calc(100% - 1rem));
  }

  .brand {
    min-width: 0;
  }

  .brand-copy span {
    display: none;
  }

  .nav-links a {
    padding-inline: 0.62rem;
  }

  .nav-links {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-actions .btn,
  .button-row .btn,
  .contact-callout .btn {
    width: 100%;
  }

  .hero-visual {
    padding: 0.75rem;
  }

  .ops-svg {
    min-height: 260px;
  }
}

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

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

  .work-path-active {
    stroke-dasharray: none;
  }
}

/* === StackOpsOne brand cohesion override v2 === */
:root {
  --bg: #090c1f;
  --bg-soft: #0f1430;
  --surface: #121735;
  --surface-strong: #181f49;
  --surface-card: #151b3f;
  --surface-card-strong: #1b2455;
  --ink: #f5f8ff;
  --ink-strong: #ffffff;
  --muted: #c5cde2;
  --muted-strong: #e4ebff;
  --line: rgba(124, 199, 255, 0.18);
  --line-strong: rgba(139, 108, 255, 0.38);
  --nav: #0b1026;
  --nav-soft: #121838;
  --teal: #44dcc2;
  --teal-dark: #23bba1;
  --blue: #7cc7ff;
  --purple: #5a35ee;
  --violet: #8b6cff;
  --mint: #5fe0a4;
  --shadow: 0 24px 60px rgba(2, 5, 18, 0.55);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(90, 53, 238, 0.18), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(68, 220, 194, 0.12), transparent 32%),
    linear-gradient(rgba(124, 199, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 199, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

body::before {
  background:
    radial-gradient(circle at 16% 10%, rgba(90, 53, 238, 0.28), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(68, 220, 194, 0.18), transparent 31%),
    linear-gradient(180deg, rgba(9, 12, 31, 0.94), rgba(10, 13, 31, 0.9) 42%, rgba(5, 8, 22, 0.98)),
    linear-gradient(125deg, rgba(90, 53, 238, 0.12), transparent 36%, rgba(68, 220, 194, 0.1) 76%);
}

.site-header {
  border-bottom: 1px solid rgba(124, 199, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(11, 16, 38, 0.98), rgba(16, 20, 48, 0.98) 52%, rgba(12, 27, 42, 0.98)),
    var(--nav);
  box-shadow: 0 14px 34px rgba(2, 5, 18, 0.34);
}

.nav-row {
  min-height: 76px;
}

.brand-mark {
  border: 1px solid rgba(124, 199, 255, 0.44);
  background: linear-gradient(135deg, rgba(90, 53, 238, 0.24), rgba(68, 220, 194, 0.18)), var(--nav-soft);
  box-shadow:
    0 0 0 3px rgba(90, 53, 238, 0.12),
    0 0 26px rgba(68, 220, 194, 0.18);
}

.brand-copy span {
  color: #d3dcf3;
}

.nav-links a {
  color: #e8eefc;
  border: 1px solid transparent;
  background: transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(124, 199, 255, 0.2);
  background: linear-gradient(135deg, rgba(90, 53, 238, 0.24), rgba(68, 220, 194, 0.12));
  color: #ffffff;
}

.nav-links a[aria-current="page"] {
  border-color: rgba(124, 199, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(90, 53, 238, 0.42), rgba(68, 220, 194, 0.18)),
    #151b3f;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 8, 22, 0.26);
}

.hero-copy,
.hero-visual,
.page-hero,
.band,
.cta-band {
  border: 1px solid rgba(124, 199, 255, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(90, 53, 238, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(18, 23, 53, 0.98), rgba(12, 16, 38, 0.98));
  box-shadow: var(--shadow);
}

.card,
.lane-card,
.proof-card,
.price-card,
.step-card,
.note-card,
.table-wrap,
.retainer-table,
.contact-callout,
.status-item {
  border-color: rgba(124, 199, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(21, 27, 63, 0.98), rgba(15, 20, 48, 0.98));
}

.lane-title,
.retainer-table th,
.sample-table th,
.note-card {
  background:
    linear-gradient(180deg, rgba(27, 36, 85, 0.98), rgba(18, 24, 57, 0.98));
}

.btn-dark {
  border-color: rgba(124, 199, 255, 0.2);
  background: #151b3f;
  color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: linear-gradient(135deg, rgba(90, 53, 238, 0.36), rgba(68, 220, 194, 0.14));
}

.proof-label {
  border-color: rgba(124, 199, 255, 0.26);
  background: rgba(90, 53, 238, 0.22);
  color: var(--blue);
}

.step-number {
  background: linear-gradient(135deg, var(--purple), var(--teal));
}

.code-block {
  border-color: rgba(124, 199, 255, 0.16);
  background: #0e1430;
}

.footer {
  border-top: 1px solid rgba(124, 199, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(11, 16, 38, 0.96), rgba(16, 20, 48, 0.96) 52%, rgba(12, 27, 42, 0.96));
}

.inline-link,
.card-link,
.footer-row a {
  color: var(--blue);
}

.card-label,
.price-label,
.proof-label,
.step-kicker,
.eyebrow {
  color: var(--blue);
}

.hero-visual .eyebrow,
.cta-band .eyebrow {
  color: var(--teal);
}

/* === End StackOpsOne brand cohesion override v2 === */

/* === StackOpsOne brand cohesion override v3 === */
.site-header,
.footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(90, 53, 238, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(9, 12, 31, 0.99), rgba(15, 18, 44, 0.99) 48%, rgba(9, 24, 35, 0.99));
  border-color: rgba(124, 199, 255, 0.18);
}

.nav-links a[aria-current="page"] {
  background:
    linear-gradient(135deg, rgba(90, 53, 238, 0.58), rgba(68, 220, 194, 0.2)),
    #151b3f;
  border-color: rgba(124, 199, 255, 0.34);
}

.hero-copy,
.hero-visual,
.page-hero,
.band,
.cta-band,
.card,
.lane-card,
.proof-card,
.price-card,
.step-card,
.note-card,
.table-wrap,
.retainer-table,
.contact-callout,
.status-item {
  background:
    radial-gradient(circle at 12% 0%, rgba(90, 53, 238, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(18, 23, 53, 0.99), rgba(11, 15, 36, 0.99));
  border-color: rgba(124, 199, 255, 0.16);
}

.lane-title,
.retainer-table th,
.sample-table th {
  background:
    linear-gradient(180deg, rgba(27, 36, 85, 0.98), rgba(17, 22, 52, 0.98));
}

.proof-card,
.price-card,
.step-card,
.card {
  box-shadow: 0 18px 42px rgba(2, 5, 18, 0.38);
}

/* === End StackOpsOne brand cohesion override v3 === */

/* === StackOpsOne card alignment and scanability pass === */
.card,
.proof-card,
.price-card,
.step-card {
  align-content: start;
  align-items: start;
  grid-auto-rows: max-content;
}

.card,
.lane-card,
.proof-card,
.price-card,
.step-card,
.note-card {
  overflow-wrap: anywhere;
}

.card,
.price-card,
.step-card {
  gap: 0.65rem;
}

.proof-card {
  gap: 0.85rem;
}

.proof-card header {
  width: 100%;
  min-height: 2.2rem;
}

.plain-list,
.check-list,
.artifact-list {
  display: grid;
  gap: 0.42rem;
}

.plain-list li,
.check-list li,
.artifact-list li {
  margin: 0;
}

.price-card .plain-list,
.proof-card .check-list {
  margin-top: 0.1rem;
}

.step-card .step-number {
  margin-bottom: 0.2rem;
}

/* === End StackOpsOne card alignment and scanability pass === */

/* === Pricing layout cleanup === */
.pricing-stack {
  display: grid;
  gap: 1rem;
}

.price-card-split {
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.35rem;
  padding: 1.35rem 1.4rem;
}

.price-card-main {
  display: grid;
  align-content: start;
  gap: 0.68rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(124, 199, 255, 0.14);
}

.price-card-split h3,
.price-card-split .price {
  min-height: 0;
}

.price-card-split .price {
  gap: 0.35rem;
  font-size: 1.7rem;
}

.price-card-details {
  display: grid;
  align-content: center;
}

.price-card-details .plain-list {
  gap: 0.58rem;
}

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

.pricing-policy-lead {
  grid-column: 1 / -1;
  padding: 1.3rem;
}

.pricing-policy-lead h2 {
  max-width: 18ch;
}

@media (max-width: 780px) {

  .price-card-split,
  .pricing-policy-grid {
    grid-template-columns: 1fr;
  }

  .price-card-main {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(124, 199, 255, 0.14);
  }

  .pricing-policy-lead {
    grid-column: auto;
  }
}

/* === End pricing layout cleanup === */

/* === Motion polish === */
@keyframes soft-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes accent-draw {
  from {
    opacity: 0;
    transform: scaleX(0.68);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.reveal-soft {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.accent-sweep {
  position: relative;
  padding-bottom: 0.8rem;
}

.accent-sweep::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 199, 255, 0.92), rgba(68, 220, 194, 0.62));
  transform-origin: left center;
}

.card,
.lane-card,
.proof-card,
.price-card,
.step-card,
.note-card,
.brief-item,
.contact-callout,
.cta-band {
  position: relative;
  isolation: isolate;
}

.card>*,
.lane-card>*,
.proof-card>*,
.price-card>*,
.step-card>*,
.note-card>*,
.brief-item>*,
.contact-callout>*,
.cta-band>* {
  position: relative;
  z-index: 1;
}

.card::after,
.lane-card::after,
.proof-card::after,
.price-card::after,
.step-card::after,
.note-card::after,
.brief-item::after,
.contact-callout::after,
.cta-band::before,
.lane-title::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 199, 255, 0.94), rgba(68, 220, 194, 0.76), rgba(95, 224, 164, 0));
  transform-origin: left center;
  pointer-events: none;
}

.card::after,
.lane-card::after,
.proof-card::after,
.price-card::after,
.step-card::after,
.note-card::after,
.brief-item::after,
.contact-callout::after {
  top: 0;
  left: 1rem;
  width: min(6.5rem, calc(100% - 2rem));
  opacity: 0.56;
}

.cta-band::before {
  top: 0;
  left: 1.5rem;
  width: min(8.5rem, calc(100% - 3rem));
  opacity: 0.68;
}

.lane-title::after {
  left: 1.25rem;
  bottom: 0;
  width: min(5.5rem, calc(100% - 2.5rem));
  opacity: 0.6;
}

.step-number,
.price-label,
.proof-label {
  transition:
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 540ms cubic-bezier(0.22, 1, 0.36, 1),
    background 540ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal-soft {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .motion-ready .reveal-soft.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .stagger-1 {
    transition-delay: 90ms;
  }

  .motion-ready .stagger-2 {
    transition-delay: 180ms;
  }

  .motion-ready .stagger-3 {
    transition-delay: 270ms;
  }

  .motion-ready .stagger-4 {
    transition-delay: 360ms;
  }

  .motion-ready .card::after,
  .motion-ready .lane-card::after,
  .motion-ready .proof-card::after,
  .motion-ready .price-card::after,
  .motion-ready .step-card::after,
  .motion-ready .note-card::after,
  .motion-ready .brief-item::after,
  .motion-ready .contact-callout::after,
  .motion-ready .cta-band.reveal-soft::before,
  .motion-ready .lane-card .lane-title::after {
    opacity: 0;
    transform: scaleX(0.34);
    transition:
      opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) 150ms,
      transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 150ms;
  }

  .motion-ready .card.is-visible::after,
  .motion-ready .lane-card.is-visible::after,
  .motion-ready .proof-card.is-visible::after,
  .motion-ready .price-card.is-visible::after,
  .motion-ready .step-card.is-visible::after,
  .motion-ready .note-card.is-visible::after,
  .motion-ready .brief-item.is-visible::after,
  .motion-ready .contact-callout.is-visible::after,
  .motion-ready .cta-band.reveal-soft.is-visible::before,
  .motion-ready .lane-card.is-visible .lane-title::after {
    opacity: 0.92;
    transform: scaleX(1);
  }

  .motion-ready .step-card .step-number,
  .motion-ready .price-card .price-label,
  .motion-ready .proof-card .proof-label {
    transform: translate3d(0, 8px, 0) scale(0.94);
    box-shadow: 0 0 0 0 rgba(124, 199, 255, 0);
  }

  .motion-ready .step-card.is-visible .step-number,
  .motion-ready .price-card.is-visible .price-label,
  .motion-ready .proof-card.is-visible .proof-label {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 6px rgba(124, 199, 255, 0.08), 0 14px 28px rgba(68, 220, 194, 0.12);
    transition-delay: 160ms;
  }

  .motion-ready .accent-sweep::after {
    opacity: 0;
    transform: scaleX(0.56);
    transition:
      opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) 140ms,
      transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
  }

  .motion-ready .accent-sweep.is-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (hover: hover) and (pointer: fine) {

  .hero-scope-card,
  .status-item,
  .card,
  .lane-card,
  .proof-card,
  .price-card,
  .step-card,
  .note-card,
  .brief-item,
  .contact-callout {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  }

  .hero-scope-card:hover,
  .status-item:hover,
  .card:hover,
  .lane-card:hover,
  .proof-card:hover,
  .price-card:hover,
  .step-card:hover,
  .note-card:hover,
  .brief-item:hover,
  .contact-callout:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 199, 255, 0.42);
    box-shadow: 0 24px 52px rgba(2, 5, 18, 0.44), 0 0 0 1px rgba(124, 199, 255, 0.08);
  }

  .card:hover::after,
  .lane-card:hover::after,
  .proof-card:hover::after,
  .price-card:hover::after,
  .step-card:hover::after,
  .note-card:hover::after,
  .brief-item:hover::after,
  .contact-callout:hover::after {
    opacity: 1;
  }

  .btn-primary:hover,
  .btn-primary:focus-visible {
    box-shadow: 0 20px 38px rgba(90, 53, 238, 0.3), 0 14px 30px rgba(68, 220, 194, 0.18);
  }

  .btn-secondary:hover,
  .btn-secondary:focus-visible,
  .btn-dark:hover,
  .btn-dark:focus-visible {
    box-shadow: 0 16px 30px rgba(4, 8, 24, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-soft {
    opacity: 1 !important;
    transform: none !important;
  }

  .accent-sweep::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* === End motion polish === */

/* === Readability and accent correction === */
.card-label,
.price-label,
.step-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(124, 199, 255, 0.18);
  border-radius: 999px;
  background: rgba(124, 199, 255, 0.08);
}

.lead-points,
.section-points {
  max-width: 62ch;
  margin-top: 0.95rem;
}

.page-hero .lead-points + p {
  max-width: 62ch;
  margin-top: 1rem;
}

.hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(2.95rem, 4.2vw, 3.35rem);
}

.page-hero .plain-list,
.page-hero .check-list,
.section-head .plain-list,
.section-head .check-list,
.contact-callout .plain-list,
.contact-callout .check-list {
  max-width: 62ch;
}

.section-head .plain-list,
.section-head .check-list {
  margin-top: 0.1rem;
}

.accent-card {
  position: relative;
  overflow: hidden;
}

.accent-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(124, 199, 255, 0.96), rgba(68, 220, 194, 0.78));
}

.accent-card>* {
  position: relative;
}

.hero-scope-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 0.45rem;
  padding: 0.92rem 0.95rem 0.9rem;
  overflow: hidden;
  border-color: rgba(124, 199, 255, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 199, 255, 0.11), transparent 42%),
    linear-gradient(180deg, rgba(24, 31, 72, 0.96), rgba(14, 19, 43, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 36px rgba(3, 6, 19, 0.26);
}

.hero-scope-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--scope-accent, var(--blue));
  box-shadow: 0 0 0 0.36rem var(--scope-halo, rgba(124, 199, 255, 0.14));
}

.hero-scope-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--scope-accent, var(--blue)), transparent 72%);
  opacity: 0.88;
}

.hero-scope-card strong {
  display: block;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-scope-card p {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.5;
}

.hero-scope-card:nth-child(1) {
  --scope-accent: #7cc7ff;
  --scope-halo: rgba(124, 199, 255, 0.18);
}

.hero-scope-card:nth-child(2) {
  --scope-accent: #8b6cff;
  --scope-halo: rgba(139, 108, 255, 0.18);
}

.hero-scope-card:nth-child(3) {
  --scope-accent: #5fe0a4;
  --scope-halo: rgba(95, 224, 164, 0.18);
}

.hero-scope-card:nth-child(4) {
  --scope-accent: #e0b86f;
  --scope-halo: rgba(224, 184, 111, 0.18);
}

.status-item {
  position: relative;
  overflow: hidden;
}

.status-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(124, 199, 255, 0.9), rgba(68, 220, 194, 0.65));
  opacity: 0.85;
}

@media (hover: hover) and (pointer: fine) {
  .hero-scope-card:hover {
    background:
      radial-gradient(circle at 100% 0%, rgba(124, 199, 255, 0.16), transparent 42%),
      linear-gradient(180deg, rgba(28, 36, 84, 0.98), rgba(16, 22, 49, 0.99));
  }

  .accent-card:hover::before {
    opacity: 1;
  }
}

@media (max-width: 780px) {

  .card-label,
  .price-label,
  .step-kicker {
    padding: 0.18rem 0.48rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  .hero-scope-card strong,
  .hero-scope-card p {
    padding-left: 0.95rem;
  }
}

@media (max-width: 540px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }
}

/* === End readability and accent correction === */

/* === Explicit animation visibility fix === */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }

  58% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes accentSweep {
  from {
    opacity: 0;
    background-position: 120% 0;
    transform: translate3d(-18%, 0, 0) scaleX(0.42);
  }

  42% {
    opacity: 1;
  }

  to {
    opacity: 0.92;
    background-position: 0 0;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 220, 194, 0.2), 0 10px 24px rgba(2, 5, 18, 0.24);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(68, 220, 194, 0.11), 0 16px 32px rgba(2, 5, 18, 0.32);
    transform: scale(1.035);
  }
}

@keyframes svgPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes flowLine {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: 50% 0;
  }
}

@keyframes flowDot {
  0% {
    left: 0;
    opacity: 0;
  }

  12%,
  88% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 0.62rem);
    opacity: 0;
  }
}

@keyframes ctaSheen {
  0% {
    opacity: 0;
    transform: translate3d(-125%, 0, 0) skewX(-16deg);
  }

  22%,
  58% {
    opacity: 0.28;
  }

  100% {
    opacity: 0;
    transform: translate3d(125%, 0, 0) skewX(-16deg);
  }
}

@keyframes tracerSweep {
  from {
    background-position: 160% 0;
  }

  to {
    background-position: 50% 0;
  }
}

@keyframes tracerSweepY {
  from {
    background-position: 0 160%;
  }

  to {
    background-position: 0 50%;
  }
}

@keyframes tracerGlow {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 18px rgba(68, 220, 194, 0.14);
    filter: drop-shadow(0 0 0 rgba(68, 220, 194, 0));
  }

  50% {
    opacity: 0.9;
    box-shadow: 0 0 24px rgba(68, 220, 194, 0.2), 0 0 14px rgba(139, 108, 255, 0.12);
    filter: drop-shadow(0 0 4px rgba(68, 220, 194, 0.2));
  }
}

@keyframes tracerTravelX {
  0% {
    left: 3%;
    opacity: 0;
  }

  12%,
  86% {
    opacity: 1;
  }

  100% {
    left: calc(97% - 0.62rem);
    opacity: 0;
  }
}

@keyframes tracerTravelY {
  0% {
    top: 0.25rem;
    opacity: 0;
  }

  12%,
  86% {
    opacity: 1;
  }

  100% {
    top: calc(100% - 0.9rem);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .motion-card.reveal-soft {
    opacity: 1;
    transform: none;
  }

  .motion-card {
    animation: fadeSlideUp 880ms cubic-bezier(0.2, 0.82, 0.2, 1) backwards;
    will-change: opacity, transform;
  }

  .motion-card-1 {
    animation-delay: 80ms;
  }

  .motion-card-2 {
    animation-delay: 210ms;
  }

  .motion-card-3 {
    animation-delay: 340ms;
  }

  .motion-card-4 {
    animation-delay: 470ms;
  }

  .motion-card-5 {
    animation-delay: 600ms;
  }

  .motion-card-6 {
    animation-delay: 730ms;
  }

  .motion-accent-line {
    position: relative;
    overflow: hidden;
  }

  .motion-accent-line::after {
    left: 1rem;
    top: 0;
    width: min(12rem, calc(100% - 2rem));
    height: 3px;
    opacity: 0.92;
    background: linear-gradient(90deg, rgba(124, 199, 255, 0), rgba(124, 199, 255, 0.95), rgba(68, 220, 194, 0.86), rgba(139, 108, 255, 0.78), rgba(124, 199, 255, 0));
    background-size: 220% 100%;
    transform-origin: left center;
    animation: accentSweep 1220ms cubic-bezier(0.2, 0.82, 0.2, 1) 260ms backwards;
  }

  .section-head.motion-accent-line::after {
    top: auto;
    bottom: 0;
    width: min(10rem, calc(100% - 2rem));
  }

  .hero-scope-card.motion-accent-line::after {
    left: 0;
    width: 100%;
  }

  .process-timeline.motion-flow,
  .grid.motion-flow {
    position: relative;
  }

  .process-timeline.motion-flow::before,
  .grid.motion-flow::before {
    content: "";
    position: absolute;
    top: -0.58rem;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124, 199, 255, 0.12), rgba(124, 199, 255, 0.88), rgba(68, 220, 194, 0.9), rgba(139, 108, 255, 0.76), rgba(124, 199, 255, 0.12));
    background-size: 240% 100%;
    box-shadow: 0 0 18px rgba(68, 220, 194, 0.14);
    pointer-events: none;
    animation: flowLine 4.4s linear 260ms 1 both, tracerGlow 3.2s ease-in-out 4660ms infinite;
  }

  .process-timeline.motion-flow::after,
  .grid.motion-flow::after {
    content: "";
    position: absolute;
    top: -0.84rem;
    left: 0;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0;
    box-shadow: 0 0 0 5px rgba(68, 220, 194, 0.1), 0 0 22px rgba(68, 220, 194, 0.42);
    pointer-events: none;
  }

  .process-timeline.motion-flow.is-visible::after,
  .grid.motion-flow.is-visible::after {
    animation: flowDot 4.4s cubic-bezier(0.2, 0.82, 0.2, 1) 260ms 1 both;
  }

  .motion-pulse-dot {
    transform-origin: center;
    animation: softPulse 2.8s ease-in-out infinite;
  }

  .hero-visual.motion-flow .work-path-active {
    stroke-width: 5;
    stroke-dasharray: 132 584;
    filter: drop-shadow(0 0 8px rgba(68, 220, 194, 0.45));
    animation-duration: 4.4s;
  }

  .hero-visual.motion-flow .node-core {
    transform-box: fill-box;
    transform-origin: center;
    animation: svgPulse 2.6s ease-in-out infinite;
  }

  .hero-visual.motion-flow .node-ring {
    stroke: rgba(124, 199, 255, 0.72);
  }

  .btn.motion-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .btn.motion-cta::after {
    content: "";
    position: absolute;
    inset: -35% -45%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-125%, 0, 0) skewX(-16deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(68, 220, 194, 0.24), rgba(255, 255, 255, 0));
    animation: ctaSheen 1650ms ease-out 980ms 1 both;
  }

  .cta-band.motion-cta::before {
    animation: accentSweep 1300ms cubic-bezier(0.2, 0.82, 0.2, 1) 320ms backwards;
  }

  .motion-map,
  .motion-stack {
    position: relative;
    isolation: isolate;
  }

  .motion-map > .motion-card,
  .motion-stack > .motion-card {
    position: relative;
    z-index: 1;
  }

  .motion-map::before,
  .motion-map::after,
  .motion-stack::before,
  .motion-stack::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .motion-map::before {
    left: 3%;
    right: 3%;
    top: -0.7rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124, 199, 255, 0.18), rgba(124, 199, 255, 0.92), rgba(68, 220, 194, 0.9), rgba(139, 108, 255, 0.74), rgba(124, 199, 255, 0.18));
    background-size: 260% 100%;
    box-shadow: 0 0 18px rgba(68, 220, 194, 0.12);
    animation: tracerSweep 5.8s linear 260ms 1 both, tracerGlow 3.4s ease-in-out 6060ms infinite;
  }

  .motion-map::after {
    top: -0.97rem;
    left: 3%;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0;
    box-shadow: 0 0 0 5px rgba(68, 220, 194, 0.1), 0 0 22px rgba(68, 220, 194, 0.34);
  }

  .motion-map.is-visible::after {
    animation: tracerTravelX 5.8s cubic-bezier(0.2, 0.82, 0.2, 1) 260ms 1 both;
  }

  .motion-stack {
    padding-left: 1.05rem;
  }

  .motion-stack::before {
    left: 0.17rem;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(124, 199, 255, 0.18), rgba(124, 199, 255, 0.9), rgba(68, 220, 194, 0.82), rgba(139, 108, 255, 0.72), rgba(124, 199, 255, 0.18));
    background-size: 100% 260%;
    box-shadow: 0 0 18px rgba(68, 220, 194, 0.1);
    animation: tracerSweepY 6.4s linear 260ms 1 both, tracerGlow 3.4s ease-in-out 6660ms infinite;
  }

  .motion-stack::after {
    left: -0.08rem;
    top: 0.25rem;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0;
    box-shadow: 0 0 0 5px rgba(68, 220, 194, 0.1), 0 0 22px rgba(68, 220, 194, 0.32);
  }

  .motion-stack.is-visible::after {
    animation: tracerTravelY 6.4s cubic-bezier(0.2, 0.82, 0.2, 1) 260ms 1 both;
  }
}

.hero-scope-card {
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 199, 255, 0.12), transparent 42%) padding-box,
    linear-gradient(180deg, rgba(24, 31, 72, 0.98), rgba(14, 19, 43, 0.99)) padding-box,
    linear-gradient(135deg, rgba(124, 199, 255, 0.64), rgba(68, 220, 194, 0.28), rgba(139, 108, 255, 0.5)) border-box;
}

.hero-scope-card strong {
  color: var(--scope-accent, var(--ink-strong));
}

.hero-scope-card p {
  color: #e4ebff;
}

main > *,
.grid > *,
.split > *,
.contact-panel > *,
.pricing-stack > *,
.pricing-policy-grid > * {
  min-width: 0;
}

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

  .motion-card,
  .reveal-soft {
    opacity: 1 !important;
  }
}

@media (max-width: 780px) and (prefers-reduced-motion: no-preference) {
  .motion-map {
    padding-left: 1.05rem;
  }

  .motion-map::before {
    left: 0.17rem;
    right: auto;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(124, 199, 255, 0.18), rgba(124, 199, 255, 0.9), rgba(68, 220, 194, 0.82), rgba(139, 108, 255, 0.72), rgba(124, 199, 255, 0.18));
    background-size: 100% 260%;
    animation: tracerSweepY 6.4s linear 260ms 1 both, tracerGlow 3.4s ease-in-out 6660ms infinite;
  }

  .motion-map::after {
    left: -0.08rem;
    top: 0.25rem;
  }

  .motion-map.is-visible::after {
    animation: tracerTravelY 6.4s cubic-bezier(0.2, 0.82, 0.2, 1) 260ms 1 both;
  }
}

/* === End explicit animation visibility fix === */
