/* IronTally marketing site — brand primitives ported verbatim from product/site/css/site.css,
   plus IronTally-specific layout. Brand: brand/brand-guidelines.md.

   LIGHT-GROUND FLIP (2026-08-15, owner brand-consistency order: "the marketing site should look
   extremely similar to quoteIron, i want brand consistency from the begininnging").
   Before this pass the token palette, the fonts and every component (tag chip, buttons, nav,
   two-tone wordmark) were already QuoteIron's verbatim — but the PAGE GROUND was inverted:
   quoteiron.com runs body #F0F2F4 with dark hero/pricing/footer BANDS, while this file ran
   body #171A1E dark all the way down. Measured side by side, that single inversion was the whole
   visible brand gap. This pass adopts QuoteIron's real anatomy:

     nav        dark  (iron-950)      <- unchanged
     hero       dark  (iron-950)      <- now an explicit BAND, since the body no longer supplies it
     features   light (body ground)
     exitkit    white (#fff + zinc-300 hairlines, QuoteIron's .quotes band pattern)
     ironworks  light (body ground)
     pricing    dark  (iron-950)      <- QuoteIron's .pricing band; .pricecard was ALREADY
                                         iron-800 + steel-600, i.e. already built for a dark band
     faq        light + #fff detail cards (QuoteIron's .faq pattern)
     footer     dark  (iron-950)      <- unchanged

   Dark/light alternation with no two dark bands adjacent, exactly like the QuoteIron home page.
   SINGLE-THEME LIGHT BY DESIGN: quoteiron.com ships no prefers-color-scheme block at all, so
   neither does this file — matching it IS the consistency order. Do not add a dark-mode block here
   without adding one there first, or the two sites diverge again.

   This stylesheet is shared with guides/quickbooks/ — the .guide__* block at the bottom was
   re-themed for the light ground in the same pass.

   FONT PATH BUG, FIXED IN THE SAME PASS (2026-08-15). Every @font-face below used to read
   url('assets/fonts/...'). A url() in a stylesheet resolves relative to THE STYLESHEET, not the
   document — so from /css/site.css those pointed at /css/assets/fonts/, which has never existed.
   Result: since the site was first built (2026-07-20) NOT ONE custom face ever loaded, and the
   whole site silently rendered in the fallback stack — Arial Narrow standing in for Barlow
   Condensed, system sans for Barlow, ui-monospace for IBM Plex Mono. It looked plausible enough
   that six fix waves walked past it. QuoteIron's own site.css has always had the correct
   '../assets/fonts/' and that is now matched here, so the two sites finally render in the same
   type. Caught by a document.fonts.check() assertion; keep that assertion in any future gate. */
@font-face { font-family:'Barlow Condensed'; font-weight:700; font-display:swap; src:url('../assets/fonts/BarlowCondensed-700.woff2') format('woff2'); }
@font-face { font-family:'Barlow Condensed'; font-weight:600; font-display:swap; src:url('../assets/fonts/BarlowCondensed-600.woff2') format('woff2'); }
@font-face { font-family:'Barlow'; font-weight:400; font-display:swap; src:url('../assets/fonts/Barlow-400.woff2') format('woff2'); }
@font-face { font-family:'Barlow'; font-weight:500; font-display:swap; src:url('../assets/fonts/Barlow-500.woff2') format('woff2'); }
@font-face { font-family:'Barlow'; font-weight:600; font-display:swap; src:url('../assets/fonts/Barlow-600.woff2') format('woff2'); }
@font-face { font-family:'IBM Plex Mono'; font-weight:500; font-display:swap; src:url('../assets/fonts/IBMPlexMono-500.woff2') format('woff2'); }
@font-face { font-family:'IBM Plex Mono'; font-weight:600; font-display:swap; src:url('../assets/fonts/IBMPlexMono-600.woff2') format('woff2'); }
:root{
  --iron-950:#171A1E; --iron-800:#22262B; --steel-600:#4A5058;
  --zinc-300:#C6CBD1; --zinc-100:#F0F2F4; --white:#FFFFFF;
  --torch-500:#F86A12; --torch-600:#D85C10; --green-600:#1F7A3D;
  --rad:6px;
  --display:'Barlow Condensed','Arial Narrow',sans-serif;
  --body:'Barlow',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --mono:'IBM Plex Mono',ui-monospace,monospace;
}
*{box-sizing:border-box;} html,body{margin:0;}
/* LIGHT GROUND — QuoteIron's body exactly (zinc-100 field, iron-950 ink). */
body{ background:var(--zinc-100); color:var(--iron-950); font-family:var(--body);
  font-size:17px; line-height:1.55; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img{ max-width:100%; }
a{ color:inherit; }
:focus-visible{ outline:3px solid var(--torch-500); outline-offset:2px; }
.wrap{ max-width:1080px; margin:0 auto; padding:0 22px; }
/* Sections no longer carry a border-top: on a dark page the hairline WAS the separation, on the
   light page the alternating band backgrounds are. Matches QuoteIron's `section { padding:64px 0 }`. */
section{ padding:64px 0; }
h1{ font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.01em; line-height:1.0; font-size:44px; margin:0 0 20px; }
h2{ font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.01em; line-height:1.02; font-size:34px; margin:0 0 16px; }
h3{ font-family:var(--display); font-weight:600; text-transform:uppercase; letter-spacing:.01em; font-size:22px; margin:0 0 8px; }
p{ margin:0 0 14px; }
.eyebrow{ font-family:var(--mono); font-weight:600; font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--steel-600); display:block; margin-bottom:10px; }
.sec-sub{ font-size:19px; color:var(--steel-600); max-width:60ch; }
.wordmark{ font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.01em; line-height:1; }
.wordmark .ir{ color:var(--torch-500); } .wordmark .ta{ color:inherit; }
.tprice{ color:var(--torch-600); font-family:var(--mono); font-weight:600; }
/* Inline prose links on the light ground — QuoteIron's .sched__more anchor treatment. */
.linkline a{ color:var(--iron-950); font-weight:600; text-decoration:underline; text-decoration-color:var(--torch-500); text-decoration-thickness:2px; text-underline-offset:3px; }
@media (min-width:760px){ h1{ font-size:64px; } h2{ font-size:44px; } }
@media (max-width:759px){ h1{ font-size:40px; } h2{ font-size:30px; } }

/* --- Dark bands (hero, pricing) — the ink inversions QuoteIron applies to .closer/.langs/.pricing.
   One class so a band can never be half-converted. --- */
.band--dark{ background:var(--iron-950); color:var(--zinc-100); }
.band--dark h1, .band--dark h2, .band--dark h3{ color:#fff; }
.band--dark .sec-sub{ color:var(--zinc-300); }
.band--dark .sec-sub b, .band--dark p b{ color:#fff; }
.band--dark p{ color:var(--zinc-300); }
/* steel-600 eyebrows are a 2.3:1 whisper on iron-950 — legible on the light ground they were
   re-themed for, not on a dark band. zinc-300 on iron-950 measures 10.4:1. */
.band--dark .eyebrow{ color:var(--zinc-300); }
.band--dark .wordmark .ta{ color:var(--zinc-100); }

/* --- White band (exitkit) — QuoteIron's .quotes pattern. --- */
.band--white{ background:#fff; border-top:1px solid var(--zinc-300); border-bottom:1px solid var(--zinc-300); }

/* --- Tag chip (layered chamfer — copied verbatim from QuoteIron; keeps the iron border uniform
   along the 45° cuts). Ground-agnostic by construction: iron-950 shell, white/torch inner. --- */
.tag{ position:relative; isolation:isolate; display:inline-flex; align-items:center; gap:8px; background:var(--iron-950); border-radius:0 var(--rad) var(--rad) 0; padding:7px 16px 7px 11px; font-family:var(--mono); font-weight:600; font-size:16px; color:var(--iron-950); white-space:nowrap; clip-path:polygon(11px 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px), 0 11px); }
.tag::before{ content:''; position:absolute; inset:2px; z-index:-1; background:#fff; border-radius:0 4px 4px 0; clip-path:polygon(9.8px 0, 100% 0, 100% 100%, 9.8px 100%, 0 calc(100% - 9.8px), 0 9.8px); }
.tag__hole{ width:8px; height:8px; border-radius:50%; background:var(--zinc-100); box-shadow:0 0 0 2px var(--iron-950); }
.tag--torch{ transform:rotate(-2deg); font-size:19px; filter:drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.tag--torch::before{ background:var(--torch-500); }

/* --- Buttons — QuoteIron's exactly: every button carries the 2px iron rule. --- */
.btn{ display:inline-flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.04em; font-size:18px; padding:14px 26px; border-radius:var(--rad); text-decoration:none; border:2px solid var(--iron-950); cursor:pointer; }
.btn--torch{ color:var(--iron-950); background:var(--torch-500); } .btn--torch:hover{ background:var(--torch-600); }
/* .btn--iron is the LIGHT-ground secondary (iron fill, white ink). */
.btn--iron{ color:#fff; background:var(--iron-950); } .btn--iron:hover{ background:var(--iron-800); }
/* .btn--ghostlight is the DARK-band secondary (outline on iron). */
.btn--ghostlight{ background:transparent; color:var(--zinc-100); border-color:var(--zinc-300); }
.btn--ghostlight:hover{ border-color:#fff; color:#fff; }

/* --- Nav (dark bar, unchanged from the QuoteIron port) --- */
.nav{ position:sticky; top:0; z-index:50; background:rgba(23,26,30,.94); border-bottom:2px solid var(--iron-800); backdrop-filter:saturate(140%) blur(6px); }
.nav__in{ max-width:1080px; margin:0 auto; padding:12px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.nav__logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav__mark{ height:30px; width:auto; }
.nav .wordmark{ font-size:24px; color:var(--zinc-100); }
.nav__links{ display:flex; align-items:center; gap:20px; }
.nav__links a{ color:var(--zinc-300); text-decoration:none; font-size:15px; }
.nav__links a:hover{ color:var(--zinc-100); }
.nav__cta{ font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.02em; color:var(--iron-950); background:var(--torch-500); padding:9px 18px; border-radius:var(--rad); }
.nav__cta:hover{ background:var(--torch-600); }
@media (max-width:759px){ .nav__links a:not(.nav__cta){ display:none; } }

/* --- PRE-LAUNCH STATE (2026-08-16, public coming-soon launch) --------------------------------
   Two elements carry the "not open yet" state, and they are the ONLY two new places Torch is
   allowed on this page: the full-width bar above the nav, and the hero badge. Both are additions to
   the Torch allowlist in tools/measure-irontally-site.mjs (.soonbar / .badge--soon) -- Torch is the
   brand's one attention colour and the pre-launch state is exactly what it should be spent on.
   The .soon__* launch cards deliberately do NOT use Torch: they are future claims, and giving them
   the same visual weight as the state banner would blur the built/not-built line the copy draws. */
.soonbar{ background:var(--torch-500); color:var(--iron-950); }
/* align-items:flex-start, not center: on a phone the sentence wraps to three lines and a
   vertically-centred dot floats beside the middle one, reading as a stray mark instead of a bullet.
   The margin-top hand-aligns it to the first line's optical centre at the body size. */
.soonbar__in{ display:flex; align-items:flex-start; gap:12px; padding-top:10px; padding-bottom:10px; }
.soonbar__dot{ flex:none; width:9px; height:9px; border-radius:50%; background:var(--iron-950); margin-top:7px; }
.soonbar p{ margin:0; font-family:var(--body); font-weight:600; font-size:15px; line-height:1.4; color:var(--iron-950); }
.badge{ display:inline-block; font-family:var(--mono); font-weight:600; font-size:13px; letter-spacing:.1em; text-transform:uppercase; padding:6px 12px; border-radius:var(--rad); margin:0 0 16px; }
.badge--soon{ color:var(--torch-500); border:2px solid var(--torch-500); background:transparent; }

/* --- Hero (dark band) --- */
.hero{ padding:56px 0 64px; }
.hero__aside{ font-size:16px; color:var(--zinc-300); margin:22px 0 0; max-width:52ch; }
.hero__aside a{ color:#fff; }
.hero__in{ display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center; }
.hero__proof{ font-family:var(--mono); font-weight:600; font-size:13px; letter-spacing:.08em; color:var(--zinc-300); margin:22px 0 0; }
.hero__ctas{ display:flex; align-items:center; gap:20px; margin-top:26px; flex-wrap:wrap; }
/* The hero board is a real app render on the app's own light ground — the iron-800 bezel reads as
   a device against the dark band, the same "phone on iron" language as QuoteIron's .hero__phone. */
.hero__shot img{ display:block; width:100%; max-width:320px; height:auto; margin:0 auto; border-radius:22px; border:6px solid var(--iron-800); box-shadow:0 24px 60px rgba(0,0,0,.5); }
.hero__shotnote{ font-family:var(--mono); font-size:12px; color:var(--steel-600); text-align:center; margin:12px 0 0; }
@media (max-width:759px){ .hero__in{ grid-template-columns:1fr; gap:28px; } .hero__shot img{ max-width:270px; } }

/* --- Features walk --- */
.feat{ display:grid; grid-template-columns:1.3fr 1fr; gap:36px; align-items:center; margin-top:44px; }
.feat--flip .feat__shot{ order:2; }
/* Light-ground device treatment — QuoteIron's .schedcard__img (iron bezel + soft iron shadow),
   replacing the dark page's flat 2px iron-800 hairline. */
.feat__shot img{ display:block; width:100%; height:auto; border:4px solid var(--iron-800); border-radius:14px; box-shadow:0 10px 26px rgba(23,26,30,.16); }
.feat__copy p{ color:var(--steel-600); }
@media (max-width:759px){ .feat{ grid-template-columns:1fr; gap:18px; } .feat--flip .feat__shot{ order:0; } }

/* --- What lands at launch (dark band) --- */
.soon{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px; }
.soon__card{ background:var(--iron-800); border:2px solid var(--steel-600); border-radius:14px; padding:24px; }
.soon__card h3{ color:#fff; margin-top:10px; }
.soon__card p{ color:var(--zinc-300); font-size:16px; }
.soon__card p:last-child{ margin-bottom:0; }
.soon__tag{ display:inline-block; font-family:var(--mono); font-weight:600; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--iron-950); background:var(--zinc-300); padding:4px 10px; border-radius:var(--rad); }
@media (max-width:899px){ .soon{ grid-template-columns:1fr; gap:18px; } }

/* --- QuickBooks Exit Kit (white band) --- */
.exitkit__grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:center; }
.exitkit__shot img{ display:block; width:100%; height:auto; border:4px solid var(--iron-800); border-radius:14px; box-shadow:0 10px 26px rgba(23,26,30,.16); }
.exitkit p{ color:var(--steel-600); }
.exitkit p b{ color:var(--iron-950); }
@media (max-width:759px){ .exitkit__grid{ grid-template-columns:1fr; gap:20px; } }

/* --- QuoteIron synergy + IronWorks bundle (light) --- */
.ironworks__grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:36px; align-items:center; }
.ironworks__tags{ display:flex; gap:14px; margin-top:22px; flex-wrap:wrap; }
.ironworks p{ color:var(--steel-600); }
.ironworks p b{ color:var(--iron-950); }
.ironworks__shot img{ display:block; width:100%; max-width:290px; height:auto; margin:0 auto; border-radius:18px; border:5px solid var(--iron-800); box-shadow:0 14px 34px rgba(23,26,30,.18); }
@media (max-width:759px){ .ironworks__grid{ grid-template-columns:1fr; gap:22px; } }

/* --- Pricing section (dark band — QuoteIron's .pricing; the card was already built for iron) --- */
.pricecard{ background:var(--iron-800); border:2px solid var(--steel-600); border-radius:14px; padding:28px; max-width:720px; }
.pricecard__tagrow{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:18px; }
.pricecard__alt{ font-family:var(--mono); font-size:15px; color:var(--zinc-300); }
.pricecard__alt .tprice{ color:var(--torch-500); }
.pricecard ul{ list-style:none; padding:0; margin:0 0 20px; }
.pricecard li{ position:relative; padding:7px 0 7px 26px; color:var(--zinc-300); }
.pricecard li::before{ content:'+'; position:absolute; left:0; color:var(--torch-500); font-weight:700; }
.tablewrap{ overflow-x:auto; margin:12px 0; }
.cmp{ width:100%; border-collapse:collapse; font-size:15px; }
.cmp th,.cmp td{ text-align:left; padding:9px 12px; border-bottom:1px solid var(--iron-950); }
.cmp thead th{ font-family:var(--mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--zinc-300); }
.cmp .us td{ background:rgba(248,106,18,.14); }
.cmp .mono, .cmp a{ font-family:var(--mono); font-size:13px; color:var(--zinc-300); }
.pricecard__vs{ color:var(--zinc-300); }
.nobs{ font-family:var(--display); font-weight:700; text-transform:uppercase; font-size:13px; letter-spacing:.04em; color:var(--zinc-300); margin:18px 0; }
.srcnote{ font-family:var(--mono); font-size:12px; color:var(--zinc-300); margin-top:14px; }

/* --- FAQ (light, white cards — QuoteIron's .faq) --- */
#faq details{ background:#fff; border:1px solid var(--zinc-300); border-radius:var(--rad); padding:16px 18px; margin-bottom:10px; }
#faq summary{ font-family:var(--display); font-weight:600; text-transform:uppercase; letter-spacing:.01em; font-size:20px; cursor:pointer; color:var(--iron-950); }
#faq details p{ color:var(--steel-600); margin:12px 0 0; max-width:70ch; }

/* --- Guide pages (inner-page shell, added 2026-08-13 with the QuickBooks import guide -- the
   site's first page besides index.html). Pattern for future guides: reuse the SAME nav + footer
   markup verbatim (only the relative asset paths change with folder depth), wrap the page body in
   <main class="guide"><article class="wrap guide__in">...</article></main>, and lean on the
   existing eyebrow/h1/h2/h3/.sec-sub/.btn primitives above rather than inventing new type.
   Re-themed for the light ground 2026-08-15 alongside the homepage flip. --- */
.guide__in{ max-width:760px; padding-top:56px; padding-bottom:24px; }
.guide__back{ display:inline-block; font-family:var(--mono); font-size:13px; color:var(--steel-600); text-decoration:none; margin-bottom:22px; }
.guide__back:hover{ color:var(--iron-950); }
.guide__lede{ font-size:19px; color:var(--steel-600); max-width:64ch; }
.guide__step{ margin:28px 0; padding-top:28px; border-top:2px solid var(--zinc-300); }
.guide__step:first-of-type{ border-top:0; padding-top:0; }
.guide__step h3{ margin:20px 0 8px; }
.guide__step p{ color:var(--steel-600); }
.guide__step ol, .guide__step ul{ color:var(--steel-600); padding-left:22px; margin:0 0 14px; }
.guide__step li{ margin-bottom:8px; }
.guide__shot{ margin:16px 0; }
.guide__shot img{ display:block; width:100%; max-width:346px; height:auto; border:4px solid var(--iron-800); border-radius:14px; box-shadow:0 10px 26px rgba(23,26,30,.16); margin:0 auto; }
.guide__caveats{ background:#fff; border:1px solid var(--zinc-300); border-radius:12px; padding:22px 24px; margin:32px 0; }
.guide__caveats h3{ margin-top:0; }
.guide__caveats p{ color:var(--steel-600); }
.guide__caveats ul{ color:var(--steel-600); padding-left:22px; margin:10px 0 0; }
.guide__caveats li{ margin-bottom:8px; }
.guide__cta{ margin:36px 0 8px; text-align:center; }

/* --- Footer (dark, unchanged) --- */
footer{ background:var(--iron-950); color:var(--zinc-300); border-top:2px solid var(--iron-800); padding:44px 0 64px; }
.foot__brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.foot__brand .nav__mark{ height:28px; }
.foot__brand .wordmark{ color:var(--zinc-100); }
.foot__rules{ font-family:var(--display); font-weight:700; text-transform:uppercase; font-size:14px; letter-spacing:.04em; color:var(--zinc-300); }
.foot__rules .ir{ color:var(--torch-500); }
.foot__rules a{ color:var(--zinc-100); }
footer .mono{ font-family:var(--mono); font-size:12px; letter-spacing:.04em; color:var(--zinc-300); }
footer .mono a{ color:var(--zinc-100); }
