:root {
  color-scheme: light;
  --bg: #faf9f6;
  --text: #111111;
  --muted: #626260;
  --border: #dedbd6;
  --accent: #ff5600;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

.topbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand,
nav a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.brand::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--accent);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 168px);
}

.eyebrow,
.card-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--text);
  border-radius: 4px;
  padding: 0 16px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--text);
}

.button:hover {
  transform: scale(1.06);
}

.button.primary:hover {
  color: var(--text);
  background: var(--white);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--text);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.info-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

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

  h1 {
    font-size: 54px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 425px) {
  .topbar,
  main {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: 40px;
  }
}
