/*
Theme Name: pricewise.ai — Invoice Intelligence for Grocers
Theme URI: https://pricewise.ai
Author: pricewise.ai
Author URI: https://pricewise.ai
Description: Launch marketing site for pricewise.ai — the invoice-intelligence platform for independent grocers. Fully editable via the Customizer: hero, how-it-works, feature stories, testimonials, talk-to-a-rep pricing, FAQ, and contact details. Ships the real Terms of Use and Privacy Policy as pages, a styled blog, a 404, and welcome/thank-you confirmation pages. Every call to action points at app.pricewise.ai.
Version: 12.55.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pricewise
Tags: one-column, custom-menu, custom-logo, editor-style, blog
*/

/* ============================================================
   1. TOKENS — the pricewise.ai design system (shared with the
   5.8 app: same ink, same green, same cream, same type trio).
   ============================================================ */
:root {
  /* surfaces */
  --bg: #ffffff;
  --cream: #faf9f7;
  --cream-2: #f4f1ec;
  --paper: #ffffff;

  /* ink — AA ramp from the app (text2 .70 / text3 .61) */
  --ink: #1a1916;
  --ink-2: rgba(26, 25, 22, 0.70);
  --mute: rgba(26, 25, 22, 0.61);
  --faint: rgba(26, 25, 22, 0.60);
  --line: rgba(26, 25, 22, 0.08);
  --line-2: rgba(26, 25, 22, 0.14);

  /* accents */
  --green: #2d6a4f;
  --green-hover: #1b4433;
  --green-deep: #1b4433;
  --green-band: #1b4433;
  --green-deepest: #071a13;
  --green-soft: #e4ede7;
  --green-text: #2d6a4f;
  --red: #b3402a;
  --red-soft: #faece8;
  --ochre: #c07f2a;
  --ochre-deep: #8f5a12;
  --amber-text: #8f5a12;
  --amber-soft: #f6ead8;
  --blue: #1a5c80;
  --blue-soft: #e8f2f8;

  /* type — Inter throughout, DM Mono money */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "DM Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  /* elevation — lifted from the app token layer */
  --shadow-sm: 0 1px 2px rgba(26, 25, 22, 0.05), 0 2px 10px rgba(26, 25, 22, 0.05);
  --shadow-md: 0 2px 8px rgba(11, 35, 26, 0.05), 0 18px 54px rgba(11, 35, 26, 0.11);
  --shadow-lg: 0 8px 26px rgba(8, 37, 27, 0.075), 0 34px 94px rgba(8, 37, 27, 0.16);
  --focus-ring: 0 0 0 3px var(--green-soft);

  /* shape */
  --r-sm: 6px;
  --r-md: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 68px;
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h4, h5 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--green); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--green-deep); color: #fff; }
.money, .num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* On dark bands and the footer the green focus ring is invisible — use white. */
.on-dark :focus-visible,
.proof-band :focus-visible,
.pricing-band :focus-visible,
.cta-band-green :focus-visible,
.site-footer :focus-visible { outline-color: #fff; }
/* light surfaces inside dark bands keep a visible dark-green ring */
.pricing-band .plan :focus-visible { outline-color: var(--green-deep); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--green-deep); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }


/* ============================================================
   3. TYPE HELPERS
   ============================================================ */
.kicker { display: block; font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.9rem; }
.section-title { font-size: clamp(1.8rem, 3.8vw, 2.7rem); max-width: 26ch; }
.section-sub { font-size: clamp(0.98rem, 1.5vw, 1.1rem); color: var(--mute); max-width: 58ch; margin-top: 0.9rem; line-height: 1.65; }
.on-dark .section-title { color: #fff; }
.on-dark .section-sub { color: rgba(255, 255, 255, 0.75); }
.on-dark .kicker { color: #9fd0b5; }

.check-inline { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-2); }
.check-inline svg { width: 15px; height: 15px; color: var(--green); flex: none; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background-color 0.18s, color 0.18s, border-color 0.18s;
}
.btn:active { transform: scale(0.985); }
.btn .arr { transition: transform 0.22s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-green, .btn-primary { background: var(--green); color: #fff; box-shadow: 0 2px 6px rgba(45, 106, 79, 0.22); }
.btn-green:hover, .btn-primary:hover { background: var(--green-hover); color: #fff; transform: translateY(-1.5px); box-shadow: 0 6px 18px rgba(27, 68, 51, 0.18); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { background: var(--cream); color: var(--green-deep); transform: translateY(-1.5px); box-shadow: 0 6px 18px rgba(27, 68, 51, 0.18); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; transform: translateY(-1.5px); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1rem; }

/* ============================================================
   5. HEADER + LOGO + MOBILE NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(250, 249, 247, 0.88);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 1.22rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink); text-decoration: none;
}
.logo:hover { color: var(--ink); }
.logo .logo-mark, .logo .custom-logo { width: 30px; height: 30px; flex: none; object-fit: contain; }
.logo .logo-lockup { width: auto; height: 30px; flex: none; object-fit: contain; }
/* white lockup on the dark footer + any dark band */
.site-footer .logo .logo-lockup,
.on-dark .logo .logo-lockup { filter: brightness(0) invert(1); }
.site-footer .logo, .on-dark .logo { font-size: 0; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; font-size: 0.88rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-2); border-radius: 999px;
  padding: 0.62rem 1.05rem;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: inline; }

.main-nav { display: none; }
.main-nav a { font-size: 0.92rem; font-weight: 600; color: var(--ink-2); text-decoration: none; transition: color 0.15s; }
.main-nav a:hover { color: var(--ink); }
.main-nav ul { display: contents; list-style: none; margin: 0; padding: 0; }
.main-nav li { display: contents; }
.main-nav.open {
  display: flex; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; align-items: stretch; gap: 0;
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 0.4rem 1.25rem 0.8rem;
}
.main-nav.open a { padding: 0.78rem 0.25rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
.main-nav.open li:last-child a, .main-nav.open > a:last-child { border-bottom: 0; }

.header-cta { display: flex; align-items: center; gap: 0.7rem; }
.header-cta .login-btn { display: none; }
.header-cta .btn { padding: 0.68rem 1.15rem; font-size: 0.88rem; }
@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; position: static; align-items: center; gap: 1.8rem; }
  .header-cta .login-btn { display: inline-flex; }
  .main-nav .nav-login, .main-nav .menu-cta { display: none; }
}
@media (max-width: 919px) {
  html, body { overflow-x: hidden; }
  .header-inner { gap: 0.75rem; }
  .header-cta { gap: 0; }
  .header-cta .login-btn, .header-cta > .btn-green { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border-radius: 12px; margin: 0; flex: none; }
  .main-nav .menu-cta { display: inline-flex; justify-content: center; width: 100%; margin-top: 0.6rem; }
  .main-nav .nav-login { display: block; font-weight: 700; color: var(--green-deep); border-top: 1px solid var(--line); margin-top: 0.35rem; padding-top: 0.85rem; }
}

/* anchor jumps land below the sticky header */
section[id] { scroll-margin-top: 84px; }

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative; padding: 2.6rem 0 0; text-align: center; overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(199, 221, 208, 0.50), transparent 42%),
    linear-gradient(180deg, #fbfaf6 0%, var(--cream) 62%, var(--bg) 100%);
}
.hero-text { max-width: 60rem; margin: 0 auto; }
.hero-text .hero-title { margin: 0 auto; }
.hero-title { font-size: clamp(2.6rem, 5.8vw, 4.2rem); line-height: 1.04; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.13rem); color: var(--mute); max-width: 42rem; margin: 1.3rem auto 1.8rem; line-height: 1.65; text-align: center; }
.hero-ctas-center { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }
.hero-trust-center { display: flex; gap: 0.7rem 1.4rem; justify-content: center; margin-top: 1.2rem; flex-wrap: wrap; }
.hero-figure-wrap { margin-top: 2.6rem; padding-bottom: clamp(2.4rem, 5vw, 4rem); }
.hero-figure { position: relative; max-width: 980px; margin: 0 auto; }
/* Hero must never sit ghosted on first paint — render instantly */
.hero .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ============================================================
   7. PROOF BAND — the live-test numbers (measured, not promised)
   ============================================================ */
.proof-band { background: var(--green-band); color: #fff; padding: clamp(3rem, 6vw, 4.6rem) 0; }
.proof-head { text-align: center; max-width: 720px; margin: 0 auto clamp(1.8rem, 4vw, 2.8rem); }
.proof-head h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.proof-head p { color: rgba(255, 255, 255, 0.75); margin: 0.8rem auto 0; max-width: 54ch; }
.proof-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); max-width: 980px; margin: 0 auto; }
@media (min-width: 860px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-stat {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius); padding: 1.4rem 1.2rem 1.3rem; text-align: center;
}
.proof-stat .pv { font-family: var(--mono); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 500; line-height: 1; color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.proof-stat .pl { display: block; margin-top: 0.65rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); line-height: 1.45; }
.proof-note { max-width: 680px; margin: clamp(1.6rem, 3.5vw, 2.2rem) auto 0; text-align: center; font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); line-height: 1.65; }
.proof-note strong { color: #fff; }

/* ============================================================
   8. TRUST BAND
   ============================================================ */
.trust-band { background: var(--cream); border-block: 1px solid var(--line); padding: 2.2rem 0 2.4rem; }
.trust-title { text-align: center; font-size: 0.86rem; font-weight: 700; color: var(--ink-2); margin-bottom: 1.6rem; }
.trust-grid { display: grid; gap: 1.4rem 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--green); }
.trust-item span { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); line-height: 1.4; max-width: 16ch; }

/* ============================================================
   9. SECTIONS / HOW IT WORKS
   ============================================================ */
.section { padding: clamp(3.6rem, 7.5vw, 6rem) 0; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { text-align: center; }
.section-head.center .section-title, .section-head.center .section-sub { margin-inline: auto; }
.bg-cream { background: var(--cream); }

.howto { display: grid; gap: 1rem; }
@media (min-width: 940px) { .howto { grid-template-columns: repeat(4, 1fr); } }
.how-step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem 1.4rem; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-num {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.how-step svg.hs-icon { width: 30px; height: 30px; margin: 0 auto 0.8rem; color: var(--ink); }
.how-step h3 { font-size: 1.05rem; }
.how-step p { font-size: 0.82rem; color: var(--mute); margin: 0.5rem 0 0; line-height: 1.55; }

/* ============================================================
   10. FEATURE ROWS
   ============================================================ */
.feature-row { display: grid; gap: 1.8rem; align-items: center; margin-bottom: clamp(2.8rem, 5.5vw, 4.5rem); }
.feature-row:last-child { margin-bottom: 0; }
@media (min-width: 980px) {
  .feature-row { grid-template-columns: 1.25fr 0.75fr; gap: 3.4rem; }
  .feature-row.flip { grid-template-columns: 0.75fr 1.25fr; }
  .feature-row.flip .fr-copy { order: -1; }
}
.fr-copy h3 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
.fr-copy p { color: var(--mute); font-size: 0.98rem; margin-top: 0.8rem; line-height: 1.65; }
.fr-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; font-size: 0.92rem; font-weight: 700; color: var(--green-text); text-decoration: none; }
.fr-link:hover { color: var(--green-hover); }
.fr-link svg { width: 15px; height: 15px; transition: transform 0.22s var(--ease); }
.fr-link:hover svg { transform: translateX(3px); }

/* field band (dock photo) */
.field-grid { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 960px) { .field-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; } }
.field-photo img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.assist-illu { width: min(200px, 45%); height: auto; margin: 1.2rem 0 0; display: block; }


/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; gap: 1.1rem; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card .tq { font-size: 1.02rem; line-height: 1.7; color: var(--ink-2); font-weight: 460; margin: 0 0 1.2rem; }
.testi-card .tq strong { display: block; font-size: 1.18rem; line-height: 1.45; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 0.6rem; }
.testi-card .tq::before { content: "\201C"; display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--green); line-height: 0.6; margin-bottom: 0.7rem; }
.testi-who { display: flex; align-items: center; gap: 0.8rem; }
.testi-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.testi-ava {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-deep);
  display: grid; place-items: center; font-size: 0.78rem; font-weight: 700;
}
.testi-who .tn { font-size: 0.85rem; font-weight: 700; line-height: 1.25; }
.testi-who .tr { font-size: 0.74rem; color: var(--mute); }
.testi-join { background: var(--green-soft); border: 1px solid rgba(45, 106, 79, 0.25); display: flex; flex-direction: column; justify-content: center; text-align: center; gap: 0.6rem; }
.testi-join svg { width: 30px; height: 30px; color: var(--green); margin-inline: auto; }
.testi-join .tj { font-size: 1rem; font-weight: 700; letter-spacing: -0.015em; color: var(--green-deep); }
.testi-join a { font-size: 0.85rem; font-weight: 700; color: var(--green-text); }

/* ============================================================
   12. PRICING — one plan, everything included
   ============================================================ */
.pricing-band { position: relative; overflow: hidden; background: var(--green-band); color: #fff; }
.pricing-band::before {
  content: ""; position: absolute; top: -26%; left: 50%; width: 900px; height: 620px;
  transform: translateX(-50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(70, 160, 115, 0.28), transparent 68%);
  filter: blur(10px);
}
.pricing-band > * { position: relative; }
.pricing-head { text-align: center; max-width: 640px; margin: 0 auto 2.2rem; }
.pricing-head h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.pricing-head p { color: rgba(255, 255, 255, 0.8); }
.plan {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  max-width: 860px; margin: 0 auto; padding: clamp(1.9rem, 4vw, 2.8rem);
}
.plan-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.plan-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin: 0 0 0.4rem; }
.plan-trial { font-size: 0.88rem; color: var(--mute); margin: 0.7rem 0 0; max-width: 34ch; }
.plan-cta-group { display: grid; gap: 0.6rem; min-width: min(280px, 100%); }
.plan-cta-group .btn { width: 100%; justify-content: center; }
.plan-cta-sec { background: #fff; color: var(--green); border: 1.5px solid rgba(45, 106, 79, 0.4); }
.plan-cta-sec:hover { background: var(--cream-2); color: var(--green-deep); border-color: var(--green); }
.plan-feats { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.7rem 1.6rem; }
@media (min-width: 720px) { .plan-feats { grid-template-columns: 1fr 1fr; } }
.plan-feats li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: #2b2a26; line-height: 1.5; }
.plan-feats li svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 0.2rem; }
.pricing-note { text-align: center; color: rgba(255, 255, 255, 0.75); max-width: 600px; margin: 2rem auto 0; font-size: 0.9rem; line-height: 1.65; }
.pricing-note a { color: #fff; }

/* ============================================================
   13. FAQ
   ============================================================ */
.faq-grid { display: grid; gap: 0.8rem; align-items: start; }
@media (min-width: 880px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-col { display: grid; gap: 0.8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow 0.25s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; padding: 1.1rem 1.25rem; font-weight: 700; font-size: 0.97rem; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x {
  flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep); font-size: 1rem; font-weight: 600; line-height: 1;
  transition: transform 0.3s var(--ease), background-color 0.2s, color 0.2s;
}
.faq-item[open] summary .faq-x { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-item .faq-a { padding: 0 1.25rem 1.2rem; color: var(--mute); font-size: 0.92rem; max-width: 64ch; }
.faq-item .faq-a p { margin: 0; }
.faq-help {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.faq-help svg { flex: none; width: 30px; height: 30px; color: var(--green); }
.faq-help .fh-t { font-weight: 700; font-size: 0.97rem; letter-spacing: -0.01em; }
.faq-help p { font-size: 0.85rem; color: var(--mute); margin: 0.2rem 0 0; }
.faq-help a { font-weight: 700; color: var(--green-text); font-size: 0.85rem; }

/* ============================================================
   14. FINAL CTA + FOOTER
   ============================================================ */
.final-cta { text-align: center; background: var(--cream); padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.final-panel {
  position: relative; overflow: hidden;
  border-radius: 28px; padding: clamp(3rem, 6vw, 4.6rem) clamp(1.4rem, 4vw, 4rem);
  color: #fff;
  background:
    radial-gradient(circle at 16% -12%, rgba(58, 141, 103, 0.38), transparent 42%),
    radial-gradient(circle at 88% 118%, rgba(58, 141, 103, 0.25), transparent 40%),
    linear-gradient(160deg, var(--green-band), var(--green-deepest));
  box-shadow: 0 30px 70px rgba(7, 26, 19, 0.28);
}
.final-panel > * { position: relative; }
.final-sub { color: rgba(255, 255, 255, 0.78); font-size: clamp(1rem, 1.6vw, 1.12rem); line-height: 1.65; max-width: 52ch; margin: 1.1rem auto 0; }
.final-title { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; font-size: clamp(2rem, 4.6vw, 3.1rem); max-width: 22ch; margin-inline: auto; color: #fff; }
.final-flow { display: grid; gap: 0.9rem; max-width: 760px; margin: 2.2rem auto 0; }
@media (min-width: 720px) { .final-flow { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; } }
.ff-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1rem; box-shadow: var(--shadow-sm); }
.ff-step svg { width: 24px; height: 24px; margin: 0 auto 0.5rem; color: var(--green); }
.ff-step b { display: block; font-size: 0.9rem; letter-spacing: -0.01em; }
.ff-arrow { display: none; color: var(--line-2); }
.ff-arrow svg { width: 22px; height: 22px; }
@media (min-width: 720px) { .ff-arrow { display: block; } }
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; margin-top: 2.2rem; }
.final-note { margin-top: 1.1rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); font-variant-numeric: tabular-nums; }

.site-footer {
  position: relative; overflow: hidden;
  color: rgba(255, 255, 255, 0.70); padding: 3.6rem 0 2.2rem; font-size: 0.9rem;
  background:
    radial-gradient(circle at 18% -10%, rgba(58, 141, 103, 0.22), transparent 34%),
    var(--green-deepest);
}
.site-footer > * { position: relative; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; align-items: start; } }
.footer-brand .logo { color: #fff; }
.footer-brand .logo:hover { color: #fff; }
.footer-brand p { margin-top: 0.85rem; max-width: 30ch; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-cta {
  margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-cta p { margin: 0; color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.footer-bottom { margin-top: 1.7rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.65); }
.footer-bottom a { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   15. STICKY MOBILE CTA
   ============================================================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; gap: 0.7rem; align-items: center;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 249, 247, 0.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  visibility: hidden; /* keeps the hidden bar out of the tab order */
  transition: transform 0.4s var(--ease), visibility 0s 0.4s;
}
.mobile-cta.show { transform: translateY(0); visibility: visible; transition: transform 0.4s var(--ease), visibility 0s 0s; }
.mobile-cta .btn { flex: 1; padding: 0.9rem 1rem; }
.mobile-cta .mc-price { flex: none; text-align: center; line-height: 1.15; }
.mobile-cta .mc-price .n { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; display: block; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.mobile-cta .mc-price .l { font-size: 0.66rem; color: var(--faint); }
@media (min-width: 920px) { .mobile-cta { display: none; } }

/* ============================================================
   16. SCROLL REVEAL + MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.no-js .reveal, .no-observer .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   17. CAPABILITY GRID
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 980px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
.cap-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); }
.cap-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft); color: var(--green-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; }
.cap-ic svg { width: 24px; height: 24px; }
.cap-card h3 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.cap-card p { font-size: 0.9rem; color: var(--mute); margin: 0; line-height: 1.5; }

/* ============================================================
   18. INTER-SECTION CTA BANDS
   ============================================================ */
.cta-band { background: var(--cream); border-block: 1px solid var(--line); padding: clamp(2.2rem, 4vw, 3rem) 0; }
.cta-band.cta-band-green { background: var(--green-band); border-color: transparent; }
.cta-band .cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.6rem; text-align: center; }
.cta-band .cbt { flex: 1 1 320px; min-width: 0; text-align: left; }
.cta-band .cbt h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--ink); }
.cta-band .cbt p { margin: 0.4rem 0 0; color: var(--mute); font-size: 0.95rem; max-width: 46ch; }
.cta-band.cta-band-green .cbt h3 { color: #fff; }
.cta-band.cta-band-green .cbt p { color: rgba(255, 255, 255, 0.75); }
.cta-band .cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; flex: none; }
@media (max-width: 640px) { .cta-band .cbt, .cta-band .cta-band-actions { flex: 1 1 100%; text-align: center; justify-content: center; } .cta-band .cbt p { margin-inline: auto; } }
.cta-band .cta-pill { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 700; color: var(--green-text); background: var(--green-soft); border: 1px solid rgba(45, 106, 79, 0.25); border-radius: 999px; padding: 0.3rem 0.8rem; margin-bottom: 0.7rem; }
.cta-band.cta-band-green .cta-pill { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.22); color: #eaf5ee; }
.cta-band .cta-pill svg { width: 13px; height: 13px; }
.cta-band-green .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.cta-band-green .btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

/* ============================================================
   19. HAND-BUILT PRODUCT MOCKUPS (.shot)
   DOM mockups styled exactly like the 5.8 app — cream chrome,
   DM Mono money, soft-tint status pills.
   ============================================================ */
.shot {
  width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden; text-align: left; font-size: 0.8rem;
}
.shot .money { font-family: var(--mono); font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }

.shot-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.9rem; border-bottom: 1px solid var(--line); background: var(--cream); }
.shot-bar .dots { display: inline-flex; gap: 5px; flex: none; }
.shot-bar .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.shot-bar .shot-name { flex: 1; text-align: center; font-size: 0.7rem; font-weight: 600; color: var(--mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shot-bar::after { content: ""; width: 34px; flex: none; }
.shot-pad { padding: 1rem 1.1rem 1.15rem; }

/* --- hero: paper invoice -> priced table --- */
.shot-hero-body { display: grid; grid-template-columns: 0.85fr auto 1.3fr; gap: 1.1rem; align-items: center; padding: 1.15rem 1.25rem 1.3rem; }
.paper {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 0.9rem; font-family: var(--mono);
  font-size: 0.6rem; line-height: 1.5; color: var(--ink-2); letter-spacing: 0.01em;
}
.paper-head { display: flex; justify-content: space-between; gap: 0.6rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line-2); padding-bottom: 0.45rem; margin-bottom: 0.45rem; }
.paper-row { display: flex; justify-content: space-between; gap: 0.6rem; padding: 0.16rem 0; }
.paper-total { display: flex; justify-content: space-between; gap: 0.6rem; border-top: 1px solid var(--line-2); margin-top: 0.45rem; padding-top: 0.45rem; font-weight: 700; color: var(--ink); }
.shot-arrow { color: var(--green); flex: none; }
.shot-arrow svg { width: 22px; height: 22px; }
.priced { display: grid; align-content: start; }
.priced-head, .priced-row { display: grid; grid-template-columns: 1.7fr 0.75fr 0.65fr 0.6fr; gap: 0.6rem; align-items: center; padding: 0.44rem 0.15rem; }
.priced-head { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); border-bottom: 1px solid var(--line); padding-top: 0; font-family: var(--sans); }
.priced-row { border-bottom: 1px solid var(--line); font-size: 0.76rem; }
.priced-row:last-of-type { border-bottom: 0; }
.priced-row .it { display: flex; align-items: center; gap: 0.45rem; min-width: 0; font-weight: 600; color: var(--ink); white-space: nowrap; }
.priced-row .it .nm { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.priced-row .it .chip-up { flex: none; }
.priced-row .cost { color: var(--mute); }
.priced-row .sell { color: var(--green); font-weight: 500; }
.priced-row .mg { color: var(--mute); font-size: 0.7rem; }
@media (max-width: 560px) {
  .priced-head, .priced-row { grid-template-columns: 1.5fr 0.7fr 0.68fr 0.46fr; gap: 0.35rem; }
  .priced-row .it { font-size: 0.72rem; gap: 0.3rem; }
  .priced-row .it .chip-up { font-size: 0.6rem; padding: 0.06rem 0.28rem; gap: 0.15rem; }
}
.priced-foot { display: flex; justify-content: flex-end; padding-top: 0.75rem; }
@media (max-width: 700px) {
  .shot-hero-body { grid-template-columns: 1fr; gap: 0.8rem; }
  .shot-arrow { justify-self: center; transform: rotate(90deg); }
}

/* soft-tint status pill + cost-up chip */
.pill-ok { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--green-soft); color: var(--green-deep); font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; }
.pill-ok svg { width: 11px; height: 11px; flex: none; }
.pill-warn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--amber-soft); color: var(--ochre-deep); font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; }
.pill-warn svg { width: 11px; height: 11px; flex: none; }
.chip-up { display: inline-flex; align-items: center; gap: 0.25rem; background: var(--amber-soft); color: var(--ochre-deep); font-size: 0.6rem; font-weight: 700; padding: 0.14rem 0.5rem; border-radius: 999px; font-variant-numeric: tabular-nums; flex: none; }
.chip-up svg { width: 9px; height: 9px; flex: none; }

/* --- archive/search --- */
.shot-search {
  display: flex; align-items: center; gap: 0.55rem;
  border: 1.5px solid var(--line-2); border-radius: 999px;
  padding: 0.55rem 0.95rem; background: #fff;
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
}
.shot-search svg { width: 14px; height: 14px; color: var(--faint); flex: none; }
.shot-search .caret { width: 1.5px; height: 14px; background: var(--green); flex: none; }
.shot-count { font-size: 0.7rem; color: var(--faint); margin: 0.75rem 0.2rem 0.15rem; }
.arch-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 0.8rem; align-items: center; padding: 0.6rem 0.4rem; border-bottom: 1px solid var(--line); font-size: 0.74rem; }
.arch-row:last-of-type { border-bottom: 0; }
.arch-row .ad { color: var(--mute); white-space: nowrap; font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 0.7rem; }
.arch-row .av { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.arch-row .ano { color: var(--faint); white-space: nowrap; font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 0.7rem; }
.arch-row.is-hover { background: var(--cream-2); border-radius: 10px; border-bottom-color: transparent; }

/* --- margin rules --- */
.rule-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 0.9rem; }
@media (max-width: 420px) { .rule-cards { grid-template-columns: 1fr; } }
.rule-card { display: flex; align-items: center; gap: 0.5rem; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); padding: 0.6rem 0.75rem; font-size: 0.72rem; min-width: 0; }
.rule-card svg { width: 14px; height: 14px; color: var(--green); flex: none; }
.rule-card b { font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rule-card span { color: var(--mute); white-space: nowrap; font-variant-numeric: tabular-nums; }
.mr-row { display: flex; align-items: center; gap: 0.65rem; padding: 0.58rem 0.2rem; border-top: 1px solid var(--line); font-size: 0.76rem; }
.mr-row .it { flex: 1; min-width: 0; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mr-row .cost { color: var(--mute); }
.mr-row .mr-arr { color: var(--faint); flex: none; }
.mr-row .mr-arr svg { width: 12px; height: 12px; }
.mr-row .sell { color: var(--green); font-weight: 500; }
.mr-row .mg { color: var(--mute); font-size: 0.68rem; min-width: 3em; font-variant-numeric: tabular-nums; text-align: right; }
.mr-foot { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; margin-top: 0.95rem; background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px; padding: 0.55rem 0.85rem; font-size: 0.72rem; color: var(--ink-2); }
.mr-foot b { color: var(--green-deep); font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --- balance check queue ("Needs your eye") --- */
.bal-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.75rem; }
.bal-head .bh-t { font-weight: 700; font-size: 0.82rem; color: var(--ink); display: inline-flex; align-items: center; gap: 0.45rem; }
.bal-head .bh-t svg { width: 15px; height: 15px; color: var(--ochre); flex: none; }
.bal-head .bh-n { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; background: var(--amber-soft); color: var(--ochre-deep); border-radius: 999px; padding: 0.18rem 0.6rem; }
.bal-card { border: 1px solid var(--line); border-radius: 12px; padding: 0.75rem 0.85rem; margin-bottom: 0.7rem; background: #fff; }
.bal-card:last-of-type { margin-bottom: 0; }
.bal-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.7rem; }
.bal-row .bv { font-weight: 700; color: var(--ink); font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bal-row .bo { font-family: var(--mono); font-size: 0.72rem; color: var(--red); white-space: nowrap; }
.bal-line { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.55rem; flex-wrap: wrap; }
.bal-line .bl-fix { margin-left: auto; flex: none; font-size: 0.68rem; font-weight: 700; color: #fff; background: var(--green); border-radius: 999px; padding: 0.32rem 0.75rem; text-decoration: none; }
.bal-strike { font-family: var(--mono); font-size: 0.7rem; color: var(--mute); }
.bal-strike s { color: var(--red); }
.bal-strike b { color: var(--green-deep); font-weight: 500; }

/* --- fresh departments queue --- */
.dq-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.75rem; }
.dq-head .dq-t { font-weight: 700; font-size: 0.82rem; color: var(--ink); }
.dq-head .dq-n { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; background: var(--green-soft); color: var(--green-deep); border-radius: 999px; padding: 0.18rem 0.6rem; }
.dq-row { border-top: 1px solid var(--line); padding: 0.6rem 0.1rem; }
.dq-row .dq-it { font-weight: 600; font-size: 0.78rem; color: var(--ink); display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline; }
.dq-row .dq-it .money { color: var(--green); font-size: 0.74rem; }
.dq-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.45rem; }
.dq-chip { font-size: 0.62rem; font-weight: 600; color: var(--ink-2); background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.16rem 0.55rem; font-variant-numeric: tabular-nums; }
.dq-chip.ok { background: var(--green-soft); color: var(--green-deep); border-color: rgba(45, 106, 79, 0.25); }
.dq-foot { margin-top: 0.8rem; font-size: 0.68rem; color: var(--faint); display: flex; align-items: center; gap: 0.4rem; }
.dq-foot svg { width: 12px; height: 12px; color: var(--green); flex: none; }

/* --- POS export batch --- */
.exp-top { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.exp-top .exp-t { font-weight: 700; font-size: 0.82rem; color: var(--ink); }
.exp-formats { display: inline-flex; gap: 0.35rem; }
.exp-fmt { font-size: 0.64rem; font-weight: 700; color: var(--mute); border: 1px solid var(--line-2); border-radius: 999px; padding: 0.2rem 0.6rem; }
.exp-fmt.on { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.exp-list { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 0.35rem 0.9rem; font-size: 0.78rem; }
.exp-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.exp-item:last-child { border-bottom: 0; }
.exp-item .money s { color: var(--faint); font-weight: 400; margin-right: 0.3rem; }
.exp-item .money b { color: var(--green-deep); font-weight: 500; }
.exp-item.exp-more span { color: var(--mute); font-size: 0.74rem; }
.exp-foot { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }
.exp-foot .money { font-size: 0.72rem; color: var(--ink-2); }

/* --- assistant chat --- */
.chat-pad { display: grid; gap: 0.85rem; padding: 1.15rem 1.1rem 1.25rem; }
.msg-user { justify-self: end; max-width: 82%; background: var(--green-deep); color: #fff; border-radius: 18px 18px 5px 18px; padding: 0.6rem 0.95rem; font-size: 0.78rem; font-weight: 600; }
.msg-ai { display: flex; gap: 0.6rem; align-items: flex-start; max-width: 94%; }
.msg-bubble { background: #fff; border: 1px solid var(--line); border-radius: 5px 18px 18px 18px; padding: 0.7rem 0.9rem; font-size: 0.78rem; line-height: 1.6; color: var(--ink-2); box-shadow: var(--shadow-sm); min-width: 0; }
.msg-bubble p { margin: 0; }
.msg-bubble b { color: var(--ink); font-family: var(--mono); font-weight: 500; font-variant-numeric: tabular-nums; }
.src-pill { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.6rem; border: 1px solid var(--line-2); border-radius: 999px; padding: 0.28rem 0.7rem; font-size: 0.64rem; font-weight: 700; color: var(--green-text); background: var(--cream); white-space: nowrap; font-variant-numeric: tabular-nums; }
.src-pill svg { width: 11px; height: 11px; flex: none; }
.typing { display: inline-flex; gap: 4px; align-items: center; margin-left: 38px; padding: 0.15rem 0; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); opacity: 0.45; }

/* mockup motion — only when the visitor is fine with motion */
@media (prefers-reduced-motion: no-preference) {
  .shot-hero { animation: pw-float 7s ease-in-out infinite; }
  @keyframes pw-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  .shot-search .caret { animation: pw-blink 1.1s steps(1) infinite; }
  @keyframes pw-blink { 50% { opacity: 0; } }
  .typing i { animation: pw-type 1.2s ease-in-out infinite; }
  .typing i:nth-child(2) { animation-delay: 0.15s; }
  .typing i:nth-child(3) { animation-delay: 0.3s; }
  @keyframes pw-type { 0%, 100% { opacity: 0.35; transform: none; } 40% { opacity: 1; transform: translateY(-3px); } }
}

/* ============================================================
   20. INNER PAGES (Privacy, Terms, About, any WP page)
   ============================================================ */
.page-hero { background: linear-gradient(180deg, var(--cream), var(--bg)); padding: clamp(2.6rem, 6vw, 4.2rem) 0 clamp(1.6rem, 4vw, 2.6rem); text-align: center; }
.page-hero .page-title { font-size: clamp(2.1rem, 4.6vw, 3.2rem); max-width: 20ch; margin-inline: auto; }
.page-hero .page-meta { margin-top: 1rem; font-size: 0.88rem; color: var(--mute); }
.page-body { padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(3rem, 6vw, 5rem); }

.prose { max-width: 46rem; margin-inline: auto; font-size: 1.02rem; line-height: 1.75; color: rgba(26, 25, 22, 0.82); }
.prose h2 { font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.prose h3 { font-size: 1.18rem; margin: 1.8rem 0 0.6rem; }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--green-deep); }
.prose blockquote { margin: 1.4rem 0; padding: 0.4rem 0 0.4rem 1.2rem; border-left: 3px solid var(--green); color: var(--ink-2); font-style: italic; }
.prose img { border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2rem; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); }
.prose th { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mute); }
.prose code { font-family: var(--mono); font-size: 0.88em; background: var(--cream-2); border-radius: 5px; padding: 0.1em 0.4em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* ============================================================
   21. BLOG
   ============================================================ */
.blog-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .pc-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-2); }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-media.pc-placeholder { display: grid; place-items: center; background: linear-gradient(135deg, var(--green-soft), var(--cream-2)); }
.post-card .pc-media.pc-placeholder img { width: 54px; height: 54px; object-fit: contain; opacity: 0.85; }
.post-card .pc-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.post-card .pc-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; font-size: 0.74rem; color: var(--mute); font-variant-numeric: tabular-nums; }
.post-card .pc-cat { color: var(--green-text); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.68rem; }
.post-card h2, .post-card h3 { font-size: 1.22rem; line-height: 1.25; }
.post-card h2 a, .post-card h3 a { text-decoration: none; color: var(--ink); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--green-deep); }
.post-card .pc-excerpt { font-size: 0.9rem; color: var(--mute); line-height: 1.6; margin: 0; flex: 1; }
.post-card .pc-more { font-size: 0.85rem; font-weight: 700; color: var(--green-text); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }
.post-card .pc-more svg { width: 13px; height: 13px; transition: transform 0.22s var(--ease); }
.post-card .pc-more:hover svg { transform: translateX(3px); }

.blog-empty { text-align: center; padding: 3rem 0; color: var(--mute); }
.blog-pagination { display: flex; justify-content: center; margin-top: 2.4rem; }
.blog-pagination .nav-links { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.blog-pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 0.7rem;
  border: 1px solid var(--line-2); border-radius: 999px; text-decoration: none;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-2); font-variant-numeric: tabular-nums;
}
.blog-pagination .page-numbers.current { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.blog-pagination a.page-numbers:hover { border-color: var(--ink); color: var(--ink); }

/* single post */
.post-hero { background: linear-gradient(180deg, var(--cream), var(--bg)); padding: clamp(2.6rem, 6vw, 4rem) 0 clamp(1.4rem, 3vw, 2rem); text-align: center; }
.post-hero .post-cat { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.9rem; }
.post-hero .post-title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); max-width: 24ch; margin-inline: auto; }
.post-hero .post-meta { margin-top: 1rem; font-size: 0.88rem; color: var(--mute); display: flex; justify-content: center; gap: 0.5rem 1.2rem; flex-wrap: wrap; font-variant-numeric: tabular-nums; }
.post-figure { max-width: 860px; margin: clamp(1.4rem, 3vw, 2.2rem) auto 0; }
.post-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.post-nav { max-width: 46rem; margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; }
.post-nav a { text-decoration: none; font-weight: 600; color: var(--green-deep); max-width: 44%; }
.post-nav a:hover { text-decoration: underline; }
.post-nav .pn-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); font-weight: 700; margin-bottom: 0.25rem; }


/* Thank-you / welcome confirmation pages (page content blocks) */
.prose .ty-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 28px; line-height: 56px; text-align: center;
  margin: 0 auto 1.4rem;
}
.prose .ty-lead { text-align: center; max-width: 34rem; margin-inline: auto; }
.prose .ty-steps {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.5rem 1.8rem 1.5rem 2.6rem;
  max-width: 34rem; margin: 1.6rem auto;
}
.prose .ty-steps li { margin-bottom: 0.8rem; }
.prose .ty-steps li:last-child { margin-bottom: 0; }
.prose .ty-cta { text-align: center; margin-top: 1.8rem; }
.prose .ty-cta .btn { color: #fff; }

/* 404 + fallback */
.err-wrap { text-align: center; padding: clamp(4rem, 10vw, 7rem) 0; }
.err-code { font-family: var(--mono); font-size: 0.9rem; color: var(--green); letter-spacing: 0.2em; margin-bottom: 0.8rem; }
.err-wrap h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.err-wrap p { color: var(--mute); margin: 1rem auto 1.8rem; max-width: 40ch; }

/* WP core alignment + a11y helpers */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); overflow: hidden; word-wrap: normal !important;
}

/* ============================================================
   22. TOPBAR, COMPARISON, PROVE-IT, ROI, TRUST EXTRAS
   ============================================================ */
.topbar { background: var(--green-band); color: rgba(255, 255, 255, 0.85); font-size: 0.82rem; font-weight: 600; text-align: center; padding: 0.45rem 0; }
.topbar a { color: #fff; text-decoration-thickness: 1px; }
.topbar a:hover { color: #fff; }
.topbar :focus-visible { outline-color: #fff; }

/* before / after */
.cmp-grid { display: grid; gap: 1.1rem; max-width: 960px; margin-inline: auto; }
@media (min-width: 820px) { .cmp-grid { grid-template-columns: 1fr 1fr; } }
.cmp-col { border-radius: var(--radius-lg); padding: 1.7rem 1.8rem; }
.cmp-col h3 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.cmp-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.cmp-col li { position: relative; padding-left: 1.7rem; font-size: 0.95rem; line-height: 1.5; }
.cmp-col li::before { position: absolute; left: 0; top: 0.05rem; font-weight: 700; }
.cmp-old { background: #fff; border: 1px solid var(--line); color: var(--mute); }
.cmp-old h3 { color: var(--faint); }
.cmp-old li::before { content: "\2715"; color: var(--red); opacity: 0.7; font-size: 0.8rem; top: 0.15rem; }
.cmp-new { background: var(--green-band); color: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-md); }
.cmp-new h3 { color: #9fd0b5; }
.cmp-new li { font-weight: 600; }
.cmp-new li::before { content: "\2713"; color: #9fd0b5; }


/* trust strip extras */
@media (min-width: 900px) { .trust-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.trust-more { text-align: center; margin: 1.4rem 0 0; font-size: 0.88rem; }
.trust-more a { font-weight: 700; color: var(--green-text); text-decoration: none; }
.trust-more a:hover { text-decoration: underline; }

/* footer address */
.footer-addr { margin-top: 0.9rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); line-height: 1.6; }
.footer-addr a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer-addr a:hover { color: #fff; text-decoration: underline; }

/* operator positioning band */
.op-band {
  background:
    linear-gradient(rgba(20, 47, 35, 0.90), rgba(27, 68, 51, 0.94)),
    var(--green-band) center / cover no-repeat;
  text-align: center;
}
/* Drop a generated photo at assets/img/operator.jpg and switch on the image layer: */
.op-band.has-photo { background-image: linear-gradient(rgba(20, 47, 35, 0.88), rgba(27, 68, 51, 0.93)), url('assets/img/operator.jpg'); }
.op-inner { max-width: 780px; margin-inline: auto; }
.op-inner h2 { color: rgba(255, 255, 255, 0.9); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.op-inner h2 strong { color: #fff; font-weight: 800; }
.op-inner p strong { display: block; font-size: 1.18em; margin-top: 1.1rem; color: #fff; }
.op-inner p { color: rgba(255, 255, 255, 0.88); font-size: clamp(1.02rem, 1.7vw, 1.2rem); line-height: 1.75; margin: 1.2rem auto 0; max-width: 56ch; }
.op-inner p strong { color: #fff; font-weight: 700; }

/* owner-questions section */
.q-wrap { display: grid; gap: 1.6rem; align-items: start; max-width: 1020px; margin-inline: auto; }
@media (min-width: 900px) { .q-wrap { grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; } }
.q-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.q-chip {
  font-family: var(--serif); font-size: clamp(0.95rem, 1.4vw, 1.1rem); font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink-2); background: #fff; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 0.55rem 1.05rem; white-space: nowrap;
}
.q-chip { cursor: pointer; transition: border-color 0.15s, transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.q-chip:hover { border-color: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.q-chip.is-on { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.qa-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 0; overflow: hidden; }
.qa-card .qa-pad { padding: 1.2rem 1.5rem 1.4rem; }
.qa-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; }
.qa-ic svg { width: 15px; height: 15px; }
.qa-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.qa-q { font-weight: 700; font-size: 0.95rem; }
.qa-a { font-size: 0.95rem; color: var(--ink-2); line-height: 1.6; margin: 0 0 1rem; }
.qa-a b { color: var(--ink); font-family: var(--mono); font-weight: 500; font-variant-numeric: tabular-nums; }
.qa-bars { display: grid; gap: 0.5rem; }
.qa-bar { display: grid; grid-template-columns: 4.2rem 1fr auto; align-items: center; gap: 0.7rem; font-size: 0.76rem; }
.qa-bar .qb-l { color: var(--mute); }
.qa-bar i { display: block; height: 10px; border-radius: 999px; background: var(--green); opacity: 0.85; }
.qa-bar.qa-low i { background: var(--ochre); }
.qa-bar .qb-v { font-size: 0.74rem; color: var(--ink-2); }
.q-shot { max-width: 1020px; margin: 2.2rem auto 0; }
.q-shot img { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); }
.cta-inline { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-top: 2.6rem; text-align: center; }
.cta-inline-note { font-size: 0.85rem; color: var(--faint); font-variant-numeric: tabular-nums; }

/* report parade — staggered scroll-in showcase */
.report-parade { display: grid; gap: 1.4rem; margin-top: 3rem; }
@media (min-width: 860px) { .report-parade { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; } .rp-card:nth-child(2) { margin-top: 3.5rem; } }
.rp-card { margin: 0; }
.rp-card img { display: block; width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.rp-card:hover img { transform: translateY(-6px) scale(1.01); }
.rp-card figcaption { text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--mute); margin-top: 0.8rem; }



/* ============================================================
   23. HERO STAGE (layered composition) + EYEBROW + ROW NUMERALS
   ============================================================ */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-deep); background: var(--green-soft);
  border: 1px solid rgba(45, 106, 79, 0.25); border-radius: 999px;
  padding: 0.4rem 1rem; margin-bottom: 1.3rem;
}
.hero-stage { position: relative; max-width: 900px; margin: 0 auto; padding: 1rem 0 1.5rem; }
.stage-glow {
  position: absolute; inset: -12% -18%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 52% 45%, rgba(45, 106, 79, 0.16), rgba(45, 106, 79, 0.05) 55%, transparent 75%);
}
.stage-paper {
  position: absolute; z-index: 1; top: 7%; left: -3%;
  width: min(280px, 34%); transform: rotate(-5deg);
  filter: drop-shadow(0 24px 40px rgba(26, 25, 22, 0.22));
}
.stage-paper .paper { background: #fdfcf8; border-radius: 12px; font-size: 0.62rem; }
.stage-app {
  position: relative; z-index: 2;
  width: min(620px, 88%); margin-left: auto; margin-right: 2%;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26, 25, 22, 0.06), 0 40px 90px rgba(27, 68, 51, 0.22);
  border: 1px solid var(--line-2);
}
.stage-app-pad { padding: 1.1rem 1.3rem 1.25rem; }
.h-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700; color: var(--green-deep); white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 0.55rem 1rem; box-shadow: var(--shadow-md);
}
.h-chip svg { width: 13px; height: 13px; flex: none; }
.h-chip .money { font-size: 0.78rem; color: var(--ochre-deep); }
.hc-1 { top: 2%; left: 14%; }
.hc-2 { top: 40%; right: 1.5%; color: var(--ink); }
.hc-2 svg { color: var(--ochre-deep); }
.hc-3 { bottom: 4%; left: 8%; }
@media (prefers-reduced-motion: no-preference) {
  .h-chip { animation: pw-float 7s ease-in-out infinite; }
  .hc-2 { animation-delay: 1.1s; }
  .hc-3 { animation-delay: 2.2s; }
  .stage-app { animation: pw-float 9s ease-in-out infinite; }
}
@media (max-width: 860px) {
  .stage-paper { display: none; }
  .stage-app { width: 100%; margin: 0; }
  .h-chip { position: static; margin: 0.35rem 0.25rem 0; box-shadow: var(--shadow-sm); }
  .hero-stage { display: grid; justify-items: center; }
}

/* editorial row numerals */
.fr-num { display: block; font-family: var(--mono); font-size: 2.4rem; font-weight: 500; color: rgba(45, 106, 79, 0.22); line-height: 1; margin-bottom: 0.5rem; font-variant-numeric: tabular-nums; }

/* rendered app images (drop-ins from the image pipeline) */
.hero-shot-img { max-width: 980px; margin: 0 auto; }
.hero-shot-img img, .hero-shot-img video { width: 100%; height: auto; display: block; border-radius: 18px; box-shadow: 0 2px 8px rgba(26, 25, 22, 0.06), 0 40px 90px rgba(27, 68, 51, 0.22); }
.feature-img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.qa-shot img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ============================================================
   24. PROOF ARTIFACTS (totals check + the pricing math)
   ============================================================ */
.hero-shot-img { position: relative; }
.proof-chip {
  position: absolute; z-index: 3; top: 4%; right: -1%;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 0.7rem 1rem; box-shadow: var(--shadow-md); text-align: left;
}
.proof-chip .pc-tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
}
.proof-chip .pc-tick svg { width: 13px; height: 13px; }
.proof-chip b { display: block; font-size: 0.8rem; color: var(--ink); }
.proof-chip small { display: block; font-family: var(--mono); font-size: 0.68rem; color: var(--mute); margin-top: 1px; }
@media (max-width: 860px) { .proof-chip { position: static; margin: 0.9rem auto 0; } }

/* the "why this price" math panel */
.math-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.math-head { display: flex; align-items: center; gap: 0.7rem; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line); }
.math-head .mh-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--amber-soft); color: var(--ochre-deep); display: grid; place-items: center; }
.math-head .mh-ic svg { width: 15px; height: 15px; }
.math-head b { font-size: 0.98rem; }
.math-head small { display: block; font-size: 0.74rem; color: var(--mute); margin-top: 1px; }
.math-body { padding: 1.2rem 1.3rem 1.3rem; display: grid; gap: 0.9rem; }
.math-costs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.8rem; background: var(--cream); border-radius: var(--radius); padding: 0.9rem 1rem; }
.math-costs span { display: block; }
.math-costs small { display: block; font-size: 0.68rem; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em; }
.math-costs b { font-family: var(--mono); font-size: 1.25rem; font-weight: 500; color: var(--ink); }
.math-costs .mc-up b { color: var(--ochre-deep); }
.math-costs i { color: var(--faint); font-style: normal; }
.math-rule { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 0.8rem 1rem; }
.math-rule .mr-t { font-size: 0.82rem; font-weight: 700; }
.math-rule .mr-t small { display: block; font-weight: 400; color: var(--mute); font-size: 0.72rem; margin-top: 2px; }
.math-rule .mr-eq { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-2); text-align: right; }
.math-rule .mr-eq b { color: var(--green-deep); }
.math-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; font-size: 0.85rem; color: var(--ink-2); }
.math-foot b { font-family: var(--mono); font-weight: 500; font-size: 1.05rem; color: var(--green-deep); }
.math-src { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--mute); }
.math-src svg { width: 12px; height: 12px; color: var(--green); flex: none; }


/* ============================================================
   25. DEPTH & MOTION — the mid-page polish pass
   ============================================================ */

/* card hovers: lift + green border hint, everywhere cards repeat */
.cap-card, .how-step, .testi-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cap-card:hover, .how-step:hover, .testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 79, 0.35);
}

/* grid cascades: children stagger in even without per-card reveal classes */
.reveal.in-view ~ .reveal.in-view { transition-delay: 0.05s; }
@media (prefers-reduced-motion: no-preference) {
  .cap-card:nth-child(2), .how-step:nth-child(2) { transition-delay: 0.04s; }
  .cap-card:nth-child(3), .how-step:nth-child(3) { transition-delay: 0.08s; }
  .cap-card:nth-child(4), .how-step:nth-child(4) { transition-delay: 0.12s; }
  .cap-card:nth-child(5) { transition-delay: 0.16s; }
  .cap-card:nth-child(6) { transition-delay: 0.2s; }
}

/* the WITH column owns the before/after section */
.cmp-grid > div:last-child, .cmp-new {
  box-shadow: 0 10px 30px rgba(27, 68, 51, 0.18), 0 30px 80px rgba(27, 68, 51, 0.22);
}

/* feature screenshots: gentle tilt that straightens on hover */
.feature-img { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.feature-row:hover .feature-img { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* buttons: the arrow slides on hover */
.btn .arr { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* FAQ: answers ease open, question tints on hover */
.faq-item summary { transition: color 0.2s; }
.faq-item summary:hover { color: var(--green-deep); }
.faq-item .faq-a { animation: pw-faq-open 0.3s var(--ease); }
@keyframes pw-faq-open { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* soft green blooms so the lower page breathes like the hero */
.section#features, .section#customers { position: relative; }
.section#features::before, .section#customers::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 85% 8%, rgba(45, 106, 79, 0.07), transparent 70%);
}
.section#features > *, .section#customers > * { position: relative; }


/* the interactive answer card breathes when a chip is clicked */
.qa-card { transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.qa-card:hover { box-shadow: var(--shadow-lg); }

/* plan card — the Notion anatomy */
.plan-price-line { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 0.5rem 0 0.4rem; }
.plan-for { color: var(--mute); font-size: 0.95rem; max-width: 40ch; margin: 0 0 0.8rem; }
.plan-feats-h { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--faint); margin: 1.4rem 0 0.6rem; }


/* ============================================================
   26. REQUEST FORM
   ============================================================ */
.pw-form-wrap { margin: 2rem 0 2.5rem; }
.pw-form-err {
  background: var(--red-soft); border: 1px solid rgba(179, 64, 42, 0.3); color: var(--red);
  border-radius: var(--radius); padding: 0.9rem 1.1rem; font-weight: 600; margin-bottom: 1.4rem;
}
.pw-contact-details { margin-top: 1.6rem; }
.pw-form-ok {
  background: var(--green-soft); border: 1px solid rgba(45, 106, 79, 0.3); color: var(--green-deep);
  border-radius: var(--radius); padding: 0.9rem 1.1rem; font-weight: 600; margin-bottom: 1.4rem;
}
.pw-form-intro { color: var(--mute); max-width: 54ch; margin: -0.4rem 0 1.1rem; }
.pw-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.3rem, 3vw, 2rem); display: grid; gap: 1rem;
}
.pw-field { display: grid; gap: 0.35rem; }
.pw-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-2); }
.pw-field input, .pw-field select, .pw-field textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 0.7rem 0.85rem; width: 100%; transition: border-color 0.15s, box-shadow 0.15s;
}
.pw-field input:focus, .pw-field select:focus, .pw-field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15); background: #fff;
}
.pw-field textarea { resize: vertical; min-height: 84px; }
.pw-row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .pw-row { grid-template-columns: 1fr 1fr; } }
.pw-form button { justify-self: start; margin-top: 0.2rem; }
.prose .pw-form-note, .pw-form-note { font-size: 0.82rem; color: var(--faint); margin: 0; }
.pw-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
