* { box-sizing: border-box; }

:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #202326;
  background: #f5f4f1;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(216, 138, 40, 0.10), transparent 32rem),
    #f5f4f1;
}

a { color: inherit; }

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero { padding: 42px 0 28px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #202326;
  color: #e6a34d;
  font-size: 1.45rem;
  font-weight: 850;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-tag {
  margin-top: 2px;
  color: #737a80;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy {
  max-width: 820px;
  margin-top: 104px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d88a28;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #5d646a;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.primary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  background: #202326;
  color: #ffffff;
  text-decoration: none;
  font-weight: 750;
}

.primary:hover { background: #2c3034; }

.status {
  color: #737a80;
  font-size: 0.84rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 86px;
}

.feature-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #dad8d3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.feature-grid span {
  color: #d88a28;
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-grid h2 {
  margin: 34px 0 8px;
  font-size: 1.1rem;
}

.feature-grid p {
  margin: 0;
  color: #737a80;
  font-size: 0.86rem;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 26px 0 34px;
  color: #737a80;
  font-size: 0.75rem;
}

footer a { text-decoration: none; }

@media (max-width: 760px) {
  .hero { padding-top: 26px; }
  .hero-copy { margin-top: 72px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 58px; }
  footer { flex-direction: column; }
}
