:root {
  color: #141414;
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(214, 162, 43, 0.14), transparent 28rem),
    #ffffff;
}

a {
  color: #9a6500;
  font-weight: 800;
}

.shell {
  margin: 0 auto;
  max-width: 920px;
  padding: 32px 20px 64px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 56px;
}

.brand {
  color: #141414;
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.links a {
  color: #706a60;
  font-size: 14px;
  text-decoration: none;
}

.hero {
  margin-bottom: 34px;
}

.eyebrow {
  color: #b27a11;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  color: #c89622;
  font-size: clamp(44px, 8vw, 86px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 12px 0 18px;
}

h2 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 14px;
}

h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

p {
  color: #5f584d;
  font-size: 17px;
  margin: 0 0 14px;
}

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

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e4ded2;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 22px;
}

.list {
  color: #5f584d;
  font-size: 16px;
  margin: 0;
  padding-left: 20px;
}

.list li {
  margin: 8px 0;
}

.button {
  align-items: center;
  background: #111111;
  border-radius: 999px;
  color: #f4d46b;
  display: inline-flex;
  font-weight: 950;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  border-bottom: 1px solid #e4ded2;
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: #141414;
  font-size: 14px;
}

.table td {
  color: #5f584d;
}

.footer {
  color: #9a9286;
  font-size: 14px;
  margin-top: 44px;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

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