/* Wortel marketing site: the app's sage-paper system, tuned for a landing page. */
:root {
  --bg: #e3e8d8;
  --surface: #edf0e4;
  --surface-2: #e6ebdb;
  --hairline: rgba(31, 51, 36, 0.13);
  --text: #233027;
  --text-2: #54624f;
  --text-3: #5e6a58;
  --accent: #2f7d52;
  --accent-ink: #ffffff;
  --accent-dim: rgba(47, 125, 82, 0.14);
  --amber: #d98a2b;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; }

body {
  background: var(--bg);
  background-image: radial-gradient(1200px 700px at 20% -10%, #dfe6d2, transparent 60%),
    radial-gradient(1000px 600px at 90% 110%, #e1e9d9, transparent 55%);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
}

.nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-family: var(--display); font-size: 24px; font-weight: 650; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 18px;
  padding: 10px 22px;
  transition: filter 120ms cubic-bezier(0.2, 0, 0, 1), transform 120ms cubic-bezier(0.2, 0, 0, 1);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-big { font-size: 18px; padding: 14px 30px; }

main { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

.hero { padding: 72px 0 56px; max-width: 780px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 620;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 19px; color: var(--text-2); max-width: 60ch; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-note { color: var(--text-3); font-size: 14px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: 24px 0 48px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 26px;
}
.pillar h3 { font-family: var(--display); font-size: 21px; font-weight: 620; margin-bottom: 10px; }
.pillar p { color: var(--text-2); font-size: 15px; }

.how { padding: 32px 0 48px; max-width: 720px; }
.how h2, .trust h2 { font-family: var(--display); font-size: 30px; font-weight: 620; margin-bottom: 18px; }
.steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.steps li { display: flex; gap: 14px; align-items: baseline; color: var(--text-2); font-size: 16px; }
.step-num {
  font-family: var(--display);
  font-weight: 650;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 999px;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.trust {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 64px;
  max-width: 820px;
}
.trust p { color: var(--text-2); max-width: 70ch; }

.footer {
  border-top: 1px solid var(--hairline);
  color: var(--text-3);
  font-size: 13px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}
.footer a { color: var(--text-2); }
.footer p + p { margin-top: 8px; }
