:root {
  --ink: #17211b;
  --muted: #5a665f;
  --line: #d7ded8;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --leaf: #4f7f52;
  --mint: #d9efe0;
  --amber: #f5b24c;
  --rose: #d76b6f;
  --blue: #4d7ea8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: #285f49;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 33, 27, 0.12);
  background: rgba(251, 252, 248, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--leaf);
  font-weight: 700;
}

.play-link:hover {
  text-decoration: none;
  background: #3f6d45;
}

main {
  min-height: 70vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 28px 0 34px;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(23, 33, 27, 0.18);
  border-radius: 8px;
  background: #0d1110;
  box-shadow: 0 18px 38px rgba(23, 33, 27, 0.14);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: #667067;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

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

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

.stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.stat strong {
  display: block;
  font-size: 1.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.band {
  border-top: 1px solid var(--line);
  padding: 52px 0;
}

.band.alt {
  background: #edf5ee;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

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

.card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 9px;
  border-radius: 6px;
  color: #234335;
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.visual-strip img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(23, 33, 27, 0.16);
}

.article {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.article h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.notice {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid #e4c36e;
  border-radius: 8px;
  background: #fff7df;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: #17211b;
  color: #dce8dd;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.footer-inner a,
.site-footer a {
  color: #edf5ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.ad-slot {
  min-height: 86px;
  display: grid;
  place-items: center;
  margin: 28px auto;
  border: 1px dashed #b7c6b9;
  border-radius: 8px;
  color: #657165;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

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

  .hero,
  .visual-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
