:root {
  --ink: #162018;
  --muted: #5d6b61;
  --paper: #f6f7f1;
  --white: #ffffff;
  --line: #d9ded6;
  --green: #247a4d;
  --yellow: #f4ca45;
  --red: #c94637;
}

* {
  box-sizing: border-box;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
  min-height: 76vh;
  padding: 64px clamp(20px, 6vw, 88px) 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 32, 24, 0.94), rgba(36, 122, 77, 0.82)),
    radial-gradient(circle at 74% 20%, rgba(244, 202, 69, 0.8), transparent 18%),
    linear-gradient(45deg, var(--red), var(--green));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(2.9rem, 6.8vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: var(--yellow);
  color: var(--ink);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.note {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.brief {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.brief-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.brief-header span {
  color: var(--muted);
}

.brief ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 22px 26px 26px 42px;
  line-height: 1.42;
}

.band {
  padding: 42px clamp(20px, 6vw, 88px) 64px;
}

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

article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

article h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

@media (max-width: 880px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding-top: 44px;
  }
}

