: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 {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: 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);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.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;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-card.featured {
  border-color: rgba(31, 107, 69, 0.35);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.8rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.7rem 0 0.35rem;
}

.price strong {
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.04em;
}

.price span {
  color: var(--text-muted);
}

.release-price {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.pricing-list {
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pricing-list li + li {
  margin-top: 0.35rem;
}

.pricing-footnote {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.requirement {
  margin-top: 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 107, 69, 0.35);
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-note {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.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,
  .pricing-grid,
  .screens,
  .who,
  .strip,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 2.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 1rem 0.8rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 0.85rem 0.2rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}
