/* Tree Fiddy Registered Agents - generated by build.py from templates/site.css; brand tokens come from the site JSON */
:root {
  --primary: #1f5a2e;
  --accent: #c9a227;
  --bg: #f2f5f0;
  --bg-card: #ffffff;
  --ink: #182019;
  --muted: #5d5d5d;
  --rule: #d8d4cb;
  --band: #1f5a2e;
  --band-ink: #ffffff;
  --quote-bg: #efece5;
  --est: #8a6d00;
  --est-bg: #fff6d6;
  --heading-font: 'Franklin Gothic Medium', 'Arial Narrow', 'Helvetica Neue Condensed', 'Roboto Condensed', Impact, Arial, sans-serif;
  --body-font: 'Trebuchet MS', Trebuchet, Verdana, Geneva, sans-serif;
  /* identity tokens (sites/<domain>.json -> identity): radius, wordmark and heading treatment */
  --radius: 14px;
  --mark-size: 44px;
  --wordmark-transform: uppercase;
  --wordmark-spacing: .04em;
  --wordmark-weight: 700;
  --heading-transform: uppercase;
  --heading-weight: 700;
  /* scrim behind the cinematic hero: the light-mode primary as r, g, b, fixed in dark mode too */
  --scrim-rgb: 31, 90, 46;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --primary: #8fd19a;
    --bg: #0f1a12;
    --bg-card: #1e242c;
    --ink: #e2ebe4;
    --muted: #a8a49c;
    --rule: #3a4048;
    --band: #0c1218;
    --band-ink: #e2ebe4;
    --quote-bg: #1a1f26;
    --est: #e2c15a;
    --est-bg: #2a2410;
  }
}
:root[data-theme="dark"] {
  --primary: #8fd19a;
  --bg: #0f1a12;
  --bg-card: #1e242c;
  --ink: #e2ebe4;
  --muted: #a8a49c;
  --rule: #3a4048;
  --band: #0c1218;
  --band-ink: #e2ebe4;
  --quote-bg: #1a1f26;
  --est: #e2c15a;
  --est-bg: #2a2410;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); }
h1, h2, h3, h4 { font-family: var(--heading-font); font-weight: var(--heading-weight); text-transform: var(--heading-transform); line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); margin-top: 1.6em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 8px; }
.skip:focus { left: 8px; z-index: 10; }

/* header: one of three layouts (identity.header_layout = row | stacked | bar) */
.site-header { border-bottom: 1px solid var(--rule); background: var(--bg-card); }
.header-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--heading-font); font-weight: var(--wordmark-weight); font-size: 1.1rem; letter-spacing: var(--wordmark-spacing); text-transform: var(--wordmark-transform); }
.logo .mark { width: var(--mark-size); height: var(--mark-size); flex: none; }
.nav { display: flex; gap: 14px; flex-wrap: wrap; margin-left: auto; font-size: .95rem; }
.nav a { text-decoration: none; color: var(--ink); opacity: .85; }
.nav a:hover { text-decoration: underline; opacity: 1; }
@media (max-width: 640px) { .nav { order: 3; width: 100%; margin-left: 0; gap: 10px 14px; } .header-row .btn-small { margin-left: auto; } }

/* stacked: seal centered over the wordmark, rule lines above and below the nav (the singular site) */
.layout-stacked { background: var(--bg); border-bottom: 0; }
.layout-stacked .header-row { flex-direction: column; gap: 6px; padding: 22px 16px 0; }
.layout-stacked .logo { flex-direction: column; gap: 10px; font-size: 1.25rem; text-align: center; }
.layout-stacked .nav { margin-left: 0; width: 100%; justify-content: center; gap: 22px; border-top: 3px double var(--primary); border-bottom: 3px double var(--primary); padding: 8px 0; margin-top: 10px; font-family: var(--heading-font); font-style: italic; font-size: 1rem; }
.layout-stacked .header-row .btn-small { margin: 12px 0 14px; }
@media (max-width: 640px) { .layout-stacked .nav { order: 0; } .layout-stacked .header-row .btn-small { margin-left: 0; } }

/* bar: full-bleed brand-color band, coin left, condensed caps, pill button (Tree Fiddy) */
.layout-bar { background: var(--band); border-bottom: 4px solid var(--accent); }
.layout-bar .logo, .layout-bar .nav a { color: var(--band-ink); }
.layout-bar .logo { font-size: 1.2rem; }
.layout-bar .nav { font-family: var(--heading-font); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; gap: 18px; }
.layout-bar .nav a { opacity: .9; }

/* buttons: one of three styles (identity.button_style = filled | outline | pill); radius follows --radius */
.btn { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: 12px 22px; border-radius: var(--radius); font-weight: 700; border: 2px solid var(--accent); font-size: 1rem; font-family: var(--heading-font); line-height: 1.2; }
.btn:hover { filter: brightness(1.08); }
.btn-small { padding: 8px 14px; font-size: .9rem; }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.buttons-outline .btn { background: transparent; color: var(--primary); border: 2px solid var(--primary); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; padding: 12px 20px; }
.buttons-outline .btn:hover { background: var(--primary); color: var(--bg); filter: none; }
.buttons-outline .btn-small { font-size: .78rem; padding: 8px 14px; }
.buttons-pill .btn { border-radius: 999px; background: var(--accent); border-color: var(--accent); color: var(--band); text-transform: uppercase; letter-spacing: .05em; }
.buttons-pill .btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.2em; }

.hero { padding: 56px 0 40px; background: linear-gradient(180deg, var(--bg-card), var(--bg)); }
.kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--muted); margin-bottom: .8em; font-weight: 700; }
.hero .sub { font-size: 1.2rem; max-width: 42em; }
.tagline { font-family: var(--heading-font); font-size: 1.35rem; font-style: italic; color: var(--primary); margin: .6em 0 0; }
.price-line { font-size: 1.15rem; font-weight: 700; margin-top: 1em; }
.price-big { font-family: var(--heading-font); font-size: clamp(3rem, 9vw, 5.5rem); line-height: 1; color: var(--primary); margin: .2em 0 0; }
.price-big small { font-size: .3em; color: var(--muted); font-family: var(--body-font); font-weight: 400; }

section { padding: 40px 0; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--bg-card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px; }
.card h3 { margin-top: 0; }
.card .n { font-family: var(--heading-font); font-size: 2.4rem; color: var(--rule); line-height: 1; margin-bottom: .3em; }
.card p:last-child { margin-bottom: 0; }

.beat { border: 2px solid var(--primary); border-radius: var(--radius); padding: 26px; background: var(--bg-card); }
.beat .kicker { margin-bottom: .4em; }
.rival { padding-left: 1em; border-left: 3px solid var(--rule); }
.rival a { font-weight: 700; }
tr.rival td a { color: var(--ink); }
.beat h2 { margin-top: 0; }
.footnote { font-size: .82rem; color: var(--muted); line-height: 1.45; margin-top: 1em; }

.band { background: var(--band); color: var(--band-ink); padding: 56px 0; }
.band h2, .band h3 { color: var(--band-ink); margin-top: 0; }
.band .btn { background: #fff; color: var(--band); border-color: #fff; }
.buttons-pill .band .btn { background: var(--accent); color: var(--band); border-color: var(--accent); }
.band .btn:hover { filter: none; background: #f0f0f0; }
.band .big { font-size: clamp(2rem, 6vw, 3.4rem); font-family: var(--heading-font); }
.band .accent-note { opacity: .85; }

.state-grid { display: grid; gap: 6px 14px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); padding: 0; margin: 1em 0 0; list-style: none; }
.state-grid a { text-decoration: none; display: block; padding: 6px 0; border-bottom: 1px solid var(--rule); }
.state-grid a:hover { text-decoration: underline; }

.prose { max-width: 46em; }
.prose h2:first-child { margin-top: 0; }
.faq dt { font-weight: 700; margin-top: 1.4em; font-family: var(--heading-font); font-size: 1.15rem; }
.faq dd { margin: .3em 0 0; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1em 0; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--bg-card); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .95rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { background: var(--quote-bg); font-weight: 700; }
td.num, th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
tr.ours td { font-weight: 700; color: var(--primary); }
tr.total td { font-weight: 700; border-top: 2px solid var(--ink); }
.est { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--est); background: var(--est-bg); border-radius: 4px; padding: 1px 6px; margin-left: 6px; vertical-align: middle; }
.neg { color: var(--accent); }

.statute { background: var(--quote-bg); border-left: 4px solid var(--primary); margin: 1em 0; padding: 14px 18px; font-size: .95rem; }
.statute blockquote { margin: 0 0 .6em; font-style: italic; overflow-wrap: anywhere; }
.statute .source { font-size: .85rem; color: var(--muted); margin: 0; overflow-wrap: anywhere; }
.statute .source strong { color: var(--ink); }
.kind { text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; color: var(--muted); font-weight: 700; margin: 1.6em 0 .2em; }
.comply { font-family: var(--heading-font); font-size: clamp(2rem, 6vw, 3.4rem); color: var(--accent); margin: 0; }
.missing { border: 1px dashed var(--rule); padding: 14px 18px; border-radius: 8px; color: var(--muted); }
.close-out { text-align: center; padding: 48px 16px; border-top: 1px solid var(--rule); margin-top: 2em; }
.close-out h2 { margin-top: 0; }
.verified { font-size: .82rem; color: var(--muted); }

.honest .kicker { color: var(--accent); }
.placeholder { border: 2px dashed var(--accent); padding: 18px; border-radius: 8px; font-family: Consolas, Menlo, monospace; font-size: .95rem; margin: 2em 0 0; }
.placeholder small { display: block; font-family: var(--body-font); color: var(--muted); margin-top: .5em; }

.terms ol { padding-left: 0; list-style: none; counter-reset: none; }
.terms li { margin: 0 0 1.2em; }
.terms h3 { margin-bottom: .2em; }
.real-clause { border: 3px solid var(--ink); padding: 22px; border-radius: 8px; font-weight: 700; font-size: 1.15rem; margin-top: 2em; }

.site-footer { border-top: 1px solid var(--rule); padding: 32px 0 48px; margin-top: 40px; font-size: .9rem; color: var(--muted); }
.site-footer .fineprint { font-weight: 700; color: var(--ink); }
.footer-links a { margin-right: 14px; }
.fine { font-size: .8rem; }

.knockoff .hero { border-top: 3px double var(--primary); }
.middle .price-big { color: var(--accent); }
.knockoff .price-big { transform: rotate(-2deg); display: inline-block; }

/* hero media (assets/media/<domain>/, Doug 2026-09-24 "seedance treatment"): an autoplay muted loop with its poster.
   Three treatments follow identity.hero_media: cinematic (edge to edge behind the copy, brand scrim), framed (inside the
   double rules beside the copy), banded (inside the green bar beside the copy). The sibling .hero-poster image is the
   reduced-motion and no-video fallback. */
.hero-inner { display: grid; gap: 32px; align-items: center; }
.hero-has-media .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.hero-copy { min-width: 0; }
.hero-media { margin: 0; position: relative; min-width: 0; }
.hero-video, .hero-poster { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; background: #111; }
.hero-poster { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-poster { display: block; }
}
@media (max-width: 800px) {
  .hero-has-media .hero-inner { grid-template-columns: 1fr; gap: 22px; }
}

/* cinematic (the die site): the clip runs edge to edge behind the copy; a primary-color scrim, heavy on the copy side, keeps the type legible */
.hero-cinematic { position: relative; overflow: hidden; background: rgb(var(--scrim-rgb)); color: #fff; padding: 84px 0 68px; min-height: 540px; display: flex; align-items: center; }
.hero-cinematic .hero-inner { width: 100%; grid-template-columns: minmax(0, 34em); }
.hero-cinematic .hero-copy { position: relative; z-index: 2; }
.hero-cinematic .hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-cinematic .hero-video, .hero-cinematic .hero-poster { width: 100%; height: 100%; aspect-ratio: auto; }
.hero-cinematic .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--scrim-rgb), .94) 0%, rgba(var(--scrim-rgb), .88) 36%, rgba(var(--scrim-rgb), .42) 66%, rgba(var(--scrim-rgb), .18) 100%); }
.hero-cinematic h1, .hero-cinematic .sub, .hero-cinematic .price-big, .hero-cinematic .price-line, .hero-cinematic .tagline { color: #fff; }
.hero-cinematic .kicker, .hero-cinematic .price-big small { color: rgba(255, 255, 255, .78); }
.hero-cinematic .btn-ghost { color: #fff; border-color: #fff; }
.hero-cinematic .hero-copy a:not(.btn) { color: #fff; }
@media (max-width: 800px) {
  .hero-cinematic { min-height: 0; padding: 56px 0 44px; }
  .hero-cinematic .hero-media::after { background: rgba(var(--scrim-rgb), .9); }
}

/* framed (the seal site): the copy stays on the cream; the clip sits beside it inside the double rules */
.hero-framed .hero-media { border: 3px double var(--primary); padding: 6px; background: var(--bg-card); border-radius: var(--radius); }

/* banded (Tree Fiddy): the hero is the green bar; the copy sits on the solid green and the clip inside a brass frame */
.hero-banded { background: var(--band); color: var(--band-ink); border-bottom: 4px solid var(--accent); padding: 48px 0 44px; }
.hero-banded h1, .hero-banded .sub, .hero-banded .price-line { color: var(--band-ink); }
.hero-banded .kicker, .hero-banded .price-big small { color: var(--band-ink); opacity: .75; }
.hero-banded .tagline { color: var(--accent); }
.hero-banded .btn-ghost { color: var(--band-ink); border-color: var(--band-ink); }
.hero-banded .hero-copy a:not(.btn) { color: var(--band-ink); }
.hero-banded .hero-media { border: 3px solid var(--accent); border-radius: var(--radius); overflow: hidden; background: #000; }
.hero-banded .hero-video, .hero-banded .hero-poster { border-radius: 0; }

/* stills (worth page full width; the extra still on the FAQ or the honest page), framed the way the site frames its clip */
.still { margin: 0 0 1.8em; }
.still img { display: block; width: 100%; height: auto; border-radius: var(--radius); background: #111; }
.still-full { margin: 0 0 2.2em; }
.media-framed .still img { border: 3px double var(--primary); padding: 6px; background: var(--bg-card); }
.media-banded .still img { border: 3px solid var(--accent); }
