/* ============================================================
   OPSHIFT × POWDER
   Visual system rebuilt directly from the supplied Powder export.
   ============================================================ */

@font-face {
  font-family: "Inter Display";
  src: url("../fonts/inter-display-400-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/inter-display-400-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/inter-display-500-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/inter-display-500-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fragment Mono";
  src: url("../fonts/fragment-mono-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --bg: #000;
  --bg-soft: #0f0f0f;
  --card: rgba(23, 23, 23, 0.85);
  --surface: rgba(38, 38, 38, 0.85);
  --surface-2: rgba(48, 48, 48, 0.95);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.25);
  --text: #fff3f0;
  --text-2: rgba(255, 255, 255, 0.65);
  --text-3: #7a7a7a;
  --moss: #fff3f0;
  --moss-deep: #fff3f0;
  --accent: #fff3f0;
  --warm: #fff3f0;
  --line: rgba(255, 243, 240, 0.48);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter Display", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Inter Display", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Fragment Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: none;
}

html {
  background: #000;
  scroll-padding-top: 96px;
}
body {
  background: #000;
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.grain { display: none; }
.wrap { width: min(100%, 1128px); max-width: 1128px; padding-inline: 24px; }
.wrap-narrow { max-width: 840px; }
::selection { color: #000; background: #fff3f0; }

h1, h2, h3 {
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.055em;
}
h1 em, h2 em {
  color: var(--text-2);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}
.blog-head h1 em,
.post-head h1 em,
.svc-hero h1 em,
.legal h1 em {
  color: var(--text-2);
  font-family: var(--font);
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}
p { letter-spacing: -0.025em; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #fff3f0;
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}
.eyebrow > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff3f0;
  box-shadow: none;
}

/* Navigation */
.nav-shell {
  top: 0;
  padding: 0;
  background: transparent;
  border: 0;
}
.nav-shell.scrolled {
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav,
.nav-shell.scrolled .nav {
  width: min(100%, 1128px);
  max-width: 1128px;
  padding: 18px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand {
  gap: 9px;
  color: var(--text);
  font-family: var(--font);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.brand svg {
  width: 21px;
  height: auto;
  color: var(--text);
  filter: none;
}
.brand-word em { color: var(--text-2); }
.nav-links { gap: 2px; }
.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: 13px;
  letter-spacing: -0.03em;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}
.nav-links .lang-switch {
  color: var(--text-2);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--mono);
  font-size: 9px;
}

/* Buttons */
.btn,
button.btn {
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.035em;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.btn-white,
button.btn-white {
  color: #fff;
  border-color: #fff3f0;
  background: #fff3f0;
  box-shadow: none;
}
.btn-white:hover,
button.btn-white:hover {
  color: #fff;
  border-color: #fff3f0;
  background: rgba(255, 243, 240, 0.8);
  box-shadow: none;
}
.btn-glass,
button.btn-glass {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.btn-glass:hover,
button.btn-glass:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}
.btn-sm { min-height: 38px; padding: 9px 15px; font-size: 13px; }

/* Hero */
.hero-v2 {
  position: relative;
  min-height: 940px;
  padding: 154px 0 46px;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-landscape {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: max(1280px, 100%);
  max-width: none;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
}
.hero-landscape-far {
  z-index: 1;
  bottom: -18px;
  opacity: 0.52;
  animation: landscape-breathe 13s ease-in-out infinite alternate;
}
.hero-landscape-near {
  z-index: 2;
  opacity: 0.96;
  animation: landscape-breathe-near 11s ease-in-out infinite alternate;
}
.hero-landscape-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.96) 28%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.26) 100%);
}
.hero-v2-grid { display: block; }
.hero-v2 .hero-core {
  align-items: center;
  min-height: 0;
  padding: 0;
  text-align: center;
}
.hero-v2 h1 {
  max-width: 850px;
  margin-top: 26px;
  font-size: clamp(3.5rem, 6.25vw, 5rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.075em;
}
.hero-v2 .hero-core > p:not(.hero-trust) {
  max-width: 610px;
  margin-top: 24px;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}
.hero-v2 .hero-cta {
  justify-content: center;
  margin-top: 29px;
}
.hero-v2 .hero-trust {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: -0.02em;
  text-shadow: none;
}
.hero-stats-wrap {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 34px;
  left: 0;
  margin: auto;
}
.hero-v2 .hero-stats {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 15, 15, 0.86);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-v2 .hstat {
  padding: 20px 26px;
  border-left-color: var(--border);
}
.hero-v2 .hstat-num {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.07em;
}
.hero-v2 .hstat-label {
  color: var(--text-2);
  font-size: 11px;
  letter-spacing: -0.02em;
}

/* Trust strip */
.trust {
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
  background: #000;
}
.trust-label {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0;
}
.logo-item {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 400;
}
.marquee::before { background: linear-gradient(90deg, #000, transparent); }
.marquee::after { background: linear-gradient(270deg, #000, transparent); }

/* Shared section language */
.product-sec,
.stmt-sec,
.bento-sec,
.calc-sec,
.process-sec,
.examples-sec,
.proof-sec,
.contact-sec {
  padding-block: 128px;
  border-color: var(--border);
  background: #000;
}
.sec-head { margin-bottom: 56px; }
.sec-head h2,
.sec-head-left h2,
.stmt-h,
.split-copy h2,
.cta-inner h2,
.numbers-inner h2,
.contact-copy h2 {
  color: var(--text);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.07em;
}
.sec-head p,
.product-intro-copy,
.stmt-sub,
.split-body,
.split-list li {
  color: var(--text-2);
}
.sec-head p,
.product-intro-copy { font-size: 16px; line-height: 1.6; }
.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: clamp(44px, 8vw, 110px);
  margin-bottom: 52px;
}
.sec-head-left {
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.sec-head-left .eyebrow { margin-bottom: 22px; }
.product-intro-copy { max-width: 47ch; padding-bottom: 3px; }

/* Scan / Flow / Monitor cards */
.product-sec {
  position: relative;
  border-bottom: 1px solid var(--border);
}
.product-sec::before { display: none; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: none;
  transition: transform 0.5s var(--ease), border-color 0.35s ease;
}
.product-card:hover,
.js .product-card.reveal.in:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.product-visual {
  position: relative;
  min-height: 355px;
  margin: 11px 11px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #000;
}
.visual-grid,
.proof-grid,
.system-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(24deg, transparent 49.8%, rgba(255, 255, 255, 0.16) 50%, transparent 50.2%),
    linear-gradient(156deg, transparent 49.8%, rgba(255, 255, 255, 0.08) 50%, transparent 50.2%);
  background-size: 100% 100%;
  mask-image: none;
}
.product-card-copy {
  min-height: 236px;
  padding: 30px 31px 32px;
}
.product-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.product-card h3 {
  color: var(--text);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.product-card-copy > p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.58;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}
.product-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 243, 240, 0.74);
  box-shadow: none;
}

.scan-stack {
  position: absolute;
  inset: 68px 52px 42px;
  transform: perspective(700px) rotateX(57deg) rotateZ(-33deg);
  transform-style: preserve-3d;
}
.scan-sheet {
  position: absolute;
  width: 66%;
  height: 62%;
  top: 18%;
  left: 17%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.scan-sheet i {
  display: block;
  width: 52%;
  height: 1px;
  margin: 17px 18px 0;
  background: rgba(255, 243, 240, 0.32);
}
.scan-sheet i:nth-child(2) { width: 68%; }
.scan-sheet i:nth-child(3) { width: 38%; }
.sheet-a { opacity: 0.46; animation: sheet-float-a 5s ease-in-out infinite; }
.sheet-b { opacity: 0.7; animation: sheet-float-b 5s ease-in-out infinite; }
.sheet-c { animation: sheet-float-c 5s ease-in-out infinite; }
.scan-beam {
  position: absolute;
  right: 14%;
  left: 14%;
  top: 30%;
  height: 1px;
  background: rgba(255, 243, 240, 0.72);
  box-shadow: none;
  animation: scan-beam 3.2s ease-in-out infinite;
}
.scan-result {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--mono);
  font-size: 9px;
}
.scan-result i { width: 4px; height: 4px; border-radius: 50%; background: var(--text); }

.flow-core,
.flow-node {
  position: absolute;
  display: grid;
  place-items: center;
}
.flow-core {
  width: 92px;
  height: 92px;
  top: 50%;
  left: 50%;
  margin: -46px 0 0 -46px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: rgba(255, 243, 240, 0.72);
  background: #171717;
  box-shadow: none;
  transform: rotate(45deg);
}
.flow-core svg { transform: rotate(-45deg); }
.flow-core > i {
  position: absolute;
  inset: -17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 29px;
  animation: flow-core-pulse 3.2s ease-out infinite;
}
.flow-node {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.45);
  background: #171717;
  box-shadow: none;
  font-family: var(--mono);
  font-size: 8px;
}
.node-a { top: 18%; left: 13%; }
.node-b { top: 22%; right: 12%; }
.node-c { bottom: 18%; left: 16%; }
.node-d { right: 14%; bottom: 16%; }
.flow-line {
  position: absolute;
  width: 34%;
  height: 1px;
  top: 50%;
  left: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  transform-origin: left center;
}
.flow-line i {
  display: block;
  width: 40%;
  height: 100%;
  background: rgba(255, 243, 240, 0.76);
  animation: connector-flow 2.2s linear infinite;
}
.flow-line-a { transform: rotate(-145deg); }
.flow-line-b { transform: rotate(-35deg); }
.flow-line-c { transform: rotate(145deg); }
.flow-line-d { transform: rotate(35deg); }

.monitor-dial {
  position: absolute;
  width: 188px;
  height: 188px;
  top: 48%;
  left: 50%;
  margin: -94px 0 0 -94px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: none;
  transform: perspective(700px) rotateY(-18deg) rotateX(10deg);
}
.dial-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.dial-ring-a { inset: 18px; animation: ops-orbit 9s linear infinite; }
.dial-ring-b { inset: 40px; border-style: dashed; animation: ops-orbit-reverse 13s linear infinite; }
.dial-hand {
  position: absolute;
  width: 1px;
  height: 52px;
  bottom: 50%;
  left: 50%;
  background: rgba(255, 243, 240, 0.8);
  transform-origin: center bottom;
  animation: dial-hand 5s var(--ease) infinite;
}
.monitor-dial strong {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}
.monitor-bars {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: end;
  gap: 5px;
  width: 82px;
  height: 52px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #0f0f0f;
}
.monitor-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 2px;
  background: rgba(255, 243, 240, 0.55);
  transform-origin: bottom;
  animation: bar-rise 2.6s var(--ease) infinite alternate;
}

/* Positioning statement */
.stmt-sec { border-bottom: 1px solid var(--border); }
.stmt-mark { display: none; }
.stmt-h { max-width: 940px; }
.stmt-sub { max-width: 620px; font-size: 17px; }
.stmt-chips { gap: 14px; }
.stmt-chip {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: none;
}
.stmt-dot {
  background: rgba(255, 243, 240, 0.72);
  box-shadow: none;
}

/* Services and content cards */
.bento-sec { background: #000; }
.cell,
.p-step,
.example-card,
.faq-item,
.contact-form,
.calc-inputs,
.calc-results,
.blog-card,
.gain-panel {
  border-color: var(--border);
  background: var(--card);
  box-shadow: none;
}
.cell,
.p-step,
.example-card,
.contact-form,
.calc-inputs,
.calc-results { border-radius: 20px; }
.cell:hover,
.p-step:hover,
.example-card:hover,
.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.cell-featured { border-color: var(--border); }
.cell-featured::before { display: none; }
.featured-tag,
.p-tag,
.example-industry {
  color: var(--text-2);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--mono);
  font-size: 9px;
}
.cell h3,
.p-step h3,
.example-card h3 { font-weight: 400; }
.cell-sub,
.p-step p,
.example-card p { color: var(--text-2); }
.chat-panel,
.rules-panel,
.chart-frame,
.funnel-panel {
  border-color: var(--border);
  background: #0f0f0f;
  box-shadow: none;
}
.cell-img {
  background: #0f0f0f;
  filter: saturate(0.18);
}
.cell-img::after { background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.98)); }
.cell-img > span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.live-badge,
.rules-count,
.chart-note,
.cell-link,
.contact-email,
.footer-col a:hover,
.legal a,
.legal-back,
.post-body a { color: #fff3f0; }
.live-badge .dot,
.float-dot { background: #fff3f0; box-shadow: none; }
.rule svg,
.timeline svg,
.chat-handoff svg { stroke: rgba(255, 243, 240, 0.7) !important; }
.spec {
  color: var(--text-2);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}
.draw-line { stroke: rgba(255, 243, 240, 0.72); }

/* Split map */
.split-sec { padding: 48px 0 128px; background: #000; }
.split-list li::before { color: var(--text); }
.system-map {
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #0f0f0f;
  box-shadow: none;
}
.system-map::after { display: none; }
.system-map-grid { opacity: 0.3; }
.system-map-node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 112px;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: var(--text-2);
  background: #171717;
  box-shadow: none;
}
.system-map-node > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--mono);
  font-size: 9px;
}
.system-map-node strong { font-size: 11px; font-weight: 400; }
.map-inbox { top: 22%; left: 9%; animation: map-node 5s ease-in-out infinite; }
.map-opshift { top: 47%; left: 50%; border-color: rgba(255, 255, 255, 0.34); transform: translate(-50%, -50%); }
.map-opshift > span { color: var(--text); background: rgba(255, 255, 255, 0.08); }
.map-output { right: 9%; bottom: 22%; animation: map-node 5s ease-in-out -2.5s infinite; }
.system-map-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  transform-origin: left center;
}
.system-map-line i {
  display: block;
  width: 34%;
  height: 100%;
  background: rgba(255, 243, 240, 0.68);
  animation: connector-flow 2.4s linear infinite;
}
.line-one { top: 39%; left: 24%; width: 42%; transform: rotate(17deg); }
.line-two { top: 52%; left: 49%; width: 42%; transform: rotate(18deg); }
.line-three { top: 65%; left: 18%; width: 64%; opacity: 0.45; transform: rotate(-6deg); }
.float-card {
  right: 24px;
  bottom: 24px;
  border-color: var(--border);
  background: rgba(23, 23, 23, 0.92);
  box-shadow: none;
}
.float-tag { color: var(--text-2); background: rgba(255, 255, 255, 0.07); }

/* Calculator, process, examples */
.calc-sec,
.process-sec { border-color: var(--border); }
.calc { gap: 14px; }
.calc-field input[type="range"] { accent-color: #fff3f0; }
.calc-field-head output,
.calc-result-save .calc-result-num,
.example-metric { color: var(--text); }
.process-grid,
.examples-grid { gap: 14px; }
.p-num {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
}
.example-metric { border-top-color: var(--border); }

.numbers-sec {
  padding: 150px 0;
  border-block: 1px solid var(--border);
  background: #0f0f0f;
}
.numbers-bg-v2 {
  opacity: 0.46;
  background: url("../img/powder-hills-far.png") center 68% / cover no-repeat;
  filter: saturate(0.35) brightness(0.5);
}
.numbers-bg-v2::before { display: none; }
.numbers-veil { background: rgba(0, 0, 0, 0.58); }
.nstat { border-left-color: var(--border); }
.nstat-num { color: var(--text); font-weight: 400; letter-spacing: -0.08em; }
.nstat-label { color: var(--text-2); }

/* Testimonial, same Powder split-card structure */
.proof-sec { border-top: 1px solid var(--border); }
.proof-intro { margin-bottom: 54px; }
.proof-carousel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: none;
}
.proof-stage {
  position: relative;
  min-height: 610px;
}
.proof-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(360px, 0.77fr);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s;
}
.proof-slide.is-active { opacity: 1; visibility: visible; transform: none; }
.proof-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 56px 60px 44px;
}
.proof-mark {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.44);
}
.proof-quote blockquote {
  max-width: 34ch;
  margin: 94px 0 38px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.65vw, 2.1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.045em;
}
.proof-quote figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.proof-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 500;
}
.proof-quote figcaption strong { display: block; color: var(--text); font-size: 14px; font-weight: 500; }
.proof-quote figcaption em { display: block; color: var(--text-2); font-size: 12px; font-style: normal; }
.proof-visual {
  position: relative;
  overflow: hidden;
  margin: 54px 54px 54px 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #000;
}
.proof-company {
  position: absolute;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  top: 45%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 32px;
  color: var(--text);
  background: #171717;
  box-shadow: none;
  font-size: 42px;
  font-weight: 400;
  transform: translate(-50%, -50%);
}
.proof-orbit {
  position: absolute;
  width: 270px;
  height: 270px;
  top: 45%;
  left: 50%;
  margin: -135px 0 0 -135px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.proof-orbit-a { animation: ops-orbit 15s linear infinite; }
.proof-orbit-b { border-color: rgba(255, 255, 255, 0.12); border-style: dashed; transform: scale(0.72); animation: ops-orbit-reverse-small 11s linear infinite; }
.proof-orbit::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: -3px;
  left: 50%;
  border-radius: 50%;
  background: rgba(255, 243, 240, 0.7);
}
.proof-signal {
  position: absolute;
  width: 330px;
  height: 330px;
  top: 45%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: signal-pulse 3.4s ease-out infinite;
}
.proof-visual > strong {
  position: absolute;
  bottom: 45px;
  left: 50%;
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}
.proof-controls {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px 22px;
  border-top: 1px solid var(--border);
}
.proof-buttons { display: flex; gap: 8px; }
.proof-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-family: var(--font);
  font-size: 18px;
}
.proof-arrow:hover { color: var(--text); border-color: #fff3f0; }
.proof-dots { display: flex; gap: 7px; }
.proof-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 0.3s;
}
.proof-dots button.is-active { background: var(--text); }
.proof-progress {
  justify-self: end;
  width: min(260px, 100%);
  height: 1px;
  overflow: hidden;
  background: var(--border);
}
.proof-progress i { display: block; width: 0; height: 100%; background: #fff3f0; }
.proof-carousel.is-playing .proof-progress i { animation: proof-progress 8s linear; }

/* FAQ, CTA, contact, footer */
.faq-sec { padding: 68px 0 128px; background: #000; }
.faq-item { border-radius: 14px; }
.faq-item[open] { border-color: rgba(255, 255, 255, 0.2); }
.faq-item summary svg { color: var(--text); }
.cta-sec {
  padding: 156px 0;
  border-block: 1px solid var(--border);
  background: #000;
}
.cta-bg-v2 {
  opacity: 0.48;
  background: url("../img/powder-hills-near.png") center 62% / cover no-repeat;
  filter: saturate(0.34) brightness(0.42);
}
.cta-bg-v2::before { display: none; }
.cta-veil { background: rgba(0, 0, 0, 0.58); }
.contact-email { border-bottom-color: var(--border); }
.form-field input,
.form-field textarea,
.calc-mail-row input,
#bkForm input,
#bkForm textarea,
.chat-input input {
  color: var(--text);
  border-color: var(--border);
  background: rgba(0, 0, 0, 0.5);
}
.form-field input:focus,
.form-field textarea:focus,
.calc-mail-row input:focus,
#bkForm input:focus,
#bkForm textarea:focus,
.chat-input input:focus { border-color: #fff3f0; }
.form-check input { accent-color: #fff3f0; }
.site-footer {
  color: var(--text-2);
  border-color: var(--border);
  background: #000;
}

/* Modal, chat, cookies */
.bk-overlay { background: rgba(0, 0, 0, 0.82); }
.bk-modal,
.chat-widget,
.cookie-card {
  border-color: var(--border);
  background: rgba(23, 23, 23, 0.98);
  box-shadow: none;
}
.bk-mark,
.bk-chosen,
.bk-check { color: var(--text); }
.bk-day.sel { color: #000; background: #fff3f0; border-color: #fff3f0; }
.chat-fab { border-color: var(--border); background: #171717; box-shadow: none; }
.chat-fab svg { color: var(--text); }
.chat-fab-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--powder);
  font-style: normal;
}
.chat-fab-brand svg {
  width: 20px;
  height: auto;
}
.chat-fab-brand b {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border: 2px solid #171717;
  border-radius: 50%;
  background: var(--powder);
}
.chat-progress {
  display: block;
  width: min(232px, 62vw);
  margin-top: 10px;
}
.chat-progress[hidden] { display: none; }
.chat-progress > i {
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.chat-progress > i > b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--powder);
  transition: width 0.45s var(--ease);
}
.chat-progress > span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 243, 240, 0.52);
  font: 500 9.5px/1.3 var(--font);
  letter-spacing: 0.01em;
}
.chat-send { color: #000; background: #fff3f0; }
.chat-quick,
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 94%;
  margin: 2px 0 13px;
  animation: bubblein 0.35s var(--ease);
}
.chat-quick button,
.chat-action {
  appearance: none;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 243, 240, 0.78);
  font: 500 11.5px/1.25 var(--font);
  letter-spacing: -0.01em;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.chat-quick button:hover,
.chat-action:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 243, 240, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--powder);
}
.chat-actions {
  margin-top: -3px;
}
.chat-action-primary {
  border-color: var(--powder);
  background: var(--powder);
  color: #0a0a0a;
}
.chat-action-primary:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.chat-note a {
  color: inherit;
  text-decoration-color: rgba(255, 243, 240, 0.28);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.chat-note a:hover {
  color: var(--powder);
  text-decoration-color: var(--powder);
}

/* Service, blog and legal pages */
.svc-hero .hero-veil { background: linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.68)); }
.svc-hero,
.post-img,
.blog-card-img { background-color: #0f0f0f; }
.blog-head,
.post-head,
.legal { background: #000; }
.blog-card,
.post-img { border-color: var(--border); box-shadow: none; }

/* Motion */
.js .reveal {
  transform: translateY(24px);
  transition-duration: 0.75s;
}
@keyframes landscape-breathe {
  from { transform: translate3d(-50%, var(--hero-shift, 0px), 0) scale(1.01); }
  to { transform: translate3d(-50%, var(--hero-shift, 0px), 0) scale(1.035); }
}
@keyframes landscape-breathe-near {
  from { transform: translate3d(-50%, var(--hero-shift, 0px), 0) scale(1.025); }
  to { transform: translate3d(-50%, var(--hero-shift, 0px), 0) scale(1.055); }
}
@keyframes ops-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.84); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes ops-orbit { to { transform: rotate(360deg); } }
@keyframes ops-orbit-reverse { to { transform: rotate(-360deg); } }
@keyframes ops-orbit-reverse-small { to { transform: scale(0.72) rotate(-360deg); } }
@keyframes signal-pulse {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.7); }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes connector-flow { from { transform: translateX(-120%); } to { transform: translateX(270%); } }
@keyframes sheet-float-a {
  0%, 100% { transform: translateZ(-46px) translate(-28px, 26px); }
  50% { transform: translateZ(-46px) translate(-36px, 32px); }
}
@keyframes sheet-float-b {
  0%, 100% { transform: translateZ(0); }
  50% { transform: translateZ(6px) translate(2px, -4px); }
}
@keyframes sheet-float-c {
  0%, 100% { transform: translateZ(48px) translate(28px, -26px); }
  50% { transform: translateZ(55px) translate(36px, -32px); }
}
@keyframes scan-beam {
  0%, 100% { top: 27%; opacity: 0; }
  15% { opacity: 1; }
  75% { opacity: 1; }
  90% { top: 73%; opacity: 0; }
}
@keyframes flow-core-pulse {
  0% { opacity: 0.6; transform: scale(0.72); }
  85%, 100% { opacity: 0; transform: scale(1.22); }
}
@keyframes dial-hand {
  0%, 100% { transform: rotate(-58deg); }
  50% { transform: rotate(57deg); }
}
@keyframes bar-rise {
  from { opacity: 0.5; transform: scaleY(0.52); }
  to { opacity: 1; transform: scaleY(1); }
}
@keyframes map-node { 50% { transform: translateY(-8px); } }
@keyframes proof-progress { from { width: 0; } to { width: 100%; } }

@media (max-width: 1120px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; }
  .product-card:last-child .product-visual { min-height: 380px; }
  .proof-slide { grid-template-columns: 1fr minmax(310px, 0.7fr); }
}

@media (max-width: 860px) {
  .nav-shell { top: 0; padding: 0; }
  .nav { padding-inline: 18px; }
  .nav-links {
    border-color: var(--border);
    border-radius: 0 0 18px 18px;
    background: rgba(15, 15, 15, 0.99);
  }
  .hero-v2 { min-height: 890px; padding-top: 132px; }
  .hero-v2 h1 { font-size: clamp(3rem, 13.5vw, 4.8rem); }
  .hero-landscape { width: 1280px; }
  .hero-stats-wrap { bottom: 24px; }
  .hero-v2 .hero-stats { border-radius: 16px; }
  .hero-v2 .hstat { border-top: 1px solid var(--border); border-left: 0; }
  .hero-v2 .hstat:first-child { border-top: 0; }
  .product-sec,
  .stmt-sec,
  .bento-sec,
  .calc-sec,
  .process-sec,
  .examples-sec,
  .proof-sec,
  .contact-sec { padding-block: 92px; }
  .product-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; }
  .product-card-copy { min-height: 0; }
  .product-visual,
  .product-card:last-child .product-visual { min-height: 340px; }
  .system-map { min-height: 520px; }
  .proof-stage { min-height: 760px; }
  .proof-slide { grid-template-columns: 1fr; grid-template-rows: auto 330px; }
  .proof-quote { padding: 40px 36px 30px; }
  .proof-mark { margin-bottom: 20px; }
  .proof-quote blockquote { margin: 25px 0 28px; }
  .proof-visual { margin: 0 28px 28px; }
  .numbers-sec { padding-block: 105px; }
  .cta-sec { padding-block: 115px; }
}

@media (max-width: 580px) {
  .wrap { padding-inline: 18px; }
  .hero-v2 { min-height: 930px; padding-top: 114px; }
  .hero-v2 h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-v2 .hero-core > p:not(.hero-trust) { font-size: 16px; }
  .hero-v2 .hero-cta { width: 100%; }
  .hero-v2 .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-landscape { width: 1080px; left: 44%; }
  .hero-landscape-shade { background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.98) 38%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.35)); }
  .hero-stats-wrap { bottom: 16px; }
  .hero-v2 .hstat { padding: 14px 18px; }
  .hero-v2 .hstat-num { font-size: 1.45rem; }
  .product-visual,
  .product-card:last-child .product-visual { min-height: 300px; }
  .product-card-copy { padding: 26px 24px; }
  .scan-stack { inset: 55px 38px 40px; }
  .monitor-dial { transform: scale(0.9) perspective(700px) rotateY(-18deg) rotateX(10deg); }
  .system-map { min-height: 460px; }
  .system-map-node { width: 88px; padding: 12px 8px; }
  .system-map-node > span { width: 34px; height: 34px; }
  .map-inbox { left: 5%; }
  .map-output { right: 5%; }
  .float-card { right: 18px; bottom: 18px; left: 18px; }
  .proof-stage { min-height: 790px; }
  .proof-quote { padding: 34px 24px 26px; }
  .proof-quote blockquote { font-size: 1.35rem; }
  .proof-visual { margin: 0 18px 18px; }
  .proof-controls { grid-template-columns: auto 1fr; gap: 15px; }
  .proof-dots { justify-self: end; }
  .proof-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-landscape,
  .scan-sheet,
  .scan-beam,
  .flow-core > i,
  .flow-line i,
  .dial-ring,
  .dial-hand,
  .monitor-bars i,
  .system-map-node,
  .system-map-line i,
  .proof-orbit,
  .proof-signal,
  .proof-progress i {
    animation: none !important;
  }
  .proof-slide { transition: none; }
}

/* ============================================================
   OPSHIFT REFINEMENT
   Powder's restraint + Opshift's warmer editorial character.
   ============================================================ */

:root {
  --bg-soft: #090909;
  --card: rgba(18, 18, 18, 0.94);
  --surface: rgba(27, 27, 27, 0.96);
  --surface-2: rgba(39, 39, 39, 0.96);
  --text: #fff3f0;
  --text-2: rgba(255, 255, 255, 0.65);
  --text-3: rgba(255, 255, 255, 0.42);
  --editorial: #fff3f0;
  --editorial-soft: rgba(255, 243, 240, 0.16);
  --line: rgba(255, 243, 240, 0.42);
}

body {
  background: #000;
  color: var(--text);
}

h1 em,
h2 em {
  color: var(--editorial);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hero-v2 h1 em {
  display: block;
  margin-top: 0.035em;
  color: #fff3f0;
  line-height: 0.92;
}

.eyebrow {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  background: rgba(16, 16, 16, 0.7);
}
.eyebrow > i { background: var(--editorial); }

.nav-shell.scrolled {
  background: rgba(0, 0, 0, 0.88);
}
.nav-links {
  border-color: rgba(255, 255, 255, 0.085);
  background: rgba(9, 9, 9, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.nav-links a { color: rgba(255, 255, 255, 0.65); }

.btn-white,
button.btn-white {
  border-color: #fff3f0;
  background: #fff3f0;
}
.btn-white:hover,
button.btn-white:hover {
  border-color: #fff3f0;
  background: rgba(255, 243, 240, 0.8);
}
.btn-glass,
button.btn-glass {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 18, 0.74);
}

.hero-v2 {
  min-height: 920px;
}
.hero-landscape-far {
  opacity: 0.42;
  filter: saturate(0.72);
}
.hero-landscape-near {
  opacity: 0.82;
  filter: saturate(0.66);
}
.hero-landscape-shade {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.97) 28%, rgba(0, 0, 0, 0.18) 63%, rgba(0, 0, 0, 0.42) 100%);
}
.hero-v2 h1 {
  max-width: 920px;
  font-size: clamp(3.6rem, 6.65vw, 5.45rem);
  letter-spacing: -0.072em;
}
.hero-v2 .hero-core > p:not(.hero-trust) {
  color: rgba(255, 255, 255, 0.65);
}
.hero-v2 .hero-stats {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.hero-v2 .hstat-num { color: #fff3f0; }
.hero-v2 .hstat-label { color: rgba(255, 255, 255, 0.65); }

.trust {
  background: #050505;
}
.logo-item { color: rgba(255, 255, 255, 0.65); }

.product-sec,
.bento-sec,
.process-sec,
.proof-sec,
.contact-sec {
  background: #050505;
}
.stmt-sec,
.split-sec,
.calc-sec,
.examples-sec,
.faq-sec {
  background: #000;
}

.sec-head h2,
.sec-head-left h2,
.stmt-h,
.split-copy h2,
.cta-inner h2,
.numbers-inner h2,
.contact-copy h2 {
  letter-spacing: -0.062em;
}

.product-card,
.cell,
.p-step,
.example-card,
.faq-item,
.contact-form,
.calc-inputs,
.calc-results,
.blog-card,
.gain-panel {
  border-color: rgba(255, 255, 255, 0.105);
  background: var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.product-card:hover,
.cell:hover,
.p-step:hover,
.example-card:hover,
.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.product-visual {
  border-color: rgba(255, 255, 255, 0.09);
  background: #030303;
}
.product-kicker { color: rgba(255, 255, 255, 0.65); }
.product-meta i,
.scan-result i,
.live-badge .dot,
.float-dot {
  background: var(--editorial);
}
.scan-beam,
.flow-line i,
.system-map-line i {
  background: var(--editorial);
}
.flow-core {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff3f0;
  background: #171514;
}
.monitor-dial {
  border-color: rgba(255, 255, 255, 0.5);
}
.dial-ring-a { border-top-color: var(--editorial); }
.dial-hand,
.monitor-bars i { background: rgba(255, 255, 255, 0.65); }

.stmt-chip {
  background: rgba(18, 18, 18, 0.78);
}
.stmt-dot { background: var(--editorial); }

.featured-tag,
.p-tag,
.example-industry {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}
.example-industry {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
}
.example-industry::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--editorial);
  opacity: 0.9;
}
.chat-panel,
.rules-panel,
.chart-frame,
.funnel-panel {
  background: #090909;
}
.live-badge,
.rules-count,
.chart-note,
.cell-link {
  color: #fff3f0;
}
.rule svg,
.timeline svg,
.chat-handoff svg {
  stroke: var(--editorial) !important;
}

.system-map {
  border-color: rgba(255, 255, 255, 0.1);
  background: #090909;
}
.map-opshift {
  border-color: rgba(255, 255, 255, 0.38);
}
.map-opshift > span { color: var(--editorial); }

.calc-results {
  border-color: rgba(255, 255, 255, 0.25);
}
.calc-result-save .calc-result-num {
  color: #fff3f0;
}

.p-num {
  color: #fff3f0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.numbers-sec {
  background: #080808;
}
.numbers-bg-v2 {
  opacity: 0.34;
  filter: saturate(0.48) brightness(0.42);
}
.nstat-num { color: #fff3f0; }

.proof-carousel {
  border-color: rgba(255, 255, 255, 0.11);
  background: #111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.proof-quote blockquote {
  color: #fff3f0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.34;
  letter-spacing: -0.026em;
}
.proof-visual {
  border-color: rgba(255, 255, 255, 0.16);
  background: #050505;
}
.proof-company {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff3f0;
  background: #171514;
}
.proof-orbit::before { background: var(--editorial); }

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.24);
}

.cta-bg-v2 {
  opacity: 0.4;
  filter: saturate(0.48) brightness(0.38);
}

.contact-form {
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 860px) {
  .hero-v2 { min-height: 900px; }
  .hero-v2 h1 em { line-height: 0.98; }
}

@media (max-width: 580px) {
  .hero-v2 {
    min-height: 950px;
  }
  .hero-v2 h1 {
    font-size: clamp(2.8rem, 14.3vw, 4.1rem);
    line-height: 0.94;
  }
  .hero-v2 h1 em {
    margin-top: 0.08em;
    line-height: 0.93;
  }
}

/* ============================================================
   OPSHIFT DUOTONE + SCROLL CHOREOGRAPHY
   One dark base, one warm powder tone. Alpha values create depth.
   ============================================================ */

:root {
  --ink: #000;
  --powder: #fff3f0;
  --bg: #000;
  --bg-soft: #0f0f0f;
  --card: rgba(23, 23, 23, 0.85);
  --surface: rgba(38, 38, 38, 0.85);
  --surface-2: rgba(48, 48, 48, 0.95);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.25);
  --text: var(--powder);
  --text-2: rgba(255, 255, 255, 0.65);
  --text-3: #7a7a7a;
  --moss: var(--powder);
  --moss-deep: var(--powder);
  --accent: var(--powder);
  --warm: var(--powder);
  --editorial: var(--powder);
  --line: rgba(255, 243, 240, 0.48);
}

html,
body {
  background: var(--ink);
  color: var(--powder);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline-color: var(--powder);
}

h1,
h2,
h3,
h1 em,
h2 em,
.hero-v2 h1 em,
.blog-head h1 em,
.post-head h1 em,
.svc-hero h1 em,
.legal h1 em {
  color: var(--powder);
}

.eyebrow,
.nav-links,
.nav-links .lang-switch,
.btn-glass,
button.btn-glass {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow > i,
.proof-progress i,
.proof-orbit::before {
  background: var(--powder);
}

.nav-shell.scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover,
.btn-glass:hover,
button.btn-glass:hover {
  color: var(--powder);
  background: rgba(255, 255, 255, 0.1);
}

.btn-white,
button.btn-white,
.chat-send,
.bk-day.sel {
  color: var(--ink);
  border-color: var(--powder);
  background: var(--powder);
}

.btn-white:hover,
button.btn-white:hover,
.chat-send:hover {
  color: var(--ink);
  border-color: var(--powder);
  background: rgba(255, 243, 240, 0.8);
}

.calc-field input[type="range"],
.form-check input {
  accent-color: var(--powder);
}

.proof-arrow:hover,
.chat-input input:focus,
.bk-day.sel,
.calc-results {
  border-color: rgba(255, 255, 255, 0.25);
}

.calc-result-save .calc-result-num,
.live-badge,
.rules-count,
.chart-note,
.cell-link,
.map-opshift > span,
.p-num,
.proof-company {
  color: var(--powder);
}

.product-sec,
.bento-sec,
.process-sec,
.proof-sec,
.contact-sec,
.stmt-sec,
.split-sec,
.calc-sec,
.examples-sec,
.faq-sec,
.trust,
.numbers-sec {
  background: var(--ink);
}

.pcard,
.bento,
.process-card,
.proof-carousel,
.contact-form,
.calc-results,
.system-map {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(23, 23, 23, 0.85);
}

.hero-v2 {
  min-height: 1240px;
  background: #000;
}

.hero-atmosphere {
  background:
    linear-gradient(
      180deg,
      #282f35 0,
      #2c3339 80px,
      #2e353b 160px,
      #32393f 260px,
      #383f45 380px,
      #514f52 500px,
      #635a5d 590px,
      #7b6969 720px,
      #000 1160px
    );
}

.hero-v2 .hero-core,
.hero-stats-wrap,
.hero-landscape {
  will-change: transform, opacity;
}

.hero-landscape {
  filter: none;
}

.hero-landscape-far {
  opacity: 0.52;
}

.hero-landscape-near {
  opacity: 0.96;
}

.hero-landscape-shade {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.03) 52%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.46) 100%
    );
}

.hero-v2 .hero-stats {
  padding: 24px 0 26px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 15, 15, 0.85);
}

.hero-v2 .hstat {
  align-items: flex-start;
  padding: 8px 34px;
}

.hero-v2 .hstat-num {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 0.95;
}

.hero-v2 .hstat-label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.hero-v2 .hero-trust {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-stats-wrap {
  bottom: 416px;
}

.hero-v2 .hstat-num,
.nstat-num,
.proof-quote blockquote {
  color: var(--powder);
}

.proof-visual,
.proof-company {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 15, 15, 0.85);
}

.map-opshift {
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 860px) {
  .hero-v2 {
    min-height: 1160px;
  }
  .hero-v2 .hero-stats {
    padding: 10px 0;
  }
  .hero-v2 .hstat {
    padding: 15px 22px;
  }
  .hero-v2 .hstat-num {
    font-size: 2rem;
  }
  .hero-v2 .hstat-label {
    margin-top: 7px;
    font-size: 12px;
  }
  .hero-stats-wrap {
    bottom: 250px;
  }
}

@media (max-width: 580px) {
  .hero-v2 {
    min-height: 1130px;
  }
  .hero-v2 .hero-trust {
    max-width: 48ch;
    white-space: normal;
  }
  .hero-stats-wrap {
    bottom: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2 .hero-core,
  .hero-stats-wrap {
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-landscape {
    --hero-shift: 0px !important;
  }
}

/* ============================================================
   PRODUCT UI REFINEMENT
   Realistic operational interfaces instead of abstract diagrams.
   ============================================================ */

/* Opshift Monitor */
.monitor-visual .visual-grid {
  opacity: 0.14;
}

.monitor-dashboard {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 15, 15, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.monitor-top,
.monitor-value,
.monitor-kpis {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.monitor-top {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.monitor-live,
.software-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
}

.monitor-live i,
.software-live i,
.automation-run-foot i,
.flow-console-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff3f0;
  animation: monitor-pulse 2.4s ease-in-out infinite;
}

.monitor-value {
  align-items: end;
  padding: 18px 0 12px;
}

.monitor-value > div {
  display: flex;
  flex-direction: column;
}

.monitor-value span,
.monitor-kpis small {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.monitor-value strong {
  margin-top: 3px;
  color: #fff3f0;
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.075em;
}

.monitor-value .monitor-delta {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
}

.monitor-chart {
  position: relative;
  flex: 1;
  min-height: 104px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.monitor-gridline {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.monitor-gridline.line-a { top: 25%; }
.monitor-gridline.line-b { top: 50%; }
.monitor-gridline.line-c { top: 75%; }

.monitor-columns {
  position: absolute;
  inset: 12px 0 10px;
  display: flex;
  align-items: end;
  gap: 6px;
}

.monitor-columns i {
  flex: 1;
  height: var(--v);
  min-width: 3px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #fff3f0, rgba(255, 243, 240, 0.16));
  transform-origin: bottom;
  animation: monitor-bar 4.8s var(--ease) var(--d) infinite;
}

.monitor-kpis {
  gap: 8px;
  padding-top: 12px;
}

.monitor-kpis > span {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.monitor-kpis > span + span {
  padding-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.monitor-kpis strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Custom software */
.cell-img-systems,
.cell-img-automation {
  display: none;
}

.software-preview {
  min-height: 318px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: #090909;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.software-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.software-dots {
  display: flex;
  gap: 5px;
}

.software-dots i {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.software-live {
  justify-self: end;
}

.software-shell {
  min-height: 274px;
  display: grid;
  grid-template-columns: 126px 1fr;
}

.software-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.software-nav > strong {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin: 0 0 13px 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff3f0;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
}

.software-nav > span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

.software-nav > span i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}

.software-nav > span.active {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.software-main {
  min-width: 0;
  padding: 16px;
}

.software-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.software-stats > span {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.software-stats small,
.software-activity-head {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.software-stats strong {
  margin-top: 5px;
  color: #fff3f0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.software-stats i {
  position: absolute;
  right: 9px;
  bottom: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.software-activity {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
}

.software-activity-head {
  display: flex;
  justify-content: space-between;
  padding: 9px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.software-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  transition: background 0.4s ease;
  animation: software-row-focus 7.2s ease-in-out infinite;
}

.software-row + .software-row {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.software-row:nth-child(3) { animation-delay: 2.4s; }
.software-row:nth-child(4) { animation-delay: 4.8s; }

.software-row > i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.software-row > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.software-row strong,
.software-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.software-row strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 400;
}

.software-row small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
}

.software-row b {
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
}

/* Process automation */
.automation-console {
  min-height: 345px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: #090909;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.automation-track {
  display: flex;
  align-items: center;
  padding: 4px 2px 17px;
}

.automation-stage {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  animation: automation-stage 8s ease-in-out infinite;
  animation-delay: calc(var(--stage) * 2s);
}

.automation-stage > i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.automation-stage strong {
  font-size: 9px;
  font-weight: 400;
}

.automation-link {
  position: relative;
  flex: 1;
  height: 1px;
  margin: 0 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.automation-link i {
  position: absolute;
  width: 45%;
  height: 100%;
  background: #fff3f0;
  animation: automation-signal 2s linear infinite;
}

.automation-console-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.65fr);
  gap: 10px;
}

.automation-console .rules-panel {
  max-width: none;
  margin: 0;
  padding: 13px 14px 5px;
}

.automation-run {
  display: flex;
  flex-direction: column;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.automation-run-head,
.automation-run-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.automation-run-core {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.run-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #fff3f0;
  background: rgba(255, 255, 255, 0.045);
  animation: run-logo 3.4s ease-in-out infinite;
}

.automation-run-core > div {
  display: flex;
  flex-direction: column;
}

.automation-run-core strong {
  color: #fff3f0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
}

.automation-run-core small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 7px;
}

.automation-run-foot {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.automation-run-foot > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.automation-run-foot b {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

/* Operational run console */
.flow-console {
  min-height: 630px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: #0f0f0f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.flow-console::after {
  display: none;
}

.flow-console-head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-console-head > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.flow-console-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  color: #fff3f0;
  background: rgba(255, 255, 255, 0.04);
}

.flow-console-head > div > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.flow-console-head strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-console-head small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 7px;
}

.flow-console-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.flow-run {
  position: relative;
  margin: 22px 18px 18px;
}

.flow-rail {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 16px;
  width: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.flow-rail i {
  position: absolute;
  top: -22%;
  left: 0;
  width: 100%;
  height: 24%;
  background: #fff3f0;
  box-shadow: 0 0 12px rgba(255, 243, 240, 0.34);
  animation: flow-rail 5.6s var(--ease) infinite;
}

.flow-run-step {
  position: relative;
  display: grid;
  grid-template-columns: 33px 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 84px;
  padding: 10px 11px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  animation: flow-step-focus 7.2s ease-in-out infinite;
  animation-delay: calc(var(--step) * 1.8s);
}

.flow-step-check {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.68);
  background: #0f0f0f;
  font-family: var(--mono);
  font-size: 10px;
}

.flow-step-time,
.flow-step-code {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.flow-run-step > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.flow-run-step strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 400;
}

.flow-run-step small {
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.approval-dock {
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  margin: 0 18px 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.approval-file {
  display: grid;
  place-items: center;
  width: 39px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 7px;
}

.approval-dock > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.approval-dock strong,
.approval-dock small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.approval-dock strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 400;
}

.approval-dock small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 7px;
}

.approval-dock button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  font-family: var(--font);
  font-size: 9px;
}

.approval-dock button.approve {
  color: #000;
  border-color: #fff3f0;
  background: #fff3f0;
}

@keyframes monitor-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.42; transform: scale(0.78); }
}

@keyframes monitor-bar {
  0%, 12% { transform: scaleY(0.18); opacity: 0.34; }
  34%, 78% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.78); opacity: 0.68; }
}

@keyframes software-row-focus {
  0%, 100% { background: transparent; }
  8%, 27% { background: rgba(255, 255, 255, 0.045); }
  36% { background: transparent; }
}

@keyframes automation-stage {
  0%, 100% { color: rgba(255, 255, 255, 0.45); }
  6%, 23% { color: #fff3f0; }
  31% { color: rgba(255, 255, 255, 0.45); }
}

@keyframes automation-signal {
  from { transform: translateX(-120%); }
  to { transform: translateX(260%); }
}

@keyframes run-logo {
  0%, 100% { transform: scale(1); border-color: rgba(255, 255, 255, 0.16); }
  50% { transform: scale(1.035); border-color: rgba(255, 255, 255, 0.3); }
}

@keyframes flow-rail {
  0% { transform: translateY(-10%); opacity: 0; }
  14% { opacity: 1; }
  86% { opacity: 1; }
  100% { transform: translateY(510%); opacity: 0; }
}

@keyframes flow-step-focus {
  0%, 100% { background: transparent; }
  7%, 23% { background: rgba(255, 255, 255, 0.025); }
  31% { background: transparent; }
}

@media (max-width: 860px) {
  .software-preview {
    min-height: 300px;
  }

  .automation-console-body {
    grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.65fr);
  }

  .flow-console {
    min-height: 590px;
  }
}

@media (max-width: 580px) {
  .monitor-visual {
    min-height: 340px !important;
  }

  .monitor-dashboard {
    inset: 17px;
    padding: 15px;
  }

  .monitor-value strong {
    font-size: 33px;
  }

  .monitor-columns {
    gap: 4px;
  }

  .software-preview {
    min-height: 330px;
  }

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

  .software-nav {
    display: none;
  }

  .software-main {
    padding: 13px;
  }

  .automation-track {
    align-items: flex-start;
  }

  .automation-stage {
    flex-direction: column;
    gap: 5px;
  }

  .automation-stage strong {
    max-width: 54px;
    overflow: hidden;
    font-size: 7px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .automation-link {
    margin-top: 13px;
  }

  .automation-console-body {
    grid-template-columns: 1fr;
  }

  .automation-run {
    min-height: 170px;
  }

  .flow-console {
    min-height: 540px;
  }

  .flow-console-head {
    padding-inline: 14px;
  }

  .flow-run {
    margin-inline: 14px;
  }

  .flow-run-step {
    grid-template-columns: 33px 36px minmax(0, 1fr);
  }

  .flow-step-code {
    display: none;
  }

  .approval-dock {
    grid-template-columns: 39px minmax(0, 1fr) auto;
    margin-inline: 14px;
  }

  .approval-dock button:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .monitor-columns i,
  .monitor-live i,
  .software-live i,
  .software-row,
  .automation-stage,
  .automation-link i,
  .run-logo,
  .automation-run-foot i,
  .flow-console-status i,
  .flow-rail i,
  .flow-run-step {
    animation: none !important;
  }
}

/* ============================================================
   MOTION AUDIT
   Result-focused testimonial visual and viewport-aware animation.
   ============================================================ */

.proof-visual {
  background: #090909;
}

.proof-result-panel {
  position: absolute;
  inset: 16px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #0f0f0f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.proof-result-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.proof-client-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #fff3f0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
}

.proof-result-head > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.proof-result-head strong,
.proof-result-head small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-result-head strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 400;
}

.proof-result-head small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 6px;
  text-transform: uppercase;
}

.proof-result-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 6px;
  text-transform: uppercase;
}

.proof-result-status i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff3f0;
  animation: monitor-pulse 2.4s ease-in-out infinite;
}

.proof-result-metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 2px 15px;
}

.proof-result-metric > span {
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1.4;
  text-transform: uppercase;
}

.proof-result-metric > strong {
  color: #fff3f0;
  font-size: clamp(2.1rem, 3.7vw, 3.25rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.proof-result-chart {
  position: relative;
  flex: 1;
  min-height: 132px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 18px 2px 12px;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 33.333%;
}

.proof-result-chart i {
  flex: 1;
  height: var(--v);
  min-width: 3px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #fff3f0, rgba(255, 243, 240, 0.14));
  transform-origin: bottom;
  animation: proof-result-bar 6.2s var(--ease) var(--d) infinite;
}

.proof-result-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding-top: 14px;
}

.proof-result-compare > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.022);
}

.proof-result-compare > span.is-now {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.proof-result-compare small {
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--mono);
  font-size: 6px;
  text-transform: uppercase;
}

.proof-result-compare strong {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-result-compare > i {
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-style: normal;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.motion-scope:not(.motion-active),
.motion-scope:not(.motion-active) *,
.motion-scope:not(.motion-active)::before,
.motion-scope:not(.motion-active)::after,
.motion-scope:not(.motion-active) *::before,
.motion-scope:not(.motion-active) *::after {
  animation-play-state: paused !important;
}

@keyframes proof-result-bar {
  0%, 10% { transform: scaleY(0.24); opacity: 0.32; }
  32%, 78% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.84); opacity: 0.72; }
}

@media (max-width: 860px) {
  .bento {
    background: transparent;
    box-shadow: none;
  }

  .proof-result-panel {
    inset: 13px;
  }

  .proof-result-chart {
    min-height: 84px;
  }

  .proof-result-metric {
    padding-block: 16px 12px;
  }
}

@media (max-width: 580px) {
  .proof-result-panel {
    inset: 10px;
    padding: 12px;
  }

  .proof-result-head {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    padding-bottom: 9px;
  }

  .proof-client-mark {
    width: 32px;
    height: 32px;
  }

  .proof-result-metric {
    padding: 12px 1px 9px;
  }

  .proof-result-metric > strong {
    font-size: 2rem;
  }

  .proof-result-chart {
    min-height: 65px;
    gap: 4px;
    padding-block: 10px 7px;
  }

  .proof-result-compare {
    padding-top: 9px;
  }

  .proof-result-compare > span {
    padding: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-result-status i,
  .proof-result-chart i {
    animation: none !important;
  }
}

/* ============================================================
   NAVIGATION REFINEMENT
   Unified language control and a quieter mobile menu.
   ============================================================ */
.nav-links {
  gap: 0;
  padding: 4px 5px 4px 7px;
}

.nav-links > a {
  padding: 9px 11px;
}

.nav-language {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 7px;
  padding-left: 10px;
}

.nav-language::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.nav-language-label {
  display: none;
}

.nav-language-options {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-language-options a {
  min-width: 29px;
  padding: 6px 7px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-language-options a:hover {
  color: var(--powder);
  background: rgba(255, 255, 255, 0.08);
}

.nav-language-options a.is-active {
  color: var(--ink);
  background: var(--powder);
}

.nav > .nav-cta {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 999px;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(15, 15, 15, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 860px) {
  .nav {
    min-height: 76px;
    padding: 14px 18px;
  }

  .nav-shell.scrolled .nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100dvh;
    padding: 104px 20px max(24px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 88% 8%, rgba(255, 243, 240, 0.075), transparent 30%),
      rgba(4, 4, 4, 0.985);
    box-shadow: none;
    transform: translateY(-10px) scale(0.99);
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links > a {
    position: relative;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font);
    font-size: clamp(1.46rem, 6.6vw, 1.78rem);
    font-weight: 480;
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .nav-links > a:hover {
    color: var(--powder);
    background: transparent;
  }

  .nav-language {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    margin: auto 0 0;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-language::before {
    display: none;
  }

  .nav-language-label {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-language-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3px;
    border-radius: 999px;
  }

  .nav-language-options a {
    padding: 9px 8px;
    font-size: 10px;
  }

  .nav-cta-mobile {
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    border-radius: 999px !important;
  }

  .nav-open .chat-fab,
  .nav-open .chat-widget {
    visibility: hidden;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px) !important;
  }
}

@media (max-width: 420px) {
  .nav-links {
    padding-inline: 18px;
  }

  .nav-links > a {
    padding-block: 12px;
  }
}

/* ============================================================
   FINAL VISUAL AUDIT
   One geometry, one palette and a slightly stronger brand mark.
   ============================================================ */
.brand {
  gap: 10px;
  font-size: 20px;
}

.brand svg {
  width: 23px;
}

.btn,
button.btn {
  border-radius: 999px;
}

.chat-fab-brand {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.chat-fab-brand svg {
  width: 22px;
}

.points-grid {
  counter-reset: service-point;
}

.point {
  position: relative;
  counter-increment: service-point;
  min-height: 154px;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(145deg, rgba(255, 243, 240, 0.025), transparent 55%),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.point::before {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  content: "0" counter(service-point);
}

.point:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.gain-panel,
.includes-panel,
.fit-panel {
  border-color: rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(145deg, rgba(255, 243, 240, 0.022), transparent 48%),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.fit-panel {
  border-color: rgba(255, 243, 240, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 243, 240, 0.055), transparent 42%),
    #0f0f0f;
}

.includes-list li svg,
.gain-bar-label.gain-moss {
  color: var(--powder);
}

.gain-fill.part,
.fit-list li::before {
  background: var(--powder);
}

@media (max-width: 860px) {
  .brand {
    font-size: 19px;
  }

  .brand svg {
    width: 22px;
  }

  .point {
    min-height: 0;
    padding: 32px;
  }
}
