:root {
  color-scheme: light;
  --ink: #111317;
  --muted: #5f6670;
  --paper: #f5f7f8;
  --panel: #ffffff;
  --line: #dce2e6;
  --green: #008f72;
  --red: #d72638;
  --teal: #23b5b5;
  --shadow: 0 18px 45px rgba(17, 19, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.12)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(245, 247, 248, 0), var(--paper));
}

.hero__content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  color: #ffffff;
  padding: 70px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.65rem, 8vw, 6.6rem);
  line-height: 0.96;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: normal;
}

.button--primary {
  background: var(--green);
  color: #ffffff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.info {
  padding: 42px 0 72px;
  background: var(--paper);
}

.info__inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .hero {
    min-height: 74vh;
    background-position: 58% center;
  }

  .hero__content {
    padding: 52px 0 76px;
  }

  .lead {
    font-size: 1rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

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

  .panel {
    min-height: 0;
  }
}
