/* Generated from styles.css for the trust page group. */
:root {
  --ink: #171c28;
  --ink-soft: #353b49;
  --paper: #f6f3ee;
  --paper-strong: #fffdf9;
  --muted: #697080;
  --line: rgba(9, 14, 27, 0.14);
  --line-strong: rgba(9, 14, 27, 0.28);
  --dark: #090e1b;
  --dark-soft: #141c2c;
  --cyan: #e28b48;
  --blue: #8fa4c4;
  --amber: #f0b27d;
  --radius: 8px;
  --max: 1180px;
  --header-height: 72px;
}

/* 2026 homepage refresh — content-first enterprise presentation */
.home-refresh {
  --home-ink: #171c28;
  --home-green: #182238;
  --home-green-soft: #dbe9e2;
  --home-paper: #f5f3ed;
  color: var(--home-ink);
  background: var(--home-paper);
}

.home-refresh .site-header {
  background: rgba(250, 249, 245, 0.94);
  border-bottom-color: rgba(23, 33, 29, 0.12);
  backdrop-filter: blur(18px);
}

.home-refresh .brand,
.home-refresh .site-nav a,
.home-refresh .nav-chevron {
  color: var(--home-ink);
}


.home-refresh .section-kicker {
  color: var(--home-green);
  letter-spacing: .14em;
}

.home-refresh .section-heading h2 {
  color: var(--home-ink);
}

.home-refresh .section-heading p {
  color: #68726d;
}

/* Final specificity overrides for the existing homepage theme layer */

/* Tool lab / IDEA product directory */

/* Information-dense solutions page: reusable capability before project evidence */

/* English site and bilingual navigation */

.english-page {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.english-page .section-heading h2 {
  max-width: 920px;
  letter-spacing: -.035em;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .english-page .site-nav {
    left: 205px;
  }

  .english-page .site-nav {
    gap: 0;
  }

  .english-page .nav-parent {
    padding-inline: 6px;
    font-size: 12px;
  }
}

/* Complete-site expansion: business directories, Demo cases and industry pages. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.is-dragging {
  cursor: grabbing;
  user-select: none;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: block;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 40px;
  color: var(--paper-strong);
  background: rgba(11, 15, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  position: absolute;
  top: 50%;
  left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 182px;
  transform: translateY(-50%);
}

.site-nav {
  position: absolute;
  top: 50%;
  left: 280px;
  right: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  transform: translateY(-50%);
  min-width: 0;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent,
.nav-chevron {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-parent {
  padding: 0 10px;
}

.nav-chevron {
  justify-content: center;
  width: 24px;
  min-height: 44px;
  margin-left: -8px;
  padding: 0;
}

.nav-chevron::before {
  width: 5px;
  height: 5px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease, color 180ms ease;
}

.nav-parent::after {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 1px;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-parent:hover,
.nav-parent:focus-visible,
.nav-group:hover .nav-parent,
.nav-group.is-open .nav-parent,
.nav-group:hover .nav-chevron,
.nav-group.is-open .nav-chevron {
  color: #fff;
}

.nav-parent:hover::after,
.nav-parent:focus-visible::after,
.nav-group:hover .nav-parent::after,
.nav-group.is-open .nav-parent::after {
  transform: scaleX(1);
}

.nav-group:hover .nav-chevron::before,
.nav-group:focus-within .nav-chevron::before,
.nav-group.is-open .nav-chevron::before {
  transform: translateY(1px) rotate(225deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 24;
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 6px;
  width: 286px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(226, 139, 72, 0.16), transparent 38%),
    rgba(10, 15, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-menu::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  content: "";
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu a {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(226, 139, 72, 0.34);
  transform: translateY(-2px);
}

.nav-menu span,
.nav-menu small {
  display: block;
}

.nav-menu span {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.nav-menu small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 112px max(40px, calc((100vw - var(--max)) / 2)) 56px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(40, 104, 255, 0.24), transparent 28%),
    radial-gradient(circle at 20% 84%, rgba(226, 139, 72, 0.22), transparent 24%),
    linear-gradient(135deg, #080a09 0%, #101411 52%, #191b14 100%);
  overflow: hidden;
}

.flow-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-grid {
  z-index: -1;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: min(720px, calc(100% - 430px));
}

.page-hero {
  min-height: 78svh;
}

.page-hero .hero-content {
  max-width: min(820px, calc(100% - 500px));
}

.page-hero .hero-copy {
  max-width: 760px;
}

.hero-content::before {
  position: absolute;
  top: -42px;
  left: -26px;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(226, 139, 72, 0.24);
  transform: rotate(18deg);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::after {
  position: absolute;
  inset: auto auto -40px -40px;
  width: 80px;
  height: 80px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 58%);
  opacity: 0;
  transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button.primary {
  color: var(--dark);
  background: var(--cyan);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #f2b984;
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.section {
  padding: 108px max(40px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
}

.tech-section {
  --section-parallax-y: 0px;
  --section-progress: 0;
  --section-focus-x: 44%;
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.tech-section::before {
  position: absolute;
  inset: -18% -8%;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(226, 139, 72, 0.16) 42.15% 42.45%, transparent 42.6%),
    linear-gradient(120deg, transparent 0 68%, rgba(40, 104, 255, 0.12) 68.15% 68.5%, transparent 68.65%),
    linear-gradient(rgba(16, 18, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 17, 0.07) 1px, transparent 1px);
  background-size: 420px 420px, 620px 620px, 58px 58px, 58px 58px;
  -webkit-mask-image: radial-gradient(circle at var(--section-focus-x) 42%, #000, transparent 66%);
  mask-image: radial-gradient(circle at var(--section-focus-x) 42%, #000, transparent 66%);
  transform: translate3d(0, var(--section-parallax-y), 0);
  will-change: transform;
}


.trust.tech-section::before,
.contact.tech-section::before {
  opacity: 0.42;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(226, 139, 72, 0.22) 40.15% 40.5%, transparent 40.65%),
    linear-gradient(120deg, transparent 0 72%, rgba(40, 104, 255, 0.18) 72.15% 72.5%, transparent 72.65%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 440px 440px, 680px 680px, 62px 62px, 62px 62px;
}

.tech-section > * {
  position: relative;
  z-index: 1;
}

@keyframes scanPulse {
  0%,
  100% {
    opacity: 0.22;
    background-position: 0 0, 0 0;
  }

  50% {
    opacity: 0.44;
    background-position: 42px 0, 0 36px;
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--paper);
}

.page-section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(226, 139, 72, 0.14), transparent 44%),
    var(--dark);
}

.page-section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(226, 139, 72, 0.22), transparent 42%),
    #101511;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.page-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
}

.page-cta p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

/* Homepage team credibility section */

/* Home service snapshot: denser comparison cards with clear deliverables */

.products {
  background: #eef3ed;
}

.cases {
  background: var(--paper-strong);
  overflow: hidden;
}

.trust {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 104, 255, 0.18), transparent 42%),
    linear-gradient(90deg, #111412, #1c1f18);
}

.trust .section-heading {
  display: block;
  margin: 0;
}

/* Products / case 04: AI automation product showcase */

.contact {
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 128px max(40px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(226, 139, 72, 0.13), transparent 38%),
    linear-gradient(0deg, rgba(40, 104, 255, 0.12), transparent 50%),
    #090e1b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(40px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

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

body.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    display: block;
  }

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

  .hero h1 {
    font-size: 62px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    left: 18px;
    min-width: 166px;
    gap: 9px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    display: grid;
    gap: 6px;
    width: 100%;
    max-height: calc(100svh - var(--header-height));
    padding: 16px 18px 22px;
    background: rgba(11, 15, 13, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-parent {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0;
    font-size: 17px;
  }

  .nav-chevron {
    width: 44px;
    min-height: 52px;
    margin: 0;
    justify-self: end;
  }

  .nav-parent::after {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .nav-menu {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
    visibility: visible;
  }

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

  .nav-menu a {
    min-height: 58px;
    padding: 11px 13px;
    background: rgba(255, 255, 255, 0.055);
  }

  .nav-group:not(.is-open) .nav-menu {
    max-height: 0;
    padding: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-group.is-open .nav-menu {
    max-height: 420px;
    padding: 0 0 12px;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    align-items: center;
    min-height: 86svh;
    padding: 104px 18px 48px;
  }

  .page-hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 78px 18px;
  }

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

  .section-heading h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .section-heading p {
    font-size: 16px;
  }

  .page-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .page-cta h2 {
    font-size: 31px;
  }

  .contact {
    min-height: auto;
    padding: 96px 18px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.reveal-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .flow-canvas,
  .hero-grid,
  .tech-section::before {
    transform: none !important;
  }
}

/* 90-day business system launch product */

/* Phase 2: team accountability and verifiable delivery evidence */

/* Products / case 05: IDEA validation module */

/* Sales conversion system */

.form-field.is-complete:not(.has-error)::after {
  position: absolute;
  right: 10px;
  top: 34px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #06221c;
  font-size: 11px;
  font-weight: 900;
  content: "✓";
  background: #52e4c7;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(82, 228, 199, 0.13);
  pointer-events: none;
}

.form-field.is-complete:has(select):not(.has-error)::after {
  content: none;
}

.form-field.is-select-field.is-complete:not(.has-error)::after {
  content: none;
}

body.has-submit-success-dialog {
  overflow: hidden;
}

/* Contact section contrast on dark background */

@media (max-width: 900px) {

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

@media (max-width: 680px) {

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

  .hero .eyebrow {
    max-width: 100%;
    line-height: 1.5;
  }
}

/* Refined home hero: stable editorial two-column layout */

/* Refined brand principles section */

/* Refined project-fit section */

/* Unified light-card textures and restrained motion */

/* Expanded solutions hero */

/* Admin dashboard */

/* Refined cases hero: quieter project-review tone */

/* Cases page de-AI pass: editorial project review instead of sci-fi dashboard */

/* Cases page typography and rhythm refinement */

/* WMS case: balanced editorial split */

/* Generated operations product screens */

/* Generated case product screens */

/* Give each case its own product identity instead of one shared dashboard skin. */

/* Company trust center and privacy policy */
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
}

.site-footer nav a {
  font-size: 13px;
}

.trust-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: 58px;
  min-height: 650px;
}

.trust-hero .hero-content {
  width: auto;
  max-width: 790px;
}

.trust-hero .hero-content h1 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.trust-hero-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  gap: 1px;
  padding: 12px;
  background: rgba(4, 12, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-hero-panel div {
  display: grid;
  gap: 8px;
  min-height: 134px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border-left: 2px solid rgba(226, 139, 72, 0.72);
}

.trust-hero-panel small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.trust-hero-panel strong {
  color: #fff;
  font-size: 21px;
  line-height: 1.3;
}

.trust-hero-panel span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.trust-company,
.trust-rights,
.trust-aftercare {
  background: #f3f7f2;
}

.trust-process-section,
.trust-commercial {
  background: var(--paper-strong);
}

.trust-identity {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-identity > div,
.trust-identity dl {
  margin: 0;
  background: #fff;
}

.trust-identity > div {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 330px;
  padding: 42px;
}

.trust-identity > div small {
  color: #d97b3f;
  font-size: 12px;
  font-weight: 850;
}

.trust-identity > div strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.2;
}

.trust-identity > div span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.trust-identity dl div {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 164px;
  padding: 30px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-identity dl div:nth-child(-n + 2) {
  border-top: 0;
}

.trust-identity dt {
  color: #d97b3f;
  font-size: 12px;
  font-weight: 850;
}

.trust-identity dd {
  margin: 0;
  color: #44514d;
  font-size: 14px;
  line-height: 1.65;
}

.trust-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.trust-process li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(226, 139, 72, 0.055), transparent 48%),
    #fff;
}

.trust-process li > b {
  color: #d97b3f;
  font-size: 14px;
}

.trust-process h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 23px;
}

.trust-process p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-process li > span {
  padding-top: 15px;
  color: #52615c;
  font-size: 11px;
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.trust-policy-grid,
.trust-commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-policy-card,
.trust-commercial-grid article,
.trust-aftercare-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.trust-policy-card > span,
.trust-aftercare-card > span {
  color: #d97b3f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-policy-card h3,
.trust-commercial-grid h3,
.trust-aftercare-card h3 {
  margin: 30px 0 16px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
}

.trust-policy-card p,
.trust-policy-card li,
.trust-commercial-grid li,
.trust-aftercare-card li,
.trust-aftercare-card dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.trust-policy-card ul,
.trust-commercial-grid ul,
.trust-aftercare-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.trust-commercial-grid article {
  min-height: 410px;
}

.trust-aftercare-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-aftercare-card dl {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.trust-aftercare-card dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.trust-aftercare-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.trust-aftercare-card dd {
  margin: 0;
}

.trust-contract-note {
  max-width: var(--max);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.65;
}

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

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

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

  .trust-policy-grid,
  .trust-commercial-grid {
    grid-template-columns: 1fr;
  }

  .trust-commercial-grid article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-footer,
  .site-footer nav {
    justify-content: flex-start;
  }

  .trust-hero {
    gap: 32px;
  }

  .trust-hero-panel,
  .trust-identity,
  .trust-identity dl,
  .trust-process,
  .trust-aftercare-layout {
    grid-template-columns: 1fr;
  }

  .trust-hero-panel div,
  .trust-identity > div,
  .trust-identity dl div,
  .trust-process li,
  .trust-policy-card,
  .trust-commercial-grid article,
  .trust-aftercare-card {
    min-height: auto;
    padding: 24px;
  }

  .trust-identity dl div,
  .trust-identity dl div:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-aftercare-card dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Standalone SEO solution pages */

/* Cases hero layout: keep navigation, actions and metrics in separate flows. */

/* IDEA / tool gallery: visual product covers */

/* 2026 full-site business presentation system */
:root {
  --jx-navy: #182238;
  --jx-navy-deep: #090e1b;
  --jx-blue: #e28b48;
  --jx-sky: #fff0e4;
  --jx-paper: #f6f3ee;
  --jx-ink: #171c28;
  --jx-muted: #697080;
  --jx-line: rgba(9, 14, 27, 0.14);
  --max: 1200px;
}

body:not(.tool-lab-page) {
  color: var(--jx-ink);
  background: var(--jx-paper);
}

body:not(.tool-lab-page) .site-header {
  z-index: 100;
  min-height: 76px;
  color: var(--jx-ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--jx-line);
  box-shadow: 0 8px 28px rgba(9, 22, 20, 0.055);
  backdrop-filter: blur(18px);
}


body:not(.tool-lab-page) .nav-parent,
body:not(.tool-lab-page) .nav-chevron {
  color: var(--jx-ink);
}

body:not(.tool-lab-page) .nav-parent:hover,
body:not(.tool-lab-page) .nav-parent:focus-visible,
body:not(.tool-lab-page) .nav-group:hover .nav-parent,
body:not(.tool-lab-page) .nav-group.is-open .nav-parent,
body:not(.tool-lab-page) .nav-group:hover .nav-chevron,
body:not(.tool-lab-page) .nav-group.is-open .nav-chevron {
  color: var(--jx-blue);
}

body:not(.tool-lab-page) .nav-parent::after {
  background: var(--jx-blue);
}

body:not(.tool-lab-page) .nav-menu {
  z-index: 110;
  top: calc(100% + 12px);
  padding: 12px;
  color: var(--jx-ink);
  background: #fff;
  border-color: var(--jx-line);
  border-radius: 3px;
  box-shadow: 0 22px 64px rgba(9, 37, 32, 0.15);
}

body:not(.tool-lab-page) .nav-menu a {
  color: var(--jx-ink);
  background: #f5f9f8;
  border-color: rgba(9, 22, 20, 0.09);
  border-radius: 2px;
}

body:not(.tool-lab-page) .nav-menu a:hover,
body:not(.tool-lab-page) .nav-menu a:focus-visible {
  background: var(--jx-sky);
  border-color: rgba(226, 139, 72, 0.3);
}

body:not(.tool-lab-page) .nav-menu span {
  color: var(--jx-ink);
}

body:not(.tool-lab-page) .nav-menu small {
  color: var(--jx-muted);
}

body:not(.tool-lab-page) .page-hero {
  min-height: 700px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(226, 139, 72, 0.22), transparent 32%),
    linear-gradient(116deg, transparent 0 59%, rgba(255, 255, 255, 0.045) 59% 59.15%, transparent 59.15% 100%),
    linear-gradient(135deg, var(--jx-navy-deep), var(--jx-navy));
}

body:not(.tool-lab-page) .page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 82%);
}

body:not(.tool-lab-page) .page-hero .flow-canvas,
body:not(.tool-lab-page) .page-hero .hero-grid,
body:not(.tool-lab-page) .page-hero .hero-content::before {
  display: none;
}

body:not(.tool-lab-page) .page-hero .hero-content {
  max-width: min(780px, calc(100% - 430px));
}

body:not(.tool-lab-page) .page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 830;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

body:not(.tool-lab-page) .page-hero .hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.85;
}

body:not(.tool-lab-page) .page-hero .eyebrow {
  color: #f0b27d;
  letter-spacing: 0.12em;
}

body:not(.tool-lab-page) .page-hero .button.primary {
  color: #fff;
  background: var(--jx-blue);
  border-color: var(--jx-blue);
}

body:not(.tool-lab-page) .section {
  border-top-color: var(--jx-line);
}

body:not(.tool-lab-page) .tech-section::before {
  opacity: 0.09;
  background:
    linear-gradient(rgba(226, 139, 72, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 139, 72, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
}

body:not(.tool-lab-page) .section-kicker {
  color: var(--jx-blue);
  letter-spacing: 0.11em;
}

body:not(.tool-lab-page) .section-heading h2 {
  color: var(--jx-ink);
  letter-spacing: -0.025em;
}

body:not(.tool-lab-page) .section-heading p {
  color: var(--jx-muted);
}

body:not(.tool-lab-page) .page-section-dark {
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    var(--jx-navy-deep);
  background-size: 68px 68px;
}

body:not(.tool-lab-page) .page-section-dark .section-heading h2,
body:not(.tool-lab-page) .page-section-dark .section-heading p,
body:not(.tool-lab-page) .page-section-dark h2,
body:not(.tool-lab-page) .page-section-dark h3 {
  color: #fff;
}

.enterprise-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(560px, 1.25fr);
  gap: 72px;
  padding: 74px max(40px, calc((100vw - var(--max)) / 2)) 28px;
  color: rgba(255, 255, 255, 0.6);
  background: var(--jx-navy-deep);
  border-top: 0;
}

@media (max-width: 1180px) {
  body:not(.tool-lab-page) .site-header {
    padding-inline: 24px;
  }

  body:not(.tool-lab-page) .brand {
    left: 24px;
    min-width: 160px;
  }

  body:not(.tool-lab-page) .site-nav {
    left: 220px;
    gap: 2px;
  }

  body:not(.tool-lab-page) .nav-parent {
    padding-inline: 7px;
    font-size: 13px;
  }

  .enterprise-footer {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 980px) {
  body:not(.tool-lab-page) .site-header {
    padding: 0 18px;
  }

  body:not(.tool-lab-page) .brand {
    left: 18px;
  }

  body:not(.tool-lab-page) .nav-toggle {
    display: block;
    color: var(--jx-ink);
    border-color: var(--jx-line);
  }

  body:not(.tool-lab-page) .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    display: grid;
    gap: 6px;
    width: 100%;
    max-height: calc(100svh - 76px);
    padding: 16px 18px 24px;
    background: rgba(255,255,255,.99);
    border-bottom: 1px solid var(--jx-line);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
  }

  body.nav-open:not(.tool-lab-page) .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  body:not(.tool-lab-page) .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    border-bottom: 1px solid var(--jx-line);
  }

  body:not(.tool-lab-page) .nav-parent {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0;
    font-size: 16px;
  }

  body:not(.tool-lab-page) .nav-chevron {
    width: 44px;
    min-height: 52px;
    margin: 0;
    justify-self: end;
  }

  body:not(.tool-lab-page) .nav-menu {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
    visibility: visible;
  }

  body:not(.tool-lab-page) .nav-group:hover .nav-menu,
  body:not(.tool-lab-page) .nav-group:focus-within .nav-menu {
    max-height: 0;
    padding: 0;
    pointer-events: none;
  }

  body:not(.tool-lab-page) .nav-group.is-open .nav-menu {
    max-height: 520px;
    padding: 0 0 12px;
    pointer-events: auto;
  }

  body:not(.tool-lab-page) .page-hero {
    min-height: auto;
    padding-top: 138px;
  }

  body:not(.tool-lab-page) .page-hero .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  body:not(.tool-lab-page) .site-header {
    min-height: 64px;
  }

  body:not(.tool-lab-page) .site-nav {
    top: 64px;
    max-height: calc(100svh - 64px);
  }

  body:not(.tool-lab-page) .page-hero {
    padding: 116px 18px 58px;
  }

  body:not(.tool-lab-page) .page-hero h1 {
    font-size: 40px;
  }

  .enterprise-footer {
    gap: 36px;
    padding: 56px 18px 24px;
  }
}

/* Final hero layout guards after the shared business theme overrides */
body:not(.tool-lab-page) .page-hero .hero-content {
  max-width: min(760px, 61vw);
}

@media (max-width: 1080px) {
  body:not(.tool-lab-page) .page-hero .hero-content {
    max-width: 100%;
  }
}

/* Cases directory refresh: enterprise-blue story wall and capability catalog. */

/* Homepage light-surface contrast guards. */

/* 2026-08 rich enterprise content system */

/* Homepage philosophy — business thinking before feature execution */

/* Keep the process steps below the hero screenshot instead of covering it. */

/* Homepage spatial scroll — restrained depth, eased layers and section progress. */

@keyframes home-scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.home-section-rail {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 70;
  display: grid;
  gap: 11px;
  padding-left: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(14px, -50%, 0);
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-rail-visible .home-section-rail {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.home-section-rail a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 7px;
  color: rgba(23, 63, 52, 0.44);
  font-size: 10px;
  line-height: 1;
  align-items: center;
  transition: color 180ms ease;
}

.home-section-rail a b {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.home-section-rail a span {
  overflow: hidden;
  max-width: 0;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 220ms ease, opacity 180ms ease;
}

.home-section-rail:hover a span,
.home-section-rail a:focus-visible span,
.home-section-rail a.is-active span {
  max-width: 52px;
  opacity: 1;
}

.home-section-rail a:hover,
.home-section-rail a:focus-visible,
.home-section-rail a.is-active {
  color: #c96f33;
}

.home-section-rail a.is-active b {
  font-weight: 900;
}

@media (max-width: 1180px) {
  .home-section-rail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .home-section-rail {
    transition: none;
  }
}

/* Services hero: project workshop image and controlled semantic title lines. */

/* Final services-page guards: override the higher-specificity shared hero rules. */

/* Homepage foundation catalog — calmer hierarchy and one clear card rhythm. */

/* 2026-08 homepage quiet luxury — flat surfaces, warm restraint, editorial rhythm. */
body.home-refresh {
  --lux-ivory: #f4efe7;
  --lux-paper: #fbf8f2;
  --lux-white: #fffdf9;
  --lux-ink: #171c28;
  --lux-green: #1d4639;
  --lux-green-deep: #12271f;
  --lux-brass: #ad8a5e;
  --lux-brass-soft: #d7c5aa;
  --lux-muted: #6b716c;
  --lux-line: rgba(49, 55, 50, 0.15);
  color: var(--lux-ink);
  background: var(--lux-ivory);
}

body:not(.tool-lab-page).home-refresh .site-header {
  background: #fbf8f2;
  border-bottom-color: var(--lux-line);
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.tool-lab-page).home-refresh .brand,
body:not(.tool-lab-page).home-refresh .site-nav a,
body:not(.tool-lab-page).home-refresh .nav-chevron {
  color: var(--lux-ink);
}


body:not(.tool-lab-page).home-refresh .nav-parent:hover,
body:not(.tool-lab-page).home-refresh .nav-parent:focus-visible {
  color: var(--lux-green);
}

body:not(.tool-lab-page).home-refresh .nav-parent::after {
  background: var(--lux-brass);
}


body.home-refresh .page-section-dark .section-kicker {
  color: var(--lux-brass-soft);
}

/* The bilingual homepage shares one layout. Contain decorative motion and let
   longer English headings wrap without changing the image/card composition. */
body.home-refresh {
  overflow-x: clip;
}

body.home-refresh .home-section-rail a:hover,
body.home-refresh .home-section-rail a:focus-visible,
body.home-refresh .home-section-rail a.is-active {
  color: #876840;
}

body.home-refresh .section {
  border-top-color: var(--lux-line);
}

body.home-refresh .section-kicker {
  color: #8f7049;
  letter-spacing: 0.13em;
}

body.home-refresh .section-heading h2 {
  color: var(--lux-ink);
  font-weight: 720;
  letter-spacing: 0;
}

body.home-refresh .section-heading p {
  color: var(--lux-muted);
}


body.home-refresh main > .page-section-dark {
  color: #f8f4eb;
  background: var(--lux-green-deep);
}

body.home-refresh .tech-section::before {
  display: none;
}

body.home-refresh .page-cta {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.home-refresh .page-cta h2 {
  color: #f8f4eb;
  font-weight: 720;
  letter-spacing: 0;
}

body.home-refresh .page-cta .button.primary {
  color: #fffdf9;
  background: var(--lux-brass);
  border-color: var(--lux-brass);
  border-radius: 2px;
  box-shadow: none;
}

@media (min-width: 1081px) {

  body.home-refresh .section-heading h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}

@media (max-width: 1080px) {

  body.home-refresh .section-heading h2 {
    font-size: 39px;
    line-height: 1.2;
  }
}

@media (max-width: 680px) {

  body.home-refresh .section-heading h2 {
    font-size: 31px;
    line-height: 1.24;
  }
}

/* 2026-08 midnight brand system — deep enterprise palette with restrained brass. */
body.home-refresh {
  --midnight: #090e1b;
  --midnight-raised: #101827;
  --midnight-card: #172235;
  --midnight-card-soft: #131c2c;
  --midnight-text: #f3f0e9;
  --midnight-muted: #aab2c1;
  --midnight-teal: #d97b3f;
  --midnight-brass: #e28b48;
  --midnight-line: rgba(170, 178, 193, 0.18);
  background: var(--midnight);
  color: var(--midnight-text);
}

body.home-refresh {
  --lux-ivory: var(--midnight);
  --lux-paper: var(--midnight-raised);
  --lux-white: var(--midnight-card);
  --lux-ink: var(--midnight-text);
  --lux-green: var(--midnight-teal);
  --lux-green-deep: var(--midnight);
  --lux-brass: var(--midnight-brass);
  --lux-brass-soft: #f0b27d;
  --lux-muted: var(--midnight-muted);
  --lux-line: var(--midnight-line);
}

body.home-refresh main {
  background: var(--midnight);
}

body:not(.tool-lab-page).home-refresh .site-header {
  color: var(--midnight-text);
  background: rgba(9, 14, 27, 0.96);
  border-bottom-color: var(--midnight-line);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

body:not(.tool-lab-page).home-refresh .brand,
body:not(.tool-lab-page).home-refresh .site-nav a,
body:not(.tool-lab-page).home-refresh .nav-chevron {
  color: var(--midnight-text);
}

body:not(.tool-lab-page).home-refresh .nav-parent::after {
  background: var(--midnight-brass);
}

body.home-refresh .nav-toggle {
  border-color: var(--midnight-line);
  background: var(--midnight-raised);
}

body.home-refresh .nav-toggle span {
  background: var(--midnight-text);
}


body.home-refresh .page-cta .button.primary {
  color: #17110d;
  background: var(--midnight-brass);
  border-color: var(--midnight-brass);
  box-shadow: none;
}


body.home-refresh .page-cta .button.primary:hover {
  background: #f09b58;
  border-color: #f09b58;
}


body.home-refresh .section-kicker {
  color: #f0b27d;
}

body.home-refresh .section-heading h2 {
  color: var(--midnight-text);
}

body.home-refresh .section-heading p {
  color: var(--midnight-muted);
}


body.home-refresh main > .page-section-dark {
  background: #070b15;
}

body.home-refresh .tech-section::before {
  background:
    linear-gradient(rgba(143, 164, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 164, 196, 0.065) 1px, transparent 1px);
  background-size: 68px 68px;
}

/* Flagship plan: keep the conversion page in the same midnight system. */

body.home-refresh .site-footer {
  background: #050811;
  border-top-color: var(--midnight-line);
}

@media (max-width: 1080px) {
  body.home-refresh .site-nav {
    color: var(--midnight-text);
    background: var(--midnight-raised);
    border-color: var(--midnight-line);
  }
}

/* Full-site logo palette: navy foundations, clay-orange actions, warm paper. */
body:not(.tool-lab-page) .button.primary {
  color: #17110d;
  background: #e28b48;
  border-color: #e28b48;
  box-shadow: none;
}

body:not(.tool-lab-page) .button.primary:hover,
body:not(.tool-lab-page) .button.primary:focus-visible {
  color: #17110d;
  background: #f09b58;
  border-color: #f09b58;
}

body:not(.tool-lab-page) .page-hero .hero-actions .button.primary,
body:not(.tool-lab-page) .hero-actions .button.primary {
  color: #17110d;
}
/* Article authority and thematic navigation */
/* Direct-answer panels for human readers and generative search retrieval */
/* Long-form editorial depth: evidence, constraints and decision tables */

/* 2026-08 homepage image edit — fewer images, one focal hierarchy, consistent crops. */

/* Cases CTA uses a warm light panel inside a dark section. Keep its copy
   anchored to the panel rather than inheriting the section's white heading. */

/* Flagship maintenance: lead with reassurance and keep scope control secondary. */

/* Homepage art direction: quiet premium split hero */
.home-refresh {
  --home-ink: #f5f0e8;
  --home-paper: #f5f0e8;
  --home-brass: #c18d5f;
  background: #f5f0e8;
}

.home-refresh .site-header {
  color: #f5f0e8;
  background: rgba(14, 20, 29, .94);
  border-bottom-color: rgba(245, 240, 232, .14);
}

.home-refresh .brand,
.home-refresh .site-nav a,
.home-refresh .nav-chevron {
  color: rgba(245, 240, 232, .9);
}

/* Homepage final visual lock: keep the premium split hero above legacy theme layers */
