:root {
  --bg: #11100d;
  --panel: #1d1a14;
  --panel-light: #282318;
  --text: #f8f0d5;
  --muted: #c7b98a;
  --accent: #f5c84b;
  --accent-dark: #8b6819;
  --line: rgba(248, 240, 213, 0.14);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 200, 75, 0.22), transparent 34rem),
    linear-gradient(135deg, #11100d 0%, #211b11 55%, #0c0b09 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-weight: 650;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: 72px 0 88px;
}

.eyebrow,
.tag,
.updated {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.updated {
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 900px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent);
  color: #1a1406;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 26px;
}

.cards {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}

.card,
.support-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 70px var(--shadow);
}

.feature-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card p,
.content-page p,
.split p {
  color: var(--muted);
}

.card-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.content-page {
  max-width: 820px;
  padding: 70px 0 90px;
}

.content-page h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  max-width: 760px;
}

.content-page h2 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-top: 34px;
}

.support-box {
  margin: 26px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 32px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 72px;
  }

  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1120px);
  }
}
