:root {
  --bg: #faf9f6;
  --bg-alt: #f0efe9;
  --card: #ffffff;
  --ink: #22302a;
  --ink-soft: #5d6c64;
  --sage: #5b8a72;
  --sage-dark: #3e6b54;
  --sage-light: #e7f0ea;
  --amber: #e8a13c;
  --border: #e3e1da;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--sage-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #22302a 0%, #2e4438 55%, #3e6b54 100%);
  color: #f2f6f3;
  padding: 0 24px 90px;
}
.hero-small { padding-bottom: 50px; }

nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #f2f6f3;
}
.brand-accent { color: #9cc7ae; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: #cfdcd4; font-size: 14.5px; font-weight: 600; }
.nav-links a:hover { color: #ffffff; text-decoration: none; }

.hero-inner { max-width: var(--max); margin: 0 auto; padding-top: 60px; }
.hero-small .hero-inner { padding-top: 20px; }
.hero h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero .accent { color: #9cc7ae; }
.hero-local {
  display: inline-block;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 600;
  color: #cfdcd4;
  margin-top: 12px;
  letter-spacing: 0;
}
.lede {
  margin-top: 22px;
  max-width: 640px;
  font-size: 18px;
  color: #cfdcd4;
}
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-dark); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #f2f6f3;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); }

/* ── Sections ── */
.section { max-width: var(--max); margin: 0 auto; padding: 72px 24px; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.3px; }
.section-sub { color: var(--ink-soft); margin-top: 6px; font-size: 16px; }

/* ── Values ── */
.values {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--ink-soft); }

/* ── App cards ── */
.app-card {
  margin-top: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}
.app-card-ghost {
  border-style: dashed;
  background: transparent;
  padding: 24px 30px;
}
.app-icon {
  font-size: 52px;
  background: var(--sage-light);
  border-radius: 20px;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.app-card h3 { font-size: 24px; }
.badge {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}
.app-tagline { color: var(--sage-dark); font-weight: 600; margin-top: 4px; }
.app-card p { margin-top: 10px; max-width: 640px; }
.app-features { margin-top: 14px; list-style: none; }
.app-features li { padding: 3px 0; font-size: 14.5px; }
.app-links { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.coming-soon { color: var(--ink-soft); font-size: 14px; font-style: italic; }
.app-disclaimer {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  max-width: 640px;
}

/* ── Timeline ── */
.timeline { margin-top: 30px; border-left: 3px solid var(--sage-light); padding-left: 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 16px 0 16px 24px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8.5px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage);
  border: 3px solid var(--bg);
}
.timeline-version {
  font-weight: 800;
  color: var(--sage-dark);
  min-width: 52px;
  font-size: 15px;
}
.timeline-body { font-size: 14.5px; color: var(--ink-soft); }
.timeline-body strong { color: var(--ink); }

/* ── Feedback ── */
.feedback-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.feedback-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.feedback-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: var(--sage);
}
.feedback-icon { font-size: 30px; margin-bottom: 8px; }
.feedback-card h3 { font-size: 15.5px; }
.feedback-card p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

/* ── Legal page ── */
.legal { max-width: 780px; }
.legal h2 { font-size: 21px; margin-top: 38px; }
.legal p, .legal ul { margin-top: 12px; color: #3a463f; font-size: 15.5px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.last-updated { color: var(--ink-soft) !important; font-size: 13.5px !important; }

/* ── Footer ── */
footer {
  background: #22302a;
  color: #cfdcd4;
  padding: 40px 24px 30px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-tag { font-size: 13.5px; margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #cfdcd4; font-size: 14px; }
.footer-fine {
  max-width: var(--max);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12.5px;
  color: #8fa39a;
}

@media (max-width: 640px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .app-card { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
}

/* ── Hero grid + phone mockup ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.trust-strip {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-strip span {
  font-size: 13.5px;
  color: #cfdcd4;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px;
  border-radius: 99px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0 20px;
}
.phone {
  width: 250px;
  background: #0d1110;
  border: 6px solid #2c3a33;
  border-radius: 34px;
  padding: 10px 8px 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: rotate(2deg);
}
.phone-notch {
  width: 80px; height: 5px; border-radius: 99px;
  background: #2c3a33; margin: 0 auto 10px;
}
.phone-screen {
  background: #141a16;
  border-radius: 18px;
  padding: 14px 12px 10px;
  font-size: 11px;
}
.ps-header { display: flex; justify-content: space-between; align-items: flex-start; }
.ps-greet { color: #93a89c; font-size: 9.5px; }
.ps-title { color: #f1f6f2; font-weight: 800; font-size: 15px; }
.ps-badge {
  background: #26332b; color: #9cc7ae; font-size: 7.5px; font-weight: 700;
  padding: 2px 7px; border-radius: 99px;
}
.ps-hero {
  margin-top: 10px;
  background: linear-gradient(150deg, #3e6b54, #2c4a3a);
  border-radius: 12px;
  padding: 10px 12px;
  color: #fff;
}
.ps-count { font-size: 20px; font-weight: 800; }
.ps-count span { font-size: 10px; font-weight: 600; opacity: .85; }
.ps-bar { margin-top: 6px; height: 5px; background: rgba(255,255,255,.25); border-radius: 99px; }
.ps-fill { width: 66%; height: 5px; background: #fff; border-radius: 99px; }
.ps-next { margin-top: 7px; font-size: 9px; font-weight: 700; color: #d7e6dc; }
.ps-section { margin: 10px 2px 6px; font-size: 8px; font-weight: 800; letter-spacing: 1px; color: #7d9288; }
.ps-row {
  display: flex; align-items: center; gap: 8px;
  background: #1f2722; border: 1px solid #2e3a33;
  border-radius: 10px; padding: 8px 10px; margin-bottom: 6px;
}
.ps-row.ps-done { opacity: .55; }
.ps-ico { font-size: 15px; }
.ps-med { flex: 1; line-height: 1.25; }
.ps-med strong { display: block; color: #f1f6f2; font-size: 11px; }
.ps-med span { color: #93a89c; font-size: 9px; }
.ps-strike strong { text-decoration: line-through; }
.ps-btn {
  background: #5b8a72; color: #fff; font-size: 9px; font-weight: 700;
  padding: 5px 10px; border-radius: 99px;
}
.hero-float {
  position: absolute;
  background: #fff;
  color: #22302a;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  animation: floaty 3.2s ease-in-out infinite;
}
.hf1 { top: 22%; right: 4%; }
.hf2 { bottom: 12%; left: 2%; animation-delay: 1.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ── Feature grid in app card ── */
.feat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.feat {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.feat-ico { font-size: 21px; }
.feat strong { display: block; font-size: 13.5px; }
.feat span { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { display: none; }
}
