:root {
  --bg: #eef2e8;
  --ink: #162026;
  --muted: #4f5e65;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --accent: #126e5a;
  --accent-dark: #0c4d40;
  --line: rgba(22, 32, 38, 0.12);
  --glow: rgba(18, 110, 90, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(18, 110, 90, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(225, 146, 63, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f8f1 0%, #e8eee2 100%);
}

a {
  color: var(--accent-dark);
}

.page {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-copy,
.hero-card,
.section,
.policy-card {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(17, 33, 43, 0.09);
}

.hero-copy {
  padding: 42px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 110, 90, 0.1);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  margin-bottom: 18px;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 26px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px var(--glow);
}

.button.secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line);
}

.hero-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(226, 237, 231, 0.9)),
    var(--panel-strong);
}

.hero-card .step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hero-card .step:last-child {
  border-bottom: 0;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dark);
  color: white;
  font-weight: 700;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.step p,
.section p,
.policy-card p,
.policy-card li,
.footer {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.section {
  padding: 28px;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.section ul {
  padding-left: 22px;
  margin: 14px 0 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.policy-nav,
.policy-card {
  padding: 28px;
}

.policy-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.policy-nav h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.policy-nav a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.policy-card h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}

.policy-card h2 {
  font-size: 28px;
  margin: 30px 0 10px;
}

.policy-card ul {
  padding-left: 22px;
}

.muted {
  color: var(--muted);
}

.footer {
  padding-top: 24px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero,
  .policy-layout,
  .grid {
    grid-template-columns: 1fr;
  }

  .page {
    width: min(100% - 28px, 1100px);
  }

  .hero-copy,
  .hero-card,
  .section,
  .policy-card,
  .policy-nav {
    padding: 24px;
    border-radius: 22px;
  }

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