:root {
  --ink: #0b0d0c;
  --paper: #f4f3ed;
  --lime: #c8ff47;
  --muted: #697069;
  --line: rgba(11,13,12,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { width: min(1180px, 88vw); margin: 0 auto; }
.site-header {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 800; }
.brand b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); }
.site-header nav { display: flex; align-items: center; gap: 25px; font-size: 12px; font-weight: 700; }
.header-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
  border-radius: 2px; color: var(--ink); background: var(--lime); font-size: 12px; font-weight: 800;
}
.hero { padding: 110px 0 85px; color: white; background: var(--ink); }
.kicker { color: var(--lime); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
h1, h2, h3 { letter-spacing: -.05em; }
h1 { max-width: 920px; margin: 20px 0; font-size: clamp(52px, 8vw, 102px); line-height: .96; }
h1 em, h2 em { color: var(--lime); font-family: Newsreader, Georgia, serif; font-weight: 500; }
.hero p { max-width: 720px; color: #aeb5ae; font-size: 16px; line-height: 1.8; }
.section { padding: 100px 0; }
.section-heading { display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; align-items: end; margin-bottom: 50px; }
h2 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.02; }
.section-heading p, .intro { color: var(--muted); line-height: 1.8; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  display: flex; min-height: 360px; padding: 30px; flex-direction: column; border: 1px solid var(--line);
  background: #fff; transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-5px); border-color: #97bc37; }
.card small { color: #798079; text-transform: uppercase; letter-spacing: .1em; }
.card h2, .card h3 { margin: 55px 0 16px; font-size: 29px; line-height: 1.12; }
.card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.card .link { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.card.featured { color: var(--ink); background: var(--lime); }
.topic-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.topic-list a { padding: 18px 20px; border: 1px solid var(--line); background: white; font-size: 13px; font-weight: 700; }
.case-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 48px; background: #303530; }
.case-facts div { padding: 22px; background: #171a18; }
.case-facts small { display: block; color: #7f877f; margin-bottom: 8px; }
.case-body { display: grid; grid-template-columns: .8fr 1.6fr; gap: 80px; }
.case-body aside { position: sticky; top: 30px; align-self: start; }
.case-body article { font-size: 16px; line-height: 1.85; }
.case-body article h2 { margin: 70px 0 22px; font-size: 43px; }
.case-body article h2:first-child { margin-top: 0; }
.case-body article h3 { margin-top: 32px; font-size: 24px; }
.case-body article ul { padding-left: 20px; }
.notice { padding: 20px; border-left: 3px solid var(--lime); background: #fff; color: var(--muted); font-size: 13px; line-height: 1.7; }
.cta { padding: 90px 0; text-align: center; color: white; background: var(--ink); }
.cta h2 { max-width: 850px; margin: 0 auto 30px; }
footer { display: flex; justify-content: space-between; gap: 25px; padding: 35px 6vw; color: #747b74; background: var(--ink); font-size: 11px; }
@media (max-width: 800px) {
  .site-header nav a:not(.header-cta) { display: none; }
  .section-heading, .case-body { grid-template-columns: 1fr; gap: 35px; }
  .card-grid, .case-facts { grid-template-columns: 1fr 1fr; }
  .case-body aside { position: static; }
}
@media (max-width: 560px) {
  .wrap { width: min(88vw, 560px); }
  .hero { padding: 80px 0 65px; }
  .section { padding: 75px 0; }
  .card-grid, .case-facts, .topic-list { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
