:root {
  --bg: #0a0d0b;
  --bg-strong: #070907;
  --surface: #0e1411;
  --surface-2: #121916;
  --surface-3: #17201c;
  --ink: #effaf4;
  --muted: #bdcec5;
  --soft: #d6e7dd;
  --green: #20ff9a;
  --green-2: #00c86f;
  --cyan: #58d9ff;
  --amber: #ffd166;
  --border: rgba(255, 255, 255, 0.1);
  --border-green: rgba(32, 255, 154, 0.2);
  --panel: #0d1512;
  --panel-2: #111b17;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container-max: 1580px;
  --container-gutter: clamp(48px, 8vw, 340px);
  --ease-fluid: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    radial-gradient(1000px 680px at 72% 4%, rgba(0, 193, 106, 0.045), transparent 58%),
    radial-gradient(800px 620px at 14% 38%, rgba(32, 255, 154, 0.022), transparent 60%),
    linear-gradient(180deg, #080b09 0%, #0b100d 42%, #080b09 78%, #0a0d0b 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1080px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.55rem, 5.35vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 1000px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.container {
  width: min(var(--container-max), calc(100% - var(--container-gutter)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px 28px;
  background: rgba(1, 3, 2, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(32, 255, 154, 0.22));
}

.brand-text {
  display: grid;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  --guide-intensity: 0;
  --guide-visual-intensity: var(--guide-intensity);
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: transparent;
  font-size: 0;
  border-radius: 6px;
  outline: none;
  transition:
    background 520ms ease,
    box-shadow 520ms ease,
    transform 420ms ease;
}

.nav-links a::before {
  content: "";
  position: relative;
  z-index: 2;
  width: calc(7px + (var(--guide-visual-intensity) * 6px));
  height: calc(7px + (var(--guide-visual-intensity) * 6px));
  border-radius: calc(2px + (var(--guide-visual-intensity) * 2px));
  background: rgb(
    calc(32 + (var(--guide-visual-intensity) * 52))
    255
    calc(154 + (var(--guide-visual-intensity) * 32))
  );
  box-shadow:
    0 0 calc(6px + (var(--guide-visual-intensity) * 11px)) rgb(32 255 154 / calc(0.26 + (var(--guide-visual-intensity) * 0.42))),
    0 0 calc(16px + (var(--guide-visual-intensity) * 28px)) rgb(32 255 154 / calc(var(--guide-visual-intensity) * 0.24));
  transition:
    width 620ms cubic-bezier(0.16, 1, 0.3, 1),
    height 620ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 520ms ease,
    background 620ms ease,
    box-shadow 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(34px + (var(--guide-visual-intensity) * 34px));
  height: calc(34px + (var(--guide-visual-intensity) * 34px));
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  opacity: calc(var(--guide-visual-intensity) * 0.72);
  background:
    radial-gradient(circle, rgb(32 255 154 / 0.34) 0%, rgb(32 255 154 / 0.18) 24%, rgb(32 255 154 / 0.075) 50%, transparent 76%);
  box-shadow: 0 0 calc(20px + (var(--guide-visual-intensity) * 22px)) rgb(32 255 154 / calc(var(--guide-visual-intensity) * 0.24));
  transform: translate(-50%, -50%) scale(calc(0.62 + (var(--guide-visual-intensity) * 0.3)));
  transition:
    width 820ms cubic-bezier(0.16, 1, 0.3, 1),
    height 820ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:focus-visible {
  box-shadow: 0 0 0 1px rgb(32 255 154 / 0.34);
  transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #6dffc0;
  box-shadow:
    0 0 12px rgb(32 255 154 / 0.78),
    0 0 28px rgb(32 255 154 / 0.32),
    0 0 46px rgb(32 255 154 / 0.16);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: max(0.7, calc(var(--guide-visual-intensity) * 0.78));
  transform: translate(-50%, -50%) scale(1.08);
}

.header-cta,
.btn {
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
}

.header-cta {
  background: rgba(32, 255, 154, 0.11);
  border: 1px solid var(--border-green);
  color: var(--green);
}

.btn-primary {
  background: var(--green);
  color: #03110b;
  box-shadow: 0 18px 50px rgba(32, 255, 154, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ink);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  padding: 124px 0 54px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 3, 2, 0.98) 0%, rgba(1, 3, 2, 0.84) 42%, rgba(1, 3, 2, 0.46) 100%),
    linear-gradient(180deg, rgba(1, 3, 2, 0.12), var(--bg) 96%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(32, 255, 154, 0.13), transparent 48%),
    radial-gradient(ellipse at 18% 58%, rgba(88, 217, 255, 0.055), transparent 42%),
    repeating-linear-gradient(90deg, rgba(32, 255, 154, 0.035) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 145px);
}

.hero-video,
.energy-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  background:
    linear-gradient(115deg, rgba(0, 12, 8, 0.7), rgba(0, 34, 22, 0.24) 50%, rgba(0, 6, 4, 0.48)),
    radial-gradient(circle at 78% 36%, rgba(32, 255, 154, 0.15), transparent 42%);
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  transition:
    opacity 900ms var(--ease-out-soft),
    filter 900ms var(--ease-out-soft);
}

.energy-particles,
#energy-particles {
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 1200ms var(--ease-out-soft);
}

.energy-flow-ready .energy-particles,
.energy-flow-ready #energy-particles {
  opacity: 0.62;
}

.energy-particles canvas,
#energy-particles canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 76% 45%, rgba(32, 255, 154, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(1, 3, 2, 0) 68%, var(--bg) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(32, 255, 154, 0.55);
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(1040px, 100%);
}

.proof-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 16, 14, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.proof-card svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.proof-card strong,
.proof-card small {
  display: block;
}

.proof-card strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.proof-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  background: #06100d;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.strip-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: var(--soft);
  font-size: 0.93rem;
}

.strip-grid span[aria-hidden="true"] {
  display: none;
}

.strip-grid svg {
  flex: 0 0 auto;
  color: var(--green);
}

.section {
  position: relative;
  scroll-margin-top: 96px;
  padding: 88px 0;
  background: transparent;
}

.section-deep {
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0.54), rgba(3, 6, 5, 0.34)),
    transparent;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

.delivery-section {
  padding: 72px 0 78px;
  background:
    radial-gradient(760px 420px at 18% 18%, rgba(32, 255, 154, 0.045), transparent 62%),
    linear-gradient(180deg, rgba(6, 16, 13, 0.78), rgba(8, 11, 9, 0.18));
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.delivery-copy {
  max-width: 700px;
}

.delivery-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.delivery-package article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(13, 21, 18, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.delivery-package svg {
  grid-row: 1 / span 2;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  padding: 9px;
  color: var(--green);
  border: 1px solid rgba(32, 255, 154, 0.22);
  border-radius: var(--radius);
  background: rgba(32, 255, 154, 0.07);
}

.delivery-package strong {
  color: #fff;
  line-height: 1.22;
}

.delivery-package span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.reality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.75fr);
  gap: 14px;
  margin-top: 18px;
}

.reality-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.reality-panel > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reality-tags,
.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reality-tags em,
.stack-list strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--soft);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 720;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(7, 18, 13, 0.72);
}

.stack-list strong {
  color: #fff;
  border-color: rgba(32, 255, 154, 0.14);
}

.loss-section {
  padding-top: 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(1, 3, 2, 0)),
    transparent;
}

.loss-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin-bottom: 28px;
}

.loss-copy h2 {
  max-width: 1040px;
  font-size: clamp(2.15rem, 4.8vw, 3.9rem);
}

.loss-copy > p:not(.eyebrow) {
  max-width: 790px;
  color: var(--soft);
  font-size: 1.08rem;
}

.loss-points {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-top: 26px;
}

.loss-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  color: var(--soft);
}

.loss-points svg {
  flex: 0 0 auto;
  color: var(--green);
}

.loss-board {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 26px;
  color: #07130d;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(244, 255, 249, 0.98), rgba(207, 235, 221, 0.95)),
    #eaf7f0;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.loss-board::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% 30%;
  height: 52%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(32, 255, 154, 0.24), transparent 64%);
}

.loss-board > * {
  position: relative;
  z-index: 1;
}

.loss-board-top {
  display: grid;
  gap: 2px;
}

.loss-board-top span,
.proof-kicker {
  color: #08724a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.loss-board-top strong {
  color: #06120c;
  font-size: 1.28rem;
  line-height: 1.15;
}

.loss-control {
  display: grid;
  gap: 10px;
  font-weight: 750;
}

.loss-control span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.loss-control output {
  color: #056640;
}

.loss-control input {
  width: 100%;
  accent-color: var(--green-2);
}

.loss-result {
  padding: 18px;
  color: #183328;
  border-radius: var(--radius);
  background: #07120d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.loss-result span,
.loss-result small {
  display: block;
}

.loss-result span {
  color: #a8bdb1;
  font-size: 0.86rem;
}

.loss-result strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
}

.loss-result small {
  color: #cfe3d8;
}

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

.loss-mini-grid span {
  display: grid;
  gap: 2px;
  padding: 13px;
  border: 1px solid rgba(7, 18, 13, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.06);
}

.loss-mini-grid strong {
  color: #06120c;
  font-size: 1.25rem;
  line-height: 1.1;
}

.loss-mini-grid small {
  color: #25483a;
  line-height: 1.35;
}

.card-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid {
  gap: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.91fr) minmax(0, 0.91fr);
  gap: 14px;
}

.service-card,
.step-card,
.trust-card,
.portfolio-card,
.phone-demo,
details {
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: var(--shadow);
}

.service-card,
.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  padding: 24px;
  visibility: visible;
  opacity: 1;
}

.service-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 16px;
  align-items: start;
}

.trust-card {
  display: flex;
  flex-direction: column;
}

.service-card::after,
.trust-card::after,
.step-card::after,
.portfolio-card::after,
details::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(32, 255, 154, 0.78), rgba(32, 255, 154, 0.06));
  opacity: 0.62;
}

.service-card svg,
.trust-card svg {
  box-sizing: content-box;
  width: 24px;
  height: 24px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(32, 255, 154, 0.22);
  border-radius: var(--radius);
  background: rgba(32, 255, 154, 0.075);
  color: var(--green);
}

.service-card svg {
  grid-row: 1 / span 2;
  margin: 0;
}

.service-card h3 {
  margin: 1px 0 8px;
}

.service-card p,
.trust-card p,
.step-card p,
.portfolio-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card p {
  grid-column: 2;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.52;
}

.service-row .service-card {
  min-height: 176px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.service-row .service-card-featured {
  grid-column: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.method-map {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 0.92fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.method-lead {
  position: sticky;
  top: 116px;
  align-self: start;
}

.method-lead > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-signal {
  display: grid;
  gap: 4px;
  max-width: 480px;
  margin-top: 30px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.method-signal span,
.method-step span,
.faq-answer span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-signal strong {
  color: #fff;
  font-size: 1.08rem;
}

.method-signal small {
  color: var(--muted);
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.74fr);
  gap: 14px;
}

.method-flow::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 51%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(32, 255, 154, 0.28), transparent);
}

.method-step {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(13, 21, 18, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.method-step::before {
  content: "";
  position: absolute;
  inset: 22px auto auto -4px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(32, 255, 154, 0.32);
}

.method-step-primary {
  grid-row: span 2;
  min-height: 368px;
  padding: 28px;
  color: #07130d;
  border: 0;
  background:
    linear-gradient(145deg, rgba(239, 250, 244, 0.98), rgba(208, 230, 219, 0.95)),
    #eaf7f0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.method-step-wide {
  grid-column: 1 / -1;
  min-height: 130px;
}

.method-step h3,
.method-step p {
  position: relative;
  z-index: 1;
}

.method-step h3 {
  margin: 8px 0 10px;
}

.method-step p {
  color: var(--muted);
}

.method-step-primary h3,
.method-step-primary p,
.method-step-primary li {
  color: #183328;
}

.method-step-primary span {
  color: #00683f;
}

.method-step-primary h3 {
  color: #04120c;
}

.method-step-primary li {
  font-weight: 650;
}

.method-step ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.method-step li {
  padding-left: 18px;
  color: var(--muted);
}

.method-step-primary li {
  color: #183328;
  font-weight: 760;
}

.method-step-primary li::before {
  color: #00683f;
  opacity: 0.8;
}

.method-step li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px 1px -18px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.52;
}

.method-step-primary li::before {
  opacity: 0.8;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.step-card span {
  display: none;
}

.step-card h3 {
  margin-top: 4px;
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 50px;
  align-items: center;
}

.inline-btn {
  width: fit-content;
  margin-top: 10px;
}

.phone-demo {
  max-width: 420px;
  margin-inline: auto;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(32, 255, 154, 0.09), transparent 28%),
    #06100d;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 8px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(32, 255, 154, 0.3);
}

.phone-top strong,
.phone-top small {
  display: block;
}

.phone-top small {
  color: var(--muted);
}

.chat-window {
  display: grid;
  gap: 12px;
  padding: 18px 2px 0;
}

.message {
  max-width: 84%;
  padding: 12px 13px 8px;
  border-radius: var(--radius);
}

.message p {
  margin-bottom: 6px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.message span {
  display: block;
  color: rgba(239, 250, 244, 0.55);
  font-size: 0.72rem;
  text-align: right;
}

.message.client {
  justify-self: start;
  background: #111f1b;
}

.message.assistant {
  justify-self: end;
  background: #0f6b45;
}

.automation-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  background: rgba(32, 255, 154, 0.08);
  color: var(--soft);
  font-size: 0.9rem;
}

.automation-note svg {
  flex: 0 0 auto;
  color: var(--green);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
  padding: 36px;
  border: 1px solid rgba(32, 255, 154, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(32, 255, 154, 0.08), transparent 62%),
    #06100d;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
}

.feature-list svg {
  color: var(--green);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.portfolio-card img {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.portfolio-card div {
  padding: 20px;
}

.portfolio-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.1fr);
  gap: 50px;
}

.faq-decision {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.faq-editorial {
  max-width: 640px;
}

.faq-editorial > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.faq-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-note strong {
  color: #fff;
}

.faq-note span {
  color: var(--muted);
}

.faq-answers {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 14px;
}

.faq-answer {
  position: relative;
  min-height: 172px;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-answer-main {
  grid-row: span 2;
  min-height: 360px;
  padding: 28px;
  color: #07130d;
  border-top: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(239, 250, 244, 0.98), rgba(208, 230, 219, 0.95)),
    #eaf7f0;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.26);
}

.faq-answer h3 {
  margin: 8px 0 10px;
}

.faq-answer button {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-answer button:focus-visible {
  outline: 2px solid rgba(32, 255, 154, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-answer-main span {
  color: #00683f;
}

.faq-answer-main h3 {
  color: #04120c;
}

.faq-answer-main p {
  color: #183328;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

details[open] {
  border-color: rgba(32, 255, 154, 0.22);
  background:
    linear-gradient(180deg, rgba(32, 255, 154, 0.05), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(32, 255, 154, 0.08), rgba(32, 255, 154, 0)),
    #04100c;
}

.final-cta-inner {
  max-width: 820px;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 auto 28px;
  color: var(--soft);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-strong);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Conversion-focused refinement */
.site-header {
  background: rgba(8, 11, 9, 0.82);
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  --guide-intensity: 0;
  --guide-visual-intensity: var(--guide-intensity);
  display: inline-flex;
  width: auto;
  height: 36px;
  min-width: 0;
  padding: 0 12px;
  color: rgba(239, 250, 244, 0.72);
  font-size: 0.84rem;
  font-weight: 750;
  border-radius: var(--radius);
  transition:
    color 260ms ease,
    background 260ms ease,
    box-shadow 320ms ease,
    transform 260ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  z-index: 1;
  width: auto;
  height: 2px;
  border-radius: 999px;
  opacity: var(--guide-visual-intensity);
  background: var(--green);
  box-shadow: 0 0 12px rgba(32, 255, 154, 0.26);
  transition: opacity 420ms var(--ease-out-soft);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a[aria-current="location"]::before {
  left: 12px;
  right: 12px;
  bottom: 6px;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(32, 255, 154, 0.26);
  opacity: var(--guide-visual-intensity);
}

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

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

.hero {
  min-height: auto;
  padding: 108px 0 34px;
  background:
    linear-gradient(90deg, rgba(8, 11, 9, 0.98) 0%, rgba(8, 11, 9, 0.9) 44%, rgba(8, 11, 9, 0.68) 100%),
    linear-gradient(180deg, rgba(8, 11, 9, 0.12), var(--bg) 96%);
}

.hero::before {
  opacity: 0.38;
  background:
    radial-gradient(ellipse at 74% 45%, rgba(32, 255, 154, 0.05), transparent 48%),
    repeating-linear-gradient(90deg, rgba(32, 255, 154, 0.014) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 160px);
}

.hero-video img {
  opacity: 0.18;
  filter: saturate(0.94) contrast(1.02);
}

.energy-flow-ready .energy-particles,
.energy-flow-ready #energy-particles {
  opacity: 0.12;
}

.hero-shade {
  background:
    radial-gradient(ellipse at 76% 45%, rgba(32, 255, 154, 0.045), transparent 52%),
    linear-gradient(180deg, rgba(8, 11, 9, 0) 66%, var(--bg) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.62fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0;
}

.hero-copy {
  max-width: 760px;
  color: #dce9e2;
}

.cta-note {
  max-width: 560px;
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-product,
.ops-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(13, 21, 18, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.hero-product {
  padding: 20px;
}

.hero-product::before,
.ops-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-left: 3px solid rgba(32, 255, 154, 0.34);
}

.product-topline {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 4px 10px;
  align-items: center;
  min-height: 42px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-system {
  display: grid;
  gap: 18px;
}

.hero-system .product-topline {
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 4px 12px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  color: #9dffd1;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(32, 255, 154, 0.18);
  border-radius: 999px;
  background: rgba(32, 255, 154, 0.075);
}

.live-dot {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(32, 255, 154, 0.36);
}

.product-topline strong,
.product-topline small {
  display: block;
  line-height: 1.2;
}

.system-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 4px 0 0;
}

.system-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.system-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  transform-origin: left;
  animation: railProgress 18.4s linear infinite;
}

.system-rail::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px 5px var(--green);
  animation: railGlow 18.4s linear infinite;
}

@keyframes railProgress {
  0% { transform: scaleX(0); opacity: 0; }
  1% { opacity: 1; }
  90% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}

@keyframes railGlow {
  0% { transform: translateX(-10px); opacity: 0; }
  2% { opacity: 1; }
  88% { transform: translateX(calc(100vw * 0.8)); opacity: 1; }
  100% { opacity: 0; }
}

.hero-system {
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.system-workspace {
  flex-grow: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.78fr);
  gap: 10px;
  margin-top: auto;
}

.system-node {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  z-index: 1;
  color: var(--muted);
  text-align: center;
  opacity: 1;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    color 0.6s ease;
}

.system-node::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 50%;
  width: 40px;
  height: 40px;
  pointer-events: none;
  border-radius: var(--radius);
  background: #101915;
  transform: translateX(-50%);
}

.system-node svg {
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  padding: 8px;
  color: var(--soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--surface-3);
  box-shadow: none;
  transition:
    color 0.6s ease,
    border-color 0.6s ease,
    background 0.6s ease,
    box-shadow 0.6s ease;
}

.system-node strong,
.system-node small {
  display: block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-node strong {
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.15;
}

.system-node small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.15;
}

.system-node.is-complete,
.system-node.is-active {
  opacity: 1;
  color: #fff;
}

.system-node.is-active {
  transform: translateY(-1px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.system-node.is-active svg {
  color: var(--green);
  border-color: rgba(32, 255, 154, 0.3);
  background: rgba(32, 255, 154, 0.09);
  animation: steadyGlow 0.8s ease-out forwards;
}

@keyframes steadyGlow {
  0% { box-shadow: 0 0 0 0 rgba(32, 255, 154, 0.2); }
  100% { box-shadow: 0 0 12px 2px rgba(32, 255, 154, 0.4); }
}

.system-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.78fr);
  gap: 10px;
}

.system-card,
.system-action-card {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.032);
}

.system-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 118px;
  padding: 13px;
}

.system-message-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(14, 24, 20, 0.78);
}

.system-insight-card {
  border-color: rgba(32, 255, 154, 0.18);
  background: rgba(32, 255, 154, 0.07);
}

.system-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.system-card-meta span:not(.system-avatar) {
  overflow: hidden;
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-avatar {
  display: inline-grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #06120c !important;
  font-size: 0.68rem !important;
  font-weight: 900;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  border-radius: 50%;
  background: linear-gradient(145deg, #dfffee, #71ffc0);
  box-shadow: 0 0 0 2px rgba(32, 255, 154, 0.08);
}

.system-card-meta time {
  margin-left: auto;
  color: rgba(214, 231, 221, 0.62);
  font-size: 0.76rem;
  line-height: 1;
  white-space: nowrap;
}

.system-card p,
.system-card strong,
.system-card small {
  margin: 0;
  transition: opacity 360ms var(--ease-out-soft), transform 420ms var(--ease-out-soft);
}

.system-card p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.system-card strong {
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.18;
}

.system-card small {
  color: var(--muted);
  line-height: 1.35;
}

.system-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.system-chips em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  color: #c9f5df;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
}

.system-action-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  color: var(--soft);
  border-color: rgba(32, 255, 154, 0.22);
  background: rgba(32, 255, 154, 0.075);
}

.system-action-card svg {
  color: var(--green);
}

.system-meter {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
}

.system-meter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), rgba(88, 217, 255, 0.7));
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 780ms var(--ease-out-soft);
}

.product-topline small,
.product-metrics small,
.ops-row span {
  color: var(--muted);
}

.product-window {
  display: grid;
  gap: 11px;
  padding: 18px 0;
}

.product-message {
  max-width: 88%;
  padding: 12px 13px;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.42;
  border-radius: var(--radius);
}

.product-message.client {
  background: #151d19;
}

.product-message.assistant {
  justify-self: end;
  background: rgba(21, 111, 75, 0.9);
}

.product-result {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 12px;
  color: var(--soft);
  font-size: 0.9rem;
  border: 1px solid rgba(32, 255, 154, 0.22);
  border-radius: var(--radius);
  background: rgba(32, 255, 154, 0.07);
}

.product-result svg {
  color: var(--green);
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-metrics span {
  display: grid;
  gap: 2px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.032);
}

.product-metrics strong {
  color: #fff;
  font-size: 1rem;
}

.product-metrics small {
  font-size: 0.78rem;
}

.proof-card strong {
  font-size: 0.95rem;
}

.trust-strip {
  background: #0d1512;
}

.service-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(32, 255, 154, 0.075), rgba(255, 255, 255, 0.018)),
    var(--panel-2);
}

.service-row .service-card-featured {
  grid-column: auto;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.demo-shell-premium {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.86fr);
}

.demo-stack {
  display: grid;
  gap: 14px;
}

.ops-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ops-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.ops-row strong {
  color: #fff;
  text-align: right;
}

.ops-row-highlight {
  border-color: rgba(32, 255, 154, 0.24);
  background: rgba(32, 255, 154, 0.07);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 24px;
}

.evidence-layout-premium {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  align-items: center;
}

.proof-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  color: #07130d;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(239, 250, 244, 0.98), rgba(208, 230, 219, 0.95)),
    #eaf7f0;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.proof-panel-main strong {
  display: block;
  max-width: 720px;
  margin: 8px 0 12px;
  color: #06120c;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.02;
}

.proof-panel-main p {
  max-width: 620px;
  margin-bottom: 0;
  color: #25483a;
}

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

.proof-timeline span {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 15px;
  border: 1px solid rgba(7, 18, 13, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.055);
  color: #183328;
  font-weight: 780;
  line-height: 1.3;
}

.proof-timeline svg {
  color: #00683f;
}

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

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

.metric-card {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    var(--panel);
  box-shadow: var(--shadow);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  max-width: 13ch;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.12;
}

.metric-card span {
  color: var(--muted);
  line-height: 1.45;
}

.assurance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.assurance-list div {
  padding: 20px 22px;
}

.assurance-list div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.assurance-list strong,
.assurance-list span {
  display: block;
}

.assurance-list strong {
  margin-bottom: 6px;
  color: #fff;
}

.assurance-list span {
  color: var(--muted);
  line-height: 1.45;
}

.mobile-sticky-cta {
  display: none;
}

img[src*="preview-"] {
  animation: none;
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section,
  .site-header {
    max-width: 100vw;
    overflow-x: clip;
  }

  .container {
    width: calc(100vw - 42px);
    max-width: calc(100vw - 42px);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 112px 0 32px;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.42rem, 5.9vw, 1.58rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-actions {
    max-width: none;
    gap: 10px;
    margin-bottom: 16px;
  }

  .btn {
    min-width: 0;
    min-height: 46px;
    padding: 0 14px;
    text-align: center;
    white-space: normal;
  }

  .cta-note {
    margin-top: -4px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .hero-system {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 10px;
    padding: 12px;
  }

  .hero-system .product-topline {
    min-height: auto;
    padding-bottom: 10px;
  }

  .product-topline strong {
    font-size: 0.95rem;
  }

  .product-topline small {
    font-size: 0.78rem;
  }

  .system-status {
    min-height: 23px;
    font-size: 0.66rem;
  }

  .system-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    overflow: hidden;
  }

  .system-node[data-system-node="2"] {
    display: none;
  }

  .system-node {
    grid-template-columns: 1fr;
    justify-items: center;
    min-width: 0;
    gap: 3px;
    text-align: center;
  }

  .system-node strong {
    font-size: 0.72rem;
  }

  .system-workspace,
  .system-card,
  .system-action-card {
    max-width: 100%;
    min-width: 0;
  }

  .system-node svg {
    grid-row: auto;
    width: 17px;
    height: 17px;
    padding: 7px;
  }

  .system-node small,
  .system-chips,
  .system-meter,
  .product-metrics {
    display: none;
  }

  .system-workspace {
    gap: 8px;
  }

  .system-card {
    gap: 6px;
    padding: 11px;
  }

  .system-card span {
    font-size: 0.66rem;
  }

  .system-card p {
    font-size: 0.9rem;
  }

  .system-card strong {
    font-size: 0.96rem;
  }

  .system-action-card {
    min-height: auto;
    padding: 10px;
    font-size: 0.9rem;
  }

  .delivery-section {
    padding: 46px 0 50px;
  }

  .delivery-layout {
    gap: 20px;
  }

  .delivery-copy p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .delivery-package {
    gap: 10px;
  }

  .delivery-package article {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: auto;
    padding: 14px;
  }

  .delivery-package svg {
    width: 18px;
    height: 18px;
    padding: 8px;
  }

  .delivery-package span {
    font-size: 0.88rem;
  }

  .reality-grid {
    gap: 10px;
    margin-top: 12px;
  }

  .reality-panel {
    padding: 14px;
  }

  .reality-panel > span {
    margin-bottom: 10px;
    font-size: 0.67rem;
  }

  .reality-tags,
  .stack-list {
    gap: 6px;
  }

  .reality-tags em,
  .stack-list strong {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .loss-section {
    padding-top: 50px;
  }

  .loss-layout {
    gap: 22px;
    margin-bottom: 14px;
  }

  .loss-copy h2 {
    font-size: clamp(1.72rem, 7.2vw, 2rem);
    line-height: 1.08;
  }

  .loss-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .loss-points {
    gap: 8px;
    margin-top: 16px;
  }

  .loss-points span {
    min-height: auto;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .loss-board {
    gap: 12px;
    padding: 14px;
  }

  .loss-board-top strong {
    font-size: 1.05rem;
  }

  .loss-control {
    gap: 7px;
    font-size: 0.9rem;
  }

  .loss-result {
    padding: 14px;
  }

  .loss-result strong {
    font-size: clamp(2.4rem, 15vw, 3.7rem);
  }

  .loss-mini-grid {
    display: none;
  }

  .service-row {
    gap: 10px;
  }

  .service-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 12px;
    padding: 16px;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  .demo-shell {
    gap: 22px;
  }

  .phone-demo,
  .ops-panel {
    padding: 10px;
  }

  .ops-row {
    display: grid;
    gap: 3px;
    padding: 10px;
  }

  .ops-row strong {
    text-align: left;
  }

  .method-map {
    gap: 24px;
  }

  .method-lead > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .method-signal {
    margin-top: 18px;
    padding-top: 14px;
  }

  .method-flow {
    gap: 10px;
  }

  .method-flow::before {
    display: none;
  }

  .method-step,
  .method-step-primary,
  .method-step-wide {
    min-height: auto;
    padding: 16px;
  }

  .method-step h3 {
    margin: 6px 0 8px;
    font-size: 0.98rem;
  }

  .method-step p,
  .method-step li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .method-step ul {
    display: none;
  }

  .evidence-layout {
    gap: 22px;
    margin-bottom: 14px;
  }

  .proof-panel {
    gap: 14px;
    padding: 16px;
  }

  .proof-panel-main strong {
    font-size: 1.5rem;
    line-height: 1.08;
  }

  .proof-timeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-timeline span {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    min-height: auto;
    padding: 12px;
  }

  .assurance-list div {
    padding: 14px;
  }

  .portfolio-grid {
    gap: 10px;
  }

  .faq-decision {
    gap: 24px;
  }

  .faq-note {
    margin-top: 18px;
    padding-top: 14px;
  }

  .faq-answers {
    gap: 8px;
  }

  .faq-answer,
  .faq-answer-main {
    min-height: auto;
    padding: 16px;
  }

  .faq-answer h3 {
    font-size: 0.98rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .final-cta {
    padding: 62px 0;
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    min-height: 50px;
  }
}

@media (max-width: 640px) {
  main,
  section,
  .site-header {
    max-width: 100vw;
    overflow-x: clip;
  }

  .container {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(1.42rem, 5.9vw, 1.58rem);
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .cta-note {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-product {
    width: 100%;
    max-width: 310px;
    margin-inline: 0;
  }

  .hero-system,
  .system-flow,
  .system-workspace,
  .system-card,
  .system-action-card {
    max-width: 100%;
    min-width: 0;
  }

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

  .system-node {
    grid-template-columns: 1fr;
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .system-node strong {
    font-size: 0.72rem;
  }

  .btn {
    min-width: 0;
    text-align: center;
    white-space: normal;
  }
}

.hero-system .system-card,
.hero-system .system-action-card,
.hero-system .system-status,
.hero-system .product-topline strong,
.hero-system .product-topline small {
  transition:
    opacity 260ms var(--ease-out-soft),
    transform 300ms var(--ease-out-soft);
}

.hero-system.is-changing .system-card,
.hero-system.is-changing .system-action-card,
.hero-system.is-changing .system-status,
.hero-system.is-changing .product-topline strong,
.hero-system.is-changing .product-topline small {
  opacity: 0.62;
  transform: translateY(2px);
}

.hero-system .product-topline {
  min-height: 58px;
}

.hero-system .system-message-card {
  min-height: 142px;
}

.hero-system .system-insight-card {
  min-height: 142px;
}

.hero-system .system-action-card {
  min-height: 58px;
}

.hero-system .system-card p {
  min-height: 2.84em;
}

.hero-system .system-card strong {
  min-height: 1.18em;
}

.hero-system .system-card small {
  min-height: 2.7em;
}

@media (max-width: 640px) {
  .hero-system .system-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 8px 0 2px;
    overflow: visible;
  }

  .hero-system .system-node,
  .hero-system .system-node[data-system-node="2"] {
    display: grid;
  }

  .hero-system .system-rail {
    display: block;
    position: absolute;
    left: 10%;
    right: 10%;
    top: 26px;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 255, 154, 0.36), rgba(88, 217, 255, 0.22), transparent);
  }

  .hero-system .system-rail::after {
    display: block;
    top: -2px;
    width: 44px;
    height: 5px;
    opacity: 0.88;
    animation: none;
  }

  .hero-system .system-node {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    min-width: 0;
    text-align: center;
    transform: none;
  }

  .hero-system .system-node::before {
    top: 0px;
    width: 36px;
    height: 36px;
  }

  .hero-system .system-node.is-active {
    transform: none;
  }

  .hero-system .system-node svg {
    grid-row: auto;
    position: relative;
    z-index: 2;
    width: 16px;
    height: 16px;
    padding: 7px;
  }

  .hero-system .system-node strong {
    max-width: 100%;
    font-size: 0.66rem;
  }

  .hero-system .system-node small {
    display: none;
  }

  .hero-system .product-topline {
    min-height: 72px;
  }

  .hero-system .system-message-card,
  .hero-system .system-insight-card {
    min-height: 128px;
  }

  .hero-system .system-action-card {
    min-height: 64px;
  }
}

@media (max-width: 640px) {
  .hero-product {
    width: min(100%, 310px) !important;
    max-width: calc(100vw - 64px) !important;
    margin-inline: 0 !important;
  }

  .hero-system {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .hero-system .system-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .hero-system .system-rail::before {
    display: block;
  }

  .hero-system .system-rail::after {
    display: block;
    top: -2px !important;
    width: 44px !important;
    height: 5px !important;
    opacity: 0.88 !important;
    animation: none !important;
  }
}

/* Final timeline line effect: replaces the old moving dot with a live rail. */
.system-rail::before,
.hero-system .system-rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 3px;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32, 255, 154, 0.08), rgba(32, 255, 154, 0.88), rgba(88, 217, 255, 0.34));
  box-shadow: 0 0 14px rgba(32, 255, 154, 0.22);
  transform: scaleX(var(--system-progress, 0));
  transform-origin: left;
  transition: transform 920ms var(--ease-out-soft);
}

.system-rail::after,
.hero-system .system-rail::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px !important;
  width: 44px !important;
  height: 5px !important;
  pointer-events: none;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, rgba(32, 255, 154, 0.96), transparent) !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 10px rgba(32, 255, 154, 0.58));
  opacity: 0.88 !important;
  animation: none !important;
  transform: translateX(var(--system-glow-x, 0px)) !important;
  transition: transform 920ms var(--ease-out-soft), opacity 280ms ease;
}

/* Final motion corrections */
.system-rail::after,
.hero-system .system-rail::after {
  animation: none !important;
  transform: translateX(var(--system-glow-x, 0px));
  transition: transform 720ms var(--ease-out-soft), opacity 280ms ease;
}

@media (max-width: 980px) {
  .container.strip-grid {
    animation: trustMarquee 8s linear infinite;
  }
}

/* Final motion corrections */
.system-rail::after,
.hero-system .system-rail::after {
  animation: none !important;
  transform: translateX(var(--system-glow-x, 0px));
  transition: transform 720ms var(--ease-out-soft), opacity 280ms ease;
}

@media (max-width: 980px) {
  .container.strip-grid {
    animation: trustMarquee 8s linear infinite;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-links {
    grid-column: 1 !important;
  }

  .mobile-sticky-cta {
    left: 12px !important;
    right: 12px !important;
    min-height: 52px !important;
    color: var(--green) !important;
    border: 1px solid var(--border-green) !important;
    background: rgba(7, 16, 14, 0.92) !important;
    box-shadow:
      0 14px 42px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(32, 255, 154, 0.08) inset,
      0 0 28px rgba(32, 255, 154, 0.1) !important;
  }

  .mobile-sticky-cta svg {
    color: var(--green) !important;
  }
}

/* Final stability pass for hero system and trust strip alignment. */
.strip-grid span {
  justify-content: center;
  text-align: center;
}

.hero-system .system-insight-card {
  height: 142px !important;
  min-height: 142px !important;
  overflow: hidden;
  align-content: start;
}

.hero-system .system-insight-card strong,
.hero-system .system-insight-card small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.hero-system .system-insight-card strong {
  -webkit-line-clamp: 1;
}

.hero-system .system-insight-card small {
  -webkit-line-clamp: 2;
}

.hero-system .system-chips {
  min-height: 22px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero-system .system-insight-card {
    height: 128px !important;
    min-height: 128px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    display: grid;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    aspect-ratio: 1;
  }

  .header-cta svg {
    width: 19px;
    height: 19px;
    margin: 0;
  }

  .hero-system .system-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px 4px 2px;
    overflow: visible;
  }

  .hero-system .system-node[data-system-node="2"] {
    display: none;
  }

  .hero-system .system-rail {
    display: block;
    position: absolute;
    left: 15%;
    right: 15%;
    top: 26px;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 255, 154, 0.36), rgba(88, 217, 255, 0.22), transparent);
  }

  .hero-system .system-rail::after {
    display: block;
    top: -2px;
    width: 44px;
    height: 5px;
    opacity: 0.88;
    animation: none;
  }

  .hero-system .system-node {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    text-align: center;
    opacity: 0.68;
    transform: none;
  }

  .hero-system .system-node.is-active {
    transform: none;
  }

  .hero-system .system-node svg {
    grid-row: auto;
    width: 18px;
    height: 18px;
    padding: 8px;
  }

  .hero-system .system-node strong {
    font-size: 0.72rem;
  }

  .hero-system .system-node small {
    display: block;
    font-size: 0.66rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .header-cta {
    display: grid;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    line-height: 0;
    aspect-ratio: 1;
  }

  .header-cta svg {
    width: 19px;
    height: 19px;
    margin: 0;
  }

  .hero-system {
    overflow: hidden;
  }

  .system-flow {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px 4px 2px;
    overflow: visible;
  }

  .system-node[data-system-node="2"] {
    display: none;
  }

  .system-rail {
    display: block;
    position: absolute;
    left: 15%;
    right: 15%;
    top: 26px;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 255, 154, 0.36), rgba(88, 217, 255, 0.22), transparent);
  }

  .system-rail::after {
    display: block;
    top: -2px;
    width: 44px;
    height: 5px;
    opacity: 0.88;
    animation: none;
  }

  .system-node {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    text-align: center;
    opacity: 0.68;
    transform: none;
  }

  .system-node.is-active {
    transform: none;
  }

  .system-node svg {
    grid-row: auto;
    width: 18px;
    height: 18px;
    padding: 8px;
  }

  .system-node strong {
    font-size: 0.72rem;
  }

  .system-node small {
    display: block;
    font-size: 0.66rem;
    white-space: nowrap;
  }
}

.loss-board,
.method-step-primary,
.faq-answer-main,
.proof-panel {
  background:
    linear-gradient(145deg, rgba(248, 255, 251, 0.99), rgba(217, 237, 226, 0.97)),
    #f2fbf6;
}

.loss-board-top strong,
.method-step-primary h3,
.faq-answer-main h3,
.proof-panel-main strong,
.loss-mini-grid strong {
  color: #03110a;
}

.loss-control span,
.method-step-primary p,
.method-step-primary li,
.faq-answer-main p,
.proof-timeline span,
.loss-mini-grid small {
  color: #10281d;
}

.loss-board-top span,
.proof-kicker,
.method-step-primary span,
.faq-answer-main span,
.proof-timeline svg,
.loss-control output {
  color: #005f39;
}

.method-step-primary li {
  font-weight: 760;
}

.method-step-primary li::before {
  color: #005f39;
  opacity: 0.95;
}

@media (max-width: 640px) {
  main,
  section,
  .site-header {
    max-width: 100vw;
    overflow-x: clip;
  }

  .container {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(1.42rem, 5.9vw, 1.58rem);
    overflow-wrap: anywhere;
  }

  .btn {
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .hero-system,
  .system-flow,
  .system-workspace,
  .system-card,
  .system-action-card {
    max-width: 100%;
    min-width: 0;
  }

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

  .system-node {
    grid-template-columns: 1fr;
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .system-node strong {
    font-size: 0.72rem;
  }
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  :is(.btn, .header-cta) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition:
      transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 440ms ease,
      border-color 440ms ease,
      background 440ms ease,
      color 280ms ease;
  }

  :is(.btn, .header-cta)::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 34%),
      linear-gradient(135deg, transparent 8%, rgba(32, 255, 154, 0.12) 42%, rgba(255, 255, 255, 0.12) 50%, rgba(32, 255, 154, 0.08) 58%, transparent 92%);
    transform: translate3d(-18%, 0, 0) scaleX(0.82) skewX(-10deg);
    transition:
      opacity 360ms ease,
      transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  :is(.btn, .header-cta):hover {
    transform: translate3d(0, -2px, 0) scale(1.01);
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(32, 255, 154, 0.22),
      0 0 18px rgba(32, 255, 154, 0.11);
  }

  :is(.btn, .header-cta):hover::before {
    opacity: 0.38;
    transform: translate3d(18%, 0, 0) scaleX(1) skewX(-10deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: headerDrop 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-video img {
    animation: heroVideoDrift 20s ease-in-out infinite;
  }

  img[src*="preview-"] {
    animation: none;
  }
}

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

  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-proof > div {
    opacity: 1;
    transform: none;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes systemPacket {
  0% {
    left: 0;
    opacity: 0;
    transform: scale(0.76);
  }
  8%,
  88% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes heroVideoDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.07) translate3d(-18px, -8px, 0);
  }
}

@keyframes previewFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -7px, 0) scale(1.015);
  }
}

@keyframes previewGlow {
  0%,
  100% {
    filter: saturate(1) contrast(1);
  }
  50% {
    filter: saturate(1.08) contrast(1.04);
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(96px, auto) minmax(112px, 1fr) 40px;
    grid-template-rows: 44px;
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 999px;
    background: rgba(32, 255, 154, 0.08);
    box-shadow: 0 0 24px rgba(32, 255, 154, 0.08);
    font-size: 0;
  }

  .header-cta svg {
    width: 19px;
    height: 19px;
  }

  .nav-links {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    padding-top: 0;
  }

  .nav-links a {
    width: auto;
    height: 30px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 52px;
  }

  .hero-layout,
  .delivery-layout,
  .reality-grid,
  .loss-layout,
  .method-map,
  .evidence-layout,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .method-lead {
    position: static;
  }

  .method-flow,
  .faq-decision,
  .faq-answers {
    grid-template-columns: 1fr;
  }

  .method-flow::before {
    left: 11px;
  }

  .method-step-primary,
  .method-step-wide,
  .faq-answer-main {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .hero-product {
    max-width: 560px;
    margin-inline: auto;
  }

  .system-workspace {
    grid-template-columns: 1fr;
  }

  .system-action-card {
    grid-column: auto;
  }

  .section {
    scroll-margin-top: 76px;
  }

  .hero-content {
    width: min(100% - 40px, 720px);
    margin-inline: auto;
  }

  .hero-proof,
  .strip-grid,
  .card-grid,
  .delivery-package,
  .service-row,
  .portfolio-grid,
  .split-layout,
  .demo-shell,
  .feature-band,
  .faq-layout,
  .proof-timeline,
  .assurance-list {
    grid-template-columns: 1fr;
  }

  .loss-layout {
    margin-bottom: 20px;
  }

  .loss-board,
  .proof-panel {
    max-width: 680px;
    margin-inline: auto;
  }

  .assurance-list div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card-featured {
    grid-column: auto;
  }

  .section-heading.compact {
    margin-bottom: 28px;
  }

  .trust-strip {
    overflow: hidden;
    padding: 12px 0;
  }

  .container.strip-grid {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    margin-inline: 0;
    gap: 0;
    animation: trustMarquee 8s linear infinite;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    will-change: transform;
  }

  .container.strip-grid.is-interactive {
    animation: none;
  }

  .container.strip-grid.is-dragging {
    cursor: grabbing;
  }

  .strip-grid span,
  .strip-grid span[aria-hidden="true"] {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(32, 255, 154, 0.16);
    border-radius: 999px;
    background: rgba(7, 16, 14, 0.78);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
    margin-right: 10px;
    white-space: nowrap;
  }

  .feature-band {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 84px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    grid-template-columns: minmax(88px, 1fr) 38px;
    grid-template-rows: 38px 34px;
    gap: 6px 8px;
    padding: 7px 10px 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    white-space: nowrap;
    font-size: 0.76rem;
  }

  .brand-text strong {
    font-size: 0.66rem;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    width: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .header-cta svg {
    width: 18px;
    height: 18px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    width: auto;
    height: 28px;
    flex: 0 0 auto;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 128px 0 42px;
    align-items: start;
  }

  .hero-layout {
    gap: 24px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-copy,
  .cta-note,
  .proof-card span {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-product {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-system {
    gap: 14px;
    padding: 16px;
    overflow: hidden;
  }

  .hero-system .product-topline {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .hero-system .product-topline small,
  .system-card-meta,
  .system-message-card p,
  .system-insight-card small,
  .system-action-card span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .system-status {
    grid-column: 2;
    justify-self: start;
    min-height: 25px;
  }

  .system-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .system-rail {
    display: none;
  }

  .system-node {
    grid-template-columns: 36px 1fr;
    justify-items: start;
    text-align: left;
  }

  .system-node svg {
    grid-row: 1 / span 2;
    width: 18px;
    height: 18px;
  }

  .system-card {
    min-height: auto;
  }

  .loss-section {
    padding-top: 62px;
  }

  .loss-copy h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .loss-points {
    margin-top: 18px;
  }

  .loss-board {
    padding: 20px;
  }

  .loss-mini-grid {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    padding: 20px;
  }

  .product-metrics,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .product-metrics span {
    grid-template-columns: auto 1fr;
    align-items: baseline;
  }

  .product-metrics small {
    justify-self: end;
  }

  h1 {
    max-width: 360px;
    font-size: 2.05rem;
    line-height: 1.07;
    text-wrap: auto;
  }

  h2 {
    font-size: 1.74rem;
    line-height: 1.14;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions {
    max-width: 340px;
    margin-bottom: 24px;
  }

  .proof-card {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 74px;
    padding: 14px;
  }

  .proof-card svg {
    width: 22px;
    height: 22px;
  }

  .proof-card strong {
    font-size: 0.92rem;
  }

  .proof-card small {
    font-size: 0.82rem;
  }

  .service-card {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: auto;
    padding: 22px 20px;
  }

  .service-card svg,
  .trust-card svg {
    width: 22px;
    height: 22px;
    padding: 9px;
  }

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

  .section {
    padding: 72px 0;
  }

  .demo-shell {
    gap: 30px;
  }

  .phone-demo {
    width: 100%;
    padding: 12px;
  }

  .message {
    max-width: 92%;
  }

  .feature-band {
    padding: 20px;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    z-index: 70;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    color: #03110b;
    font-weight: 850;
    border-radius: var(--radius);
    background: var(--green);
    box-shadow:
      0 14px 42px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 112px 0 32px;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.76rem, 7.2vw, 1.95rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-actions {
    max-width: none;
    gap: 10px;
    margin-bottom: 16px;
  }

  .btn {
    min-height: 46px;
    padding: 0 14px;
  }

  .cta-note {
    margin-top: -4px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .hero-system {
    gap: 10px;
    padding: 12px;
  }

  .hero-system .product-topline {
    min-height: auto;
    padding-bottom: 10px;
  }

  .product-topline strong {
    font-size: 0.95rem;
  }

  .product-topline small {
    font-size: 0.78rem;
  }

  .system-status {
    min-height: 23px;
    font-size: 0.66rem;
  }

  .system-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .system-node[data-system-node="2"] {
    display: none;
  }

  .system-node {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    text-align: center;
  }

  .system-node svg {
    grid-row: auto;
    width: 17px;
    height: 17px;
    padding: 7px;
  }

  .system-node small,
  .system-chips,
  .system-meter,
  .product-metrics {
    display: none;
  }

  .system-workspace {
    gap: 8px;
  }

  .system-card {
    gap: 6px;
    padding: 11px;
  }

  .system-card span {
    font-size: 0.66rem;
  }

  .system-card p {
    font-size: 0.9rem;
  }

  .system-card strong {
    font-size: 0.96rem;
  }

  .system-action-card {
    min-height: auto;
    padding: 10px;
    font-size: 0.9rem;
  }

  .delivery-section {
    padding: 46px 0 50px;
  }

  .delivery-layout {
    gap: 20px;
  }

  .delivery-copy p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .delivery-package {
    gap: 10px;
  }

  .delivery-package article {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: auto;
    padding: 14px;
  }

  .delivery-package svg {
    width: 18px;
    height: 18px;
    padding: 8px;
  }

  .delivery-package span {
    font-size: 0.88rem;
  }

  .reality-grid {
    gap: 10px;
    margin-top: 12px;
  }

  .reality-panel {
    padding: 14px;
  }

  .reality-panel > span {
    margin-bottom: 10px;
    font-size: 0.67rem;
  }

  .reality-tags,
  .stack-list {
    gap: 6px;
  }

  .reality-tags em,
  .stack-list strong {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .loss-section {
    padding-top: 50px;
  }

  .loss-layout {
    gap: 22px;
    margin-bottom: 14px;
  }

  .loss-copy h2 {
    font-size: clamp(1.72rem, 7.2vw, 2rem);
    line-height: 1.08;
  }

  .loss-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .loss-points {
    gap: 8px;
    margin-top: 16px;
  }

  .loss-points span {
    min-height: auto;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .loss-board {
    gap: 12px;
    padding: 14px;
  }

  .loss-board-top strong {
    font-size: 1.05rem;
  }

  .loss-control {
    gap: 7px;
    font-size: 0.9rem;
  }

  .loss-result {
    padding: 14px;
  }

  .loss-result strong {
    font-size: clamp(2.4rem, 15vw, 3.7rem);
  }

  .loss-mini-grid {
    display: none;
  }

  .service-row {
    gap: 10px;
  }

  .service-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 12px;
    padding: 16px;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  .demo-shell {
    gap: 22px;
  }

  .phone-demo,
  .ops-panel {
    padding: 10px;
  }

  .ops-row {
    display: grid;
    gap: 3px;
    padding: 10px;
  }

  .ops-row strong {
    text-align: left;
  }

  .method-map {
    gap: 24px;
  }

  .method-lead > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .method-signal {
    margin-top: 18px;
    padding-top: 14px;
  }

  .method-flow {
    gap: 10px;
  }

  .method-flow::before {
    display: none;
  }

  .method-step,
  .method-step-primary,
  .method-step-wide {
    min-height: auto;
    padding: 16px;
  }

  .method-step h3 {
    margin: 6px 0 8px;
    font-size: 0.98rem;
  }

  .method-step p,
  .method-step li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .method-step ul {
    display: none;
  }

  .evidence-layout {
    gap: 22px;
    margin-bottom: 14px;
  }

  .proof-panel {
    gap: 14px;
    padding: 16px;
  }

  .proof-panel-main strong {
    font-size: 1.5rem;
    line-height: 1.08;
  }

  .proof-timeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-timeline span {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    min-height: auto;
    padding: 12px;
  }

  .assurance-list div {
    padding: 14px;
  }

  .portfolio-grid {
    gap: 10px;
  }

  .faq-decision {
    gap: 24px;
  }

  .faq-note {
    margin-top: 18px;
    padding-top: 14px;
  }

  .faq-answers {
    gap: 8px;
  }

  .faq-answer,
  .faq-answer-main {
    min-height: auto;
    padding: 16px;
  }

  .faq-answer h3 {
    font-size: 0.98rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .final-cta {
    padding: 62px 0;
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    min-height: 50px;
  }
}

@media (max-width: 640px) {
  main,
  section,
  .site-header {
    max-width: 100vw;
    overflow-x: clip;
  }

  .container {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(1.42rem, 5.9vw, 1.58rem);
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .cta-note {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-product {
    width: 100%;
    max-width: 310px;
    margin-inline: 0;
  }

  .hero-system,
  .system-flow,
  .system-workspace,
  .system-card,
  .system-action-card {
    max-width: 100%;
    min-width: 0;
  }

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

  .system-node {
    grid-template-columns: 1fr;
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .system-node strong {
    font-size: 0.72rem;
  }

  .btn {
    min-width: 0;
    text-align: center;
    white-space: normal;
  }
}

/* Final hero-system override: keeps the live WhatsApp flow stable and readable. */
.hero-system .system-card,
.hero-system .system-action-card,
.hero-system .system-status,
.hero-system .product-topline strong,
.hero-system .product-topline small {
  transition:
    opacity 260ms var(--ease-out-soft),
    transform 300ms var(--ease-out-soft);
}

.hero-system.is-changing .system-card,
.hero-system.is-changing .system-action-card,
.hero-system.is-changing .system-status,
.hero-system.is-changing .product-topline strong,
.hero-system.is-changing .product-topline small {
  opacity: 0.62;
  transform: translateY(2px);
}

.hero-system .product-topline {
  min-height: 58px;
}

.hero-system .system-message-card,
.hero-system .system-insight-card {
  min-height: 142px;
}

.hero-system .system-action-card {
  min-height: 58px;
}

.hero-system .system-card p {
  min-height: 2.84em;
}

.hero-system .system-card strong {
  min-height: 1.18em;
}

.hero-system .system-card small {
  min-height: 2.7em;
}

@media (max-width: 640px) {
  .hero-system .system-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 8px 0 2px;
    overflow: visible;
  }

  .hero-system .system-node,
  .hero-system .system-node[data-system-node="2"] {
    display: grid;
  }

  .hero-system .system-rail {
    display: block;
    position: absolute;
    left: 10%;
    right: 10%;
    top: 26px;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 255, 154, 0.36), rgba(88, 217, 255, 0.22), transparent);
  }

  .hero-system .system-rail::after {
    display: block;
    top: -2px;
    width: 44px;
    height: 5px;
    opacity: 0.88;
    animation: none;
  }

  .hero-system .system-node {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    min-width: 0;
    text-align: center;
    transform: none;
  }

  .hero-system .system-node.is-active {
    transform: none;
  }

  .hero-system .system-node svg {
    grid-row: auto;
    position: relative;
    z-index: 2;
    width: 16px;
    height: 16px;
    padding: 7px;
  }

  .hero-system .system-node strong {
    max-width: 100%;
    font-size: 0.66rem;
  }

  .hero-system .system-node small {
    display: none;
  }

  .hero-system .product-topline {
    min-height: 72px;
  }

  .hero-system .system-message-card,
  .hero-system .system-insight-card {
    min-height: 128px;
  }

  .hero-system .system-action-card {
    min-height: 64px;
  }
}

@media (max-width: 640px) {
  .hero-product {
    width: min(100%, 310px) !important;
    max-width: calc(100vw - 64px) !important;
    margin-inline: 0 !important;
  }

  .hero-system {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .hero-system .system-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .hero-system .system-rail::before {
    display: block;
  }

  .hero-system .system-rail::after {
    display: block;
    top: -2px !important;
    width: 44px !important;
    height: 5px !important;
    opacity: 0.88 !important;
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 46px 0 !important;
  }

  .delivery-section,
  .loss-section {
    padding-top: 40px !important;
    padding-bottom: 44px !important;
  }

  .section-heading,
  .section-heading.compact,
  .faq-editorial {
    margin-bottom: 18px !important;
  }

  .section-heading p:not(.eyebrow),
  .delivery-copy p:not(.eyebrow),
  .loss-copy > p:not(.eyebrow),
  .method-lead > p:not(.eyebrow),
  .faq-editorial > p:not(.eyebrow),
  .final-cta-inner > p:not(.eyebrow) {
    font-size: 0.92rem !important;
    line-height: 1.46 !important;
  }

  .delivery-package,
  .service-row,
  .portfolio-grid,
  .method-flow,
  .faq-answers {
    gap: 8px !important;
  }

  .loss-board,
  .method-step-primary,
  .faq-answer-main,
  .proof-panel {
    color: var(--ink) !important;
    border: 1px solid rgba(32, 255, 154, 0.13) !important;
    background:
      linear-gradient(145deg, rgba(32, 255, 154, 0.06), rgba(255, 255, 255, 0.018)),
      rgba(12, 21, 17, 0.96) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
  }

  .loss-board-top strong,
  .method-step-primary h3,
  .faq-answer-main h3,
  .faq-answer-main button,
  .proof-panel-main strong,
  .loss-mini-grid strong {
    color: #fff !important;
  }

  .loss-control span,
  .method-step-primary p,
  .method-step-primary li,
  .faq-answer-main p,
  .proof-panel-main p,
  .proof-timeline span,
  .loss-mini-grid small {
    color: var(--soft) !important;
  }

  .loss-board-top span,
  .proof-kicker,
  .method-step-primary span,
  .faq-answer-main span,
  .proof-timeline svg,
  .loss-control output {
    color: var(--green) !important;
  }

  .proof-timeline span {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.035) !important;
  }

  .faq-decision {
    gap: 16px !important;
  }

  .faq-note {
    display: none;
  }

  .faq-answer,
  .faq-answer-main {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0 10px;
    min-height: 0 !important;
    padding: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.028);
  }

  .faq-answer span {
    grid-row: 1 / span 2;
    margin-top: 2px;
    color: var(--green);
    font-size: 0.74rem;
  }

  .faq-answer h3 {
    position: relative;
    margin: 0 !important;
    padding-right: 24px;
    font-size: 0.95rem !important;
  }

  .faq-answer h3::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    color: var(--green);
    font-weight: 900;
  }

  .faq-answer.is-open h3::after {
    content: "-";
  }

  .faq-answer p {
    grid-column: 2;
    max-height: 0;
    margin: 0 !important;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.88rem !important;
    line-height: 1.42 !important;
    opacity: 0;
    transition:
      max-height 280ms var(--ease-out-soft),
      opacity 220ms ease,
      margin-top 220ms ease;
  }

  .faq-answer.is-open p {
    max-height: 180px;
    margin-top: 8px !important;
    opacity: 1;
  }

  .final-cta {
    padding: 48px 0 72px !important;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
  border: 1px solid rgba(32, 255, 154, 0.16);
  border-radius: 999px;
  background: rgba(32, 255, 154, 0.055);
}

@media (max-width: 640px) {
  .section {
    padding: 40px 0 !important;
  }

  .section-heading p:not(.eyebrow),
  .delivery-copy p:not(.eyebrow),
  .loss-copy > p:not(.eyebrow),
  .method-lead > p:not(.eyebrow),
  .faq-editorial > p:not(.eyebrow),
  .final-cta-inner > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .service-row,
  .portfolio-grid,
  .assurance-list {
    display: flex !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 16px 8px !important;
    gap: 10px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-row::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar,
  .assurance-list::-webkit-scrollbar {
    display: none;
  }

  .service-row .service-card,
  .portfolio-grid .portfolio-card,
  .assurance-list div {
    flex: 0 0 min(78vw, 304px) !important;
    scroll-snap-align: start;
  }

  .service-row .service-card {
    min-height: 176px !important;
  }

  .portfolio-card {
    min-height: auto !important;
  }

  .portfolio-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .footer-inner {
    display: grid !important;
    gap: 16px !important;
  }

  .footer-copy {
    justify-items: start;
    gap: 12px;
  }

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

/* Final dark surface pass: keeps the visual identity consistent on desktop and mobile. */
.loss-board,
.method-step-primary,
.faq-answer-main,
.proof-panel {
  color: var(--ink) !important;
  border: 1px solid rgba(32, 255, 154, 0.14) !important;
  background:
    linear-gradient(145deg, rgba(32, 255, 154, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(12, 21, 17, 0.96) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
}

.loss-board-top strong,
.method-step-primary h3,
.faq-answer-main h3,
.faq-answer-main button,
.proof-panel-main strong,
.loss-mini-grid strong {
  color: #fff !important;
}

.loss-control span,
.method-step-primary p,
.method-step-primary li,
.faq-answer-main p,
.proof-panel-main p,
.proof-timeline span,
.loss-mini-grid small {
  color: var(--soft) !important;
}

.loss-board-top span,
.proof-kicker,
.method-step-primary span,
.faq-answer-main span,
.proof-timeline svg,
.loss-control output {
  color: var(--green) !important;
}

.loss-mini-grid span,
.proof-timeline span {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.method-step-primary li::before {
  color: var(--green) !important;
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr !important;
    grid-template-rows: 42px 34px !important;
    justify-items: center;
    padding-top: 8px !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    margin-inline: auto !important;
  }

  .site-header .header-cta {
    display: none !important;
  }

  .site-header .nav-links {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-content: center !important;
    width: 100%;
  }
}
