/* Fonts */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --bg: #F7F3ED;
  --bg-alt: #EFEBE4;
  --fg: #1A1A1A;
  --fg-muted: #6B5E52;
  --accent: #2C4A3E;
  --accent-warm: #C4674A;
  --border: #D8D0C6;
  --card-bg: #FFFFFF;
  --blob-color: rgba(44, 74, 62, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-blob-wrap {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  pointer-events: none;
}
.hero-blob {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 40%, rgba(44,74,62,0.14) 0%, transparent 70%);
  border-radius: 62% 38% 54% 46% / 44% 56% 44% 56%;
  animation: blobFloat 12s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { border-radius: 62% 38% 54% 46% / 44% 56% 44% 56%; transform: translateY(0); }
  33% { border-radius: 48% 52% 46% 54% / 56% 44% 56% 44%; transform: translateY(-18px); }
  66% { border-radius: 54% 46% 62% 38% / 40% 60% 40% 60%; transform: translateY(10px); }
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Shared label tag */
.label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  background: rgba(196, 103, 74, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

/* For Who */
.forwho {
  background: var(--bg-alt);
  padding: 100px 24px;
}
.forwho-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.forwho-label {
  padding-top: 6px;
}
.forwho-text {
  font-size: 18px;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.forwho-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
}
.forwho-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

/* Offering */
.offering {
  padding: 100px 24px;
}
.offering-header {
  max-width: 1100px;
  margin: 0 auto 60px;
}
.offering-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.2;
}
.offering-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.offering-card {
  background: var(--card-bg);
  padding: 36px 32px;
}
.offering-card-icon {
  margin-bottom: 20px;
}
.offering-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.offering-card-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}
.offering-pricing {
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}
.pricing-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.pricing-period {
  font-size: 20px;
  color: var(--fg-muted);
  font-weight: 300;
}
.pricing-note {
  width: 100%;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.pricing-upsells {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upsell {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.upsell-name {
  font-size: 14px;
  color: var(--fg-muted);
  min-width: 160px;
}
.upsell-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.upsell-detail {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: normal;
  display: block;
}

/* Process */
.process {
  background: var(--accent);
  padding: 100px 24px;
  color: #fff;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process .label-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 60px;
  margin-top: 48px;
}
.process-step {
  display: flex;
  gap: 24px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step-body {
  padding-top: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-weight: 300;
}

/* Guarantee */
.guarantee {
  background: #1A1A1A;
  padding: 100px 24px;
}
.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.guarantee-badge {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
  flex-shrink: 0;
}
.guarantee-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.guarantee-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.guarantee-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  font-style: italic;
}

/* Closing */
.closing {
  padding: 100px 24px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}
.closing-outro {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.closing-outro p {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 300;
}
.closing-cta {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 600;
  color: var(--accent) !important;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 300px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero-blob-wrap { display: none; }
  .hero-stats { gap: 28px; }
  .forwho-inner { grid-template-columns: 1fr; gap: 24px; }
  .offering-grid { grid-template-columns: 1fr; }
  .offering-pricing { flex-direction: column; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .guarantee-inner { flex-direction: column; gap: 24px; }
  .guarantee-badge { font-size: 64px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .step-number { font-size: 32px; width: 44px; }
}