:root {
  color-scheme: light;
  --ink: #251716;
  --muted: #786863;
  --paper: #fff7ed;
  --paper-2: #ffffff;
  --line: rgba(37, 23, 22, 0.12);
  --deep: #251716;
  --deep-2: #40201c;
  --orange: #ff6a35;
  --coral: #ff4d3d;
  --amber: #ffd84d;
  --violet: #2f6bff;
  --blue: #2f6bff;
  --mint: #d9fbe8;
  --cream: #fff1dc;
  --rose: #ffe2dc;
  --sky: #e6efff;
  --lemon: #fff2a8;
  --signal-red: #b82032;
  --signal-red-2: #d62839;
  --shadow: 0 24px 60px rgba(150, 58, 32, 0.14);
  --soft-shadow: 0 12px 28px rgba(150, 58, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 8%, rgba(255, 216, 77, 0.26), transparent 22%),
    radial-gradient(circle at 88% 11%, rgba(47, 107, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fff3ec 72%, #fff8f1 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(216, 40, 57, 0.2);
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--orange);
}

.home-hero,
.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.home-hero {
  background:
    linear-gradient(135deg, rgba(255, 242, 168, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
}

.hero-copy h1,
.report-title h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

.report-title h1 {
  font-size: clamp(38px, 5.3vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--signal-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead,
.report-title > p:not(.eyebrow) {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

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

.primary-btn,
.secondary-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 8px;
  font-weight: 900;
}

button.primary-btn,
.price-button,
.modal-close {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, #ff7a35 0%, #ff4d3d 52%, var(--signal-red) 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(216, 40, 57, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-btn::before,
.price-button::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  animation: button-shine 2.9s ease-in-out infinite;
  pointer-events: none;
}

.primary-btn:hover,
.price-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 38px rgba(216, 40, 57, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

@keyframes button-shine {
  0% { left: -55%; }
  44%, 100% { left: 125%; }
}

.secondary-btn {
  border: 1px solid rgba(37, 23, 22, 0.12);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.secondary-btn.light {
  border-color: rgba(37, 23, 22, 0.12);
  background: #fff;
  color: var(--ink);
}

.engine-board {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(37, 23, 22, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 220, 0.9));
  color: var(--ink);
  box-shadow: var(--shadow);
}

.engine-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 23, 22, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 23, 22, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
  pointer-events: none;
}

.engine-board::after {
  content: "新品机会板";
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(37, 23, 22, 0.12);
  border-radius: 999px;
  background: var(--lemon);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  transform: rotate(3deg);
}

.engine-board > * {
  position: relative;
}

.engine-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 0;
}

.engine-head span,
.engine-head small,
.engine-output span,
.engine-core small {
  color: var(--muted);
  font-size: 13px;
}

.engine-head strong {
  grid-row: span 2;
  color: var(--signal-red-2);
  text-shadow: 0 6px 0 rgba(255, 242, 168, 0.86);
  font-size: clamp(56px, 8vw, 86px);
  line-height: 0.92;
}

.stream-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.stream-row span {
  padding: 8px 10px;
  border: 1px solid rgba(37, 23, 22, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

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

.engine-core div {
  min-height: 146px;
  padding: 16px;
  border: 1px solid rgba(37, 23, 22, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.05);
}

.engine-core div:nth-child(1) {
  background: #fff2a8;
  transform: rotate(-2deg);
}

.engine-core div:nth-child(2) {
  background: #e6efff;
  transform: translateY(10px) rotate(2deg);
}

.engine-core div:nth-child(3) {
  background: #d9fbe8;
  transform: rotate(-1deg);
}

.engine-core strong {
  display: block;
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.15;
}

.engine-output {
  margin-top: 12px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(37, 23, 22, 0.12);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.engine-output p {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.section,
.method-band,
.final-brief,
.formula-band {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

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

.section-head h2,
.method-copy h2,
.story-block h2,
.avoid-box h2,
.quote-wall h2,
.final-brief h2,
.formula-band h2,
.intro-strip h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p,
.story-block p,
.intro-strip > p,
.method-copy p {
  color: var(--muted);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip > p {
  margin: 0;
  font-size: 18px;
}

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

.report-card,
.direction-card,
.quick-read article,
.motive-grid div,
.avoid-box,
.quote-wall,
.brief-panel,
.trust-grid div,
.reasoning-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.report-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 306px;
  padding: 20px;
}

.report-card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.45);
}

.report-card.active {
  border-color: rgba(184, 32, 50, 0.28);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffe8dc 100%);
  box-shadow: var(--shadow);
}

.report-card.active::before {
  background: rgba(255, 77, 61, 0.18);
}

.report-card.compact:nth-child(4n + 2) {
  background: #fff2a8;
}

.report-card.compact:nth-child(4n + 3) {
  background: #e6efff;
}

.report-card.compact:nth-child(4n + 4) {
  background: #d9fbe8;
}

.report-card.compact:nth-child(4n + 5) {
  background: #ffe8dc;
}

.report-card.compact {
  min-height: 196px;
  padding: 18px;
}

.report-card h3 {
  position: relative;
  margin: 34px 0 10px;
  font-size: 32px;
  line-height: 1.12;
}

.report-card.compact h3 {
  margin-top: 26px;
  font-size: 25px;
}

.report-card p {
  position: relative;
  color: var(--muted);
}

.card-topline,
.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.status,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.status.ready,
.tag.hot {
  background: var(--signal-red);
}

.status.soon {
  background: #251716;
}

.tag.growth {
  background: var(--blue);
}

.tag.careful {
  background: var(--muted);
}

.mini-metrics {
  margin-top: 28px;
}

.mini-metrics span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
}

.method-band {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-copy p {
  color: var(--muted);
}

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

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

.method-metric-strip div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(37, 23, 22, 0.04);
}

.method-metric-strip strong {
  display: block;
  color: var(--signal-red-2);
  font-size: 34px;
  line-height: 1;
  text-shadow: 0 4px 0 rgba(255, 242, 168, 0.8);
}

.method-metric-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

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

.pipeline-step {
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.pipeline-step:nth-child(1) {
  background: #fff2a8;
}

.pipeline-step:nth-child(2) {
  background: #e6efff;
}

.pipeline-step:nth-child(3) {
  background: #d9fbe8;
}

.pipeline-step:nth-child(4) {
  background: #ffe8dc;
}

.pipeline-step span {
  color: var(--signal-red);
  font-weight: 900;
}

.pipeline-step strong {
  display: block;
  margin-top: 34px;
  font-size: 24px;
}

.pipeline-step p {
  color: var(--muted);
}

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

.method-proof-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.method-proof-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-proof-grid h3 {
  margin: 18px 0 10px;
  font-size: 26px;
  line-height: 1.16;
}

.method-proof-grid p {
  color: var(--muted);
}

.trust-section {
  background: rgba(255, 255, 255, 0.42);
}

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

.trust-grid div {
  min-height: 210px;
  padding: 22px;
}

.trust-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.trust-grid p {
  color: var(--muted);
}

.testimonial-section {
  overflow: hidden;
  padding: clamp(52px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 216, 77, 0.26), transparent 28%),
    #fff;
}

.testimonial-section .section-head {
  margin-left: clamp(18px, 5vw, 72px);
  margin-right: clamp(18px, 5vw, 72px);
}

.testimonial-cloud {
  position: relative;
  overflow: hidden;
  padding: 12px 0 26px;
}

.testimonial-cloud::before,
.testimonial-cloud::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(42px, 10vw, 140px);
  height: 100%;
  pointer-events: none;
}

.testimonial-cloud::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.testimonial-cloud::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-left: clamp(18px, 5vw, 72px);
  animation: testimonial-drift 42s linear infinite;
}

.testimonial-track article {
  width: 310px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.testimonial-track article:nth-child(4n + 1) {
  background: #fff2a8;
}

.testimonial-track article:nth-child(4n + 2) {
  background: #e6efff;
}

.testimonial-track article:nth-child(4n + 3) {
  background: #d9fbe8;
}

.testimonial-track article:nth-child(4n + 4) {
  background: #ffe8dc;
}

.testimonial-track article:nth-child(3n) {
  transform: translateY(18px);
}

.testimonial-track article:nth-child(3n + 1) {
  transform: translateY(4px);
}

.testimonial-track span {
  color: var(--signal-red);
  font-size: 12px;
  font-weight: 900;
}

.testimonial-track p {
  margin: 12px 0 0;
  color: var(--ink);
}

@keyframes testimonial-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.founder-cover {
  display: grid;
  min-height: 78vh;
  place-items: center;
  padding: clamp(58px, 8vw, 120px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 216, 77, 0.36), transparent 24%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 58%, #ffe8dc 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.founder-cover > div {
  max-width: 1050px;
}

.founder-cover h2 {
  margin: 0;
  font-size: clamp(38px, 6.4vw, 86px);
  line-height: 1.03;
  letter-spacing: 0;
}

.founder-cover p {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.verdict-box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffe8dc 100%);
  color: var(--ink);
  border: 1px solid rgba(179, 19, 45, 0.14);
  box-shadow: var(--shadow);
}

.verdict-visual {
  position: relative;
  min-height: 156px;
  margin-bottom: 26px;
}

.magnet-card {
  position: absolute;
  border: 1px solid rgba(179, 19, 45, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, #ffffff, #fff3ed);
  box-shadow:
    8px 8px 0 rgba(37, 23, 22, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.magnet-card.main {
  left: 50%;
  top: 8px;
  display: grid;
  width: 152px;
  height: 116px;
  place-items: center;
  transform: translateX(-50%) rotate(-4deg);
}

.magnet-card.main span {
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--signal-red));
}

.magnet-card.main strong {
  margin: 0;
  color: var(--signal-red);
  font-size: 42px;
}

.magnet-card.main small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magnet-card.small {
  width: 54px;
  height: 54px;
}

.magnet-card.small.one {
  left: 18px;
  top: 54px;
  background: #fff2a8;
}

.magnet-card.small.two {
  right: 18px;
  top: 24px;
  background: #e6efff;
}

.orbit-line {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 230px;
  height: 104px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 999px;
  transform: translateX(-50%) rotate(-12deg);
}

.verdict-box span,
.quick-read span,
.data-strip span,
.motive-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.verdict-box span {
  color: var(--muted);
}

.verdict-box strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.verdict-box p {
  margin: 18px 0 0;
  color: var(--muted);
}

.quick-read {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.quick-read article {
  min-height: 198px;
  padding: 20px;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.quick-read article:nth-child(1) {
  background: #fff2a8;
}

.quick-read article:nth-child(2) {
  background: #e6efff;
}

.quick-read article:nth-child(3) {
  background: #d9fbe8;
}

.quick-read article:nth-child(4) {
  background: #ffe8dc;
}

.quick-read strong {
  display: block;
  margin: 20px 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.quick-read p {
  margin: 0;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  gap: 24px;
  align-items: stretch;
}

.story-block p + p {
  margin-top: 12px;
}

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

.data-strip div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.data-strip div:nth-child(3n + 1) {
  background: #fff2a8;
}

.data-strip div:nth-child(3n + 2) {
  background: #e6efff;
}

.data-strip div:nth-child(3n) {
  background: #ffe8dc;
}

.data-strip strong {
  display: block;
  margin-top: 20px;
  color: var(--signal-red);
  font-size: 34px;
  line-height: 1;
}

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

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

.reasoning-grid article {
  min-height: 356px;
  padding: 22px;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.reasoning-grid article:nth-child(1) {
  background: #fff2a8;
}

.reasoning-grid article:nth-child(2) {
  background: #e6efff;
}

.reasoning-grid article:nth-child(3) {
  background: #d9fbe8;
}

.reasoning-grid article:nth-child(4) {
  background: #ffe8dc;
}

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

.reasoning-grid h3 {
  margin: 24px 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.reasoning-grid p {
  color: var(--muted);
}

.reasoning-grid strong {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--deep);
}

.formula-band {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 1.56fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.formula {
  margin: 0;
  color: var(--deep);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.26;
}

.formula span {
  color: var(--orange);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(254px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.direction-card {
  min-height: 490px;
  padding: 20px;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.direction-card.priority {
  background: #fff2a8;
  border-color: rgba(179, 19, 45, 0.18);
}

.direction-card:nth-child(2) {
  background: #ffe8dc;
}

.direction-card:nth-child(3) {
  background: #e6efff;
}

.direction-card:nth-child(4) {
  background: #d9fbe8;
}

.rank {
  display: block;
  margin-top: 18px;
  color: var(--coral);
  font-weight: 900;
}

.direction-card h3 {
  margin: 18px 0 12px;
  font-size: 25px;
  line-height: 1.18;
}

.direction-card p,
.direction-card li {
  color: var(--muted);
}

.direction-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
}

.direction-card li + li {
  margin-top: 10px;
}

.avoid-box,
.quote-wall {
  padding: 26px;
}

.avoid-box {
  background: #fff;
}

.avoid-box ol {
  margin: 24px 0 0;
  padding-left: 22px;
}

.avoid-box li + li {
  margin-top: 14px;
}

.quote-wall {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  color: var(--ink);
}

.quote-wall p {
  margin: 14px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 24px;
}

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

.motive-grid div {
  min-height: 238px;
  padding: 20px;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.motive-grid div:nth-child(1) {
  background: #fff2a8;
}

.motive-grid div:nth-child(2) {
  background: #e6efff;
}

.motive-grid div:nth-child(3) {
  background: #d9fbe8;
}

.motive-grid div:nth-child(4) {
  background: #ffe8dc;
}

.motive-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--signal-red);
  font-size: 48px;
  line-height: 1;
}

.motive-grid p {
  color: var(--muted);
}

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

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
}

figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 14px;
}

.final-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  border-top: 1px solid var(--line);
}

.brief-panel {
  padding: 24px;
  background: #fff;
}

.brief-panel dl {
  margin: 0;
}

.brief-panel div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.brief-panel div:first-child {
  padding-top: 0;
}

.brief-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.brief-panel dt {
  color: var(--orange);
  font-weight: 900;
}

.brief-panel dd {
  margin: 0;
}

.paid-library {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 216, 77, 0.26), transparent 24%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.paid-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 26px;
  align-items: stretch;
}

.paid-hero h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
}

.paid-hero p {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
}

.paid-price {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(179, 19, 45, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffe8dc 100%);
  box-shadow:
    10px 10px 0 rgba(37, 23, 22, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.paid-price span,
.paid-price small,
.paywall-card span,
.route-grid span {
  color: var(--muted);
  font-size: 13px;
}

.paid-price del {
  color: rgba(35, 23, 26, 0.38);
  text-decoration-color: rgba(179, 19, 45, 0.42);
  text-decoration-thickness: 2px;
}

.paid-price strong {
  color: var(--signal-red-2);
  font-size: 86px;
  line-height: 0.9;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28),
    0 16px 34px rgba(179, 19, 45, 0.42);
}

.price-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff7a35 0%, #ff4d3d 52%, var(--signal-red) 100%);
  color: #fff;
  font-weight: 900;
  box-shadow:
    0 14px 30px rgba(179, 19, 45, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.paid-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.paid-value-grid div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.paid-value-grid div:nth-child(3n + 1) {
  background: #fff2a8;
}

.paid-value-grid div:nth-child(3n + 2) {
  background: #e6efff;
}

.paid-value-grid div:nth-child(3n) {
  background: #ffe8dc;
}

.paid-value-grid strong {
  display: block;
  color: var(--signal-red-2);
  font-size: 42px;
  line-height: 1;
}

.paid-value-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.unlock-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.sample-plan,
.paywall-card,
.sku-card,
.route-grid article {
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(37, 23, 22, 0.04);
}

.sample-plan {
  padding: 24px;
  background: #fffdf8;
  color: var(--ink);
}

.sample-plan.teaser-plan {
  position: relative;
}

.sample-plan.teaser-plan::after {
  content: "核心方案名与打样细节已隐藏";
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(37, 26, 31, 0.36);
  font-size: 12px;
  font-weight: 900;
}

.plan-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.plan-score {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.sample-plan h3 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
}

.sample-plan > p {
  color: var(--muted);
  font-size: 17px;
}

.plan-spec {
  margin: 22px 0 0;
}

.plan-spec div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.plan-spec dt {
  color: var(--orange);
  font-weight: 900;
}

.plan-spec dd {
  margin: 0;
  color: var(--ink);
}

.paywall-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffe8dc 100%);
}

.paywall-card h3 {
  margin: 14px 0 12px;
  font-size: 32px;
  line-height: 1.12;
}

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

.paywall-card .primary-btn {
  align-self: flex-start;
  margin-top: 14px;
}

.unlock-btn {
  white-space: normal;
}

.paywall-card small {
  margin-top: 14px;
  color: var(--muted);
}

.paid-subhead {
  margin-top: 46px;
}

.paid-subhead p {
  color: var(--muted);
}

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

.sku-card {
  position: relative;
  overflow: hidden;
  min-height: 208px;
  padding: 18px;
  filter: saturate(0.92);
}

.sku-card::after {
  content: "关键方案已锁定";
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: rgba(35, 23, 26, 0.32);
  font-size: 12px;
}

.sku-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.sku-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

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

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

.route-grid article {
  min-height: 230px;
  padding: 20px;
  background: #fff;
}

.route-grid h3 {
  margin: 24px 0 12px;
  font-size: 26px;
  line-height: 1.16;
}

.route-grid p {
  color: var(--muted);
}

.unlock-modal[aria-hidden="true"] {
  display: none;
}

.unlock-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.unlock-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 23, 26, 0.42);
  backdrop-filter: blur(8px);
}

.unlock-dialog {
  position: relative;
  width: min(620px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fff3ee),
    #fffdf8;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.unlock-dialog h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.unlock-dialog p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(33, 21, 45, 0.08);
  color: var(--deep);
  font-size: 24px;
  line-height: 1;
}

.modal-list {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.modal-list span {
  color: var(--signal-red);
  font-size: 13px;
  font-weight: 900;
}

.modal-list ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.modal-list li + li {
  margin-top: 8px;
}

.modal-open {
  overflow: hidden;
}

.unlocked-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fff4ee 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.unlocked-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.02;
}

.unlocked-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.unlocked-stamp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(179, 19, 45, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.unlocked-stamp span,
.unlocked-stamp small {
  color: var(--muted);
  font-size: 13px;
}

.unlocked-stamp strong {
  color: var(--signal-red-2);
  font-size: 82px;
  line-height: 0.95;
  text-shadow: 0 0 26px rgba(255, 51, 79, 0.36);
}

.unlocked-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #fffaf7;
  border-bottom: 1px solid var(--line);
}

.unlocked-summary div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.unlocked-summary strong {
  display: block;
  color: var(--signal-red);
  font-size: 24px;
}

.unlocked-summary span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.plan-library {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.full-plan {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.full-plan + .full-plan {
  margin-top: 16px;
}

.plan-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.plan-title-row h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.full-plan > p {
  max-width: 980px;
  color: var(--muted);
  font-size: 17px;
}

.full-plan dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 20px 0 0;
}

.full-plan dl div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.full-plan dt {
  color: var(--orange);
  font-weight: 900;
}

.full-plan dd {
  margin: 0;
  color: var(--ink);
}

.unlocked-routes {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fff4ee 100%);
  color: var(--ink);
}

.unlocked-routes .section-head p {
  color: var(--muted);
}

.matrix-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: #fffdf8;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

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

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

.matrix-table th {
  position: sticky;
  top: 0;
  background: #fff0ea;
  color: var(--deep);
  font-weight: 900;
}

.matrix-table td:first-child {
  color: var(--orange);
  font-weight: 900;
  white-space: nowrap;
}

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

.idea-bank-section,
.toolkit-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.idea-bank-section {
  background:
    linear-gradient(180deg, #fff7f2, #ffffff);
}

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

.idea-grid article,
.tool-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.idea-grid article {
  min-height: 190px;
  padding: 18px;
}

.idea-grid span,
.tool-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.idea-grid h3 {
  margin: 16px 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.idea-grid p,
.tool-card p,
.tool-card li {
  color: var(--muted);
}

.toolkit-section {
  background: #fffdf8;
}

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

.tool-card {
  min-height: 310px;
  padding: 22px;
}

.tool-card.wide {
  grid-column: span 2;
}

.tool-card h3 {
  margin: 16px 0 14px;
  font-size: 26px;
  line-height: 1.15;
}

.tool-card ul {
  margin: 0;
  padding-left: 19px;
}

.tool-card li + li {
  margin-top: 8px;
}

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

.layer-list p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff3ee;
}

.layer-list strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--deep);
}

.city-roadmap-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fff4ee 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.city-panel,
.roadmap-panel {
  padding: 24px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.city-panel h2,
.roadmap-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

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

.city-list span {
  padding: 12px;
  border-radius: 8px;
  background: #fff3ee;
  color: var(--ink);
}

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

.roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.roadmap-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.roadmap-list strong {
  color: var(--signal-red);
}

.roadmap-list span {
  color: var(--muted);
}

/* Premium Web3 Studio refresh: mature, dimensional, commercial */
:root {
  --ink: #17110f;
  --muted: #71665f;
  --paper: #f7f1e8;
  --paper-2: #fffdf9;
  --line: rgba(23, 17, 15, 0.12);
  --deep: #17110f;
  --deep-2: #241a18;
  --orange: #ff6a35;
  --coral: #ff4b35;
  --amber: #f3b33d;
  --blue: #3157ff;
  --violet: #3157ff;
  --mint: #dcefe7;
  --cream: #f6ebdc;
  --rose: #f6ddd5;
  --sky: #e7ecff;
  --lemon: #f3dfa1;
  --signal-red: #a7192c;
  --signal-red-2: #c51f35;
  --shadow: 0 28px 80px rgba(23, 17, 15, 0.14);
  --soft-shadow: 0 16px 40px rgba(23, 17, 15, 0.08);
  --studio-shadow: 0 20px 0 rgba(23, 17, 15, 0.04), 0 34px 90px rgba(23, 17, 15, 0.1);
}

body {
  background:
    radial-gradient(circle at 16% 5%, rgba(255, 106, 53, 0.1), transparent 23%),
    radial-gradient(circle at 84% 12%, rgba(49, 87, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f1e8 0%, #fffdf9 38%, #f6efe6 100%);
}

.topbar {
  background: rgba(247, 241, 232, 0.86);
}

.brand-mark {
  background:
    linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
  box-shadow: 0 16px 34px rgba(116, 185, 255, 0.2);
}

.home-hero {
  background:
    radial-gradient(circle at 64% 24%, rgba(49, 87, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.74), rgba(247, 241, 232, 0.3));
}

.hero-copy h1,
.report-title h1,
.founder-cover h2 {
  color: #17110f;
}

.eyebrow {
  color: var(--signal-red);
}

.primary-btn,
.price-button {
  background: linear-gradient(135deg, #ff7a35 0%, #ff4b35 48%, #a7192c 100%);
  box-shadow:
    0 16px 34px rgba(167, 25, 44, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.secondary-btn,
.secondary-btn.light {
  background: rgba(255, 253, 249, 0.8);
  border-color: rgba(23, 17, 15, 0.13);
  box-shadow: 0 10px 28px rgba(23, 17, 15, 0.06);
  backdrop-filter: blur(16px);
}

.engine-board {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 78% 12%, rgba(49, 87, 255, 0.28), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(255, 106, 53, 0.22), transparent 26%),
    linear-gradient(145deg, #17110f 0%, #251a18 54%, #101015 100%);
  color: #fffdf9;
  box-shadow: 0 32px 90px rgba(23, 17, 15, 0.26);
}

.engine-board::before {
  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);
  opacity: 0.5;
}

.engine-board::after {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(14px);
}

.engine-head span,
.engine-head small,
.engine-output span,
.engine-core small {
  color: rgba(255, 253, 249, 0.64);
}

.engine-head strong {
  color: #fffdf9;
  text-shadow: 0 10px 34px rgba(255, 106, 53, 0.22);
}

.stream-row span {
  background: rgba(255, 253, 249, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 249, 0.84);
}

.engine-core div,
.engine-core div:nth-child(1),
.engine-core div:nth-child(2),
.engine-core div:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.16), rgba(255, 253, 249, 0.07));
  color: #fffdf9;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.engine-core div:nth-child(1) {
  transform: rotate(-1.6deg);
}

.engine-core div:nth-child(2) {
  transform: translateY(10px) rotate(1.6deg);
}

.engine-core div:nth-child(3) {
  transform: rotate(-0.8deg);
}

.engine-output {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 253, 249, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.engine-output p {
  color: #fffdf9;
}

.intro-strip,
.method-band,
.final-brief,
.formula-band,
.paid-library,
.founder-cover,
.city-roadmap-grid,
.unlocked-hero {
  background:
    radial-gradient(circle at 82% 4%, rgba(49, 87, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94) 0%, rgba(247, 241, 232, 0.82) 100%);
}

.report-card,
.direction-card,
.quick-read article,
.motive-grid div,
.avoid-box,
.quote-wall,
.brief-panel,
.trust-grid div,
.reasoning-grid article,
.method-metric-strip div,
.pipeline-step,
.method-proof-grid article,
.testimonial-track article,
.data-strip div,
.paid-value-grid div,
.sample-plan,
.paywall-card,
.sku-card,
.route-grid article,
.full-plan,
.idea-grid article,
.tool-card,
.city-panel,
.roadmap-panel,
.unlocked-summary div {
  border: 1px solid rgba(23, 17, 15, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(247, 241, 232, 0.76));
  box-shadow: var(--studio-shadow);
}

.report-card.compact:nth-child(4n + 2),
.report-card.compact:nth-child(4n + 3),
.report-card.compact:nth-child(4n + 4),
.report-card.compact:nth-child(4n + 5),
.quick-read article:nth-child(1),
.quick-read article:nth-child(2),
.quick-read article:nth-child(3),
.quick-read article:nth-child(4),
.reasoning-grid article:nth-child(1),
.reasoning-grid article:nth-child(2),
.reasoning-grid article:nth-child(3),
.reasoning-grid article:nth-child(4),
.pipeline-step:nth-child(1),
.pipeline-step:nth-child(2),
.pipeline-step:nth-child(3),
.pipeline-step:nth-child(4),
.testimonial-track article:nth-child(4n + 1),
.testimonial-track article:nth-child(4n + 2),
.testimonial-track article:nth-child(4n + 3),
.testimonial-track article:nth-child(4n + 4),
.data-strip div:nth-child(3n + 1),
.data-strip div:nth-child(3n + 2),
.data-strip div:nth-child(3n),
.direction-card.priority,
.direction-card:nth-child(2),
.direction-card:nth-child(3),
.direction-card:nth-child(4),
.motive-grid div:nth-child(1),
.motive-grid div:nth-child(2),
.motive-grid div:nth-child(3),
.motive-grid div:nth-child(4),
.paid-value-grid div:nth-child(3n + 1),
.paid-value-grid div:nth-child(3n + 2),
.paid-value-grid div:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 241, 232, 0.78));
}

.report-card::before {
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.16), rgba(255, 106, 53, 0.16));
  filter: blur(1px);
}

.report-card.active {
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 106, 53, 0.18), transparent 28%),
    linear-gradient(180deg, #fffdf9, #f8eee4);
  border-color: rgba(167, 25, 44, 0.24);
}

.status.soon,
.tag.growth {
  background: #3157ff;
}

.tag.hot,
.status.ready {
  background: #a7192c;
}

.paid-price,
.paywall-card,
.verdict-box {
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 106, 53, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf9, #f8eee4);
  box-shadow: var(--studio-shadow);
}

.paid-price strong,
.paid-value-grid strong,
.data-strip strong,
.motive-grid strong,
.unlocked-stamp strong,
.method-metric-strip strong,
.magnet-card.main strong {
  color: var(--signal-red);
  text-shadow: none;
}

.magnet-card,
.magnet-card.small.one,
.magnet-card.small.two {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(230, 236, 255, 0.68));
  box-shadow: 14px 14px 0 rgba(23, 17, 15, 0.05), 0 18px 46px rgba(23, 17, 15, 0.08);
}

.magnet-card.main span {
  background: linear-gradient(90deg, #3157ff, #ff6a35);
}

.layer-list p,
.city-list span {
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(23, 17, 15, 0.08);
}

@media (max-width: 1180px) {
  .report-grid,
  .quick-read,
  .motive-grid,
  .reasoning-grid,
  .trust-grid,
  .method-proof-grid,
  .sku-grid,
  .idea-grid,
  .toolkit-grid,
  .paid-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .full-plan dl {
    grid-template-columns: 1fr;
  }

  .tool-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .method-band,
  .final-brief,
  .home-hero,
  .report-hero,
  .two-column,
  .formula-band,
  .intro-strip,
  .paid-hero,
  .unlock-layout,
  .route-grid,
  .unlocked-hero,
  .city-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .engine-core {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-hero,
  .report-hero {
    min-height: auto;
  }

  .hero-copy h1,
  .report-title h1 {
    font-size: 38px;
  }

  .report-grid,
  .quick-read,
  .method-pipeline,
  .motive-grid,
  .chart-grid,
  .data-strip,
    .reasoning-grid,
    .trust-grid,
    .method-proof-grid,
    .sku-grid,
    .idea-grid,
    .toolkit-grid,
    .paid-value-grid,
    .unlocked-summary,
    .city-list {
    grid-template-columns: 1fr;
  }

  .tool-card.wide {
    grid-column: span 1;
  }

  .direction-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

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

  .testimonial-track article {
    width: 280px;
  }

  .brief-panel div,
  .plan-spec div,
  .full-plan dl div,
  .roadmap-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Final direction: Web3 Product Foundry / AI Trend Incubation Lab */
:root {
  --lab-bg: #ecebea;
  --lab-panel: #f7f6f3;
  --lab-ink: #151515;
  --lab-muted: #5d5b57;
  --lab-line: rgba(21, 21, 21, 0.22);
  --lab-line-soft: rgba(21, 21, 21, 0.12);
  --lab-orange: #ff6422;
  --lab-red: #a91524;
  --lab-blue: #3157ff;
}

body {
  background:
    linear-gradient(var(--lab-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-line-soft) 1px, transparent 1px),
    radial-gradient(circle at 74% 9%, rgba(255, 100, 34, 0.11), transparent 24%),
    var(--lab-bg);
  background-size: 112px 112px, 112px 112px, auto, auto;
  color: var(--lab-ink);
}

.topbar {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(236, 235, 234, 0.88);
  border-color: var(--lab-line);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
  box-shadow: none;
}

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

.nav a:hover {
  color: var(--lab-orange);
}

.nav a:hover::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--lab-orange);
  transform: translateY(-50%);
}

.home-hero,
.report-hero {
  min-height: calc(100vh - 59px);
  padding-top: clamp(48px, 7vw, 104px);
  padding-bottom: clamp(48px, 7vw, 104px);
  background: transparent;
  border-color: var(--lab-line);
}

.hero-copy h1,
.report-title h1 {
  max-width: 1040px;
  color: var(--lab-ink);
  font-size: clamp(58px, 8.8vw, 132px);
  line-height: 0.9;
  font-weight: 950;
}

.report-title h1 {
  font-size: clamp(48px, 7vw, 104px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lab-ink);
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lab-orange);
}

.hero-lead,
.report-title > p:not(.eyebrow) {
  color: var(--lab-muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.primary-btn,
.price-button {
  min-height: 48px;
  border-radius: 8px;
  background: var(--lab-orange);
  box-shadow: 0 14px 34px rgba(255, 100, 34, 0.24);
  color: #fff;
}

.secondary-btn,
.secondary-btn.light {
  min-height: 48px;
  border: 1px solid var(--lab-line);
  border-radius: 8px;
  background: rgba(247, 246, 243, 0.74);
  box-shadow: none;
}

.engine-board {
  min-height: 650px;
  border: 1px solid var(--lab-line);
  border-radius: 0;
  background:
    linear-gradient(var(--lab-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-line-soft) 1px, transparent 1px),
    linear-gradient(180deg, rgba(247, 246, 243, 0.96), rgba(232, 231, 228, 0.95));
  background-size: 74px 74px, 74px 74px, auto;
  color: var(--lab-ink);
  box-shadow: none;
}

.engine-board::before {
  display: none;
}

.engine-board::after {
  top: 18px;
  right: 18px;
  border-radius: 0;
  border: 1px solid var(--lab-line);
  background: var(--lab-orange);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  transform: none;
}

.lab-stage {
  position: relative;
  min-height: 270px;
  margin: 18px 0 28px;
  border-bottom: 1px solid var(--lab-line);
}

.lab-core-object {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 158px;
  height: 210px;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 36px rgba(21, 21, 21, 0.2));
}

.core-cap,
.core-body,
.core-chip {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.core-cap {
  top: 0;
  width: 88px;
  height: 74px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(135deg, #fefefe 0%, #c8c8c8 70%);
}

.core-body {
  top: 58px;
  width: 154px;
  height: 150px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 100, 34, 0.92), rgba(255, 100, 34, 0.1) 31%, transparent 32%),
    linear-gradient(145deg, #f7f7f7 0%, #bdbdbd 100%);
}

.core-chip {
  top: 111px;
  width: 72px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lab-orange);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 0 38px rgba(255, 100, 34, 0.58);
}

.lab-module {
  position: absolute;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f7f7f7, #b8b8b8);
  box-shadow: 0 20px 30px rgba(21, 21, 21, 0.18);
}

.module-a {
  left: 16%;
  top: 92px;
  transform: rotate(-18deg);
}

.module-b {
  right: 14%;
  top: 52px;
  background: linear-gradient(145deg, #ff8a36, #ff6422);
  transform: rotate(22deg);
}

.module-c {
  right: 24%;
  bottom: 42px;
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, #f6f3ee, #989898);
  transform: rotate(-10deg);
}

.engine-head span,
.engine-head small,
.engine-output span,
.engine-core small {
  color: var(--lab-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.engine-head strong {
  color: var(--lab-ink);
  text-shadow: none;
}

.stream-row span {
  border-color: var(--lab-line);
  border-radius: 0;
  background: rgba(247, 246, 243, 0.86);
  color: var(--lab-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.engine-core div,
.engine-core div:nth-child(1),
.engine-core div:nth-child(2),
.engine-core div:nth-child(3) {
  min-height: 146px;
  border: 1px solid var(--lab-line);
  border-radius: 0;
  background: rgba(247, 246, 243, 0.9);
  color: var(--lab-ink);
  box-shadow: none;
  transform: none;
}

.engine-core div:hover,
.report-card:hover {
  background: #fff;
}

.engine-output {
  border: 1px solid var(--lab-line);
  border-radius: 0;
  background: #151515;
  color: #fff;
  box-shadow: none;
}

.engine-output span,
.engine-output p {
  color: #fff;
}

.section,
.method-band,
.final-brief,
.formula-band,
.paid-library,
.founder-cover,
.city-roadmap-grid,
.unlocked-hero {
  background: transparent;
}

.report-card,
.direction-card,
.quick-read article,
.motive-grid div,
.avoid-box,
.quote-wall,
.brief-panel,
.trust-grid div,
.reasoning-grid article,
.method-metric-strip div,
.pipeline-step,
.method-proof-grid article,
.testimonial-track article,
.data-strip div,
.paid-value-grid div,
.sample-plan,
.paywall-card,
.sku-card,
.route-grid article,
.full-plan,
.idea-grid article,
.tool-card,
.city-panel,
.roadmap-panel,
.unlocked-summary div,
.paid-price,
.verdict-box {
  border: 1px solid var(--lab-line);
  border-radius: 0;
  background: rgba(247, 246, 243, 0.86);
  box-shadow: none;
}

.report-card::before {
  right: 16px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--lab-orange);
  filter: none;
}

.report-card.active {
  background:
    linear-gradient(90deg, rgba(255, 100, 34, 0.12), transparent 34%),
    rgba(247, 246, 243, 0.92);
  border-color: rgba(21, 21, 21, 0.34);
}

.status,
.tag,
.plan-score {
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.status.soon,
.tag.growth {
  background: var(--lab-ink);
}

.status.ready,
.tag.hot {
  background: var(--lab-orange);
}

.mini-metrics span,
.layer-list p,
.city-list span {
  border: 1px solid var(--lab-line-soft);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.56);
}

.method-metric-strip strong,
.paid-price strong,
.paid-value-grid strong,
.data-strip strong,
.motive-grid strong,
.unlocked-stamp strong,
.magnet-card.main strong {
  color: var(--lab-red);
}

.paid-price strong {
  font-size: 94px;
  text-shadow: none;
}

.testimonial-track article:nth-child(n),
.report-card.compact:nth-child(n),
.quick-read article:nth-child(n),
.reasoning-grid article:nth-child(n),
.pipeline-step:nth-child(n),
.data-strip div:nth-child(n),
.direction-card:nth-child(n),
.motive-grid div:nth-child(n),
.paid-value-grid div:nth-child(n) {
  background: rgba(247, 246, 243, 0.86);
}

.testimonial-track article:nth-child(3n + 1),
.quick-read article:nth-child(3n + 1),
.pipeline-step:nth-child(3n + 1),
.paid-value-grid div:nth-child(3n + 1) {
  background: rgba(255, 100, 34, 0.09);
}

.testimonial-track article:nth-child(3n + 2),
.quick-read article:nth-child(3n + 2),
.pipeline-step:nth-child(3n + 2),
.paid-value-grid div:nth-child(3n + 2) {
  background: rgba(49, 87, 255, 0.08);
}

.magnet-card,
.magnet-card.small.one,
.magnet-card.small.two {
  border-radius: 14px;
  background: linear-gradient(145deg, #f4f4f4, #bcbcbc);
  box-shadow: 0 22px 34px rgba(21, 21, 21, 0.16);
}

.magnet-card.main span {
  background: var(--lab-orange);
}

.formula span,
.rank,
.brief-panel dt,
.plan-spec dt,
.full-plan dt,
.reasoning-grid span,
.idea-grid span,
.tool-card span,
.modal-list span,
.testimonial-track span {
  color: var(--lab-orange);
}

.table-wrap,
figure {
  border-radius: 0;
}

@media (max-width: 980px) {
  .engine-board {
    min-height: auto;
  }

  .lab-stage {
    min-height: 240px;
  }
}

/* Vivid Product Foundry: brighter, sharper, fashion-tech */
:root {
  --lab-bg: #fbfaf7;
  --lab-panel: #ffffff;
  --lab-ink: #111111;
  --lab-muted: #5e5a55;
  --lab-line: rgba(17, 17, 17, 0.2);
  --lab-line-soft: rgba(17, 17, 17, 0.09);
  --lab-orange: #ff5a1f;
  --lab-red: #c2182f;
  --lab-blue: #244cff;
  --lab-pink: #ff3d8b;
  --lab-cyan: #23d3ff;
}

body {
  background:
    linear-gradient(var(--lab-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-line-soft) 1px, transparent 1px),
    radial-gradient(circle at 76% 8%, rgba(36, 76, 255, 0.16), transparent 20%),
    radial-gradient(circle at 14% 14%, rgba(255, 90, 31, 0.18), transparent 21%),
    radial-gradient(circle at 88% 72%, rgba(255, 61, 139, 0.12), transparent 24%),
    #fbfaf7;
  background-size: 104px 104px, 104px 104px, auto, auto, auto, auto;
}

.topbar {
  background: rgba(251, 250, 247, 0.9);
}

.status.ready,
.tag.hot {
  background: var(--lab-orange);
}

.brand-mark {
  background: linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
}

.primary-btn,
.price-button {
  background: linear-gradient(135deg, #ff7a1f 0%, #ff3f22 54%, #c2182f 100%);
  box-shadow: 0 18px 40px rgba(255, 90, 31, 0.28);
}

.secondary-btn,
.secondary-btn.light {
  background: rgba(255, 255, 255, 0.82);
}

.hero-copy h1,
.report-title h1 {
  text-shadow: 0 8px 0 rgba(255, 90, 31, 0.08);
}

.engine-board {
  border-color: rgba(17, 17, 17, 0.28);
  background:
    linear-gradient(var(--lab-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--lab-line-soft) 1px, transparent 1px),
    radial-gradient(circle at 80% 18%, rgba(36, 76, 255, 0.18), transparent 24%),
    radial-gradient(circle at 16% 82%, rgba(255, 90, 31, 0.2), transparent 24%),
    #ffffff;
  background-size: 68px 68px, 68px 68px, auto, auto, auto;
}

.engine-board::after {
  background: var(--lab-orange);
}

.lab-stage {
  min-height: 292px;
}

.core-cap {
  background: linear-gradient(135deg, #ffffff 0%, #d7d7d7 64%, #b8b8b8 100%);
}

.core-body {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 90, 31, 0.94), rgba(255, 90, 31, 0.13) 31%, transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #c9c9c9 100%);
}

.core-chip {
  background: var(--lab-orange);
  box-shadow: 0 0 44px rgba(255, 90, 31, 0.68);
}

.module-a {
  background: linear-gradient(145deg, #ffffff, #9eb0ff);
}

.module-b {
  background: linear-gradient(145deg, #ffb01f, #ff5a1f 52%, #ff3d8b 100%);
}

.module-c {
  background: linear-gradient(145deg, #ffffff, #23d3ff);
}

.engine-core div,
.engine-core div:nth-child(1),
.engine-core div:nth-child(2),
.engine-core div:nth-child(3),
.engine-output,
.report-card,
.direction-card,
.quick-read article,
.motive-grid div,
.avoid-box,
.quote-wall,
.brief-panel,
.trust-grid div,
.reasoning-grid article,
.method-metric-strip div,
.pipeline-step,
.method-proof-grid article,
.testimonial-track article,
.data-strip div,
.paid-value-grid div,
.sample-plan,
.paywall-card,
.sku-card,
.route-grid article,
.full-plan,
.idea-grid article,
.tool-card,
.city-panel,
.roadmap-panel,
.unlocked-summary div,
.paid-price,
.verdict-box {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 17, 17, 0.18);
}

.engine-core div:hover,
.report-card:hover,
.sku-card:hover,
.pipeline-step:hover {
  background: #ffffff;
  border-color: rgba(255, 90, 31, 0.48);
  box-shadow: 0 18px 50px rgba(255, 90, 31, 0.12);
}

.engine-output {
  background: #111111;
  border-color: #111111;
}

.report-card::before {
  width: 10px;
  height: 10px;
  background: var(--lab-orange);
}

.report-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lab-orange), var(--lab-blue), var(--lab-pink));
  opacity: 0.86;
}

.report-card.compact:nth-child(3n + 1)::after,
.quick-read article:nth-child(3n + 1),
.pipeline-step:nth-child(3n + 1),
.paid-value-grid div:nth-child(3n + 1),
.testimonial-track article:nth-child(3n + 1) {
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.12), rgba(255, 255, 255, 0.9));
}

.report-card.compact:nth-child(3n + 2)::after,
.quick-read article:nth-child(3n + 2),
.pipeline-step:nth-child(3n + 2),
.paid-value-grid div:nth-child(3n + 2),
.testimonial-track article:nth-child(3n + 2) {
  background:
    linear-gradient(180deg, rgba(36, 76, 255, 0.11), rgba(255, 255, 255, 0.9));
}

.report-card.compact:nth-child(3n)::after,
.quick-read article:nth-child(3n),
.pipeline-step:nth-child(3n),
.paid-value-grid div:nth-child(3n),
.testimonial-track article:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 61, 139, 0.1), rgba(255, 255, 255, 0.9));
}

.report-card.compact:nth-child(n)::after {
  background: linear-gradient(90deg, var(--lab-orange), var(--lab-blue));
}

.status.soon,
.tag.growth {
  background: var(--lab-blue);
}

.method-metric-strip strong,
.paid-price strong,
.paid-value-grid strong,
.data-strip strong,
.motive-grid strong,
.unlocked-stamp strong,
.magnet-card.main strong {
  color: var(--lab-red);
}

.paid-price {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 90, 31, 0.18), transparent 24%),
    #ffffff;
}

.paid-price strong {
  color: var(--lab-red);
}

.formula span,
.rank,
.brief-panel dt,
.plan-spec dt,
.full-plan dt,
.reasoning-grid span,
.idea-grid span,
.tool-card span,
.modal-list span,
.testimonial-track span {
  color: var(--lab-orange);
}

.method-proof-grid span,
.plan-score {
  color: var(--lab-blue);
}

.magnet-card,
.magnet-card.small.one,
.magnet-card.small.two {
  background: linear-gradient(145deg, #ffffff, #d2d2d2);
}

.magnet-card.main span {
  background: linear-gradient(90deg, var(--lab-orange), var(--lab-pink));
}

.founder-cover,
.paid-library,
.method-band,
.final-brief,
.formula-band,
.city-roadmap-grid,
.unlocked-hero {
  background:
    radial-gradient(circle at 82% 6%, rgba(36, 76, 255, 0.1), transparent 22%),
    radial-gradient(circle at 16% 18%, rgba(255, 90, 31, 0.12), transparent 20%);
}

/* Report library refinement: remove noisy gradients, keep premium project markers */
.report-card::after,
.report-card.compact:nth-child(n)::after,
.report-card.compact:nth-child(3n + 1)::after,
.report-card.compact:nth-child(3n + 2)::after,
.report-card.compact:nth-child(3n)::after {
  content: "";
  position: absolute;
  left: 20px;
  right: auto;
  top: 18px;
  width: 34px;
  height: 3px;
  background: var(--lab-line);
  opacity: 1;
}

.report-card.active::after {
  width: 48px;
  background: var(--lab-orange);
}

.report-card.compact::before {
  width: 7px;
  height: 7px;
  right: 16px;
  top: 16px;
  background: var(--lab-orange);
  opacity: 0.86;
}

.report-card.compact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 243, 0.86));
}

.report-card.compact:hover::after {
  background: var(--lab-orange);
}

/* Report library vivid deck: align with the hero's orange / blue / pink energy */
#reports {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 90, 31, 0.1), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(36, 76, 255, 0.1), transparent 24%);
}

#reports .report-grid {
  gap: 18px;
}

#reports .report-card {
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.07);
}

#reports .report-card.active {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 90, 31, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 231, 0.92));
}

#reports .report-card.compact:nth-child(3n + 1) {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 90, 31, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 231, 222, 0.9));
}

#reports .report-card.compact:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 76, 255, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 236, 255, 0.9));
}

#reports .report-card.compact:nth-child(3n) {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 61, 139, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 229, 240, 0.9));
}

#reports .report-card::after,
#reports .report-card.compact:nth-child(n)::after,
#reports .report-card.compact:nth-child(3n + 1)::after,
#reports .report-card.compact:nth-child(3n + 2)::after,
#reports .report-card.compact:nth-child(3n)::after {
  left: 18px;
  top: 16px;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: var(--lab-orange);
}

#reports .report-card.compact:nth-child(3n + 2)::after {
  background: var(--lab-blue);
}

#reports .report-card.compact:nth-child(3n)::after {
  background: var(--lab-pink);
}

#reports .report-card.compact::before {
  width: 10px;
  height: 10px;
  background: #111;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.48);
}

#reports .report-card.compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.1);
}

#reports .report-card.compact:hover::before {
  background: var(--lab-orange);
}

#reports .card-topline {
  position: relative;
  z-index: 1;
}

#reports .report-card.compact h3 {
  margin-top: 32px;
}

/* Requested refinements: brand gradient, readable headlines, target visual */
.brand-mark {
  background: linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.26);
}

.hero-copy h1,
.report-title h1 {
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.98;
}

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

.engine-head strong {
  color: #b3125b;
  font-size: clamp(56px, 7vw, 94px);
}

.core-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: 19px;
  line-height: 1;
}

.core-chip em {
  display: block;
  max-width: 62px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

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

.status.ready,
.tag.hot {
  background: linear-gradient(135deg, #ff8a1d 0%, #ff4b2f 52%, #c2182f 100%);
}

.status.soon,
.tag.growth {
  background: var(--lab-blue);
}

.tag.careful {
  background: #77736f;
}

.target-visual {
  display: grid;
  min-height: 178px;
  place-items: center;
}

.target-rings {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
}

.target-rings span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(17, 17, 17, 0.22);
  border-radius: 50%;
}

.target-rings span:nth-child(2) {
  inset: 25px;
  border-color: rgba(36, 76, 255, 0.45);
}

.target-rings span:nth-child(3) {
  inset: 52px;
  border-color: #ff3d8b;
  background: rgba(255, 61, 139, 0.08);
}

.target-rings strong {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #b3125b;
  font-size: 28px;
}

.target-arrow {
  position: absolute;
  width: 106px;
  height: 8px;
  background: var(--lab-orange);
  transform: translate(34px, -34px) rotate(-28deg);
  box-shadow: 0 10px 22px rgba(255, 90, 31, 0.25);
}

.target-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--lab-orange);
  transform: translateY(-50%);
}

.target-visual small {
  color: var(--lab-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 800;
}

.testimonial-section .section-head {
  max-width: min(1120px, calc(100% - 36px));
}

.testimonial-track article {
  width: 430px;
}

.report-card del {
  color: rgba(17, 17, 17, 0.45);
  text-decoration-color: rgba(255, 61, 139, 0.72);
  text-decoration-thickness: 2px;
}

@media (max-width: 720px) {
  .hero-copy h1,
  .report-title h1 {
    font-size: 38px;
  }

  .testimonial-track article {
    width: 300px;
  }
}

/* Auth and account prototype */
.auth-shell,
.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 59px);
  padding: clamp(48px, 7vw, 104px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--lab-line);
}

.auth-copy h1,
.account-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--lab-ink);
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.96;
}

.auth-copy p,
.account-hero p {
  max-width: 720px;
  color: var(--lab-muted);
  font-size: 18px;
}

.auth-card,
.account-card,
.account-panel {
  border: 1px solid var(--lab-line);
  background: rgba(255, 255, 255, 0.88);
}

.auth-card,
.account-card {
  padding: 26px;
}

.auth-badge,
.account-card span,
.account-panel > span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  background: var(--lab-orange);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.auth-card label {
  display: block;
  margin-top: 20px;
}

.auth-card small,
.account-card small {
  display: block;
  color: var(--lab-muted);
  font-size: 12px;
  font-weight: 800;
}

.auth-card input {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 13px;
  border: 1px solid var(--lab-line);
  border-radius: 0;
  background: #fff;
  color: var(--lab-ink);
  font: inherit;
}

.code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
  align-items: end;
}

.code-row .secondary-btn {
  min-height: 50px;
  padding: 0 12px;
  font-size: 14px;
}

.auth-submit {
  width: 100%;
  margin-top: 22px;
}

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

.account-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-card strong {
  color: var(--lab-red);
  font-size: 38px;
  line-height: 1;
}

.account-card .primary-btn {
  align-self: flex-start;
}

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

.account-panel {
  min-height: 260px;
  padding: 22px;
}

.account-panel h2 {
  margin: 22px 0 12px;
  font-size: 30px;
  line-height: 1.1;
}

.account-panel p {
  color: var(--lab-muted);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .auth-shell,
  .account-hero,
  .account-grid {
    grid-template-columns: 1fr;
  }
}

/* Wallet flow and final polish */
.brand-mark {
  background: linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
  box-shadow:
    0 14px 34px rgba(139, 92, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.status.ready,
.tag.hot {
  background: linear-gradient(135deg, #ff8a1d 0%, #ff4b2f 52%, #c2182f 100%);
  color: #fff;
}

.price-number,
.paid-price strong {
  font-style: italic;
}

.report-card .price-number {
  color: #b3125b;
  font-weight: 950;
}

.unlock-btn {
  gap: 4px;
}

.wallet-check {
  display: grid;
  gap: 5px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(179, 19, 45, 0.14);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 61, 139, 0.12), transparent 28%),
    #fff8f4;
}

.wallet-check span,
.wallet-check small {
  color: var(--lab-muted);
  font-size: 13px;
  font-weight: 800;
}

.wallet-check strong {
  color: var(--lab-red);
  font-size: 28px;
  line-height: 1;
}

.target-visual {
  position: relative;
  min-height: 206px;
}

.target-rings::after {
  content: "";
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a1d, #ff3d8b);
  box-shadow:
    0 0 0 9px rgba(255, 61, 139, 0.12),
    0 16px 30px rgba(179, 19, 45, 0.24);
}

.target-rings strong,
.target-visual small {
  display: none;
}

.target-arrow {
  left: calc(50% + 86px);
  top: calc(50% - 70px);
  width: 124px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb13d, #ff4b2f);
  transform: rotate(144deg);
  transform-origin: left center;
  box-shadow: 0 14px 26px rgba(255, 75, 47, 0.3);
}

.target-arrow::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 20px;
  height: 22px;
  border-radius: 3px;
  border-left: 4px solid #ffb13d;
  border-right: 4px solid #ffb13d;
  transform: translateY(-50%) skewX(-14deg);
}

.target-arrow::after {
  right: -1px;
  left: auto;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #ff4b2f;
  border-right: 0;
}

.quote-wall p {
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.quote-wall p:nth-of-type(1) {
  background: linear-gradient(135deg, rgba(255, 138, 29, 0.16), rgba(255, 75, 47, 0.08));
  border-color: rgba(255, 75, 47, 0.18);
  color: #9d2430;
}

.quote-wall p:nth-of-type(2) {
  background: linear-gradient(135deg, rgba(36, 76, 255, 0.12), rgba(93, 205, 255, 0.12));
  border-color: rgba(36, 76, 255, 0.16);
  color: #1e3f9b;
}

.quote-wall p:nth-of-type(3) {
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.13), rgba(255, 186, 219, 0.12));
  border-color: rgba(255, 61, 139, 0.15);
  color: #9d1d62;
}

.quote-wall p:nth-of-type(4) {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(255, 138, 29, 0.09));
  border-color: rgba(139, 92, 246, 0.14);
  color: #5532a7;
}

.testimonial-section .section-head {
  width: min(1320px, calc(100% - 36px));
  max-width: none;
}

.testimonial-cloud {
  width: min(1460px, calc(100% - 18px));
  margin-inline: auto;
}

.testimonial-track article {
  width: 560px;
  min-height: 154px;
}

.testimonial-track p {
  font-size: 16px;
  line-height: 1.7;
}

.agreement-row {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px !important;
  color: var(--lab-muted);
  font-size: 13px;
  line-height: 1.55;
}

.auth-card .agreement-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: #ff4b2f;
}

.agreement-row span {
  display: block;
}

.auth-note.warn {
  color: #b3125b;
  font-weight: 900;
}

.account-balance {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(179, 19, 45, 0.12);
  background: #fff8f4;
}

.account-balance b {
  color: var(--lab-red);
  font-size: 28px;
  line-height: 1;
}

.account-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.recharge-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.recharge-preview span {
  display: inline-flex;
  min-height: 28px;
  min-width: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 75, 47, 0.18);
  background: #fff8f4;
  color: var(--lab-red);
  font-weight: 950;
  font-style: italic;
}

.recharge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(48px, 7vw, 104px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--lab-line);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 61, 139, 0.16), transparent 26%),
    radial-gradient(circle at 10% 18%, rgba(93, 205, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #fff 0%, #fff7f2 100%);
}

.recharge-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--lab-ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.recharge-hero p {
  max-width: 720px;
  color: var(--lab-muted);
  font-size: 18px;
}

.wallet-card {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid var(--lab-line);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 138, 29, 0.18), transparent 26%),
    #fff;
  box-shadow: 14px 14px 0 rgba(17, 17, 17, 0.05);
}

.wallet-card span,
.wallet-card small {
  color: var(--lab-muted);
  font-size: 13px;
  font-weight: 800;
}

.wallet-card strong {
  color: var(--lab-red);
  font-size: 48px;
  font-style: italic;
  line-height: 1;
}

.recharge-section {
  background: #fff;
}

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

.recharge-pack {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(93, 205, 255, 0.13), transparent 28%),
    linear-gradient(145deg, #fff 0%, #fff7f2 100%);
  color: var(--lab-ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.recharge-pack:hover,
.recharge-pack.selected {
  border-color: rgba(255, 75, 47, 0.48);
  box-shadow: 10px 10px 0 rgba(255, 75, 47, 0.11);
  transform: translateY(-2px);
}

.recharge-pack.selected::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 75, 47, 0.34);
  border-radius: 6px;
  pointer-events: none;
}

.recharge-pack span,
.recharge-pack small,
.recharge-pack em {
  display: block;
}

.recharge-pack span {
  color: var(--lab-muted);
  font-size: 13px;
  font-weight: 900;
}

.recharge-pack strong {
  display: block;
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}

.recharge-pack small {
  margin-top: 8px;
  color: var(--lab-red);
  font-weight: 900;
}

.recharge-pack .pay-line {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 14px;
  color: #a91524;
  font-size: 15px;
}

.recharge-pack .pay-line b {
  font-size: clamp(34px, 4.2vw, 54px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.95;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.5),
    0 12px 24px rgba(179, 19, 45, 0.22);
}

.recharge-pack em {
  margin-top: 18px;
  color: var(--lab-muted);
  font-size: 13px;
  font-style: normal;
}

.recharge-pack .save-line {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 3px;
  margin-top: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 61, 139, 0.1);
  color: #a91524;
  font-weight: 900;
}

.recharge-pack .save-line b {
  font-size: 18px;
  font-style: italic;
}

.recharge-pack i {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a1d, #ff4b2f);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.recharge-pack.best {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 61, 139, 0.16), transparent 28%),
    linear-gradient(145deg, #fff 0%, #fff0f6 100%);
}

.checkout-panel,
.recharge-result {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(179, 19, 45, 0.14);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 138, 29, 0.13), transparent 24%),
    #fff8f4;
}

.checkout-panel span,
.checkout-panel small,
.recharge-result span {
  display: block;
  color: var(--lab-muted);
  font-size: 13px;
  font-weight: 900;
}

.checkout-panel small b {
  color: var(--lab-red);
  font-size: 26px;
  font-style: italic;
  font-weight: 1000;
}

.checkout-panel strong {
  display: block;
  color: var(--lab-red);
  font-size: 42px;
  font-style: italic;
  line-height: 1;
}

.recharge-result {
  display: none;
}

.recharge-result.show {
  display: flex;
}

.recharge-result p {
  margin: 5px 0 0;
  color: var(--lab-muted);
}

@media (max-width: 1180px) {
  .recharge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .testimonial-track article {
    width: 330px;
  }
}

/* Final requested refinements */
.brand-mark {
  background: linear-gradient(135deg, #ff8ee8 0%, #4f8cff 50%, #8b6cff 100%);
  box-shadow:
    0 14px 34px rgba(139, 92, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.engine-output {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 61, 139, 0.42), transparent 35%),
    radial-gradient(circle at 10% 86%, rgba(255, 138, 29, 0.34), transparent 34%),
    linear-gradient(135deg, #565862 0%, #41434d 48%, #30313a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(17, 18, 22, 0.14),
    0 14px 34px rgba(255, 95, 72, 0.16);
}

.status.ready,
.tag.hot {
  background: linear-gradient(135deg, #ff8a1d 0%, #ff5a47 45%, #ff3d8b 100%);
  color: #fff;
}

.testimonial-section .section-head {
  width: min(1320px, calc(100% - 36px));
  max-width: none;
}

.testimonial-cloud {
  display: grid;
  width: min(1500px, calc(100% - 18px));
  gap: 14px;
  margin-inline: auto;
  padding: 12px 0 34px;
}

.testimonial-track {
  gap: 14px;
  padding-left: clamp(18px, 5vw, 72px);
  animation: testimonial-drift 44s linear infinite;
}

.testimonial-track-alt {
  padding-left: 0;
  padding-right: clamp(18px, 5vw, 72px);
  animation: testimonial-drift-reverse 48s linear infinite;
}

.testimonial-track article,
.testimonial-track article:nth-child(n) {
  width: 372px;
  min-height: 132px;
  transform: none;
}

.testimonial-track p {
  font-size: 15px;
  line-height: 1.58;
}

@keyframes testimonial-drift-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.target-visual {
  display: grid;
  min-height: 224px;
  place-items: center;
}

.opportunity-radar {
  position: relative;
  overflow: hidden;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 10%, rgba(255, 247, 242, 0.82) 11% 26%, transparent 27%),
    conic-gradient(from 230deg, rgba(255, 61, 139, 0.24), rgba(63, 107, 255, 0.16), rgba(255, 138, 29, 0.24), rgba(255, 61, 139, 0.24));
  box-shadow:
    0 22px 48px rgba(17, 17, 17, 0.12),
    inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.opportunity-radar::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 139, 0.12), transparent 64%);
  filter: blur(4px);
}

.opportunity-radar::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 3;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(255, 61, 139, 0.42) 0deg, rgba(255, 115, 198, 0.2) 34deg, transparent 76deg, transparent 360deg);
  mask: radial-gradient(circle, transparent 0 16%, #000 17% 100%);
  mix-blend-mode: multiply;
  animation: radar-scan 3.8s linear infinite;
  pointer-events: none;
}

.radar-ring,
.radar-axis,
.radar-dot,
.radar-focus {
  position: absolute;
}

.radar-ring {
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
}

.ring-b {
  inset: 28px;
  border-color: rgba(63, 107, 255, 0.24);
}

.ring-c {
  inset: 58px;
  border-color: rgba(255, 61, 139, 0.36);
  background: rgba(255, 255, 255, 0.36);
}

.radar-axis {
  z-index: 1;
  left: 50%;
  top: 50%;
  background: rgba(17, 17, 17, 0.14);
  transform: translate(-50%, -50%);
}

.axis-x {
  width: 154px;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 154px;
}

.radar-dot {
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3f6bff;
  box-shadow: 0 0 0 6px rgba(63, 107, 255, 0.12);
}

.dot-a {
  left: 42px;
  top: 48px;
}

.dot-b {
  right: 38px;
  bottom: 48px;
  background: #ff8a1d;
  box-shadow: 0 0 0 6px rgba(255, 138, 29, 0.13);
}

.dot-c {
  right: 48px;
  top: 36px;
  background: #ff3d8b;
  box-shadow: 0 0 0 6px rgba(255, 61, 139, 0.13);
}

.radar-focus {
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a1d, #ff3d8b);
  box-shadow:
    0 0 0 8px rgba(255, 61, 139, 0.12),
    0 0 0 17px rgba(63, 107, 255, 0.08),
    0 18px 30px rgba(179, 19, 45, 0.24);
  transform: translate(-50%, -50%);
  animation: radar-pulse 2.6s ease-in-out infinite;
}

@keyframes radar-scan {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes radar-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 8px rgba(255, 61, 139, 0.12),
      0 0 0 17px rgba(63, 107, 255, 0.08),
      0 18px 30px rgba(179, 19, 45, 0.24);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(255, 61, 139, 0.16),
      0 0 0 25px rgba(63, 107, 255, 0.1),
      0 18px 30px rgba(179, 19, 45, 0.24);
  }
}

.wallet-panel .recharge-preview {
  display: none;
}

.wallet-panel p {
  display: block;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .testimonial-cloud {
    width: 100%;
  }

  .testimonial-track article,
  .testimonial-track article:nth-child(n) {
    width: 310px;
    min-height: 142px;
  }

  .opportunity-radar {
    width: 150px;
    height: 150px;
  }
}

/* Wider intro statement band */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.intro-strip {
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 92px);
  padding-top: clamp(96px, 13vw, 180px);
  padding-bottom: clamp(96px, 13vw, 180px);
  padding-left: clamp(24px, 7vw, 112px);
  padding-right: clamp(24px, 7vw, 112px);
}

.intro-strip > p {
  max-width: 860px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .intro-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

/* =========================================================
   2026-06 首页首屏压缩优化
   目标：桌面端第一屏控制在一个视口内，减少上下空白，同时保留右侧机会板的识别度。
   ========================================================= */
.home-hero {
  min-height: calc(100svh - 59px);
  padding-top: clamp(22px, 3.6vw, 48px);
  padding-bottom: clamp(22px, 3.6vw, 48px);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.home-hero .hero-copy h1 {
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.92;
  max-width: 880px;
}

.home-hero .eyebrow {
  margin-bottom: 10px;
}

.home-hero .hero-lead {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}

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

.home-hero .primary-btn,
.home-hero .secondary-btn {
  min-height: 44px;
  padding-left: 17px;
  padding-right: 17px;
}

.home-hero .engine-board {
  min-height: auto;
  padding: clamp(16px, 2vw, 20px);
}

.home-hero .engine-board::after {
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  font-size: 11px;
}

.home-hero .lab-stage {
  min-height: 198px;
  margin: 6px 0 16px;
}

.home-hero .lab-core-object {
  top: 10px;
  width: 126px;
  height: 168px;
  filter: drop-shadow(0 22px 26px rgba(21, 21, 21, 0.16));
}

.home-hero .core-cap {
  width: 72px;
  height: 58px;
  border-radius: 14px 14px 8px 8px;
}

.home-hero .core-body {
  top: 45px;
  width: 124px;
  height: 122px;
  border-radius: 22px;
}

.home-hero .core-chip {
  top: 88px;
  width: 60px;
  height: 42px;
  border-radius: 10px;
  font-size: 17px;
}

.home-hero .core-chip em {
  font-size: 7px;
}

.home-hero .lab-module {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 15px 22px rgba(21, 21, 21, 0.14);
}

.home-hero .module-a {
  left: 15%;
  top: 72px;
}

.home-hero .module-b {
  right: 13%;
  top: 40px;
}

.home-hero .module-c {
  right: 25%;
  bottom: 30px;
  width: 42px;
  height: 42px;
}

.home-hero .engine-head {
  padding-bottom: 12px;
  gap: 5px 14px;
}

.home-hero .engine-head strong {
  font-size: clamp(44px, 5.8vw, 68px);
}

.home-hero .stream-row {
  gap: 7px;
  margin: 13px 0;
}

.home-hero .stream-row span {
  padding: 6px 8px;
  font-size: 11px;
}

.home-hero .engine-core {
  gap: 9px;
}

.home-hero .engine-core div,
.home-hero .engine-core div:nth-child(1),
.home-hero .engine-core div:nth-child(2),
.home-hero .engine-core div:nth-child(3) {
  min-height: 104px;
  padding: 12px;
}

.home-hero .engine-core strong {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.15;
}

.home-hero .engine-output {
  margin-top: 9px;
  padding: 12px;
}

.home-hero .engine-output p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 981px) and (max-height: 780px) {
  .home-hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(42px, 6.7vw, 92px);
  }

  .home-hero .lab-stage {
    min-height: 168px;
    margin-bottom: 12px;
  }

  .home-hero .lab-core-object {
    transform: translateX(-50%) scale(0.86);
    transform-origin: top center;
  }

  .home-hero .lab-module {
    transform: scale(0.88);
  }

  .home-hero .module-a { transform: rotate(-18deg) scale(0.88); }
  .home-hero .module-b { transform: rotate(22deg) scale(0.88); }
  .home-hero .module-c { transform: rotate(-10deg) scale(0.88); }

  .home-hero .engine-core div,
  .home-hero .engine-core div:nth-child(1),
  .home-hero .engine-core div:nth-child(2),
  .home-hero .engine-core div:nth-child(3) {
    min-height: 92px;
  }

  .home-hero .engine-output {
    padding: 10px 12px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(42px, 12vw, 76px);
  }

  .home-hero .engine-board {
    margin-top: 6px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .home-hero .hero-copy h1 {
    font-size: 40px;
    line-height: 0.96;
  }

  .home-hero .hero-lead {
    margin-top: 16px;
  }
}

/* =========================================================
   2026-06 首页首屏二次压缩优化
   1) 首页主标题进一步缩小，避免第一屏视觉过重。
   2) “少看一堆数据，少走一次弯路” intro 区块降低上下留白。
   ========================================================= */
.home-hero .hero-copy h1 {
  font-size: clamp(38px, 5.1vw, 72px);
  line-height: 1.02;
  max-width: 760px;
}

.home-hero .hero-lead {
  max-width: 620px;
}

.intro-strip {
  padding-top: clamp(46px, 5.8vw, 78px);
  padding-bottom: clamp(46px, 5.8vw, 78px);
  gap: clamp(24px, 4vw, 56px);
}

.intro-strip h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.intro-strip > p {
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.68;
}

@media (min-width: 981px) and (max-height: 780px) {
  .home-hero .hero-copy h1 {
    font-size: clamp(36px, 4.8vw, 64px);
  }

  .intro-strip {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (max-width: 980px) {
  .home-hero .hero-copy h1 {
    font-size: clamp(36px, 9.5vw, 58px);
    line-height: 1.04;
  }

  .intro-strip {
    padding-top: 44px;
    padding-bottom: 48px;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .home-hero .hero-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .intro-strip {
    padding-top: 38px;
    padding-bottom: 42px;
  }
}

/* =========================================================
   2026-06 首页 intro 区块回调 v3
   “少看一堆数据，少走一次弯路”在 v2 被压得过短，
   本版在不恢复到原始超高留白的前提下，适度增加上下呼吸感。
   ========================================================= */
.intro-strip {
  padding-top: clamp(68px, 8.2vw, 118px);
  padding-bottom: clamp(68px, 8.2vw, 118px);
  gap: clamp(30px, 5vw, 72px);
}

.intro-strip h2 {
  font-size: clamp(30px, 3.7vw, 46px);
}

.intro-strip > p {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.72;
}

@media (min-width: 981px) and (max-height: 780px) {
  .intro-strip {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

@media (max-width: 980px) {
  .intro-strip {
    padding-top: 62px;
    padding-bottom: 66px;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .intro-strip {
    padding-top: 54px;
    padding-bottom: 58px;
  }
}
