:root {
  --bg: #F7F2E8;
  --bg-alt: #EDE8DC;
  --fg: #1A3A2A;
  --fg-mid: #2D5C42;
  --fg-light: #5A8A6E;
  --accent: #D4A853;
  --accent-dark: #B8923F;
  --text-body: #2C3D30;
  --text-muted: #5A7A62;
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', serif;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
  align-items: center;
  padding: 0 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  padding: 80px 0 80px 0;
  max-width: 540px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  gap: 40px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.hero-meta-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
}
.phone-mockup {
  width: 220px;
  background: var(--fg);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(26, 58, 42, 0.25), 0 0 0 1px rgba(26, 58, 42, 0.08);
}
.phone-screen {
  background: #0D1F14;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-thumb {
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.v1 { background: linear-gradient(135deg, #2D5C42 0%, #1A3A2A 100%); }
.v2 { background: linear-gradient(135deg, #D4A853 0%, #B8923F 100%); }
.v3 { background: linear-gradient(135deg, #5A8A6E 0%, #2D5C42 100%); }
.vt-bar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.vt-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vt-l1, .vt-l2, .vt-l3 {
  height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
}
.vt-l1 { width: 80%; }
.vt-l2 { width: 55%; }
.vt-l3 { width: 65%; }
.hero-callout {
  margin-top: 20px;
}
.callout-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid rgba(26, 58, 42, 0.12);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.78rem;
  color: var(--fg);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(26, 58, 42, 0.08);
}
.cp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.manifesto-mark { flex-shrink: 0; margin-top: 4px; }
.manifesto-text blockquote {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-style: italic;
  color: #E8DDD0;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}
.manifesto-attribution {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* How it works */
.howitworks {
  padding: 100px 48px;
  background: var(--bg);
}
.section-header { margin-bottom: 60px; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
}
.step-card {
  background: var(--bg-alt);
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 58, 42, 0.1);
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 0.7rem;
  background: var(--bg);
  color: var(--fg-mid);
  border: 1px solid rgba(26, 58, 42, 0.12);
  border-radius: 100px;
  padding: 4px 10px;
  font-weight: 500;
}

/* The Offer */
.theoffer {
  padding: 100px 48px;
  background: var(--bg-alt);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
}
.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid rgba(26, 58, 42, 0.08);
  transition: border-color 0.2s;
}
.pricing-card.growth {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.growth::before {
  content: 'Most popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--fg);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pc-header { margin-bottom: 28px; }
.pc-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 12px;
}
.growth-badge { color: var(--accent-dark); }
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pc-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.pc-per {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pc-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pc-features { list-style: none; }
.pc-feat {
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 58, 42, 0.06);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-feat::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.pc-feat--included::before {
  background: var(--fg);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  mask-size: 12px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--fg);
}
.pc-feat--excluded {
  color: var(--text-muted);
  opacity: 0.5;
}
.pc-feat--excluded::before {
  background: transparent;
  border: 1.5px solid var(--text-muted);
  opacity: 0.4;
}

/* Numbers */
.numbers {
  padding: 80px 48px;
  background: var(--fg);
}
.numbers-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}
.num-block { text-align: center; }
.num-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.num-label {
  font-size: 0.85rem;
  color: rgba(232, 221, 208, 0.6);
  line-height: 1.5;
}
.num-divider {
  width: 1px;
  height: 60px;
  background: rgba(212, 168, 83, 0.2);
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 40px 48px;
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(232, 221, 208, 0.8);
}
.footer-sub {
  font-size: 0.8rem;
  color: rgba(232, 221, 208, 0.45);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(232, 221, 208, 0.25);
  margin-left: auto;
}

/* ── Free Sample Lead Capture ── */
.free-sample {
  background: var(--fg);
  padding: 72px 48px;
}
.fs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.fs-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.fs-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #E8DDD0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.fs-sub {
  font-size: 1rem;
  color: rgba(232,221,208,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 400px;
}
.fs-trust {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Form card */
.fs-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.fs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fs-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fs-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-mid);
  letter-spacing: 0.03em;
}
.fs-optional {
  font-weight: 400;
  color: var(--text-muted);
}
.fs-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(26,58,42,0.18);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fs-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
.fs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A8A6E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.fs-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: var(--fg);
  border: none;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 4px;
}
.fs-btn:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.fs-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.fs-error {
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 500;
  margin-top: -4px;
}
.fs-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px 0;
}
.fs-success-icon {
  width: 56px;
  height: 56px;
  background: var(--fg);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.fs-success-msg {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 0 24px 60px; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 0 0; }
  .hero-headline { font-size: 2.4rem; }
  .hero-meta { gap: 24px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-inner { flex-direction: column; gap: 20px; }
  .howitworks { padding: 60px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .theoffer { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .numbers { padding: 60px 24px; }
  .numbers-inner { flex-direction: column; gap: 32px; }
  .num-divider { width: 40px; height: 1px; }
  .closing { padding: 60px 24px; }
  .site-footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
  .free-sample { padding: 56px 24px; }
  .fs-inner { grid-template-columns: 1fr; gap: 32px; }
  .fs-headline { font-size: 1.7rem; }
  .fs-sub { max-width: 100%; }
  .fs-form-wrap { padding: 28px 20px; }
  .fs-field-row { grid-template-columns: 1fr; gap: 16px; }
}