:root {
  color-scheme: light;
  --ink: #14221c;
  --muted: #637169;
  --green: #18744b;
  --green-dark: #105b3a;
  --green-soft: #e4f4ea;
  --line: #d9e2dc;
  --paper: #fbfdfb;
  --warm: #fff9ee;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #f4f8f5; }
a { color: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 226, 220, .85);
  background: rgba(251, 253, 251, .9);
  backdrop-filter: blur(16px);
}

.nav, .section, .legal, .footer-inner { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 8px 18px rgba(24, 116, 75, .18); }
.nav-links { display: flex; align-items: center; gap: 26px; color: #526159; font-size: 14px; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--green); }
.coffee-link { padding: 10px 15px; border: 1px solid #e7dbc3; border-radius: 999px; background: var(--warm); }

.hero { position: relative; overflow: hidden; padding: 96px 0 80px; background: radial-gradient(circle at 85% 10%, #ccebd9 0, transparent 31%), linear-gradient(135deg, #fbfdfb, #eaf5ee); }
.hero::after { content: ""; position: absolute; width: 380px; height: 380px; left: -220px; bottom: -260px; border-radius: 50%; background: #ffe7b8; filter: blur(12px); opacity: .45; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .15em; }
h1 { max-width: 640px; margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.lead { max-width: 620px; margin: 26px 0 30px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--green); border-radius: 12px; color: white; background: var(--green); text-decoration: none; font-weight: 750; }
.button:hover { background: var(--green-dark); }
.button.secondary { color: var(--green-dark); background: transparent; }
.button.secondary:hover { background: white; }
.hero-card { overflow: hidden; border: 1px solid rgba(73, 108, 89, .2); border-radius: 20px; background: white; box-shadow: 0 28px 70px rgba(35, 88, 59, .18); }
.hero-card img { display: block; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; color: #415149; font-size: 13px; font-weight: 700; }
.trust-row span::before { content: "✓"; display: inline-grid; width: 21px; height: 21px; place-items: center; margin-right: 7px; border-radius: 50%; color: white; background: var(--green); font-size: 11px; }

.section { padding: 86px 0; }
.section-heading { max-width: 700px; margin-bottom: 38px; }
.section h2, .legal h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 27px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.feature b { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 20px; border-radius: 11px; color: var(--green); background: var(--green-soft); font-size: 18px; }
.feature h3 { margin: 0 0 10px; font-size: 19px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.6; }
.notice { padding: 22px 24px; border: 1px solid #e7dbc4; border-radius: 16px; background: var(--warm); color: #5e5749; line-height: 1.6; }

.legal { padding: 74px 0 90px; }
.legal-header { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-header .lead { margin-bottom: 0; }
.language-note { margin-top: 18px; color: var(--muted); font-size: 13px; }
.legal article { max-width: 820px; padding-top: 28px; }
.legal h2 { margin: 42px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.legal h3 { margin: 30px 0 10px; font-size: 19px; }
.legal p, .legal li { color: #46554d; line-height: 1.75; }
.legal ul { padding-left: 22px; }
.legal code { padding: 2px 6px; border-radius: 5px; background: #edf2ef; }
.legal a { color: var(--green-dark); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.support-card { padding: 27px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.support-card h2 { margin-top: 0; }
.support-card p { min-height: 54px; }

footer { border-top: 1px solid var(--line); background: #edf3ef; }
.footer-inner { display: flex; min-height: 110px; align-items: center; justify-content: space-between; gap: 20px; color: #5e6b64; font-size: 13px; }
.footer-links { display: flex; gap: 18px; }

@media (max-width: 800px) {
  .nav { min-height: 64px; }
  .nav-links a:not(.coffee-link) { display: none; }
  .hero { padding: 70px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .support-card p { min-height: 0; }
  .section { padding: 64px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (max-width: 480px) {
  .nav, .section, .legal, .footer-inner { width: min(100% - 28px, 1120px); }
  .brand span { font-size: 14px; }
  .coffee-link { padding: 8px 11px; font-size: 12px; }
  h1 { font-size: 46px; }
  .lead { font-size: 17px; }
}
