:root {
  color-scheme: light;
  --ink: #111716;
  --ink-soft: #2e3836;
  --muted: #68736f;
  --paper: #f2f3ef;
  --white: #ffffff;
  --line: #d9ddd7;
  --line-strong: #bdc5bf;
  --green: #1a625b;
  --green-deep: #071514;
  --green-soft: #e6eeea;
  --blue: #536f84;
  --amber: #b99354;
  --coral: #a96355;
  --ice: #9fb8c6;
  --copper: #b4785d;
  --pearl: #f3efe2;
  --night: #050607;
  --night-soft: #0b1011;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 68px rgba(7, 16, 15, 0.12);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eeefeb;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 9px 12px;
  background: var(--white);
  color: var(--green-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(var(--content), calc(100% - 40px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 10, 11, 0.52);
  color: var(--white);
  backdrop-filter: blur(24px) saturate(135%);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 11, 0.76);
  color: var(--white);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--pearl), var(--ice) 52%, #263735);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
}

.site-nav > a {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-header.is-scrolled .site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(159, 184, 198, 0.08)),
    rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  font-weight: 800;
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  height: 100svh;
  overflow: hidden;
  align-items: center;
  background-color: var(--night);
  background-image:
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.92) 78%, #050607),
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.46) 45%, rgba(5, 6, 7, 0.78)),
    url("./assets/hero-office-v2.jpg");
  background-position:
    center,
    center,
    49% 50%;
  background-size:
    100% 100%,
    100% 100%,
    106% 106%;
  color: var(--white);
  animation: heroBackdropDrift 30s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 0.42;
  animation: heroGridDrift 28s linear infinite;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 9%;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 184, 198, 0.28), rgba(243, 239, 226, 0.24), transparent);
  box-shadow: 0 0 84px rgba(159, 184, 198, 0.22);
  content: "";
  animation: horizonPulse 9s ease-in-out infinite;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.54) 48%, rgba(5, 6, 7, 0.96)),
    linear-gradient(118deg, transparent 18%, rgba(126, 152, 145, 0.16) 48%, transparent 72%);
}

.hero-shade::before,
.hero-shade::after {
  position: absolute;
  inset: -18%;
  content: "";
  pointer-events: none;
}

.hero-shade::before {
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(159, 184, 198, 0.08) 47%,
    rgba(180, 120, 93, 0.08) 52%,
    transparent 66%
  );
  transform: translateX(-12%);
  animation: lightPlaneDrift 22s ease-in-out infinite alternate;
}

.hero-shade::after {
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 152px,
    rgba(255, 255, 255, 0.018) 153px,
    transparent 154px
  );
  animation: measureLineDrift 36s linear infinite;
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--content), calc(100% - 48px));
  min-height: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 450px);
  align-items: center;
  gap: 44px;
  margin: 0 auto;
  padding: 120px 0 56px;
}

.hero-copy {
  max-width: 720px;
  text-align: left;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 86px;
  line-height: 1.04;
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.phrase {
  display: inline-block;
  max-width: 100%;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, var(--pearl), #d9c28d 58%, #d6bba1),
    var(--pearl);
  color: #111716;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.button-primary:hover {
  background: #fffaf0;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(159, 184, 198, 0.08), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero-proof {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof > div {
  min-height: 92px;
  padding: 18px 18px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof > div + div {
  padding-left: 18px;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #f1e8d2;
  font-size: 20px;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 15px;
}

.hero-assurances li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9fb0aa;
  content: "";
}

.hero-workbench {
  position: relative;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(5, 8, 9, 0.76);
  box-shadow:
    0 46px 130px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(26px) saturate(130%);
  overflow: hidden;
}

.hero-workbench > * {
  position: relative;
  z-index: 1;
}

.hero-workbench::before {
  position: absolute;
  top: 0;
  left: -70%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  content: "";
  animation: panelScan 11s ease-in-out infinite;
  pointer-events: none;
}

.hero-workbench::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(159, 184, 198, 0.06), transparent),
    repeating-linear-gradient(90deg, transparent 0, transparent 68px, rgba(255, 255, 255, 0.028) 69px, transparent 70px);
  content: "";
  opacity: 0.64;
  pointer-events: none;
  animation: panelMeasure 24s linear infinite;
}

.workbench-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.live-dot {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7c6a0;
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(215, 198, 160, 0.52);
  border-radius: 50%;
  content: "";
  animation: pulse 3.2s ease-out infinite;
}

.workbench-head small,
.workbench-head strong {
  display: block;
}

.workbench-head small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.workbench-head strong {
  margin-top: 1px;
  font-size: 14px;
}

.workbench-status {
  padding: 5px 10px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(159, 184, 198, 0.12), rgba(180, 120, 93, 0.08)),
    rgba(255, 255, 255, 0.08);
  color: #f1e8d2;
  font-size: 11px;
  font-weight: 800;
}

.workbench-field {
  position: relative;
  min-height: 188px;
  margin: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(159, 184, 198, 0.07), rgba(255, 255, 255, 0.015) 46%, rgba(180, 120, 93, 0.045));
  background-size: 44px 44px, 44px 44px, auto;
  animation: fieldGridDrift 18s linear infinite;
  overflow: hidden;
}

.workbench-field::before {
  position: absolute;
  inset: 46px 70px;
  border: 1px solid rgba(221, 214, 194, 0.2);
  border-radius: 8px;
  box-shadow:
    0 0 44px rgba(159, 184, 198, 0.08),
    inset 0 0 26px rgba(243, 239, 226, 0.04);
  content: "";
}

.field-line {
  position: absolute;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(159, 184, 198, 0.22), rgba(229, 225, 212, 0.58), transparent);
  transform-origin: center;
}

.field-line::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(243, 239, 226, 0.9), transparent);
  content: "";
  animation: lineTrace 6.2s ease-in-out infinite;
}

.field-line-two::after {
  animation-delay: 0.9s;
}

.field-line-three::after {
  animation-delay: 1.8s;
}

.field-line-one {
  top: 50%;
  right: 12%;
  left: 12%;
}

.field-line-two {
  top: 50%;
  right: 20%;
  left: 20%;
  transform: rotate(28deg);
}

.field-line-three {
  top: 50%;
  right: 20%;
  left: 20%;
  transform: rotate(-28deg);
}

.field-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 184px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(4, 7, 8, 0.64);
  box-shadow:
    0 0 68px rgba(167, 187, 181, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  animation: coreGlow 8s ease-in-out infinite;
}

.field-core small,
.field-core strong {
  display: block;
  line-height: 1;
}

.field-core small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 900;
}

.field-core strong {
  color: #f4efe4;
  font-size: 15px;
  font-weight: 900;
}

.field-node {
  position: absolute;
  display: grid;
  min-width: 54px;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(159, 184, 198, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  animation: nodeBreath 6.8s ease-in-out infinite;
}

.field-node-a {
  top: 34px;
  left: 16%;
}

.field-node-b {
  top: 42px;
  right: 18%;
  animation-delay: 0.4s;
}

.field-node-c {
  bottom: 38px;
  left: 21%;
  animation-delay: 0.8s;
}

.field-node-d {
  right: 22%;
  bottom: 36px;
  animation-delay: 1.2s;
}

.field-node-e {
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  animation-delay: 1.6s;
}

.workbench-question {
  padding: 0 18px 12px;
}

.workbench-question span,
.workbench-output span {
  display: block;
  color: #d7c6a0;
  font-size: 11px;
  font-weight: 900;
}

.workbench-question strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.62;
}

.workbench-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 6px 18px 0;
  list-style: none;
}

.workbench-steps li {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  min-height: 88px;
  padding: 15px 16px 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.54);
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.workbench-steps li:nth-child(2),
.workbench-steps li:last-child {
  border-right: 0;
}

.workbench-steps li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.workbench-steps b,
.workbench-steps small {
  display: block;
}

.workbench-steps b {
  font-size: 13px;
}

.workbench-steps small {
  font-size: 11px;
}

.workbench-steps .is-done {
  color: rgba(255, 255, 255, 0.82);
}

.workbench-steps .is-done > span {
  border-color: rgba(241, 232, 210, 0.8);
  background: #f1e8d2;
  color: #101615;
}

.workbench-steps .is-active {
  color: var(--white);
  transform: translateX(4px);
}

.workbench-steps .is-active > span {
  border-color: #d7c6a0;
  color: #f1e8d2;
}

.workbench-signal {
  display: grid;
  gap: 6px;
  margin: 14px 18px 0;
}

.workbench-signal span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a9b8b1, #e1d0a7, transparent);
  opacity: 0.48;
  transform-origin: left center;
  animation: signalBar 5s ease-in-out infinite;
}

.workbench-signal span:nth-child(2) {
  width: 76%;
  animation-delay: 0.28s;
}

.workbench-signal span:nth-child(3) {
  width: 54%;
  animation-delay: 0.54s;
}

.workbench-output {
  margin: 14px 18px 18px;
  padding: 14px;
  border: 1px solid rgba(241, 232, 210, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.workbench-output b {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #050607;
  color: var(--white);
}

.promise-strip > div {
  min-height: 112px;
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.promise-strip > div:last-child {
  border-right: 0;
}

.promise-strip strong,
.promise-strip span {
  display: block;
}

.promise-strip strong {
  color: #f1e8d2;
  font-size: 17px;
}

.promise-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.section {
  padding: 118px max(24px, calc((100% - var(--content)) / 2));
}

.section-intro {
  max-width: 880px;
  margin-bottom: 42px;
}

.section-intro h2,
.principle-inner h2,
.about-statement h2,
.contact-copy h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.16;
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero-lead,
.section-intro > p:last-child,
.principle-inner > div > p:last-child,
.about-copy p,
.contact-copy > p,
.problem-panel > div > p:last-child,
.role-stage > p,
.outcome-explain p,
.story-grid p,
.story-bottom blockquote {
  line-break: strict;
  text-wrap: pretty;
}

.section-intro > p:last-child,
.principle-inner > div > p:last-child,
.about-copy p,
.contact-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.entry-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #050607 0, #111514 1px, var(--paper) 112px);
}

.entry-section::before,
.services-section::before,
.pricing-section::before,
.outcomes-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(83, 111, 132, 0.06) 48%, transparent 78%),
    repeating-linear-gradient(90deg, transparent 0, transparent 124px, rgba(26, 98, 91, 0.035) 125px, transparent 126px);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  animation: softDataSweep 24s linear infinite;
}

.entry-section > *,
.services-section > *,
.pricing-section > *,
.outcomes-section > * {
  position: relative;
  z-index: 1;
}

.entry-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(17, 23, 22, 0.22);
  border-bottom: 1px solid rgba(17, 23, 22, 0.22);
}

.entry-path article {
  position: relative;
  min-height: 214px;
  padding: 28px 30px 30px 0;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.entry-path article::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(83, 111, 132, 0.38), transparent);
  content: "";
  opacity: 0.52;
  transform-origin: left center;
  animation: signalBar 5.8s ease-in-out infinite;
}

.entry-path article:nth-child(2)::after {
  animation-delay: 0.55s;
}

.entry-path article:nth-child(3)::after {
  animation-delay: 1.1s;
}

.entry-path article + article {
  padding-left: 30px;
}

.entry-path article:last-child {
  border-right: 0;
}

.entry-path span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.entry-path h3 {
  margin: 30px 0 8px;
  font-size: 24px;
}

.entry-path p {
  margin: 0;
  color: var(--muted);
}

.trend-section {
  position: relative;
  overflow: hidden;
  background: var(--night-soft);
  color: var(--white);
}

.trend-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(120deg, transparent 24%, rgba(159, 184, 198, 0.06) 46%, rgba(180, 120, 93, 0.045) 54%, transparent 72%);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  content: "";
  opacity: 0.78;
  pointer-events: none;
  animation: sectionGridDrift 32s linear infinite;
}

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

.trend-section .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

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

.trend-grid article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trend-grid article + article {
  padding-left: 28px;
}

.trend-grid article:last-child {
  border-right: 0;
}

.trend-grid span {
  color: #d7c6a0;
  font-size: 12px;
  font-weight: 900;
}

.trend-grid h3 {
  margin: 36px 0 10px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

.trend-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  text-wrap: pretty;
}

.trend-points {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.trend-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.trend-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7c6a0;
  content: "";
}

.trend-grid small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(241, 232, 210, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.decision-section {
  background: #f6f6f2;
}

.decision-tool {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  min-height: 560px;
  border: 1px solid rgba(17, 23, 22, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 74px rgba(17, 23, 22, 0.09);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.decision-tool:hover {
  border-color: rgba(185, 147, 84, 0.34);
  box-shadow: 0 34px 88px rgba(17, 23, 22, 0.12);
  transform: translateY(-2px);
}

.decision-options {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
  background: #ecefeb;
}

.decision-option {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 7px;
  padding: 22px 26px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.decision-option:last-child {
  border-bottom: 0;
}

.decision-option:hover,
.decision-option.is-active {
  background: var(--white);
}

.decision-option.is-active {
  box-shadow: inset 4px 0 0 var(--amber);
}

.decision-option span {
  color: var(--green-deep);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.decision-option small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.decision-panel {
  display: grid;
  align-content: center;
  padding: 50px;
}

.decision-panel h3 {
  max-width: 680px;
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.decision-panel > p:not(.panel-label) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.decision-panel dl {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.decision-panel dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.decision-panel dt {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.decision-panel dd {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.decision-cta {
  justify-self: start;
  margin-top: 34px;
  background: var(--green-deep);
  color: var(--white);
  box-shadow: none;
}

.problem-section {
  background:
    linear-gradient(145deg, #071514, #050607 58%, #0c1010);
  color: var(--white);
}

.section-intro-light > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.problem-switcher {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.problem-tabs {
  display: grid;
  align-content: start;
  background: rgba(255, 255, 255, 0.05);
}

.problem-tab {
  min-height: 76px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.problem-tab:hover,
.problem-tab.is-active {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.problem-tab.is-active {
  box-shadow: inset 4px 0 0 #d7c6a0;
}

.problem-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.68fr);
  align-items: center;
  gap: 54px;
  padding: 48px;
}

.panel-label {
  margin: 0 0 10px;
  color: #dfbd78;
  font-size: 12px;
  font-weight: 900;
}

.problem-panel h3 {
  max-width: 640px;
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.problem-panel > div > p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.problem-result {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

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

.problem-result span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
}

.problem-result strong {
  margin-top: 14px;
  color: #f1e8d2;
  font-size: 20px;
  line-height: 1.55;
}

.problem-result small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(17, 23, 22, 0.12);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
  overflow: hidden;
}

.service-card::after,
.pricing-plan::before,
.pricing-addons article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -58%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-12deg);
}

.service-card:hover::after,
.pricing-plan:hover::before,
.pricing-addons article:hover::before {
  animation: cardSheen 1.1s ease-out;
}

.service-card:hover {
  border-color: rgba(185, 147, 84, 0.34);
  box-shadow: 0 26px 70px rgba(17, 23, 22, 0.1);
  transform: translateY(-4px);
}

.service-card-highlight {
  border-color: rgba(185, 147, 84, 0.42);
  background:
    linear-gradient(180deg, rgba(185, 147, 84, 0.1), rgba(255, 255, 255, 0.74)),
    var(--white);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-meta span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.service-meta small {
  color: var(--green);
  font-weight: 800;
}

.service-card h3 {
  margin: 46px 0 8px;
  font-size: 29px;
  line-height: 1.2;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.service-card p {
  color: var(--muted);
}

.service-card .service-fit {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 19px;
  color: var(--ink-soft);
}

.service-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.service-start {
  margin: 0 0 22px;
  padding: 13px 14px;
  border: 1px solid rgba(13, 98, 89, 0.16);
  border-radius: 8px;
  background: #f8fbfa;
  color: var(--green-deep) !important;
  font-size: 13px;
  font-weight: 800;
}

.service-card > a {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 900;
}

.workgroup-section {
  background: #eef0eb;
}

.workgroup-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  min-height: 570px;
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 68px rgba(17, 23, 22, 0.06);
}

.role-list {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
}

.role-button {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 2px;
  padding: 16px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.role-button:last-child {
  border-bottom: 0;
}

.role-button:hover,
.role-button.is-active {
  background: #f1eee4;
}

.role-button.is-active {
  box-shadow: inset 4px 0 0 var(--amber);
}

.role-button span {
  font-size: 18px;
  font-weight: 900;
}

.role-button small {
  color: var(--muted);
}

.role-stage {
  padding: 48px;
}

.role-stage-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.role-stage-top span {
  display: inline-grid;
  min-width: 56px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--night-soft);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

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

.role-stage h3 {
  margin: 34px 0 12px;
  font-size: 38px;
  line-height: 1.15;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.role-stage > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.role-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-details > div {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line);
}

.role-details > div + div {
  padding-left: 18px;
}

.role-details > div:last-child {
  border-right: 0;
}

.role-details dt {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.role-details dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.role-handoff {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.role-handoff span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.role-handoff i {
  color: var(--amber);
  font-style: normal;
}

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

.outcome-showcase {
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 68px rgba(17, 23, 22, 0.06);
}

.outcome-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #eff0eb;
}

.outcome-tab {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.outcome-tab:last-child {
  border-right: 0;
}

.outcome-tab:hover,
.outcome-tab.is-active {
  background: var(--white);
  color: var(--green-deep);
}

.outcome-tab.is-active {
  box-shadow: inset 0 -4px 0 var(--amber);
}

.document-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.55fr);
  min-height: 610px;
  background:
    linear-gradient(135deg, #e6e7e1, #f6f5f0);
}

.document-page {
  width: min(720px, calc(100% - 72px));
  min-height: 520px;
  align-self: center;
  justify-self: center;
  padding: 42px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 37, 33, 0.15);
  animation: documentFloat 5s ease-in-out infinite;
}

.document-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--night-soft);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 900;
}

.document-head small {
  color: var(--muted);
}

.document-page h3 {
  max-width: 560px;
  margin: 34px 0 8px;
  font-size: 30px;
  line-height: 1.25;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.document-page > p {
  margin: 0;
  color: var(--muted);
}

.document-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.document-metric-row > div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.document-metric-row small,
.document-metric-row strong {
  display: block;
}

.document-metric-row small {
  color: var(--muted);
  font-size: 10px;
}

.document-metric-row strong {
  margin-top: 7px;
  color: var(--green-deep);
  font-size: 15px;
}

.document-page ol {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.document-page li {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.document-page li span {
  color: var(--amber);
  font-size: 10px;
}

.outcome-explain {
  align-self: center;
  padding: 42px 34px;
  border-left: 1px solid var(--line-strong);
}

.outcome-explain > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.outcome-explain h3 {
  margin: 18px 0 10px;
  font-size: 27px;
  line-height: 1.25;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.outcome-explain p,
.outcome-explain li {
  color: var(--muted);
}

.outcome-explain ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding-left: 19px;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background: #eef0eb;
}

.pricing-section::before {
  opacity: 0.32;
}

.pricing-section .section-intro h2 {
  color: var(--green-deep);
}

.pricing-section .section-intro > p:last-child {
  color: #46534f;
}

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.scenario-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.scenario-packages article {
  position: relative;
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(17, 23, 22, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 251, 247, 0.72)),
    var(--white);
  overflow: hidden;
}

.scenario-packages article::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
  content: "";
}

.scenario-packages span {
  display: block;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.34;
}

.scenario-packages p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-wrap: pretty;
}

.pricing-plan,
.pricing-addons article {
  position: relative;
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 251, 247, 0.98)),
    var(--white);
  box-shadow: 0 28px 74px rgba(17, 23, 22, 0.08);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
  overflow: hidden;
}

.pricing-plan:hover,
.pricing-addons article:hover {
  border-color: rgba(185, 147, 84, 0.36);
  box-shadow: 0 34px 88px rgba(17, 23, 22, 0.12);
  transform: translateY(-3px);
}

.pricing-plan {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 42px;
}

.pricing-plan-featured {
  border-color: rgba(185, 147, 84, 0.42);
  background:
    linear-gradient(145deg, rgba(5, 13, 14, 0.99), rgba(8, 12, 13, 0.98) 56%, rgba(31, 43, 42, 0.99)),
    var(--night-soft);
  color: var(--white);
  box-shadow:
    0 34px 100px rgba(7, 21, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pricing-plan-featured::after {
  position: absolute;
  right: -12%;
  bottom: 16%;
  left: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 184, 198, 0.58), rgba(243, 239, 226, 0.42), transparent);
  box-shadow: 0 0 70px rgba(159, 184, 198, 0.22);
  content: "";
  animation: horizonPulse 7s ease-in-out infinite;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-topline span,
.pricing-addons span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.plan-topline small {
  color: var(--muted);
  font-weight: 800;
}

.pricing-plan-featured .plan-topline small,
.pricing-plan-featured p,
.pricing-plan-featured li {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-plan h3 {
  max-width: 620px;
  margin: 44px 0 0;
  color: var(--green-deep);
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

.pricing-plan-featured h3,
.pricing-plan-featured .price-line {
  color: var(--white);
}

.pricing-plan p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

.pricing-plan ul {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-weight: 800;
}

.pricing-plan li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.pricing-plan .button {
  width: fit-content;
  margin-top: auto;
}

.pricing-plan-featured .button-primary {
  background:
    linear-gradient(135deg, var(--pearl), #d9c28d 58%, #d6bba1),
    var(--pearl);
  color: #111716;
}

.pricing-addons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pricing-addons article {
  min-height: 190px;
  padding: 24px;
}

.pricing-addons h3 {
  margin: 20px 0 10px;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1.24;
}

.pricing-addons p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-wrap: pretty;
}

.pricing-main,
.pricing-side article {
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 74px rgba(17, 23, 22, 0.08);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.pricing-main:hover,
.pricing-side article:hover {
  border-color: rgba(185, 147, 84, 0.34);
  box-shadow: 0 34px 88px rgba(17, 23, 22, 0.12);
  transform: translateY(-3px);
}

.pricing-main {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 42px;
}

.pricing-main h3 {
  max-width: 640px;
  margin: 0;
  color: var(--green-deep);
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 28px 0 20px;
  color: var(--green-deep);
}

.price-line strong {
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: 0;
}

.price-line span {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 900;
}

.pricing-main p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  text-wrap: pretty;
}

.pricing-main ul {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.pricing-main li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-weight: 800;
}

.pricing-main li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.pricing-main .button {
  width: fit-content;
  margin-top: auto;
}

.pricing-side {
  display: grid;
  gap: 18px;
}

.pricing-side article {
  display: grid;
  align-content: start;
  min-height: 170px;
  padding: 26px;
}

.pricing-side span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.pricing-side h3 {
  margin: 20px 0 10px;
  color: var(--green-deep);
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: 0;
}

.pricing-side p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(17, 23, 22, 0.18);
  border-bottom: 1px solid rgba(17, 23, 22, 0.18);
}

.pricing-compare > div {
  min-height: 140px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
}

.pricing-compare > div + div {
  padding-left: 24px;
}

.pricing-compare > div:last-child {
  border-right: 0;
}

.pricing-compare strong,
.pricing-compare span {
  display: block;
}

.pricing-compare strong {
  color: var(--green-deep);
  font-size: 18px;
}

.pricing-compare span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.story-section {
  background: var(--paper);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 68px rgba(17, 23, 22, 0.06);
}

.story-tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
  background: #ecefeb;
}

.story-tab {
  display: grid;
  min-height: 134px;
  align-content: center;
  gap: 6px;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.story-tab:last-child {
  border-bottom: 0;
}

.story-tab:hover,
.story-tab.is-active {
  background: var(--white);
}

.story-tab.is-active {
  box-shadow: inset 4px 0 0 var(--amber);
}

.story-tab span {
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 900;
}

.story-tab small {
  color: var(--muted);
  line-height: 1.5;
}

.story-panel {
  position: relative;
  display: grid;
  gap: 30px;
  padding: 46px;
  overflow: hidden;
}

.story-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  content: "";
  transform-origin: left center;
  animation: storyProgress 7s linear infinite;
}

.story-heading span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.story-heading h3 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: 36px;
  line-height: 1.18;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid > div {
  min-height: 190px;
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--line);
}

.story-grid > div + div {
  padding-left: 20px;
}

.story-grid > div:last-child {
  border-right: 0;
}

.story-grid small,
.story-bottom span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.story-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.story-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.story-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.story-bottom li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfa;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.story-bottom blockquote {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--amber);
  color: var(--green-deep);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.55;
}

.story-link {
  justify-self: start;
  color: var(--green-deep);
  font-weight: 900;
}

.scene-section {
  background: var(--paper);
}

.scene-list {
  border-top: 1px solid var(--line-strong);
}

.scene-list article {
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.scene-index {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.scene-list small {
  color: var(--green);
  font-weight: 900;
}

.scene-list h3 {
  margin: 4px 0 0;
  font-size: 23px;
  line-height: 1.3;
}

.scene-list p {
  color: var(--muted);
}

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

.delivery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.delivery-track li {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.delivery-track li:first-child {
  padding-left: 0;
}

.delivery-track li:last-child {
  padding-right: 0;
  border-right: 0;
}

.delivery-track > li > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.delivery-track h3 {
  margin: 54px 0 10px;
  font-size: 24px;
  line-height: 1.25;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.delivery-track p {
  margin: 0;
  color: var(--muted);
}

.delivery-track small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-deep);
  font-weight: 800;
}

.principle-section {
  position: relative;
  overflow: hidden;
  padding: 104px max(24px, calc((100% - var(--content)) / 2));
  background:
    linear-gradient(145deg, #071514, #050607 62%, #101312),
    linear-gradient(120deg, rgba(159, 184, 198, 0.08), transparent 45%, rgba(180, 120, 93, 0.06));
  color: var(--white);
}

.principle-section::before {
  position: absolute;
  inset: -12% 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 130px, rgba(255, 255, 255, 0.022) 131px, transparent 132px),
    linear-gradient(90deg, transparent, rgba(243, 239, 226, 0.045), transparent);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  animation: measureLineDrift 38s linear infinite reverse;
}

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

.principle-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  align-items: start;
  gap: 80px;
}

.principle-inner > div > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.principle-inner ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.principle-inner li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-inner strong,
.principle-inner span {
  display: block;
}

.principle-inner strong {
  font-size: 16px;
}

.principle-inner span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  gap: 80px;
  align-items: start;
  background: #ebece7;
}

.about-statement h2 {
  max-width: 780px;
}

.about-copy {
  padding-top: 30px;
}

.about-copy p:first-child {
  margin-top: 0;
}

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

.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--amber);
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.contact-section {
  padding: 104px max(24px, calc((100% - var(--content)) / 2));
  background:
    linear-gradient(180deg, #f3f2ec, #e5e7e1);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  align-items: start;
  gap: 72px;
}

.contact-copy > p {
  max-width: 650px;
}

.contact-expectation {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.contact-expectation span {
  padding: 7px 10px;
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.contact-demo-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--amber);
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
  text-wrap: pretty;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(17, 23, 22, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(17, 23, 22, 0.12);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.contact-form:focus-within {
  border-color: rgba(185, 147, 84, 0.42);
  box-shadow: 0 38px 96px rgba(17, 23, 22, 0.14);
  transform: translateY(-2px);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #f9fbfa;
  color: var(--ink);
}

.contact-form input {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 2px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form .privacy-consent input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--green-deep);
}

.contact-form .privacy-consent > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.contact-form .privacy-consent a {
  color: var(--green-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form textarea {
  min-height: 116px;
  padding: 11px 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(185, 147, 84, 0.12);
}

.contact-form .button-primary {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-note.is-success {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.form-note.is-error {
  color: #a23b2a;
  font-size: 13px;
  font-weight: 800;
}

.contact-form .button-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 48px;
  padding: 54px max(24px, calc((100% - var(--content)) / 2));
  background: #101918;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 18px 0 0;
  font-size: 12px;
}

.footer-links,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  color: rgba(255, 255, 255, 0.48);
}

.policy-page {
  background: var(--paper);
}

.policy-main {
  padding: 138px max(24px, calc((100% - 960px) / 2)) 96px;
}

.policy-hero {
  max-width: 880px;
  padding-bottom: 42px;
}

.policy-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

.policy-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  text-wrap: pretty;
}

.policy-hero small {
  display: block;
  margin-top: 18px;
  color: var(--green-deep);
  font-weight: 800;
}

.policy-content {
  border-top: 1px solid var(--line-strong);
}

.policy-content article {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  text-wrap: pretty;
}

.policy-content p {
  margin: 0;
}

.policy-content p + p {
  margin-top: 12px;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.2em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBackdropDrift {
  0% {
    background-position:
      center,
      center,
      48% 51%;
  }

  100% {
    background-position:
      center,
      center,
      53% 48%;
  }
}

@keyframes heroGridDrift {
  from {
    background-position:
      0 0,
      0 0;
  }

  to {
    background-position:
      88px 88px,
      -88px 44px;
  }
}

@keyframes horizonPulse {
  0%,
  100% {
    opacity: 0.56;
    box-shadow: 0 0 64px rgba(159, 184, 198, 0.18);
  }

  50% {
    opacity: 0.92;
    box-shadow: 0 0 104px rgba(243, 239, 226, 0.24);
  }
}

@keyframes lightPlaneDrift {
  0% {
    opacity: 0.46;
    transform: translateX(-14%) skewX(-3deg);
  }

  100% {
    opacity: 0.78;
    transform: translateX(8%) skewX(-3deg);
  }
}

@keyframes measureLineDrift {
  from {
    background-position:
      0 0,
      0 0;
  }

  to {
    background-position:
      260px 0,
      100% 0;
  }
}

@keyframes pulse {
  from {
    opacity: 0.9;
    transform: scale(0.7);
  }

  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes panelScan {
  0%,
  38% {
    transform: translateX(0);
  }

  64%,
  100% {
    transform: translateX(290%);
  }
}

@keyframes panelMeasure {
  from {
    background-position:
      -180px 0,
      0 0;
  }

  to {
    background-position:
      220px 0,
      280px 0;
  }
}

@keyframes fieldGridDrift {
  from {
    background-position:
      0 0,
      0 0,
      center;
  }

  to {
    background-position:
      44px 44px,
      -44px 22px,
      center;
  }
}

@keyframes lineTrace {
  0%,
  18% {
    transform: translateX(0);
  }

  66%,
  100% {
    transform: translateX(460%);
  }
}

@keyframes coreGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
      0 0 54px rgba(167, 187, 181, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translate(-50%, -50%);
  }

  50% {
    border-color: rgba(243, 239, 226, 0.34);
    box-shadow:
      0 0 86px rgba(159, 184, 198, 0.26),
      0 0 34px rgba(180, 120, 93, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%);
  }
}

@keyframes signalBar {
  0% {
    opacity: 0.18;
    transform: scaleX(0.26);
  }

  45% {
    opacity: 0.72;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.24;
    transform: scaleX(0.42);
  }
}

@keyframes sectionGridDrift {
  from {
    background-position:
      0 0,
      0 0,
      center;
  }

  to {
    background-position:
      96px 96px,
      -96px 48px,
      center;
  }
}

@keyframes nodeBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(0);
  }

  50% {
    opacity: 0.92;
    transform: translateY(-4px);
  }
}

.field-node-e {
  animation-name: nodeBreathCenter;
}

@keyframes nodeBreathCenter {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(-50%);
  }

  50% {
    opacity: 0.92;
    transform: translateY(calc(-50% - 4px));
  }
}

@keyframes documentFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes storyProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes softDataSweep {
  from {
    background-position:
      -34% 0,
      0 0;
  }

  to {
    background-position:
      134% 0,
      248px 0;
  }
}

@keyframes cardSheen {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-12deg);
  }

  18% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-12deg);
  }
}

@media (max-width: 1040px) {
  .site-header {
    width: calc(100% - 32px);
    padding-inline: 18px 12px;
  }

  .site-nav > a {
    padding-inline: 8px;
  }

  .hero {
    min-height: 820px;
    height: auto;
    background-position: 58% center;
  }

  .hero-inner {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 120px 0 64px;
  }

  .hero-copy {
    max-width: 900px;
    text-align: center;
  }

  .hero h1 {
    font-size: 78px;
    max-width: 900px;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-proof {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-workbench {
    max-width: 900px;
  }

  .workbench-field {
    min-height: 220px;
  }

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

  .workbench-steps li:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .section-intro h2,
  .principle-inner h2,
  .about-statement h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  .service-card {
    min-height: 590px;
  }

  .problem-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .problem-result {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

	  .decision-tool,
	  .pricing-layout,
	  .story-layout {
	    grid-template-columns: 1fr;
	  }

	  .pricing-plan {
	    min-height: auto;
	  }

  .scenario-packages {
    grid-template-columns: 1fr;
  }

	  .pricing-addons {
	    grid-template-columns: 1fr;
	  }

  .decision-options,
  .story-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .decision-option,
  .story-tab {
    min-height: 134px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .decision-option:last-child,
  .story-tab:last-child {
    border-right: 0;
  }

  .decision-option.is-active,
  .story-tab.is-active {
    box-shadow: inset 0 -4px 0 var(--amber);
  }

	  .document-preview {
	    grid-template-columns: 1fr;
	  }

	  .outcome-explain {
	    border-top: 1px solid var(--line-strong);
	    border-left: 0;
	  }

	  .trend-grid,
	  .pricing-compare {
	    grid-template-columns: 1fr;
	  }

		  .trend-grid article,
		  .trend-grid article + article,
		  .pricing-compare > div,
		  .pricing-compare > div + div {
		    min-height: auto;
		    padding: 24px 0;
		    border-right: 0;
		    border-bottom: 1px solid rgba(17, 23, 22, 0.14);
		  }

	  .trend-grid article:last-child,
	  .pricing-compare > div:last-child {
	    border-bottom: 0;
	  }

		  .trend-grid h3 {
		    margin-top: 22px;
		  }

		  .trend-section .trend-grid article,
		  .trend-section .trend-grid article + article {
		    border-bottom-color: rgba(255, 255, 255, 0.12);
		  }

		  .principle-inner,
	  .about-section,
	  .contact-inner {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 68px;
    border-radius: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100dvh - 68px);
    align-content: start;
    overflow-y: auto;
    padding: 18px 22px 24px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a {
    min-height: 54px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 17px;
  }

  .nav-cta,
  .site-header.is-scrolled .nav-cta {
    margin: 14px 0 0;
    padding-inline: 16px;
    border: 0;
    background: var(--green-deep);
    color: var(--white);
  }

  body.menu-open .site-header {
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
  }

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

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

  .hero {
    min-height: auto;
    height: auto;
    background-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.72) 50%, rgba(5, 6, 7, 0.96)),
      linear-gradient(118deg, transparent 18%, rgba(126, 152, 145, 0.14) 48%, transparent 72%);
  }

  .hero-inner {
    gap: 36px;
    padding: 124px 0 64px;
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .hero-workbench {
    max-width: none;
  }

  .workbench-field {
    min-height: 212px;
  }

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

  .workbench-steps li:nth-child(2) {
    border-right: 0;
  }

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

  .promise-strip > div:nth-child(2) {
    border-right: 0;
  }

	  .promise-strip > div:nth-child(-n + 2) {
	    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	  }

  .section,
  .principle-section,
  .contact-section,
  .policy-main {
    padding-block: 82px;
  }

  .entry-path,
  .service-grid,
  .delivery-track {
    grid-template-columns: 1fr;
  }

  .entry-path article,
  .entry-path article + article {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .entry-path article:last-child {
    border-bottom: 0;
  }

  .entry-path h3 {
    margin-top: 18px;
  }

  .problem-switcher {
    grid-template-columns: 1fr;
  }

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

  .problem-tab {
    text-align: center;
  }

  .problem-tab.is-active {
    box-shadow: inset 0 -4px 0 var(--amber);
  }

  .decision-panel,
  .story-panel {
    padding: 36px 30px;
  }

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

  .story-grid > div,
  .story-grid > div + div {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-grid > div:last-child {
    border-bottom: 0;
  }

  .story-bottom {
    grid-template-columns: 1fr;
  }

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

  .workgroup-layout {
    grid-template-columns: 1fr;
  }

  .role-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role-button {
    border-right: 1px solid var(--line);
  }

	  .role-button.is-active {
	    box-shadow: inset 0 -4px 0 var(--amber);
	  }

  .role-details {
    grid-template-columns: 1fr;
  }

  .role-details > div,
  .role-details > div + div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role-details > div:last-child {
    border-bottom: 0;
  }

  .scene-list article {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .scene-list p {
    grid-column: 2;
    margin: 0;
  }

  .delivery-track li,
  .delivery-track li:first-child,
  .delivery-track li:last-child {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-track li:last-child {
    border-bottom: 0;
  }

  .delivery-track h3 {
    margin-top: 22px;
  }

  .delivery-track small {
    margin-top: 22px;
  }

  .principle-inner,
  .about-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 9px 10px 9px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero-inner {
    width: min(100% - 32px, var(--content));
    gap: 24px;
    padding-top: 108px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-assurances {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .workbench-head {
    grid-template-columns: auto 1fr;
    padding: 13px 15px;
  }

  .workbench-field {
    min-height: 168px;
    margin: 14px;
  }

  .workbench-field::before,
  .field-line,
  .field-node {
    display: none;
  }

  .field-core {
    width: 154px;
    height: 72px;
  }

  .field-core strong {
    font-size: 13px;
  }

  .workbench-status {
    display: none;
  }

  .workbench-question,
  .workbench-steps {
    display: none;
  }

  .workbench-output {
    margin: 0 15px 15px;
    padding: 10px 12px;
  }

  .workbench-output b {
    font-size: 12px;
  }

  .workbench-signal {
    display: none;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

	  .promise-strip > div {
	    min-height: auto;
	    border-right: 0;
	    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	  }

  .promise-strip > div:last-child {
    border-bottom: 0;
  }

  .section,
  .principle-section,
  .contact-section,
  .policy-main {
    padding: 68px 18px;
  }

  .policy-main {
    padding-top: 104px;
  }

  .policy-hero h1 {
    font-size: 38px;
    line-height: 1.14;
  }

  .policy-hero p {
    font-size: 16px;
  }

  .policy-content article {
    padding: 26px 0;
  }

  .policy-content h2 {
    font-size: 21px;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .section-intro h2,
  .principle-inner h2,
  .about-statement h2,
  .contact-copy h2 {
    font-size: 31px;
    line-height: 1.22;
  }

  .section-intro > p:last-child,
  .principle-inner > div > p:last-child,
  .about-copy p,
  .contact-copy > p {
    font-size: 16px;
  }

  .problem-tabs {
    grid-template-columns: 1fr;
  }

  .problem-tab {
    min-height: 58px;
    text-align: left;
  }

  .problem-tab.is-active {
    box-shadow: inset 4px 0 0 var(--amber);
  }

  .problem-panel {
    padding: 28px 20px;
  }

  .problem-panel h3 {
    font-size: 27px;
  }

  .decision-options,
  .story-tabs {
    grid-template-columns: 1fr;
  }

	  .decision-option,
	  .story-tab {
	    min-height: auto;
	    padding: 18px 20px;
	    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-option.is-active,
  .story-tab.is-active {
    box-shadow: inset 4px 0 0 var(--amber);
  }

  .decision-panel,
  .story-panel {
    padding: 28px 20px;
  }

	  .decision-panel h3,
	  .story-heading h3 {
	    font-size: 27px;
	    line-height: 1.24;
	  }

		  .pricing-main,
	  .pricing-plan {
		    min-height: auto;
		    padding: 28px 20px;
		  }

  .scenario-packages article {
    min-height: auto;
    padding: 22px 20px;
  }

		  .pricing-main h3,
	  .pricing-plan h3 {
		    font-size: 29px;
		  }

	  .price-line strong {
	    font-size: 48px;
	  }

	  .pricing-main .button {
	    width: 100%;
	  }

	  .pricing-side article,
  .pricing-addons article {
	    min-height: auto;
	    padding: 22px 20px;
	  }

	  .pricing-side h3,
  .pricing-addons h3 {
	    font-size: 21px;
	  }

	  .decision-panel dl > div {
	    grid-template-columns: 1fr;
	    gap: 6px;
  }

  .service-card {
    padding: 24px;
  }

  .role-list {
    grid-template-columns: 1fr;
  }

  .role-button {
    min-height: 76px;
    border-right: 0;
  }

  .role-stage {
    padding: 28px 22px;
  }

  .role-stage h3 {
    font-size: 30px;
  }

  .outcome-tabs {
    grid-template-columns: 1fr;
  }

  .outcome-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-tab:last-child {
    border-bottom: 0;
  }

  .document-preview {
    min-height: auto;
  }

  .document-page {
    width: calc(100% - 28px);
    min-height: auto;
    margin: 18px 0;
    padding: 24px 18px;
  }

  .document-page h3 {
    font-size: 24px;
  }

  .document-metric-row {
    grid-template-columns: 1fr;
  }

  .outcome-explain {
    padding: 28px 22px;
  }

  .scene-list article {
    grid-template-columns: 36px 1fr;
  }

  .story-bottom blockquote {
    padding-left: 16px;
    font-size: 18px;
  }

  .principle-inner {
    gap: 38px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 18px;
  }

  .footer-legal {
    grid-column: auto;
  }
}

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

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