/* WorkDone landing — "Warm Momentum" theme (matches the app). */
:root {
  --bg: #fbf9f7;
  --bg-alt: #f5efe9;
  --card: #ffffff;
  --text: #2a2320;
  --muted: #8a7f78;
  --faint: #b8afa8;
  --border: #ece6e1;
  --accent: #ff6b5b;
  --accent-dark: #e0553f;
  --green: #2ba84a;
  --banner-bg: #fff1e8;
  --shadow: 0 14px 40px rgba(91, 70, 54, 0.10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.1; margin: 0; }

.container { width: min(1120px, 100% - 40px); margin: 0 auto; }
.container.narrow { width: min(740px, 100% - 40px); }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-dark);
  background: var(--banner-bg); padding: 5px 12px; border-radius: 999px;
}
.accent { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; border-radius: 999px;
  padding: 14px 24px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(255,107,91,0.30); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: var(--card); color: var(--accent-dark); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { border-color: #fff; }
.btn.block { display: flex; width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,247,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; }
.logo {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent);
  color: #fff; font-weight: 900; display: grid; place-items: center; font-size: 17px;
}
.brand-name { font-weight: 800; font-size: 19px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-weight: 600; color: var(--text); font-size: 15px; }
.nav-links a:hover { color: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--text); }

/* Hero */
.hero { padding: 70px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 800; margin: 18px 0 0; }
.lead { font-size: 19px; color: var(--muted); max-width: 30em; margin: 18px 0 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { color: var(--faint); font-size: 14px; margin-top: 16px; }

/* Phone mockup */
.hero-art { display: flex; justify-content: center; }
.phone {
  width: 290px; background: var(--card); border-radius: 32px; padding: 20px 16px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.phone-top { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.phone-brand { color: var(--accent); font-weight: 900; font-size: 17px; }
.phone-name { color: var(--muted); font-size: 13px; }
.phone-h { font-weight: 800; font-size: 18px; margin: 14px 2px; }
.proj { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 12px; margin-bottom: 10px; }
.proj-row { display: flex; align-items: center; gap: 7px; font-size: 14px; }
.proj-row b { flex: 1; }
.proj-sub { color: var(--muted); font-size: 12px; margin-top: 4px; padding-left: 24px; }
.tag { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }
.tag.active { background: var(--banner-bg); color: var(--accent-dark); }
.tag.done { background: #e7f6ea; color: var(--green); }
.dot.lock { font-size: 13px; }
.phone-fab { margin-top: 6px; background: var(--accent); color: #fff; text-align: center; font-weight: 800; font-size: 14px; padding: 12px; border-radius: 12px; }

/* Sections */
.section { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-top: 14px; }
.section-sub { color: var(--muted); font-size: 18px; margin-top: 12px; }

.grid { display: grid; gap: 20px; }
.features { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(3, 1fr); }
.pricing { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.feature-ico { font-size: 32px; }
.feature h3 { font-size: 19px; margin: 14px 0 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

.step { text-align: left; padding: 8px; }
.step-num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: #fff; font-weight: 900; font-size: 18px; margin-bottom: 14px;
}
.step h3 { font-size: 19px; }
.step p { color: var(--muted); margin: 8px 0 0; }

/* Pricing */
.plan { display: flex; flex-direction: column; }
.plan-pro { border: 2px solid var(--accent); }
.plan-head { display: flex; align-items: center; gap: 10px; }
.plan-head h3 { font-size: 24px; }
.plan-badge { font-size: 12px; font-weight: 800; color: var(--muted); background: var(--bg-alt); border: 1px solid var(--border); padding: 3px 10px; border-radius: 999px; }
.plan-badge.pro { color: var(--accent-dark); background: var(--banner-bg); border-color: #ffd9c2; }
.plan-price { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; margin: 14px 0 2px; }
.plan-per { font-size: 18px; font-weight: 700; color: var(--muted); }
.plan-blurb { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan-list li { position: relative; padding: 7px 0 7px 26px; font-size: 15px; border-bottom: 1px solid var(--border); }
.plan-list li:last-child { border-bottom: 0; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan-list li b { font-weight: 800; }
.pricing-note { text-align: center; color: var(--faint); font-size: 13px; margin-top: 22px; }

/* Screenshots */
.shots { display: flex; gap: 20px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
.shot-item { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.shot-item figcaption { font-size: 14px; font-weight: 700; color: var(--muted); }
.shot {
  position: relative; width: 188px; aspect-ratio: 9 / 19.5; border-radius: 26px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.shot-ph, .shot img { position: absolute; inset: 0; width: 100%; height: 100%; }
.shot img { object-fit: cover; display: block; }
.shot-ph {
  display: grid; place-items: center; text-align: center;
  color: var(--faint); font-weight: 700; font-size: 13px; padding: 14px;
  background: linear-gradient(160deg, #ffffff, var(--bg-alt));
}

/* CTA band */
.cta { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; padding: 80px 0; }
.cta-inner { text-align: center; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.cta p { font-size: 18px; opacity: 0.92; margin: 14px auto 28px; max-width: 36em; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.signup { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.signup input {
  width: min(320px, 80vw); border: 0; border-radius: 999px; padding: 14px 20px;
  font-size: 16px; font-family: inherit; color: var(--text); background: #fff;
}
.signup input:focus { outline: 3px solid rgba(255,255,255,0.55); }
.signup-msg { margin-top: 14px; font-weight: 700; color: #fff; }

/* FAQ */
.faq { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 17px; padding: 16px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-weight: 800; }
.faq[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin: 0 0 16px; }

/* Footer */
.footer { background: var(--text); color: #f3ede8; padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand .brand-name { color: #fff; margin-left: 8px; }
.footer-brand .logo { display: inline-grid; vertical-align: middle; }
.footer-tag { color: #b6aaa1; margin: 12px 0 0; font-size: 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: #d8cec7; font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: #b6aaa1; font-size: 13px; }

/* Legal pages */
.legal-page { padding: 60px 0 80px; }
.legal-page h1 { font-size: 36px; font-weight: 800; }
.legal-page h2 { font-size: 22px; margin-top: 32px; }
.legal-page p, .legal-page li { color: #4a423d; }
.legal-page .updated { color: var(--muted); margin-top: 6px; }

/* Scroll-reveal */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 66px; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--border); padding: 12px 20px 18px;
  }
  .nav-links.open a { padding: 10px 4px; }
  .nav-toggle { display: block; }
  .features, .steps, .pricing { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
