:root {
  --color-ink: #1d1d1f;
  --color-graphite: #707070;
  --color-slate: #474747;
  --color-ash: #333333;
  --color-fog: #f5f5f7;
  --color-snow: #ffffff;
  --color-obsidian: #000000;
  --color-silver-mist: #e8e8ed;
  --color-brand-navy: #061a3a;
  --color-brand-blue: #0877f2;
  --color-brand-cyan: #02b8cc;
  --color-brand-ice: #e8fbff;
  --color-cobalt-link: #0066cc;
  --color-caution: #b64400;
  --line: #e8e8ed;
  --line-soft: rgba(29, 29, 31, 0.1);
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-card: 28px;
  --radius-small: 10px;
  --radius-pill: 999px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-fog);
  font-family: var(--font-text);
  line-height: 1.47;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, 0.84);
  border-bottom: 1px solid rgba(232, 232, 237, 0.78);
  backdrop-filter: blur(20px);
  transition: background-color 344ms ease, border-color 344ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 74px;
  height: 34px;
  object-fit: contain;
  padding: 4px 6px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 10px;
  background: var(--color-snow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 980px;
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 500;
  transition: background-color 100ms ease, color 100ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-ink);
  background: rgba(210, 210, 215, 0.44);
}

.nav-links .nav-cta {
  margin-left: 10px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 100ms ease, background-color 100ms ease, color 100ms ease, border-color 100ms ease;
}

.nav-cta,
.btn.primary {
  color: #ffffff;
  background: var(--color-brand-blue);
}

.nav-cta:hover,
.btn.primary:hover {
  color: #ffffff;
  background: #006fe6;
  transform: translateY(-1px);
}

.btn.secondary {
  color: var(--color-ink);
  background: rgba(210, 210, 215, 0.64);
  backdrop-filter: blur(20px);
}

.btn.secondary:hover {
  background: rgba(210, 210, 215, 0.82);
}

.btn.ghost {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--color-cobalt-link);
  background: transparent;
  font-weight: 600;
}

.btn.ghost:hover {
  color: var(--color-brand-blue);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(210, 210, 215, 0.64);
  color: var(--color-ink);
  cursor: pointer;
  backdrop-filter: blur(20px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  background: var(--color-fog);
}

.hero,
.page-hero,
.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-fog);
}

.hero {
  padding: 72px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
  text-align: center;
}

.hero-grid > .reveal:first-child,
.page-hero .container,
.final-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.hero-grid > .reveal:first-child {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 14px;
  color: var(--color-slate);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-brand-cyan);
}

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

h1 {
  width: 100%;
  max-width: 980px;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
}

h3 {
  font-size: 24px;
  font-weight: 750;
}

p {
  margin: 0;
}

.lead {
  width: 100%;
  max-width: 790px;
  margin-top: 18px;
  color: var(--color-slate);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.36;
}

.section-lead {
  max-width: 720px;
  margin-top: 16px;
  color: var(--color-graphite);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions,
.cta-row.center {
  justify-content: center;
}

.microcopy {
  width: 100%;
  max-width: 620px;
  margin-top: 15px;
  color: var(--color-graphite);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  width: min(100%, 1080px);
  min-height: 540px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 24%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 36%),
    linear-gradient(140deg, #071a3a 0%, #0877f2 54%, #02b8cc 100%);
  color: var(--color-snow);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: panelFloat 7s ease-in-out infinite;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(54px);
  pointer-events: none;
}

.pipeline-scene {
  position: relative;
  z-index: 2;
  min-height: 416px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.pipeline-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.pipeline-topline strong {
  color: var(--color-snow);
  font-size: 12px;
}

.pipeline-flow {
  position: relative;
  z-index: 2;
  min-height: 304px;
}

.pipeline-stage {
  position: absolute;
  z-index: 2;
  width: 178px;
  min-height: 106px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
  animation: nodeDrift 6.2s ease-in-out infinite;
  transition: transform 320ms ease, background-color 320ms ease, border-color 320ms ease;
}

.pipeline-stage::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-silver-mist);
  transition: background-color 220ms ease;
}

.pipeline-stage.is-active,
.pipeline-stage:hover {
  background: var(--color-snow);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-6px);
}

.pipeline-stage.is-active::after,
.pipeline-stage:hover::after {
  background: var(--color-brand-cyan);
}

.pipeline-stage span,
.pipeline-stage strong,
.pipeline-stage small,
.pipeline-stage em {
  display: block;
}

.pipeline-stage span {
  color: var(--color-cobalt-link);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.pipeline-stage strong {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.1;
}

.pipeline-stage small {
  margin-top: 7px;
  color: var(--color-slate);
  font-size: 13px;
  font-weight: 650;
}

.pipeline-stage em {
  margin-top: 8px;
  color: var(--color-graphite);
  font-size: 11px;
  font-style: normal;
}

.stage-intake {
  top: 28px;
  left: 0;
}

.stage-clean {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 300ms;
}

.stage-ai {
  right: 0;
  top: 46px;
  animation-delay: 600ms;
}

.stage-tasks {
  left: 19%;
  bottom: 0;
  animation-delay: 900ms;
}

.stage-reports {
  right: 10%;
  bottom: 0;
  animation-delay: 1200ms;
}

.pipeline-stage.stage-clean.is-active,
.pipeline-stage.stage-clean:hover {
  transform: translateX(-50%) translateY(-6px);
}

.pipeline-beam {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  background-size: 220% 100%;
  opacity: 0.88;
  transform-origin: left center;
  animation: pulseLine 2.8s ease-in-out infinite, lineTravel 3.8s linear infinite;
}

.beam-a {
  top: 80px;
  left: 150px;
  width: 158px;
  transform: rotate(-11deg);
}

.beam-b {
  top: 91px;
  right: 145px;
  width: 145px;
  transform: rotate(20deg);
  animation-delay: 250ms;
}

.beam-c {
  top: 188px;
  left: 138px;
  width: 162px;
  transform: rotate(34deg);
  animation-delay: 500ms;
}

.beam-d {
  bottom: 78px;
  left: 306px;
  width: 140px;
  transform: rotate(-10deg);
  animation-delay: 750ms;
}

.pipeline-pulse {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-snow);
  animation: pulseDot 3.8s ease-in-out infinite;
}

.pulse-a {
  top: 76px;
  left: 172px;
}

.pulse-b {
  top: 97px;
  right: 228px;
  animation-delay: 700ms;
}

.pulse-c {
  top: 207px;
  left: 206px;
  animation-delay: 1400ms;
}

.pulse-d {
  bottom: 84px;
  right: 202px;
  animation-delay: 2100ms;
}

.pipeline-status {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pipeline-status span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 650;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.stat {
  min-height: 88px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
}

.stat strong {
  display: block;
  color: var(--color-brand-blue);
  font-size: 16px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--color-slate);
  font-size: 14px;
}

.hero-next {
  display: block;
  width: max-content;
  margin: 26px auto 0;
  color: var(--color-cobalt-link);
  font-size: 14px;
  font-weight: 600;
}

section {
  padding: 92px 0;
}

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

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

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--color-snow);
  background:
    radial-gradient(circle at 70% 8%, rgba(2, 184, 204, 0.22), transparent 34%),
    linear-gradient(140deg, #000000 0%, #061a3a 58%, #042c50 100%);
}

.dark-section h2,
.dark-section h3 {
  color: var(--color-snow);
}

.dark-section .section-lead,
.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.section-header {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.split-grid,
.problem-band,
.audit-panel,
.contact-layout,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.hero-grid > *,
.split-grid > *,
.problem-band > *,
.audit-panel > *,
.contact-layout > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
}

.split-grid,
.problem-band,
.audit-panel,
.contact-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 42px;
}

.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,
.service-card,
.price-card,
.process-step,
.use-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--color-snow);
  transition: transform 344ms ease, background-color 344ms ease;
}

.white-section .card,
.white-section .service-card,
.white-section .price-card,
.white-section .process-step,
.white-section .use-card,
.white-section .contact-card {
  background: var(--color-fog);
}

.dark-section .card,
.dark-section .service-card,
.dark-section .price-card,
.dark-section .process-step,
.dark-section .use-card,
.dark-section .contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.card:hover,
.service-card:hover,
.price-card:hover,
.use-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
}

.card,
.service-card,
.use-card,
.contact-card,
.process-step,
.price-card {
  padding: 28px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card h2,
.contact-card h2,
.price-card h2,
.service-card h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.card p,
.service-card p,
.use-card p,
.price-card p,
.contact-card p,
.process-step p {
  margin-top: 12px;
  color: var(--color-graphite);
}

.dark-section .card p,
.dark-section .service-card p,
.dark-section .use-card p,
.dark-section .price-card p,
.dark-section .contact-card p,
.dark-section .process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card::before,
.price-card::before {
  content: "New";
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-brand-navy);
  font-size: 12px;
  font-weight: 800;
}

.featured {
  color: var(--color-snow);
  background:
    radial-gradient(circle at 72% 4%, rgba(2, 184, 204, 0.38), transparent 34%),
    linear-gradient(140deg, #000000 0%, #061a3a 54%, #0877f2 100%) !important;
}

.featured h2,
.featured h3 {
  color: var(--color-snow);
}

.featured p,
.featured .check-list li {
  color: rgba(255, 255, 255, 0.76);
}

.featured::before {
  color: var(--color-snow);
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 25px;
  color: var(--color-graphite);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.61em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-brand-cyan);
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 1px;
  width: 12px;
  height: 2px;
  background: var(--color-brand-cyan);
}

.dark-section .check-list li,
.dark-section .plain-list li {
  color: rgba(255, 255, 255, 0.76);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.pain-chip,
.industry-pill {
  border-radius: var(--radius-pill);
  background: rgba(210, 210, 215, 0.64);
  color: var(--color-ash);
  font-size: 14px;
  font-weight: 650;
  transition: transform 100ms ease, background-color 100ms ease;
}

.pain-chip {
  padding: 11px 14px;
}

.pain-chip:hover,
.industry-pill:hover {
  transform: translateY(-2px);
  background: rgba(210, 210, 215, 0.88);
}

.promise {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius-card);
  background: var(--color-snow);
  color: var(--color-ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.white-section .promise {
  background: var(--color-fog);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--color-brand-navy);
  background: var(--color-snow);
  font-weight: 800;
}

.dark-section .step-number {
  color: var(--color-ink);
}

.audit-panel {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.use-card strong {
  color: var(--color-ink);
  font-size: 20px;
}

.industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-pill {
  padding: 10px 14px;
}

.page-hero {
  padding: 86px 0 78px;
  text-align: center;
}

.page-hero .lead {
  max-width: 860px;
}

.mini-logo {
  width: min(260px, 72vw);
  margin-bottom: 26px;
  padding: 10px 12px;
  border-radius: 18px;
  background: var(--color-snow);
}

.price {
  margin: 20px 0 6px;
  color: var(--color-brand-navy);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
}

.featured .price {
  color: var(--color-snow);
}

.price-card .btn {
  margin-top: auto;
}

.contact-layout {
  align-items: start;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-ash);
  font-size: 14px;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--color-snow);
  color: var(--color-ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 100ms ease, background-color 100ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-brand-blue);
  background: #ffffff;
}

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

.form-note {
  margin: 16px 0 0;
  color: var(--color-graphite);
  font-size: 14px;
}

.final-cta {
  padding: 90px 0;
  text-align: center;
}

.final-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--color-graphite);
  font-size: 20px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
  padding: 48px 0;
}

.footer-grid h3 {
  color: var(--color-ink);
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--color-slate);
}

.footer-grid a:hover,
.contact-card a:hover,
.card a:hover {
  color: var(--color-cobalt-link);
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--color-graphite);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes panelFloat {
  0%,
  100% {
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
  }
}

@keyframes nodeDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes pulseDot {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(80px, 8px, 0) scale(1);
  }
}

@keyframes lineTravel {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    flex: 0 0 40px;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 52px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px 24px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .split-grid,
  .problem-band,
  .audit-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 500px;
  }

  .pipeline-scene {
    min-height: 382px;
  }

  .pipeline-stage {
    width: 164px;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 54px);
  }

  .brand img {
    width: 62px;
    height: 30px;
  }

  .brand span {
    max-width: 132px;
    white-space: normal;
    font-size: 13px;
    line-height: 1.08;
  }

  h1 {
    max-width: calc(100vw - 32px);
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .lead,
  .section-lead,
  .final-cta p {
    font-size: 17px;
  }

  .hero-grid > .reveal:first-child,
  .lead,
  .microcopy {
    max-width: calc(100vw - 32px);
  }

  section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-panel {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-height: auto;
    padding: 12px;
    border-radius: 28px;
  }

  .pipeline-scene {
    min-height: auto;
    padding: 12px;
  }

  .pipeline-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 12px;
  }

  .pipeline-flow {
    display: grid;
    gap: 8px;
    min-height: auto;
  }

  .pipeline-stage {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 88px;
    animation-duration: 7s;
  }

  .pipeline-stage,
  .pipeline-stage.stage-clean,
  .pipeline-stage.is-active,
  .pipeline-stage.stage-clean.is-active,
  .pipeline-stage:hover,
  .pipeline-stage.stage-clean:hover {
    transform: none;
  }

  .pipeline-beam,
  .pipeline-pulse {
    display: none;
  }

  .pipeline-status {
    margin-top: 12px;
  }

  .pipeline-status span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .hero-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .pain-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn.primary,
  .cta-row .btn.primary,
  .hero-actions .btn.secondary,
  .cta-row .btn.secondary {
    width: 100%;
  }

  .card,
  .service-card,
  .use-card,
  .contact-card,
  .process-step,
  .price-card {
    padding: 24px;
  }

  .page-hero {
    padding: 66px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
