:root {
  --ink: #120f0c;
  --deep: #241a14;
  --slate: #34251c;
  --cream: #f4efe7;
  --stone: #e7d8c6;
  --copper: #c98755;
  --gold: #d6a85f;
  --text-dark: #18130f;
  --text-light: #fbf6ee;
  --muted: #b8a99b;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(24, 19, 15, 0.12);
  --transition-smooth: 220ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.65) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: overlay;
}

h1, h2, h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

p {
  line-height: 1.7;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 62px;
  color: var(--text-dark);
  background: #e8e2d8;
  border-bottom: 1px solid rgba(24, 19, 15, 0.08);
  transition: var(--transition-smooth);
}

.site-nav.is-scrolled {
  background: #e8e2d8;
  border-bottom-color: rgba(24, 19, 15, 0.08);
}

.site-nav.is-hidden {
  transform: translateY(-100%);
}

.nav-shell {
  width: min(1128px, calc(100% - 48px));
  height: 62px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  color: #1b120b;
  background: #f1b56f;
}

.brand-mark svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.nav-left {
  justify-self: start;
  display: flex;
  gap: 2.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-faq {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0 1.08rem;
  border-radius: 999px;
  color: #fbf6ee;
  background: #18130f;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 26px rgba(24, 19, 15, 0.18);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn-primary {
  color: #1b120b;
  background: linear-gradient(135deg, #f1c08a, #c98755);
  box-shadow: 0 14px 40px rgba(201, 135, 85, 0.28);
}

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

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.site-nav.is-scrolled .btn-secondary {
  border-color: var(--border-light);
  background: rgba(24, 19, 15, 0.06);
}

.grain-overlay {
  position: relative;
  isolation: isolate;
}

.grain-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.42) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(0,0,0,0.38) 0 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px;
}

.section-shell,
.hero-shell,
.audit-shell {
  position: relative;
  z-index: 2;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 9rem 0;
}

.hero {
  height: 100vh;
  min-height: 100vh;
  display: block;
  overflow: hidden;
  background: var(--ink);
  z-index: 5;
}

.hero-bg,
.audit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  will-change: transform;
}

.hero-bg {
  inset: -14% 0;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(18,15,12,0.1), rgba(18,15,12,0.18) 42%, rgba(18,15,12,0.72)),
    linear-gradient(90deg, rgba(18,15,12,0.28), rgba(18,15,12,0.06) 45%, rgba(18,15,12,0.28)),
    radial-gradient(circle at 78% 48%, rgba(214,168,95,0.11), transparent 38%);
}

.hero-shell {
  width: min(1128px, calc(100% - 48px));
  height: 100vh;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 116px;
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  grid-template-rows: auto 1fr;
  column-gap: 5rem;
  text-align: left;
}

.hero-meta,
.section-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-meta {
  color: rgba(251,246,238,0.56);
}

.hero-meta span {
  color: rgba(251,246,238,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-meta-left { grid-column: 1; }
.hero-meta-right {
  grid-column: 2;
  justify-self: end;
  min-width: 260px;
}

.section-kicker {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
}

.section-kicker {
  color: rgba(251,246,238,0.74);
  margin-bottom: 1.4rem;
}

.section-kicker.dark { color: rgba(24,19,15,0.72); }

.section-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 22px rgba(201,135,85,0.8);
}

.hero-title {
  position: relative;
  top: -26px;
  align-self: end;
  width: min(760px, 100%);
  font-family: "Inter", sans-serif;
  font-size: clamp(4.35rem, 4.72vw, 6.05rem);
  font-weight: 400;
  letter-spacing: -0.082em;
  line-height: 0.98;
}

.hero-bottom {
  grid-column: 1 / -1;
  align-self: center;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 5rem;
  align-items: end;
}

.hero-bottom .hero-title {
  margin-left: calc((100vw - min(1128px, calc(100vw - 48px))) / -2 + 50px);
}

.hero-copy {
  width: min(330px, 100%);
  color: rgba(251,246,238,0.66);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-action-panel {
  position: relative;
  top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
  padding-bottom: 0.05rem;
}

.hero-action-panel .btn-primary {
  min-height: 44px;
  padding: 0 1.75rem;
  font-size: 0.68rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: min(330px, 100%);
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 28px;
  padding: 0 0.72rem;
  border-radius: 999px;
  color: rgba(251,246,238,0.62);
  background: rgba(18,15,12,0.48);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-chips svg {
  width: 12px;
  height: 12px;
}

.hero-aura {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 30px;
  padding: 0 0.72rem;
  border-radius: 8px;
  color: rgba(251,246,238,0.72);
  background: rgba(18,15,12,0.68);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.58rem;
  font-weight: 800;
}

.hero-aura span {
  color: rgba(251,246,238,0.46);
  font-family: "Sora", sans-serif;
}

.reveal-item {
  opacity: 0;
  animation: revealFlow 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--delay);
}

@keyframes revealFlow {
  from { opacity: 0; transform: translateY(34px) scale(0.985); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.reveal-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.light-section {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--cream), var(--stone));
}

.diagnostic {
  z-index: 6;
  margin-top: -1.6vw;
  background:
    radial-gradient(circle at 8% 10%, rgba(201,135,85,0.08), transparent 34%),
    linear-gradient(135deg, #f4efe7, #eee5da);
}

.diagnostic.section-slant-bottom {
  clip-path: polygon(0 1.6vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding-top: 1.6vw;
}

.diagnostic .section-shell {
  padding-top: 8.4rem;
}

.diagnostic .section-kicker {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.45rem;
  color: rgba(24, 19, 15, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.diagnostic .section-kicker span {
  width: 7px;
  height: 7px;
}

.diagnostic .section-head {
  display: block;
  width: min(700px, 100%);
  margin: 0 auto 5.8rem;
  text-align: center;
}

.diagnostic .section-head h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 3.65vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.04;
}

.diagnostic .section-head p {
  width: min(680px, 100%);
  margin: 1.55rem auto 0;
  color: rgba(24,19,15,0.5);
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.7;
}

.section-slant-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding-bottom: 4vw;
}

.section-slant-both {
  margin-top: -4vw;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding: 4vw 0;
}

.section-slant-top {
  margin-top: -4vw;
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
  padding-top: 4vw;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.6fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section-head h2,
.impact h2,
.workflow h2,
.audit h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 700;
}

.section-head p,
.workflow p,
.audit p {
  color: rgba(251,246,238,0.72);
}

.section-head.dark p { color: rgba(24,19,15,0.66); }

.diagnostic-track {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  grid-template-rows: repeat(4, minmax(220px, auto)) auto;
  column-gap: 1.9rem;
  row-gap: 2.25rem;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 0 0 1.3rem;
}

.diagnostic-rail {
  position: absolute;
  top: 8px;
  bottom: 42px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(24,19,15,0.09);
  overflow: hidden;
}

.diagnostic-rail-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--timeline-progress, 0) * 100%);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(201,135,85,0), rgba(201,135,85,0.32) 10%, #d48a51 54%, rgba(201,135,85,0.12));
  box-shadow: 0 0 18px rgba(201,135,85,0.28);
  transition: height 90ms linear;
}

.diagnostic-node {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 24px rgba(24,19,15,0.08);
}

.diagnostic-node b {
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--copper);
}

.diagnostic-node-1 { top: 7%; }
.diagnostic-node-2 { top: 31%; }
.diagnostic-node-3 { top: 55%; }
.diagnostic-node-4 { top: 80%; }

.timeline-row-1 { grid-row: 1; }
.timeline-row-2 { grid-row: 2; }
.timeline-row-3 { grid-row: 3; }
.timeline-row-4 { grid-row: 4; }
.timeline-text-left,
.timeline-card-left { grid-column: 1; }
.timeline-text-right,
.timeline-card-right { grid-column: 3; }

.timeline-text {
  align-self: start;
  width: min(330px, 100%);
}

.timeline-text-left {
  justify-self: end;
  text-align: right;
}

.timeline-text-right {
  justify-self: start;
  text-align: left;
}

.timeline-label {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
  border-radius: 999px;
  color: rgba(201,135,85,0.9);
  border: 1px solid rgba(201,135,85,0.16);
  background: rgba(201,135,85,0.06);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.timeline-text h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.62rem, 2vw, 2.22rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.08em;
}

.timeline-text p {
  margin-top: 0.9rem;
  color: rgba(24,19,15,0.52);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.55;
}

.timeline-card {
  align-self: start;
  width: min(344px, 100%);
  padding: 1.16rem 1.2rem 1.12rem;
  border-radius: 14px;
  border: 1px solid rgba(24,19,15,0.06);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 46px rgba(24,19,15,0.09);
}

.timeline-card-left { justify-self: end; }
.timeline-card-right { justify-self: start; }

.timeline-card svg {
  width: 21px;
  height: 21px;
  margin-bottom: 0.78rem;
  color: rgba(201,135,85,0.86);
  stroke-width: 1.8;
}

.timeline-card h4 {
  margin: 0 0 0.72rem;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.timeline-card ul {
  display: grid;
  gap: 0.34rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(24,19,15,0.52);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
}

.timeline-footer {
  grid-column: 1 / -1;
  grid-row: 5;
  justify-self: center;
  color: rgba(24,19,15,0.42);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.diagnostic-track .reveal-on-scroll {
  opacity: 1;
  filter: blur(0);
  transform: translateY(42px) scale(0.98);
}

.diagnostic-track .reveal-on-scroll.reveal-active,
.diagnostic-track.timeline-active .reveal-on-scroll {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.flow-card h3,
.workflow-point h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.impact-list,
.step-list-card,
.faq-answer p {
  color: rgba(24,19,15,0.66);
}

.engine {
  background:
    radial-gradient(circle at 78% 18%, rgba(201,135,85,0.12), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(214,168,95,0.08), transparent 32%),
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(135deg, #130f0c, #2c2018 72%, #231812);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  overflow: hidden;
}

.engine .section-shell {
  width: min(980px, calc(100% - 48px));
  padding-top: 10.2rem;
  padding-bottom: 5.8rem;
}

.engine .section-kicker {
  margin-bottom: 1.5rem;
  color: rgba(251,246,238,0.58);
}

.engine .section-head {
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.34fr);
  gap: 5rem;
  align-items: center;
  margin-bottom: 2.35rem;
}

.engine .section-head h2 {
  font-family: "Inter", sans-serif;
  max-width: 670px;
  font-size: clamp(3.2rem, 3.8vw, 4.15rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.085em;
}

.engine .section-head p {
  color: rgba(251,246,238,0.54);
  font-size: 0.91rem;
  font-weight: 600;
}

.automate-engine-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(244,239,231,0.14);
  background: rgba(244,239,231,0.055);
  box-shadow: 0 34px 90px rgba(0,0,0,0.26);
}

.automate-engine-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(244,239,231,0.06), transparent 42%);
  pointer-events: none;
}

.window-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 1.22rem;
  background: rgba(244,239,231,0.035);
  border-bottom: 1px solid rgba(244,239,231,0.08);
}

.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(251,246,238,0.28);
}

.orchestration-window {
  width: min(760px, calc(100% - 120px));
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(54,38,29,0.96), rgba(13,9,7,0.98));
  border: 1px solid rgba(244,239,231,0.08);
}

.orchestration-top {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(244,239,231,0.08);
}

.orchestration-top h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.orchestration-status {
  display: flex;
  gap: 1.15rem;
  color: rgba(251,246,238,0.46);
  font-size: 0.68rem;
  font-weight: 800;
}

.orchestration-status span,
.orchestration-status svg {
  display: inline-flex;
  align-items: center;
}

.orchestration-status svg {
  width: 13px;
  height: 13px;
  margin-right: 0.3rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 194px;
}

.flow-card {
  padding: 1.12rem 0.82rem 1.9rem;
  border-right: 1px solid rgba(244,239,231,0.07);
}

.flow-card:last-child { border-right: 0; }

.flow-card > span {
  display: block;
  margin-bottom: 0.72rem;
  color: rgba(251,246,238,0.44);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-mini-card {
  min-height: 104px;
  padding: 0.84rem;
  border-radius: 10px;
  border: 1px solid rgba(201,135,85,0.18);
  background: linear-gradient(150deg, rgba(201,135,85,0.18), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.flow-mini-card small {
  display: flex;
  justify-content: space-between;
  color: rgba(241,192,138,0.82);
  font-size: 0.58rem;
  font-weight: 800;
}

.flow-mini-card h4 {
  margin: 0.42rem 0 0.38rem;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.flow-mini-card p {
  color: rgba(251,246,238,0.42);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.45;
}

.engine-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244,239,231,0.08);
}

.engine-benefits article {
  min-height: 172px;
  padding: 1.45rem 1.36rem;
  border-right: 1px solid rgba(244,239,231,0.08);
}

.engine-benefits article:last-child { border-right: 0; }

.engine-benefits svg {
  width: 20px;
  height: 20px;
  padding: 0.48rem;
  box-sizing: content-box;
  margin-bottom: 0.9rem;
  color: rgba(214,168,95,0.86);
  border-radius: 9px;
  border: 1px solid rgba(201,135,85,0.18);
  background: rgba(201,135,85,0.09);
}

.engine-benefits h3 {
  margin: 0 0 0.55rem;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.engine-benefits p {
  color: rgba(251,246,238,0.5);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.6;
}

.engine-bottom-fade {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  z-index: 1;
  background: linear-gradient(to top, rgba(11,8,6,0.98), transparent);
  pointer-events: none;
}

.impact {
  margin-top: -1px;
  z-index: 7;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding-bottom: 4vw;
  background:
    radial-gradient(circle at 88% 18%, rgba(214,168,95,0.08), transparent 34%),
    linear-gradient(135deg, #f4efe7, #eee4d7);
}

.impact .section-shell {
  width: min(980px, calc(100% - 48px));
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 3.2rem;
  align-items: start;
}

.impact-copy .section-kicker {
  margin-bottom: 1.2rem;
  color: rgba(24,19,15,0.56);
}

.impact-copy h2 {
  font-family: "Inter", sans-serif;
  max-width: 520px;
  color: var(--text-dark);
  font-size: clamp(3rem, 3.55vw, 3.95rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.085em;
}

.impact-intro {
  width: min(500px, 100%);
  margin-top: 1.35rem;
  color: rgba(24,19,15,0.52);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.7;
}

.impact-table {
  width: min(560px, 100%);
  margin-top: 2.8rem;
}

.impact-table-head,
.impact-table article {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 1.5rem;
  align-items: center;
}

.impact-table-head {
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(24,19,15,0.12);
  color: rgba(24,19,15,0.45);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.impact-table-head span:last-child,
.impact-table article strong {
  text-align: right;
}

.impact-table article {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(24,19,15,0.08);
}

.impact-table h3 {
  margin: 0 0 0.38rem;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.impact-table p {
  color: rgba(24,19,15,0.48);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.55;
}

.impact-table strong {
  color: rgba(24,19,15,0.52);
  font-size: 0.73rem;
  font-weight: 900;
}

.impact-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 24px 70px rgba(24,19,15,0.13);
}

.impact-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.impact-card img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9);
  transition: transform 900ms ease;
}

.impact-card:hover img { transform: scale(1.04); }

.impact-card figcaption {
  position: absolute;
  inset: auto 1.55rem 1.28rem;
  color: var(--text-light);
}

.impact-card figcaption span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 0.72rem;
  border-radius: 999px;
  color: rgba(251,246,238,0.78);
  background: rgba(18,15,12,0.42);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.impact-card figcaption strong {
  display: block;
  margin-top: 0.62rem;
  font-family: "Inter", sans-serif;
  font-size: 1.58rem;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.impact-card-body {
  padding: 1.45rem 1.55rem 1.7rem;
}

.impact-card-body h3 {
  margin: 0;
  max-width: 330px;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.impact-card-body > p {
  margin-top: 0.85rem;
  color: rgba(24,19,15,0.5);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.65;
}

.snapshot-metrics {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.95rem;
}

.snapshot-metrics div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 0.95rem;
}

.snapshot-metrics i,
.snapshot-metrics svg {
  width: 18px;
  height: 18px;
}

.snapshot-metrics div > svg {
  box-sizing: content-box;
  padding: 0.58rem;
  border-radius: 999px;
  color: var(--text-dark);
  background: rgba(24,19,15,0.06);
}

.snapshot-metrics span b,
.snapshot-metrics span small {
  display: block;
}

.snapshot-metrics span b {
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.snapshot-metrics span small {
  margin-top: 0.1rem;
  color: rgba(24,19,15,0.48);
  font-size: 0.62rem;
  font-weight: 600;
}

.snapshot-metrics strong {
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 1.88rem;
  font-weight: 800;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.audit-card span {
  display: block;
  color: rgba(251,246,238,0.64);
}

.audit-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.workflow {
  position: relative;
  background:
    radial-gradient(circle at 72% 24%, rgba(201,135,85,0.08), transparent 30%),
    linear-gradient(135deg, #17110d, #251a14);
  padding: clamp(7.2rem, 7vw, 9rem) 0 calc(clamp(3.6rem, 4.2vw, 5rem) + 50px);
}

.workflow.section-slant-top {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
}

.workflow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4vw;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(135deg, #f4efe7, #eee4d7);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.workflow .section-shell {
  width: min(1210px, calc(100% - 64px));
  padding: 0;
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1fr);
  gap: 3rem;
  padding: 2.25rem 2.25rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(244,239,231,0.14);
  background: rgba(244,239,231,0.045);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.workflow-eyebrow {
  margin-bottom: 1rem;
  color: rgba(251,246,238,0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.workflow-copy h2 {
  max-width: 460px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: clamp(3.8rem, 4.65vw, 4.72rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.085em;
}

.workflow-points {
  position: relative;
  display: grid;
  gap: 1.16rem;
  margin-top: 1.8rem;
  padding-left: 0;
}

.workflow-points::before {
  content: "";
  position: relative;
}

.workflow-points::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 12px;
  width: 1px;
  background: rgba(251,246,238,0.12);
}

.workflow-point {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 1rem;
  z-index: 1;
}

.workflow-point-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(18,15,12,0.8);
  border: 1px solid rgba(201,135,85,0.32);
  box-shadow: 0 0 0 6px rgba(0,0,0,0.16);
}

.workflow-point-dot::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--copper);
  box-shadow: 0 0 14px rgba(201,135,85,0.66);
}

.workflow-point h3 {
  margin: 0 0 0.52rem;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.workflow-point p {
  color: rgba(251,246,238,0.62);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.6;
}

.workflow-cta-block {
  margin-top: 3.65rem;
  max-width: 410px;
}

.workflow-cta-block h3 {
  margin: 0 0 0.85rem;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.workflow-cta-block p {
  margin-bottom: 1.25rem;
  color: rgba(251,246,238,0.64);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.workflow-cta-block .btn-primary {
  min-height: 46px;
  padding: 0 1.12rem 0 1.18rem;
  font-size: 0.72rem;
}

.workflow-cta-block .btn-primary span {
  width: 7px;
  height: 7px;
  margin-left: 0.8rem;
  border-radius: 50%;
  background: #fff;
}

.workflow-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 410px 360px;
  gap: 1rem;
}

.workflow-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(244,239,231,0.16);
  background: rgba(18,15,12,0.5);
}

.workflow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.92);
}

.workflow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,8,6,0.78));
  pointer-events: none;
}

.workflow-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.88rem;
  z-index: 1;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.workflow-card-wide {
  grid-column: 1 / -1;
}

.workflow-card-wide figcaption {
  font-size: 1.38rem;
  bottom: 1.02rem;
}

.implementation {
  margin-top: -1px;
  background:
    radial-gradient(circle at 18% 8%, rgba(214,168,95,0.08), transparent 32%),
    linear-gradient(135deg, #f4efe7, #eee4d7);
}

.implementation .section-shell {
  width: min(1240px, 100%);
  padding-top: 5.8rem;
  padding-bottom: 3rem;
}

.implementation .section-kicker {
  display: flex;
  justify-content: center;
  margin-bottom: 1.55rem;
  color: rgba(24,19,15,0.58);
}

.implementation-head {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto 3.4rem;
  text-align: center;
}

.implementation-head h2 {
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: clamp(4.2rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.09em;
}

.implementation-head p {
  width: min(720px, 100%);
  margin: 1.45rem auto 0;
  color: rgba(24,19,15,0.55);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.02fr 0.96fr;
  gap: 1.35rem;
  padding: 1.35rem;
  border-radius: 30px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 -16px 50px rgba(24,19,15,0.04);
}

.story-card,
.step-list-card,
.confidence-card,
.rollout-card,
.testimonial-card,
.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(201,135,85,0.16);
  background: rgba(255,255,255,0.56);
}

.story-card {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  color: var(--text-light);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,15,12,0.12), rgba(18,15,12,0.2) 40%, rgba(18,15,12,0.68));
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) saturate(0.9);
}

.process-story-top,
.process-story-bottom {
  position: absolute;
  z-index: 1;
  left: 1.9rem;
  right: 1.9rem;
}

.process-story-top {
  top: 2rem;
}

.process-story-top strong {
  display: block;
  color: #f1c08a;
  font-size: 1rem;
  font-weight: 800;
}

.process-story-top span {
  display: block;
  margin-top: 0.85rem;
  color: rgba(251,246,238,0.78);
  font-size: 0.95rem;
}

.process-story-bottom {
  bottom: 2rem;
}

.process-story-bottom h3 {
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.08em;
}

.process-story-bottom h3 span {
  color: #f1c08a;
}

.dot-row {
  display: flex;
  gap: 0.46rem;
  margin: 1rem 0 1rem;
}

.dot-row b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1b56f;
}

.process-story-bottom p {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(251,246,238,0.78);
  font-size: 0.82rem;
}

.process-story-bottom svg {
  width: 13px;
  height: 13px;
}

.step-list-card {
  padding: 1.65rem;
}

.implementation-card > strong {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.implementation-card h3 {
  margin: 1rem 0 1.8rem;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.085em;
}

.implementation-card h3 span {
  color: var(--copper);
}

.implementation-card h4 {
  margin: 0 0 0.9rem;
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 900;
}

.implementation-card ul {
  display: grid;
  gap: 0.88rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.implementation-card li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(24,19,15,0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.implementation-card li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}

.testimonial-card {
  margin-top: 1.95rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.48);
}

.stars {
  color: #d6a85f;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  color: rgba(24,19,15,0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.testimonial-person img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person b,
.testimonial-person small {
  display: block;
}

.testimonial-person b {
  color: var(--text-dark);
  font-size: 0.86rem;
}

.testimonial-person small {
  margin-top: 0.15rem;
  color: rgba(24,19,15,0.48);
  font-size: 0.72rem;
}

.implementation-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1.35rem;
}

.confidence-card {
  min-height: 300px;
  padding: 1.8rem;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.confidence-ring {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  border: 12px solid var(--copper);
}

.confidence-ring svg {
  width: 22px;
  height: 22px;
  color: var(--copper);
}

.confidence-card h3 {
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.confidence-card p {
  width: min(230px, 100%);
  margin-top: 1rem;
  color: rgba(24,19,15,0.52);
  font-size: 0.92rem;
  line-height: 1.65;
}

.rollout-card {
  padding: 1.55rem;
}

.rollout-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.rollout-stats strong {
  display: block;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.rollout-stats span {
  display: block;
  margin-top: 0.38rem;
  color: rgba(24,19,15,0.48);
  font-size: 0.72rem;
}

.rollout-list {
  display: grid;
  gap: 0.85rem;
  padding: 0.2rem 0 1.35rem;
  border-bottom: 1px solid rgba(24,19,15,0.08);
}

.rollout-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(24,19,15,0.74);
  font-size: 0.9rem;
}

.rollout-list b {
  color: var(--copper);
}

.rollout-card footer {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 1rem;
  color: rgba(24,19,15,0.62);
  font-size: 0.76rem;
}

.rollout-card footer svg {
  width: 14px;
  height: 14px;
}

.faq {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.faq-item {
  padding: 0.25rem 1.2rem;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  cursor: pointer;
}

.faq-item svg { transition: var(--transition-smooth); }
.faq-item.is-open svg { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-smooth);
}

.faq-answer > p {
  overflow: hidden;
  padding-right: 2rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1.2rem;
}

.faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(201,135,85,0.12), transparent 34%),
    linear-gradient(135deg, #211711, #342318);
  color: var(--text-light);
  overflow: hidden;
}

.faq-section .section-shell {
  width: min(980px, calc(100% - 48px));
  padding-top: 5.8rem;
  padding-bottom: 4.2rem;
}

.faq-head {
  width: min(680px, 100%);
  margin: 0 auto 3.2rem;
  text-align: center;
}

.faq-head .section-kicker {
  justify-content: center;
  width: 100%;
  margin-bottom: 1.35rem;
  color: rgba(251,246,238,0.6);
}

.faq-head h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(3.25rem, 4.3vw, 4.7rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.085em;
}

.faq-head p {
  width: min(660px, 100%);
  margin: 1.35rem auto 0;
  color: rgba(251,246,238,0.54);
  font-size: 0.9rem;
  font-weight: 500;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 1.25rem;
  align-items: start;
}

.faq-context-card {
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(244,239,231,0.12);
  background: rgba(244,239,231,0.04);
}

.faq-context-card .section-kicker {
  margin-bottom: 1.15rem;
  color: rgba(251,246,238,0.58);
  font-size: 0.63rem;
}

.faq-context-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.08em;
}

.faq-context-card > p {
  margin-top: 1.15rem;
  color: rgba(251,246,238,0.5);
  font-size: 0.82rem;
  font-weight: 500;
}

.faq-context-card ul {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.faq-context-card li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  align-items: start;
  color: rgba(251,246,238,0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.faq-context-card svg {
  box-sizing: content-box;
  width: 15px;
  height: 15px;
  padding: 0.5rem;
  border-radius: 999px;
  color: rgba(214,168,95,0.86);
  background: rgba(201,135,85,0.12);
}

.faq-section .faq {
  margin-top: 0;
  gap: 0.7rem;
}

.faq-section .faq-item {
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid rgba(244,239,231,0.08);
  background: linear-gradient(180deg, rgba(244,239,231,0.06), rgba(244,239,231,0.035));
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

.faq-section .faq-item button {
  min-height: 64px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-section .faq-item button svg {
  box-sizing: content-box;
  width: 15px;
  height: 15px;
  padding: 0.55rem;
  border-radius: 999px;
  color: rgba(241,192,138,0.9);
  background: rgba(201,135,85,0.14);
}

.faq-section .faq-answer > p {
  color: rgba(251,246,238,0.56);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
  padding-right: 1rem;
}

.faq-section .faq-footer {
  margin-top: 2.1rem;
  text-align: center;
  color: rgba(251,246,238,0.34);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 7;
  background: linear-gradient(180deg, #f2ebe1 0%, #efe4d5 100%);
  border-top: 1px solid rgba(24,19,15,0.08);
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(130px, auto));
  gap: 2rem 3.2rem;
  align-items: start;
}

.site-footer-brand p {
  max-width: 36ch;
  margin-top: 0.85rem;
  color: rgba(24,19,15,0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-brand {
  justify-self: start;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.site-footer-links strong {
  color: rgba(24,19,15,0.42);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.site-footer-links a,
.site-footer-meta a,
.site-footer-meta span,
.site-footer-policies a {
  color: rgba(24,19,15,0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(24,19,15,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer-meta {
  display: flex;
  align-items: center;
}

.site-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .site-footer-shell {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .site-footer-shell {
    grid-template-columns: 1fr;
  }
}

.audit {
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(5.75rem, 8vw, 8rem) 0 clamp(5rem, 7vw, 6.5rem);
  background: linear-gradient(180deg, #241a14 0%, #120f0c 100%);
}

.audit-bg {
  background-image: url("./assets/images/audit.jpg");
  filter: contrast(1.12) brightness(0.46) saturate(0.86) sepia(0.06);
  transform: scale(1.12);
}

.audit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,15,12,0.94), rgba(18,15,12,0.44), rgba(18,15,12,0.88)),
    radial-gradient(circle at 28% 45%, rgba(201,135,85,0.18), transparent 36%);
}

.audit-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.92fr);
  gap: 4.5rem;
  align-items: center;
}

.audit-copy {
  padding-top: 2rem;
}

.audit-copy h2 {
  width: min(640px, 100%);
  line-height: 0.98;
}

.audit-copy p {
  width: min(620px, 100%);
  margin: 1.5rem 0 2rem;
}

.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.audit-actions .btn-primary,
.audit-actions .btn-secondary {
  min-height: 46px;
  padding: 0 1.45rem;
  font-size: 0.67rem;
}

.audit-actions .btn-secondary {
  color: #f7f0e8;
  gap: 0.45rem;
}

.audit-actions .btn-secondary svg {
  width: 14px;
  height: 14px;
}

.audit-card {
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(35,26,20,0.36);
  backdrop-filter: blur(16px);
}

.audit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.audit-card-head strong {
  color: #fbf6ee;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.audit-card-head span {
  min-height: 30px;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  color: rgba(251,246,238,0.8);
  display: inline-flex;
  align-items: center;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audit-card-body {
  display: grid;
  gap: 1rem;
  padding: 0.2rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.audit-card-body article {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.audit-card-body article i {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: rgba(241,192,138,0.78);
}

.audit-card-body article h3 {
  color: #fbf6ee;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.audit-card-body article p {
  margin-top: 0.15rem;
  color: rgba(251,246,238,0.58);
  font-size: 0.66rem;
  line-height: 1.6;
}

.audit-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding-top: 0.95rem;
}

.audit-card-stats div {
  display: grid;
  gap: 0.2rem;
}

.audit-card-stats strong {
  color: #fbf6ee;
  font-size: clamp(1rem, 2.1vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.audit-card-stats span {
  color: rgba(251,246,238,0.48);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-card {
  box-shadow: 0 18px 52px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .nav-left { display: none; }
  .nav-shell { grid-template-columns: 1fr auto 1fr; }
  .nav-faq { display: none; }
  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }
  .hero-meta-right { display: none; }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-title {
    top: 0;
    font-size: clamp(4.1rem, 12vw, 6rem);
  }
  .hero-action-panel {
    max-width: 380px;
  }
  .section-head,
  .impact-grid,
  .workflow-grid,
  .process-grid,
  .audit-shell,
  .site-footer-shell {
    grid-template-columns: 1fr;
  }
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .diagnostic-track {
    grid-template-columns: 32px 1fr;
    width: min(620px, 100%);
    row-gap: 1rem;
  }
  .diagnostic-rail { left: 16px; }
  .diagnostic-node { left: 16px; }
  .timeline-text-left,
  .timeline-text-right,
  .timeline-card-left,
  .timeline-card-right {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    text-align: left;
  }
  .timeline-row-1 { grid-row: auto; }
  .timeline-row-2 { grid-row: auto; }
  .timeline-row-3 { grid-row: auto; }
  .timeline-row-4 { grid-row: auto; }
  .impact-card,
  .impact-card img { min-height: 460px; height: 460px; }
}

@media (max-width: 620px) {
  .nav-shell,
  .section-shell,
  .hero-shell,
  .audit-shell { width: min(100% - 28px, 1240px); }
  .nav-actions { display: none; }
  .brand { justify-self: start; }
  .hero-title { font-size: clamp(3.8rem, 18vw, 5rem); }
  .flow-grid,
  .workflow-media { grid-template-columns: 1fr; }
  .flow-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--border-dark); }
  .flow-card svg { margin-bottom: 2rem; }
  .workflow-media .wide { grid-column: auto; }
  .workflow-media img,
  .workflow-media .wide { height: 300px; }
  .site-footer-meta {
    align-items: flex-start;
  }
}
