:root {
  color-scheme: light;
  --accent: #a3ff12;
  --ink: #111810;
  --muted: #4a6631;
  --paper: #f8faf7;
  --line: #dce5d4;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.wrap {
  margin: 0 auto;
  max-width: 980px;
  padding: 48px 20px 72px;
  width: 100%;
}

.article-wrap {
  max-width: 900px;
  padding-top: 42px;
}

.top {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 56px;
}

.article-wrap .top {
  margin-bottom: 42px;
}

.brand {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.article-wrap .brand {
  font-size: 20px;
}

.back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.hero {
  max-width: 780px;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 8vw, 82px);
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 14px 0 22px;
  overflow-wrap: break-word;
}

article h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.answer {
  background: white;
  border: 1px solid var(--line);
  border-left: 8px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(8, 39, 24, 0.06);
  color: #243220;
  font-size: 20px;
  line-height: 1.6;
  max-width: 760px;
  overflow-wrap: break-word;
  padding: 24px;
}

article .answer {
  background: #fbfff4;
  box-shadow: none;
  font-size: 19px;
  line-height: 1.65;
  margin: 0 0 34px;
  max-width: none;
  padding: 22px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 38px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(8, 39, 24, 0.05);
  color: var(--ink);
  min-height: 230px;
  max-width: 100%;
  overflow-wrap: break-word;
  padding: 24px;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tag {
  color: var(--muted);
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h2 {
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 14px;
}

article h2 {
  margin-top: 34px;
}

h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}

p,
li {
  color: #34402f;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.card p {
  color: #3a4637;
}

ul {
  padding-left: 20px;
}

a {
  color: #274c16;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(8, 39, 24, 0.06);
  max-width: 100%;
  padding: clamp(24px, 5vw, 54px);
}

.meta {
  color: #6b7567;
  font-size: 14px;
  margin-bottom: 28px;
}

.note {
  color: #5e6a5b;
  font-size: 13px;
  margin-top: 36px;
  max-width: 760px;
}

.cta {
  background: #111810;
  border-radius: 18px;
  color: white;
  margin-top: 38px;
  padding: 22px;
}

.cta p {
  color: #eaf2e7;
}

.cta a {
  background: var(--accent);
  border-radius: 999px;
  color: #000;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 8px;
  padding: 12px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .wrap {
    margin-left: 0;
    margin-right: 0;
    max-width: 390px;
    padding: 36px 20px 56px;
  }

  .top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  h1,
  article h1 {
    font-size: 34px;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }

  .answer,
  article .answer {
    font-size: 18px;
    padding: 22px 20px;
  }

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

  .card {
    min-height: 0;
  }

  article {
    padding: 26px 20px;
  }
}
