:root {
  --bg: #ffffff;
  --bg-soft: #f5f7f3;
  --bg-strong: #0d3327;
  --ink: #111816;
  --muted: #5f6a66;
  --line: #dbe2dc;
  --line-strong: #b9c8bf;
  --green: #00684f;
  --green-deep: #004b39;
  --green-soft: #e5f1ec;
  --amber: #c98216;
  --amber-soft: #fff1d8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 39, 31, 0.09);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Inter",
    "Noto Sans SC",
    "Microsoft YaHei",
    "PingFang SC",
    Arial,
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 226, 220, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #26302d;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 16px !important;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(0, 104, 79, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-deep);
  transition: transform 180ms ease;
}

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

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

.section,
.section-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: 58px;
  padding-top: 70px;
  padding-bottom: 62px;
}

.hero-copy h1,
.hero-copy .hero-text,
.hero-copy .hero-actions,
.hero-points li {
  animation: hero-rise 680ms cubic-bezier(0.2, 0.72, 0.24, 1) both;
  opacity: 0;
  transform: translateY(14px);
}

.hero-copy h1 {
  animation-delay: 180ms;
  font-size: 62px;
}

@media (min-width: 1101px) {
  .hero-copy h1 {
    white-space: nowrap;
  }
}

.hero-copy .hero-text {
  animation-delay: 300ms;
}

.hero-copy .hero-actions {
  animation-delay: 420ms;
}

.hero-points li:first-child {
  animation-delay: 540ms;
}

.hero-points li:nth-child(2) {
  animation-delay: 640ms;
}

.hero-points li:nth-child(3) {
  animation-delay: 740ms;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: #293631;
  font-size: 21px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

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

.button.primary {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(0, 104, 79, 0.18);
  isolation: isolate;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-deep);
}

.hero-actions .button.primary::after {
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: 0;
  width: 54%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 28%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.04) 72%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  transform: translateX(0) skewX(-18deg);
  animation: button-sheen 4.6s ease-in-out infinite;
}

.hero-actions .button.primary svg {
  transition: transform 180ms ease;
}

.hero-actions .button.primary:hover svg,
.hero-actions .button.primary:focus-visible svg {
  transform: translateX(4px);
}

.button.secondary {
  border-color: var(--green);
  background: var(--white);
  color: var(--green-deep);
}

.button.full {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 15px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

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

.hero-media {
  container-type: inline-size;
  position: relative;
  margin: 0;
}

.product-board {
  --board-deep: #1b4332;
  --board-green: #2d6a4f;
  --board-soft: #f8f9fa;
  --board-softer: #fafbfc;
  --board-line: #dde5df;
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  grid-template-rows: clamp(32px, 7.2cqw, 52px) minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--board-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(27, 67, 50, 0.12);
}

.product-board::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 18%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 106, 79, 0.055),
    transparent
  );
  content: "";
  pointer-events: none;
  transform: translateY(-130%);
  animation: board-scan 7.5s ease-in-out infinite;
}

.board-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(8px, 1.7cqw, 18px);
  min-width: 0;
  padding: 0 clamp(12px, 2.4cqw, 22px);
  background: var(--board-softer);
  border-bottom: 1px solid var(--board-line);
}

.board-topbar p {
  margin: 0;
  color: var(--board-deep);
  font-size: clamp(10px, 1.85cqw, 14px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.window-dots {
  display: inline-flex;
  gap: clamp(4px, 0.9cqw, 7px);
  align-items: center;
}

.window-dots span {
  width: clamp(6px, 1.2cqw, 9px);
  height: clamp(6px, 1.2cqw, 9px);
  background: #d6ded9;
  border-radius: 50%;
}

.window-dots span:first-child {
  background: #e9b46a;
}

.window-dots span:nth-child(2) {
  background: #c9d4ce;
}

.window-dots span:nth-child(3) {
  background: var(--board-green);
}

.engine-status {
  justify-self: end;
  min-width: 0;
  padding: clamp(3px, 0.65cqw, 5px) clamp(6px, 1.15cqw, 10px);
  background: #edf6f1;
  color: var(--board-green);
  border: 1px solid #d5e8dc;
  border-radius: 999px;
  font-size: clamp(8px, 1.35cqw, 11px);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  gap: clamp(6px, 1.6cqw, 16px);
  padding: clamp(7px, 2.15cqw, 20px);
  background: var(--board-soft);
}

.board-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(4px, 1.25cqw, 12px);
  overflow: hidden;
  padding: clamp(7px, 1.9cqw, 18px);
  background: #ffffff;
  border: 1px solid #e4e9e5;
  border-radius: clamp(6px, 1.2cqw, 8px);
  box-shadow: 0 10px 26px rgba(27, 67, 50, 0.06);
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(7px, 1.2cqw, 12px);
  min-width: 0;
}

.card-heading h2 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #24342f;
  font-size: clamp(8px, 1.65cqw, 13px);
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-heading span,
.trend-up {
  flex: 0 0 auto;
  color: var(--board-green);
  font-size: clamp(7px, 1.4cqw, 11px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.lead-number {
  margin: 0;
  color: var(--board-deep);
  font-size: clamp(24px, 7.6cqw, 50px);
  font-weight: 900;
  line-height: 0.95;
}

.spark-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: clamp(3px, 0.8cqw, 7px);
  height: clamp(16px, 6cqw, 44px);
}

.spark-bars span {
  height: var(--bar);
  min-height: 5px;
  background: linear-gradient(180deg, #2d6a4f, #1b4332);
  border-radius: 4px 4px 2px 2px;
  transform-origin: bottom;
  animation: bar-refresh 6.4s ease-in-out infinite;
}

.spark-bars span:nth-child(2n) {
  animation-delay: 520ms;
}

.spark-bars span:nth-child(3n) {
  animation-delay: 980ms;
}

.topic-list {
  display: grid;
  gap: clamp(5px, 1cqw, 9px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-list li,
.quality-row > div:first-child,
.action-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(7px, 1.2cqw, 12px);
  min-width: 0;
}

.topic-list span,
.quality-row span,
.action-list span {
  min-width: 0;
  overflow: hidden;
  color: #53605b;
  font-size: clamp(7px, 1.55cqw, 12px);
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-list strong,
.quality-row strong {
  flex: 0 0 auto;
  color: var(--board-deep);
  font-size: clamp(7px, 1.55cqw, 12px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.quality-list,
.action-list {
  display: grid;
  gap: clamp(5px, 1.1cqw, 10px);
}

.quality-row {
  display: grid;
  gap: clamp(4px, 0.8cqw, 7px);
  min-width: 0;
}

.progress-track {
  height: clamp(5px, 0.95cqw, 8px);
  overflow: hidden;
  background: #edf1ee;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--board-green);
  border-radius: inherit;
  transform-origin: left;
  animation: progress-refresh 6.8s ease-in-out infinite;
}

.quality-row:nth-child(2) .progress-track span {
  animation-delay: 720ms;
}

.quality-row:nth-child(3) .progress-track span {
  animation-delay: 1280ms;
}

.action-list article {
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(4px, 1.1cqw, 10px);
  background: var(--board-softer);
  border: 1px solid #e8eee9;
  border-radius: clamp(5px, 1cqw, 7px);
}

.action-list article > strong {
  flex: 0 0 auto;
  width: clamp(34px, 6.5cqw, 50px);
  color: var(--board-deep);
  font-size: clamp(11px, 2.4cqw, 18px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.action-list p {
  margin: 0 0 clamp(2px, 0.45cqw, 4px);
  color: #24342f;
  font-size: clamp(7px, 1.55cqw, 12px);
  font-weight: 900;
  line-height: 1.2;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--line);
}

.metric-strip article {
  min-height: 116px;
  padding: 26px 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.js .metric-strip article {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.js .metric-strip article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .metric-strip article:nth-child(2) {
  transition-delay: 80ms;
}

.js .metric-strip article:nth-child(3) {
  transition-delay: 160ms;
}

.js .metric-strip article:nth-child(4) {
  transition-delay: 240ms;
}

.metric-strip article:first-child {
  border-left: 1px solid var(--line);
}

.metric-strip span,
.section-index,
.asset-head {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.metric-strip strong {
  display: block;
  margin: 6px 0 6px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.metric-strip small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-sheen {
  0%,
  38% {
    transform: translateX(0) skewX(-18deg);
  }

  58%,
  100% {
    transform: translateX(330%) skewX(-18deg);
  }
}

@keyframes board-scan {
  0%,
  18% {
    opacity: 0;
    transform: translateY(-130%);
  }

  28% {
    opacity: 1;
  }

  54% {
    opacity: 0.72;
  }

  68%,
  100% {
    opacity: 0;
    transform: translateY(640%);
  }
}

@keyframes bar-refresh {
  0%,
  60%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  72% {
    opacity: 0.9;
    transform: scaleY(0.965);
  }

  84% {
    opacity: 1;
    transform: scaleY(1.015);
  }
}

@keyframes progress-refresh {
  0%,
  58%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }

  72% {
    opacity: 0.86;
    transform: scaleX(0.985);
  }

  86% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-index {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-heading h2,
.diagnosis-copy h2,
.progress-copy h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.section-index),
.diagnosis-copy p:not(.section-index),
.progress-copy p:not(.section-index) {
  color: var(--muted);
  font-size: 17px;
}

.method-loop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(254px, auto));
  gap: 34px 42px;
  align-items: stretch;
}

.method-loop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 78%);
  height: 72%;
  border: 1px solid rgba(0, 104, 79, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease;
}

.method-loop::after {
  position: absolute;
  top: 18%;
  left: calc(50% + min(286px, 33%));
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(0, 104, 79, 0.36);
  border-right: 1px solid rgba(0, 104, 79, 0.36);
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease;
}

.method-loop-core {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  gap: 8px;
  place-self: center;
  width: 178px;
  aspect-ratio: 1;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border: 1px solid rgba(0, 104, 79, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(13, 51, 39, 0.09);
  text-align: center;
  transition:
    opacity 620ms cubic-bezier(0.2, 0.72, 0.24, 1),
    transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.method-loop-core strong {
  color: var(--green-deep);
  font-size: 24px;
  line-height: 1.18;
}

.method-loop-core span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.method-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 254px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 226, 220, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(16, 39, 31, 0.06);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.72, 0.24, 1),
    transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.method-step-one {
  grid-column: 1;
  grid-row: 1;
}

.method-step-two {
  grid-column: 3;
  grid-row: 1;
}

.method-step-three {
  grid-column: 3;
  grid-row: 2;
}

.method-step-four {
  grid-column: 1;
  grid-row: 2;
}

.method-step h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.method-step p {
  margin-bottom: 20px;
  color: var(--muted);
}

.method-step ul,
.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-step li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: #2e3b36;
  font-size: 14px;
}

.method-step li::before,
.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.method-loop:has(.method-step:hover)::before {
  border-color: rgba(0, 104, 79, 0.32);
}

.method-loop:has(.method-step:hover)::after {
  border-color: rgba(0, 104, 79, 0.56);
}

.method-step:hover {
  border-color: rgba(0, 104, 79, 0.28);
  box-shadow: 0 24px 52px rgba(16, 39, 31, 0.1);
  transform: translateY(-5px);
}

.js .method .section-index,
.js .method .section-heading h2,
.js .method .section-heading p:not(.section-index),
.js .method .method-loop-core,
.js .method .method-step {
  opacity: 0;
}

.js .method .section-heading h2,
.js .method .section-heading p:not(.section-index),
.js .method .method-step {
  transform: translateY(18px);
}

.js .method .section-index {
  transition: opacity 520ms ease;
}

.js .method .section-heading h2 {
  transition:
    opacity 620ms cubic-bezier(0.2, 0.72, 0.24, 1) 110ms,
    transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1) 110ms;
}

.js .method .section-heading p:not(.section-index) {
  transition:
    opacity 620ms ease 250ms,
    transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1) 250ms;
}

.js .method .method-loop::before {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translate(-50%, -50%) scaleX(0.98);
  transition:
    opacity 520ms ease 520ms,
    clip-path 860ms cubic-bezier(0.2, 0.72, 0.24, 1) 520ms,
    transform 860ms cubic-bezier(0.2, 0.72, 0.24, 1) 520ms,
    border-color 220ms ease;
}

.js .method .method-loop::after {
  opacity: 0;
  transform: translateX(-6px) rotate(45deg);
  transition:
    opacity 460ms ease 820ms,
    transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1) 820ms,
    border-color 220ms ease;
}

.js .method .method-loop-core {
  transform: scale(0.96);
  transition-delay: 380ms, 380ms;
}

.js .method .method-step-one {
  transition-delay: 560ms, 560ms, 0ms, 0ms;
}

.js .method .method-step-two {
  transition-delay: 690ms, 690ms, 0ms, 0ms;
}

.js .method .method-step-three {
  transition-delay: 820ms, 820ms, 0ms, 0ms;
}

.js .method .method-step-four {
  transition-delay: 950ms, 950ms, 0ms, 0ms;
}

.js .method.is-visible .section-index,
.js .method.is-visible .section-heading h2,
.js .method.is-visible .section-heading p:not(.section-index),
.js .method.is-visible .method-loop-core,
.js .method.is-visible .method-step {
  opacity: 1;
  transform: none;
}

.js .method.is-visible .method-loop::before {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate(-50%, -50%) scaleX(1);
}

.js .method.is-visible .method-loop::after {
  opacity: 1;
  transform: rotate(45deg);
}

.js .method.is-visible .method-step:hover {
  transition-delay: 0ms, 0ms, 0ms, 0ms;
  transform: translateY(-5px);
}

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-grid::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 114, 88, 0.26), transparent);
  content: "";
  transform: translateY(-50%);
}

.offer-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(14, 35, 31, 0);
  transition:
    transform 220ms cubic-bezier(0.2, 0.72, 0.24, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.offer-card.interactive {
  cursor: pointer;
}

.offer-card.interactive:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 104, 79, 0.12);
  outline: none;
}

.offer-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -26px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 114, 88, 0), rgba(0, 114, 88, 0.5));
  content: "";
  transform: translateY(-50%);
}

.offer-card:hover {
  border-color: rgba(0, 114, 88, 0.34);
  box-shadow: 0 18px 42px rgba(14, 35, 31, 0.1);
  transform: translateY(-5px);
}

.offer-card.highlighted {
  background: var(--amber-soft);
  border-color: rgba(201, 130, 22, 0.34);
  animation: recommended-breath 5.4s ease-in-out infinite;
}

.offer-card.highlighted::before {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(201, 130, 22, 0.26);
  border-radius: 999px;
  color: #8c5d15;
  content: "推荐路径";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.offer-card.highlighted:hover {
  animation: none;
  border-color: rgba(201, 130, 22, 0.52);
  box-shadow: 0 20px 46px rgba(140, 93, 21, 0.13);
}

.offer-card.dark {
  background: var(--bg-strong);
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--bg-strong);
}

.offer-card.dark:hover {
  background: #0b3f31;
  border-color: rgba(240, 180, 93, 0.38);
  box-shadow: 0 22px 48px rgba(7, 39, 31, 0.22);
}

.offer-level {
  display: inline-flex;
  align-self: flex-start;
  justify-self: start;
  margin-bottom: 18px;
  padding: 5px 9px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.offer-card.dark .offer-level {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.offer-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.25;
}

.offer-subtitle {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.offer-price {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.offer-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px 10px;
  margin-bottom: 14px;
}

.offer-price-row .offer-price {
  margin: 0;
}

.offer-qualifier {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  background: rgba(0, 104, 79, 0.08);
  color: var(--green-deep);
  border: 1px solid rgba(0, 104, 79, 0.12);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.offer-card.dark .offer-price {
  color: #f0b45d;
  transition: color 220ms ease;
}

.offer-card.dark:hover .offer-price {
  color: #ffc56f;
}

.offer-card.dark .offer-qualifier {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
}

.offer-card p:not(.offer-price, .offer-subtitle) {
  margin-bottom: 22px;
  color: var(--muted);
}

.offer-card.dark p:not(.offer-price, .offer-subtitle),
.offer-card.dark .check-list li {
  color: rgba(255, 255, 255, 0.74);
}

.offer-card.dark .check-list li::before {
  background: #f0b45d;
}

.offer-action-bar {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
}

.offer-action {
  width: 100%;
  min-height: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  background: #f2f2f7;
  color: #1d1d1f;
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.offer-action:hover,
.offer-action:focus-visible {
  background: #e9e9ef;
  transform: scale(1.02);
}

.offer-action:active {
  opacity: 0.88;
  transform: scale(0.96);
}

.offer-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 104, 79, 0.14);
}

.offer-card:nth-child(2) .offer-action,
.offer-card.highlighted .offer-action {
  border-color: transparent;
  background: var(--green);
  color: var(--white);
}

.offer-card:nth-child(2) .offer-action:hover,
.offer-card:nth-child(2) .offer-action:focus-visible,
.offer-card.highlighted .offer-action:hover,
.offer-card.highlighted .offer-action:focus-visible {
  background: var(--green-deep);
}

.offer-card.dark .offer-action {
  border-color: transparent;
  background: #ffffff;
  color: #1d1d1f;
}

.offer-card.dark .offer-action:hover,
.offer-card.dark .offer-action:focus-visible {
  background: #f2f2f7;
}

.js .offers .section-index,
.js .offers .section-heading h2,
.js .offers .split-heading > p:not(.section-index),
.js .offers .offer-card {
  opacity: 0;
  transform: translateY(18px);
  transition-property: opacity, transform, border-color, box-shadow, background-color;
  transition-duration: 620ms, 620ms, 220ms, 220ms, 220ms;
  transition-timing-function: cubic-bezier(0.2, 0.72, 0.24, 1), cubic-bezier(0.2, 0.72, 0.24, 1), ease, ease, ease;
  transition-delay: var(--path-delay, 0ms), var(--path-delay, 0ms), 0ms, 0ms, 0ms;
}

.js .offers .section-index {
  --path-delay: 0ms;
  transform: translateY(8px);
}

.js .offers .section-heading h2 {
  --path-delay: 110ms;
}

.js .offers .split-heading > p:not(.section-index) {
  --path-delay: 230ms;
}

.js .offers .offer-card:nth-child(1) {
  --path-delay: 340ms;
}

.js .offers .offer-card:nth-child(2) {
  --path-delay: 470ms;
}

.js .offers .offer-card:nth-child(3) {
  --path-delay: 600ms;
}

.js .offers .offer-card:nth-child(4) {
  --path-delay: 730ms;
}

.js .offers.is-visible .section-index,
.js .offers.is-visible .section-heading h2,
.js .offers.is-visible .split-heading > p:not(.section-index),
.js .offers.is-visible .offer-card {
  opacity: 1;
  transform: none;
}

.js .offers.is-visible .offer-card:hover {
  transition-delay: 0ms, 0ms, 0ms, 0ms, 0ms;
  transform: translateY(-5px);
}

@keyframes recommended-breath {
  0%,
  100% {
    border-color: rgba(201, 130, 22, 0.34);
    box-shadow: 0 14px 34px rgba(140, 93, 21, 0.03);
  }

  50% {
    border-color: rgba(201, 130, 22, 0.48);
    box-shadow: 0 18px 40px rgba(140, 93, 21, 0.09);
  }
}

.muted {
  max-width: none;
  background: var(--bg-soft);
}

.muted > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.case-card {
  min-height: 360px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 39, 31, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.case-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.case-title {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.case-top h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.case-subtitle {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.case-top span {
  flex: 0 0 auto;
  padding: 4px 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 180ms ease, opacity 360ms ease;
}

.case-card dt {
  color: var(--green);
  transition: color 180ms ease;
}

.case-card:hover {
  border-color: rgba(0, 104, 79, 0.3);
  box-shadow: 0 22px 52px rgba(16, 39, 31, 0.1);
  transform: translateY(-5px);
}

.case-card:hover .case-top span {
  background: #d7ebe3;
  transition-delay: 0ms, 0ms;
}

.case-card:hover dt {
  color: var(--green-deep);
}

.js .cases .section-heading h2,
.js .cases .section-heading > p:not(.section-index) {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.72, 0.24, 1),
    transform 520ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.js .cases .section-heading > p:not(.section-index) {
  transition-delay: 100ms, 100ms;
}

.js .cases .case-card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms cubic-bezier(0.2, 0.72, 0.24, 1),
    transform 560ms cubic-bezier(0.2, 0.72, 0.24, 1),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.js .cases .case-card:nth-child(1) {
  transition-delay: 220ms, 220ms, 0ms, 0ms, 0ms;
}

.js .cases .case-card:nth-child(2) {
  transition-delay: 360ms, 360ms, 0ms, 0ms, 0ms;
}

.js .cases .case-card:nth-child(3) {
  transition-delay: 500ms, 500ms, 0ms, 0ms, 0ms;
}

.js .cases .case-top span {
  opacity: 0;
  transition:
    opacity 360ms ease,
    background-color 180ms ease;
}

.js .cases .case-card:nth-child(1) .case-top span {
  transition-delay: 380ms, 0ms;
}

.js .cases .case-card:nth-child(2) .case-top span {
  transition-delay: 520ms, 0ms;
}

.js .cases .case-card:nth-child(3) .case-top span {
  transition-delay: 660ms, 0ms;
}

.js .cases.is-visible .section-heading h2,
.js .cases.is-visible .section-heading > p:not(.section-index),
.js .cases.is-visible .case-card {
  opacity: 1;
  transform: none;
}

.js .cases.is-visible .case-top span {
  opacity: 1;
}

.js .cases.is-visible .case-card:hover {
  transition-delay: 0ms, 0ms, 0ms, 0ms, 0ms;
  transform: translateY(-5px);
}

.js .cases .case-card:hover .case-top span {
  transition-delay: 0ms, 0ms;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  margin-bottom: 4px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--muted);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.split-heading p:not(.section-index) {
  max-width: 460px;
}

.asset-table {
  --asset-reveal-delay: 0ms;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition:
    opacity 180ms ease var(--asset-reveal-delay),
    transform 180ms ease var(--asset-reveal-delay),
    background-color 180ms ease,
    color 180ms ease;
}

.asset-row {
  --asset-reveal-delay: 0ms;
  display: grid;
  grid-template-columns: 1.15fr 2fr 0.7fr 0.65fr;
  min-height: 64px;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background-color: #fff;
  transition:
    opacity 180ms ease var(--asset-reveal-delay),
    transform 180ms ease var(--asset-reveal-delay),
    background-color 180ms ease,
    color 180ms ease;
}

.asset-row:first-child {
  border-top: 0;
}

.asset-row span,
.asset-row a {
  min-width: 0;
}

.asset-row span:nth-child(2) {
  color: var(--muted);
}

.asset-row:not(.asset-head):hover,
.asset-row:not(.asset-head):focus-within {
  background-color: #fafbfc;
}

.asset-row span:first-child {
  transition: color 180ms ease;
}

.asset-row:not(.asset-head):hover span:first-child,
.asset-row:not(.asset-head):focus-within span:first-child {
  color: var(--green-deep);
}

.asset-row a {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.asset-row:not(.asset-head):hover a,
.asset-row:not(.asset-head):focus-within a,
.asset-row a:hover,
.asset-row a:focus-visible {
  color: var(--green-deep);
  text-decoration-line: underline;
  transform: translateX(3px);
}

.asset-head {
  min-height: 52px;
  font-size: 17px;
  background: var(--green-soft);
}

.js .assets .section-index,
.js .assets .section-heading h2,
.js .assets .split-heading > p:not(.section-index),
.js .assets .asset-table,
.js .assets .asset-row {
  opacity: 0;
  transition:
    opacity 180ms ease var(--asset-reveal-delay, 0ms),
    transform 180ms ease var(--asset-reveal-delay, 0ms),
    background-color 180ms ease,
    color 180ms ease;
}

.js .assets .section-heading h2,
.js .assets .split-heading > p:not(.section-index),
.js .assets .asset-table,
.js .assets .asset-row {
  transform: translateY(12px);
}

.js .assets .section-index {
  --asset-reveal-delay: 0ms;
  transform: none;
}

.js .assets .section-heading h2 {
  --asset-reveal-delay: 80ms;
}

.js .assets .split-heading > p:not(.section-index) {
  --asset-reveal-delay: 160ms;
}

.js .assets .asset-table {
  --asset-reveal-delay: 240ms;
}

.js .assets .asset-row:nth-child(1) {
  --asset-reveal-delay: 320ms;
}

.js .assets .asset-row:nth-child(2) {
  --asset-reveal-delay: 390ms;
}

.js .assets .asset-row:nth-child(3) {
  --asset-reveal-delay: 460ms;
}

.js .assets .asset-row:nth-child(4) {
  --asset-reveal-delay: 530ms;
}

.js .assets .asset-row:nth-child(5) {
  --asset-reveal-delay: 600ms;
}

.js .assets .asset-row:nth-child(6) {
  --asset-reveal-delay: 670ms;
}

.js .assets .asset-row:nth-child(7) {
  --asset-reveal-delay: 740ms;
}

.js .assets .asset-row:nth-child(8) {
  --asset-reveal-delay: 810ms;
}

.js .assets .asset-row:nth-child(9) {
  --asset-reveal-delay: 880ms;
}

.js .assets.is-visible .section-index,
.js .assets.is-visible .section-heading h2,
.js .assets.is-visible .split-heading > p:not(.section-index),
.js .assets.is-visible .asset-table,
.js .assets.is-visible .asset-row {
  opacity: 1;
  transform: translateY(0);
}

.asset-detail.section {
  padding-right: 0;
  padding-left: 0;
}

.asset-detail-shell {
  display: grid;
  gap: 22px;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.asset-back {
  justify-self: start;
  padding: 0;
  background: transparent;
  color: var(--green-deep);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.asset-document {
  display: grid;
  gap: 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 39, 31, 0.06);
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.asset-document h2 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.16;
}

.asset-detail-summary {
  max-width: 760px;
  margin: -8px 0 0;
  color: #293631;
  font-size: 18px;
  line-height: 1.75;
}

.asset-document-body {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.asset-document-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.asset-document-section h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 20px;
  line-height: 1.35;
}

.asset-document-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asset-document-section li {
  position: relative;
  padding-left: 18px;
  color: #2e3b36;
}

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

.asset-document-ending {
  max-width: 760px;
  margin: 0;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 900;
}

.asset-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--bg-strong);
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
}

.asset-detail-cta h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.24;
}

.asset-detail-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.progress-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 58px;
  align-items: stretch;
  max-width: var(--max);
  padding-right: 24px;
  padding-left: 24px;
}

.progress.section {
  padding-right: 0;
  padding-left: 0;
}

.progress-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.progress-copy .check-list {
  margin-top: auto;
}

.js .progress .section-index,
.js .progress .progress-copy h2,
.js .progress .progress-copy > p:not(.section-index),
.js .progress .check-list li,
.js .progress .progress-form,
.js .progress .progress-form label,
.js .progress .progress-form .form-note,
.js .progress .progress-form .button {
  opacity: 0;
  transition:
    opacity 180ms ease var(--progress-reveal-delay, 0ms),
    transform 180ms ease var(--progress-reveal-delay, 0ms),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.js .progress .section-index {
  --progress-reveal-delay: 0ms;
  transform: none;
}

.js .progress .progress-copy h2 {
  --progress-reveal-delay: 90ms;
  transform: translateY(12px);
}

.js .progress .progress-copy > p:not(.section-index) {
  --progress-reveal-delay: 190ms;
  transform: translateY(10px);
}

.js .progress .check-list li {
  transform: translateY(10px);
}

.js .progress .check-list li:nth-child(1) {
  --progress-reveal-delay: 300ms;
}

.js .progress .check-list li:nth-child(2) {
  --progress-reveal-delay: 400ms;
}

.js .progress .check-list li:nth-child(3) {
  --progress-reveal-delay: 500ms;
}

.js .progress .progress-form {
  --progress-reveal-delay: 580ms;
  transform: translateY(12px);
}

.js .progress .progress-form label,
.js .progress .progress-form .form-note,
.js .progress .progress-form .button {
  transform: translateY(10px);
}

.js .progress .progress-form label:nth-of-type(1) {
  --progress-reveal-delay: 680ms;
}

.js .progress .progress-form label:nth-of-type(2) {
  --progress-reveal-delay: 790ms;
}

.js .progress .progress-form .form-note {
  --progress-reveal-delay: 850ms;
}

.js .progress .progress-form .button {
  --progress-reveal-delay: 910ms;
}

.js .progress.is-visible .section-index,
.js .progress.is-visible .progress-copy h2,
.js .progress.is-visible .progress-copy > p:not(.section-index),
.js .progress.is-visible .check-list li,
.js .progress.is-visible .progress-form,
.js .progress.is-visible .progress-form label,
.js .progress.is-visible .progress-form .form-note,
.js .progress.is-visible .progress-form .button {
  opacity: 1;
  transform: translateY(0);
}

.js .progress.is-visible .progress-form .form-note.is-updating {
  opacity: 0;
}

.progress-entry-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.progress-entry-card > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-entry-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.22;
}

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

.progress-entry-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.progress-entry-meta div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px;
  background: var(--bg-soft);
}

.progress-entry-meta div + div {
  border-left: 1px solid var(--line);
}

.progress-entry-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress-entry-meta strong {
  color: var(--green-deep);
  font-size: 16px;
  line-height: 1.25;
}

.progress-form,
.diagnosis-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #26302d;
  font-size: 14px;
  font-weight: 800;
}

.field-block {
  display: grid;
  gap: 10px;
}

.field-label {
  color: #26302d;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  accent-color: var(--green);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 104, 79, 0.12);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  box-shadow: none;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-deep) 50%),
    linear-gradient(135deg, var(--green-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 38px;
}

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

.progress-form input:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(0, 104, 79, 0.1);
}

.progress-form .form-note {
  min-height: 42px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.progress-form .form-note.is-updating {
  opacity: 0;
}

.progress-form.is-error .form-note {
  color: #d92d20;
}

.progress-form .button {
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.progress-form .button:hover,
.progress-form .button:focus-visible,
.js .progress.is-visible .progress-form .button:hover,
.js .progress.is-visible .progress-form .button:focus-visible {
  background-color: #007158;
  transform: scale(1.02);
}

.progress-form .button:active,
.js .progress.is-visible .progress-form .button:active {
  opacity: 0.92;
  background-color: var(--green-deep);
  transform: scale(0.96);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  background: var(--green-soft);
  color: var(--green-deep);
  border: 1px solid #cfdfd7;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: start;
}

.diagnosis-copy {
  position: sticky;
  top: 110px;
}

.diagnosis-flow,
.deliverable-list,
.report-grid ul,
.report-grid ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.diagnosis-flow li,
.deliverable-list li,
.report-grid li {
  position: relative;
  padding-left: 20px;
  color: #2e3b36;
}

.diagnosis-flow li::before,
.deliverable-list li::before,
.report-grid li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  content: "";
}

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

.preview.section {
  padding-right: 0;
  padding-left: 0;
}

.preview-shell {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.preview-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-card.highlighted {
  background: var(--amber-soft);
  border-color: rgba(201, 130, 22, 0.34);
}

.preview-card span {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.preview-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.28;
}

.preview-card p,
.preview-bullets {
  margin: 0;
  color: var(--muted);
}

.preview-bullets {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.65;
}

.preview-bullets li {
  position: relative;
  padding-left: 17px;
}

.preview-bullets li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "•";
  font-weight: 900;
}

.js .preview .preview-card,
.js .preview .unlock-strip {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms ease var(--preview-reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.72, 0.24, 1) var(--preview-reveal-delay, 0ms),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.js .preview .preview-card:nth-child(1) {
  --preview-reveal-delay: 90ms;
}

.js .preview .preview-card:nth-child(2) {
  --preview-reveal-delay: 210ms;
}

.js .preview .preview-card:nth-child(3) {
  --preview-reveal-delay: 330ms;
}

.js .preview .unlock-strip {
  --preview-reveal-delay: 520ms;
}

.js .preview.is-visible .preview-card,
.js .preview.is-visible .unlock-strip {
  opacity: 1;
  transform: translateY(0);
}

.unlock-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 26px;
  background: var(--bg-strong);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
}

.unlock-strip .section-index {
  color: #f0b45d;
}

.unlock-strip h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
}

.unlock-strip p:last-child {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.checkout-copy h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.18;
}

.checkout-copy > p:not(.section-index) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.payment-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-card h3,
.payment-card p {
  margin: 0;
}

.payment-card p:not(.offer-price, .offer-subtitle, .form-note) {
  color: var(--muted);
}

.payment-dialog {
  max-width: 460px;
}

.payment-dialog h2:not(.sr-only) {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.22;
}

.payment-qr {
  display: block;
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
  margin: 12px auto 14px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 31, 0.08);
}

.payment-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 12px;
}

.payment-action-row .button {
  width: 100%;
  min-height: 46px;
  padding-right: 16px;
  padding-left: 16px;
}

@media (max-width: 420px) {
  .payment-action-row {
    grid-template-columns: 1fr;
  }
}

.payment-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.payment-confirm-form {
  gap: 12px;
  margin-top: 0;
}

.application-page {
  background: var(--white);
}

.application-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 24px 64px;
  border-bottom: 1px solid var(--line);
}

.application-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 52px;
}

.application-hero p:not(.section-index) {
  max-width: 760px;
  margin-bottom: 0;
  color: #293631;
  font-size: 19px;
  line-height: 1.75;
}

.application-summary {
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.application-summary h2 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.3;
}

.application-summary ol,
.application-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 0;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 24px 96px;
}

.application-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.form-section {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 39, 31, 0.05);
}

.form-section h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.25;
}

.form-section > p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.form-grid .wide,
.input-trio,
.checkbox-grid {
  grid-column: 1 / -1;
}

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

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

.choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #2e3b36;
  font-size: 14px;
  font-weight: 800;
}

.choice input {
  flex: 0 0 auto;
  margin-top: 4px;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.upload-field input[type="file"] {
  min-height: 52px;
  padding-top: 12px;
  background: var(--bg-soft);
}

.material-uploader {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.material-uploader-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.material-uploader-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.material-counter {
  flex: 0 0 auto;
  padding: 5px 9px;
  background: var(--green-soft);
  color: var(--green-deep);
  border: 1px solid rgba(0, 104, 79, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.material-upload-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.material-file-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 104, 79, 0.14);
}

.material-file-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.material-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.material-format-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-format-grid span {
  padding: 6px 10px;
  background: var(--white);
  color: var(--green-deep);
  border: 1px solid rgba(0, 104, 79, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

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

.material-empty {
  margin: 0;
  padding: 14px;
  background: var(--white);
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  font-size: 14px;
}

.material-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.material-main {
  min-width: 0;
}

.material-main strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.material-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.material-delete {
  min-height: 38px;
  padding: 8px 12px;
  background: var(--white);
  color: #a13a2a;
  border: 1px solid rgba(217, 45, 32, 0.24);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.application-actions {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--bg-strong);
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
}

.application-actions .button {
  justify-self: start;
}

.application-actions .form-note {
  color: rgba(255, 255, 255, 0.68);
}

.application-success {
  padding: 16px 18px;
  background: var(--green-soft);
  color: var(--green-deep);
  border: 1px solid #cfdfd7;
  border-radius: var(--radius);
  font-weight: 800;
}

.client-progress-page {
  background: #fbfcfb;
}

.weekly-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 48px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 24px 64px;
  border-bottom: 1px solid var(--line);
}

.weekly-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 56px;
}

.weekly-hero p:not(.section-index) {
  max-width: 780px;
  margin-bottom: 0;
  color: #293631;
  font-size: 19px;
  line-height: 1.75;
}

.weekly-status-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--bg-strong);
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(13, 51, 39, 0.16);
}

.weekly-status-card p,
.weekly-status-card strong,
.weekly-status-card span {
  margin: 0;
}

.weekly-status-card p {
  color: #f0b45d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.weekly-status-card strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1.16;
}

.weekly-status-card span {
  line-height: 1.75;
}

.weekly-report-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 24px 96px;
}

.weekly-module {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(16, 39, 31, 0.055);
  transition:
    opacity 180ms ease var(--weekly-reveal-delay, 0ms),
    transform 180ms ease var(--weekly-reveal-delay, 0ms),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.weekly-module.wide {
  grid-column: 1 / -1;
}

.weekly-module:hover,
.weekly-module:focus-within {
  border-color: rgba(0, 104, 79, 0.24);
  box-shadow: 0 18px 40px rgba(16, 39, 31, 0.085);
  transform: translateY(-4px);
}

.module-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.module-title h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.module-title span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.overview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.overview-list div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 18px;
  background: #fbfcfb;
}

.overview-list div:nth-child(2n) {
  border-left: 1px solid var(--line);
}

.overview-list div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.overview-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.overview-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.report-check-list,
.report-step-list,
.history-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-check-list li,
.report-step-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  color: #2e3b36;
  border-bottom: 1px solid rgba(219, 226, 220, 0.7);
  font-weight: 700;
}

.report-check-list li:last-child,
.report-step-list li:last-child {
  border-bottom: 0;
}

.report-check-list li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.report-step-list {
  counter-reset: weekly-step;
}

.report-step-list li {
  padding-left: 42px;
}

.report-step-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 50%;
  counter-increment: weekly-step;
  content: counter(weekly-step);
  font-size: 12px;
  font-weight: 900;
}

.weekly-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.weekly-metrics div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 148px;
  padding: 20px;
  background: #fbfcfb;
}

.weekly-metrics div + div {
  border-left: 1px solid var(--line);
}

.weekly-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.weekly-metrics strong {
  color: var(--green-deep);
  font-size: 28px;
  line-height: 1.12;
}

.weekly-metrics small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.action-required {
  border-color: rgba(201, 130, 22, 0.32);
}

.action-required .module-title span {
  color: var(--amber);
}

.history-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 58px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(219, 226, 220, 0.7);
  border-radius: 6px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.history-list li:last-child {
  border-bottom: 0;
}

.history-list li:hover,
.history-list li:focus-within {
  background-color: #f8f9fa;
}

.history-list span {
  color: var(--ink);
  font-weight: 900;
}

.history-list strong {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
}

.history-list a {
  display: inline-block;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-underline-offset: 4px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.history-list li:hover a,
.history-list li:focus-within a,
.history-list a:hover,
.history-list a:focus-visible {
  color: var(--green-deep);
  text-decoration-line: underline;
  transform: translateX(3px);
}

.js .client-progress-page [data-client-progress-content] .weekly-hero h1,
.js .client-progress-page [data-client-progress-content] .weekly-hero > div > p:not(.section-index),
.js .client-progress-page [data-client-progress-content] .weekly-status-card,
.js .client-progress-page [data-client-progress-content] .weekly-module {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 180ms ease var(--weekly-reveal-delay, 0ms),
    transform 180ms ease var(--weekly-reveal-delay, 0ms),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.js .client-progress-page [data-client-progress-content] .weekly-hero h1 {
  --weekly-reveal-delay: 0ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-hero > div > p:not(.section-index) {
  --weekly-reveal-delay: 110ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-status-card {
  --weekly-reveal-delay: 180ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-module:nth-child(1) {
  --weekly-reveal-delay: 260ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-module:nth-child(2) {
  --weekly-reveal-delay: 360ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-module:nth-child(3) {
  --weekly-reveal-delay: 460ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-module:nth-child(4) {
  --weekly-reveal-delay: 560ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-module:nth-child(5) {
  --weekly-reveal-delay: 660ms;
}

.js .client-progress-page [data-client-progress-content] .weekly-module:nth-child(6) {
  --weekly-reveal-delay: 760ms;
}

.js .client-progress-page [data-client-progress-content].is-visible .weekly-hero h1,
.js .client-progress-page [data-client-progress-content].is-visible .weekly-hero > div > p:not(.section-index),
.js .client-progress-page [data-client-progress-content].is-visible .weekly-status-card,
.js .client-progress-page [data-client-progress-content].is-visible .weekly-module {
  opacity: 1;
  transform: translateY(0);
}

.js .client-progress-page [data-client-progress-content].is-visible .weekly-module:hover,
.js .client-progress-page [data-client-progress-content].is-visible .weekly-module:focus-within {
  transition-delay: 0ms, 0ms, 0ms, 0ms, 0ms;
  transform: translateY(-4px);
}

.access-note {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

#full-report.full-report.section,
#deep-diagnosis-ready.full-report.section {
  padding-right: 0;
  padding-left: 0;
}

.full-report-shell {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

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

.report-grid article {
  min-height: 240px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-grid article.wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.deep-guide-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 26px;
  align-items: center;
  border-color: rgba(0, 104, 79, 0.16);
  box-shadow: 0 18px 42px rgba(16, 39, 31, 0.05);
}

.deep-guide-intro {
  display: grid;
  gap: 8px;
  max-width: 820px;
}

.deep-guide-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deep-guide-offer {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deep-guide-offer h4 {
  margin-bottom: 8px;
  color: #10271f;
  font-size: 22px;
  line-height: 1.2;
}

.deep-guide-offer .offer-price {
  margin: 0 0 8px;
}

.deep-guide-offer .offer-subtitle {
  margin: 0;
}

.deep-guide-action {
  width: 100%;
  margin-top: 22px;
  border-color: transparent;
  background: var(--green);
  color: var(--white);
}

.deep-guide-action:hover,
.deep-guide-action:focus-visible {
  background: var(--green-deep);
}

.deep-start-heading {
  max-width: 860px;
}

.deep-time-note {
  margin-top: 16px !important;
  padding: 14px 16px;
  background: var(--white);
  color: var(--green-deep) !important;
  border: 1px solid rgba(0, 104, 79, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.deep-start-grid article {
  min-height: 220px;
}

.deep-path-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.deep-path-card p {
  max-width: 420px;
}

.deep-intake-link {
  white-space: nowrap;
}

.form-note.is-error {
  color: #d92d20;
}

.form-note.is-success {
  color: var(--green-deep);
}

button:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none !important;
}

.deep-intake-page .deep-intake-shell {
  padding-top: 82px;
  padding-bottom: 96px;
}

.deep-intake-page .application-hero,
.deep-intake-page .application-layout {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.deep-intake-hero {
  align-items: start;
  padding-top: 0;
  padding-bottom: 64px;
}

.deep-intake-layout {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  padding-top: 62px;
  padding-bottom: 0;
}

.deep-intake-form .form-section {
  box-shadow: 0 12px 30px rgba(16, 39, 31, 0.045);
}

.deep-update-note,
.deep-submitted-summary {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 104, 79, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 39, 31, 0.045);
}

.deep-update-note h2,
.deep-submitted-summary h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.deep-update-note p,
.deep-submitted-summary p {
  margin: 0;
  color: var(--muted);
}

.deep-intake-actions {
  background: var(--green);
}

.deep-state-shell {
  display: grid;
  gap: 24px;
}

.deep-state .section-heading {
  max-width: 820px;
  margin-bottom: 6px;
}

.deep-state .section-heading h1 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.12;
}

.deep-state .section-heading p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.deep-notice,
.deep-incomplete {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 104, 79, 0.18);
  border-radius: var(--radius);
  color: var(--green-deep);
  font-weight: 800;
}

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

.deep-timeline article,
.deep-report-content article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deep-timeline article {
  position: relative;
}

.deep-timeline article::before {
  width: 12px;
  height: 12px;
  background: var(--line-strong);
  border-radius: 50%;
  content: "";
}

.deep-timeline article.is-done::before {
  background: var(--green);
}

.deep-timeline span,
.deep-report-content span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.deep-timeline h2,
.deep-report-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.deep-timeline p,
.deep-report-content p,
.deep-report-content li {
  margin: 0;
  color: var(--muted);
}

.deep-incomplete {
  border-color: rgba(201, 130, 22, 0.34);
  color: #81520d;
}

.deep-incomplete h2 {
  margin-bottom: 6px;
  font-size: 22px;
}

.deep-incomplete p {
  margin: 0;
  color: #81520d;
}

.deep-submitted-summary {
  display: grid;
  gap: 18px;
}

.deep-submitted-list {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 0;
}

.deep-submitted-list dt {
  color: var(--muted);
  font-weight: 800;
}

.deep-submitted-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.deep-submitted-content h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.deep-submitted-materials {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.deep-submitted-empty {
  color: var(--muted);
}

.deep-state-actions,
.deep-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.deep-report-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.deep-report-content article.wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.deep-report-content ol {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding-left: 20px;
}

.deep-report-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--bg-strong);
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
}

.deep-report-cta h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.2;
}

.deep-report-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.report-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.25;
}

.report-grid p {
  margin: 0;
  color: var(--muted);
}

.report-grid ol {
  counter-reset: report-day;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.report-grid ol li {
  min-height: 112px;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-grid ol li::before {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 8px;
  background: transparent;
  color: var(--green);
  border-radius: 0;
  counter-increment: report-day;
  content: "步骤 " counter(report-day) "：";
  font-size: 13px;
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 51, 39, 0.46);
}

.modal-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(13, 51, 39, 0.24);
}

.modal-dialog h2 {
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.2;
}

.modal-dialog > p:not(.section-index) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  background: var(--bg-soft);
  color: var(--green-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.code-row .button {
  min-width: 112px;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--green);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.ops-admin-page {
  background: #f7faf8;
}

.ops-admin-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.admin-nav {
  gap: 22px;
}

.admin-main {
  min-height: calc(100vh - 72px);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: start;
  padding-top: 70px;
  padding-bottom: 42px;
}

.admin-hero-copy h1 {
  margin-bottom: 18px;
  font-size: 56px;
}

.admin-hero-copy p:not(.section-index) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.admin-control-panel,
.admin-kpi-card,
.admin-panel,
.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(16, 39, 31, 0.065);
}

.admin-control-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

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

.admin-control-panel label {
  display: grid;
  gap: 7px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.admin-control-panel input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: #fbfcfb;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.admin-control-panel input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 104, 79, 0.09);
}

.admin-submit {
  justify-self: start;
}

.admin-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-status.is-error {
  color: #b42318;
}

.admin-status.is-success {
  color: var(--green);
}

.admin-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

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

.admin-kpi-card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  align-content: start;
  padding: 22px;
}

.admin-kpi-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.admin-kpi-card strong {
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.admin-kpi-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-kpi-card.warning {
  border-color: rgba(201, 130, 22, 0.38);
}

.admin-kpi-card.warning span,
.admin-kpi-card.warning strong {
  color: #81520d;
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.admin-panel {
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 420px;
  padding: 24px;
}

.admin-panel-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.admin-funnel {
  display: grid;
  gap: 13px;
}

.admin-funnel-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.admin-funnel-row span {
  color: #2e3b36;
  font-size: 14px;
  font-weight: 800;
}

.admin-funnel-row strong {
  color: var(--green-deep);
  font-size: 15px;
  text-align: right;
}

.admin-funnel-bar {
  height: 10px;
  overflow: hidden;
  background: #edf1ee;
  border-radius: 999px;
}

.admin-funnel-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: inherit;
}

.admin-status-groups {
  display: grid;
  gap: 18px;
}

.admin-status-group {
  display: grid;
  gap: 10px;
}

.admin-status-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.admin-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-chip {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  background: var(--green-soft);
  color: var(--green-deep);
  border: 1px solid rgba(0, 104, 79, 0.13);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.admin-revenue-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16px, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-revenue-point {
  display: grid;
  grid-template-rows: minmax(120px, 1fr) auto;
  gap: 8px;
  align-items: end;
  min-width: 0;
}

.admin-revenue-point span {
  display: block;
  width: 100%;
  min-height: 4px;
  background: var(--green);
  border-radius: 5px 5px 2px 2px;
}

.admin-revenue-point span.is-negative {
  background: #b42318;
}

.admin-revenue-point small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #2e3b36;
  font-size: 14px;
  text-align: left;
}

.admin-table th {
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
  }

  .ops-admin-page .admin-nav {
    position: static;
    display: flex;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .ops-admin-page .admin-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    justify-self: start;
    margin-top: 8px;
    padding: 10px 16px !important;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy h1 {
    font-size: 46px;
    white-space: normal;
  }

  .hero-text {
    font-size: 18px;
  }

  .metric-strip,
  .progress-panel,
  .diagnosis,
  .checkout-layout,
  .application-hero,
  .application-layout,
  .weekly-hero,
  .weekly-report-layout,
  .preview-grid,
  .report-grid,
  .admin-hero,
  .admin-two-column {
    grid-template-columns: 1fr;
  }

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

  .report-grid article.wide {
    grid-column: auto;
  }

  .deep-guide-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .deep-path-card,
  .deep-timeline,
  .deep-report-content,
  .deep-report-cta {
    grid-template-columns: 1fr;
  }

  .deep-path-card p {
    max-width: none;
  }

  .deep-intake-link,
  .deep-report-cta .button {
    width: 100%;
  }

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

  .offer-grid,
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid::before,
  .offer-card:not(:last-child)::after {
    display: none;
  }

  .metric-strip {
    padding-bottom: 0;
  }

  .metric-strip article,
  .metric-strip article:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .method-loop {
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
    gap: 24px 28px;
  }

  .method-loop-core {
    width: 150px;
    padding: 20px;
  }

  .method-loop-core strong {
    font-size: 21px;
  }

  .method-step {
    min-height: 270px;
    padding: 24px;
  }

  .split-heading {
    display: block;
  }

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

  .asset-document-section,
  .asset-detail-cta {
    grid-template-columns: 1fr;
  }

  .asset-detail-cta .button {
    width: 100%;
  }

  .diagnosis-copy {
    position: static;
  }

  .progress-panel {
    gap: 34px;
    align-items: start;
  }

  .progress-copy {
    min-height: 0;
  }

  .progress-copy .check-list {
    margin-top: 22px;
  }

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

  .weekly-metrics div + div {
    border-left: 0;
  }

  .weekly-metrics div:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .weekly-metrics div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .section,
  .section-band {
    padding: 68px 18px;
  }

  .admin-hero {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .admin-hero-copy h1 {
    font-size: 38px;
  }

  .admin-field-grid,
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-control-panel,
  .admin-kpi-card,
  .admin-panel {
    padding: 20px;
  }

  .admin-funnel-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .admin-funnel-row strong {
    text-align: left;
  }

  .admin-revenue-chart {
    grid-auto-flow: column;
    grid-auto-columns: 24px;
    grid-template-columns: none;
    overflow-x: auto;
  }

  .progress.section {
    padding-right: 0;
    padding-left: 0;
  }

  .progress-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .preview-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .full-report-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .asset-detail-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .asset-document,
  .asset-detail-cta {
    padding: 22px;
  }

  .asset-document h2 {
    font-size: 34px;
  }

  .asset-detail-summary,
  .asset-document-ending {
    font-size: 16px;
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    font-size: 18px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-copy h1 {
    font-size: 37px;
  }

  .application-hero {
    padding: 56px 18px 46px;
  }

  .application-hero h1 {
    font-size: 38px;
  }

  .deep-state .section-heading h1 {
    font-size: 36px;
  }

  .weekly-hero {
    padding: 56px 18px 46px;
  }

  .weekly-hero h1 {
    font-size: 38px;
  }

  .weekly-hero p:not(.section-index) {
    font-size: 17px;
  }

  .weekly-report-layout {
    padding: 44px 18px 68px;
  }

  .application-layout {
    padding: 44px 18px 68px;
  }

  .deep-intake-page .deep-intake-shell {
    padding-top: 56px;
    padding-bottom: 68px;
  }

  .deep-intake-page .application-hero {
    padding-bottom: 46px;
  }

  .deep-intake-page .application-layout {
    padding-top: 44px;
    padding-bottom: 0;
  }

  .section-heading h2,
  .diagnosis-copy h2,
  .progress-copy h2,
  .checkout-copy h2 {
    font-size: 31px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .metric-strip {
    padding-right: 18px;
    padding-left: 18px;
  }

  .metric-strip article {
    min-height: 104px;
    padding: 22px 18px;
  }

  .method-loop {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }

  .method-loop::before,
  .method-loop::after {
    display: none;
  }

  .method-loop-core,
  .method-step-one,
  .method-step-two,
  .method-step-three,
  .method-step-four {
    grid-column: auto;
    grid-row: auto;
  }

  .method-loop-core {
    justify-items: start;
    width: 100%;
    aspect-ratio: auto;
    padding: 20px 22px;
    border-radius: var(--radius);
    text-align: left;
  }

  .method-step {
    min-height: auto;
    padding: 22px;
  }

  .method-step:not(.method-step-four)::after {
    position: absolute;
    bottom: -21px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-right: 1px solid rgba(0, 104, 79, 0.42);
    border-bottom: 1px solid rgba(0, 104, 79, 0.42);
    transform: translateX(-50%) rotate(45deg);
    content: "";
    transition:
      opacity 420ms ease,
      transform 520ms cubic-bezier(0.2, 0.72, 0.24, 1),
      border-color 220ms ease;
  }

  .method-loop:has(.method-step:hover) .method-step:not(.method-step-four)::after {
    border-color: rgba(0, 104, 79, 0.6);
  }

  .js .method .method-step:not(.method-step-four)::after {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px) rotate(45deg);
  }

  .js .method.is-visible .method-step:not(.method-step-four)::after {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg);
  }

  .method-step h3 {
    font-size: 22px;
  }

  .method-step p {
    min-height: 0;
  }

  .case-card {
    min-height: auto;
    padding: 22px;
  }

  .preview-card {
    min-height: auto;
    padding: 22px;
  }

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

  .offer-card {
    min-height: auto;
    padding: 22px;
  }

  .asset-table {
    border: 0;
    border-radius: 0;
  }

  .asset-row,
  .asset-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .asset-head {
    display: none;
  }

  .progress-entry-card,
  .progress-form,
  .diagnosis-form {
    padding: 20px;
  }

  .progress-entry-meta,
  .overview-list,
  .weekly-metrics {
    grid-template-columns: 1fr;
  }

  .progress-entry-meta div + div,
  .overview-list div:nth-child(2n),
  .weekly-metrics div:nth-child(2n) {
    border-left: 0;
  }

  .overview-list div:nth-child(n + 2),
  .weekly-metrics div:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .module-title {
    display: grid;
    gap: 8px;
  }

  .weekly-module,
  .weekly-status-card {
    padding: 22px;
  }

  .weekly-metrics div {
    min-height: 0;
    padding: 18px;
  }

  .form-section,
  .application-actions,
  .application-summary {
    padding: 20px;
  }

  .deep-timeline article,
  .deep-report-content article,
  .deep-report-cta {
    padding: 20px;
  }

  .deep-state-actions,
  .deep-report-actions {
    display: grid;
  }

  .deep-submitted-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .deep-submitted-list dd + dt {
    margin-top: 10px;
  }

  .form-grid,
  .input-trio,
  .checkbox-grid,
  .radio-grid,
  .material-upload-actions,
  .material-link-row,
  .material-item {
    grid-template-columns: 1fr;
  }

  .material-uploader-head {
    display: grid;
  }

  .material-counter {
    justify-self: start;
  }

  .material-file-button,
  .material-link-row .button,
  .material-delete {
    width: 100%;
  }

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

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

  .unlock-strip,
  .code-row {
    grid-template-columns: 1fr;
  }

  .report-grid ol {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .modal-dialog {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-copy h1,
  .hero-copy .hero-text,
  .hero-copy .hero-actions,
  .hero-points li,
  .js .metric-strip article,
  .js .offers .section-index,
  .js .offers .section-heading h2,
  .js .offers .split-heading > p:not(.section-index),
  .js .offers .offer-card,
  .js .method .section-index,
  .js .method .section-heading h2,
  .js .method .section-heading p:not(.section-index),
  .js .method .method-loop-core,
  .js .method .method-step,
  .js .cases .section-heading h2,
  .js .cases .section-heading > p:not(.section-index),
  .js .cases .case-card,
  .js .cases .case-top span,
  .js .assets .section-index,
  .js .assets .section-heading h2,
  .js .assets .split-heading > p:not(.section-index),
  .js .assets .asset-table,
  .js .assets .asset-row,
  .js .progress .section-index,
  .js .progress .progress-copy h2,
  .js .progress .progress-copy > p:not(.section-index),
  .js .progress .check-list li,
  .js .progress .progress-form,
  .js .progress .progress-form label,
  .js .progress .progress-form .form-note,
  .js .progress .progress-form .button,
  .js .preview .preview-card,
  .js .preview .unlock-strip,
  .js .client-progress-page [data-client-progress-content] .weekly-hero h1,
  .js .client-progress-page [data-client-progress-content] .weekly-hero > div > p:not(.section-index),
  .js .client-progress-page [data-client-progress-content] .weekly-status-card,
  .js .client-progress-page [data-client-progress-content] .weekly-module {
    opacity: 1 !important;
    transform: none !important;
  }

  .js .method .method-loop::before,
  .js .method .method-loop::after,
  .js .method .method-step:not(.method-step-four)::after {
    opacity: 1 !important;
    clip-path: none !important;
  }

  .offer-card:hover,
  .js .offers.is-visible .offer-card:hover,
  .method-step:hover,
  .js .method.is-visible .method-step:hover,
  .case-card:hover,
  .js .cases.is-visible .case-card:hover,
  .progress-form .button:hover,
  .progress-form .button:focus-visible,
  .progress-form .button:active,
  .weekly-module:hover,
  .weekly-module:focus-within,
  .js .client-progress-page [data-client-progress-content].is-visible .weekly-module:hover,
  .js .client-progress-page [data-client-progress-content].is-visible .weekly-module:focus-within,
  .history-list li:hover a,
  .history-list li:focus-within a,
  .history-list a:hover,
  .history-list a:focus-visible,
  .asset-row:hover a,
  .asset-row:focus-within a,
  .asset-row a:hover,
  .asset-row a:focus-visible {
    transform: none !important;
  }

  .progress-form .button:hover,
  .progress-form .button:focus-visible,
  .progress-form .button:active {
    opacity: 1 !important;
  }

  .offer-action {
    transition: background-color 180ms ease !important;
  }

  .offer-action:hover,
  .offer-action:focus-visible,
  .offer-action:active {
    opacity: 1 !important;
    transform: none !important;
  }
}
