:root {
  --bg: #f6efe5;
  --paper: rgba(255, 250, 244, 0.82);
  --ink: #21150f;
  --muted: #66534a;
  --line: rgba(66, 39, 22, 0.12);
  --accent: #d46c3d;
  --accent-deep: #8d4023;
  --mint: #78a58d;
  --gold: #e3bf6f;
  --shadow: 0 28px 70px rgba(96, 54, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing-body {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 108, 61, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(120, 165, 141, 0.2), transparent 24%),
    linear-gradient(180deg, #fcf6ef 0%, #f2e7d9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.marketing-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header,
.hero,
.proof-strip,
.feature-grid,
.how-section,
.audience-band,
.faq-section,
.final-cta,
.site-footer {
  position: relative;
}

.planner-highlight {
  margin: 32px 0;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.9));
  padding: 32px;
  box-shadow: var(--shadow);
}

.planner-highlight-copy {
  max-width: 540px;
}

.planner-highlight-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.planner-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(66, 39, 22, 0.12);
  display: grid;
  gap: 12px;
}

.planner-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.planner-card p {
  margin: 0;
  color: var(--muted);
}

.planner-card .btn {
  width: fit-content;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), #f0b56d);
  color: #fff8ef;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(212, 108, 61, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav .nav-ghost,
.site-nav .nav-cta {
  border-radius: 999px;
  padding: 11px 16px;
}

.site-nav .nav-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.site-nav .nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff7f2;
  box-shadow: 0 18px 28px rgba(141, 64, 35, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 36px 0 22px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1,
.section-head h2,
.feature-card.large h2,
.audience-band h2,
.final-cta h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 10ch;
}

.hero-text,
.feature-card p,
.step-card p,
.audience-band p,
.faq-list p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 0;
}

.hero-actions,
.final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.site-nav .nav-ghost:hover,
.site-nav .nav-cta:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.hero-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% 4% 8% 8%;
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(255, 248, 240, 0.9), rgba(255, 248, 240, 0.55)),
    radial-gradient(circle at top right, rgba(227, 191, 111, 0.26), transparent 30%);
  border: 1px solid rgba(122, 73, 44, 0.08);
  box-shadow: var(--shadow);
}

.stage-card {
  position: absolute;
  z-index: 1;
  background: var(--paper);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122, 73, 44, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stage-card.spotlight {
  top: 8%;
  left: 4%;
  width: 240px;
  padding: 22px;
}

.stage-card.spotlight strong {
  display: block;
  margin-top: 8px;
  font-size: 2.3rem;
  font-family: "Fraunces", Georgia, serif;
}

.stage-card.ledger {
  top: 24%;
  right: 2%;
  width: 290px;
  padding: 20px;
  transform: rotate(4deg);
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(66, 39, 22, 0.14);
}

.ledger-row:last-child {
  border-bottom: 0;
}

.stage-card.progress {
  left: 10%;
  bottom: 14%;
  width: 280px;
  padding: 20px;
}

.mini-label {
  color: var(--muted);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meter {
  margin: 14px 0 12px;
  height: 14px;
  border-radius: 999px;
  background: rgba(120, 165, 141, 0.12);
  overflow: hidden;
}

.meter span {
  display: block;
  width: 71%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--accent));
}

.stage-card.file-stack {
  right: 16%;
  bottom: 5%;
  display: flex;
  gap: 10px;
  padding: 18px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(66, 39, 22, 0.1);
  color: var(--accent-deep);
  font-size: 0.83rem;
  font-weight: 600;
}

.proof-strip,
.audience-band,
.final-cta {
  display: grid;
  gap: 18px;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.proof-strip {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px 24px;
  color: var(--accent-deep);
  font-weight: 600;
}

.feature-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.step-card,
.faq-list details {
  background: rgba(255, 252, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 24px;
}

.feature-card.large {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(212, 108, 61, 0.16), transparent 25%),
    rgba(255, 252, 248, 0.82);
}

.feature-card.large h2,
.section-head h2,
.audience-band h2,
.final-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.how-section,
.faq-section {
  margin-top: 34px;
}

.section-head {
  margin-bottom: 18px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 108, 61, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 18px;
}

.audience-band,
.final-cta {
  margin-top: 34px;
  padding: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  margin-top: 28px;
  padding: 10px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero,
  .audience-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .step-grid,
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .planner-highlight-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: span 2;
  }

  .hero-stage {
    min-height: 460px;
  }
}

@media (max-width: 700px) {
  .marketing-shell {
    width: min(100vw - 26px, 1180px);
    padding-top: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
  }

  .feature-grid,
  .step-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: span 1;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-stage {
    min-height: 520px;
  }

  .stage-card.spotlight,
  .stage-card.ledger,
  .stage-card.progress,
  .stage-card.file-stack {
    position: absolute;
    width: auto;
    max-width: calc(100% - 42px);
  }

  .stage-card.spotlight {
    left: 8%;
    right: 24%;
  }

  .stage-card.ledger {
    left: 22%;
    right: 8%;
    top: 30%;
  }

  .stage-card.progress {
    left: 8%;
    right: 16%;
    bottom: 16%;
  }

  .stage-card.file-stack {
    left: 12%;
    right: 12%;
    bottom: 4%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
