:root {
  --bg: #f3efe6;
  --surface: #ffffff;
  --surface-muted: #f8f8f6;
  --text: #1f1b18;
  --text-muted: #6c645d;
  --brand: #1f6b45;
  --brand-soft: #d7eadf;
  --border: #e4ddd4;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(26, 22, 18, 0.08);
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(243, 239, 230, 0.92);
  border-bottom: 1px solid rgba(228, 221, 212, 0.8);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--text);
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
}

.eyebrow {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
}

h1 {
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 52ch;
}

.actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(0.96);
}

.btn-muted {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.btn-muted:hover {
  background: var(--surface-muted);
}

.hero-shot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0.8rem;
  box-shadow: var(--shadow);
}

.hero-shot img {
  border-radius: 22px;
}

section {
  padding: 1.1rem 0 3rem;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.strip {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strip-item {
  background: var(--surface-muted);
  border-radius: 14px;
  padding: 0.9rem;
}

.strip-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.steps {
  margin-top: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.screens {
  margin-top: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.screen img {
  width: 100%;
  height: auto;
}

.who {
  margin-top: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta {
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #fff, #f2f6f1);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0 2.2rem;
}

.footer-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.footer-note,
.muted {
  color: var(--text-muted);
}

.legal {
  padding: 3rem 0;
}

.legal-card {
  max-width: 860px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  margin: 0 0 0.8rem;
}

.legal-card h2 {
  font-size: 1.2rem;
  margin: 1.2rem 0 0.5rem;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-card ul {
  margin: 0.4rem 0 0.9rem;
}

@media (max-width: 920px) {
  .hero-wrap,
  .steps,
  .features,
  .screens,
  .who,
  .strip,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .nav {
    display: none;
  }
}
