:root {
  color: #17211d;
  background: #f4f7f5;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #17211d;
  --muted: #5f6f69;
  --subtle: #eef3f0;
  --surface: #ffffff;
  --line: #d9e3df;
  --line-strong: #b6c8c1;
  --green: #126f61;
  --green-soft: #dff0e9;
  --blue: #275aa8;
  --blue-soft: #e1ebfb;
  --amber: #d88a21;
  --amber-soft: #fff0d9;
  --coral: #d95f3d;
  --dark: #101816;
  --shadow: 0 18px 48px rgba(18, 31, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8faf8 0%, #eef4f1 42%, #f7f8f4 100%);
}

body::selection {
  color: #fff;
  background: var(--green);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 227, 223, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(18, 31, 27, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.site-nav a,
.nav-login,
.nav-cta,
.primary-action,
.secondary-action,
.lead-form button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  padding: 0 13px;
  color: #42514c;
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--green);
  background: var(--green-soft);
}

.nav-login {
  min-width: 74px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #f8fbf9;
  font-size: 14px;
}

.nav-login:hover {
  color: var(--green);
  border-color: #82cdb9;
  background: var(--green-soft);
}

.nav-cta {
  padding: 0 16px;
  color: #fff;
  background: var(--dark);
}

.nav-cta:hover,
.primary-action:hover,
.lead-form button:hover {
  background: #24352f;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 24px 74px;
  color: #fff;
  background: #0e1613;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 22, 19, 0.94) 0%, rgba(14, 22, 19, 0.78) 42%, rgba(14, 22, 19, 0.42) 100%),
    linear-gradient(180deg, rgba(14, 22, 19, 0.18) 0%, rgba(14, 22, 19, 0.92) 100%);
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: auto;
  overflow: hidden;
  background: #101816;
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.signal-panel,
.route-board,
.lead-strip,
.national-war-room {
  position: absolute;
  border: 1px solid rgba(225, 235, 229, 0.18);
  border-radius: 8px;
  background: rgba(246, 250, 247, 0.11);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.national-war-room {
  z-index: 2;
  top: 16%;
  right: max(24px, calc((100% - 1180px) / 2));
  width: min(520px, 44vw);
  min-height: 470px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(18, 111, 97, 0.18), rgba(16, 24, 22, 0.22)),
    rgba(246, 250, 247, 0.1);
}

.war-room-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.war-room-head span,
.live-feed span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.war-room-head strong {
  color: #fff;
  font-size: 18px;
}

.china-signal-map {
  position: relative;
  height: 178px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 64% 46%, rgba(18, 111, 97, 0.4), transparent 8%),
    radial-gradient(circle at 47% 55%, rgba(216, 138, 33, 0.28), transparent 7%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.china-signal-map::before {
  content: "";
  position: absolute;
  inset: 18px 38px;
  clip-path: polygon(14% 38%, 28% 24%, 48% 18%, 67% 28%, 83% 45%, 76% 66%, 58% 76%, 36% 72%, 20% 58%);
  border: 1px solid rgba(145, 218, 201, 0.25);
  background: rgba(18, 111, 97, 0.08);
}

.china-signal-map::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(145, 218, 201, 0.18);
  transform: translate(-50%, -50%);
  animation: pulseSweep 3s ease-in-out infinite;
}

.signal-node {
  position: absolute;
  z-index: 2;
  min-width: 34px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(145, 218, 201, 0.34);
  border-radius: 999px;
  color: #eafff8;
  background: rgba(18, 111, 97, 0.52);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 0 0 0 rgba(145, 218, 201, 0.35);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.alpha-city {
  color: #f6fffb;
  border-color: rgba(145, 218, 201, 0.56);
  background: rgba(18, 128, 112, 0.72);
}

.node-bj {
  left: 58%;
  top: 18%;
}

.node-tj {
  left: 67%;
  top: 29%;
  animation-delay: 0.18s;
}

.node-sh {
  left: 80%;
  top: 50%;
  animation-delay: 0.45s;
}

.node-su {
  left: 70%;
  top: 39%;
  animation-delay: 0.58s;
}

.node-nj {
  left: 64%;
  top: 47%;
  animation-delay: 0.72s;
}

.node-hz {
  left: 73%;
  top: 63%;
  animation-delay: 0.78s;
}

.node-gz {
  left: 57%;
  top: 76%;
  animation-delay: 0.85s;
}

.node-sz {
  left: 66%;
  top: 78%;
  animation-delay: 0.98s;
}

.node-cd {
  left: 36%;
  top: 56%;
  animation-delay: 1.15s;
}

.node-cq {
  left: 43%;
  top: 67%;
  animation-delay: 1.3s;
}

.node-wh {
  left: 52%;
  top: 49%;
  animation-delay: 1.45s;
}

.node-xa {
  left: 45%;
  top: 38%;
  animation-delay: 1.62s;
}

.city-coverage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.city-coverage-strip span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(145, 218, 201, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 800;
}

.city-coverage-strip span:first-child {
  color: #eafff8;
  border-color: rgba(145, 218, 201, 0.34);
  background: rgba(18, 128, 112, 0.2);
}

.signal-path {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(243, 176, 71, 0.9), transparent);
  transform-origin: left center;
  animation: signalTravel 2.4s ease-in-out infinite;
}

.path-one {
  left: 40%;
  top: 58%;
  width: 185px;
  transform: rotate(-22deg);
}

.path-two {
  left: 54%;
  top: 38%;
  width: 150px;
  transform: rotate(35deg);
  animation-delay: 0.5s;
}

.path-three {
  left: 37%;
  top: 70%;
  width: 135px;
  transform: rotate(-6deg);
  animation-delay: 1s;
}

.national-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.national-metrics article {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.national-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.national-metrics strong {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.national-metrics b {
  font: inherit;
}

.national-metrics em {
  color: #91dac9;
  font-size: 19px;
  font-style: normal;
}

.live-feed {
  position: relative;
  height: 30px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.live-feed span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  opacity: 0;
  transform: translateY(16px);
  animation: feedRoll 12s linear infinite;
}

.live-feed span:nth-child(2) {
  animation-delay: 3s;
}

.live-feed span:nth-child(3) {
  animation-delay: 6s;
}

.live-feed span:nth-child(4) {
  animation-delay: 9s;
}

@keyframes pulseSweep {
  0%, 100% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(0.76);
  }
  50% {
    opacity: 0.76;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(145, 218, 201, 0.32);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(145, 218, 201, 0);
  }
}

@keyframes signalTravel {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  20%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes feedRoll {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  5%, 22% {
    opacity: 1;
    transform: translateY(0);
  }
  27%, 100% {
    opacity: 0;
    transform: translateY(-16px);
  }
}

.signal-panel {
  width: 190px;
  min-height: 132px;
  padding: 16px;
}

.signal-panel span,
.route-board span,
.lead-strip span,
.signal-panel small,
.lead-strip small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.signal-panel strong {
  display: block;
  margin: 10px 0 7px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.signal-city {
  top: 22%;
  right: 18%;
}

.signal-today {
  top: 18%;
  right: 4%;
}

.signal-proof {
  right: 9%;
  bottom: 18%;
}

.opportunity-radar {
  position: absolute;
  top: 34%;
  right: 26%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(223, 240, 233, 0.18) 0 8px, transparent 9px),
    conic-gradient(from 190deg, rgba(18, 111, 97, 0.06), rgba(18, 111, 97, 0.36), rgba(216, 138, 33, 0.22), rgba(18, 111, 97, 0.06));
  opacity: 0.9;
}

.radar-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(223, 240, 233, 0.18);
  border-radius: 50%;
}

.ring-two {
  inset: 28%;
}

.ring-three {
  inset: 44%;
}

.radar-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f3b047;
  box-shadow: 0 0 0 7px rgba(243, 176, 71, 0.18);
}

.dot-one {
  top: 28%;
  left: 26%;
}

.dot-two {
  top: 54%;
  left: 62%;
  background: #64c4af;
  box-shadow: 0 0 0 7px rgba(100, 196, 175, 0.18);
}

.dot-three {
  top: 70%;
  left: 38%;
}

.dot-four {
  top: 38%;
  left: 74%;
  background: #8db5ff;
  box-shadow: 0 0 0 7px rgba(141, 181, 255, 0.18);
}

.route-board {
  left: calc(50% + 120px);
  bottom: 10%;
  width: 325px;
  padding: 17px;
}

.route-board ol {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.route-board li {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.route-board li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.route-board li.done::before {
  border-color: #64c4af;
  background: #64c4af;
}

.route-board li.active {
  color: #fff;
}

.route-board li.active::before {
  border-color: #f3b047;
  background: #f3b047;
}

.lead-strip {
  right: 4%;
  bottom: 6%;
  width: 390px;
  padding: 16px;
}

.lead-strip strong {
  display: block;
  margin: 7px 0 4px;
  color: #fff;
  font-size: 20px;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(600px, 100%);
  margin: 0 auto 0 max(24px, calc((100% - 1180px) / 2));
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .section-kicker {
  color: #91dac9;
}

.hero h1 {
  margin: 0;
  font-size: 92px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  text-wrap: balance;
}

.hero-copy {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.82;
}

.hero-dual-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin-top: 22px;
}

.hero-rail {
  position: relative;
  min-height: 82px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(145, 218, 201, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-rail::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px auto;
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(145, 218, 201, 0.86));
  animation: railMove 2.8s ease-in-out infinite;
}

.channel-rail {
  border-color: rgba(243, 176, 71, 0.32);
}

.channel-rail::after {
  background: linear-gradient(90deg, transparent, rgba(243, 176, 71, 0.9));
  animation-delay: 0.35s;
}

.hero-rail span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.hero-rail strong,
.hero-rail b {
  display: block;
  line-height: 1.22;
}

.hero-rail strong {
  color: #fff;
  font-size: 15px;
}

.hero-rail b {
  color: #91dac9;
  font-size: 18px;
}

.channel-rail b {
  color: #f3b047;
}

@keyframes railMove {
  0%, 100% {
    opacity: 0.36;
    transform: translateX(-10px);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-action,
.secondary-action {
  min-width: 154px;
  padding: 0 20px;
}

.primary-action {
  color: #fff;
  background: var(--green);
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.trial-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 28px;
  align-items: center;
  background: #fff;
}

.offer-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: 0;
}

.offer-copy p {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

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

.offer-grid article {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  box-shadow: 0 14px 34px rgba(18, 31, 27, 0.06);
  overflow: hidden;
}

.offer-grid article::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: rgba(18, 111, 97, 0.16);
}

.offer-grid article:first-child,
.offer-grid article:nth-child(2) {
  border-color: #bed9cc;
  background: #eff8f3;
}

.offer-grid article:first-child::after,
.offer-grid article:nth-child(2)::after {
  background: var(--green);
}

.offer-grid article:nth-child(3)::after {
  background: var(--blue);
}

.offer-grid article:nth-child(4)::after,
.offer-grid article:nth-child(5)::after {
  background: var(--amber);
}

.offer-grid strong {
  display: block;
  color: var(--green);
  font-size: 48px;
  line-height: 0.95;
}

.offer-grid span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.offer-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.free-check {
  background: #f4f7f5;
}

.check-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.check-card,
.revenue-ladder article,
.playbook-grid article,
.boundary-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
}

.check-card {
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.check-card span,
.revenue-ladder span,
.playbook-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.check-card h3,
.revenue-ladder h3,
.playbook-grid strong {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.check-card p,
.revenue-ladder p,
.playbook-grid p,
.boundary-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.main-check-card {
  color: #f7fbf9;
  background:
    linear-gradient(135deg, rgba(18, 111, 97, 0.98), rgba(16, 24, 22, 0.98));
}

.main-check-card span,
.main-check-card h3,
.main-check-card p {
  color: inherit;
}

.main-check-card h3 {
  font-size: 30px;
}

.report-preview {
  background: #ffffff;
}

.report-preview-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.report-sample,
.report-deliverables article,
.voice-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
}

.report-sample {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(18, 111, 97, 0.1), rgba(255, 255, 255, 0.92)),
    #f7fcf9;
}

.report-sample-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.report-sample-head span,
.report-deliverables span,
.voice-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.report-sample-head strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  text-align: right;
}

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

.report-metrics div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(18, 111, 97, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.report-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.report-metrics strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.sample-lead-list {
  display: grid;
  gap: 8px;
}

.sample-lead-list span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(18, 111, 97, 0.14);
  border-radius: 8px;
  color: #263630;
  background: #fff;
  line-height: 1.5;
}

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

.report-deliverables article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.report-deliverables strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.28;
}

.report-deliverables p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.business-model {
  background: #101816;
}

.business-model .section-kicker,
.business-model .section-head h2 {
  color: #f7fbf9;
}

.business-model .section-head p:not(.section-kicker) {
  color: rgba(247, 251, 249, 0.72);
}

.revenue-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.revenue-ladder article {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-color: rgba(145, 218, 201, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.revenue-ladder span {
  color: #91dac9;
}

.revenue-ladder h3 {
  color: #f7fbf9;
  font-size: 20px;
}

.revenue-ladder p {
  color: rgba(247, 251, 249, 0.7);
}

.package-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.package-strip article {
  min-height: 130px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(145, 218, 201, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.package-strip strong {
  color: #f7fbf9;
  font-size: 24px;
  line-height: 1.15;
}

.package-strip span {
  color: #91dac9;
  font-weight: 900;
}

.package-strip small {
  color: rgba(247, 251, 249, 0.68);
  line-height: 1.55;
}

.pricing-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(145, 218, 201, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 111, 97, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

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

.pricing-bridge span {
  color: #91dac9;
  font-size: 13px;
  font-weight: 900;
}

.pricing-bridge strong {
  margin-top: 6px;
  color: #f7fbf9;
  font-size: 24px;
  line-height: 1.28;
}

.pricing-bridge p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(247, 251, 249, 0.7);
  line-height: 1.72;
}

.pricing-bridge-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pricing-bridge-options b {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(145, 218, 201, 0.22);
  border-radius: 8px;
  color: #dff7ef;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.pricing-bridge a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 8px;
  color: #071b16;
  background: #91dac9;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-bridge a:hover {
  background: #b7eadf;
}

.pricing-page {
  background: #f4f7f5;
}

.pricing-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  padding: 150px max(24px, calc((100% - 1180px) / 2)) 70px;
  color: #f7fbf9;
  background:
    linear-gradient(115deg, rgba(16, 24, 22, 0.98) 0%, rgba(18, 111, 97, 0.9) 64%, rgba(39, 90, 168, 0.72) 100%),
    #101816;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
}

.pricing-hero-copy,
.pricing-hero-panel {
  position: relative;
  z-index: 1;
}

.pricing-hero .section-kicker,
.pricing-final .section-kicker {
  color: #91dac9;
}

.pricing-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.pricing-hero p:not(.section-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(247, 251, 249, 0.78);
  font-size: 18px;
  line-height: 1.82;
}

.pricing-hero-economy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pricing-hero-economy span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(145, 218, 201, 0.34);
  border-radius: 8px;
  color: rgba(247, 251, 249, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 800;
}

.pricing-hero-economy b {
  color: #91dac9;
  font-size: 18px;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pricing-hero-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.pricing-hero-actions a:first-child {
  color: #071b16;
  background: #91dac9;
}

.pricing-hero-actions a:last-child {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-hero-panel {
  display: grid;
  gap: 14px;
}

.pricing-ledger {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(225, 235, 229, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.pricing-ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: rgba(247, 251, 249, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.pricing-ledger-head strong {
  color: #fff;
  font-size: 18px;
}

.ledger-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ledger-row span,
.ledger-row small {
  display: block;
}

.ledger-row span {
  color: #fff;
  font-weight: 900;
}

.ledger-row small {
  margin-top: 3px;
  color: rgba(247, 251, 249, 0.62);
}

.ledger-row strong {
  color: #91dac9;
  font-size: 26px;
  white-space: nowrap;
}

.pricing-product-visual {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-product-visual img {
  display: block;
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.pricing-fast-start {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
}

.pricing-fast-start a {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfb;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.08);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.pricing-fast-start a:hover {
  border-color: #82cdb9;
  background: #f4fcf8;
  box-shadow: 0 20px 48px rgba(18, 111, 97, 0.12);
  transform: translateY(-2px);
}

.pricing-fast-start a.highlight {
  border-color: #82cdb9;
  background: #effaf6;
}

.pricing-fast-start span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.pricing-fast-start strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
}

.pricing-fast-start small {
  max-width: 28ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-value {
  background: #ffffff;
}

.pricing-value-grid,
.pricing-card-grid,
.pricing-faq-grid {
  display: grid;
  gap: 14px;
}

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

.pricing-value-card,
.plan-card,
.pricing-matrix-card,
.credit-card,
.pricing-faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
}

.pricing-value-card {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.pricing-value-card span,
.plan-card .plan-label,
.credit-card span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.pricing-value-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.pricing-value-card p,
.plan-card p,
.credit-card p,
.pricing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-plans {
  background: #f4f7f5;
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pricing-note span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.pricing-runway {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-runway article {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid #bed9cc;
  border-radius: 8px;
  background: #f8fcfa;
}

.pricing-runway article:nth-child(3) {
  border-color: #c7d7ef;
  background: #f7faff;
}

.pricing-runway span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.pricing-runway strong {
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.pricing-runway p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.plan-chooser {
  margin: 0 0 32px;
  padding: 22px;
  border: 1px solid #cfe3dc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 111, 97, 0.08), rgba(255, 255, 255, 0.92) 44%),
    #fbfdfb;
  box-shadow: 0 14px 34px rgba(18, 31, 27, 0.06);
}

.plan-chooser .section-head {
  margin-bottom: 16px;
}

.plan-chooser h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.22;
}

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

.chooser-grid a {
  min-height: 204px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.chooser-grid a:hover {
  border-color: #82cdb9;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 111, 97, 0.09);
  transform: translateY(-2px);
}

.chooser-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.chooser-grid strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.chooser-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.chooser-grid b {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 10px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.chooser-grid a:first-child {
  border-color: #a9d7c9;
  background:
    linear-gradient(135deg, rgba(18, 111, 97, 0.12), rgba(255, 255, 255, 0.88)),
    #f2fbf7;
}

.free-plan-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid #bed9cc;
  border-radius: 8px;
  background: #f7fcf9;
}

.free-plan-strip strong,
.free-plan-strip span,
.free-plan-strip small {
  display: block;
}

.free-plan-strip strong {
  color: var(--ink);
  font-size: 22px;
}

.free-plan-strip span {
  color: var(--green);
  font-weight: 900;
}

.free-plan-strip small {
  margin-top: 5px;
  color: var(--muted);
}

.free-plan-strip b {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.pricing-group {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.pricing-group-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.pricing-group-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.pricing-group-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-card-grid.personal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.plan-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
}

.plan-card > div:first-child {
  min-height: 132px;
  display: grid;
  align-content: start;
}

.plan-card.recommended {
  border-color: #7fcbb7;
  background: #fbfffd;
  box-shadow: 0 18px 44px rgba(18, 111, 97, 0.12);
}

.plan-card.enterprise {
  border-color: #c7d7ef;
  background: #f7faff;
}

.plan-card h4 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.plan-card p {
  margin-top: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--green);
}

.plan-price strong {
  font-size: 38px;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-weight: 800;
}

.billing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 88px 82px;
  gap: 8px;
  margin: 0;
}

.billing-options a {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fbf9;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.billing-options a:hover {
  border-color: #82cdb9;
  background: #f1fbf7;
  box-shadow: 0 10px 22px rgba(18, 111, 97, 0.08);
  transform: translateY(-1px);
}

.billing-options a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.billing-options a strong {
  justify-self: start;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.billing-options a small {
  color: var(--green);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.billing-options a.primary-billing {
  grid-column: 1 / -1;
  min-height: 88px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  border-color: #82cdb9;
  background: #effaf6;
  box-shadow: 0 12px 28px rgba(18, 111, 97, 0.08);
}

.billing-options a.primary-billing span {
  color: var(--green);
}

.billing-options a.primary-billing strong {
  justify-self: end;
  color: var(--green);
  font-size: 30px;
}

.billing-options a.primary-billing small {
  grid-column: 1 / -1;
  font-size: 13px;
}

.billing-options a.best-deal {
  border-color: rgba(216, 138, 33, 0.34);
  background:
    linear-gradient(90deg, rgba(216, 138, 33, 0.12), rgba(248, 251, 249, 0.94) 58%);
}

.billing-options a.best-deal::before {
  content: "年付优惠";
  position: absolute;
  top: 8px;
  right: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #84510a;
  background: #fff1d2;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 900;
  pointer-events: none;
}

.billing-options a.best-deal strong {
  color: #84510a;
  padding-right: 56px;
}

.billing-options a.best-deal small {
  color: #84510a;
}

.billing-options a.best-deal:hover {
  border-color: rgba(216, 138, 33, 0.5);
  background:
    linear-gradient(90deg, rgba(216, 138, 33, 0.16), rgba(248, 251, 249, 0.98) 58%);
  box-shadow: 0 10px 22px rgba(132, 81, 10, 0.08);
}

.plan-card.enterprise .billing-options a:hover {
  border-color: #8fb0e5;
  background: #f0f6ff;
  box-shadow: 0 10px 22px rgba(39, 90, 168, 0.08);
}

.plan-card.enterprise .billing-options a.best-deal {
  border-color: rgba(216, 138, 33, 0.34);
  background:
    linear-gradient(90deg, rgba(216, 138, 33, 0.12), rgba(248, 251, 249, 0.94) 58%);
}

.plan-card.enterprise .billing-options a small {
  color: var(--blue);
}

.plan-card.enterprise .billing-options a.best-deal strong,
.plan-card.enterprise .billing-options a.best-deal small {
  color: #84510a;
}

.plan-card.enterprise .billing-options a.primary-billing {
  border-color: #8fb0e5;
  background: #eef5ff;
  box-shadow: 0 12px 28px rgba(39, 90, 168, 0.08);
}

.plan-card.enterprise .billing-options a.primary-billing span,
.plan-card.enterprise .billing-options a.primary-billing strong,
.plan-card.enterprise .billing-options a.primary-billing small {
  color: var(--blue);
}

.plan-card.enterprise .billing-options a.best-deal:hover {
  border-color: rgba(216, 138, 33, 0.5);
  background:
    linear-gradient(90deg, rgba(216, 138, 33, 0.16), rgba(248, 251, 249, 0.98) 58%);
  box-shadow: 0 10px 22px rgba(132, 81, 10, 0.08);
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  min-height: 58px;
  align-content: center;
  padding: 9px 10px;
  border-radius: 8px;
  background: #f4f7f5;
}

.plan-meta span {
  min-height: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.plan-meta b {
  color: var(--ink);
  font-size: 17px;
}

.plan-benefits {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 96px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-benefits li {
  position: relative;
  padding-left: 18px;
  color: #31423c;
  line-height: 1.55;
}

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

.plan-card.enterprise .plan-benefits li::before {
  background: var(--blue);
}

.plan-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.plan-card.enterprise .plan-cta {
  background: var(--blue);
}

.plan-cta:hover {
  filter: brightness(0.94);
}

.pricing-matrix {
  background: #ffffff;
}

.pricing-matrix-card {
  overflow-x: auto;
}

.pricing-matrix table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.pricing-matrix th,
.pricing-matrix td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-matrix th {
  color: var(--ink);
  background: #f4f7f5;
  font-size: 14px;
}

.pricing-matrix td {
  color: #31423c;
  line-height: 1.55;
}

.pricing-matrix tr:last-child td {
  border-bottom: 0;
}

.credits-section {
  background:
    linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}

.credit-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.credit-card {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.credit-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.credit-card b {
  color: var(--green);
  font-size: 24px;
}

.pricing-faq {
  background: #fff;
}

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

.pricing-faq-grid details {
  padding: 18px;
}

.pricing-faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.pricing-faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-final {
  display: grid;
  justify-items: start;
  gap: 18px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.94)),
    #101816;
}

.pricing-final h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.16;
}

.pricing-final p:not(.section-kicker) {
  max-width: 820px;
  margin: 0;
  color: rgba(247, 251, 249, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.pricing-final .primary-action {
  color: #071b16;
  background: #91dac9;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: 32px;
  align-items: center;
}

.visual-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.visual-copy p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.inline-visual-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.inline-visual-cta:hover {
  background: #178273;
}

.opportunity-illustration {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(14, 22, 19, 0.92)),
    #0e1613;
}

.opportunity-illustration .section-kicker {
  color: #91dac9;
}

.opportunity-illustration h2 {
  color: #fff;
}

.opportunity-illustration p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.wide-visual {
  margin: 0;
  border: 1px solid rgba(18, 111, 97, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #0f1815;
  box-shadow: 0 24px 60px rgba(18, 31, 27, 0.12);
}

.wide-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dark-visual {
  border-color: rgba(145, 218, 201, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.chain-visual {
  margin: -4px 0 24px;
}

.engine-illustration {
  margin: -4px 0 18px;
  border-color: #d7e6df;
}

.section-band {
  padding: 86px max(24px, calc((100% - 1180px) / 2));
}

.section-band:nth-of-type(odd) {
  background: #ffffff;
}

.section-band.business-model,
.section-band.risk-boundary {
  background: #101816;
}

.section-band.opportunity-illustration {
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(14, 22, 19, 0.92)),
    #0e1613;
}

.section-band.pricing-final {
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.94)),
    #101816;
}

.section-band.pricing-final h2 {
  color: #fff;
}

.section-band.pricing-final p:not(.section-kicker) {
  color: rgba(247, 251, 249, 0.74);
}

.supply-chain {
  background:
    linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}

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

.chain-lane {
  position: relative;
  min-height: 448px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 31, 27, 0.07);
  overflow: hidden;
}

.chain-lane::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--green);
}

.channel-lane::before {
  background: var(--amber);
}

.brand-lane {
  border-color: #bed9cc;
  background:
    linear-gradient(145deg, rgba(223, 240, 233, 0.86), rgba(255, 255, 255, 0.95) 45%),
    #fff;
}

.channel-lane {
  border-color: #f0cf9c;
  background:
    linear-gradient(145deg, rgba(255, 240, 217, 0.92), rgba(255, 255, 255, 0.95) 45%),
    #fff;
}

.lane-head {
  display: grid;
  gap: 9px;
}

.lane-head span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  font-size: 12px;
  font-weight: 800;
}

.channel-lane .lane-head span {
  background: #9f5d13;
}

.lane-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.lane-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chain-flow {
  display: grid;
  grid-template-columns: minmax(80px, 0.9fr) 18px minmax(92px, 1fr) 18px minmax(92px, 1fr) 18px minmax(136px, 1.35fr);
  gap: 7px;
  align-items: stretch;
}

.chain-flow strong,
.chain-flow b {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(18, 31, 27, 0.08);
  border-radius: 8px;
  text-align: center;
  line-height: 1.38;
  font-size: 14px;
}

.chain-flow strong {
  color: #24352f;
  background: rgba(255, 255, 255, 0.78);
}

.chain-flow b {
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.channel-lane .chain-flow b {
  background: #9f5d13;
}

.chain-flow span {
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
}

.channel-lane .chain-flow span {
  color: #b66b16;
}

.lane-points {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lane-points li {
  position: relative;
  padding-left: 28px;
  color: #33423d;
  line-height: 1.65;
}

.lane-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(18, 111, 97, 0.12);
}

.channel-lane .lane-points li::before {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(216, 138, 33, 0.14);
}

.chain-bottom {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid #bed9cc;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18, 111, 97, 0.98), rgba(16, 24, 22, 0.98));
}

.chain-bottom strong {
  font-size: 22px;
  line-height: 1.35;
}

.chain-bottom span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head.compact {
  max-width: 720px;
}

.section-head h2,
.offer-copy h2,
.cockpit-copy h2,
.story-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p:not(.section-kicker),
.cockpit-copy p,
.story-copy p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.city-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.6fr);
  gap: 18px;
}

.city-switcher,
.current-city-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.current-city-card {
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(18, 111, 97, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #0f2f29 0%, #126f61 100%);
  box-shadow: 0 18px 42px rgba(18, 31, 27, 0.12);
  color: #f6fbf8;
}

.current-city-card span {
  color: rgba(246, 251, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.current-city-card strong {
  font-size: 34px;
  line-height: 1.08;
}

.current-city-card small {
  color: rgba(246, 251, 248, 0.76);
  line-height: 1.55;
}

.city-hot-signals {
  display: grid;
  gap: 7px;
  margin-top: 4px;
}

.city-hot-signals b {
  color: rgba(246, 251, 248, 0.72);
  font-size: 12px;
}

.city-hot-signals em {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(246, 251, 248, 0.2);
  border-radius: 999px;
  color: #f6fbf8;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.city-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #30423b;
  background: #fff;
  font-weight: 800;
}

.city-button.active,
.city-button:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

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

.metric-card,
.compare-column,
.engine-block,
.deliverable-grid article,
.cockpit-visual,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
}

.metric-card {
  min-height: 154px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
}

.metric-card span,
.deliverable-grid span,
.engine-number {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.08;
}

.metric-card small {
  color: var(--muted);
  line-height: 1.5;
}

.metric-card.evidence {
  border-color: #bed9cc;
  background: #f4fbf7;
}

.difference {
  background: #f4f7f5;
}

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

.compare-column {
  padding: 22px;
}

.compare-column h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.compare-column ul,
.question-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-column li,
.question-list li {
  position: relative;
  min-height: 32px;
  padding-left: 28px;
  color: #33423d;
  line-height: 1.55;
}

.compare-column li::before,
.question-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.compare-column.old li::before {
  content: "×";
  color: #fff;
  background: #86918d;
}

.compare-column.new {
  border-color: #bed9cc;
  background: #f7fcf9;
}

.compare-column.new li::before,
.question-list li::before {
  content: "✓";
  color: #fff;
  background: var(--green);
}

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

.engine-block {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.engine-block h3 {
  margin: 0;
  font-size: 26px;
}

.engine-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.engine-block.accent {
  border-color: #f0cf9c;
  background: #fffaf1;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.flow-line span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #34443f;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cockpit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 36px;
  align-items: center;
  background: #f4f7f5;
}

.question-list {
  margin-top: 24px;
}

.cockpit-visual {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.cockpit-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.cockpit-visual figcaption {
  padding: 10px 14px 14px;
  color: var(--muted);
  font-size: 12px;
}

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

.deliverable-grid article {
  min-height: 184px;
  padding: 20px;
}

.deliverable-grid h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.deliverable-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.playbook-market {
  background: #f4f7f5;
}

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

.playbook-grid article,
.boundary-grid article {
  min-height: 198px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.playbook-grid strong {
  display: block;
}

.risk-boundary {
  background: #101816;
}

.risk-boundary .section-kicker,
.risk-boundary .section-head h2 {
  color: #f7fbf9;
}

.boundary-grid article {
  border-color: rgba(145, 218, 201, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.boundary-grid strong {
  color: #f7fbf9;
  font-size: 20px;
  line-height: 1.35;
}

.boundary-grid p {
  color: rgba(247, 251, 249, 0.7);
}

.fit {
  background: #f4f7f5;
}

.fit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fit-grid span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #263630;
  background: #fff;
  font-weight: 800;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.story-note {
  padding: 14px;
  border: 1px solid rgba(216, 138, 33, 0.3);
  border-radius: 8px;
  background: var(--amber-soft);
}

.timeline {
  display: grid;
  gap: 10px;
  counter-reset: day;
}

.timeline span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.timeline span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
}

.customer-voices {
  background: #ffffff;
}

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

.voice-grid article {
  min-height: 248px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.voice-grid p {
  margin: 0;
  color: #263630;
  font-size: 17px;
  line-height: 1.78;
}

.faq {
  background: #f4f7f5;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.78;
}

.faq-cta {
  max-width: 880px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(120deg, var(--green), var(--dark));
}

.faq-cta strong {
  font-size: 20px;
  line-height: 1.35;
}

.faq-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: none;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--dark);
  background: #fff;
  font-weight: 800;
}

.final-cta {
  position: relative;
  padding: 88px max(24px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #0f1815 0%, #0b1210 100%);
  background-size: 46px 46px, 46px 46px, auto;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: max(24px, calc((100% - 1180px) / 2));
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  grid-template-areas:
    "copy form"
    "auth auth";
  gap: 30px 44px;
  align-items: start;
}

.final-cta-copy {
  grid-area: copy;
  padding-top: 12px;
}

.final-cta-copy h2 {
  max-width: 580px;
}

.final-cta-copy p {
  max-width: 620px;
}

.final-proof-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.final-proof-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(145, 218, 201, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.final-proof-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #91dac9;
}

.final-form-card {
  grid-area: form;
  padding: 18px;
  border: 1px solid rgba(145, 218, 201, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 111, 97, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.conversion-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.conversion-steps span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.conversion-steps b {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--dark);
  background: #91dac9;
  font-size: 12px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.lead-form label {
  min-width: 0;
}

.lead-form .goal-field input {
  min-height: 60px;
  font-size: 17px;
  font-weight: 700;
}

.goal-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.goal-examples button {
  flex: 1 1 220px;
  min-height: 36px;
  border: 1px solid rgba(145, 218, 201, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.goal-examples button:hover {
  color: var(--dark);
  background: #91dac9;
}

.lead-core-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 12px;
}

.lead-form label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lead-form select {
  appearance: none;
  color-scheme: dark;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: #8be0cc;
  box-shadow: 0 0 0 3px rgba(139, 224, 204, 0.12);
}

.lead-form input[aria-invalid="true"] {
  border-color: #f3b047;
  box-shadow: 0 0 0 3px rgba(243, 176, 71, 0.14);
}

.lead-form button {
  min-height: 54px;
  border: 0;
  padding: 0 20px;
  color: #fff;
  background: var(--green);
  font-size: 17px;
  box-shadow: 0 14px 32px rgba(18, 111, 97, 0.28);
}

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

.optional-fields {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.optional-fields summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.optional-fields > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 14px 14px;
}

.choice-group {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.choice-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

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

.choice-pills button {
  min-height: 40px;
  border: 1px solid rgba(145, 218, 201, 0.22);
  border-radius: 8px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(8, 27, 23, 0.34);
  box-shadow: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.choice-pills button:first-child {
  grid-column: 1 / -1;
}

.choice-pills button:hover,
.choice-pills button:focus-visible {
  border-color: rgba(145, 218, 201, 0.58);
  color: #fff;
  background: rgba(145, 218, 201, 0.14);
  outline: none;
}

.choice-pills button.active {
  border-color: rgba(145, 218, 201, 0.9);
  color: #fff;
  background: linear-gradient(180deg, #188f7f 0%, #126f61 100%);
  box-shadow: 0 12px 26px rgba(18, 111, 97, 0.28);
}

.choice-pills button:active {
  transform: translateY(1px);
}

.form-reassurance {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.lead-result {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(145, 218, 201, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-result[data-state="error"] {
  border-color: rgba(243, 176, 71, 0.46);
  background: rgba(243, 176, 71, 0.1);
}

.lead-result[data-state="success"] {
  border-color: rgba(145, 218, 201, 0.4);
  background: rgba(18, 128, 112, 0.12);
}

.lead-result[hidden] {
  display: none;
}

.lead-result strong {
  color: #fff;
  font-size: 17px;
}

.lead-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.lead-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-result-actions button,
.lead-result-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.lead-result-actions a {
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.sms-auth-panel {
  grid-area: auth;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
  align-items: start;
  margin-top: 0;
  padding: 18px;
  border: 1px solid rgba(145, 218, 201, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.sms-auth-panel[hidden] {
  display: none;
}

.sms-auth-copy {
  display: grid;
  gap: 8px;
}

.sms-auth-copy span {
  color: #91dac9;
  font-size: 13px;
  font-weight: 900;
}

.sms-auth-copy strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.sms-auth-copy p,
.sms-auth-result {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.sms-auth-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
}

.sms-auth-form label {
  min-width: 0;
}

.sms-auth-form label span,
.captcha-row span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.sms-auth-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.sms-auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.sms-auth-form input:focus {
  border-color: #8be0cc;
}

.sms-auth-form input[aria-invalid="true"] {
  border-color: #f3b047;
  box-shadow: 0 0 0 3px rgba(243, 176, 71, 0.14);
}

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

.sms-code-row button,
.sms-login-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.sms-code-row button {
  background: rgba(255, 255, 255, 0.14);
}

.sms-code-row button:disabled,
.sms-login-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.captcha-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(160px, 0.3fr);
  gap: 10px;
  align-items: end;
}

.captcha-row[hidden],
.sms-auth-result[hidden] {
  display: none;
}

.sms-auth-result {
  grid-column: 1 / -1;
  padding-top: 2px;
}

.sms-auth-result[data-state="error"] {
  color: #f3b047;
}

.sms-auth-result[data-state="success"] {
  color: #91dac9;
}

.sms-auth-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.sms-auth-actions[hidden],
.sms-auth-actions a[hidden] {
  display: none;
}

.sms-auth-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #061b15;
  background: #91dac9;
  font-size: 14px;
  font-weight: 900;
}

.sms-auth-actions a + a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.community-page {
  background: #f4f7f5;
}

.community-page .site-header {
  position: sticky;
  top: 14px;
  left: auto;
  right: auto;
  margin: 14px auto 0;
  transform: none;
}

.content-hub-hero {
  padding: 92px max(24px, calc((100% - 1180px) / 2)) 58px;
  background:
    linear-gradient(180deg, rgba(244, 247, 245, 0.94), rgba(255, 255, 255, 0.98)),
    #f4f7f5;
}

.hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 28px;
  align-items: stretch;
}

.hub-hero-copy {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 34px 0 0;
}

.hub-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hub-hero-copy h1 span {
  display: block;
}

.hub-hero-copy p:not(.section-kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #40514b;
  font-size: 19px;
  line-height: 1.82;
}

.hub-search-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.hub-search-strip a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #bed9cc;
  border-radius: 8px;
  color: #0c4f45;
  background: #f7fcf9;
  font-weight: 800;
}

.hub-edition-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(18, 111, 97, 0.22);
  border-radius: 8px;
  color: #f7fbf9;
  background:
    linear-gradient(145deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.92)),
    #101816;
  box-shadow: 0 18px 48px rgba(18, 31, 27, 0.14);
}

.hub-edition-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: #061b15;
  background: #91dac9;
  font-size: 12px;
  font-weight: 900;
}

.hub-edition-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.22;
}

.hub-edition-card p {
  margin: 0;
  color: rgba(247, 251, 249, 0.72);
  line-height: 1.75;
}

.hub-edition-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.hub-edition-card dl div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(145, 218, 201, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hub-edition-card dt,
.hub-edition-card dd {
  margin: 0;
}

.hub-edition-card dt {
  color: rgba(247, 251, 249, 0.62);
  font-size: 12px;
}

.hub-edition-card dd {
  font-size: 17px;
  font-weight: 900;
}

.content-diagnosis {
  background: #ffffff;
}

.diagnosis-shell {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  margin: 0 auto;
}

.diagnosis-copy {
  display: grid;
  align-content: start;
  padding: 28px 0 10px;
}

.diagnosis-copy h2 {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: 0;
}

.diagnosis-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.diagnosis-options {
  grid-row: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diagnosis-options a {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(18, 111, 97, 0.16);
  border-radius: 8px;
  background: #f8fbf9;
  box-shadow: 0 12px 30px rgba(18, 31, 27, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.diagnosis-options a:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.1);
  transform: translateY(-2px);
}

.diagnosis-options span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.diagnosis-options strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
}

.diagnosis-options small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.diagnosis-cta {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(18, 111, 97, 0.2);
  border-radius: 8px;
  color: #f7fbf9;
  background:
    linear-gradient(145deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.92)),
    #101816;
}

.diagnosis-cta strong {
  font-size: 24px;
  line-height: 1.24;
}

.diagnosis-cta p {
  margin: 0;
  color: rgba(247, 251, 249, 0.72);
  line-height: 1.7;
}

.diagnosis-cta a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 0 16px;
  border-radius: 8px;
  color: #071b16;
  background: #91dac9;
  font-weight: 900;
}

.diagnosis-cta a:hover {
  background: #b7eadf;
}

.hub-quick-nav {
  background: #ffffff;
}

.resonance-board {
  background: #ffffff;
}

.resonance-grid {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.resonance-card {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
}

.resonance-card:nth-child(1) {
  border-color: #c7d7ef;
  background: #f5f8fe;
}

.resonance-card:nth-child(2) {
  border-color: #bed9cc;
  background: #f7fcf9;
}

.resonance-card:nth-child(3) {
  border-color: #f0cf9c;
  background: #fffaf1;
}

.resonance-card:nth-child(4) {
  border-color: #e9c8bb;
  background: #fff7f4;
}

.resonance-card span,
.promise-grid span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.resonance-card h3,
.promise-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.36;
}

.resonance-card p,
.promise-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.resonance-links {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.resonance-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(18, 111, 97, 0.18);
  border-radius: 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.content-promise {
  background: #ffffff;
}

.promise-grid {
  width: min(1080px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.promise-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.045);
}

.content-columns {
  background: #f4f7f5;
}

.content-column-grid {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.content-column-grid a {
  min-height: 216px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(18, 111, 97, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.content-column-grid a:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.1);
  transform: translateY(-2px);
}

.content-column-grid span,
.stance-grid span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.content-column-grid strong,
.stance-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.36;
}

.content-column-grid small,
.stance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.topic-matrix {
  background: #ffffff;
}

.topic-grid {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.topic-grid a {
  min-height: 236px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(18, 111, 97, 0.15);
  border-radius: 8px;
  color: inherit;
  background: #fbfdfc;
  box-shadow: 0 14px 34px rgba(18, 31, 27, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.topic-grid a:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.1);
  transform: translateY(-2px);
}

.topic-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0c4f45;
  background: #dff6ee;
  font-size: 13px;
  font-weight: 800;
}

.topic-grid strong {
  min-width: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.34;
}

.topic-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.topic-grid small {
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(18, 111, 97, 0.16);
  border-radius: 8px;
  color: #0c4f45;
  background: #f1fbf7;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-playbooks {
  background:
    linear-gradient(180deg, rgba(244, 247, 245, 0.86), rgba(255, 255, 255, 0.96));
}

.playbook-pack-grid {
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.playbook-pack {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 111, 97, 0.17);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 31, 27, 0.055);
}

.playbook-pack-head {
  display: grid;
  gap: 11px;
}

.playbook-pack-head span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.playbook-pack h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.32;
}

.playbook-pack p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.playbook-reason {
  display: grid;
  gap: 10px;
  margin: 0;
}

.playbook-reason div {
  display: grid;
  gap: 4px;
}

.playbook-reason dt {
  color: #0c4f45;
  font-size: 12px;
  font-weight: 900;
}

.playbook-reason dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.playbook-read-list {
  display: grid;
  gap: 8px;
  align-content: start;
}

.playbook-read-list a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid rgba(18, 111, 97, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fcfa;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.playbook-read-list a:hover {
  border-color: #91dac9;
  background: #f0fbf7;
  transform: translateY(-1px);
}

.playbook-action {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(216, 138, 33, 0.24);
  border-radius: 8px;
  color: #6e4710;
  background: #fff8ec;
  font-weight: 750;
}

.playbook-action strong,
.playbook-action span {
  display: block;
}

.playbook-action strong {
  font-size: 12px;
  font-weight: 900;
}

.playbook-action span {
  font-size: 13px;
  line-height: 1.55;
}

.playbook-next-step {
  display: grid;
  gap: 10px;
}

.playbook-next-step a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 111, 97, 0.18);
  border-radius: 8px;
  color: var(--green);
  background: #f1fbf7;
  font-size: 13px;
  font-weight: 900;
}

.playbook-next-step a:hover {
  border-color: #91dac9;
  background: #e4f7ef;
}

.content-stance {
  background: #ffffff;
}

.stance-grid {
  width: min(1080px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.stance-grid article {
  min-height: 238px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.045);
}

.hub-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hub-nav-grid a {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hub-nav-grid a:hover,
.article-row:hover,
.featured-article:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.1);
  transform: translateY(-2px);
}

.hub-nav-grid span,
.featured-article span,
.article-row span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.hub-nav-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.hub-nav-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.editorial-board {
  background: #f4f7f5;
}

.editorial-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.editorial-track article {
  min-height: 188px;
  padding: 22px;
  background: #fff;
}

.editorial-track span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.editorial-track h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.editorial-track p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cms-articles {
  background: #f3f6f4;
}

.articles-board {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.articles-board-head {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.articles-board-head .section-kicker {
  justify-content: center;
}

.articles-board-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: 0;
}

.articles-board-head p:not(.section-kicker) {
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.article-filter-pills {
  justify-content: center;
  margin-bottom: 28px;
}

.article-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.article-card-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-tile {
  min-width: 0;
  min-height: 456px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 31, 27, 0.055);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-tile:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.11);
  transform: translateY(-2px);
}

.article-tile-cover {
  display: block;
  width: 100%;
  background: #e9f0ed;
}

.article-tile-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.article-tile-label {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin: 16px 18px 0;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.article-tile strong {
  min-width: 0;
  display: -webkit-box;
  margin: 12px 18px 10px;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-tile p {
  min-width: 0;
  display: -webkit-box;
  margin: 0 18px 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-tile em {
  width: fit-content;
  max-width: calc(100% - 36px);
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin: 0 18px 14px;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(39, 90, 168, 0.16);
  border-radius: 8px;
  color: #275aa8;
  background: #f5f8fe;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-tile small {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 18px;
  color: #8b9893;
  font-size: 13px;
  line-height: 1.4;
}

.article-tile time {
  white-space: nowrap;
}

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

.content-category-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 31, 27, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.content-category-card:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.1);
  transform: translateY(-2px);
}

.content-category-card span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.content-category-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.38;
}

.content-category-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.content-library {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.content-library-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 18px;
  align-items: end;
}

.content-library-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.content-library-head p:not(.section-kicker) {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.content-search {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.content-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.content-search input:focus {
  border-color: #91dac9;
  box-shadow: 0 0 0 3px rgba(18, 111, 97, 0.12);
}

.content-filter-bar,
.content-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.content-filter-button,
.content-pagination button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.content-filter-button small {
  min-width: 22px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: #edf7f3;
  color: var(--green);
  font-size: 11px;
  line-height: 1;
}

.content-filter-button.active,
.content-pagination button.active {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.content-filter-button.active small {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.content-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.content-pagination span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.content-result-count,
.content-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cms-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.featured-article {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.featured-article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.featured-article div {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 0 4px 6px;
}

.featured-article h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.26;
}

.featured-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.featured-article b {
  color: var(--green);
}

.article-list {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 10px;
}

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

.article-row {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 31, 27, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-row strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.38;
}

.article-row small {
  color: var(--muted);
  font-size: 13px;
}

.article-row em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.featured-article h3,
.featured-article p,
.featured-article b,
.article-row strong,
.article-row small,
.article-row em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.method-pathway {
  background:
    linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}

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

.pathway-list article,
.question-grid article {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pathway-list strong,
.question-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.pathway-list p,
.question-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.answer-lab {
  background: #ffffff;
}

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

.question-grid article:first-child {
  border-color: #bed9cc;
  background: #f7fcf9;
}

.question-grid article:nth-child(2) {
  border-color: #c7d7ef;
  background: #f5f8fe;
}

.question-grid article:nth-child(3) {
  border-color: #f0cf9c;
  background: #fffaf1;
}

.community-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
  margin-top: -76px;
  padding: 158px max(24px, calc((100% - 1180px) / 2)) 72px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(16, 24, 22, 0.98) 0%, rgba(16, 58, 51, 0.96) 58%, rgba(39, 90, 168, 0.84) 100%),
    #101816;
  overflow: hidden;
}

.community-hero-copy {
  max-width: 620px;
}

.community-hero .section-kicker,
.community-final .section-kicker {
  color: #91dac9;
}

.community-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.community-hero p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(247, 251, 249, 0.76);
  font-size: 19px;
  line-height: 1.85;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.community-hero .primary-action {
  background: #91dac9;
  color: #061b15;
}

.community-hero .secondary-action {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.community-hero-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.community-hero-media img {
  display: block;
  width: 100%;
  min-height: 430px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.community-operating-system {
  background: #ffffff;
}

.community-system-flow,
.taxonomy-grid,
.article-card-grid,
.geo-grid {
  display: grid;
  gap: 14px;
}

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

.community-system-flow article,
.taxonomy-grid article,
.geo-grid article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
}

.community-system-flow span,
.article-card span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.community-system-flow strong,
.taxonomy-grid b,
.geo-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.community-system-flow p,
.taxonomy-grid p,
.geo-grid p,
.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.community-taxonomy {
  background: #f4f7f5;
}

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

.taxonomy-grid article {
  min-height: 154px;
  border-color: #bed9cc;
  background: #f9fdfb;
}

.community-articles {
  background: #ffffff;
}

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

.article-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 31, 27, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card:hover {
  border-color: #91dac9;
  box-shadow: 0 18px 44px rgba(18, 31, 27, 0.1);
  transform: translateY(-2px);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  background: #edf4f0;
}

.article-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.34;
}

.article-card b {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 14px;
}

.geo-answer-bank {
  background:
    linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}

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

.geo-grid article {
  min-height: 178px;
}

.geo-grid article:first-child {
  border-color: #bed9cc;
  background: #f7fcf9;
}

.geo-grid article:nth-child(2) {
  border-color: #c7d7ef;
  background: #f5f8fe;
}

.geo-grid article:nth-child(3) {
  border-color: #f0cf9c;
  background: #fffaf1;
}

.community-final {
  display: grid;
  justify-items: start;
  gap: 18px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.94)),
    #101816;
}

.section-band.community-final {
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.94)),
    #101816;
}

.community-final h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.16;
  letter-spacing: 0;
}

.community-final p:not(.section-kicker) {
  max-width: 820px;
  margin: 0;
  color: rgba(247, 251, 249, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.community-final .primary-action {
  color: #061b15;
  background: #91dac9;
}

.article-detail-page {
  background: #f4f7f5;
}

.article-detail-page .site-header {
  position: sticky;
  top: 14px;
  left: auto;
  right: auto;
  margin: 14px auto 0;
  transform: none;
}

.article-shell {
  width: min(920px, calc(100% - 48px));
  margin: 52px auto 86px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 31, 27, 0.08);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-breadcrumb a {
  color: var(--green);
  font-weight: 800;
}

.article-shell h1 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.article-cover {
  width: 100%;
  display: block;
  margin: 0 0 28px;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  color: #263630;
  font-size: 17px;
  line-height: 1.9;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.28;
}

.article-body p,
.article-body ul,
.article-body table {
  margin: 0 0 16px;
}

.article-body ul {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body figure {
  margin: 24px 0;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.article-body figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.article-body tr:first-child td {
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.article-bottom-cta {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(18, 111, 97, 0.18);
  border-radius: 8px;
  background: #f4fbf7;
}

.article-bottom-cta span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.article-bottom-cta strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
}

.article-bottom-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.site-footer {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 20px;
  color: #5f6f69;
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

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

@media (max-width: 1180px) {
  .hero {
    min-height: 1220px;
    align-items: start;
    padding-top: 132px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(14, 22, 19, 0.93) 0%, rgba(14, 22, 19, 0.8) 48%, rgba(14, 22, 19, 0.94) 100%);
  }

  .hero-content {
    margin: 0;
  }

  .national-war-room {
    top: 660px;
    right: 24px;
    width: min(520px, calc(100% - 48px));
  }

  .opportunity-radar {
    top: 430px;
    right: 8%;
    opacity: 0.48;
  }

  .route-board,
  .lead-strip {
    display: none;
  }
}

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

  .site-nav {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 24px;
  }

  .signal-panel {
    opacity: 0.78;
  }

  .national-war-room {
    right: 24px;
    width: min(520px, 48vw);
  }

  .signal-city {
    right: 23%;
  }

  .signal-today {
    right: 3%;
  }

  .pulse-grid,
  .offer-grid,
  .report-deliverables,
  .voice-grid,
  .deliverable-grid,
  .check-grid,
  .revenue-ladder,
  .package-strip,
  .playbook-grid,
  .chooser-grid,
  .boundary-grid,
  .hub-hero-grid,
  .resonance-grid,
  .promise-grid,
  .content-column-grid,
  .topic-grid,
  .playbook-pack-grid,
  .stance-grid,
  .community-system-flow,
  .taxonomy-grid,
  .article-card-grid,
  .geo-grid,
  .hub-nav-grid,
  .editorial-track,
  .pathway-list,
  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-hero-grid,
  .cms-article-layout {
    grid-template-columns: 1fr;
  }

  .content-category-grid,
  .article-list.paged {
    grid-template-columns: 1fr;
  }

  .content-library {
    padding: 18px;
  }

  .content-library-head {
    grid-template-columns: 1fr;
  }

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

  .diagnosis-options {
    grid-row: auto;
  }

  .article-toolbar {
    grid-template-columns: 1fr;
  }

  .hub-hero-copy {
    min-height: 0;
    padding-top: 18px;
  }

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

  .community-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 136px;
  }

  .community-hero-copy {
    max-width: 780px;
  }

  .community-hero-media img {
    max-height: 430px;
  }

  .visual-band {
    grid-template-columns: 1fr;
  }

  .chain-lanes {
    grid-template-columns: 1fr;
  }

  .chain-lane {
    min-height: 0;
  }

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

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

  .pricing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 136px;
  }

  .pricing-hero-copy {
    max-width: 780px;
  }

  .pricing-value-grid,
  .pricing-card-grid.personal,
  .pricing-card-grid.enterprise,
  .credit-card-grid,
  .pricing-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .final-cta-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "auth";
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-core-fields,
  .optional-fields > div {
    grid-template-columns: 1fr;
  }

  .sms-auth-panel,
  .sms-auth-form,
  .captcha-row {
    grid-template-columns: 1fr;
  }

  .sms-auth-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-login {
    min-width: 52px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 1450px;
    align-items: start;
    padding: 124px 18px 46px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(14, 22, 19, 0.9) 0%, rgba(14, 22, 19, 0.78) 45%, rgba(14, 22, 19, 0.96) 100%);
  }

  .hero-content {
    margin: 0;
  }

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

  .hero-subtitle {
    font-size: 21px;
  }

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

  .hero-dual-rail {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-rail {
    min-height: 72px;
    padding: 12px 14px;
  }

  .hero-rail b {
    font-size: 16px;
  }

  .opportunity-radar {
    top: 30%;
    right: -112px;
    width: 300px;
    height: 300px;
  }

  .signal-panel {
    width: 160px;
    min-height: 112px;
    padding: 12px;
  }

  .signal-panel strong {
    font-size: 26px;
  }

  .signal-city {
    top: 23%;
    right: 38%;
  }

  .signal-today {
    top: 31%;
    right: 2%;
  }

  .signal-proof {
    display: none;
  }

  .national-war-room {
    top: 900px;
    left: 18px;
    right: 18px;
    width: auto;
    min-height: 360px;
    padding: 12px;
  }

  .war-room-head strong {
    font-size: 15px;
  }

  .china-signal-map {
    height: 148px;
    margin-top: 10px;
  }

  .signal-node {
    min-width: 32px;
    height: 18px;
    font-size: 9px;
  }

  .node-tj,
  .node-xa,
  .node-nj,
  .node-su {
    display: none;
  }

  .node-bj {
    left: 58%;
    top: 17%;
  }

  .node-sh {
    left: 78%;
    top: 52%;
  }

  .node-hz {
    left: 69%;
    top: 66%;
  }

  .node-wh {
    left: 50%;
    top: 48%;
  }

  .node-cd {
    left: 34%;
    top: 58%;
  }

  .node-cq {
    left: 40%;
    top: 73%;
  }

  .node-gz {
    left: 55%;
    top: 80%;
  }

  .node-sz {
    left: 66%;
    top: 80%;
  }

  .city-coverage-strip {
    gap: 6px;
  }

  .city-coverage-strip span {
    min-height: 22px;
    padding: 0 8px;
    font-size: 10px;
  }

  .national-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .national-metrics article {
    min-height: 76px;
    padding: 9px;
  }

  .national-metrics span {
    font-size: 11px;
  }

  .national-metrics strong {
    font-size: 22px;
  }

  .national-metrics em {
    font-size: 15px;
  }

  .route-board {
    display: none;
  }

  .lead-strip {
    display: none;
  }

  .section-band {
    padding: 46px 16px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head p:not(.section-kicker),
  .offer-copy p,
  .cockpit-copy p,
  .story-copy p,
  .final-cta p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.62;
  }

  .section-head h2,
  .visual-copy h2,
  .offer-copy h2,
  .cockpit-copy h2,
  .story-copy h2,
  .final-cta h2,
  .community-final h2 {
    font-size: 30px;
  }

  .community-page .site-header {
    top: 10px;
    position: fixed;
    left: 50%;
    right: auto;
    margin: 0;
    transform: translateX(-50%);
  }

  .article-detail-page .site-header {
    position: fixed;
    left: 50%;
    right: auto;
    margin: 0;
    transform: translateX(-50%);
  }

  .community-hero {
    margin-top: 0;
    padding: 118px 18px 48px;
  }

  .content-hub-hero {
    padding: 104px 18px 42px;
  }

  .diagnosis-shell {
    width: calc(100vw - 28px);
  }

  .diagnosis-copy {
    padding: 0;
  }

  .diagnosis-copy h2 {
    font-size: 30px;
  }

  .diagnosis-options {
    grid-template-columns: 1fr;
  }

  .diagnosis-options a {
    min-height: 0;
  }

  .diagnosis-cta a {
    width: 100%;
  }

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

  .hub-hero-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .hub-search-strip {
    align-items: stretch;
  }

  .hub-search-strip span,
  .hub-search-strip a {
    width: 100%;
  }

  .hub-edition-card {
    padding: 20px;
  }

  .hub-edition-card dl {
    grid-template-columns: 1fr;
  }

  .featured-article h3 {
    font-size: 22px;
  }

  .community-hero h1 {
    font-size: 42px;
  }

  .pricing-hero h1 {
    font-size: 42px;
  }

  .pricing-hero p:not(.section-kicker) {
    font-size: 16px;
  }

  .pricing-hero-actions {
    display: grid;
  }

  .pricing-hero-actions a,
  .pricing-bridge a {
    width: 100%;
  }

  .community-hero p:not(.section-kicker),
  .community-final p:not(.section-kicker),
  .pricing-final p:not(.section-kicker) {
    font-size: 16px;
  }

  .community-actions {
    display: grid;
  }

  .community-actions a {
    width: 100%;
  }

  .community-hero-media img {
    min-height: 240px;
  }

  .pricing-hero {
    padding: 118px 18px 48px;
  }

  .pricing-fast-start {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .pricing-fast-start a {
    min-height: 0;
    padding: 16px;
  }

  .pricing-fast-start strong {
    font-size: 24px;
  }

  .pricing-hero-panel {
    gap: 12px;
  }

  .pricing-ledger {
    padding: 14px;
  }

  .pricing-bridge,
  .free-plan-strip,
  .pricing-runway,
  .chooser-grid,
  .pricing-group-head {
    grid-template-columns: 1fr;
  }

  .pricing-bridge {
    align-items: start;
  }

  .pricing-bridge strong {
    font-size: 21px;
  }

  .pricing-bridge-options {
    display: grid;
    gap: 7px;
  }

  .pricing-bridge-options b {
    width: 100%;
    justify-content: center;
  }

  .free-plan-strip {
    align-items: start;
  }

  .pricing-runway article {
    min-height: 0;
  }

  .pricing-group-head {
    display: grid;
    align-items: start;
  }

  .article-shell {
    width: calc(100% - 28px);
    margin: 96px auto 56px;
    padding: 20px;
  }

  .article-shell h1 {
    font-size: 30px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .city-layout,
  .compare-grid,
  .trial-offer,
  .engine-grid {
    grid-template-columns: 1fr;
  }

  .city-switcher,
  .current-city-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .current-city-card {
    grid-template-columns: 1fr;
  }

  .city-button {
    min-height: 40px;
  }

  .pulse-grid,
  .offer-grid,
  .report-deliverables,
  .voice-grid,
  .deliverable-grid,
  .check-grid,
  .revenue-ladder,
    .package-strip,
    .playbook-grid,
    .boundary-grid,
    .pricing-value-grid,
    .pricing-card-grid.personal,
    .pricing-card-grid.enterprise,
    .credit-card-grid,
    .pricing-faq-grid,
    .resonance-grid,
    .promise-grid,
    .content-column-grid,
  .topic-grid,
  .playbook-pack-grid,
  .stance-grid,
  .community-system-flow,
  .taxonomy-grid,
  .article-card-grid,
  .geo-grid,
  .hub-nav-grid,
  .editorial-track,
  .pathway-list,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .billing-options {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .plan-card > div:first-child,
  .plan-meta,
  .plan-benefits,
  .billing-options a,
  .billing-options a.primary-billing {
    min-height: 0;
  }

  .billing-options a.primary-billing strong {
    font-size: 26px;
  }

  .pricing-final h2 {
    font-size: 30px;
  }

  .articles-board {
    width: calc(100vw - 28px);
  }

  .articles-board-head {
    text-align: left;
  }

  .articles-board-head h2 {
    font-size: 32px;
  }

  .article-filter-pills {
    justify-content: flex-start;
  }

  .article-card-wall {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resonance-grid,
  .promise-grid,
  .content-column-grid,
  .topic-grid,
  .playbook-pack-grid,
  .stance-grid {
    width: calc(100vw - 28px);
  }

  .resonance-card,
  .promise-grid article,
  .content-column-grid a,
  .topic-grid a,
  .playbook-pack,
  .stance-grid article {
    min-height: 0;
  }

  .article-tile {
    min-height: 0;
  }

  .hub-nav-grid a {
    min-height: 0;
  }

  .editorial-track {
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .editorial-track article {
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .community-system-flow article,
  .taxonomy-grid article,
  .geo-grid article {
    min-height: 0;
  }

  .article-card h3 {
    font-size: 19px;
  }

  .wide-visual img {
    min-height: 220px;
  }

  .chain-visual,
  .engine-illustration {
    margin-bottom: 16px;
  }

  .chain-lane {
    padding: 20px 16px;
  }

  .lane-head h3 {
    font-size: 24px;
  }

  .chain-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chain-flow span {
    min-height: 16px;
    transform: rotate(90deg);
  }

  .chain-flow strong,
  .chain-flow b {
    min-height: 48px;
    font-size: 13px;
  }

  .chain-bottom {
    padding: 18px 16px;
  }

  .chain-bottom strong {
    font-size: 19px;
  }

  .offer-grid article {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 6px 10px;
    padding: 14px;
  }

  .offer-grid strong {
    grid-row: 1 / span 2;
    font-size: 38px;
  }

  .offer-grid small {
    grid-column: 2;
    line-height: 1.45;
  }

  .check-card,
  .report-sample,
  .report-deliverables article,
  .deliverable-grid article,
  .pricing-value-card,
  .credit-card,
  .pricing-faq-grid details {
    min-height: 0;
    padding: 16px;
  }

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

  .report-sample-head {
    display: grid;
  }

  .report-sample-head strong {
    text-align: left;
  }

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

  .faq-cta {
    display: grid;
  }

  .faq-cta a {
    width: 100%;
  }

  .final-cta {
    padding: 64px 18px;
  }

  .final-form-card {
    padding: 14px;
  }

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

  .goal-examples button {
    flex: 1 1 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(145, 218, 201, 0.35);
    border-radius: 8px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 16px 40px rgba(18, 31, 27, 0.24);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .mobile-sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

@media (max-width: 430px) {
  .brand strong {
    font-size: 15px;
  }

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

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

  .nav-login {
    padding: 0 8px;
  }

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

  .community-hero h1 {
    font-size: 36px;
  }

  .pricing-hero h1 {
    font-size: 36px;
  }

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

  .hero-actions a {
    width: 100%;
  }

  .city-switcher,
  .current-city-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-city-card {
    grid-template-columns: 1fr;
  }
}

.checkout-page {
  background: #f4f7f5;
}

.checkout-shell {
  padding: 116px max(24px, calc((100% - 1180px) / 2)) 78px;
}

.checkout-hero {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: end;
  padding: 58px;
  border-radius: 8px;
  color: #f7fbf9;
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.98), rgba(18, 111, 97, 0.92)),
    #101816;
}

.checkout-hero .section-kicker {
  color: #91dac9;
}

.checkout-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #f7fbf9;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.03;
}

.checkout-hero p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(247, 251, 249, 0.76);
  font-size: 18px;
  line-height: 1.78;
}

.checkout-progress {
  display: grid;
  gap: 10px;
}

.checkout-progress span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(145, 218, 201, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 249, 0.82);
  font-weight: 900;
}

.checkout-progress b {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #06251f;
  background: #91dac9;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-panel {
  min-width: 0;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  box-shadow: 0 14px 36px rgba(18, 31, 27, 0.05);
}

.checkout-panel legend {
  float: left;
  width: 100%;
  margin: 0 0 2px;
  padding: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.checkout-panel::after {
  content: "";
  display: block;
  clear: both;
}

.checkout-panel p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-plan-switch {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.checkout-plan-switch button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: #f7faf8;
  font-weight: 900;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.checkout-plan-switch button:hover,
.checkout-plan-switch button.active {
  border-color: #82cdb9;
  background: var(--green-soft);
  transform: translateY(-1px);
}

.checkout-billing-grid,
.checkout-pay-grid {
  display: grid;
  gap: 10px;
}

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

.checkout-billing-card,
.checkout-pay-grid label {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.checkout-pay-grid label {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
}

.checkout-billing-card input,
.checkout-pay-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-billing-card span,
.checkout-pay-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.checkout-pay-grid .pay-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #f7fbf9;
  font-size: 15px;
  line-height: 1;
}

.checkout-pay-grid .pay-mark-wechat {
  background: #17b66a;
}

.checkout-pay-grid .pay-mark-alipay {
  background: #1677ff;
}

.checkout-pay-grid .pay-mark-bank {
  background: #121f1b;
}

.checkout-pay-grid .pay-name {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
}

.checkout-billing-card strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.checkout-billing-card small,
.checkout-pay-grid small {
  color: var(--green);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
}

.checkout-billing-card.best {
  border-color: rgba(216, 138, 33, 0.32);
  background:
    linear-gradient(90deg, rgba(216, 138, 33, 0.1), rgba(248, 251, 249, 0.94) 58%);
}

.checkout-billing-card.best::before {
  content: "年付优惠";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #84510a;
  background: #fff1d2;
  font-size: 11px;
  font-weight: 900;
}

.checkout-billing-card.best:not(.active) small {
  color: #84510a;
}

.checkout-billing-card:hover,
.checkout-pay-grid label:hover,
.checkout-pay-grid label.active {
  border-color: #82cdb9;
  background: #f1fbf7;
  box-shadow: 0 12px 26px rgba(18, 111, 97, 0.08);
  transform: translateY(-1px);
}

.checkout-billing-card.best:hover:not(.active) {
  border-color: rgba(216, 138, 33, 0.48);
  background:
    linear-gradient(90deg, rgba(216, 138, 33, 0.14), rgba(248, 251, 249, 0.96) 58%);
  box-shadow: 0 12px 26px rgba(132, 81, 10, 0.08);
}

.checkout-billing-card.active {
  border-color: var(--green);
  border-left-width: 5px;
  background:
    linear-gradient(90deg, rgba(18, 111, 97, 0.14), rgba(241, 251, 247, 0.96));
  box-shadow:
    inset 4px 0 0 var(--green),
    0 16px 34px rgba(18, 111, 97, 0.14);
  transform: translateY(-1px);
}

.checkout-billing-card.active span,
.checkout-billing-card.active strong,
.checkout-billing-card.active small {
  color: var(--green);
}

.checkout-billing-card.best.active::before {
  display: none;
}

.checkout-billing-card.active::after,
.checkout-pay-grid label.active::after {
  content: "已选";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 900;
}

.checkout-billing-card.active::after {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #f7fbf9;
  background: var(--green);
  font-size: 14px;
  line-height: 1;
}

.checkout-pay-grid label.active::after {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 12px;
  line-height: 1;
}

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

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

.checkout-contact legend,
.checkout-contact > p,
.checkout-agreement,
.checkout-submit,
.checkout-form-note {
  grid-column: 1 / -1;
}

.checkout-contact label {
  min-width: 0;
}

.checkout-contact label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.checkout-contact input:not([type="checkbox"]) {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8fbf9;
  outline: none;
}

.checkout-contact input:not([type="checkbox"]):focus {
  border-color: #82cdb9;
  box-shadow: 0 0 0 3px rgba(18, 111, 97, 0.1);
}

.checkout-contact input[aria-invalid="true"] {
  border-color: #d88a21;
  box-shadow: 0 0 0 3px rgba(216, 138, 33, 0.14);
}

.checkout-agreement {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.checkout-agreement input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.checkout-agreement span {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-submit {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  color: #f7fbf9;
  background: var(--green);
  font-size: 17px;
  font-weight: 900;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.checkout-form-note {
  color: var(--muted);
}

.checkout-form-note[data-state="error"] {
  color: var(--amber);
  font-weight: 900;
}

.checkout-form-note[data-state="success"] {
  color: var(--green);
  font-weight: 900;
}

.checkout-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.checkout-summary-card,
.checkout-success {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 31, 27, 0.08);
}

.checkout-summary-card > span,
.checkout-success > span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.checkout-summary-card h2,
.checkout-success h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.checkout-summary-card p,
.checkout-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-price-line strong {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.checkout-price-line small {
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

.checkout-saving {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--green) !important;
  background: #eef8f4;
  font-weight: 900;
}

.checkout-rights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.checkout-rights div {
  padding: 10px;
  border-radius: 8px;
  background: #f4f7f5;
}

.checkout-rights dt,
.checkout-rights dd {
  margin: 0;
}

.checkout-rights dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.checkout-rights dd {
  margin-top: 5px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.checkout-feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-feature-list li {
  position: relative;
  padding-left: 18px;
  color: #31423c;
  line-height: 1.55;
}

.checkout-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.checkout-back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fbf9;
  font-weight: 900;
}

.checkout-success[hidden] {
  display: none;
}

.checkout-order {
  padding: 12px;
  border-radius: 8px;
  background: #f4f7f5;
  color: var(--ink);
  line-height: 1.75;
  white-space: pre-line;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-success-actions button,
.checkout-success-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #f7fbf9;
  background: var(--green);
  font-weight: 900;
}

.checkout-success-actions a {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #f8fbf9;
}

.checkout-login-panel,
.checkout-purchase-panel {
  gap: 16px;
}

.checkout-login-copy {
  display: grid;
  gap: 6px;
}

.checkout-login-copy strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.checkout-login-form {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) auto;
  gap: 12px;
  align-items: end;
}

.checkout-login-form[hidden] {
  display: none;
}

.checkout-login-form label {
  min-width: 0;
}

.checkout-login-form label > span:first-child,
.checkout-captcha-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.checkout-login-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8fbf9;
  outline: none;
}

.checkout-login-form input:focus {
  border-color: #82cdb9;
  box-shadow: 0 0 0 3px rgba(18, 111, 97, 0.1);
}

.checkout-login-form input[aria-invalid="true"] {
  border-color: #d88a21;
  box-shadow: 0 0 0 3px rgba(216, 138, 33, 0.14);
}

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

.checkout-code-row button,
.checkout-login-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #f7fbf9;
  background: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.checkout-code-row button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #eef8f4;
}

.checkout-code-row button:disabled,
.checkout-login-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.checkout-captcha-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(160px, 0.3fr);
  gap: 10px;
  align-items: end;
}

.checkout-captcha-row[hidden],
.checkout-auth-result[hidden],
.checkout-logged-card[hidden] {
  display: none;
}

.checkout-auth-result {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  line-height: 1.6;
  font-weight: 900;
}

.checkout-auth-result[data-state="error"] {
  color: var(--amber);
}

.checkout-auth-result[data-state="success"] {
  color: var(--green);
}

.checkout-logged-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid #91dac9;
  border-radius: 8px;
  background: #eef8f4;
}

.checkout-logged-card span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.checkout-logged-card strong {
  color: var(--ink);
  font-size: 17px;
}

.checkout-logged-card button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfdfb;
  font-weight: 900;
}

.checkout-purchase-panel.locked {
  background: #f6f8f7;
}

.checkout-purchase-panel.locked .checkout-submit {
  background: #8ba09a;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 18, 0.58);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  box-shadow: 0 30px 90px rgba(6, 21, 18, 0.28);
}

.auth-dialog > span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.auth-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.auth-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fbf9;
  font-size: 22px;
  line-height: 1;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label span:first-child,
.auth-captcha-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8fbf9;
  outline: none;
}

.auth-form input:focus {
  border-color: #82cdb9;
  box-shadow: 0 0 0 3px rgba(18, 111, 97, 0.1);
}

.auth-form input[aria-invalid="true"] {
  border-color: #d88a21;
  box-shadow: 0 0 0 3px rgba(216, 138, 33, 0.14);
}

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

.auth-code-row button,
.auth-submit {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #f7fbf9;
  background: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.auth-code-row button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #eef8f4;
}

.auth-code-row button:disabled,
.auth-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.auth-captcha-row[hidden],
.auth-result[hidden] {
  display: none;
}

.auth-result[data-state="error"] {
  color: var(--amber);
  font-weight: 900;
}

.auth-result[data-state="success"] {
  color: var(--green);
  font-weight: 900;
}

.bank-transfer-modal[hidden] {
  display: none;
}

.bank-transfer-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.bank-transfer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 18, 0.6);
}

.bank-transfer-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  box-shadow: 0 30px 90px rgba(6, 21, 18, 0.3);
}

.bank-transfer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f8fbf9;
  font-size: 22px;
  line-height: 1;
}

.bank-transfer-kicker {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #0c4f45;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.bank-transfer-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.bank-transfer-intro {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bank-transfer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
  align-items: stretch;
}

.bank-transfer-account,
.bank-transfer-service {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.bank-transfer-account {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.bank-transfer-account dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.bank-transfer-account dl div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.bank-transfer-account dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bank-transfer-account dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.bank-transfer-account dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.bank-transfer-account button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #f7fbf9;
  background: var(--green);
  font-weight: 900;
}

.bank-transfer-service {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
  padding: 14px;
  text-align: center;
}

.bank-transfer-qr {
  width: 158px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px dashed #82cdb9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 111, 97, 0.08), rgba(216, 138, 33, 0.08));
}

.bank-transfer-qr img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.bank-transfer-qr span {
  max-width: 9em;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.bank-transfer-service strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.bank-transfer-service p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.auth-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .checkout-hero,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-plan-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .checkout-shell {
    padding: 92px 12px 54px;
  }

  .checkout-hero {
    min-height: 0;
    padding: 30px 18px;
  }

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

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

  .checkout-plan-switch,
  .checkout-billing-grid,
  .checkout-pay-grid,
  .checkout-contact,
  .checkout-login-form,
  .checkout-captcha-row,
  .checkout-logged-card,
  .auth-code-row,
  .checkout-rights,
  .bank-transfer-content {
    grid-template-columns: 1fr;
  }

  .checkout-panel,
  .checkout-summary-card,
  .checkout-success {
    padding: 16px;
  }

  .checkout-billing-card strong,
  .checkout-price-line strong {
    font-size: 26px;
  }

  .bank-transfer-dialog {
    padding: 20px;
  }

  .bank-transfer-dialog h2 {
    font-size: 26px;
  }

  .bank-transfer-account dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bank-transfer-service {
    justify-items: start;
    text-align: left;
  }
}
