* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Manrope', system-ui, sans-serif; background: #ffffff; -webkit-font-smoothing: antialiased; color: #10201b; }
::selection { background: rgba(29,158,117,0.22); color: #10201b; }
@keyframes floatOrb { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-26px) scale(1.06); } }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Hover states */
.nav-login:hover { background: #106b4a !important; }
.nav-cta:hover   { background: #106b4a !important; }
.hero-btn-p { transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease; }
.hero-btn-p:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(29,158,117,0.44), inset 0 1px 0 rgba(255,255,255,0.22) !important; }
.hero-btn-s { transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease; }
.hero-btn-s:hover { background: #f3faf7 !important; border-color: rgba(15,107,74,0.45) !important; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(16,40,30,0.12) !important; }
.price-btn-light:hover { background: #e9efed !important; }
.price-btn-teal:hover  { background: #106b4a !important; }
.cta-btn:hover   { background: #f0fdf8 !important; }
.cta-btn-ghost:hover { background: rgba(255,255,255,0.12) !important; }
.footer-link:hover { color: #10201b !important; }
.built-for-card:hover { box-shadow: 0 18px 40px rgba(16,40,30,0.12) !important; transform: translateY(-4px); border-color: rgba(22,133,95,0.4) !important; }
.built-for-card:hover img { transform: scale(1.05); }
.built-for-card:hover .built-for-cta { color: #0b3d2c !important; gap: 10px !important; }
.compare-pill { transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease; }
.compare-pill:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 28px rgba(29,158,117,0.38) !important; }
.niche-pill { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease; }
.niche-pill:hover { transform: translateY(-2px); background: #f3faf7 !important; border-color: rgba(15,107,74,0.45) !important; box-shadow: 0 8px 20px rgba(16,40,30,0.08) !important; }
.faq-item:hover  { background: #fafcfb; }
.footer-cta { transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }
.footer-cta:hover { background: #106b4a !important; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(29,158,117,0.34) !important; }

/* ── Nav scroll spy ─────────────────────────────────────── */
.nav-spy { position: relative; padding-bottom: 2px; transition: color 0.18s ease; }
.nav-spy::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 999px; background: #16855f; transform: scaleX(0); transform-origin: left; transition: transform 0.18s ease; }
.nav-spy.is-active { color: #0f6b4a !important; }
.nav-spy.is-active::after { transform: scaleX(1); }

/* ── Feature fade-up ────────────────────────────────────── */
.feature-card { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.feature-card.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .feature-card { opacity: 1; transform: none; transition: none; }
  .nav-spy::after { transition: none; }
  .compare-pill, .niche-pill, .footer-cta, .hero-btn-p, .hero-btn-s, .built-for-card { transition: none !important; }
}

/* ── Mobile sticky CTA ──────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(16,32,27,0.08);
  box-shadow: 0 -8px 28px rgba(16,40,30,0.08);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.mobile-sticky-cta.is-visible { transform: translateY(0); }
.mobile-sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: linear-gradient(145deg,#1D9E75 0%, #0f6b4a 100%);
  color: #fff; font-weight: 800; font-size: 15.5px; padding: 14px 18px;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 10px 24px rgba(29,158,117,0.32);
}
@media (max-width: 640px) {
  .mobile-sticky-cta { display: block; }
  body.has-mobile-sticky { padding-bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-cta { transition: none; }
}

/* ── Founding announcement bar ─────────────────────────── */
.founding-announce {
  background: linear-gradient(90deg, #0b3d2c 0%, #11614a 50%, #0f6b4a 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
}
.founding-announce-text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.founding-announce-text strong { font-weight: 800; }

/* ── Founding offer hero badge ─────────────────────────── */
.founding-badge-wrap {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: foundingBadgeFloat 5.5s ease-in-out infinite;
}
.founding-badge {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.founding-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 36px rgba(11, 61, 44, 0.28));
}
.founding-badge-ring-track {
  fill: none;
  stroke: rgba(15, 107, 74, 0.16);
  stroke-width: 10;
}
.founding-badge-ring-fill {
  fill: none;
  stroke: #e8b84a;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.7s ease;
}
.founding-badge-inner {
  position: relative;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.16), transparent 42%),
    linear-gradient(160deg, #16855f 0%, #0b3d2c 100%);
  border: 3px solid rgba(246, 213, 138, 0.55);
  box-shadow:
    inset 0 0 0 6px rgba(11, 61, 44, 0.35),
    0 16px 40px rgba(11, 61, 44, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 16px;
  color: #ffffff;
}
.founding-badge-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.founding-badge-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.founding-badge-dollar {
  font-size: clamp(42px, 8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff8e8;
}
.founding-badge-unit {
  font-size: 13px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.88);
}
.founding-badge-life {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f6d58a;
}
.founding-badge-claimed {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}
.founding-badge-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -14px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6d58a 0%, #e8b84a 100%);
  color: #5c3f08;
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(193, 146, 44, 0.28);
  white-space: nowrap;
}
.founding-badge-ribbon strong { font-weight: 900; }
.founding-badge-note {
  margin: 14px 0 0;
  max-width: 260px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #56655f;
}
@keyframes foundingBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── How-it-works screenshots / carousel ───────────────── */
.how-step-card { display: flex; flex-direction: column; gap: 18px; }
.how-shot, .how-carousel { width: 100%; }
.how-mobile-gallery { display: none; }
.how-shot-img {
  width: 100%;
  height: auto;
  aspect-ratio: 393 / 852;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.how-shot-caption {
  margin: 10px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}
.how-carousel { position: relative; }
.how-carousel-track { position: relative; }
.how-carousel-slide {
  display: none;
  margin: 0;
}
.how-carousel-slide.is-active { display: block; }
.how-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.how-carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.how-carousel-btn:hover { background: rgba(255, 255, 255, 0.18); }
.how-carousel-dots { display: flex; gap: 7px; align-items: center; }
.how-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.how-carousel-dot.is-active { background: #ffffff; width: 18px; }
@media (prefers-reduced-motion: reduce) {
  .founding-badge-wrap { animation: none; }
  .founding-badge-ring-fill { transition: none; }
}

/* ── Hero split layout ─────────────────────────────────── */
.hero-grid { display: flex; flex-direction: column; align-items: center; gap: 56px; }
.hero-copy { max-width: 560px; text-align: center; }
.hero-ctas { justify-content: center; }
.hero-trust { display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #56655f; list-style: none; }
.hero-visual { position: relative; width: 100%; max-width: 420px; margin: 0 auto; display: flex; justify-content: center; padding-top: 12px; }
.dashboard-mock { width: 100%; }
.dashboard-row:hover { background: #f2f6f4; }

/* ── Comparison table ──────────────────────────────────── */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 20px; border: 1px solid rgba(16,32,27,0.08); box-shadow: 0 8px 30px rgba(16,40,30,0.05); background: #ffffff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; font-size: 15px; border-bottom: 1px solid rgba(16,32,27,0.07); }
.compare-table th { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #56655f; background: #f8faf9; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 700; color: #10201b; width: 28%; }
.compare-muted { color: #56655f; font-weight: 600; }
.compare-win { color: #0f6b4a; font-weight: 800; background: rgba(29,158,117,0.08); }
.compare-win-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(29,158,117,0.14); color: #0f6b4a; font-weight: 800; font-size: 14px; }

/* ── Built for your business ───────────────────────────── */
.built-for-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.built-for-card { transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }

/* ── Feature checklist (comparison pages) ──────────────── */
.check-yes { color: #0f6b4a; font-weight: 800; }
.check-no  { color: #56655f; font-weight: 700; }
.vs-pricing-grid { display: flex; flex-direction: column-reverse; gap: 28px; align-items: stretch; }
.vs-scenario-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }

@media (max-width: 900px) {
  .built-for-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .built-for-grid { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
  .hero-trust { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
}

@media (min-width: 1024px) {
  .hero-grid { flex-direction: row; align-items: center; justify-content: space-between; gap: 64px; text-align: left; }
  .hero-copy { text-align: left; margin: 0; }
  .hero-badge { margin-left: 0 !important; margin-right: auto !important; }
  .hero-ctas { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }
  .hero-phone-wrap { flex-shrink: 0; }
  .hero-visual { max-width: 460px; }
  .founding-badge-wrap { max-width: 440px; }
  .founding-badge { width: min(100%, 400px); }
  .founding-badge-eyebrow { font-size: 14px; }
  .founding-badge-dollar { font-size: 72px; }
  .founding-badge-unit { font-size: 16px; }
  .founding-badge-life { font-size: 24px; }
  .founding-badge-claimed { margin-top: 14px; font-size: 14px; }
  .founding-badge-ribbon { margin-top: -18px; padding: 12px 28px; font-size: 16px; }
  .founding-badge-note { margin-top: 18px; max-width: 320px; font-size: 15px; }
  .vs-pricing-grid { flex-direction: row; }
  .vs-pricing-grid > * { flex: 1; }
}

/* ── Mobile overrides ──────────────────────────────────── */
@media (max-width: 1023px) {
  .how-step-media { display: none !important; }
  .how-mobile-gallery {
    display: block;
    max-width: 300px;
    margin: 28px auto 0;
  }
}

@media (max-width: 640px) {
  .nav-c      { padding: 12px 20px !important; }
  .nav-links  { display: none !important; }

  #top        { padding: 56px 20px 64px !important; }
  #why        { padding: 60px 20px !important; }
  .landing-s  { padding: 60px 20px !important; }
  #how        { padding: 60px 20px !important; }
  #why-niche  { padding: 56px 20px !important; }
  #features   { padding: 60px 20px !important; }
  #built-for-business { padding: 60px 20px !important; }
  #pricing    { padding: 60px 20px !important; }
  #pricing-compare { padding: 60px 20px !important; }
  #cost-examples { padding: 60px 20px !important; }
  #features-compare { padding: 60px 20px !important; }
  #faq        { padding: 60px 20px !important; }
  .cta-s      { padding: 64px 20px !important; }
  footer      { padding: 36px 20px 28px !important; }
  .footer-top { flex-direction: column !important; align-items: center !important; text-align: center !important; }
  .footer-top > div:last-child { align-items: center !important; }
  .footer-i   { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 16px !important; }

  .price-card-inner { padding: 32px 20px !important; }
  .price-features   { grid-template-columns: 1fr !important; gap: 10px !important; }

  .faq-item { padding: 18px 20px !important; }
  .faq-q    { font-size: 15px !important; }

  .hero-btn-p, .hero-btn-s { font-size: 15px !important; padding: 13px 22px !important; }
  .cta-btn, .cta-btn-ghost { font-size: 16px !important; padding: 15px 26px !important; }

  .hero-visual { flex-direction: column; align-items: stretch; max-width: 380px; padding-top: 0; }
  .dashboard-stats { grid-template-columns: repeat(3,1fr) !important; gap: 8px !important; }
  .compare-table th, .compare-table td { padding: 14px 14px; font-size: 14px; }
}
