/* Content Engine — component styles. Vanilla CSS, no framework: 12 pages
   don't justify a build-step CSS framework. (ponytail rung 4/6) */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: var(--lh-tight); margin: 0 0 0.5em; color: var(--navy); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }
a { color: var(--teal-dark); }
img, video { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section-alt { background: var(--bg-alt); }
.section-inverse { background: var(--bg-inverse); color: var(--text-inverse); }
.section-inverse h1, .section-inverse h2, .section-inverse h3 { color: var(--text-inverse); }
.section-inverse p { color: var(--text-inverse-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.eyebrow { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.75em; }
.section-inverse .eyebrow { color: var(--aqua); }
.lede { font-size: 1.125rem; color: var(--text-muted); }
.section-inverse .lede { color: var(--text-inverse-muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5em; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; padding: 0.85em 1.6em; border-radius: 999px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-gradient); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--teal); background: var(--bg-alt); }
.section-inverse .btn-secondary, .hero .btn-secondary { color: var(--white); border-color: var(--border-inverse); }
.section-inverse .btn-secondary:hover, .hero .btn-secondary:hover { background: rgba(255,255,255,0.06); }
.btn-ghost { background: none; border: none; color: var(--teal-dark); padding: 0.5em 0; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
.cta-row { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }

/* Nav */
.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.site-nav.is-scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand-mark { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark svg { width: 34px; height: 34px; }
.brand-mark span { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--navy); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  /* Real bug, found by rendering (not just reading CSS): .site-nav is
     `position: sticky`, which some engines treat as a containing block for
     a `position: fixed` child, collapsing `inset` to shrink-to-fit content
     (~64px) instead of the full viewport below the nav. Explicit top+height
     sidesteps the containing-block ambiguity entirely. */
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; height: calc(100dvh - var(--nav-h)); overflow-y: auto; background: var(--white); flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
  .nav-links a { font-size: 1.1rem; }
  .site-nav.is-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  /* Move both CTAs into the mobile menu drawer rather than cramming them next to the wordmark. */
  .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 880px) {
  /* Duplicate the CTAs inside the mobile menu drawer (they were hidden from .nav-actions above). */
  .nav-links::after {
    content: "";
    display: block;
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
  }
}

/* Hero */
.hero { padding-block: clamp(3rem, 9vw, 6.5rem) clamp(2rem, 5vw, 4rem); background: var(--bg-inverse); color: var(--text-inverse); overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; inset: auto -20% -40% auto; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; background: radial-gradient(circle, rgba(22,212,197,0.18), transparent 65%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); }
.hero .lede { max-width: 46ch; }
.hero-label { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; color: var(--aqua); margin-bottom: 1rem; }
.hero-tagline { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; color: var(--mist); margin-top: 1.5rem; }

/* Product mock — dashboard-style hero visual. All grid children share a
   consistent padding/height rhythm so nothing looks visually appended. */
.product-mock { background: rgba(255,255,255,0.03); border: 1px solid var(--border-inverse); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-lg); }
.mock-titlebar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.9rem; margin-bottom: 0.9rem; border-bottom: 1px solid var(--border-inverse); }
.mock-tabs { display: flex; gap: 0.4rem; }
.mock-tabs span { width: 9px; height: 9px; border-radius: 50%; background: var(--border-inverse); }
.mock-label { font-size: 0.72rem; color: var(--text-inverse-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.mock-body { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: start; }
@media (max-width: 520px) { .mock-body { grid-template-columns: 1fr; } }
.mock-sidebar { display: flex; flex-direction: column; gap: 0.35rem; padding-top: 0.15rem; }
.mock-sidebar span { font-size: 0.78rem; color: var(--text-inverse-muted); padding: 0.5rem 0.7rem; border-radius: 8px; line-height: 1; }
.mock-sidebar span.active { background: rgba(22,212,197,0.14); color: var(--aqua); font-weight: 600; }
.mock-content { display: flex; flex-direction: column; gap: 0.8rem; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; align-items: stretch; }
.mock-stat { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.7rem 0.75rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 76px; }
.mock-stat .num { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; color: var(--white); line-height: 1; }
.mock-stat .lbl { font-size: 0.66rem; color: var(--text-inverse-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.4rem; }
.mock-queue { display: flex; flex-direction: column; gap: 0.5rem; }
.mock-row { display: flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.6rem 0.75rem; font-size: 0.8rem; color: var(--text-inverse-muted); }
.mock-row .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-draft { background: var(--mist); }
.dot-review { background: #F5C24C; }
.dot-scheduled { background: var(--aqua); }
.mock-sample-tag { display: inline-block; align-self: flex-start; margin-top: 0.4rem; padding: 0.3em 0.8em; font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-inverse-muted); border: 1px dashed var(--border-inverse); border-radius: 999px; }
.mock-footer { display: flex; justify-content: flex-start; padding-top: 0.75rem; margin-top: 0.25rem; border-top: 1px dashed var(--border-inverse); }
.mock-footer .mock-sample-tag { margin-top: 0; }

/* Cards / grids */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.15s ease, transform 0.15s ease; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.card p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 0; }

/* Pipeline */
.pipeline { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: stretch; justify-content: center; }
.pipeline-step { flex: 1 1 130px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.1rem 0.9rem; text-align: center; position: relative; }
.pipeline-step .n { font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; color: var(--teal-dark); letter-spacing: 0.08em; }
.pipeline-step .t { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; margin-top: 0.3rem; }
.pipeline-arrow { display: flex; align-items: center; color: var(--mist); font-size: 1.1rem; }
@media (max-width: 760px) { .pipeline { flex-direction: column; } .pipeline-arrow { transform: rotate(90deg); align-self: center; } }

/* Problem list */
.problem-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .problem-list { grid-template-columns: 1fr; } }
.problem-list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.problem-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--teal-dark); margin-top: 0.15rem; }

/* One idea, many outputs */
.fanout { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.fanout-chip { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: 0.5em 1em; font-size: 0.85rem; font-weight: 500; }
.fanout-source { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.fanout-source .eyebrow { margin-bottom: 0.3em; }

/* Pricing — 5 cards across at large widths, 3+2 at mid, 2 at tablet, 1 mobile.
   Highlighted tier gets a small scale + prominent shadow + a "Recommended" ribbon
   sits above via the .price-tag chip. Cards align on price baseline and CTA. */
.pricing-table { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: stretch; }
@media (max-width: 1200px) { .pricing-table { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .pricing-table { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pricing-table { grid-template-columns: 1fr; } }
.price-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.6rem 1.4rem; background: var(--white); display: flex; flex-direction: column; gap: 0.6rem; box-shadow: var(--shadow-sm); position: relative; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.is-highlight { border-color: var(--teal); box-shadow: var(--shadow-md); background: linear-gradient(180deg, rgba(22,212,197,0.05), var(--white) 40%); }
.price-card.is-highlight::before { content: "Recommended"; position: absolute; top: -12px; right: 1rem; background: var(--brand-gradient); color: var(--navy); font-family: var(--font-heading); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3em 0.9em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.price-card.is-disabled { opacity: 0.65; background: var(--bg-alt); }
.price-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); }
.price-card h3 { margin: 0; font-size: 1.2rem; }
.price-amount { font-family: var(--font-heading); font-weight: 700; font-size: 2.2rem; margin: 0.25rem 0 0; line-height: 1; color: var(--navy); }
.price-amount small { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--text-muted); display: block; margin-top: 0.35rem; }
.price-features { list-style: none; margin: 0.5rem 0 1rem; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.88rem; color: var(--text); }
.price-features li { display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.35; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note { font-size: 0.75rem; color: var(--mist); margin-top: 0.5rem; }

/* Demo widget */
.demo-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.demo-form { display: grid; gap: 1rem; }
.demo-form .field { display: flex; flex-direction: column; gap: 0.35rem; }
.demo-form label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.demo-form input { font: inherit; padding: 0.75em 0.9em; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-alt); }
.demo-form input:focus-visible { border-color: var(--teal); background: var(--white); }
.demo-progress { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.demo-progress li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.demo-progress li .stepdot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; }
.demo-progress li.is-active .stepdot { border-color: var(--teal); }
.demo-progress li.is-done .stepdot { background: var(--teal); border-color: var(--teal); color: var(--white); }
.demo-progress li.is-done { color: var(--navy); }
.demo-assets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .demo-assets { grid-template-columns: 1fr; } }
.demo-asset { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-alt); }
.demo-asset .thumb { aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; color: var(--mist); font-size: 0.8rem; background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 10px, #EDF1F5 10px, #EDF1F5 20px); }
.demo-asset .meta { padding: 0.6rem 0.8rem; font-size: 0.8rem; color: var(--text-muted); }
.demo-status { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; min-height: 1.2em; }
.demo-status[data-state="error"] { color: #B3261E; }
.demo-sample-note { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mist); border: 1px dashed var(--border); border-radius: 999px; padding: 0.25em 0.75em; margin-bottom: 0.6rem; }

/* Contact form */
.contact-form { display: grid; gap: 1rem; max-width: 560px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .contact-form .field-row { grid-template-columns: 1fr; } }
.contact-form label { font-size: 0.85rem; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select { font: inherit; padding: 0.75em 0.9em; border: 1px solid var(--border); border-radius: 10px; }
.consent-row { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* Footer */
.site-footer { background: var(--bg-inverse); color: var(--text-inverse-muted); padding-block: 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.9em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55em; }
.footer-col a { color: var(--text-inverse-muted); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border-inverse); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; }

/* Table (who it's for, FAQ, content types) */
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-chip { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 0.55em 1.1em; font-size: 0.88rem; font-weight: 500; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal-dark); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 0.7rem; color: var(--text-muted); }

.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90; max-width: 620px; margin-inline: auto; background: var(--navy); color: var(--white); border-radius: var(--radius-md); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lg); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 0.85rem; color: var(--text-inverse-muted); flex: 1 1 260px; }
.cookie-banner[hidden] { display: none; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--white); padding: 0.75em 1.2em; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.legal-body h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-body { max-width: 760px; }
.draft-flag { background: #FFF4E5; border: 1px solid #F2C078; color: #7A4A00; border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: 0.9rem; margin-bottom: 2rem; }

/* ============================================================
   Product subpages — hero variant, UI mockups, plan pills,
   related-link cards, product hub cards, territory checker.
   ============================================================ */

.hero-product { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem); }
.hero-product-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: center; position: relative; }
@media (max-width: 960px) { .hero-product-grid { grid-template-columns: 1fr; } }

/* Reusable UI mock frame (product subpage previews) */
.ui-mock { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-product .ui-mock { background: rgba(255,255,255,0.04); border-color: var(--border-inverse); color: var(--text-inverse); }
.hero-product .ui-mock .ui-mock-titlebar { border-bottom-color: var(--border-inverse); }
.hero-product .ui-mock .ui-mock-crumb { color: var(--text-inverse-muted); }
.ui-mock-titlebar { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.1rem; border-bottom: 1px solid var(--border); }
.ui-mock-dots { display: inline-flex; gap: 0.35rem; }
.ui-mock-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-inverse); display: block; }
.hero-product .ui-mock-dots i { background: rgba(255,255,255,0.22); }
.ui-mock:not(.hero-product .ui-mock) .ui-mock-dots i { background: var(--border); }
.ui-mock-crumb { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.ui-mock-body { padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.ui-mock-footer { padding: 0.6rem 1.15rem 0.9rem; border-top: 1px dashed var(--border); display: flex; }
.hero-product .ui-mock-footer { border-top-color: var(--border-inverse); }
.ui-preview-badge { display: inline-block; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); border: 1px dashed var(--border); border-radius: 999px; padding: 0.32em 0.85em; }
.hero-product .ui-preview-badge { color: var(--text-inverse-muted); border-color: var(--border-inverse); }

/* Content planner mockup */
.ui-planner-body { gap: 0.9rem; }
.ui-planner-suggest { background: rgba(22,212,197,0.12); border: 1px solid rgba(22,212,197,0.28); border-radius: 12px; padding: 0.8rem 0.95rem; color: var(--text-inverse); }
.ui-planner-suggest-head { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; color: var(--aqua); }
.ui-planner-suggest-line { color: var(--text-inverse); font-size: 0.88rem; margin-top: 0.25rem; }
.ui-planner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
@media (max-width: 720px) { .ui-planner-grid { grid-template-columns: repeat(3, 1fr); } }
.ui-planner-col { display: flex; flex-direction: column; gap: 0.35rem; }
.ui-planner-day { font-family: var(--font-heading); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-inverse-muted); }
.ui-planner-chip { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 8px; padding: 0.45rem 0.55rem; font-size: 0.72rem; color: var(--text-inverse-muted); line-height: 1.25; }
.ui-planner-chip.is-review { border-color: #F5C24C; color: #F5C24C; }
.ui-planner-chip.is-scheduled { border-color: var(--aqua); color: var(--aqua); }
.ui-planner-chip.is-draft { border-color: var(--mist); color: var(--mist); }

/* Property source + outputs mockup */
.prop-source { display: grid; grid-template-columns: 92px 1fr; gap: 0.9rem; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid var(--border-inverse); border-radius: 12px; padding: 0.75rem 0.9rem; }
.prop-source-photo { width: 92px; height: 68px; border-radius: 8px; background: linear-gradient(135deg, #1E3A5F, #0B2242); position: relative; overflow: hidden; }
.prop-source-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(22,212,197,0.15)); }
.prop-source-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--white); line-height: 1; }
.prop-source-addr { font-size: 0.85rem; color: var(--aqua); margin-top: 0.2rem; }
.prop-source-meta { font-size: 0.72rem; color: var(--text-inverse-muted); margin-top: 0.15rem; }
.prop-out-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (max-width: 640px) { .prop-out-grid { grid-template-columns: repeat(2, 1fr); } }
.prop-out { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.55rem 0.65rem; display: flex; flex-direction: column; gap: 0.15rem; }
.prop-out-tag { font-size: 0.62rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--aqua); font-weight: 600; }
.prop-out-title { font-size: 0.8rem; color: var(--text-inverse); font-weight: 500; line-height: 1.25; }

/* Property video mockup */
.ui-video-body { gap: 0.75rem; }
.ui-video-frame { aspect-ratio: 9/16; max-height: 320px; margin: 0 auto; width: min(210px, 90%); background: linear-gradient(135deg, #10305B, #0B1E3B); border-radius: 18px; border: 1px solid var(--border-inverse); position: relative; overflow: hidden; }
.ui-video-frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(22,212,197,0.25), transparent 55%); }
.ui-video-overlay { position: absolute; inset: auto 0.75rem 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; }
.ui-video-price { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.ui-video-addr { color: var(--aqua); font-size: 0.85rem; }
.ui-video-cta { background: var(--brand-gradient); color: var(--navy); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35em 0.7em; border-radius: 999px; align-self: flex-start; margin-top: 0.3rem; }
.ui-video-progress { position: absolute; left: 0.6rem; right: 0.6rem; top: 0.6rem; height: 3px; background: rgba(255,255,255,0.15); border-radius: 999px; overflow: hidden; }
.ui-video-progress span { display: block; width: 42%; height: 100%; background: var(--aqua); }
.ui-video-scenes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
@media (max-width: 640px) { .ui-video-scenes { grid-template-columns: repeat(3, 1fr); } }
.ui-video-scene { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 8px; padding: 0.45rem 0.5rem; font-size: 0.7rem; color: var(--text-inverse-muted); text-align: center; }
.ui-video-scene.is-active { border-color: var(--aqua); color: var(--aqua); }

/* Review / approval mockup */
.approve-item { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 12px; padding: 0.85rem 0.95rem; display: flex; flex-direction: column; gap: 0.55rem; }
.approve-head { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.approve-title { font-family: var(--font-heading); font-weight: 600; color: var(--white); font-size: 0.9rem; }
.approve-status { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; padding: 0.25em 0.7em; border-radius: 999px; }
.approve-status-pending { background: rgba(245,194,76,0.15); color: #F5C24C; border: 1px solid rgba(245,194,76,0.35); }
.approve-status-approved { background: rgba(22,212,197,0.15); color: var(--aqua); border: 1px solid rgba(22,212,197,0.35); }
.approve-status-draft { background: rgba(255,255,255,0.06); color: var(--text-inverse-muted); border: 1px solid var(--border-inverse); }
.approve-qa { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.35rem; font-size: 0.78rem; color: var(--text-inverse-muted); }
.approve-actions { display: flex; gap: 0.5rem; margin-top: 0.25rem; flex-wrap: wrap; }
.approve-btn { display: inline-flex; align-items: center; padding: 0.45em 1em; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; border: 1px solid var(--border-inverse); color: var(--text-inverse); }
.approve-btn-primary { background: var(--brand-gradient); color: var(--navy); border-color: transparent; }
.approve-item.is-collapsed { flex-direction: row; align-items: center; gap: 0.6rem; padding: 0.55rem 0.8rem; }

/* Territory checker mockup */
.ui-mock-territory .ui-mock-body { gap: 1rem; }
.territory-form { display: flex; flex-direction: column; gap: 0.4rem; }
.territory-form label { font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; color: var(--text-inverse); letter-spacing: 0.02em; }
.territory-input-row { display: flex; gap: 0.5rem; }
.territory-input-row input { flex: 1; padding: 0.7em 0.9em; font: inherit; background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; color: var(--white); }
.territory-input-row input::placeholder { color: var(--text-inverse-muted); }
.territory-input-row .btn { padding: 0.6em 1.2em; font-size: 0.85rem; }
.territory-result { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 12px; padding: 0.85rem 0.95rem; display: flex; flex-direction: column; gap: 0.35rem; }
.territory-badge { align-self: flex-start; padding: 0.32em 0.85em; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.territory-badge-available { background: rgba(22,212,197,0.18); color: var(--aqua); border: 1px solid rgba(22,212,197,0.35); }
.territory-badge-held { background: rgba(245,194,76,0.18); color: #F5C24C; border: 1px solid rgba(245,194,76,0.35); }
.territory-badge-protected { background: rgba(255,255,255,0.06); color: var(--text-inverse-muted); border: 1px solid var(--border-inverse); }
.territory-name { font-family: var(--font-heading); font-weight: 600; color: var(--white); font-size: 1rem; }
.territory-meta { color: var(--text-inverse-muted); font-size: 0.78rem; }

/* Generic mockup fallback */
.ui-generic-body { gap: 0.85rem; }
.gen-heading { font-family: var(--font-heading); font-weight: 600; color: var(--white); font-size: 1rem; }
.gen-chip-grid { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gen-chip { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 999px; padding: 0.35em 0.9em; font-size: 0.78rem; color: var(--text-inverse-muted); }

/* Clean bullet list (used on inputs/outputs cards) */
.clean-list { list-style: none; margin: 0.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.clean-list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.92rem; color: var(--text); line-height: 1.5; padding-left: 1.1rem; position: relative; }
.clean-list li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* Pipeline steps with sub-labels (product subpage workflow) */
.pipeline-step .sub { font-family: var(--font-body); font-weight: 400; color: var(--text-muted); font-size: 0.78rem; margin-top: 0.35rem; line-height: 1.35; }

/* Plan availability pills */
.plan-pill-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.plan-pill { display: inline-flex; align-items: center; gap: 0.3em; background: rgba(22,212,197,0.12); border: 1px solid var(--teal); color: var(--teal-dark); font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.02em; padding: 0.4em 0.9em; border-radius: 999px; }
.plan-pill-locked { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); opacity: 0.7; }
.plan-pill-locked::before { content: "\2014 "; }
.plan-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; }

/* Related products grid */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-link { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.15rem 1.2rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; color: var(--navy); box-shadow: var(--shadow-sm); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.related-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.related-link-title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--navy); }
.related-link-blurb { color: var(--text-muted); font-size: 0.88rem; }

/* Product hub cards on /product/ page */
.product-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .product-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-hub-grid { grid-template-columns: 1fr; } }
.product-hub-card { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.6rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; color: var(--navy); box-shadow: var(--shadow-sm); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.product-hub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.product-hub-card h3 { font-size: 1.1rem; margin: 0; }
.product-hub-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; flex: 1; }
.product-hub-arrow { margin-top: 0.75rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--teal-dark); }

/* Presenter / Avatar studio mockup */
.pa-row { display: grid; grid-template-columns: 1fr 90px; gap: 0.75rem; align-items: center; }
.pa-avatar { display: flex; gap: 0.7rem; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.65rem 0.8rem; }
.pa-avatar-photo { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #16D4C5, #006A73); flex-shrink: 0; }
.pa-avatar-name { font-family: var(--font-heading); font-weight: 600; color: var(--white); font-size: 0.92rem; }
.pa-avatar-role { color: var(--text-inverse-muted); font-size: 0.75rem; }
.pa-avatar-status { color: var(--aqua); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 0.15rem; }
.pa-frame { width: 90px; height: 130px; border-radius: 10px; background: linear-gradient(135deg, #10305B, #0B1E3B); border: 1px solid var(--border-inverse); position: relative; }
.pa-frame::after { content: ""; position: absolute; inset: 15% 25% 15%; border-radius: 50%; background: radial-gradient(circle, rgba(22,212,197,0.35), transparent 65%); }
.pa-script { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.65rem 0.8rem; }
.pa-script-head { color: var(--aqua); font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.35rem; }
.pa-script-body { color: var(--text-inverse); font-size: 0.82rem; font-style: italic; line-height: 1.4; }
.pa-actions { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.pa-check { color: var(--text-inverse-muted); font-size: 0.72rem; }
.pa-approve { background: var(--brand-gradient); color: var(--navy); font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; padding: 0.35em 0.9em; border-radius: 999px; }

/* Short-form video pipeline mockup */
.ui-shortvid-body { gap: 0.9rem; }
.sv-pipeline { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.sv-step { flex: 1 1 100px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.5rem 0.6rem; display: flex; gap: 0.55rem; align-items: center; color: var(--text-inverse-muted); font-size: 0.78rem; min-width: 0; }
.sv-step span { font-family: var(--font-heading); font-weight: 700; font-size: 0.68rem; color: var(--aqua); padding: 0.25em 0.5em; background: rgba(22,212,197,0.14); border-radius: 6px; flex-shrink: 0; }
.sv-step div { line-height: 1.2; }
.sv-step small { display: block; color: var(--text-inverse-muted); font-size: 0.68rem; margin-top: 0.15rem; }
.sv-step.is-active { border-color: var(--aqua); }
.sv-arrow { color: var(--mist); font-size: 0.9rem; }
.sv-output { display: grid; grid-template-columns: 90px 1fr; gap: 0.8rem; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.7rem 0.85rem; }
.sv-frame { width: 90px; height: 160px; border-radius: 10px; background: linear-gradient(135deg, #10305B, #0B1E3B); border: 1px solid var(--border-inverse); position: relative; }
.sv-frame::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(22,212,197,0.28), transparent 55%); border-radius: 10px; }
.sv-meta { display: flex; flex-direction: column; gap: 0.3rem; }
.sv-tag { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--aqua); font-weight: 600; }
.sv-line { color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; }
.sv-approve { color: var(--text-inverse-muted); font-size: 0.75rem; }

/* Distribution channels + workflow mockup */
.dist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
@media (max-width: 640px) { .dist-grid { grid-template-columns: repeat(2, 1fr); } }
.dist-channel { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.55rem 0.7rem; display: flex; justify-content: space-between; align-items: center; gap: 0.4rem; color: var(--text-inverse-muted); font-size: 0.78rem; }
.dist-name { color: var(--white); font-family: var(--font-heading); font-weight: 600; }
.dist-status { color: var(--text-inverse-muted); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; }
.dist-channel.is-connected .dist-status { color: var(--aqua); }
.dist-channel.is-connected .dist-status::before { content: "\25CF "; margin-right: 0.2em; }
.dist-flow { display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; padding-top: 0.35rem; }
.dist-flow-step { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 999px; padding: 0.32em 0.85em; color: var(--text-inverse-muted); font-size: 0.75rem; }
.dist-flow-step.is-active { border-color: var(--aqua); color: var(--aqua); }
.dist-arrow { color: var(--mist); font-size: 0.85rem; }

/* Analytics mockup */
.analytics-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
@media (max-width: 640px) { .analytics-tiles { grid-template-columns: repeat(2, 1fr); } }
.analytics-tile { background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.6rem 0.7rem; display: flex; flex-direction: column; }
.analytics-num { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--white); line-height: 1; }
.analytics-lbl { font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-inverse-muted); margin-top: 0.4rem; }
.analytics-bars { display: flex; flex-direction: column; gap: 0.4rem; }
.analytics-bar { display: grid; grid-template-columns: 90px 1fr 60px; align-items: center; gap: 0.55rem; font-size: 0.78rem; color: var(--text-inverse-muted); }
.analytics-bar-fill { height: 6px; background: var(--aqua); border-radius: 999px; }
.analytics-bar-alert .analytics-bar-fill { background: #F5C24C; }
.analytics-bar-alert > span:last-child { color: #F5C24C; }
.analytics-suggest { background: rgba(22,212,197,0.12); border: 1px solid rgba(22,212,197,0.3); border-radius: 10px; padding: 0.65rem 0.8rem; color: var(--text-inverse); font-size: 0.85rem; }

/* Market authority pillar mockup */
.pillar-row { display: grid; grid-template-columns: 40px 1fr auto; gap: 0.7rem; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-inverse); border-radius: 10px; padding: 0.65rem 0.8rem; }
.pillar-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--brand-gradient); color: var(--navy); font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.pillar-title { font-family: var(--font-heading); font-weight: 600; color: var(--white); font-size: 0.88rem; }
.pillar-blurb { color: var(--text-inverse-muted); font-size: 0.78rem; margin-top: 0.1rem; }
.pillar-count { color: var(--aqua); font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; }

/* Package example scenarios */
.package-examples { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: stretch; }
@media (max-width: 1200px) { .package-examples { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .package-examples { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .package-examples { grid-template-columns: 1fr; } }
.package-example { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.3rem 1.2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.6rem; }
.package-example.is-highlight { border-color: var(--teal); box-shadow: var(--shadow-md); background: linear-gradient(180deg, rgba(22,212,197,0.05), var(--white) 40%); }
.package-example-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.package-example-tier { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.package-example-price { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--teal-dark); }
.package-example-desc { color: var(--text-muted); font-size: 0.88rem; margin: 0; line-height: 1.4; }
.package-example .clean-list { font-size: 0.85rem; }
.package-example .clean-list li { padding-left: 1rem; }
.package-example .clean-list li::before { top: 0.5rem; }
.package-example-foot { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted); }
.package-example-foot strong { color: var(--navy); font-family: var(--font-heading); }

/* Founder video embeds */
.founder-video { margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.founder-video-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--navy); }
.founder-video-frame video { display: block; width: 100%; height: auto; aspect-ratio: 16/9; background: var(--navy); }
.founder-video-meta { display: flex; flex-direction: column; gap: 0.35rem; text-align: center; }
.founder-caption { color: var(--text-muted); font-size: 0.92rem; margin: 0; font-family: var(--font-body); font-style: normal; }
.section-inverse .founder-caption { color: var(--text-inverse-muted); }
