:root {
  --paper: #f4f0e7;
  --paper-2: #ebe4d6;
  --ink: #18312b;
  --ink-soft: #50655f;
  --forest: #123f35;
  --forest-2: #0e3029;
  --accent: #ef6a3a;
  --accent-dark: #b94220;
  --line: rgba(24, 49, 43, 0.16);
  --white: #fffdf8;
  --green: #19704f;
  --amber: #b96b14;
  --red: #c3442d;
  --shadow: 0 24px 80px rgba(21, 48, 41, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(rgba(24, 49, 43, 0.14) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
  z-index: -1;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(244, 240, 231, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
  border-radius: 9px 9px 17px 9px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 24px;
  font-weight: 800;
  transform: rotate(-2deg);
}
.brand strong, .brand small { display: block; }
.brand strong { line-height: 1.1; font-size: 18px; letter-spacing: 0.04em; }
.brand small { color: var(--ink-soft); font-size: 10px; letter-spacing: 0.08em; margin-top: 3px; }

.site-nav { justify-self: center; display: flex; gap: 28px; font-size: 14px; font-weight: 700; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}
.site-nav a:hover::after { right: 0; }

.header-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}
.nav-toggle { display: none; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 72px;
  padding-block: 86px 70px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #f1b39a; }
.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-family: "STSong", "Songti SC", "SimSun", serif;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-lead { max-width: 650px; color: var(--ink-soft); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin: 34px 0 30px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); box-shadow: 0 12px 30px rgba(239, 106, 58, 0.22); }
.button-primary:hover { background: var(--accent-dark); }
.button-ghost { border-color: var(--line); background: rgba(255, 255, 255, 0.34); }
.button-dark { color: var(--white); background: var(--ink); }
.button-accent { color: var(--forest); background: #f4a47f; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,0.3); background: transparent; }
.text-button { border: 0; color: var(--ink-soft); background: transparent; cursor: pointer; text-decoration: underline; }

.trust-list { display: flex; flex-wrap: wrap; gap: 16px 28px; padding: 0; margin: 0; list-style: none; color: var(--ink-soft); font-size: 13px; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.hero-board {
  position: relative;
  padding: 25px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-board::before {
  content: "";
  position: absolute;
  inset: 12px -14px -14px 12px;
  z-index: -1;
  border: 1px solid rgba(24,49,43,0.28);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}
.board-topline { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.62); font-size: 11px; }
.board-topline span:last-child { margin-left: auto; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #7ed2a9; box-shadow: 0 0 0 5px rgba(126,210,169,0.11); }
.board-verdict { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 26px 0 22px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.board-verdict small, .result-heading small { display: block; color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 0.12em; }
.board-verdict strong { display: block; margin-top: 5px; font-family: "STSong", "Songti SC", serif; font-size: 30px; }
.status-chip { display: inline-flex; align-items: center; white-space: nowrap; padding: 7px 11px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.status-amber { color: #ffe0ad; background: rgba(217, 133, 38, 0.18); border: 1px solid rgba(255, 193, 101, 0.35); }
.status-green { color: #c9f6de; background: rgba(41, 145, 96, 0.22); border: 1px solid rgba(111, 214, 159, 0.32); }
.status-red { color: #ffd3ca; background: rgba(195, 68, 45, 0.25); border: 1px solid rgba(244, 132, 109, 0.4); }
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 18px 0; background: rgba(255,255,255,0.1); }
.board-grid > div { padding: 18px 14px; background: var(--forest); }
.board-grid small, .board-grid strong, .board-grid span { display: block; }
.board-grid small { color: rgba(255,255,255,0.52); font-size: 11px; }
.board-grid strong { margin-top: 3px; font-size: 23px; }
.board-grid span { color: rgba(255,255,255,0.45); font-size: 10px; }
.ink-red { color: #ff9f8c !important; }
.ink-green { color: var(--green) !important; }
.board-note { padding: 16px; background: rgba(255,255,255,0.06); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; }
.board-note span { color: #f4a47f; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; }
.board-note p { margin: 4px 0 0; color: rgba(255,255,255,0.78); font-size: 13px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
}
.proof-strip > div { min-height: 126px; display: flex; flex-direction: column; justify-content: center; padding: 20px 28px; border-right: 1px solid var(--line); }
.proof-strip > div:first-child { border-left: 1px solid var(--line); }
.proof-strip strong { font-family: "STSong", "Songti SC", serif; font-size: 30px; }
.proof-strip span { color: var(--ink-soft); font-size: 12px; }

.intro-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; padding-block: 120px; }
.sticky-heading { align-self: start; position: sticky; top: 120px; }
.section-heading h2, .expert-intro h2, .lifecycle-grid h2, .closing-section h2 {
  margin-bottom: 20px;
  font-family: "STSong", "Songti SC", "SimSun", serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-heading > p, .heading-row > p, .expert-intro > p { color: var(--ink-soft); }
.principle-cards { display: grid; gap: 18px; }
.principle-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,0.28); }
.principle-card:nth-child(2) { transform: translateX(26px); }
.card-index { color: var(--accent); font-weight: 900; font-size: 12px; }
.principle-card h3 { margin: 12px 0 8px; font-size: 24px; }
.principle-card p { margin: 0; color: var(--ink-soft); }

.diagnosis-section { padding-block: 105px; color: var(--white); background: var(--forest-2); }
.heading-row { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.heading-row > p { max-width: 470px; margin-left: auto; }
.diagnosis-section .heading-row > p { color: rgba(255,255,255,0.62); }
.calculator-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: 24px; align-items: start; }
.calculator-card { color: var(--ink); background: var(--white); border-radius: var(--radius-lg); overflow: hidden; }
.form-section { padding: 30px; border-bottom: 1px solid var(--line); }
.form-section-title { display: flex; gap: 16px; margin-bottom: 22px; }
.form-section-title > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--accent); font-size: 12px; font-weight: 900; }
.form-section-title h3 { margin: 0; font-size: 20px; }
.form-section-title p { margin: 2px 0 0; color: var(--ink-soft); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label, .compact-form label, .review-input-card label { color: var(--ink-soft); font-size: 12px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f7f3ea;
  border: 1px solid rgba(24,49,43,0.14);
  border-radius: 9px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(239,106,58,0.12); }
textarea { resize: vertical; }
.gate-fieldset { margin: 0; padding: 30px; border: 0; }
.gate-fieldset legend { padding: 0; font-size: 19px; font-weight: 900; }
.gate-fieldset > p { margin: 4px 0 16px; color: var(--ink-soft); font-size: 12px; }
.gate-fieldset label { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0; font-size: 13px; }
.gate-fieldset input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--forest); }

.result-card { min-height: 800px; padding: 28px; background: #183b33; border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); }
.result-sticky { position: sticky; top: 100px; }
.result-heading { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.result-heading h3 { margin: 5px 0 0; font-family: "STSong", "Songti SC", serif; font-size: 30px; }
.result-summary { min-height: 52px; color: rgba(255,255,255,0.68); font-size: 13px; }
.risk-meter { margin: 22px 0; }
.risk-meter-label { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.44); font-size: 10px; }
.risk-meter-label strong { color: #ffd59a; font-size: 11px; }
.risk-track { height: 7px; margin-top: 8px; overflow: hidden; background: rgba(255,255,255,0.1); border-radius: 99px; }
.risk-track span { display: block; width: 65%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #55b986, #f0b34a, #e45a41); transition: width 280ms ease; }
.result-numbers { display: grid; grid-template-columns: 1fr 1fr; border-block: 1px solid rgba(255,255,255,0.1); }
.result-numbers > div { padding: 17px 4px; }
.result-numbers small, .result-numbers strong { display: block; }
.result-numbers small { color: rgba(255,255,255,0.48); font-size: 10px; }
.result-numbers strong { margin-top: 3px; font-size: 20px; }
.channel-box { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; }
.channel-box > div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 12px; background: rgba(255,255,255,0.06); border-radius: 8px; font-size: 11px; }
.channel-box span { color: rgba(255,255,255,0.48); }
.action-panel { padding: 17px; background: #f4d7ae; color: var(--ink); border-radius: 12px; }
.action-panel > span { color: var(--accent-dark); font-size: 10px; font-weight: 900; letter-spacing: 0.1em; }
.action-panel ol { padding-left: 20px; margin: 8px 0 0; font-size: 12px; }
.action-panel li + li { margin-top: 5px; }
.result-actions { display: flex; gap: 9px; margin-top: 18px; }
.calculation-note { margin: 14px 0 0; color: rgba(255,255,255,0.42); font-size: 10px; }

.reputation-section { padding-block: 120px; }
.reputation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-input-card, .review-result-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,0.34); }
.inline-actions { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
.privacy-note { margin: 14px 0 0; color: var(--ink-soft); font-size: 11px; }
.review-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.review-overview div { padding: 14px 10px; background: var(--paper-2); border-radius: 10px; }
.review-overview small, .review-overview strong { display: block; }
.review-overview small { color: var(--ink-soft); font-size: 10px; }
.review-overview strong { font-size: 23px; }
.review-result-card h3 { margin: 24px 0 12px; }
.dimension-row { display: grid; grid-template-columns: 54px 1fr 56px; gap: 10px; align-items: center; margin: 11px 0; font-size: 11px; }
.dimension-bar { height: 8px; overflow: hidden; background: rgba(24,49,43,0.08); border-radius: 99px; }
.dimension-bar span { display: block; height: 100%; background: var(--green); border-radius: inherit; }
.dimension-row.negative .dimension-bar span { background: var(--red); }
.dimension-row strong { text-align: right; }
.review-insight { margin-top: 22px; padding: 16px; color: var(--ink); background: #f2cfaa; border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; font-size: 12px; }

.expert-section { padding-block: 110px; color: var(--white); background: var(--forest); }
.expert-intro { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: end; }
.expert-intro > p { color: rgba(255,255,255,0.62); }
.expert-process { display: grid; grid-template-columns: repeat(5, 1fr); margin: 56px 0; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); overflow: hidden; }
.expert-process article { min-height: 210px; padding: 25px 18px; border-right: 1px solid rgba(255,255,255,0.12); }
.expert-process article:last-child { border-right: 0; }
.expert-process span { color: #f4a47f; font-size: 11px; font-weight: 900; }
.expert-process h3 { margin: 45px 0 8px; font-size: 18px; }
.expert-process p { margin: 0; color: rgba(255,255,255,0.55); font-size: 12px; }
.expert-cta-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; padding: 34px; color: var(--ink); background: #f0d4b6; border-radius: var(--radius-lg); }
.mini-label { color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.expert-cta-card h3 { margin: 10px 0; font-family: "STSong", "Songti SC", serif; font-size: 30px; line-height: 1.2; }
.expert-cta-card p { color: var(--ink-soft); }
.compact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.compact-form label:last-of-type { grid-column: 1 / -1; }
.compact-form .button { justify-self: start; }
.form-message { align-self: center; color: var(--green); font-size: 12px; font-weight: 800; }

.property-section { padding-block: 120px; }
.property-standard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.property-standard article { min-height: 230px; padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,0.28); border-radius: var(--radius-md); }
.property-standard article:nth-child(even) { margin-top: 26px; }
.video-time { display: inline-block; padding: 5px 8px; color: var(--accent-dark); background: #f3d3bd; border-radius: 999px; font-size: 10px; font-weight: 900; }
.property-standard h3 { margin: 52px 0 8px; font-size: 20px; }
.property-standard p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.property-rule { display: grid; grid-template-columns: 180px 1fr; gap: 24px; margin-top: 36px; padding: 24px; color: var(--white); background: var(--ink); border-radius: 14px; }
.property-rule p { margin: 0; color: rgba(255,255,255,0.68); }

.lifecycle-section { padding-block: 110px; color: var(--white); background: var(--forest-2); }
.lifecycle-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: start; }
.lifecycle-grid > div > p:last-child { color: rgba(255,255,255,0.58); }
.lifecycle-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.15); }
.lifecycle-list li { display: grid; grid-template-columns: 72px 1fr; column-gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.lifecycle-list span { grid-row: 1 / 3; color: #f4a47f; font-size: 11px; font-weight: 900; letter-spacing: 0.1em; }
.lifecycle-list strong { font-size: 16px; }
.lifecycle-list small { color: rgba(255,255,255,0.45); }

.closing-section { display: flex; justify-content: space-between; gap: 50px; align-items: end; padding-block: 120px; }
.closing-section h2 { margin-bottom: 0; }

.site-footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; padding: 28px max(20px, calc((100vw - 1180px) / 2)); border-top: 1px solid var(--line); background: var(--paper-2); }
.site-footer p, .site-footer > a { margin: 0; color: var(--ink-soft); font-size: 12px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  max-width: min(420px, calc(100vw - 30px));
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: 200ms ease;
  font-size: 13px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: inline-flex; justify-self: end; padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; background: transparent; font-weight: 800; }
  .site-nav { position: absolute; top: 68px; left: 20px; right: 20px; display: none; flex-direction: column; gap: 0; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .header-cta { justify-self: end; }
  .hero { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { max-width: 760px; }
  .hero-board { max-width: 650px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .calculator-layout { grid-template-columns: 1fr; }
  .result-card { min-height: auto; }
  .result-sticky { position: static; }
  .expert-process { grid-template-columns: repeat(2, 1fr); }
  .expert-process article { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .property-standard { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); --radius-lg: 22px; }
  .site-header { min-height: 66px; padding: 10px 14px; gap: 10px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { min-height: auto; padding-block: 62px; }
  .hero h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-list { display: grid; gap: 8px; }
  .hero-board { padding: 20px; transform: none; }
  .board-verdict strong { font-size: 24px; }
  .proof-strip { grid-template-columns: 1fr; padding-inline: 14px; }
  .proof-strip > div, .proof-strip > div:first-child { min-height: 96px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .intro-grid, .heading-row, .reputation-layout, .expert-intro, .expert-cta-card, .lifecycle-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-grid, .reputation-section, .property-section { padding-block: 82px; }
  .sticky-heading { position: static; }
  .principle-card:nth-child(2) { transform: none; }
  .diagnosis-section, .expert-section, .lifecycle-section { padding-block: 78px; }
  .heading-row { margin-bottom: 30px; }
  .heading-row > p { margin-left: 0; }
  .form-section, .gate-fieldset, .result-card { padding: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .result-numbers { grid-template-columns: 1fr 1fr; }
  .result-actions { flex-direction: column; }
  .review-overview { grid-template-columns: 1fr 1fr; }
  .expert-process { grid-template-columns: 1fr; }
  .expert-process article { min-height: auto; }
  .expert-process h3 { margin-top: 24px; }
  .compact-form { grid-template-columns: 1fr; }
  .compact-form label:last-of-type { grid-column: auto; }
  .property-standard { grid-template-columns: 1fr; }
  .property-standard article:nth-child(even) { margin-top: 0; }
  .property-rule { grid-template-columns: 1fr; }
  .closing-section { flex-direction: column; align-items: flex-start; padding-block: 84px; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; }
}

@media print {
  .site-header, .hero, .proof-strip, .intro-grid, .reputation-section, .expert-section, .property-section, .lifecycle-section, .closing-section, .site-footer, .calculator-card, .result-actions { display: none !important; }
  body, .diagnosis-section { color: #111; background: #fff; }
  .diagnosis-section { padding: 0; }
  .calculator-layout { display: block; }
  .result-card { min-height: 0; color: #111; background: #fff; border: 0; }
  .result-heading small, .result-summary, .calculation-note, .result-numbers small, .channel-box span { color: #555; }
  .result-numbers { border-color: #bbb; }
  .channel-box > div { background: #eee; }
  .status-chip { border: 1px solid #999; color: #111; background: #eee; }
}
