:root {
  --bg: #fcfaf6;
  --bg-soft: #f5f3ec;
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(61, 84, 52, 0.12);
  --text: #223320;
  --muted: #667363;
  --primary: #526a45;
  --primary-strong: #415537;
  --shadow: 0 18px 60px rgba(40, 52, 35, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(82, 106, 69, 0.08);
}

.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(82, 106, 69, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(65, 85, 55, 0.15);
}
.button-primary {
  background: var(--primary);
  color: #fff;
}
.button-primary:hover { background: var(--primary-strong); }
.button-secondary {
  border: 1px solid rgba(82, 106, 69, 0.28);
  color: var(--text);
  background: rgba(255,255,255,0.78);
}
.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
}

.hero-blur {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .4;
  pointer-events: none;
}
.hero-blur-left {
  left: -100px; top: 60px; background: #dce8cf;
}
.hero-blur-right {
  right: -60px; top: 20px; background: #e9efdd;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-text, .section-heading p, .vip-copy p, .cta-card p, .site-footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.avatar-stack { display: flex; }
.avatar-stack span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(135deg, #7f9a70, #d0dbc7);
  margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  width: min(520px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), transparent 45%),
    linear-gradient(135deg, rgba(82,106,69,.16), rgba(82,106,69,.06));
  border: 2px solid rgba(255,255,255,.6);
}

.hero-card {
  position: relative;
  width: min(520px, 92%);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dde6d4;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.section { padding: 78px 0; }
.section-soft { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }

.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 42px;
}
.section-heading h2,
.vip-copy h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card,
.benefit-card,
.review-card,
.price-card,
.cta-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card {
  border-radius: 28px;
  padding: 22px;
  text-align: center;
}

.feature-card h3,
.benefit-card h3,
.price-card h3 {
  margin: 20px 0 8px;
  font-size: 24px;
}

.feature-card p,
.benefit-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-shot {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(27, 38, 22, 0.14);
  border: 1px solid rgba(82, 106, 69, 0.08);
}

.mini-card, .mini-field, .mini-button, .identify-pill, .list-row, .archive-item, .archive-head {
  border-radius: 16px;
}

.mini-card {
  background: #e8efe0;
  color: var(--primary);
  padding: 12px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 14px;
}

.mini-field {
  height: 36px;
  background: #fff;
  border: 1px solid #e4e8df;
  margin-bottom: 10px;
}

.mini-button {
  margin-top: 16px;
  background: var(--primary);
  color: white;
  padding: 12px;
  font-weight: 700;
}

.identify-screen {
  display: grid;
  place-items: center;
  gap: 18px;
  background: radial-gradient(circle at center, #f5f6ef 0%, #edf0e7 100%);
}

.identify-screen img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(82,106,69,.18);
}

.identify-pill {
  background: rgba(82, 106, 69, 0.12);
  color: var(--text);
  padding: 16px 22px;
  font-weight: 700;
}

.list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #e7ece2;
  padding: 10px;
  margin-bottom: 10px;
}

.list-row img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.archive-head {
  background: #eef4e8;
  color: var(--text);
  padding: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.archive-item {
  height: 58px;
  background: white;
  border: 1px solid #e6eadf;
  margin-bottom: 10px;
}

.vip-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.vip-benefits, .review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  border-radius: 22px;
  padding: 18px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  border-radius: 28px;
  padding: 24px;
}

.featured {
  background: linear-gradient(180deg, rgba(247,250,243,.95), rgba(255,255,255,.95));
  border-color: rgba(82, 106, 69, 0.22);
}

.price-tag {
  position: absolute;
  top: 16px;
  right: 18px;
  border-radius: 999px;
  background: #fff0cf;
  color: #ad7a00;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.price {
  margin: 10px 0 18px;
  font-size: 42px;
  font-weight: 700;
}

.price span { font-size: 20px; color: var(--muted); }

.price-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card {
  border-radius: 24px;
  padding: 24px;
}
.review-card .stars {
  color: #f3b447;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.review-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 34px;
  padding: 34px;
}
.cta-actions { text-align: center; }
.cta-actions p { margin: 12px 0 0; font-size: 14px; }

.site-footer {
  border-top: 1px solid rgba(82, 106, 69, 0.08);
  background: rgba(255,255,255,0.72);
  padding-bottom: 22px;
}
.footer-inner { align-items: start; }
.footer-brand { font-size: 22px; margin-bottom: 10px; }
.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
  color: var(--muted);
}
.footer-links a:hover { color: var(--text); }

.filing-row {
  margin-top: 12px;
  text-align: center;
}

.filing-row a {
  color: var(--muted);
  font-size: 14px;
}

.filing-row a:hover {
  color: var(--text);
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fffdf9 0%, #f6f4ee 100%);
}

.legal-wrap {
  padding: 48px 0 88px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 32px 30px;
}

.legal-card h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 10px;
}
.legal-card h2 {
  margin-top: 32px;
  font-size: 24px;
}
.legal-card p, .legal-card li {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}
.legal-card ul { padding-left: 20px; }
.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-grid,
  .vip-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner,
  .nav,
  .hero-actions,
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav { gap: 14px; }
  .header-cta { display: none; }
  .hero { padding-top: 40px; }
  .feature-grid,
  .pricing-grid,
  .vip-benefits,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof { flex-wrap: wrap; }
  .cta-actions { text-align: left; }
  .footer-links { justify-items: start; text-align: left; }
}
