@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f3efe8;
  --bg-accent: #efe5d4;
  --text: #1a1712;
  --muted: #5c4f3f;
  --accent: #f15a2a;
  --accent-dark: #c6411c;
  --border: rgba(26, 23, 18, 0.12);
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(26, 23, 18, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fffaf2 0%, var(--bg) 55%, var(--bg-accent) 100%);
  min-height: 100vh;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero {
  padding: 48px;
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(241, 90, 42, 0.35), rgba(241, 90, 42, 0));
  opacity: 0.9;
  transform: rotate(-15deg);
}

.eyebrow {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 16px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.subhead {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(241, 90, 42, 0.3);
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(26, 23, 18, 0.12);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.grid h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.grid p {
  margin: 0;
  color: var(--muted);
}

.cta {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(120deg, #1a1712, #2b2218);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero {
    padding: 36px 28px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
  }
}
