
    /* ============================================================
       SNAPSHOT-ONLY PALETTE REFRESH (Anthropic / Linear 2026)
       Cooler, more decisive, more "high-tech professional" than the
       homepage's quiet-luxury beige. Stripped shadows, single
       terracotta accent, monospace for data, serif only for address.
       ============================================================ */
    body {
      --snap-bg: #faf9f5;
      --snap-ink: #141413;
      --snap-ink-mid: #4a4a47;
      --snap-muted: #8c8a82;
      --snap-line: #e6e3da;
      --snap-line-strong: #1a1a18;
      --snap-accent: #4f5944;
      --snap-accent-deep: #383f30;
      --snap-accent-tint: rgba(79, 89, 68, 0.10);
      background: var(--snap-bg);
      color: var(--snap-ink);
    }
    /* Global shadow purge on this page — Linear/Vercel 2026 move:
       hierarchy comes from typography and hairlines, not card chrome. */
    .matched-card,
    .signals-table,
    .signal-row,
    .snap-buy,
    .snap-buy__inner,
    .figure,
    .info-only,
    .buy-cta,
    .matched-card__cta,
    .source-summary-card,
    .core-check-card,
    .source-types-card { box-shadow: none !important; }

    /* Header bar — collapse to 80px compact strip, not a hero. */
    .site-header { background: var(--snap-bg); border-bottom: 1px solid var(--snap-line); }
    .scroll-progress { display: none; } /* clean header, no progress bar on results */

    /* ---------- Page-specific snapshot styles ---------- */
    .snap-page-hero {
      padding: 40px 0 24px;
      border-bottom: 1px solid var(--snap-line);
    }
    .snap-page-hero h1 {
      font-family: "Fraunces", "Inter", Georgia, serif;
      font-size: clamp(2rem, 3.4vw, 2.8rem);
      letter-spacing: -0.012em;
      line-height: 1.04;
      font-weight: 500;
      max-width: 22ch; margin-bottom: 14px;
    }
    .snap-page-hero h1 em {
      font-style: italic; color: var(--accent); font-weight: 500;
    }
    .snap-page-hero p {
      font-size: 16px; color: var(--ink-mid);
      max-width: 60ch; margin: 0;
    }
    /* Matched-card — modernized: no gradient, no shadow, hairline only.
       Reads as an editorial article header, not a SaaS results card.
       Uses the new snapshot palette tokens. */
    .matched-card {
      position: relative;
      background: transparent;
      border: 0;
      border-top: 2px solid var(--snap-line-strong);
      border-bottom: 1px solid var(--snap-line);
      border-radius: 0;
      padding: 36px 0 32px;
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 56px;
      align-items: start;
      box-shadow: none;
    }
    @media (max-width: 880px) {
      .matched-card { grid-template-columns: 1fr; gap: 32px; }
    }
    .matched-card::before { content: none; }
    /* Hide the legacy chrome — pin, confidence ring, source-summary cards, and
       JS-populated core-check-card. Their slots stay live but don't render. */
    .snap-pin,
    .confidence-ring,
    .source-summary-grid,
    .core-check-card { display: none !important; }
    .matched-card > div:first-of-type { /* address column */
      grid-column: 1;
    }
    .matched-card__title {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px; font-weight: 600; color: var(--snap-accent);
      letter-spacing: 0.24em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 18px;
    }
    .matched-card__title::before {
      content: ""; width: 22px; height: 1px; background: var(--snap-accent);
    }
    .matched-card__addr {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(2.2rem, 4.4vw, 3.2rem);
      font-weight: 400;
      letter-spacing: -0.028em;
      line-height: 1.0;
      color: var(--snap-ink);
      margin: 0 0 12px;
      font-variation-settings: "opsz" 144, "SOFT" 30;
    }
    .matched-card__town {
      font-family: "Geist", "Inter", sans-serif;
      font-size: 14.5px;
      color: var(--snap-ink-mid);
      margin-bottom: 6px;
      letter-spacing: -0.005em;
    }
    .matched-card__parcel {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      color: var(--snap-muted);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .matched-card__helper {
      display: none; /* moved to right column metadata block */
    }
    /* Right column — metadata stack with mono key + serif value */
    .matched-card .core-check-card,
    .matched-card .signals-strip {
      grid-column: 2;
    }
    @media (max-width: 880px) {
      .matched-card .core-check-card,
      .matched-card .signals-strip { grid-column: 1; }
    }
    .section-x { padding: 48px 0; border-bottom: 1px solid var(--line-fine); }
    .section-x:last-of-type { border-bottom: 0; }
    .section-x h2 {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.7rem, 2.6vw, 2.2rem);
      font-weight: 400;
      letter-spacing: -0.014em;
      line-height: 1.1;
      margin-bottom: 12px;
      color: var(--ink);
      position: relative;
      display: inline-block;
    }
    /* Hand-drawn underline beneath section h2s — irregular SVG, anti-AI-slop signal */
    .section-x h2::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -8px;
      height: 8px;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M2 5 C 25 2, 50 7, 80 4 S 130 6, 160 3 S 195 5, 198 4' fill='none' stroke='%234f5944' stroke-width='1.4' stroke-linecap='round'/></svg>");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      opacity: 0.55;
    }
    .section-x .lede {
      font-size: 15px; color: var(--ink-mid);
      max-width: 56ch; margin: 18px 0 26px;
      line-height: 1.6;
    }
    /* Small "scribble" annotation mark — used inline as a human flourish */
    .scribble {
      display: inline-block;
      width: 24px; height: 12px;
      vertical-align: middle;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12' fill='none'><path d='M2 8 C 5 4, 7 10, 10 6 S 14 9, 17 5 S 21 8, 22 6' stroke='%231a4d4d' stroke-width='1.2' stroke-linecap='round'/></svg>");
      background-repeat: no-repeat;
      background-size: contain;
      opacity: 0.55;
    }

    /* Signals — 2-column dense grid of self-contained tiles.
       Linear/Cursor 2026 pattern: composed dense data, not a vertical list.
       Palette retargeted to the snapshot tokens. */
    .signals-table {
      background: transparent;
      border: 0;
      border-top: 2px solid var(--snap-line-strong);
      border-bottom: 1px solid var(--snap-line);
      border-radius: 0;
      overflow: visible;
      box-shadow: none;
      counter-reset: signal;
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 48px;
      row-gap: 0;
    }
    @media (max-width: 720px) {
      .signals-table { grid-template-columns: 1fr; column-gap: 0; }
    }
    .signals-table__head { display: none; }
    .signal-row {
      display: grid;
      grid-template-columns: 28px 1fr;
      grid-template-areas:
        "num name"
        "num preview"
        ".   cta";
      column-gap: 14px;
      row-gap: 6px;
      padding: 22px 0;
      border-top: 1px solid var(--snap-line);
      align-items: baseline;
      counter-increment: signal;
      transition: background 220ms ease;
    }
    .signal-row:first-of-type,
    .signal-row:nth-of-type(2) { border-top: 0; }
    @media (max-width: 720px) {
      .signal-row:nth-of-type(2) { border-top: 1px solid var(--snap-line); }
    }
    .signal-row:hover { background: var(--snap-accent-tint); }
    .signal-row::before {
      content: counter(signal, decimal-leading-zero);
      grid-area: num;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.2em;
      color: var(--snap-accent);
      font-weight: 600;
      padding-top: 4px;
    }
    .signal-row__status { display: none; }
    .signal-row__status::before { display: none; }
    .signal-row__status.is-statewide { color: #45657c; }
    .signal-row__status.is-partial { color: #9a6a1f; }
    .signal-row__status.is-limited { color: #7a6570; }
    .signal-row__status.is-partial::before,
    .signal-row__status.is-limited::before {
      background-color: rgba(206, 156, 54, 0.16);
      background-image: none;
      border: 1px solid rgba(206, 156, 54, 0.52);
    }
    .signal-row__status.is-statewide::before {
      background-color: rgba(69, 101, 124, 0.13);
      background-image: none;
      border: 1px solid rgba(69, 101, 124, 0.38);
    }
    .signal-row__name {
      grid-area: name;
      font-family: "Geist", "Inter", sans-serif;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: -0.012em;
      color: var(--snap-ink);
      line-height: 1.3;
    }
    .signal-row__name em { font-style: italic; color: var(--snap-accent); font-weight: 500; }
    .signal-row__preview {
      grid-area: preview;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 11.5px;
      color: var(--snap-ink-mid);
      line-height: 1.55;
      letter-spacing: 0.005em;
    }
    .signal-row__lock--cta { grid-area: cta; justify-self: start; margin-top: 6px; }
    .signal-row__lock {
      display: inline-flex; align-items: center; gap: 5px;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      justify-self: end;
    }
    .signal-row__lock svg { width: 10px; height: 10px; opacity: 0.7; }
    /* CTA variant — every locked row is a tiny "View in full report →" link
       that anchors to the buy section. Carfax pattern: locking reads as access,
       not deprivation, and every row reinforces purchase intent. */
    .signal-row__lock--cta {
      color: var(--snap-accent);
      font-weight: 600;
      text-decoration: none;
      padding: 5px 10px;
      border: 1px solid var(--snap-accent);
      border-radius: 0;
      background: transparent;
      letter-spacing: 0.16em;
      font-size: 10px;
      transition: background 200ms ease, color 200ms ease;
    }
    .signal-row__lock--cta span { transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; }
    .signal-row__lock--cta:hover {
      color: #ffffff;
      background: var(--snap-accent);
    }
    .signal-row__lock--cta:hover span { transform: translateX(3px); }
    @media (max-width: 720px) {
      .signals-table__head { display: none; }
      .signal-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 18px;
      }
      .signal-row__lock { justify-self: start; }
    }

    .info-only {
      background: var(--bg-soft); border: 1px solid var(--line);
      border-left: 3px solid var(--accent);
      padding: 16px 22px;
      border-radius: var(--r-sm);
      font-size: 14px; color: var(--ink-mid);
      max-width: 70ch;
    }

    .buy-cta {
      display: flex; flex-direction: column; align-items: center;
      gap: 18px; padding: 80px 0 72px; text-align: center;
      position: relative;
    }
    .buy-cta::before {
      content: "";
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 240px; height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--accent-line) 50%, transparent 100%);
    }
    .buy-cta h2 {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 500;
      letter-spacing: -0.012em;
      line-height: 1.08;
      max-width: 24ch;
      color: var(--ink);
    }
    .buy-cta h2 em {
      font-style: italic;
      color: var(--accent);
      font-weight: 500;
    }
    .buy-cta__note {
      font-size: 12px; color: var(--muted);
      letter-spacing: 0.06em;
      max-width: 60ch;
      line-height: 1.5;
    }
    .buy-cta__kicker {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 4px;
    }
    .buy-cta__kicker::before, .buy-cta__kicker::after {
      content: ""; width: 22px; height: 1px; background: var(--accent-line);
    }
    .buy-cta__reassure {
      list-style: none; padding: 0; margin: 8px 0 4px;
      display: grid;
      grid-template-columns: repeat(2, auto);
      gap: 8px 32px;
      max-width: 520px;
      text-align: left;
    }
    @media (max-width: 540px) {
      .buy-cta__reassure { grid-template-columns: 1fr; gap: 6px; }
    }
    .buy-cta__reassure li {
      font-family: "Fraunces", Georgia, serif;
      font-size: 14.5px;
      color: var(--ink);
      line-height: 1.4;
      padding-left: 22px;
      position: relative;
      font-variation-settings: "opsz" 14;
    }
    .buy-cta__reassure li::before {
      content: "✓";
      position: absolute;
      left: 0; top: 0;
      color: var(--accent);
      font-weight: 600;
      font-size: 13px;
    }
    .buy-cta__btn {
      margin-top: 10px;
      padding: 14px 28px;
      font-size: 15px;
    }

    /* ============ SNAP-QUESTIONS — buyer-question framing of what's in report.
       Surfaces the high-demand items (flood, historic, wetlands, zoning) that
       MA buyers/attorneys/agents actually ask about — front-and-center, before
       the abstract signals table. ============ */
    .snap-questions {
      padding: 64px 0 56px;
      border-bottom: 1px solid var(--line-fine);
    }
    .snap-questions__kicker {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 18px;
    }
    .snap-questions__kicker::before {
      content: ""; width: 22px; height: 1px; background: var(--accent);
    }
    .snap-questions__heading {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      font-weight: 400;
      letter-spacing: -0.014em;
      line-height: 1.1;
      color: var(--ink);
      margin: 0 0 32px;
      max-width: 28ch;
      font-variation-settings: "opsz" 80, "SOFT" 30;
    }
    .snap-questions__heading em {
      font-style: italic;
      color: var(--accent);
    }
    .snap-questions__list {
      list-style: none;
      padding: 0; margin: 0;
      border-top: 2px solid var(--ink);
      border-bottom: 1px solid var(--line);
    }
    .snap-questions__list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      padding: 22px 0;
      border-top: 1px dotted var(--line);
      align-items: baseline;
      transition: background 220ms ease;
    }
    .snap-questions__list li:first-child { border-top: 0; }
    .snap-questions__list li:hover { background: rgba(79, 89, 68, 0.025); }
    .snap-questions__q {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.2rem, 2.1vw, 1.6rem);
      font-weight: 400;
      letter-spacing: -0.014em;
      color: var(--ink);
      font-variation-settings: "opsz" 36, "SOFT" 30;
      line-height: 1.2;
    }
    .snap-questions__src {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
      white-space: nowrap;
      align-self: center;
    }
    .snap-questions__foot {
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
      font-size: 14.5px;
      line-height: 1.55;
      color: var(--ink-mid);
      margin: 24px 0 0;
      max-width: 60ch;
      font-variation-settings: "opsz" 14;
    }
    @media (max-width: 640px) {
      .snap-questions__list li { grid-template-columns: 1fr; gap: 6px; }
      .snap-questions__src { justify-self: start; }
    }

    /* ============ SNAP-BUY — the dominant conversion moment ============
       Bold olive-tinted panel that anchors the page. Replaces the old multi-block
       buy section. The visual focal point — when the user reaches it, there's
       only one thing to do. */
    .snap-buy {
      padding: 0;
      margin: 72px 0 0;
      background: transparent;
      border-top: 0;
    }
    .snap-buy__inner {
      background: var(--snap-bg);
      border-top: 2px solid var(--snap-line-strong);
      border-bottom: 0;
      padding: 72px 0 56px;
      text-align: left;
      position: relative;
      overflow: visible;
    }
    .snap-buy__inner::before { display: none; }
    .snap-buy__kicker {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--snap-accent);
      font-weight: 600;
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 22px;
    }
    .snap-buy__kicker::before { content: ""; width: 24px; height: 1px; background: var(--snap-accent); }
    .snap-buy__kicker::after { content: none; }
    .snap-buy__title {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(2.2rem, 4.2vw, 3.2rem);
      font-weight: 400;
      letter-spacing: -0.018em;
      line-height: 1.04;
      color: var(--ink);
      margin: 0 auto 20px;
      max-width: 22ch;
      font-variation-settings: "opsz" 144, "SOFT" 30;
    }
    .snap-buy__title em {
      font-style: italic;
      color: var(--accent);
      font-weight: 400;
    }
    .snap-buy__lede {
      font-family: "Fraunces", Georgia, serif;
      font-size: 17px;
      line-height: 1.55;
      color: var(--ink-mid);
      max-width: 56ch;
      margin: 0 auto 36px;
      font-variation-settings: "opsz" 18;
    }
    .snap-buy__btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 20px 40px;
      background: var(--snap-accent);
      color: #ffffff;
      border: 0;
      border-radius: 0;
      font-family: "Geist", "Inter", sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      box-shadow: none;
      transition: background 200ms ease, opacity 200ms ease;
    }
    .snap-buy__btn::after {
      content: "→";
      font-style: normal;
      font-size: 18px;
      transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .snap-buy__btn:hover {
      background: var(--snap-accent-deep);
      transform: none;
      box-shadow: none;
        0 28px 60px -22px rgba(79, 89, 68, 0.5);
    }
    .snap-buy__btn:hover::after { transform: translateX(4px); }
    .snap-buy__reassure {
      list-style: none; padding: 0;
      margin: 28px auto 0;
      max-width: 560px;
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 12px 24px;
    }
    .snap-buy__reassure li {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-mid);
      font-weight: 600;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .snap-buy__reassure li::before {
      content: "";
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 999px;
      display: inline-block;
    }
    .snap-buy__note {
      font-family: "Fraunces", Georgia, serif;
      font-size: 12.5px;
      line-height: 1.5;
      color: var(--muted);
      max-width: 60ch;
      margin: 36px auto 0;
      padding-top: 22px;
      border-top: 1px solid var(--line-fine);
      font-variation-settings: "opsz" 14;
    }

    /* Compact 8-signal strip — sits inside the matched-card above the buy CTA.
       Lets users see "matched · 8 things found · buy" all in the first viewport. */
    .signals-strip {
      grid-column: 1 / -1;
      margin-top: 18px; padding-top: 18px;
      border-top: 1px solid var(--line-fine);
    }
    .signals-strip__head {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 12px;
    }
    .signals-strip__head::before {
      content: ""; width: 6px; height: 6px; background: var(--good); border-radius: 999px;
      box-shadow: 0 0 0 0 rgba(44, 110, 61, 0.4);
      animation: signal-pulse 2.4s ease-in-out infinite;
    }
    @keyframes signal-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(44, 110, 61, 0.4); }
      50% { box-shadow: 0 0 0 5px rgba(44, 110, 61, 0); }
    }
    .signals-strip__head strong { color: var(--good); font-weight: 600; }
    .signals-strip__pills {
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .signal-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 12px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-family: "Fraunces", Georgia, serif;
      font-size: 13.5px;
      font-weight: 400;
      letter-spacing: -0.005em;
      color: var(--ink);
      transition: border-color 200ms ease, background 200ms ease;
    }
    .signal-pill::before {
      content: "";
      width: 8px; height: 8px;
      border-radius: 99px;
      background: var(--good);
      flex-shrink: 0;
    }
    .signal-pill:hover {
      border-color: var(--accent-line);
      background: var(--accent-tint);
    }
    .signal-pill em { font-style: italic; color: var(--accent); }

    /* ---------- Inline buy moment inside the match card ---------- */
    .matched-card__cta {
      grid-column: 1 / -1;
      display: flex; align-items: center; justify-content: space-between; gap: 18px;
      margin-top: 22px; padding-top: 20px;
      border-top: 1px solid var(--line-fine); flex-wrap: wrap;
    }
    .matched-card__cta-text {
      font-family: "Geist", "Inter", sans-serif;
      font-size: 13.5px; color: var(--ink-mid);
      letter-spacing: 0.005em;
    }
    .matched-card__cta-text strong {
      display: block;
      font-family: "Fraunces", Georgia, serif;
      font-size: 18px; font-weight: 500; color: var(--ink);
      letter-spacing: -0.012em; margin-bottom: 2px;
    }
    .matched-card__cta .btn-primary { padding: 12px 22px; font-size: 14.5px; }

    /* ---------- "What you'll get" — 3 sections of the report visualized ---------- */
/* ---------- "Why $99" — value comparison block ---------- */
    .value-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--surface);
    }
    @media (max-width: 720px) {
      .value-block { grid-template-columns: 1fr; }
      .value-block .value-block__col + .value-block__col {
        border-left: 0; border-top: 1px solid var(--line);
      }
    }
    .value-block__col {
      padding: 28px 32px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .value-block__col + .value-block__col {
      border-left: 1px solid var(--line);
      background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-soft) 100%);
    }
    .value-block__lab {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .value-block__col + .value-block__col .value-block__lab {
      color: var(--accent);
    }
    .value-block__lab::before {
      content: ""; width: 6px; height: 6px; background: var(--muted); border-radius: 999px;
    }
    .value-block__col + .value-block__col .value-block__lab::before { background: var(--accent); }
    .value-block__big {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      font-weight: 400;
      letter-spacing: -0.012em;
      line-height: 1.1;
      color: var(--ink);
    }
    .value-block__big em { font-style: italic; color: var(--accent); }
    .value-block__col + .value-block__col .value-block__big em { color: var(--accent); }
    .value-block__sub {
      font-size: 14px;
      line-height: 1.55;
      color: var(--ink-mid);
    }

    /* ---------- "Questions the full report answers" — menu by category ---------- */
/* ---------- Locked report preview — stylized redacted page ---------- */
    .locked-page {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 32px 36px 28px;
      box-shadow:
        0 1px 0 rgba(13, 31, 45, 0.03),
        0 28px 60px -28px rgba(13, 31, 45, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
      isolation: isolate;
      overflow: hidden;
    }
    .locked-page::before {
      content: "";
      position: absolute;
      top: 0; left: 28px; right: 28px; height: 2px;
      background: var(--accent);
    }
    /* faux page header */
    .locked-page__topbar {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line-fine);
      margin-bottom: 20px;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .locked-page__topbar strong { color: var(--accent); font-weight: 500; }
    .locked-page__title {
      font-family: "Fraunces", Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      letter-spacing: -0.012em;
      color: var(--ink);
      margin: 0 0 4px;
    }
    .locked-page__sub {
      font-size: 13px;
      color: var(--muted);
      margin: 0 0 20px;
    }
    .locked-rows {
      display: grid; gap: 10px;
    }
    .locked-row {
      display: grid;
      grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1.4fr);
      gap: 18px;
      align-items: center;
      padding: 11px 14px;
      border: 1px solid var(--line-fine);
      border-radius: var(--r-sm);
      background: rgba(247, 241, 222, 0.45);
    }
    @media (max-width: 720px) {
      .locked-row { grid-template-columns: 1fr; gap: 6px; padding: 12px; }
    }
    .locked-row__label {
      font-family: "Fraunces", Georgia, serif;
      font-size: 14.5px;
      color: var(--ink);
      letter-spacing: -0.005em;
    }
    .locked-row__label em { font-style: italic; color: var(--accent); }
    .locked-row__status {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--good);
      display: inline-flex; align-items: center; gap: 6px;
      white-space: nowrap;
    }
    .locked-row__status::before {
      content: ""; width: 6px; height: 6px; background: var(--good); border-radius: 999px;
    }
    .locked-row__status.is-locked {
      color: var(--muted);
    }
    .locked-row__status.is-locked::before { background: var(--muted); }
    .locked-bar {
      height: 18px;
      border-radius: 4px;
      background:
        repeating-linear-gradient(
          135deg,
          rgba(26, 77, 77, 0.18) 0 6px,
          rgba(26, 77, 77, 0.08) 6px 12px
        );
      display: flex; align-items: center; justify-content: center;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-deep);
    }
    .locked-bar svg { width: 11px; height: 11px; margin-right: 6px; opacity: 0.75; }
    .locked-page__seal {
      margin-top: 22px;
      padding: 14px 18px;
      border: 1px dashed var(--accent-line);
      border-radius: var(--r-sm);
      background: var(--accent-soft);
      display: flex; align-items: center; justify-content: space-between;
      gap: 14px; flex-wrap: wrap;
    }
    .locked-page__seal-label {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-deep);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .locked-page__seal-label svg { width: 12px; height: 12px; }
    .locked-page__seal a {
      font-family: "Geist", "Inter", sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--accent-deep);
      text-decoration: none;
      letter-spacing: 0.005em;
    }
    .locked-page__seal a:hover { color: var(--ink); }

    /* ---------- Sticky address ribbon — persists context as user scrolls ---------- */
    .addr-ribbon {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      transform: translateY(-100%);
      transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
      background: rgba(255, 253, 246, 0.92);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 6px 20px -12px rgba(13, 31, 45, 0.18);
    }
    .addr-ribbon.is-visible { transform: translateY(0); }
    .addr-ribbon__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 18px;
      padding: 10px 0;
    }
    .addr-ribbon__left {
      display: flex; align-items: center; gap: 12px;
      min-width: 0;
    }
    .addr-ribbon__pin {
      width: 18px; height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }
    .addr-ribbon__text {
      min-width: 0;
      display: flex; flex-direction: column; line-height: 1.15;
    }
    .addr-ribbon__addr {
      font-family: "Fraunces", Georgia, serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.005em;
      white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
      max-width: 36ch;
    }
    .addr-ribbon__meta {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .addr-ribbon__meta strong { color: var(--good); font-weight: 500; }
    .addr-ribbon__cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 14px;
      background: var(--ink);
      color: #fffdf6;
      border-radius: 999px;
      font-family: "Geist", "Inter", sans-serif;
      font-size: 12.5px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.005em;
      transition: background 180ms ease, transform 160ms ease;
      white-space: nowrap;
    }
    .addr-ribbon__cta:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }
    @media (max-width: 600px) {
      .addr-ribbon__addr { font-size: 13px; max-width: 22ch; }
      .addr-ribbon__meta { display: none; }
      .addr-ribbon__cta { font-size: 11.5px; padding: 6px 11px; }
    }

    /* ---------- Figure chart — flood elevation visualization ---------- */
    .figure {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 28px 32px 24px;
      box-shadow: 0 1px 0 rgba(13, 31, 45, 0.02), 0 12px 36px -20px rgba(13, 31, 45, 0.14);
    }
    .figure::before {
      content: "";
      position: absolute;
      top: 0; left: 24px; right: 24px; height: 2px;
      background: var(--accent);
    }
    .figure__topbar {
      display: flex; align-items: center; justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px; margin-bottom: 18px;
      border-bottom: 1px solid var(--line-fine);
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .figure__topbar strong { color: var(--accent); font-weight: 500; }
    .figure__title {
      font-family: "Fraunces", Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      letter-spacing: -0.012em;
      color: var(--ink);
      margin: 0 0 6px;
    }
    .figure__title em { font-style: italic; color: var(--accent); }
    .figure__sub {
      font-size: 13px;
      color: var(--muted);
      margin: 0 0 22px;
    }
    .figure__chart {
      display: grid; gap: 14px;
      padding: 6px 0 18px;
    }
    .bar-row {
      display: grid;
      grid-template-columns: 180px 1fr auto;
      gap: 16px;
      align-items: center;
    }
    @media (max-width: 720px) {
      .bar-row { grid-template-columns: 1fr; gap: 6px; }
    }
    .bar-row__label {
      font-family: "Fraunces", Georgia, serif;
      font-size: 14.5px;
      color: var(--ink);
      letter-spacing: -0.005em;
    }
    .bar-row__label em { font-style: italic; color: var(--accent); }
    .bar-row__track {
      position: relative;
      height: 28px;
      background: rgba(216, 201, 163, 0.25);
      border-radius: 4px;
      overflow: hidden;
    }
    .bar-row__fill {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 0%;
      background:
        repeating-linear-gradient(
          135deg,
          rgba(26, 77, 77, 0.18) 0 6px,
          rgba(26, 77, 77, 0.08) 6px 12px
        );
      border-right: 1px solid var(--accent);
      transition: width 1100ms cubic-bezier(0.16, 1, 0.3, 1);
      display: flex; align-items: center; justify-content: flex-end;
      padding-right: 12px;
    }
    .bar-row__fill svg {
      width: 12px; height: 12px;
      color: var(--accent-deep);
      opacity: 0.75;
    }
    .figure.is-visible .bar-row:nth-child(1) .bar-row__fill { width: 62%; transition-delay: 100ms; }
    .figure.is-visible .bar-row:nth-child(2) .bar-row__fill { width: 44%; transition-delay: 250ms; }
    .figure.is-visible .bar-row:nth-child(3) .bar-row__fill { width: 78%; transition-delay: 400ms; }
    .figure.is-visible .bar-row:nth-child(4) .bar-row__fill { width: 88%; transition-delay: 550ms; }
    .bar-row__status {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      display: inline-flex; align-items: center; gap: 6px;
      white-space: nowrap;
    }
    .bar-row__status::before {
      content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 999px; opacity: 0.7;
    }
    .figure__axis {
      display: flex; justify-content: space-between;
      padding: 12px 0 4px;
      border-top: 1px solid var(--line-fine);
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9.5px;
      letter-spacing: 0.14em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .figure__caption {
      margin-top: 18px;
      padding: 12px 16px;
      border: 1px dashed var(--accent-line);
      border-radius: var(--r-sm);
      background: var(--accent-soft);
      display: flex; align-items: center; justify-content: space-between;
      gap: 14px; flex-wrap: wrap;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-deep);
    }
    .figure__caption a {
      font-family: "Geist", "Inter", sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.005em;
      text-transform: none;
      color: var(--accent-deep);
      text-decoration: none;
    }
    .figure__caption a:hover { color: var(--ink); }
    .figure__caption-note {
      flex: 1; min-width: 200px;
      font-size: 12.5px;
      color: var(--muted);
      letter-spacing: 0.005em;
      text-transform: none;
      font-family: "Fraunces", Georgia, serif;
      font-style: italic;
    }

    /* ---------- Atmospheric break — single quiet photo strip ---------- */
/* ---------- Source types / confidence — refined trust block ---------- */
@media (max-width: 720px) {
}
@media (max-width: 720px) {
}
/* Signal-count line under the signals h2 */
    .signal-count {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 5px 12px;
      background: var(--accent-soft);
      border: 1px solid var(--accent-line);
      border-radius: 999px;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 14px;
    }
    .signal-count::before {
      content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 999px;
    }

    /* Brief "Why this matters" line block */
@media (max-width: 720px) {
      .matched-card { grid-template-columns: 1fr; }
      .source-summary-grid { grid-template-columns: 1fr; }
.sticky-cta__addr { display: none; }
      .matched-card__cta { flex-direction: column; align-items: stretch; }
      .matched-card__cta .btn-primary { width: 100%; justify-content: center; }
      .locked-page { padding: 24px 22px 22px; }
    }

    /* Mobile address readability: keep long street/town strings from compressing into a single unreadable line. */
    @media (max-width: 720px) {
      .matched-card__addr {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
        line-height: 1.04;
        letter-spacing: -0.018em;
        overflow-wrap: break-word;
        word-break: normal;
      }
      .matched-card__town { font-size: 1rem; line-height: 1.35; }
      .snap-page-hero { padding-top: 24px; }
    }



    /* ============================================================
       Snapshot v3 — premium pre-checkout command page.
       Goal: reduce final-moment doubt with proof beside the CTA.
       ============================================================ */
    body.snapshot-pro {
      --snap-bg: #07111a;
      --snap-bg-2: #0d1d2a;
      --snap-panel: rgba(12, 28, 40, 0.78);
      --snap-panel-2: rgba(17, 41, 55, 0.82);
      --snap-line: rgba(137, 204, 193, 0.22);
      --snap-line-strong: rgba(198, 225, 220, 0.36);
      --snap-text: #f4fbf8;
      --snap-muted: rgba(226, 238, 235, 0.68);
      --snap-soft: rgba(226, 238, 235, 0.46);
      --snap-accent: #8ad0c1;
      --snap-gold: #e3c77d;
      background: var(--snap-bg);
      color: var(--snap-text);
    }
    body.snapshot-pro .site-header {
      background: rgba(7, 17, 26, 0.78);
      border-bottom-color: rgba(138, 208, 193, 0.16);
      backdrop-filter: blur(18px) saturate(150%);
    }
    body.snapshot-pro .wordmark,
    body.snapshot-pro .nav a { color: rgba(244, 251, 248, 0.78); }
    body.snapshot-pro .wordmark:hover,
    body.snapshot-pro .nav a:hover,
    body.snapshot-pro .nav a.active { color: #ffffff; }
    body.snapshot-pro .nav__cta {
      color: #07111a !important;
      background: linear-gradient(135deg, #f6e6b1, #8ad0c1);
      border-color: rgba(255,255,255,0.16);
      box-shadow: 0 14px 34px rgba(138, 208, 193, 0.22);
    }
    body.snapshot-pro .wordmark__mark svg circle { stroke: var(--snap-accent); }
    body.snapshot-pro .wordmark__mark svg path { stroke: #ffffff; }

    body.snapshot-pro .snap-page-hero {
      padding: clamp(24px, 4vw, 42px) 0 clamp(42px, 7vw, 82px);
      border-bottom: 1px solid rgba(138, 208, 193, 0.12);
      background:
        linear-gradient(120deg, rgba(7,17,26,0.96) 0%, rgba(9,30,45,0.95) 52%, rgba(20,49,61,0.9) 100%),
        radial-gradient(circle at 84% 12%, rgba(138, 208, 193, 0.3), transparent 33%),
        radial-gradient(circle at 10% 84%, rgba(227, 199, 125, 0.2), transparent 30%);
      position: relative;
      overflow: hidden;
    }
    body.snapshot-pro .snap-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(138,208,193,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138,208,193,0.045) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 82%);
      pointer-events: none;
    }
    body.snapshot-pro .snap-page-hero > .container { position: relative; z-index: 1; }
    .snapshot-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: clamp(18px, 3vw, 32px);
    }
    .snapshot-eyebrow {
      color: #07111a !important;
      background: linear-gradient(135deg, var(--snap-accent), #f6e6b1) !important;
      border: 0 !important;
      border-radius: 999px !important;
      padding: 9px 14px !important;
      box-shadow: 0 16px 40px rgba(138, 208, 193, 0.18);
    }
    .snapshot-masthead {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--snap-soft);
      font-weight: 600;
    }
    .snapshot-command-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
      gap: clamp(26px, 5vw, 66px);
      align-items: stretch;
      margin-bottom: clamp(22px, 4vw, 42px);
    }
    .snapshot-command-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 360px;
    }
    .snapshot-live-pill {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border: 1px solid var(--snap-line);
      border-radius: 999px;
      color: var(--snap-accent);
      background: rgba(138, 208, 193, 0.08);
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10.5px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .snapshot-live-pill span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--snap-accent);
      box-shadow: 0 0 0 6px rgba(138, 208, 193, 0.13), 0 0 22px rgba(138, 208, 193, 0.8);
    }
    .snapshot-command-copy h1 {
      margin: clamp(20px, 3vw, 32px) 0 18px;
      max-width: 8.5ch;
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(2.7rem, 5.5vw, 5.2rem);
      line-height: 0.92;
      letter-spacing: -0.055em;
      font-weight: 500;
      color: var(--snap-text);
      text-wrap: balance;
    }
    .snapshot-command-copy p {
      max-width: 50ch;
      color: var(--snap-muted);
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      line-height: 1.68;
    }


    .snapshot-usecase-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      max-width: 58ch;
    }
    .snapshot-usecase-strip span {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snap-soft);
      margin-right: 4px;
    }
    .snapshot-usecase-strip strong {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 9px;
      border: 1px solid var(--snap-line);
      border-radius: 999px;
      background: rgba(138,208,193,0.075);
      color: rgba(244,251,248,0.88);
      font-size: 12.5px;
      font-weight: 650;
      letter-spacing: -0.01em;
    }
    .snapshot-reason-wall {
      margin: 0 0 clamp(24px, 4vw, 42px);
      padding: clamp(22px, 4vw, 34px);
      border: 1px solid var(--snap-line);
      border-radius: 32px;
      background:
        radial-gradient(circle at 100% 0%, rgba(227,199,125,0.12), transparent 34%),
        rgba(255,255,255,0.045);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .snapshot-reason-wall__head {
      display: grid;
      grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 1.1fr) minmax(220px, 0.78fr);
      gap: 22px;
      align-items: start;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--snap-line);
    }
    .snapshot-reason-wall__head span,
    .snapshot-reason-grid article span {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: var(--snap-accent);
      font-weight: 700;
    }
    .snapshot-reason-wall__head h2 {
      margin: 0;
      color: #ffffff;
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.9rem, 3.4vw, 3.7rem);
      font-weight: 500;
      line-height: 0.98;
      letter-spacing: -0.043em;
      text-wrap: balance;
    }
    .snapshot-reason-wall__head p {
      margin: 0;
      color: var(--snap-muted);
      font-size: 13.5px;
      line-height: 1.6;
    }
    .snapshot-reason-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 1px;
      margin-top: 1px;
      background: var(--snap-line);
    }
    .snapshot-reason-grid article {
      min-height: 198px;
      padding: 22px;
      background: rgba(7,17,26,0.76);
    }
    .snapshot-reason-grid article h3 {
      margin: 18px 0 10px;
      color: #ffffff;
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      font-weight: 500;
      line-height: 1.04;
      letter-spacing: -0.025em;
    }
    .snapshot-reason-grid article p {
      margin: 0;
      color: var(--snap-muted);
      font-size: 13.5px;
      line-height: 1.55;
    }
    @media (max-width: 980px) {
      .snapshot-reason-wall__head { grid-template-columns: 1fr; }
      .snapshot-reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 680px) {
      .snapshot-usecase-strip { gap: 7px; }
      .snapshot-usecase-strip span { width: 100%; }
      .snapshot-reason-grid { grid-template-columns: 1fr; }
      .snapshot-reason-grid article { min-height: auto; }
    }


    .snapshot-value-bridge {
      display: grid;
      grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1.3fr);
      gap: clamp(18px, 3vw, 34px);
      align-items: stretch;
      margin: 0 0 clamp(20px, 3.2vw, 34px);
      padding: clamp(18px, 3vw, 26px);
      border: 1px solid rgba(138,208,193,0.18);
      border-radius: 28px;
      background:
        radial-gradient(circle at 0% 0%, rgba(246,230,177,0.1), transparent 30%),
        rgba(255,255,255,0.038);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .snapshot-value-bridge__head span,
    .snapshot-value-grid article strong {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--snap-accent);
      font-weight: 750;
    }
    .snapshot-value-bridge__head h2 {
      margin: 12px 0 10px;
      color: #ffffff;
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(1.55rem, 2.75vw, 3rem);
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 500;
      text-wrap: balance;
    }
    .snapshot-value-bridge__head p {
      margin: 0;
      max-width: 42ch;
      color: var(--snap-muted);
      font-size: 13.5px;
      line-height: 1.5;
    }
    .snapshot-value-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .snapshot-value-grid article {
      min-height: 188px;
      padding: 16px;
      border: 1px solid rgba(138,208,193,0.16);
      border-radius: 20px;
      background: rgba(7,17,26,0.44);
    }
    .snapshot-value-grid article h3 {
      margin: 18px 0 8px;
      color: #ffffff;
      font-size: 16px;
      line-height: 1.08;
      letter-spacing: -0.02em;
    }
    .snapshot-value-grid article p {
      margin: 0;
      color: var(--snap-muted);
      font-size: 12.8px;
      line-height: 1.48;
    }
    .snapshot-value-card.is-paid {
      background:
        radial-gradient(circle at 100% 0%, rgba(246,230,177,0.13), transparent 36%),
        rgba(138,208,193,0.08);
      border-color: rgba(246,230,177,0.28);
    }
    .snapshot-value-card ul {
      display: grid;
      gap: 9px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }
    .snapshot-value-card li {
      color: var(--snap-muted);
      font-size: 13.2px;
      line-height: 1.38;
    }
    .snapshot-value-card li::before {
      content: "✓";
      color: var(--snap-accent);
      margin-right: 8px;
    }
    .snapshot-value-card li span {
      color: #ffffff;
      font-weight: 800;
    }
    .snapshot-inline-note {
      display: none;
      margin: 8px 0 0 !important;
      color: var(--snap-soft) !important;
      font-size: 11.5px !important;
      line-height: 1.35 !important;
    }

    .snapshot-exact-report {
      display: grid;
      grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1.22fr);
      gap: clamp(22px, 4vw, 42px);
      align-items: stretch;
      margin: 0 0 clamp(24px, 4vw, 42px);
      padding: clamp(22px, 4vw, 34px);
      border: 1px solid var(--snap-line);
      border-radius: 32px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
    }
    .snapshot-exact-report__copy span {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: var(--snap-accent);
      font-weight: 700;
    }
    .snapshot-exact-report__copy h2 {
      margin: 16px 0 14px;
      color: #ffffff;
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(2rem, 3.6vw, 4rem);
      line-height: 0.96;
      letter-spacing: -0.045em;
      font-weight: 500;
      text-wrap: balance;
    }
    .snapshot-exact-report__copy p {
      margin: 0;
      color: var(--snap-muted);
      line-height: 1.62;
      max-width: 48ch;
    }
    .snapshot-report-preview {
      border: 1px solid var(--snap-line-strong);
      border-radius: 28px;
      background: rgba(7,17,26,0.56);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 28px 80px rgba(0,0,0,0.22);
      overflow: hidden;
    }
    .snapshot-report-preview__chrome {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--snap-line);
      background: rgba(255,255,255,0.055);
    }
    .snapshot-report-preview__chrome span,
    .snapshot-report-preview__chrome strong,
    .report-preview-row span {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snap-soft);
      font-weight: 700;
    }
    .snapshot-report-preview__chrome strong { color: var(--snap-accent); }
    .snapshot-report-preview__page { padding: 8px 18px 12px; }
    .report-preview-row {
      display: grid;
      grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid rgba(138,208,193,0.13);
    }
    .report-preview-row:last-child { border-bottom: 0; }
    .report-preview-row strong {
      color: #ffffff;
      font-size: 14.5px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }
    .report-preview-row.is-locked strong {
      display: grid;
      gap: 7px;
      filter: blur(0.2px);
    }
    .report-preview-row.is-locked strong i {
      display: block;
      height: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(244,251,248,0.2), rgba(138,208,193,0.42), rgba(244,251,248,0.16));
      opacity: 0.85;
    }
    .report-preview-row.is-locked strong i:nth-child(2) { width: 78%; }
    .report-preview-row.is-locked strong i:nth-child(3) { width: 58%; }
    .snapshot-report-preview__unlock {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px;
      background: rgba(138,208,193,0.08);
      border-top: 1px solid var(--snap-line);
      flex-wrap: wrap;
    }
    .snapshot-report-preview__unlock div strong {
      display: block;
      color: #ffffff;
      font-size: 18px;
      line-height: 1.1;
    }
    .snapshot-report-preview__unlock div span {
      display: block;
      margin-top: 3px;
      color: var(--snap-muted);
      font-size: 12.5px;
    }
    .snapshot-report-preview__unlock a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 12px 16px;
      border-radius: 14px;
      color: #07111a;
      background: linear-gradient(135deg, #f6e6b1, #8ad0c1);
      font-weight: 750;
      box-shadow: 0 16px 40px rgba(138,208,193,0.18);
    }

    @media (max-width: 980px) {
      .snapshot-value-bridge { grid-template-columns: 1fr; }
      .snapshot-value-grid { grid-template-columns: 1fr; }
      .snapshot-value-grid article { min-height: 0; }
    }
    @media (max-width: 980px) {
      .snapshot-exact-report { grid-template-columns: 1fr; }
    }
    @media (max-width: 620px) {
      .report-preview-row { grid-template-columns: 1fr; gap: 8px; }
      .snapshot-report-preview__unlock a { width: 100%; }
    }

    .snapshot-inline-cta {
      display: none;
      width: fit-content;
      margin-top: 14px;
      padding: 14px 18px;
      border-radius: 16px;
      color: #07111a;
      background: linear-gradient(135deg, #f6e6b1, #8ad0c1);
      font-weight: 700;
      box-shadow: 0 18px 40px rgba(138,208,193,0.18);
    }

    .snapshot-command-address {
      margin-top: 24px;
      padding: 14px 16px;
      border-left: 2px solid var(--snap-accent);
      background: rgba(255,255,255,0.045);
      color: #ffffff;
      font-weight: 600;
      line-height: 1.35;
      max-width: 62ch;
      overflow-wrap: anywhere;
    }

    .snapshot-answer-tease {
      margin-top: 14px;
      max-width: 62ch;
      border: 1px solid rgba(138,208,193,0.18);
      border-radius: 22px;
      background:
        radial-gradient(circle at 100% 0%, rgba(246,230,177,0.08), transparent 34%),
        rgba(7,17,26,0.38);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
    }
    .snapshot-answer-tease__head,
    .snapshot-answer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 13px;
      border-bottom: 1px solid rgba(138,208,193,0.13);
    }
    .snapshot-answer-tease__head {
      background: rgba(138,208,193,0.075);
    }
    .snapshot-answer-tease__head span,
    .snapshot-answer-row strong {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snap-accent);
      font-weight: 800;
    }
    .snapshot-answer-tease__head strong {
      color: #ffffff;
      font-size: 12.5px;
    }
    .snapshot-answer-row:last-child { border-bottom: 0; }
    .snapshot-answer-row span {
      color: rgba(244,251,248,0.86);
      font-size: 13px;
      line-height: 1.28;
    }
    .snapshot-answer-row strong {
      min-width: max-content;
      padding: 5px 8px;
      border: 1px solid rgba(246,230,177,0.22);
      border-radius: 999px;
      color: #f6e6b1;
      background: rgba(246,230,177,0.07);
    }

    .snapshot-mini-packet {
      margin-top: 16px;
      max-width: 62ch;
      border-radius: 30px;
      padding: 1px;
      background:
        radial-gradient(circle at 12% 0%, rgba(246,230,177,0.62), transparent 36%),
        radial-gradient(circle at 100% 18%, rgba(138,208,193,0.52), transparent 34%),
        linear-gradient(135deg, rgba(246,230,177,0.46), rgba(138,208,193,0.35), rgba(255,255,255,0.07));
      box-shadow: 0 28px 80px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.045) inset;
    }
    .mini-packet__paper {
      position: relative;
      overflow: hidden;
      border-radius: 29px;
      background:
        radial-gradient(circle at 8% 4%, rgba(246,230,177,0.42), transparent 28%),
        radial-gradient(circle at 105% 24%, rgba(138,208,193,0.26), transparent 35%),
        linear-gradient(180deg, #eef3e6 0%, #e6f1ea 54%, #dfece7 100%);
      color: #101a18;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.76), inset 0 -1px 0 rgba(17,49,51,0.08);
    }
    .mini-packet__paper::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15,42,48,0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15,42,48,0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255,255,255,0.22), transparent 44%);
      background-size: 40px 40px, 40px 40px, auto;
      opacity: 0.72;
      pointer-events: none;
    }
    .mini-packet__paper::after {
      content: "";
      position: absolute;
      inset: 42px auto 0 0;
      width: 5px;
      background: linear-gradient(180deg, rgba(31,109,109,0.56), rgba(138,208,193,0.14));
      opacity: 0.8;
      pointer-events: none;
    }
    .mini-packet__bar,
    .mini-packet__title,
    .mini-packet-row,
    .mini-packet__proof {
      position: relative;
      z-index: 1;
    }
    .mini-packet__bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      background: linear-gradient(90deg, #153b3d, #1f5a58 58%, #254945);
      color: #f6e6b1;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 850;
    }
    .mini-packet__bar strong {
      color: #ffffff;
      font-size: 11px;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }
    .mini-packet__title {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      padding: 15px 18px 11px 20px;
      border-bottom: 1px solid rgba(16,26,24,0.1);
      background: linear-gradient(90deg, rgba(255,255,255,0.38), rgba(255,255,255,0.12));
    }
    .mini-packet__title span {
      display: block;
      color: #496058;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 850;
    }
    .mini-packet__title strong {
      display: block;
      margin-top: 4px;
      color: #101a18;
      font-size: 16px;
      line-height: 1.12;
      letter-spacing: -0.025em;
    }
    .mini-packet__title b {
      flex: 0 0 auto;
      border-radius: 999px;
      padding: 6px 8px;
      background: #e7d596;
      color: #102326;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.08em;
    }
    .mini-packet__rows {
      position: relative;
      z-index: 1;
      padding: 2px 14px 9px 18px;
    }
    .mini-packet-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) max-content;
      gap: 6px 12px;
      align-items: center;
      padding: 11px 8px;
      border-bottom: 1px solid rgba(16,26,24,0.085);
      border-radius: 14px;
      background: rgba(255,255,255,0.18);
      margin-top: 5px;
    }
    .mini-packet-row span {
      color: #152522;
      font-size: 12.8px;
      line-height: 1.22;
      font-weight: 690;
    }
    .mini-packet-row strong {
      border: 1px solid rgba(31,109,109,0.25);
      border-radius: 999px;
      padding: 5px 7px;
      background: rgba(31,109,109,0.11);
      color: #173f40;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 8.5px;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-weight: 900;
      white-space: nowrap;
    }
    .mini-packet-row em {
      display: block;
      height: 8px;
      width: min(92%, 310px);
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(31,109,109,0.24), rgba(246,230,177,0.28), rgba(31,109,109,0.08));
      filter: blur(1.4px);
      opacity: 0.82;
    }
    .mini-packet-row small {
      color: #60736c;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 8.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .mini-packet-row--optional {
      background: rgba(246,230,177,0.16);
      margin-left: 0;
      margin-right: 0;
    }
    .mini-packet__proof {
      display: grid;
      grid-template-columns: 110px 1fr 0.72fr 0.42fr;
      gap: 8px;
      align-items: center;
      margin: 4px 14px 14px 18px;
      padding: 10px;
      border: 1px solid rgba(31,109,109,0.18);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(31,109,109,0.1), rgba(246,230,177,0.12));
    }
    .mini-packet__proof span {
      color: #214746;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 9px;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-weight: 900;
    }
    .mini-packet__proof i {
      display: block;
      height: 8px;
      border-radius: 999px;
      background: rgba(31,109,109,0.18);
    }
    .snapshot-preview-note {
      max-width: 62ch;
      margin-top: 10px;
      color: rgba(244,251,248,0.66);
      font-size: 12.5px;
      line-height: 1.45;
    }
    .snapshot-command-card {
      position: relative;
      padding: clamp(22px, 3vw, 32px);
      border: 1px solid var(--snap-line-strong);
      border-radius: 34px;
      background:
        radial-gradient(circle at 82% 12%, rgba(138, 208, 193, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
      box-shadow: 0 34px 100px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.16);
      overflow: hidden;
    }
    .snapshot-command-card::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 25px;
      pointer-events: none;
    }
    .snapshot-command-card__top,
    .snapshot-command-card__metrics,
    .snapshot-unlocks,
    .snapshot-command-cta,
    .snapshot-command-note { position: relative; z-index: 1; }
    .snapshot-command-card__top {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 18px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--snap-line);
    }
    .snapshot-command-card__top span,
    .snapshot-command-card__metrics span,
    .snapshot-unlocks strong {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--snap-soft);
    }
    .snapshot-command-card__top strong {
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(3.2rem, 5vw, 5rem);
      font-weight: 500;
      line-height: 0.9;
      color: #f6e6b1;
      letter-spacing: -0.06em;
    }
    .snapshot-command-card__metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }
    .snapshot-command-card__metrics div {
      min-height: 112px;
      padding: 16px 14px;
      border: 1px solid var(--snap-line);
      border-radius: 20px;
      background: rgba(7,17,26,0.42);
    }
    .snapshot-command-card__metrics strong {
      display: block;
      margin-top: 12px;
      color: #ffffff;
      font-size: clamp(1.15rem, 2vw, 1.7rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      overflow-wrap: anywhere;
    }
    .snapshot-unlocks {
      display: grid;
      gap: 8px;
      margin-top: 18px;
    }
    .snapshot-unlocks div {
      display: grid;
      grid-template-columns: 82px 1fr;
      gap: 14px;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px solid rgba(138, 208, 193, 0.14);
    }
    .snapshot-unlocks span { color: var(--snap-muted); font-size: 13.5px; line-height: 1.35; }
    .snapshot-command-cta {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-top: 22px;
      padding: 17px 20px;
      border-radius: 18px;
      color: #07111a;
      background: linear-gradient(135deg, #f6e6b1, #8ad0c1);
      box-shadow: 0 24px 54px rgba(138,208,193,0.2);
      font-weight: 700;
      letter-spacing: -0.01em;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .snapshot-command-cta:hover { transform: translateY(-1px); box-shadow: 0 28px 68px rgba(138,208,193,0.3); }
    .snapshot-command-note {
      margin: 13px 0 0 !important;
      text-align: center;
      color: var(--snap-soft) !important;
      font-size: 12px !important;
      line-height: 1.45 !important;
    }

    body.snapshot-pro .matched-card {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
      gap: clamp(22px, 4vw, 42px);
      margin-top: 0;
      padding: clamp(22px, 4vw, 34px);
      border: 1px solid var(--snap-line);
      border-radius: 28px;
      background: rgba(7, 17, 26, 0.54);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    body.snapshot-pro .matched-card__title { color: var(--snap-accent); margin-bottom: 14px; }
    body.snapshot-pro .matched-card__title::before { background: var(--snap-accent); }
    body.snapshot-pro .matched-card__addr {
      color: #ffffff;
      font-size: clamp(2rem, 4.1vw, 4.5rem);
      letter-spacing: -0.055em;
      max-width: 12.5ch;
    }
    body.snapshot-pro .matched-card__town { color: var(--snap-muted); }
    body.snapshot-pro .matched-card__parcel { color: var(--snap-soft); }
    body.snapshot-pro .matched-card__helper {
      color: var(--snap-muted);
      border-top-color: var(--snap-line);
      font-family: "Geist", system-ui, sans-serif;
      font-size: 14.5px;
      line-height: 1.55;
    }
    body.snapshot-pro .snapshot-proof-panel {
      grid-column: 2;
      grid-row: 1 / span 6;
      margin-top: 0;
      border-color: var(--snap-line-strong);
      background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045));
      box-shadow: none;
    }
    body.snapshot-pro .snapshot-proof-panel__head span { color: var(--snap-accent); }
    body.snapshot-pro .snapshot-proof-panel__head strong { color: #ffffff; }
    body.snapshot-pro .snapshot-proof-metric {
      background: rgba(7, 17, 26, 0.42);
      border-color: var(--snap-line);
    }
    body.snapshot-pro .snapshot-proof-metric span { color: var(--snap-soft); }
    body.snapshot-pro .snapshot-proof-metric strong { color: #ffffff; }
    body.snapshot-pro .snapshot-proof-panel__note {
      color: var(--snap-muted) !important;
      border-top-color: var(--snap-line) !important;
    }
    body.snapshot-pro .signals-strip {
      grid-column: 1 / -1;
      border-top-color: var(--snap-line);
    }
    body.snapshot-pro .signals-strip__head { color: var(--snap-muted); }
    body.snapshot-pro .signals-strip__head strong { color: var(--snap-accent); }
    body.snapshot-pro .signal-pill {
      color: rgba(244,251,248,0.86);
      border-color: var(--snap-line);
      background: rgba(138,208,193,0.08);
    }
    body.snapshot-pro .matched-card__cta {
      grid-column: 1 / -1;
      border-top-color: var(--snap-line);
    }
    body.snapshot-pro .matched-card__cta-text { color: var(--snap-muted); }
    body.snapshot-pro .matched-card__cta-text strong { color: #ffffff; }
    body.snapshot-pro .matched-card__cta .btn-primary {
      color: #07111a;
      background: linear-gradient(135deg, #f6e6b1, #8ad0c1);
      box-shadow: 0 18px 44px rgba(138,208,193,0.18);
    }

    body.snapshot-pro .section-x {
      background: #f7f4eb;
      color: var(--ink);
      border-bottom-color: rgba(15, 23, 42, 0.08);
    }
    body.snapshot-pro .section-x h2 { color: #142335; }
    body.snapshot-pro .section-x .lede { color: #556063; }
    body.snapshot-pro .snap-buy { margin-top: 0; background: #07111a; }
    body.snapshot-pro .snap-buy__inner {
      background:
        radial-gradient(circle at 50% 0%, rgba(138,208,193,0.22), transparent 34%),
        linear-gradient(180deg, #0b1a25, #07111a);
      border-top: 1px solid rgba(138,208,193,0.18);
      border-bottom: 1px solid rgba(138,208,193,0.18);
    }
    body.snapshot-pro .snap-buy__title,
    body.snapshot-pro .snap-buy__lede,
    body.snapshot-pro .snap-buy__reassure li,
    body.snapshot-pro .snap-buy__note { color: #f4fbf8; }
    body.snapshot-pro .snap-buy__lede,
    body.snapshot-pro .snap-buy__note { opacity: 0.72; }
    body.snapshot-pro .snap-buy__btn {
      color: #07111a;
      background: linear-gradient(135deg, #f6e6b1, #8ad0c1);
    }

    @media (max-width: 980px) {
      .snapshot-command-hero,
      body.snapshot-pro .matched-card { grid-template-columns: 1fr; }
      .snapshot-command-copy { min-height: 0; }
      body.snapshot-pro .snapshot-proof-panel { grid-column: auto; grid-row: auto; }
    }
    @media (max-width: 680px) {
      .snapshot-inline-cta { display: inline-flex; }
      .snapshot-command-card__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
      .snapshot-command-card__metrics div { min-height: 86px; padding: 12px 10px; }
      .snapshot-command-card__metrics span { font-size: 8.5px; letter-spacing: 0.12em; }
      .snapshot-command-card__metrics strong { font-size: 1.05rem; }
      .snapshot-unlocks div { grid-template-columns: 1fr; gap: 4px; }
      body.snapshot-pro .matched-card__addr {
        max-width: none;
        font-size: clamp(2.05rem, 9vw, 3.4rem);
        letter-spacing: -0.038em;
      }
      body.snapshot-pro .snapshot-proof-metrics { grid-template-columns: 1fr; }
      .snapshot-command-copy h1 { max-width: 10ch; font-size: clamp(3rem, 13vw, 4.6rem); margin-top: 18px; }
      .snapshot-command-copy p { font-size: 0.98rem; line-height: 1.55; }
    }
    @media (max-width: 430px) {
      .snapshot-command-card__metrics { grid-template-columns: 1fr; }
    }


    /* Conversion-only snapshot: hide anything that repeats the sell or lengthens the page. */

    body.snapshot-pro .site-footer,
    body.snapshot-pro .sticky-cta {
      display: none !important;
    }

    body.snapshot-pro .snapshot-reason-wall,
    body.snapshot-pro .matched-card,
    body.snapshot-pro .section-x,
    body.snapshot-pro .snap-buy,
    body.snapshot-pro .addr-ribbon,
    body.snapshot-pro .colophon {
      display: none !important;
    }
    body.snapshot-pro .snapshot-masthead { display: none !important; }
    body.snapshot-pro .snap-page-hero {
      padding-bottom: clamp(28px, 5vw, 56px);
    }
    body.snapshot-pro .snapshot-exact-report {
      margin-bottom: 0;
    }

    @media (max-width: 980px) {
      body.snapshot-pro .snapshot-command-card {
        display: none;
      }
    }

    @media (max-width: 680px) {
      body.snapshot-pro .snapshot-command-hero {
        gap: 18px;
        margin-bottom: 22px;
      }
      body.snapshot-pro .snapshot-command-card {
        padding: 18px;
        border-radius: 24px;
      }
      body.snapshot-pro .snapshot-unlocks {
        display: none;
      }
      body.snapshot-pro .snapshot-command-card__top {
        padding-bottom: 14px;
      }
      body.snapshot-pro .snapshot-command-card__top strong {
        font-size: 3rem;
      }
      body.snapshot-pro .snapshot-command-cta {
        margin-top: 14px;
      }
    }


    /* Mobile conversion trim: keep the page to proof -> locked preview -> CTA. */
    @media (max-width: 680px) {
      body.snapshot-pro .snap-page-hero {
        padding-top: 18px;
        padding-bottom: 26px;
      }
      body.snapshot-pro .snapshot-topline {
        gap: 8px;
        margin-bottom: 14px;
      }
      body.snapshot-pro .snapshot-command-copy h1 {
        max-width: 12.8ch;
        margin: 12px 0 9px;
        font-size: clamp(2.22rem, 9.3vw, 3.3rem);
        line-height: 0.94;
        letter-spacing: -0.047em;
      }
      body.snapshot-pro .snapshot-command-copy p {
        max-width: 34ch;
        font-size: 0.94rem;
        line-height: 1.45;
      }
      body.snapshot-pro .snapshot-command-address {
        margin-top: 14px;
        padding: 11px 13px;
        font-size: 0.93rem;
      }

      body.snapshot-pro .snapshot-answer-tease {
        margin-top: 10px;
        border-radius: 18px;
      }
      body.snapshot-pro .snapshot-answer-tease__head,
      body.snapshot-pro .snapshot-answer-row {
        padding: 9px 10px;
      }
      body.snapshot-pro .snapshot-answer-row span {
        font-size: 12.2px;
      }
      body.snapshot-pro .snapshot-answer-row strong {
        font-size: 8px;
        padding: 4px 6px;
      }
      body.snapshot-pro .snapshot-mini-packet {
        margin-top: 12px;
        border-radius: 22px;
      }
      body.snapshot-pro .mini-packet__paper {
        border-radius: 21px;
      }
      body.snapshot-pro .mini-packet__bar {
        padding: 9px 11px;
        font-size: 8.6px;
      }
      body.snapshot-pro .mini-packet__bar strong {
        font-size: 9.5px;
      }
      body.snapshot-pro .mini-packet__title {
        padding: 12px 12px 9px;
      }
      body.snapshot-pro .mini-packet__title strong {
        font-size: 14px;
      }
      body.snapshot-pro .mini-packet-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 9px 2px;
      }
      body.snapshot-pro .mini-packet-row strong {
        width: fit-content;
      }
      body.snapshot-pro .mini-packet-row small {
        font-size: 8px;
      }
      body.snapshot-pro .mini-packet__proof {
        grid-template-columns: 1fr;
        gap: 6px;
      }
      body.snapshot-pro .snapshot-usecase-strip {
        margin-top: 10px;
        gap: 6px;
      }
      body.snapshot-pro .snapshot-usecase-strip span {
        width: 100%;
        font-size: 9px;
      }
      body.snapshot-pro .snapshot-usecase-strip strong {
        min-height: 26px;
        padding: 5px 8px;
        font-size: 11px;
      }
      body.snapshot-pro .snapshot-inline-cta {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        min-height: 50px;
      }
      body.snapshot-pro .snapshot-inline-note {
        display: block;
        text-align: center;
      }
      body.snapshot-pro .snapshot-value-bridge {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        border-radius: 24px;
        margin-bottom: 16px;
      }
      body.snapshot-pro .snapshot-value-bridge__head h2 {
        font-size: clamp(1.42rem, 7vw, 2rem);
      }
      body.snapshot-pro .snapshot-value-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      body.snapshot-pro .snapshot-value-grid article {
        min-height: 0;
        padding: 13px;
      }
      body.snapshot-pro .snapshot-value-grid article h3 {
        margin: 8px 0 5px;
        font-size: 15px;
      }
      body.snapshot-pro .snapshot-value-grid article p {
        font-size: 12.5px;
      }
      body.snapshot-pro .snapshot-exact-report {
        padding: 16px;
        border-radius: 24px;
        gap: 14px;
      }
      body.snapshot-pro .snapshot-exact-report__copy h2 {
        margin: 10px 0 0;
        font-size: clamp(1.55rem, 8vw, 2.25rem);
        line-height: 1;
      }
      body.snapshot-pro .snapshot-exact-report__copy p {
        display: none;
      }
      body.snapshot-pro .snapshot-report-preview__chrome,
      body.snapshot-pro .snapshot-report-preview__unlock {
        padding: 13px;
      }
      body.snapshot-pro .snapshot-report-preview__page {
        padding: 4px 13px 8px;
      }
      body.snapshot-pro .report-preview-row {
        padding: 11px 0;
      }
      body.snapshot-pro .report-preview-row strong {
        font-size: 13.5px;
      }
    }

    .snapshot-eyebrow--flush { margin: 0; }
    .snapshot-accent-emphasis { font-style: italic; color: var(--accent); }
  
