:root {
  --bg: #f5f7f1;
  --paper: #ffffff;
  --ink: #172118;
  --muted: #637266;
  --soft: #f2f6ec;
  --line: rgba(36, 58, 39, 0.12);
  --green: #3f8f61;
  --blue: #356da8;
  --sun: #f5bd3f;
  --coral: #df7357;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 9%, rgba(245, 189, 63, 0.24), transparent 24%),
    radial-gradient(circle at 10% 0%, rgba(53, 109, 168, 0.16), transparent 30%),
    linear-gradient(135deg, #eef6ec 0%, #f6f3e9 52%, #edf5fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Noto Sans SC", sans-serif;
}

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

.site-header {
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto;
  padding: 20px clamp(16px, 2.4vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

nav {
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: wrap;
}

nav a {
  padding: 9px 12px;
  border-radius: 10px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

main {
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto 44px;
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 430px);
  align-items: center;
  gap: 48px;
  padding: 36px clamp(18px, 3vw, 48px) 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-line {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 850;
  line-height: 1.05;
}

.hero-copy > p:not(.eyebrow):not(.hero-line) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.status-strip {
  width: min(620px, 100%);
  margin-top: 22px;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.status-strip span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.status-strip strong {
  color: var(--ink);
}

.primary-link,
.secondary-link {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 850;
}

.primary-link {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #244d38);
  box-shadow: 0 14px 32px rgba(23, 33, 24, 0.18);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

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

.hero-panel div,
.section,
.work-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(49, 79, 58, 0.1);
}

.hero-panel div {
  padding: 22px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.hero-panel div::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--sun), var(--blue));
}

.hero-panel span,
.work-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  margin-top: 20px;
  padding: clamp(24px, 3vw, 42px);
  border-radius: 22px;
}

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

h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.work-card {
  min-height: 230px;
  padding: 18px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.work-card.featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 235, 0.82)),
    radial-gradient(circle at 12% 20%, rgba(245, 189, 63, 0.25), transparent 26%);
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(49, 79, 58, 0.14);
}

.work-card.muted {
  grid-template-columns: 1fr;
}

.idea-card {
  grid-template-columns: 1fr;
  align-content: start;
}

.work-preview {
  min-height: 170px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(63, 143, 97, 0.2), rgba(53, 109, 168, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 16px);
  overflow: hidden;
}

.work-preview img {
  width: min(150px, 80%);
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(28, 45, 31, 0.2));
}

.work-preview.empty {
  min-height: 120px;
  color: var(--green);
  font-size: 3rem;
  font-weight: 300;
}

.work-preview.compact {
  min-height: 116px;
  color: rgba(23, 33, 24, 0.76);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: #234631;
  background: rgba(63, 143, 97, 0.12);
  border: 1px solid rgba(63, 143, 97, 0.16);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.work-card p,
.section > p,
.note-list p,
.lab-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.lab-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(23, 33, 24, 0.94), rgba(28, 61, 45, 0.9)),
    radial-gradient(circle at 85% 18%, rgba(245, 189, 63, 0.3), transparent 26%);
  color: #f5f8ef;
}

.news-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(242, 246, 236, 0.82));
}

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

.news-card,
.news-empty {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.news-card-feature {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 235, 0.86)),
    radial-gradient(circle at 90% 12%, rgba(245, 189, 63, 0.22), transparent 30%);
}

.news-card-compact {
  min-height: 0;
  padding: 16px;
}

.news-grid .news-card:nth-child(7):last-child {
  grid-column: span 2;
}

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

.news-status {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.news-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 950;
}

.news-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-source,
.news-time {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(63, 143, 97, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.news-card .news-title {
  font-size: 1.25rem;
  line-height: 1.2;
}

.news-card-feature .news-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.news-card-compact .news-title {
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.22;
}

.news-card-compact .news-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-title a:hover,
.news-link:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-summary,
.news-why {
  color: var(--muted);
  line-height: 1.7;
}

.news-why {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.news-why strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.news-link {
  display: inline-flex;
  margin-top: 12px;
  color: #244d38;
  font-weight: 900;
  font-size: 0.9rem;
}

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

.lab-section .eyebrow {
  color: #96d78c;
}

.hot-focus-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 251, 0.82)),
    radial-gradient(circle at 90% 10%, rgba(53, 109, 168, 0.18), transparent 30%);
}

.focus-meta {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(180px, 0.5fr) minmax(280px, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.focus-meta span,
.focus-card-top span,
.topic-panel span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.focus-meta strong {
  font-size: 1.2rem;
}

.focus-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: 16px;
  align-items: start;
}

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

.focus-card,
.topic-panel > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.focus-card {
  min-height: 230px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.focus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(49, 79, 58, 0.12);
}

.featured-focus {
  grid-column: 1 / -1;
  min-height: 250px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 247, 255, 0.88)),
    radial-gradient(circle at 92% 10%, rgba(245, 189, 63, 0.25), transparent 28%);
}

.focus-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.focus-card-top b {
  flex: none;
  color: var(--blue);
  font-size: 0.78rem;
}

.focus-card h3 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.featured-focus h3 {
  max-width: 920px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.focus-card h3 a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.focus-card p,
.topic-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.focus-angle {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

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

.topic-panel > div {
  padding: 18px;
}

.topic-panel ul {
  margin: 14px 0 0;
  padding-left: 1.1rem;
}

.topic-panel li + li {
  margin-top: 10px;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.source-row b {
  padding: 8px 10px;
  border-radius: 999px;
  color: #17331f;
  background: rgba(63, 143, 97, 0.12);
}

.lab-grid {
  display: grid;
  gap: 12px;
}

.lab-grid article {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lab-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f8d66b;
  font-weight: 900;
}

.lab-grid h3 {
  margin-bottom: 8px;
}

.lab-grid p {
  margin-bottom: 0;
  color: rgba(245, 248, 239, 0.74);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

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

.note-list p {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(245, 247, 241, 0.72);
}

.note-list strong {
  color: var(--ink);
}

.timeline-section {
  background: rgba(255, 255, 255, 0.72);
}

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

.timeline article,
.steps article,
.roadmap-list p {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(245, 247, 241, 0.78);
}

.timeline article {
  padding: 18px;
}

.timeline time {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin-bottom: 8px;
}

.timeline p,
.learning-section p,
.roadmap-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.learning-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

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

.steps article {
  min-height: 160px;
  padding: 16px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.toolbox-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 245, 251, 0.76));
}

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

.toolbox span {
  padding: 11px 13px;
  border-radius: 12px;
  color: #17331f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  font-weight: 850;
}

.fund-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 245, 251, 0.76));
}

.fund-hero {
  min-height: 430px;
  padding-bottom: 24px;
}

.fund-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: start;
}

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

.fund-form,
.fund-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

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

.fund-form-wide {
  grid-template-columns: minmax(320px, 1.4fr) repeat(2, minmax(180px, 0.6fr));
}

.fund-form-wide .wide-field:first-child {
  grid-column: 1 / -1;
}

.fund-form-wide .wide-field:last-of-type {
  grid-column: 1 / -1;
}

.fund-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.fund-form label span,
.fund-panel-head span,
.fund-report span,
.fund-item b {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fund-form input,
.fund-form select,
.fund-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(245, 247, 241, 0.72);
  font: inherit;
  font-weight: 750;
}

.fund-form textarea {
  min-height: 116px;
  resize: vertical;
  line-height: 1.55;
}

.fund-form input:focus,
.fund-form select:focus,
.fund-form textarea:focus {
  outline: 2px solid rgba(53, 109, 168, 0.22);
  border-color: rgba(53, 109, 168, 0.48);
}

.wide-field,
.fund-actions,
.fund-status {
  grid-column: 1 / -1;
}

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

.fund-actions button,
.fund-panel-head button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.fund-actions button:disabled,
.fund-panel-head button:disabled,
.fund-form input:disabled,
.fund-form select:disabled,
.fund-form textarea:disabled {
  cursor: wait;
  opacity: 0.62;
}

.fund-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fund-status.is-error {
  color: #9c3f2e;
}

.fund-status.is-ok {
  color: var(--green);
}

.fund-panel {
  padding: 18px;
}

.fund-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.fund-panel-head strong {
  display: block;
  margin-top: 6px;
  font-size: 1.45rem;
}

.fund-panel-head button {
  min-height: 42px;
  padding: 10px 13px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 850;
}

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

.fund-panel-wide .fund-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.fund-list > p,
.fund-report p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.fund-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 247, 241, 0.72);
}

.fund-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.fund-item-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fund-item h3 {
  margin: 4px 0 8px;
  font-size: 1.08rem;
}

.fund-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fund-chip {
  padding: 6px 9px;
  border-radius: 999px;
  color: #183c28;
  background: rgba(63, 143, 97, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.fund-item-actions button {
  min-height: 30px;
  padding: 5px 9px;
  color: #9c3f2e;
  border: 1px solid rgba(156, 63, 46, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.fund-item-actions button:hover {
  background: rgba(223, 115, 87, 0.12);
}

.fund-report {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(23, 33, 24, 0.92);
  color: #fff;
}

.fund-report span {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 248, 239, 0.72);
}

.fund-report p {
  color: rgba(245, 248, 239, 0.82);
}

.fund-report ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(245, 248, 239, 0.86);
  line-height: 1.65;
}

.fund-warning-box {
  margin-top: 12px;
  color: rgba(245, 248, 239, 0.76);
  font-size: 0.9rem;
}

.fund-warning-box summary {
  cursor: pointer;
  font-weight: 850;
}

.fund-rating-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.fund-rating-item {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(110px, auto) minmax(110px, auto);
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 248, 239, 0.12);
}

.fund-rating-item strong,
.fund-rating-item span,
.fund-rating-item b,
.fund-rating-item em,
.fund-rating-item small {
  display: block;
  min-width: 0;
}

.fund-rating-item strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.98rem;
}

.fund-rating-item span,
.fund-rating-item small {
  color: rgba(245, 248, 239, 0.68);
  font-size: 0.82rem;
}

.fund-rating-item b {
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.fund-rating-item em {
  color: rgba(245, 248, 239, 0.9);
  font-style: normal;
  font-weight: 850;
}

.fund-rating-item small {
  grid-column: 1 / -1;
}

.fund-detail-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.fund-detail-cell {
  min-height: 78px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.fund-detail-cell span,
.fund-detail-cell small {
  color: rgba(245, 248, 239, 0.62);
  font-size: 0.78rem;
}

.fund-detail-cell strong {
  margin: 5px 0 3px;
  color: #fff;
  font-size: 1rem;
}

.fund-detail-text {
  grid-column: 1 / -1;
  padding: 10px 0 0;
}

.fund-detail-text b {
  color: rgba(245, 248, 239, 0.68);
  font-size: 0.78rem;
}

.fund-detail-text p {
  margin: 4px 0 0;
  color: rgba(245, 248, 239, 0.86);
  line-height: 1.55;
}

.rating-strong_trend b,
.rating-trend_improving b {
  background: rgba(63, 143, 97, 0.72);
}

.rating-range_repair b {
  background: rgba(53, 109, 168, 0.72);
}

.rating-overheated b {
  background: rgba(245, 189, 63, 0.72);
  color: #172118;
}

.rating-weakening b,
.rating-broken_down b {
  background: rgba(223, 115, 87, 0.72);
}

.rating-insufficient_data b {
  background: rgba(245, 248, 239, 0.18);
}

.sim-hero {
  min-height: 420px;
  padding-bottom: 24px;
}

.sim-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 243, 233, 0.74));
}

.sim-stat-grid,
.sim-layout {
  display: grid;
  gap: 16px;
}

.sim-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.sim-stat {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.sim-stat span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.sim-stat strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}

.sim-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.sim-panel {
  min-height: 260px;
}

.sim-wide-panel {
  margin-top: 16px;
}

.sim-holdings,
.sim-orders {
  display: grid;
  gap: 10px;
}

.sim-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(136px, auto);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 247, 241, 0.72);
}

.sim-row b {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.sim-row h3 {
  margin: 5px 0 7px;
  font-size: 1.04rem;
}

.sim-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.sim-row-metric {
  text-align: right;
}

.sim-row-metric strong,
.sim-row-metric span {
  display: block;
}

.sim-row-metric strong {
  font-size: 1.08rem;
}

.sim-row-metric span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.sim-row-metric.is-positive strong {
  color: var(--green);
}

.sim-row-metric.is-negative strong {
  color: #9c3f2e;
}

.sim-chart {
  min-height: 260px;
  display: grid;
  gap: 10px;
  align-items: end;
}

.sim-chart svg {
  width: 100%;
  min-height: 220px;
  color: var(--blue);
  border-radius: 14px;
  background:
    linear-gradient(rgba(53, 109, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 109, 168, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.62);
  background-size: 100% 25%, 12.5% 100%, auto;
}

.sim-chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.sim-report li + li {
  margin-top: 10px;
}

.roadmap-section {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 28px;
}

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

.roadmap-list p {
  padding: 16px;
}

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

.about {
  max-width: 760px;
}

.site-footer {
  width: min(1440px, calc(100% - 24px));
  margin: -18px auto 36px;
  padding: 0 clamp(18px, 3vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
}

.site-footer img {
  display: block;
  flex: none;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.home-index {
  background:
    linear-gradient(90deg, rgba(23, 33, 24, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 33, 24, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 88% 10%, rgba(245, 189, 63, 0.2), transparent 24%),
    linear-gradient(135deg, #f8faf4 0%, #eef5ef 52%, #f6f1e5 100%);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.home-index main {
  margin-bottom: 28px;
}

.home-hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 28px;
  align-items: end;
  padding: 58px clamp(18px, 3vw, 48px) 30px;
}

.home-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.82;
}

.home-subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  line-height: 1.75;
}

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

.home-status {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(49, 79, 58, 0.1);
}

.home-status span,
.directory-group .group-mark,
.home-updated {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.home-status strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.home-status p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-section {
  margin: 18px 0;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(49, 79, 58, 0.08);
}

.home-section-head {
  max-width: 860px;
  margin-bottom: 24px;
}

.home-section-head h2 {
  max-width: 860px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 0.96;
}

.home-section-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-updated {
  margin-top: 14px;
  margin-bottom: 0;
}

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

.directory-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.directory-group h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.directory-group p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.directory-links {
  display: grid;
  gap: 8px;
}

.directory-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 251, 244, 0.8);
}

.directory-links a:hover {
  border-color: rgba(63, 143, 97, 0.34);
  transform: translateY(-1px);
}

.directory-links strong {
  font-size: 1rem;
}

.directory-links span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: right;
}

.home-focus {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 248, 235, 0.82)),
    radial-gradient(circle at 92% 12%, rgba(53, 109, 168, 0.13), transparent 28%);
}

.home-focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
}

.home-focus .home-section-head h2 {
  max-width: 980px;
  font-size: clamp(1.75rem, 3.2vw, 3.35rem);
  line-height: 1.04;
}

.home-focus-feed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-focus-feed .focus-card:nth-child(n+3),
.home-news-grid .news-card:nth-child(n+4) {
  display: none;
}

.home-focus-feed .featured-focus {
  grid-column: auto;
}

.home-focus-feed .focus-card > p:not(.focus-angle) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-focus-feed .focus-angle {
  display: none;
}

.home-topic-panel {
  min-height: auto;
}

.home-topic-panel li:nth-child(n+4) {
  display: none;
}

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

.home-news-grid .news-card-feature {
  grid-column: span 1;
}

.home-news-grid .news-card-feature .news-title,
.home-news-grid .news-card .news-title {
  font-size: 1.18rem;
  line-height: 1.22;
}

.home-news-grid .news-why {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 16px, 1440px);
    padding-inline: 14px;
  }

  main {
    width: min(100% - 16px, 1440px);
  }

  .site-footer {
    width: min(100% - 16px, 1440px);
    margin-bottom: 28px;
    padding-inline: 22px;
  }

  .hero,
  .work-grid,
  .split,
  .lab-section,
  .learning-section,
  .roadmap-section,
  .fund-layout,
  .sim-layout,
  .sim-stat-grid,
  .focus-meta,
  .focus-layout,
  .work-card {
    grid-template-columns: 1fr;
  }

  .timeline,
  .steps,
  .focus-feed,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-feature,
  .news-grid .news-card:nth-child(7):last-child {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    gap: 26px;
    padding: 24px 14px 42px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .section {
    padding: 22px;
  }

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

  .fund-rating-item {
    grid-template-columns: 1fr;
  }

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

  .sim-row-metric {
    text-align: left;
  }

  .home-hero,
  .directory-grid,
  .directory-group,
  .home-focus-layout,
  .home-focus-feed,
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding: 28px 14px 16px;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .home-section {
    padding: 18px;
  }

  .home-focus-feed .featured-focus {
    grid-column: auto;
  }

  .directory-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .directory-links span {
    text-align: left;
  }
}
