:root {
  color-scheme: light;
  --bg: #f7faf4;
  --surface: #ffffff;
  --ink: #102118;
  --muted: #607064;
  --line: #d9e2d8;
  --green: #153f2f;
  --green-soft: #eaf2e8;
  --orange: #f05a28;
  --amber: #f4b44d;
  --shadow: 0 24px 70px rgba(16, 33, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(240, 90, 40, 0.12), transparent 28rem),
    linear-gradient(180deg, #fbfdf8 0%, var(--bg) 44%, #eef5ec 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;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: 86px;
}

.brand span {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav a,
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  padding: 9px 14px;
  text-decoration: none;
}

.nav a:hover,
.button:hover {
  border-color: rgba(21, 63, 47, 0.38);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.hero,
.page {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 24px 72px;
}

.hero-panel {
  background: var(--green);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: white;
  overflow: hidden;
  padding: clamp(28px, 7vw, 72px);
  position: relative;
}

.hero-panel::after {
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(255, 255, 255, 0.12) 35% 36%, transparent 37%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.04) 25px 26px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.eyebrow {
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-panel .eyebrow {
  color: #ffb28e;
}

h1 {
  font-size: clamp(44px, 8vw, 86px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 820px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin: 26px 0 0;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.hero-actions .button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.hero-actions .button.primary {
  background: var(--orange);
  border-color: var(--orange);
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.card,
.document,
.support-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(16, 33, 24, 0.07);
  padding: 24px;
}

.card h2,
.support-card h2 {
  font-size: 24px;
  line-height: 1.05;
  margin: 0 0 10px;
}

.card p,
.support-card p {
  color: var(--muted);
  margin: 0;
}

.page-header {
  margin-bottom: 24px;
  max-width: 860px;
}

.page-header h1 {
  color: var(--ink);
  font-size: clamp(40px, 7vw, 72px);
}

.page-subtitle {
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
  margin: 18px 0 0;
}

.document {
  max-width: 900px;
}

.document h2 {
  border-top: 1px solid var(--line);
  font-size: 26px;
  line-height: 1.15;
  margin: 34px 0 12px;
  padding-top: 28px;
}

.document h2:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.document h3 {
  color: var(--green);
  font-size: 18px;
  margin: 24px 0 8px;
}

.document p,
.document li {
  color: var(--muted);
  font-size: 16px;
}

.document ul {
  padding-left: 22px;
}

.document a {
  color: var(--green);
  font-weight: 850;
}

.support-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.support-card.highlight {
  background: var(--green);
  color: white;
}

.support-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.support-card.highlight .button {
  background: white;
  border-color: white;
  color: var(--green);
  display: inline-block;
  margin-top: 18px;
}

.list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.list li {
  background: var(--green-soft);
  border-radius: 14px;
  color: var(--green);
  font-weight: 800;
  padding: 14px 16px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 24px 42px;
}

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

  .nav {
    justify-content: flex-start;
  }

  .card-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .page {
    padding-top: 14px;
  }

  .hero-panel {
    border-radius: 20px;
  }
}
