:root {
  --bg: #f4eee7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --ink: #1f2433;
  --ink-soft: #5f6a7e;
  --accent: #ff5f0a;
  --accent-deep: #c94a04;
  --line: rgba(31, 36, 51, 0.1);
  --hero: #120b08;
  --hero-soft: #24120d;
  --hero-ink: #fff7f1;
  --max: 1080px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 60px rgba(18, 11, 8, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 95, 10, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 100%);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 242, 0.82);
  border-bottom: 1px solid rgba(31, 36, 51, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.nav a:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 95, 10, 0.35);
}

.button--accent {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
}

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

.hero__panel {
  background:
    radial-gradient(circle at top right, rgba(255, 95, 10, 0.28), transparent 30%),
    linear-gradient(135deg, var(--hero) 0%, var(--hero-soft) 100%);
  color: var(--hero-ink);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 247, 241, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(18px, 2vw, 21px);
  color: rgba(255, 247, 241, 0.78);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__actions .button--ghost {
  color: var(--hero-ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(25, 17, 12, 0.07);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.card p,
.lede,
.body-copy p,
.body-copy li {
  color: var(--ink-soft);
}

.section {
  padding: 18px 0 42px;
}

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

.metric strong {
  font-size: 26px;
  letter-spacing: -0.05em;
}

.metric span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.page-hero {
  padding: 42px 0 16px;
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  margin-bottom: 8px;
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.body-copy {
  display: grid;
  gap: 20px;
}

.body-copy section {
  background: var(--surface-strong);
  border: 1px solid rgba(31, 36, 51, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.body-copy h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.body-copy ul {
  margin: 0;
  padding-left: 18px;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 95, 10, 0.06);
  border: 1px solid rgba(255, 95, 10, 0.15);
}

.site-footer {
  padding: 20px 0 42px;
  color: var(--ink-soft);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(31, 36, 51, 0.08);
  padding-top: 20px;
}

@media (max-width: 860px) {
  .grid--three,
  .grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 64px;
  }

  .nav {
    gap: 8px;
  }

  .nav a,
  .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero__panel,
  .card,
  .body-copy section {
    padding: 20px;
  }
}
