
:root {
  --bg: #f5f8ec;
  --card: rgba(255,255,255,.76);
  --ink: #392f2c;
  --muted: #766a65;
  --sage: #69a45f;
  --sage-dark: #4f8248;
  --line: rgba(57,47,44,.10);
  --shadow: 0 18px 50px rgba(70, 90, 60, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(201,232,185,.65), transparent 34rem),
    linear-gradient(180deg, #fafcf4 0%, #eef6e3 62%, #dcefd0 100%);
  min-height: 100vh;
}
a { color: var(--sage-dark); }
.wrap { width: min(940px, calc(100% - 32px)); margin: 0 auto; }
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 750; font-size: 20px; text-decoration: none; color: var(--ink); }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.navlinks { display: flex; gap: 18px; font-size: 14px; font-weight: 600; }
.navlinks a { color: var(--muted); text-decoration: none; }
.hero { padding: 82px 0 45px; text-align: center; }
.kicker { color: var(--sage-dark); font-weight: 800; letter-spacing: .14em; font-size: 12px; text-transform: uppercase; }
h1 { font-size: clamp(44px, 8vw, 78px); line-height: .98; margin: 16px auto 20px; letter-spacing: -.05em; max-width: 800px; }
.hero p { max-width: 640px; margin: 0 auto; font-size: 19px; line-height: 1.55; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; padding: 28px 0 70px; }
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  border-radius: 26px;
  padding: 28px;
  backdrop-filter: blur(14px);
}
.card.full { grid-column: 1 / -1; }
.card h2, .card h3 { margin: 0 0 10px; letter-spacing: -.025em; }
.card p, .card li { color: var(--muted); line-height: 1.6; }
.card ul { padding-left: 20px; margin-bottom: 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 12px; padding: 13px 18px; border-radius: 14px;
  background: var(--sage); color: #fff; text-decoration: none; font-weight: 750;
}
.notice {
  background: rgba(105,164,95,.10);
  border-left: 4px solid var(--sage);
  border-radius: 14px;
  padding: 15px 17px;
  color: var(--muted);
}
.policy { padding: 52px 0 80px; }
.policy h1 { text-align: left; font-size: clamp(42px, 7vw, 66px); margin-left: 0; }
.policy h2 { margin-top: 38px; }
.policy p, .policy li { font-size: 16px; line-height: 1.75; color: var(--muted); }
.policy .meta { color: var(--sage-dark); font-weight: 700; }
footer {
  border-top: 1px solid var(--line);
  padding: 25px 0 40px; color: var(--muted); font-size: 13px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.email-placeholder {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .95em;
}
@media (max-width: 690px) {
  .grid { grid-template-columns: 1fr; }
  .card.full { grid-column: auto; }
  .hero { padding-top: 52px; }
  .navlinks { gap: 12px; }
}
