/* FlowSpace — earthy, calm, editorial */
:root {
  --bg: #F7F4EF;
  --fg: #1A1814;
  --fg-muted: #6B6560;
  --green: #2D5A3D;
  --green-light: #3D7A52;
  --amber: #C67A2B;
  --cream: #EDE8DF;
  --warm-border: #D9D3C8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}
.tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  padding-left: 16px;
  border-left: 1px solid var(--warm-border);
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--green);
  top: -100px;
  right: -100px;
}
.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--amber);
  bottom: -60px;
  left: 80px;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 90, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 90, 61, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(45, 90, 61, 0.07);
  border: 1px solid rgba(45, 90, 61, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
}
/* CTA Visual */
.cta-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-box {
  background: white;
  border: 1.5px solid var(--warm-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  min-width: 200px;
}
.cta-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  flex-shrink: 0;
}
.cta-icon-green { background: rgba(45, 90, 61, 0.1); color: var(--green); }
.cta-text { display: flex; flex-direction: column; gap: 2px; }
.cta-label { font-weight: 600; font-size: 15px; color: var(--fg); }
.cta-desc { font-size: 13px; color: var(--fg-muted); }
.cta-arrow { color: var(--fg-muted); opacity: 0.5; }

/* HOW */
.how {
  padding: 100px 32px;
  background: var(--fg);
  color: white;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 64px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.step-visual { margin-bottom: 24px; }
.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  margin-top: 40px;
  align-self: flex-start;
  margin-left: -15px;
  margin-right: -15px;
}

/* DELIVERABLES */
.deliverables {
  padding: 100px 32px;
  background: var(--cream);
}
.del-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.del-card {
  background: var(--fg);
  border-radius: 20px;
  padding: 32px 28px;
  color: white;
}
.del-card-main {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
}
.del-card-icon {
  margin-bottom: 20px;
}
.del-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.del-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 32px;
  background: var(--bg);
}
.pricing .section-title { color: var(--fg); }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.plan {
  background: white;
  border: 1.5px solid var(--warm-border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.plan-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.08), 0 8px 40px rgba(45, 90, 61, 0.12);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 100px;
}
.plan-header { margin-bottom: 12px; }
.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
}
.price-per { font-size: 14px; color: var(--fg-muted); }
.plan-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}
.plan-features li svg { color: var(--green); flex-shrink: 0; }
.plan-addon {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--warm-border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: var(--fg);
  color: white;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--amber);
  opacity: 0.6;
  margin-bottom: 32px;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}
.closing-rule {
  width: 48px;
  height: 1.5px;
  background: var(--amber);
  margin: 0 auto 32px;
  opacity: 0.7;
}
.closing-tagline {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  padding: 60px 32px 40px;
  background: var(--cream);
  border-top: 1px solid var(--warm-border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy { font-size: 12px; color: var(--fg-muted); opacity: 0.7; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .del-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 48px; }
  .step-connector { display: none; }
  .hero-headline { letter-spacing: -0.5px; }
  .cta-arrow { display: none; }
  .nav-inner { padding: 16px 20px; }
  .tagline { display: none; }
}