/* ============================================================
   Fence Works — marketing site
   Dark navy + teal. Figtree display, JetBrains Mono kickers.
   Tokens mirror the app (app/styles.css). Accent vars are
   tweakable at runtime by the Tweaks panel (site.js).
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #090d14;
  --bg-2:      #0b1019;   /* alternating band */
  --bg-3:      #0d131e;
  --surface:   #111a24;
  --surface-2: #17212e;
  --surface-3: #1f2b3a;
  --sunken:    #070a10;

  /* lines */
  --line:        #1b2738;
  --line-2:      #283749;
  --line-strong: #3a4f68;

  /* ACCENT — tweakable */
  --acc:        #00ffd8;   /* primary accent (brand gradient-from) */
  --acc-2:      #4dd4ff;   /* gradient partner (brand gradient-to) */
  --acc-ink:    #042622;   /* text on accent */
  --acc-grad:   linear-gradient(120deg, var(--acc) 0%, var(--acc-2) 100%);
  --acc-glow:   rgba(0, 255, 216, 0.32);
  --acc-tint:   rgba(0, 255, 216, 0.10);
  --acc-tint-2: rgba(0, 255, 216, 0.18);

  /* supporting */
  --amber:  #f5c451;
  --red:    #e8563d;
  --green:  #4cc66e;
  --violet: #9d8bff;

  /* text */
  --fg:       #eef3f9;
  --fg-2:     #aeb9c9;
  --fg-3:     #7b8799;
  --fg-faint: #54627a;

  /* type */
  --font-display: 'Figtree', system-ui, sans-serif;
  --font-sans:    'Figtree', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* radius — tweakable */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow:    0 8px 30px rgba(0,0,0,0.45);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.55);

  --nav-h: 70px;
  --maxw: 1200px;
  --section-y: 120px;   /* tweakable density */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--acc-tint-2); color: var(--fg); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--sunken); }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; border: 3px solid var(--sunken); }
::-webkit-scrollbar-thumb:hover { background: #3a4a66; }

/* ---------------- type helpers ---------------- */
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.mono { font-family: var(--font-mono); }
.acc-text { color: var(--acc); }
.grad-text {
  background: var(--acc-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--acc);
  border: 1px solid var(--acc-tint-2); background: var(--acc-tint);
  padding: 6px 12px; border-radius: 7px;
}
.kicker::before { content: "›"; opacity: .7; font-weight: 700; }
.kicker.plain { border: 0; background: none; padding: 0; color: var(--fg-3); }
.kicker.plain::before { display: none; }

h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint);
}

/* ---------------- layout ---------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.band { padding: var(--section-y) 0; }
.band-alt { background: var(--bg-2); }
.band-sunken { background: var(--sunken); }
.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .kicker { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; line-height: 1.05; }
.section-head p { color: var(--fg-2); font-size: 18px; margin: 18px auto 0; max-width: 620px; text-wrap: pretty; }

.muted { color: var(--fg-3); }
.faint { color: var(--fg-faint); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: var(--r-md);
  font-weight: 700; font-size: 15.5px; border: 1px solid transparent;
  transition: filter .15s, background .15s, border-color .15s, transform .08s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--acc-grad); color: var(--acc-ink); box-shadow: 0 10px 34px -10px var(--acc-glow); }
.btn-primary:hover { filter: brightness(1.07); box-shadow: 0 14px 44px -10px var(--acc-glow); }
.btn-ghost { background: var(--surface-2); color: var(--fg); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--surface-3); border-color: var(--acc-tint-2); }
.btn-outline { background: transparent; color: var(--acc); border-color: var(--acc-tint-2); }
.btn-outline:hover { background: var(--acc-tint); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------------- chips / tags ---------------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--acc); border: 1px solid var(--acc-tint-2); background: var(--acc-tint);
  padding: 4px 9px; border-radius: 6px;
}

/* ---------------- founder banner ---------------- */
.promo {
  position: relative; z-index: 60;
  background: var(--acc-grad); color: var(--acc-ink);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 20px; text-align: center;
}
.promo b { font-weight: 800; }
.promo .promo-badge {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; border: 1px solid rgba(4,38,34,0.35); border-radius: 6px;
  padding: 3px 9px;
}
.promo a { text-decoration: underline; font-weight: 800; white-space: nowrap; }
.promo .promo-x { position: absolute; right: 16px; opacity: .6; font-size: 18px; line-height: 1; background: none; border: 0; color: var(--acc-ink); }
.promo .promo-x:hover { opacity: 1; }
@media (max-width: 720px){ .promo .promo-badge { display: none; } .promo { font-size: 12.5px; padding: 9px 34px 9px 14px; } }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(9,13,20,0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.no-blur { background: var(--bg); }
.nav-inner { max-width: 1320px; margin: 0 auto; height: 100%; padding: 0 28px;
  display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand .word { font-family: var(--font-display); font-weight: 900; font-size: 21px; letter-spacing: -0.04em; }
.brand .word .w2 { color: var(--acc); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav-link {
  position: relative; padding: 9px 14px; border-radius: var(--r-pill);
  color: var(--fg-2); font-weight: 600; font-size: 15px;
  background: none; border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--fg); background: var(--surface-2); }
.nav-link.active { color: var(--acc); }
.nav-link .caret { width: 14px; height: 14px; opacity: .7; transition: transform .2s; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* product mega dropdown */
.nav-drop { position: relative; }
.nav-drop > .nav-link { position: relative; z-index: 2; }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  margin-top: 12px;
  width: 620px; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 70;
}
.nav-drop:hover .mega, .nav-drop:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop:hover .caret, .nav-drop:focus-within .caret { transform: rotate(180deg); }
/* invisible bridge so the cursor can cross the gap without losing hover */
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 18px; }
.mega-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--r-md); transition: background .15s; }
.mega-item:hover { background: var(--surface-2); }
.mega-ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center;
  background: var(--acc-tint); border: 1px solid var(--acc-tint-2); color: var(--acc); }
.mega-ico svg { width: 19px; height: 19px; }
.mega-item .mt { font-weight: 700; font-size: 14.5px; }
.mega-item .md { color: var(--fg-3); font-size: 12.5px; line-height: 1.4; margin-top: 2px; }

.nav-burger { display: none; background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 10px; width: 42px; height: 42px; place-items: center; color: var(--fg); }
.nav-burger svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-right .btn-ghost { display: none; }
  .nav-burger { display: grid; }
}

/* mobile drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 80; background: rgba(6,9,15,0.6); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .2s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel { position: absolute; top: 0; right: 0; width: min(86vw, 360px); height: 100%;
  background: var(--surface); border-left: 1px solid var(--line-2); padding: 22px;
  transform: translateX(100%); transition: transform .24s var(--e, cubic-bezier(.3,.7,.2,1)); overflow-y: auto; }
.mobile-menu.open .mobile-panel { transform: none; }
.mobile-panel a { display: block; padding: 13px 12px; border-radius: 10px; font-weight: 600; font-size: 16px; color: var(--fg); }
.mobile-panel a:hover { background: var(--surface-2); }
.mobile-panel .mm-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); margin: 16px 12px 4px; }

/* ---------------- hero ---------------- */
.hero { position: relative; overflow: hidden; }
.hero-canvas-wrap { position: absolute; inset: 0; z-index: 0; }
#heroCanvas { width: 100%; height: 100%; display: block; }
.hero-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(80% 60% at 50% 46%, rgba(9,13,20,0.46), transparent 72%),
    linear-gradient(180deg, rgba(9,13,20,0.26) 0%, rgba(9,13,20,0.2) 50%, rgba(9,13,20,0.7) 86%, var(--bg) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto;
  padding: 96px 28px 120px; text-align: center; }
.hero h1 { font-size: clamp(44px, 7vw, 86px); font-weight: 800; line-height: 0.98; letter-spacing: -0.04em; text-shadow: 0 2px 30px rgba(6,9,15,0.6); }
.hero h1 .line2 { display: block; }
.hero-sub { color: var(--fg-2); font-size: clamp(17px, 2vw, 21px); max-width: 660px; margin: 26px auto 0; text-wrap: pretty; text-shadow: 0 1px 16px rgba(6,9,15,0.7); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-pills { display: flex; gap: 22px 30px; justify-content: center; flex-wrap: wrap; margin-top: 30px;
  color: var(--fg-2); font-size: 14.5px; font-weight: 600; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; }
.hero-pill svg { width: 17px; height: 17px; color: var(--acc); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  font-size: 13.5px; font-weight: 600; color: var(--acc);
  border: 1px solid var(--acc-tint-2); background: rgba(9,13,20,0.5); backdrop-filter: blur(4px);
  padding: 7px 15px; border-radius: var(--r-pill); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 10px var(--acc); flex-shrink: 0; }
.hero-badge { white-space: nowrap; }

/* big stat strip */
.statband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.statband-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.statband .st { padding: 30px 24px; text-align: center; border-right: 1px solid var(--line); }
.statband .st:last-child { border-right: 0; }
.statband .st .n { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.03em; }
.statband .st .n .u { font-size: 20px; color: var(--acc); margin-left: 2px; }
.statband .st .l { color: var(--fg-3); font-size: 13px; font-weight: 600; margin-top: 4px; }
@media (max-width: 760px){ .statband-inner { grid-template-columns: 1fr 1fr; } .statband .st:nth-child(2n){ border-right: 0; } .statband .st:nth-child(-n+2){ border-bottom: 1px solid var(--line); } }

/* ---------------- generic card ---------------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .18s, box-shadow .18s, transform .18s; }
.card.glow:hover { border-color: var(--acc-tint-2); box-shadow: 0 0 0 1px var(--acc-tint), 0 18px 50px -22px var(--acc-glow); transform: translateY(-3px); }
.card.pad { padding: 26px; }

/* feature grid (homepage) */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px){ .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .feat-grid { grid-template-columns: 1fr; } }
.feat-card { display: flex; flex-direction: column; padding: 26px; position: relative; overflow: hidden; }
.feat-card .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--acc-tint); border: 1px solid var(--acc-tint-2); color: var(--acc); margin-bottom: 18px; }
.feat-card .ico svg { width: 23px; height: 23px; }
.feat-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.feat-card p { color: var(--fg-3); font-size: 14.5px; margin: 9px 0 16px; line-height: 1.55; flex: 1; }
.feat-card .more { color: var(--acc); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .15s; }
.feat-card:hover .more { gap: 10px; }
.feat-card .badge-soon { position: absolute; top: 18px; right: 18px; }

/* how it works steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step { padding: 26px; }
.step .num { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--acc);
  background: var(--acc-tint); border: 1px solid var(--acc-tint-2); margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; }
.step p { color: var(--fg-3); font-size: 14.5px; margin-top: 8px; }

/* value cards (2-col) */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px){ .value-grid { grid-template-columns: 1fr; } }
.value-card { padding: 30px; position: relative; }
.value-card::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  background: var(--acc-grad); border-radius: 0 3px 3px 0; opacity: 0; transition: opacity .2s; }
.value-card:hover::before { opacity: 1; }
.value-card .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line-2); color: var(--acc); margin-bottom: 18px; }
.value-card .ico svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 19px; font-weight: 700; }
.value-card p { color: var(--fg-3); font-size: 14.5px; margin: 9px 0 16px; }

/* personas (however you run your shop) */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px){ .persona-grid { grid-template-columns: 1fr; } }
.persona { padding: 26px; }
.persona .pl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); margin-bottom: 12px; }
.persona h3 { font-size: 18px; font-weight: 700; }
.persona p { color: var(--fg-3); font-size: 14px; margin-top: 8px; }

/* testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px){ .testi-grid { grid-template-columns: 1fr; } }
.testi { padding: 28px; display: flex; flex-direction: column; }
.testi .stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi p { font-size: 15.5px; line-height: 1.6; color: var(--fg); flex: 1; text-wrap: pretty; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi .ava { width: 40px; height: 40px; border-radius: 50%; background: var(--acc-grad); color: var(--acc-ink);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.testi .who .nm { font-weight: 700; font-size: 14px; }
.testi .who .rl { color: var(--fg-3); font-size: 12.5px; }

/* faq */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--fg);
  padding: 24px 4px; font-size: 18px; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .pm { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .2s; color: var(--acc); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }
.faq-a p { color: var(--fg-2); font-size: 15.5px; margin: 0; line-height: 1.6; max-width: 680px; }

/* CTA band */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band .glow-bg { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 50% 120%, var(--acc-glow), transparent 60%); opacity: .5; }
.cta-band h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.03; position: relative; }
.cta-band p { color: var(--fg-2); font-size: 18px; max-width: 540px; margin: 18px auto 0; position: relative; }
.cta-band .hero-cta { margin-top: 34px; }
.cta-band .sub { color: var(--fg-faint); font-size: 13px; margin-top: 18px; }

/* footer */
.footer { background: var(--sunken); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 20px; } }
.footer .word { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: -0.04em; }
.footer .word .w2 { color: var(--acc); }
.footer-blurb { color: var(--fg-3); font-size: 14px; margin: 14px 0 0; max-width: 280px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); font-weight: 500; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--fg-2); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--acc); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--fg-faint); font-size: 13px; }
.footer-bottom a { color: var(--fg-3); }
.footer-bottom a:hover { color: var(--acc); }

/* ---------------- feature page hero ---------------- */
.fhero { padding: 64px 0 0; }
.fhero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 940px){ .fhero-grid { grid-template-columns: 1fr; gap: 32px; } }
.fhero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.02; margin-top: 20px; }
.fhero .lede { color: var(--fg-2); font-size: 18.5px; margin: 22px 0 30px; max-width: 540px; text-wrap: pretty; }
.fhero .fhero-stats { display: flex; gap: 30px; margin-top: 30px; }
.fhero .fhero-stats .n { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; }
.fhero .fhero-stats .n .u { font-size: 15px; color: var(--acc); }
.fhero .fhero-stats .l { color: var(--fg-3); font-size: 12.5px; margin-top: 2px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb .sep { opacity: .5; }

/* product screenshot frame (browser chrome) */
.shot { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.shot-bar .d { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.shot-bar .addr { margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint);
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 4px 12px; flex: 1; max-width: 320px; }
.shot-body { padding: 0; }

/* mock styles used inside feature shots */
.mock { padding: 18px; font-size: 13px; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-2); margin-bottom: 10px; }
.mock-row .mr-ico { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: var(--acc-tint); color: var(--acc); flex-shrink: 0; }
.mock-row .mr-ico svg { width: 17px; height: 17px; }
.mock-row .mr-main { flex: 1; min-width: 0; }
.mock-row .mr-t { font-weight: 700; font-size: 13.5px; }
.mock-row .mr-s { color: var(--fg-3); font-size: 12px; }
.mock-row .mr-amt { font-family: var(--font-mono); font-weight: 700; color: var(--acc); }

/* fade-up on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--e, cubic-bezier(.2,.7,.3,1)), transform .6s var(--e, cubic-bezier(.2,.7,.3,1)); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------------- pricing ---------------- */
.price-toggle { display: inline-flex; align-items: center; gap: 0; background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: var(--r-pill); padding: 4px; margin: 0 auto; }
.price-toggle button { border: 0; background: none; color: var(--fg-3); font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: var(--r-pill); transition: all .15s; }
.price-toggle button.on { background: var(--acc-grad); color: var(--acc-ink); }
.price-toggle .save { font-family: var(--font-mono); font-size: 10px; margin-left: 6px; opacity: .8; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 1040px){ .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .price-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; position: relative; }
.price-card.pop { border-color: var(--acc-tint-2); box-shadow: 0 0 0 1px var(--acc-tint-2), 0 24px 60px -28px var(--acc-glow); }
.price-card .pop-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--acc-grad); color: var(--acc-ink); font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 7px; white-space: nowrap; }
.price-card .pn { font-weight: 700; font-size: 18px; }
.price-card .pd { color: var(--fg-3); font-size: 13px; margin-top: 4px; min-height: 34px; }
.price-card .price { display: flex; align-items: flex-end; gap: 6px; margin: 18px 0 4px; }
.price-card .price .amt { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.03em; line-height: 1; }
.price-card .price .per { color: var(--fg-3); font-size: 14px; padding-bottom: 6px; }
.price-card .was { font-size: 13px; color: var(--fg-faint); text-decoration: line-through; min-height: 18px; }
.price-card .feats { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-card .feats li { display: flex; gap: 10px; font-size: 13.5px; color: var(--fg-2); line-height: 1.4; }
.price-card .feats li svg { width: 16px; height: 16px; color: var(--acc); flex-shrink: 0; margin-top: 2px; }

/* comparison table */
.cmp { width: 100%; border-collapse: collapse; font-size: 14px; table-layout: fixed; }
.cmp th, .cmp td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.cmp th:first-child, .cmp td:first-child { text-align: left; width: 34%; }
.cmp thead th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); font-weight: 500; }
.cmp tbody td { color: var(--fg-2); }
.cmp tbody td:first-child { color: var(--fg); font-weight: 600; }
.cmp .grp td { background: var(--bg-2); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); font-weight: 600; text-align: left; }
.cmp .yes { display: inline-flex; }
.cmp .yes svg { display: block; margin: 0 auto; }
.cmp .no { color: var(--fg-faint); }
/* highlight the Pro (4th) column */
.cmp th:nth-child(4), .cmp td:nth-child(4) { background: var(--acc-tint); }
.cmp thead th.col-pop { color: var(--acc); }
.cmp tbody tr:last-child td:nth-child(4) { border-radius: 0 0 8px 8px; }

/* ---------------- tweaks panel ---------------- */
#tweakFab { position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--acc-tint-2);
  background: var(--surface); color: var(--acc); display: grid; place-items: center;
  box-shadow: var(--shadow-lg); transition: transform .15s, background .15s; }
#tweakFab:hover { transform: scale(1.06); background: var(--surface-2); }
#tweakFab svg { width: 24px; height: 24px; }
.tweak-panel { position: fixed; right: 22px; bottom: 86px; z-index: 200; width: 320px; max-height: 78vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(.98); opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; }
.tweak-panel.open { opacity: 1; visibility: visible; transform: none; }
.tweak-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--surface); }
.tweak-head .tt { font-weight: 800; font-size: 15px; }
.tweak-head .ts { font-family: var(--font-mono); font-size: 10px; color: var(--fg-faint); letter-spacing: .1em; text-transform: uppercase; }
.tweak-x { background: none; border: 0; color: var(--fg-3); font-size: 20px; line-height: 1; }
.tweak-x:hover { color: var(--fg); }
.tweak-sec { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.tweak-sec .sl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 12px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 34px; height: 34px; border-radius: 9px; border: 2px solid transparent; cursor: pointer; position: relative; transition: transform .12s; }
.swatch:hover { transform: scale(1.08); }
.swatch.on { border-color: var(--fg); box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px currentColor; }
.seg { display: flex; gap: 6px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 4px; }
.seg button { flex: 1; border: 0; background: none; color: var(--fg-3); font-weight: 700; font-size: 12.5px; padding: 8px 6px; border-radius: 7px; transition: all .14s; }
.seg button.on { background: var(--surface-3); color: var(--fg); }
.tweak-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-row .rl { font-size: 13px; font-weight: 600; color: var(--fg-2); }
.range { -webkit-appearance: none; appearance: none; width: 150px; height: 5px; border-radius: 99px; background: var(--line-2); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 17px; height: 17px; border-radius: 50%; background: var(--acc); cursor: pointer; box-shadow: 0 0 0 4px var(--acc-tint); }
.toggle-sw { width: 44px; height: 26px; border-radius: 99px; background: var(--line-2); border: 0; position: relative; transition: background .15s; flex-shrink: 0; }
.toggle-sw.on { background: var(--acc); }
.toggle-sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .15s; }
.toggle-sw.on::after { transform: translateX(18px); }
.tweak-reset { width: 100%; padding: 11px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 10px; color: var(--fg-2); font-weight: 700; font-size: 13px; }
.tweak-reset:hover { background: var(--surface-3); color: var(--fg); }

/* utility */
.stack-sm > * + * { margin-top: 14px; }
.glow-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2) 30%, var(--line-2) 70%, transparent); border: 0; margin: 0; }
.logo-mark { display: block; }

/* ============================================================
   ESTIMATOR MOCK (product-accurate)
   ============================================================ */
.estimator { display: grid; grid-template-columns: 215px 1fr; background: var(--sunken);
  border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 430px; }
@media (max-width: 460px){ .estimator { grid-template-columns: 1fr; } .estimator .est-map { min-height: 240px; } }
.est-panel { padding: 16px; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border-right: 1px solid var(--line); }
.est-eyebrow { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--acc); margin-bottom: 10px; }
.est-eyebrow svg { width: 13px; height: 13px; }
.est-addr { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -.02em; line-height: 1.1; text-transform: uppercase; }
.est-meta { color: var(--fg-3); font-size: 11.5px; margin-top: 3px; }
.est-chips { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.est-chip { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; color: var(--fg-2);
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 7px; padding: 5px 8px; }
.est-chip svg { width: 12px; height: 12px; color: var(--acc); }
.est-chip-lock { color: var(--acc); border-color: var(--acc-tint-2); background: var(--acc-tint); }
.est-divider { height: 1px; background: var(--line); margin: 14px 0; }
.est-tag { font-family: var(--font-mono); font-size: 10px; color: var(--fg-2); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 6px; padding: 4px 8px; }
.est-tag b { color: var(--acc); }
.est-bar { height: 7px; border-radius: 99px; background: var(--line-2); overflow: hidden; }
.est-bar span { display: block; height: 100%; background: var(--acc-grad); border-radius: 99px; }
.est-price { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -.03em; color: var(--acc);
  background: var(--acc-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-top: 2px; }
.est-actions { display: flex; gap: 7px; margin-top: 14px; }
.est-actions svg { width: 14px; height: 14px; }
.est-map { position: relative; background: #16301d; overflow: hidden; }
.est-search { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; align-items: center; gap: 7px;
  background: rgba(9,13,20,0.85); backdrop-filter: blur(6px); border: 1px solid var(--acc-tint-2); border-radius: 9px;
  padding: 8px 11px; font-size: 11.5px; font-weight: 600; color: var(--fg); }
.est-search svg { width: 13px; height: 13px; color: var(--acc); }
.est-locked { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 6px;
  background: rgba(245,196,81,0.14); border: 1px solid rgba(245,196,81,0.4); color: var(--amber); border-radius: 99px;
  padding: 6px 13px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.est-locked svg { width: 12px; height: 12px; }

/* estimator animation */
@keyframes fwLivePulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 var(--acc-glow); } 50% { opacity: .55; box-shadow: 0 0 0 5px transparent; } }
.est-search .livedot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); display: inline-block; animation: fwLivePulse 1.6s ease-in-out infinite; }
.est-fence { stroke-dasharray: 560; stroke-dashoffset: 560; }
.estimator.animate .est-fence { animation: fwDraw 2.4s var(--ease-emphasized, cubic-bezier(.2,0,0,1)) forwards; }
@keyframes fwDraw { to { stroke-dashoffset: 0; } }
.est-post, .est-corner, .est-handle, .est-ftlabel { opacity: 0; }
.estimator.animate .est-post { animation: fwFade .3s ease forwards; }
.estimator.animate .est-corner { animation: fwPop .4s var(--ease-emphasized, cubic-bezier(.2,0,0,1)) forwards; }
.estimator.animate .est-handle { animation: fwFade .5s ease forwards 1.9s; }
.estimator.animate .est-ftlabel { animation: fwFade .4s ease forwards 2.1s; }
@keyframes fwFade { to { opacity: 1; } }
@keyframes fwPop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce){ .est-fence,.est-post,.est-corner,.est-handle,.est-ftlabel { animation: none !important; stroke-dashoffset: 0; opacity: 1; } }

/* ============================================================
   REAL-APP MOCKS — products catalog, email sequences, panels
   ============================================================ */
.applet { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.applet-bar { display: flex; align-items: center; gap: 9px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.applet-bar .ab-ico { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--acc-tint); border: 1px solid var(--acc-tint-2); color: var(--acc); }
.applet-bar .ab-ico svg { width: 15px; height: 15px; }
.applet-bar .ab-t { font-weight: 800; font-size: 14px; letter-spacing: -.01em; }
.applet-bar .ab-s { color: var(--fg-faint); font-size: 11.5px; }
.applet-bar .ab-right { margin-left: auto; }
.applet-body { padding: 14px; }

/* product catalog */
.prodrow { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-2); margin-bottom: 9px; }
.prodrow:last-child { margin-bottom: 0; }
.prod-sw { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.12); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2); }
.prodrow .pr-main { flex: 1; min-width: 0; }
.prodrow .pr-n { font-weight: 700; font-size: 13.5px; }
.prodrow .pr-s { color: var(--fg-3); font-size: 11.5px; }
.prodrow .pr-cat { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); border: 1px solid var(--line-2); border-radius: 5px; padding: 3px 6px; }
.prodrow .pr-price { font-family: var(--font-display); font-weight: 800; color: var(--acc); font-size: 16px; white-space: nowrap; }
.prodrow .pr-price small { color: var(--fg-faint); font-weight: 500; font-size: 10px; font-family: var(--font-sans); }

/* email sequences */
.seqcard { border: 1px solid var(--line); border-radius: 11px; background: var(--bg-2); padding: 13px 14px; margin-bottom: 10px; }
.seqcard:last-child { margin-bottom: 0; }
.seqcard .sc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.seqcard .sc-n { font-weight: 700; font-size: 13.5px; }
.seqcard .sc-trig { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-faint); }
.seqcard .sc-on { margin-left: auto; width: 34px; height: 19px; border-radius: 99px; background: var(--acc); position: relative; flex-shrink: 0; }
.seqcard .sc-on::after { content: ""; position: absolute; top: 2px; right: 2px; width: 15px; height: 15px; border-radius: 50%; background: #fff; }
.seqsteps { display: flex; gap: 7px; }
.seqstep { flex: 1; border: 1px solid var(--line-2); border-radius: 8px; padding: 8px 9px; background: var(--surface); }
.seqstep .ss-day { font-family: var(--font-mono); font-size: 9.5px; color: var(--acc); font-weight: 600; }
.seqstep .ss-sub { font-size: 11px; color: var(--fg-2); line-height: 1.35; margin-top: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.seq-reward { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--amber);
  background: rgba(245,196,81,0.12); border: 1px solid rgba(245,196,81,0.32); border-radius: 6px; padding: 3px 8px; margin-left: 6px; }

/* operational lead widget */
.lw-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 7px; }
.lw-seg { display: flex; gap: 6px; }
.lw-opt { flex: 1; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--fg-2); font-weight: 700; font-size: 12.5px;
  padding: 9px 6px; border-radius: 9px; transition: all .14s; }
.lw-opt:hover { border-color: var(--acc-tint-2); color: var(--fg); }
.lw-opt.on { background: var(--acc-grad); color: var(--acc-ink); border-color: transparent; box-shadow: 0 6px 16px -8px var(--acc-glow); }
.liveweb .range { background: var(--line-2); }
.liveweb .range::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--acc-tint); }

/* ============================================================
   TIMELINE (connected 1→2→3→4 sequence)
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 30px; position: relative; }
@media (max-width: 820px){ .timeline { grid-template-columns: 1fr; gap: 30px; } }
.tl-step { position: relative; padding: 0 18px; text-align: center; }
.tl-node { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px; position: relative; display: grid; place-items: center;
  background: var(--surface-2); border: 1.5px solid var(--line-2); color: var(--fg-faint); font-family: var(--font-mono); font-weight: 700; font-size: 19px; z-index: 2;
  transform: scale(.86); transition: background .35s, border-color .35s, color .35s, box-shadow .45s, transform .45s var(--ease-emphasized, cubic-bezier(.2,0,0,1)); }
.tl-node svg { width: 26px; height: 26px; }
.tl-step.lit .tl-node { background: var(--acc-grad); border-color: transparent; color: var(--acc-ink);
  transform: scale(1); box-shadow: 0 0 0 6px var(--acc-tint), 0 0 26px var(--acc-glow); }
/* connector line: gray track + accent fill that draws on .lit */
.tl-step::before { content: ""; position: absolute; top: 30px; left: 50%; width: 100%; height: 2px; background: var(--line-2); z-index: 1; }
.tl-step::after { content: ""; position: absolute; top: 30px; left: 50%; width: 100%; height: 2px; background: var(--acc-grad); box-shadow: 0 0 12px var(--acc-glow);
  transform: scaleX(0); transform-origin: left center; transition: transform .5s ease; z-index: 1; }
.tl-step:last-child::before, .tl-step:last-child::after { display: none; }
.tl-step.lit::after { transform: scaleX(1); }
@media (max-width: 820px){ .tl-step::before, .tl-step::after { display: none; } .tl-node { margin-bottom: 14px; } }
.tl-when { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--acc); transition: color .35s; }
.tl-step:not(.lit) .tl-when { color: var(--fg-faint); }
.tl-date { color: var(--fg-faint); font-size: 12px; margin-top: 3px; }
.tl-step h3 { font-size: 17px; font-weight: 700; margin-top: 12px; letter-spacing: -.01em; transition: color .35s; }
.tl-step:not(.lit) h3 { color: var(--fg-3); }
.tl-step p { color: var(--fg-3); font-size: 13.5px; margin-top: 7px; line-height: 1.5; max-width: 240px; margin-inline: auto; }

/* ============================================================
   CARD UPGRADES — stronger visual treatment
   ============================================================ */
.feat-card, .value-card, .step, .persona, .testi { position: relative; overflow: hidden; isolation: isolate; }
/* top sheen line on hover */
.card.glow::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: 0; transition: opacity .25s; z-index: 3; }
.card.glow:hover::after { opacity: .8; }
/* radial corner glow */
.feat-card::before, .value-card .glowspot, .step::before {
  content: ""; position: absolute; top: -40%; right: -30%; width: 60%; height: 80%;
  background: radial-gradient(circle, var(--acc-glow), transparent 70%); opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0; }
.feat-card:hover::before, .step:hover::before { opacity: .5; }
.feat-card > *, .value-card > *, .step > * { position: relative; z-index: 1; }
/* upgraded icon tiles — gradient-tinted, glowing */
.feat-card .ico, .value-card .ico {
  background: linear-gradient(150deg, var(--acc-tint-2), var(--acc-tint));
  border: 1px solid var(--acc-tint-2); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 18px -8px var(--acc-glow); }
.feat-card:hover .ico, .value-card:hover .ico { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 26px -8px var(--acc-glow); }
/* persona accent number/label tile */
.persona { border-top: 2px solid transparent; transition: border-color .2s, transform .2s, box-shadow .2s; }
.persona:hover { border-top-color: var(--acc); }
/* testimonial polish */
.testi { background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.testi::before { content: "\201C"; position: absolute; top: 6px; right: 18px; font-family: var(--font-display); font-size: 80px; line-height: 1;
  color: var(--acc); opacity: .08; z-index: 0; }
/* value-card mini metric chip row */
.vc-metric { display: inline-flex; align-items: baseline; gap: 7px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); width: 100%; }
.vc-metric .n { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--acc); }
.vc-metric .l { color: var(--fg-3); font-size: 12px; }

/* ============================================================
   BLOG
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 920px){ .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color .18s, box-shadow .18s, transform .18s; }
.post-card:hover { border-color: var(--acc-tint-2); box-shadow: 0 18px 50px -24px var(--acc-glow); transform: translateY(-3px); }
.post-cover { position: relative; height: 150px; display: grid; place-items: center; color: var(--c);
  background: linear-gradient(150deg, color-mix(in oklch, var(--c) 16%, var(--surface)), var(--bg-2)); border-bottom: 1px solid var(--line); }
.post-cat { position: absolute; left: 14px; bottom: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-2); background: rgba(9,13,20,0.6); border: 1px solid var(--line-2); border-radius: 6px; padding: 4px 9px; }
.post-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: .04em; }
.post-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin: 9px 0 8px; line-height: 1.25; }
.post-body p { color: var(--fg-3); font-size: 14px; line-height: 1.55; flex: 1; margin: 0 0 16px; }
.post-more { color: var(--acc); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap .15s; }
.post-card:hover .post-more { gap: 10px; }

/* article */
.post { padding-top: 50px; }
.post h1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin: 16px 0 0; }
.post-byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 14px; }
.post-byline .ava { width: 40px; height: 40px; border-radius: 50%; background: var(--acc-grad); color: var(--acc-ink); display: grid; place-items: center; font-weight: 800; }
.post-hero { height: clamp(200px, 34vw, 320px); margin: 36px auto; max-width: 980px; border-radius: var(--r-lg); display: grid; place-items: center; color: var(--c);
  background: linear-gradient(150deg, color-mix(in oklch, var(--c) 18%, var(--surface)), var(--bg-2)); border: 1px solid var(--line-2); }
.post-content { color: var(--fg-2); }
.post-content p { font-size: 17px; line-height: 1.75; margin: 0 0 20px; }
.post-content h2 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; margin: 38px 0 12px; color: var(--fg); }
.post-content em { color: var(--fg); font-style: italic; }
.post-content .cb { border-left: 3px solid var(--acc); background: var(--acc-tint); border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 18px; margin: 26px 0; font-size: 15.5px; color: var(--fg-2); }
.post-content .cb b, .post-content .cb strong { color: var(--acc); }
.post-content strong { color: var(--fg); font-weight: 700; }
.post-content a { color: var(--acc); text-decoration: none; border-bottom: 1px solid var(--acc-tint-2); transition: border-color .15s; }
.post-content a:hover { border-bottom-color: var(--acc); }
.post-content ul, .post-content ol { margin: 0 0 20px; padding-left: 24px; }
.post-content li { font-size: 17px; line-height: 1.7; margin: 0 0 10px; padding-left: 4px; }
.post-content li::marker { color: var(--acc); font-weight: 600; }
.post-content blockquote { margin: 24px 0; padding: 12px 0 12px 20px; border-left: 3px solid var(--line-2);
  color: var(--fg); font-size: 17px; line-height: 1.7; font-style: italic; }
.post-content blockquote strong { font-style: normal; }
.post-content h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 30px 0 10px; color: var(--fg); }
.post-content .post-author-note { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--fg-3); }
/* article tables (pricing/material breakdowns) */
.post-table { margin: 24px 0; overflow-x: auto; border: 1px solid var(--line-2); border-radius: var(--r-md); }
.post-table table { border-collapse: collapse; width: 100%; font-size: 14.5px; }
.post-table th, .post-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.post-table thead th { background: var(--surface-2, var(--surface)); color: var(--fg); font-weight: 700; font-size: 13px; }
.post-table tbody tr:last-child td { border-bottom: none; }
.post-table strong { color: var(--fg); }
/* FAQ block */
.post-faq { margin: 12px 0 8px; }
.post-faq > h2 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 18px; color: var(--fg); }
.post-faq .faq-item { padding: 18px 0; border-top: 1px solid var(--line); }
.post-faq .faq-item h3 { font-size: 17.5px; font-weight: 700; margin: 0 0 8px; color: var(--fg); }
.post-faq .faq-item p { font-size: 16px; line-height: 1.7; margin: 0; color: var(--fg-2); }
/* silo (pillar) navigation — blog index + pillar pages */
.silo-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.silo-nav a { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--fg-2); text-decoration: none; transition: border-color .15s, color .15s, background .15s; }
.silo-nav a:hover { border-color: var(--acc-tint-2); color: var(--fg); background: var(--acc-tint); }
.silo-nav a.active { border-color: var(--acc); color: var(--acc); background: var(--acc-tint); }
.post-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  border: 1px solid var(--acc-tint-2); background: var(--acc-tint); border-radius: var(--r-lg); padding: 22px 26px; margin: 40px 0 8px; }
.post-cta .pc-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--acc); }
.post-cta .pc-t { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; margin-top: 3px; }
