@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Figtree:wght@400;500;600;700&display=swap");

:root {
  --bg: #ebe1d2;
  --bg-deep: #e0d3c0;
  --panel: rgba(247, 240, 230, 0.94);
  --panel-solid: #f7f0e6;
  --panel2: #e8dccb;
  --text: #2f2218;
  --muted: #7a6554;
  --accent: #4f6f52;
  --accent-soft: #d9e5d6;
  --accent-dark: #3d5740;
  --brown: #5a4030;
  --brown-soft: #e4d5c4;
  --gold: #9a6b2f;
  --line: #d4c4b0;
  --ok: #4f6f52;
  --ok-bg: #d9e5d6;
  --warn: #9a6b2f;
  --warn-bg: #f0e0c4;
  --shadow: 0 1px 2px rgba(47, 34, 24, 0.04), 0 18px 40px rgba(47, 34, 24, 0.07);
  --shadow-soft: 0 8px 24px rgba(47, 34, 24, 0.06);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --header-h: 118px;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  height: auto;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(79, 111, 82, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(154, 107, 47, 0.1), transparent 50%),
    linear-gradient(165deg, #f3ebe0 0%, var(--bg) 38%, var(--bg-deep) 100%);
  background-attachment: scroll;
}

/* Top site header — website style */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  background: rgba(239, 228, 212, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.brand-text { display: flex; flex-direction: column; gap: 0; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--brown);
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  padding: 4px 0;
}

.site-nav::-webkit-scrollbar { display: none; }

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.site-nav a.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
}

.header-pill {
  flex-shrink: 0;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid #b7cbb5;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Page content scrolls freely */
.page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 28px 0;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.page-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 28px 64px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(47, 34, 24, 0.35) 35%,
    rgba(47, 34, 24, 0.82) 100%
  );
  color: #f7f0e6;
}

.page-hero .hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  margin: 0;
  max-width: 16ch;
  line-height: 1.08;
}

.page-hero .hero-copy {
  margin: 16px 0 0;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #f7f0e6;
  box-shadow: 0 8px 20px rgba(79, 111, 82, 0.28);
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  background: rgba(247, 240, 230, 0.14);
  color: #f7f0e6;
  border-color: rgba(247, 240, 230, 0.35);
}

.btn-ghost:hover { background: rgba(247, 240, 230, 0.28); }

.btn-solid {
  background: var(--panel-solid);
  color: var(--accent-dark);
  border-color: var(--line);
}

section.block {
  padding: 56px 0 8px;
}

.section-head {
  margin-bottom: 28px;
  max-width: 40rem;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
}

.section-head h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

.hook {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent-dark);
  line-height: 1.35;
}

.sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat, .card, .feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
}

.stat em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card h2, .feature h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
}

.card-lead, .feature p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.list { list-style: none; margin: 0; padding: 0; }

.list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.list li:last-child { border-bottom: 0; }
.list strong { color: var(--text); }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-icon.brown { background: var(--brown-soft); color: var(--brown); }
.feature-icon.gold { background: var(--warn-bg); color: var(--gold); }

.visual-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.visual-panel {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(transparent, rgba(47, 34, 24, 0.8));
  color: #f7f0e6;
}

.visual-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.visual-caption span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.quote-bar {
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(217, 229, 214, 0.7), rgba(247, 240, 230, 0.95));
  box-shadow: var(--shadow-soft);
}

.quote-bar p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--brown);
  line-height: 1.35;
}

.quote-bar span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.table th, .table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--text);
}

.table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table tr:last-child td { border-bottom: 0; }

.table tbody tr:hover {
  background: rgba(217, 229, 214, 0.35);
}

.tag {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--panel2);
  color: var(--muted);
}

.tag.ok { color: var(--ok); background: var(--ok-bg); }
.tag.warn { color: var(--warn); background: var(--warn-bg); }
.tag.blue { color: var(--accent-dark); background: var(--accent-soft); }

.cta-band {
  margin-top: 48px;
  padding: 48px 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, #4f6f52 0%, #3d5740 55%, #5a4030 100%);
  color: #f7f0e6;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
}

.cta-band p {
  margin: 12px auto 0;
  max-width: 40ch;
  opacity: 0.9;
  line-height: 1.45;
}

.cta-band .hero-actions {
  justify-content: center;
}

.site-footer {
  margin-top: 72px;
  padding: 48px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(232, 220, 203, 0.55);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
  line-height: 1.45;
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-col {
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover { color: var(--accent-dark); }

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(79, 111, 82, 0.16);
  transform: translateY(-4px);
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown);
}

.price-card .price {
  margin: 12px 0 4px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-dark);
  line-height: 1;
}

.price-card .price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card .audience {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul {
  margin: 0 0 18px;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.price-card ul li { margin: 0.35rem 0; }

.price-card .outcome-list {
  list-style: none;
  padding-left: 0;
}

.price-card .outcome-list li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.45rem 0;
}

.price-card .outcome-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.price-card .audience strong {
  color: var(--brown);
  font-weight: 700;
}

.feature-catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-group {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.feature-group h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brown);
}

.feature-group ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature-group li { margin: 0.3rem 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.why-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.why-card ul {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.55;
  font-size: 0.95rem;
}

.why-card li { margin: 0.4rem 0; }

.why-without {
  background: #f3e8df;
  color: var(--muted);
}

.why-without h3 { color: var(--brown); }

.why-with {
  background: linear-gradient(145deg, rgba(217, 229, 214, 0.85), rgba(247, 240, 230, 0.95));
  color: var(--text);
  border-color: #b7cbb5;
}

.why-with h3 { color: var(--accent-dark); }

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.92rem;
  vertical-align: middle;
  line-height: 1.35;
}

.compare-table th {
  background: rgba(217, 229, 214, 0.45);
  color: var(--brown);
  font-weight: 700;
}

.compare-table th.col-rec,
.compare-table td.col-rec {
  background: rgba(217, 229, 214, 0.55);
  box-shadow: inset 0 0 0 1px rgba(79, 111, 82, 0.18);
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
  width: 32%;
}

.compare-table .yes {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.compare-table .limited { color: var(--warn); font-weight: 600; }
.compare-table .no { color: var(--muted); }

.legal-prose {
  max-width: 48rem;
}

.legal-prose h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
}

.legal-prose p, .legal-prose li {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.legal-prose ul { padding-left: 1.2rem; }

@media (max-width: 980px) {
  .stats, .grid-3 { grid-template-columns: 1fr 1fr; }
  .visual-strip { grid-template-columns: 1fr; }
  .header-pill { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .feature-catalog { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { padding: 0 14px; height: auto; min-height: var(--header-h); flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .site-nav { width: 100%; order: 3; }
  .page { padding: 28px 16px 0; }
  .page-hero-overlay { padding: 40px 16px 48px; }
  .stats, .grid-2, .grid-3, .pricing-grid, .footer-grid, .outcome-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 20px; }
}



