* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #475569;
  --quiet: #64748b;
  --line: #dbe5e5;
  --paper: #ffffff;
  --soft: #f6faf8;
  --soft-2: #fff7ed;
  --green: #047857;
  --green-dark: #064e3b;
  --blue: #1d4ed8;
  --amber: #b45309;
  --shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(4, 120, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 52%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  letter-spacing: 0;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-dark);
}

.wrap {
  width: min(100% - 44px, 1040px);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(2, 44, 34, 0.96), rgba(6, 78, 59, 0.92)),
    radial-gradient(circle at 80% 24%, rgba(250, 204, 21, 0.22), transparent 30%);
  padding: 58px 0 50px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #047857, #f59e0b, #1d4ed8);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}

.review {
  margin: 0 0 14px;
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: inherit;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.04;
  overflow-wrap: break-word;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.18;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.26;
}

.lede {
  max-width: 780px;
  margin: 18px 0 0;
  color: #e0f2ec;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: #facc15;
  color: #16332c;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.hero-panel h2 {
  font-size: 20px;
}

.hero-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.hero-panel li {
  color: #eafaf4;
  margin: 8px 0;
}

main {
  background: var(--paper);
}

.section {
  padding: 46px 0;
}

.section .wrap {
  max-width: 920px;
}

.section.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

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

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

li {
  margin: 8px 0;
}

.answer-box {
  position: relative;
  margin: 16px 0 18px;
  border: 1px solid #a7f3d0;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(4, 120, 87, 0.08);
}

.answer-box p {
  margin: 0;
  color: #153f36;
  font-size: 18px;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--green);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

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

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 32%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

td {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

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

.source-list a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: #174a43;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.link-grid {
  columns: 2;
  column-gap: 34px;
}

.link-grid a {
  display: block;
  break-inside: avoid;
  margin: 9px 0;
  color: var(--green);
  font-weight: 750;
}

.trend-list {
  padding-left: 20px;
}

.trend-list li {
  margin: 10px 0;
}

.match-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.match-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.match-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.match-card p {
  margin: 4px 0 0;
}

.match-card span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-align: right;
}

.note {
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--soft-2);
  color: #7c2d12;
  padding: 14px 16px;
}

details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 10px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #a7f3d0;
  border-radius: 7px;
  background: #ecfdf5;
  color: #065f46;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.foot {
  background: #06281f;
  color: #d1fae5;
  padding: 32px 0;
}

.foot .wrap {
  color: #d1fae5;
}

@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 32px, 1040px);
  }

  .hero {
    padding: 42px 0 38px;
  }

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

  h1 {
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.08;
  }

  .section {
    padding: 36px 0;
  }

  .link-grid {
    columns: 1;
  }

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

  .match-card span {
    text-align: left;
  }
}
