:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --bg-sky: #e8f0f8;
  --surface: #ffffff;
  --text: #1e1c18;
  --muted: #5c574f;
  --chick: #f5a623;
  --chick-dark: #d4880a;
  --chick-soft: rgba(245, 166, 35, 0.18);
  --tool: #3a6ea5;
  --tool-soft: rgba(58, 110, 165, 0.12);
  --road: #2d2a26;
  --road-line: #f0e040;
  --border: rgba(30, 28, 24, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --font-display:
    "Arial Black",
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg-sky) 0%, transparent 35%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48px,
      rgba(240, 224, 64, 0.15) 48px,
      rgba(240, 224, 64, 0.15) 52px
    ),
    var(--bg);
}

.backdrop__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--road) 0,
    var(--road) 24px,
    var(--road-line) 24px,
    var(--road-line) 48px
  );
}

.page {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 36px;
}

.hero__sign {
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 3px solid var(--road);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--chick-soft);
  position: relative;
}

.hero__sign::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 28px;
  width: 12px;
  height: 14px;
  background: var(--tool);
  border-radius: 2px 2px 0 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--tool);
  border-radius: 3px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-title .chick {
  color: var(--chick-dark);
}

.brand-title .tool {
  color: var(--tool);
}

.brand-title .road {
  display: block;
  margin-top: 6px;
  font-size: 0.55em;
  color: var(--road);
  letter-spacing: 0.12em;
}

h1 {
  margin: 18px 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 14px;
  max-width: 52ch;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.updated {
  margin-top: 16px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--tool);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 20px 16px;
  background: var(--surface);
  border: 2px solid var(--road);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-top: 4px solid var(--chick);
}

.highlights li:nth-child(2) {
  border-top: 4px solid var(--tool);
}

.highlights li:nth-child(3) {
  border-top: 4px solid var(--road-line);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--road);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--tool);
  border-radius: var(--radius-sm);
}

.card:nth-child(even) {
  border-left-color: var(--chick);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tool);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  border-left: none;
  border-top: 4px solid var(--road);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-sky) 100%);
}

a {
  color: var(--tool);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--chick-soft);
}

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

.footer {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--road);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--surface);
}

.footer strong .chick {
  color: var(--chick);
}

.footer strong .tool {
  color: #7eb8e8;
}

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
  }

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

  .card--wide {
    grid-column: auto;
  }

  .hero__sign {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
    width: min(100% - 24px, 940px);
  }
}
