:root {
  --paper: #faf9f5;
  --ink: #111110;
  --muted: #6f6c66;
  --soft: #9a9790;
  --rule: #e0dbd2;
  --blush: #ecded9;
  --blush-deep: #d8bdb4;
  --sage: #dfe6dc;
  --white: #fffefa;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header img { display: block; width: auto; height: 21px; }

.header-cta,
.button {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  transition: transform .15s ease, opacity .15s ease;
}

.header-cta {
  padding: 9px 15px;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.header-cta:hover,
.button:hover { opacity: .82; transform: translateY(-1px); }

main { overflow: hidden; }

.hero {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 92px 28px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 72px;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -110px;
  top: 34px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f3e7e2 0, var(--blush) 56%, rgba(236, 222, 217, 0) 72%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.button { display: inline-block; padding: 13px 22px; font-size: 15px; }
.button-primary { background: var(--ink); color: white; }
.button-secondary { border: 1px solid var(--rule); background: var(--white); }

.hero-card {
  padding: 28px;
  border: 1px solid rgba(17, 17, 16, .08);
  border-radius: 24px;
  background: rgba(255, 254, 250, .76);
  box-shadow: 0 28px 70px rgba(17, 17, 16, .08);
  backdrop-filter: blur(12px);
}

.hero-card h2 { margin-bottom: 10px; font-size: 18px; letter-spacing: -.02em; }
.hero-card p { margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.hero-card ul { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.hero-card li { display: grid; grid-template-columns: 28px 1fr; gap: 8px; font-size: 14px; line-height: 1.45; }
.hero-card li span { font-size: 16px; }

.status-note {
  max-width: 1024px;
  margin: -28px auto 64px;
  padding: 18px 22px;
  border: 1px solid var(--blush-deep);
  border-radius: 16px;
  background: #f7ece8;
  color: #4e403b;
  font-size: 14px;
}

.status-note strong { color: var(--ink); }

.section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 78px 28px;
}

.section + .section { border-top: 1px solid var(--rule); }

.section-heading { max-width: 720px; margin-bottom: 38px; }

h2 {
  margin-bottom: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.section-heading > p,
.lede { color: var(--muted); font-size: 18px; }

.body-copy { max-width: 720px; }
.body-copy p { margin-bottom: 18px; font-size: 17px; }

.options-grid,
.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.option-card,
.feature-card,
.step-card {
  padding: 25px;
  border: 1px solid var(--rule);
  border-radius: 20px;
  background: var(--white);
}

.option-card.recommended { border-color: var(--blush-deep); background: #f8efeb; }
.card-label { display: inline-block; margin-bottom: 18px; color: var(--soft); font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.recommended .card-label { color: #815b50; }
.option-card h3, .feature-card h3, .step-card h3 { margin-bottom: 9px; font-size: 18px; line-height: 1.3; letter-spacing: -.015em; }
.option-card p, .feature-card p, .step-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.feature-icon { display: block; margin-bottom: 18px; font-size: 24px; }

.checklist { max-width: 740px; padding: 0; margin: 30px 0 0; counter-reset: item; list-style: none; }
.checklist li { position: relative; min-height: 48px; margin-bottom: 22px; padding-left: 58px; font-size: 17px; }
.checklist li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: -6px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--blush-deep);
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 750;
}

.faq { max-width: 760px; }
.faq details { padding: 21px 0; border-bottom: 1px solid var(--rule); }
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary { cursor: pointer; font-size: 17px; font-weight: 700; list-style-position: outside; }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }

.final-cta {
  max-width: 1024px;
  margin: 12px auto 80px;
  padding: 54px 28px;
  border-radius: 28px;
  background: var(--blush);
  text-align: center;
}

.final-cta h2 { max-width: 680px; margin: 0 auto 14px; }
.final-cta p { max-width: 610px; margin: 0 auto 26px; color: var(--muted); font-size: 17px; }

footer {
  padding: 26px 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

footer a { color: var(--soft); font-size: 12px; text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 64px; }
  .hero::after { right: -220px; }
  .hero-card { max-width: 560px; }
  .options-grid, .feature-grid, .steps-grid { grid-template-columns: 1fr; }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .status-note { margin: -18px 20px 42px; }
  .final-cta { margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 520px) {
  .site-header { padding: 0 20px; }
  .header-cta { display: none; }
  .hero, .section { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: 46px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .header-cta, .button { transition: none; }
}

/* Maple shutdown page: intentionally quieter and more editorial. */
.shutdown-page main { overflow: visible; }

.shutdown-page .hero {
  display: block;
  max-width: 780px;
  padding-top: 88px;
  padding-bottom: 54px;
}

.shutdown-page .hero::after { display: none; }

.shutdown-page h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 68px);
}

.shutdown-page .hero-copy { max-width: 720px; }

.shutdown-page .actions { gap: 20px; }

.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-underline-offset: 4px;
}

.shutdown-note {
  max-width: 724px;
  margin: 0 auto 8px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 14px;
}

.shutdown-page .section {
  max-width: 780px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.shutdown-page .section + .section { border-top: 1px solid var(--rule); }
.shutdown-page .section-heading { margin-bottom: 28px; }
.shutdown-page .section-intro { padding-top: 54px; }

.simple-checklist {
  max-width: 720px;
  margin: 28px 0 0;
  padding-left: 24px;
}

.simple-checklist li {
  margin-bottom: 18px;
  padding-left: 8px;
  font-size: 17px;
}

.workflow-label {
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflow-section .section-heading { margin-bottom: 22px; }
.workflow-section .section-heading h2 { margin-bottom: 0; }

.setup-list {
  margin: 26px 0;
  padding-left: 20px;
}

.setup-list li {
  margin-bottom: 16px;
  padding-left: 6px;
  font-size: 16px;
}

.setup-list a { text-underline-offset: 3px; }

.plain-feature-list {
  margin: 26px 0 28px;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.plain-feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}

.shutdown-page .final-cta {
  max-width: 724px;
  margin-top: 8px;
  padding: 54px 0 72px;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}

@media (max-width: 800px) {
  .shutdown-note,
  .shutdown-page .final-cta {
    margin-left: 20px;
    margin-right: 20px;
  }
}
