:root {
  color-scheme: light;
  --bg: #f7f1ea;
  --surface: #fffaf4;
  --surface-strong: #fff1e3;
  --border: rgba(112, 67, 31, 0.14);
  --text: #20150d;
  --text-soft: #624734;
  --accent: #ff6500;
  --accent-ink: #ffffff;
  --shadow: 0 16px 34px rgba(87, 45, 10, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top right, rgba(255, 101, 0, 0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 101, 0, 0.05), transparent 28%),
    linear-gradient(180deg, #fdf6ef 0%, var(--bg) 100%);
  color: var(--text);
  font-family:
    "Inter",
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.shell {
  margin: 0 auto;
  max-width: 880px;
  padding: 40px 20px 72px;
}

.hero {
  background: rgba(255, 250, 244, 0.84);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  padding: 32px 28px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lede {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-top: 14px;
  max-width: 60ch;
}

.meta {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-top: 12px;
}

.grid {
  display: grid;
  gap: 18px;
}

.card {
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
}

.card h2 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card p + p,
.card ul,
.card .actions,
.card .inline-note {
  margin-top: 10px;
}

.card p,
.card li {
  max-width: 72ch;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 6px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-links {
  margin-top: 18px;
}

.button {
  background: var(--accent);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--accent-ink);
  display: inline-flex;
  font-weight: 700;
  padding: 12px 18px;
  text-decoration: none;
}

.button.secondary {
  background: var(--surface-strong);
  border-color: var(--border);
  color: var(--text);
}

.inline-note {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .shell {
    padding: 24px 14px 56px;
  }

  .hero,
  .card {
    border-radius: 20px;
    padding: 20px 16px;
  }
}
