:root {
  --accent: #0b3d2e;
  --accent-2: #1f5c45;
  --bench: #2e8b57;
  --bg: #f7f6f1;
  --ink: #1d241f;
  --muted: #5d6b62;
  --card: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; }

.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin: 0 0 18px;
  color: var(--accent);
}

/* Hero */
.hero {
  background: radial-gradient(120% 120% at 50% 0%, var(--accent-2) 0%, var(--accent) 70%);
  color: #fff;
  padding: 88px 24px 72px;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.logo { font-size: 64px; }
.hero h1 {
  font-size: clamp(44px, 9vw, 84px);
  margin: 8px 0 8px;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: clamp(17px, 2.6vw, 22px);
  color: #e7f0ea;
  margin: 0 auto 32px;
  max-width: 36ch;
}
.cta {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3); }
.cta-sub { color: #cfe0d7; font-size: 14px; margin-top: 14px; }

.lead { font-size: 19px; color: var(--muted); max-width: 64ch; }

/* Features */
.features { background: #fff; max-width: none; }
.features > h2, .feature-grid { max-width: 960px; margin-left: auto; margin-right: auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feature {
  background: var(--bg);
  border: 1px solid #e7e6df;
  border-radius: 16px;
  padding: 22px;
}
.feature-icon { font-size: 30px; }
.feature h3 { margin: 10px 0 6px; color: var(--accent); font-size: 19px; }
.feature p { margin: 0; color: var(--muted); }

/* Screenshots */
.shot-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.shot {
  width: 220px;
  height: 460px;
  border-radius: 34px;
  background: linear-gradient(160deg, #dfe7e2, #c6d3cb);
  border: 8px solid #11261d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.hint { text-align: center; color: var(--muted); font-size: 14px; margin-top: 16px; }

/* Imprint */
.imprint {
  background: var(--accent);
  color: #e7f0ea;
  text-align: center;
  padding: 56px 24px;
}
.imprint h2 { color: #fff; margin-top: 0; }
.imprint a { color: #fff; text-decoration: underline; }
.fineprint { color: #a9c2b6; font-size: 13px; margin-top: 22px; }
