:root {
  color-scheme: light;
  --ink: #15201c;
  --muted: #586760;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --surface-2: #edf3ef;
  --line: #d8e1da;
  --green: #0f5a43;
  --green-dark: #0b3428;
  --teal: #5b9b95;
  --gold: #d5a037;
  --red: #bd543f;
  --blue: #385f84;
  --shadow: 0 20px 60px rgba(21, 32, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.72;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 225, 218, 0.9);
  background: rgba(247, 248, 244, 0.93);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 900;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

nav a:hover {
  border-color: var(--line);
  color: var(--green-dark);
  background: #fff;
}

nav a[aria-current="true"] {
  border-color: rgba(15, 90, 67, 0.22);
  color: var(--green-dark);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  min-height: 82vh;
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 76px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(237, 243, 239, 0.86)),
    radial-gradient(circle at 82% 16%, rgba(213, 160, 55, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(15, 90, 67, 0.12), rgba(56, 95, 132, 0.08));
}

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

.hero h1,
.section h2,
.source h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.16;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 5.6vw, 72px);
}

.hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 900;
}

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

.button--secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.58);
}

.hero__visual {
  margin: 0;
}

.hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(15, 90, 67, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero__visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section__head {
  max-width: 820px;
  margin-bottom: 26px;
}

.section h2 {
  max-width: 900px;
  font-size: clamp(28px, 4vw, 46px);
}

.section__head p,
.section p,
.source p {
  color: var(--muted);
}

.verdict,
.metric-grid,
.opportunity-grid,
.risk-grid {
  display: grid;
  gap: 16px;
}

.verdict {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
}

.verdict article,
.metric-grid article,
.opportunity-grid article,
.risk-grid article,
.decision-list li,
.source details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(21, 32, 28, 0.04);
}

.verdict article {
  padding: clamp(20px, 3vw, 30px);
}

.verdict__main {
  background: linear-gradient(135deg, #ffffff, #eef5f1);
}

.label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.label--good {
  background: var(--blue);
}

.label--risk {
  background: var(--red);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

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

.metric-grid article {
  min-height: 190px;
  padding: 22px;
}

.metric-grid span,
.risk-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.metric-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
}

.opportunity {
  background: var(--surface-2);
}

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

.opportunity-grid article {
  padding: 22px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.startup-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.startup-table__head,
.startup-table article {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.25fr;
  gap: 18px;
  padding: 16px 18px;
}

.startup-table__head {
  color: #fff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.startup-table article + article {
  border-top: 1px solid var(--line);
}

.startup-table strong {
  color: var(--green-dark);
  font-size: 18px;
}

.startup-table span {
  color: var(--muted);
}

.risks {
  background: #fbf3ee;
}

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

.risk-grid article {
  padding: 22px;
  border-color: #ead2c8;
}

.risk-grid span {
  color: var(--red);
}

.decision-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: decision;
}

.decision-list li {
  position: relative;
  padding: 22px 22px 22px 62px;
  counter-increment: decision;
}

.decision-list li::before {
  content: counter(decision);
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
}

.source {
  background: #fff;
}

.source details {
  overflow: hidden;
}

.source summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #fff;
  background: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.source__body {
  max-width: 960px;
  padding: clamp(22px, 4vw, 44px);
}

.source__body h2 {
  font-size: clamp(24px, 3.3vw, 38px);
}

.source__body h3 {
  margin-top: 30px;
  font-size: 22px;
}

.source__note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 1040px) {
  .hero,
  .verdict,
  .metric-grid,
  .opportunity-grid,
  .risk-grid,
  .decision-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero__text,
  .verdict__main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .verdict,
  .metric-grid,
  .opportunity-grid,
  .risk-grid,
  .decision-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

  .startup-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .startup-table__head {
    display: none;
  }

  .startup-table article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .decision-list li {
    padding-right: 18px;
  }
}
