/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds — warm cream */
  --bg:              #FAF8F5;
  --bg-soft:         #F5F1EB;
  --bg-raised:       #FFFFFF;
  --bg-subtle:       #EDE8DF;
  --bg-card:         #FFFFFF;
  --card-bg:         #FFFFFF;

  /* Text — warm dark brown, not cold black */
  --text:            #1C1917;
  --text-primary:    #1C1917;
  --text-secondary:  #57534E;
  --text-sec:        #57534E;
  --text-muted:      #A8A29E;
  --muted:           #78716C;
  --light:           #C4B9AE;

  /* Accent — warm amber/terracotta instead of cold purple */
  --accent:          #C2591A;
  --accent-hover:    #A84A14;
  --accent-dark:     #9A4212;
  --accent-dim:      #D97706;
  --accent-glow:     rgba(194, 89, 26, 0.08);

  /* Borders — warm tones */
  --border:          #E7E0D5;
  --border-soft:     #F0EBE3;
  --border-lt:       #EDE8DF;
  --green:           #16a34a;

  /* Radii */
  --radius:          14px;
  --radius-sm:       8px;
  --radius-lg:       14px;
  --radius-xl:       20px;

  /* Shadows — warmer tint */
  --shadow:          0 4px 20px rgba(28, 25, 23, 0.07);
  --shadow-lg:       0 12px 48px rgba(28, 25, 23, 0.10);

  /* Layout */
  --max-w:           1140px;
  --max-w-narrow:    780px;
  --nav-h:           64px;
  --font:            'Lora', 'Georgia', serif;
  --font-ui:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Stripe background utility */
  --stripe-plain:    #FAF8F5;
  --stripe-ink:      194 89 26;
  --stripe-a1:       0.02;
  --stripe-a2:       0.04;
  --stripe-a3:       0.015;
  --stripe-tile:     360px;
  --stripe-opacity:  0.9;
  --sep-color:       rgba(28, 25, 23, 0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 1000;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 12px;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== STICKY NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-lt);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.site-nav .logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-sec);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile CTAs inside nav-links (hidden on desktop) */
.nav-mobile-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-sec);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease,
              transform 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(109, 94, 252, 0.28);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(109, 94, 252, 0.18);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(109, 94, 252, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-glow);
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.08);
}
.btn-ghost:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(109, 94, 252, 0.10);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 7px 16px;
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.875rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}

/* Very subtle light lavender glow */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(109, 94, 252, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-sec);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-strip span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}
.trust-strip span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.75;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: var(--max-w-narrow);
  margin: 0 auto 52px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ===== CARDS GRID (Problem → Mechanism → Outcome) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(109, 94, 252, 0.05);
}

.card-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ===== STEPS (How it works) ===== */
.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-lt);
}
.step:last-child { border-bottom: none; }

.step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 12px;
  flex-shrink: 0;
}

.step-pro .step-num {
  background: var(--accent-glow);
  border-color: rgba(109, 94, 252, 0.2);
  color: var(--accent);
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.pro-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ===== SOCIAL PROOF ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(109, 94, 252, 0.05);
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial cite {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
}

.proof-badge {
  display: flex;
  justify-content: center;
}

.proof-badge-inner {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(109, 94, 252, 0.06);
}

.proof-badge-inner strong {
  color: #16a34a;
  white-space: nowrap;
}

.proof-badge-inner span {
  color: var(--text-sec);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-lt);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  -webkit-user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ===== LEGAL SECTION ===== */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(109, 94, 252, 0.05);
}

.legal-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-card p {
  font-size: 0.875rem;
  color: var(--text-sec);
  margin-bottom: 14px;
  line-height: 1.6;
}

.legal-card a {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== FINAL CTA ===== */
.section-final-cta {
  padding: 100px 0;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.07) 0%, rgba(109, 94, 252, 0.03) 100%);
  border: 1px solid rgba(109, 94, 252, 0.18);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
}

.final-cta h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 1.0625rem;
  color: var(--text-sec);
  margin-bottom: 32px;
}

.install-note {
  font-size: 0.8125rem !important;
  color: var(--text-muted) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border-lt);
  padding: 56px 0 40px;
  background: var(--bg-raised);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-sec);
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border-lt);
  padding-top: 24px;
  text-align: center;
}

.footer-identity p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2px;
}

.footer-identity strong {
  color: var(--text-sec);
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== SUBPAGES (privacy, terms) ===== */
.subpage-wrap {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.subpage {
  padding: 48px 0 80px;
}

.subpage h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.subpage .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.subpage h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
}

.subpage h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.subpage p {
  font-size: 0.9375rem;
  color: var(--text-sec);
  margin-bottom: 14px;
  line-height: 1.75;
}

.subpage ul {
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subpage li {
  font-size: 0.9375rem;
  color: var(--text-sec);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.subpage li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-soft);
}

.subpage strong {
  color: var(--text);
}

.identity-block {
  background: var(--bg-subtle);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0 24px;
}

.identity-block p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.55;
  margin-bottom: 2px;
}

.identity-block p:last-child { margin-bottom: 0; }

.identity-label {
  font-size: 0.7rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted) !important;
  margin-bottom: 8px !important;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.back-link:hover { color: var(--text-sec); }

/* ===== FEEDBACK FAB ===== */
.feedback-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(109, 94, 252, 0.12);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.feedback-fab:hover {
  background: var(--bg-subtle);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(109, 94, 252, 0.18);
  text-decoration: none;
}

.feedback-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.feedback-note { margin-top: 10px; font-size: 0.875rem; opacity: 0.7; text-align: center; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border-lt);
    padding: 16px 24px 24px;
    gap: 16px;
    z-index: 99;
  }

  .nav-links.open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border-lt);
  }

  .hero { padding: 56px 0 32px; }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px;
  }

  .trust-strip {
    gap: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header h2 {
    font-size: 1.625rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .final-cta {
    padding: 48px 24px;
  }

  .final-cta h2 {
    font-size: 1.75rem;
  }

  .step {
    gap: 16px;
  }

}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feedback-fab {
    right: 14px;
    bottom: 14px;
  }
}

/* ===== Logo (bare selector covers both nav + footer instances) ===== */
.logo { font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; letter-spacing: -0.3px; }

/* ===== Section shell ===== */

.section-soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--text); }
.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== Hero ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EEEEFF;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 28px;
}
/* Hero social proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.hero-proof-stars {
  color: #F59E0B;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.hero-proof-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== Demo screenshots ===== */
.demo-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.demo-shot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.demo-shot {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.demo-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.22), 0 6px 20px rgba(0,0,0,0.12);
}

.demo-shot-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  max-width: 280px;
}

@media (max-width: 640px) {
  .demo-screenshots {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 360px;
  }
}

/* ===== Why it works ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-icon { font-size: 26px; margin-bottom: 14px; line-height: 1; }
.why-card h3 { font-size: 15px; font-weight: 650; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
@media (max-width: 680px) { .why-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ===== How it works ===== */
.steps-list { max-width: 500px; margin: 0 auto 40px; display: flex; flex-direction: column; gap: 22px; }
.step-row { display: flex; gap: 18px; align-items: flex-start; }
.step-text { font-size: 16px; color: var(--text); line-height: 1.5; padding-top: 4px; }
.coming-next-block {
  max-width: 500px;
  margin: 0 auto;
  background: #EEEEFF;
  border: 1px solid #C7D2FE;
  border-radius: var(--radius);
  padding: 18px 22px;
}
.coming-next-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.coming-next-block p { font-size: 14px; color: #4338CA; line-height: 1.55; }

/* ===== CTA strip ===== */
.cta-strip { background: #2C1810; text-align: center; padding: 88px 0; }
.cta-strip h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 32px;
}
.cta-strip .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 10px;
}
.cta-strip .btn-primary:hover { background: #F3F4F6; border-color: #F3F4F6; }
@media (max-width: 640px) { .cta-strip h2 { font-size: 28px; } }

/* ===== FAQ ===== */
.faq-item:first-child { border-top: 1px solid var(--border); }

/* ===== Footer ===== */
.footer-col { display: flex; flex-direction: column; gap: 10px; }

/* ===== STRIPE BACKGROUND UTILITY ===== */
.stripe {
  position: relative;
  overflow: hidden;
  background: var(--stripe-plain);
}

.stripe--plain {
  background: var(--stripe-plain);
}

.stripe--squares {
  background: var(--stripe-plain);
}

.stripe--squares::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--stripe-opacity);

  --tile: var(--stripe-tile);
  --half: calc(var(--stripe-tile) / 2);

  background-image:
    linear-gradient(rgba(var(--stripe-ink) / var(--stripe-a1)), rgba(var(--stripe-ink) / var(--stripe-a1))),
    linear-gradient(rgba(var(--stripe-ink) / var(--stripe-a2)), rgba(var(--stripe-ink) / var(--stripe-a2))),
    linear-gradient(rgba(var(--stripe-ink) / var(--stripe-a3)), rgba(var(--stripe-ink) / var(--stripe-a3))),
    linear-gradient(transparent, transparent);

  background-size:
    var(--half) var(--half),
    var(--half) var(--half),
    var(--half) var(--half),
    var(--half) var(--half);

  background-position:
    0 0,
    var(--half) 0,
    0 var(--half),
    var(--half) var(--half);

  background-repeat: repeat;
}

/* Lift content above the pseudo-element pattern */
.stripe .container {
  position: relative;
  z-index: 1;
}

/* Section separators */
.stripe::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sep-color);
  pointer-events: none;
  z-index: 2;
}

.stripe--no-sep::after {
  display: none;
}

@media (max-width: 640px) {
  .stripe--squares { --stripe-tile: 280px; }
}

/* ===== TYPOGRAPHY RHYTHM ===== */

/* Heading baseline — tighter line-height and slight tracking.
   More-specific class rules (.hero h1, .section-header h2, etc.)
   already override where tighter values are set; this fills in
   the gaps (e.g. .why-card h3, .step-body h3) cleanly. */
h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Constrain long prose paragraphs inside stripe sections.
   Centered paragraphs retain their existing margin: auto rules
   from more-specific selectors (.hero-sub, .section-header p). */
.stripe p {
  max-width: 62ch;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

/* --- Layout shell --- */
#pricing {
  scroll-margin-top: calc(var(--nav-h) + 26px); /* nav height (64px) + buffer = 90px */
}

.pricing {
  padding: 96px 0 80px;
}

.pricing .section-header {
  margin-bottom: 40px;
}

.pricing-note {
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin: 8px auto 0;
  max-width: none;
}

/* --- Card grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

/* --- Base card --- */
.pricing-card {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
}

/* --- Highlighted card (Pro Monthly) --- */
.pricing-card--highlight {
  border-color: #5C4EFF;
  box-shadow: 0 4px 24px rgba(92, 78, 255, 0.14);
}

.pricing-card--highlight:hover {
  box-shadow: 0 16px 48px rgba(92, 78, 255, 0.22);
}

/* --- Badge --- */
.pricing-badge--neutral {
  background: rgba(17,24,39,0.06);
  color: #374151;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5C4EFF;
  background: rgba(92, 78, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 20px;
  align-self: flex-start;
}

/* --- Plan name --- */
.pricing-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px;
}

/* --- Price display --- */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 4px;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.125rem;
  font-weight: 600;
  color: #6B7280;
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-period {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-left: 2px;
}

.pricing-sub {
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin: 0 0 24px;
  min-height: 1.2em;
}

/* --- Feature list --- */
.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: #374151;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: #5C4EFF;
  border-radius: 50%;
  opacity: 0.85;
  /* Checkmark via clip-path */
  clip-path: polygon(14% 47%, 6% 56%, 38% 84%, 94% 22%, 85% 14%, 38% 65%);
}

.pricing-features li.pricing-feat--dim {
  color: #9CA3AF;
}

.pricing-features li.pricing-feat--dim::before {
  background-color: #D1D5DB;
  clip-path: none;
  border-radius: 2px;
  width: 8px;
  height: 2px;
  top: 8px;
  left: 2px;
}

/* --- CTA button inside card --- */
.pricing-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --- Bottom info strip --- */
.pricing-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 980px;
  margin: 40px auto 0;
}

@media (min-width: 640px) {
  .pricing-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-info-item {
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
}

.pricing-info-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.pricing-info-item p {
  font-size: 0.8125rem;
  color: #6B7280;
  margin: 0;
  max-width: none;
}

/* Override stripe p constraint inside info items */
.pricing-info-item p {
  max-width: none;
}

#demo, #how-it-works { padding: 88px 0; }

/* ===== HERO EM ===== */
.hero-em {
  font-style: italic;
  color: var(--accent);
}

/* ===== PROBLEM SECTION ===== */
.problem-section { background: var(--bg); }

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.problem-text .section-label { margin-bottom: 16px; }

.problem-text h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.problem-text p {
  font-size: 1.0625rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: none;
}

.problem-callout {
  background: #FFF7ED;
  border-left: 3px solid #F97316;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 0.9375rem !important;
  color: var(--text) !important;
  font-weight: 500;
  margin-top: 24px !important;
}

.loop-card {
  background: var(--text);
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
}

.loop-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.loop-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loop-step {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.loop-step--guilt {
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
}

.loop-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-left: 4px;
}

.loop-arrow {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.875rem;
  padding: 2px 0;
}

.loop-arrow--back {
  color: #FCA5A5;
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== FOUNDER SECTION ===== */
.stripe--soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.founder-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 4px solid var(--border-lt);
  box-shadow: 0 8px 32px rgba(92, 78, 255, 0.12);
}

.founder-name-tag {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name-tag strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.founder-name-tag span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.founder-story .section-label { margin-bottom: 16px; }

.founder-story h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.founder-story p {
  font-size: 1.0625rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: none;
}

.founder-sign {
  font-style: italic;
  color: var(--text-muted) !important;
  margin-top: 8px !important;
  font-size: 1rem !important;
}

@media (max-width: 768px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-photo-wrap {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .founder-photo {
    width: 80px;
    height: 80px;
  }
  .founder-name-tag {
    text-align: left;
  }
}

/* ===== TESTIMONIALS NOTE ===== */
.testimonials-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: none !important;
}
.testimonials-note a { color: var(--accent); }

/* ===== CTA STRIP SUB ===== */
.cta-strip-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  margin-top: -16px;
  max-width: none !important;
}

/* ===== FOOTER LEGAL SMALL ===== */
.footer-legal-small {
  font-size: 0.7rem !important;
  color: var(--text-muted);
  opacity: 0.55;
  margin-top: 4px !important;
}

/* ===== HERO INSTALL NOTE ===== */
.hero-install-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-install-note span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== HERO FOUNDER TRUST ===== */
.hero-founder-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.hero-founder-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border-lt);
}
.hero-founder-trust span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== CTA STRIP TAGLINE ===== */
.cta-strip-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 16px !important;
  max-width: none !important;
}

/* ===== WARM INDIE OVERRIDES ===== */

/* Hero — subtle warm paper texture feeling */
.hero.stripe {
  background: var(--bg);
  position: relative;
}
.hero.stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C2591A' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* Hero proof stars — warm gold */
.hero-proof-stars {
  color: #D97706;
}

/* Section label — warm instead of purple */
.section-label {
  color: var(--accent) !important;
}

/* Problem callout — warm amber border */
.problem-callout {
  border-left-color: var(--accent) !important;
  background: rgba(194, 89, 26, 0.05) !important;
}

/* Founder section — warm parchment bg */
.founder-section {
  background: #F5F0E8 !important;
  border-top: 1px solid #E8DDD0 !important;
  border-bottom: 1px solid #E8DDD0 !important;
}

/* Step numbers — warm circle */
.step-num {
  background: rgba(194, 89, 26, 0.1) !important;
  color: var(--accent) !important;
  border: none !important;
}

/* Why cards — warm hover */
.why-card:hover {
  border-color: rgba(194, 89, 26, 0.25) !important;
  box-shadow: 0 8px 32px rgba(194, 89, 26, 0.08) !important;
}

/* Testimonials — warm card bg */
.testimonial {
  background: #FFFCF8 !important;
  border: 1px solid #EDE8DF !important;
}

/* Pricing highlight — warm instead of purple */
.pricing-card--highlight {
  background: #2C1810 !important;
  border-color: #2C1810 !important;
}
.pricing-card--highlight:hover {
  background: #3D2215 !important;
}

/* Hero install note — slightly warmer */
.hero-install-note span {
  color: var(--text-muted);
}


/* ===== PRICING HIGHLIGHT CARD — TEXT FIX ===== */
.pricing-card--highlight .pricing-name,
.pricing-card--highlight .pricing-amount,
.pricing-card--highlight .pricing-currency {
  color: #FFFFFF;
}
.pricing-card--highlight .pricing-period,
.pricing-card--highlight .pricing-sub {
  color: rgba(255,255,255,0.55);
}
.pricing-card--highlight .pricing-features li {
  color: rgba(255,255,255,0.85);
}
.pricing-card--highlight .pricing-features li::before {
  background-color: #E8A87C;
}
.pricing-card--highlight .pricing-features li.pricing-feat--dim {
  color: rgba(255,255,255,0.35);
}
.pricing-card--highlight .pricing-badge {
  background: rgba(255,255,255,0.12);
  color: #E8A87C;
}
