/* ==========================================================================
   Furbase marketing site — shared styles
   Brand: teal #0d9488 · Inter (self-hosted) · warm, friendly, British.
   ========================================================================== */

/* ---- Fonts (self-hosted Inter, latin) ---------------------------------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/inter-800.woff2") format("woff2"); }

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;

  --accent:   #0d9488;
  --accent-hover: #0f766e;
  --accent-ink:   #0b6b60;
  --accent-soft:  #e9f7f4;

  /* warm secondary — used sparingly for warmth */
  --warm-bg:   #fff7ed;   /* soft cream section */
  --warm-line: #fde9cf;
  --warm-ink:  #b45309;
  --warm-dot:  #f59e0b;

  --ink:      #0f172a;   /* slate-900 */
  --ink-2:    #334155;   /* slate-700 */
  --body:     #475569;   /* slate-600 */
  --muted:    #64748b;   /* slate-500 */
  --faint:    #94a3b8;   /* slate-400 */
  --line:     #e2e8f0;   /* slate-200 */
  --line-2:   #eef2f6;
  --surface:  #ffffff;
  --surface-2:#f8fafc;   /* slate-50 */
  --bg:       #ffffff;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow:    0 1px 3px rgba(15,23,42,.06), 0 8px 24px rgba(15,23,42,.05);
  --shadow-lg: 0 12px 40px rgba(13,148,136,.14);

  --radius:    16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --gutter: 22px;

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #2dd4bf; --accent-hover: #5eead4; --accent-ink: #5eead4; --accent-soft: #10312c;
    --warm-bg: #221a10; --warm-line: #3a2c15; --warm-ink: #e3b455; --warm-dot: #f0b73e;
    --ink: #f1f5f9; --ink-2: #cbd5e1; --body: #a9b6c6; --muted: #93a2b5; --faint: #64748b;
    --line: #24303f; --line-2: #1c2836; --surface: #0f1a26; --surface-2: #0b1420; --bg: #0a121c;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow: 0 1px 3px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.35);
    --shadow-lg: 0 14px 44px rgba(0,0,0,.5);
  }
}

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); font-weight: 700; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -0.022em; text-wrap: balance; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
ul, ol { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--teal-100); color: var(--teal-800); }

/* ---- Layout ------------------------------------------------------------ */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tint { background: var(--surface-2); }
.section--teal { background: var(--accent-soft); }
.section--warm { background: var(--warm-bg); }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-lead { color: var(--muted); font-size: 1.12rem; max-width: 60ch; }
.center .section-lead { margin-inline: auto; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .85em 1.4em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s, box-shadow .15s, border-color .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(13,148,136,.28); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
@media (prefers-color-scheme: dark) { .btn-primary { color: #04211d; } }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-lg { font-size: 1.08rem; padding: 1em 1.7em; }
.btn-block { width: 100%; }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.18rem; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); display: grid; place-items: center; box-shadow: 0 4px 10px rgba(13,148,136,.28); }
.brand .mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { color: var(--ink-2); font-weight: 600; font-size: .96rem; padding: 8px 12px; border-radius: 9px; }
.nav-links a:hover { color: var(--accent-ink); background: var(--accent-soft); text-decoration: none; }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 9px; width: 42px; height: 40px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 68px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 18px; box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; font-size: 1.02rem; }
  .nav-cta { margin: 6px 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1200px 500px at 72% -8%, var(--teal-50), transparent 60%),
  linear-gradient(180deg, var(--surface-2), var(--bg) 70%); }
@media (prefers-color-scheme: dark) { .hero { background:
  radial-gradient(1200px 500px at 72% -8%, #0e2b28, transparent 60%),
  linear-gradient(180deg, var(--surface-2), var(--bg) 70%); } }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.hero h1 { margin-bottom: .5em; }
.hero p.sub { font-size: 1.2rem; color: var(--body); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.hero-note { margin-top: 1rem; font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 30px; } .hero-visual { order: -1; } }

/* Mock UI card in hero */
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px; overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 4px 4px 12px; border-bottom: 1px solid var(--line-2); margin-bottom: 12px; }
.mock-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock-bar .title { margin-left: 6px; font-size: .82rem; font-weight: 700; color: var(--muted); }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; background: var(--surface-2); margin-bottom: 8px; border: 1px solid var(--line-2); }
.mock-row .av { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-ink); flex: none; }
.mock-row .av svg { width: 18px; height: 18px; }
.mock-row .who { font-weight: 700; color: var(--ink); font-size: .92rem; }
.mock-row .meta { font-size: .78rem; color: var(--muted); }
.mock-row .pill { margin-left: auto; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.pill-green { background: #e7f6ee; color: #1a8f5e; } .pill-amber { background: #fdf1dc; color: #b7791f; } .pill-teal { background: var(--teal-100); color: var(--teal-800); }
@media (prefers-color-scheme: dark) { .pill-green { background:#10241c; color:#34d399;} .pill-amber{background:#241f10;color:#e0b64d;} }

/* ---- Trust strip ------------------------------------------------------- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; padding-block: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: var(--ink-2); }
.trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

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

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .14s, border-color .14s;
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; margin-bottom: 14px; }
.card .ico svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: 6px; }
.card p { font-size: .98rem; color: var(--body); }

.feature-head { max-width: 640px; margin-bottom: 40px; }
.center.feature-head { margin-inline: auto; }

/* ---- Split feature rows ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split + .split { margin-top: 64px; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 24px; } .split.reverse .split-media { order: 0; } }
.split h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5em; }
.checks { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.checks svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

/* ---- Tools band -------------------------------------------------------- */
.tool-card { display: flex; flex-direction: column; height: 100%; }
.tool-card .ico { background: var(--warm-bg); color: var(--warm-ink); }
.tool-card .tag { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-ink); }
.tool-card .go { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 6px; }
.tool-card:hover .go svg { transform: translateX(3px); }
.tool-card .go svg { width: 16px; height: 16px; transition: transform .14s; }

/* ---- Pricing ----------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; max-width: 760px; margin-inline: auto; }
@media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative; box-shadow: var(--shadow-sm); }
.plan.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.plan .badge { position: absolute; top: -12px; left: 28px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.plan.soon { opacity: .82; }
.plan .badge-soon { background: var(--warm-dot); color: #3a2400; }
.plan h3 { font-size: 1.15rem; }
.plan .who { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.plan .amt { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 4px; }
.plan .amt .num { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan .amt .per { color: var(--muted); font-weight: 600; }
.plan .annual { font-size: .86rem; color: var(--accent-ink); font-weight: 600; }
.plan ul.feat { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.plan ul.feat li { display: flex; gap: 9px; align-items: flex-start; font-size: .96rem; color: var(--ink-2); }
.plan ul.feat svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }

/* ---- FAQ --------------------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq details[open] { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; color: var(--ink); font-size: 1.05rem; display: flex; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; font-size: 1.5rem; font-weight: 400; color: var(--accent); line-height: 1; transition: transform .18s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--body); }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--teal-700), var(--teal-600)); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 6vw, 60px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7f5f0; max-width: 52ch; margin: .6em auto 0; font-size: 1.1rem; }
.cta-band .btn-primary { background: #fff; color: var(--teal-800); box-shadow: 0 8px 22px rgba(0,0,0,.18); margin-top: 1.6rem; }
.cta-band .btn-primary:hover { background: #eafaf7; }
.cta-band .fine { color: #cdeee9; font-size: .88rem; margin-top: 1rem; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding-block: 52px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-grid a { color: var(--body); font-size: .95rem; }
.footer-grid a:hover { color: var(--accent-ink); }
.footer-about p { color: var(--muted); font-size: .95rem; margin-top: 12px; max-width: 34ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }

/* ---- Page hero (interior pages) --------------------------------------- */
.page-hero { padding-block: clamp(40px, 6vw, 68px) clamp(24px, 4vw, 40px); background:
  radial-gradient(900px 360px at 80% -20%, var(--teal-50), transparent 60%); }
@media (prefers-color-scheme: dark) { .page-hero { background: radial-gradient(900px 360px at 80% -20%, #0e2b28, transparent 60%); } }
.page-hero h1 { margin: .3em 0; }
.page-hero p.lead { font-size: 1.18rem; color: var(--body); max-width: 60ch; }
.breadcrumb { font-size: .86rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--accent-ink); }

/* ---- Tool / form controls --------------------------------------------- */
.tool-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
@media (max-width: 880px) { .tool-wrap { grid-template-columns: 1fr; } }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field > label { display: block; font-weight: 700; color: var(--ink); font-size: .95rem; margin-bottom: 8px; }
.field .hint { font-size: .82rem; color: var(--muted); font-weight: 400; }
select, input[type="text"], input[type="number"], input[type="search"], textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--line); border-radius: 11px; padding: 12px 13px;
}
select:focus, input:focus, textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.range-row { display: flex; align-items: center; gap: 14px; }
input[type="range"] { accent-color: var(--accent); flex: 1; }
.range-val { font-weight: 800; color: var(--accent-ink); font-variant-numeric: tabular-nums; min-width: 3ch; text-align: right; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-size: .92rem; font-weight: 600; color: var(--ink-2); cursor: pointer; user-select: none; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip:hover { border-color: var(--accent); }
.chip.on { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-ink); }

/* Result sticky panel */
.result { position: sticky; top: 88px; background: var(--surface); border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.result .label { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; }
.result .big { font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; margin: 4px 0; }
.result .big small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.result .sub { color: var(--muted); font-size: .92rem; }
.result-lines { margin: 16px 0; display: grid; gap: 8px; border-top: 1px dashed var(--line); padding-top: 14px; }
.result-lines .rl { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-2); }
.result-lines .rl b { color: var(--ink); font-variant-numeric: tabular-nums; }
.result .disclaimer { font-size: .78rem; color: var(--faint); margin-top: 12px; }

/* ---- Prose (blog / templates) ----------------------------------------- */
.prose { max-width: 720px; margin-inline: auto; color: var(--body); font-size: 1.08rem; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: 1.7rem; margin-top: 1.9em; }
.prose h3 { font-size: 1.28rem; margin-top: 1.5em; }
.prose p { line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: .5em; line-height: 1.7; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { border-left: 4px solid var(--accent); background: var(--accent-soft); padding: 14px 20px; border-radius: 0 12px 12px 0; color: var(--ink-2); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.prose th, .prose td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); }
.prose th { color: var(--ink); font-weight: 700; background: var(--surface-2); }
.prose td { color: var(--body); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.callout { background: var(--warm-bg); border: 1px solid var(--warm-line); border-radius: 14px; padding: 18px 20px; }
.callout strong { color: var(--warm-ink); }
.tip { background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line)); border-radius: 14px; padding: 18px 20px; }

/* ---- Article meta / blog cards ---------------------------------------- */
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: .9rem; align-items: center; }
.post-meta .cat { color: var(--accent-ink); font-weight: 700; }
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 720px) { .post-list { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card .cat { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-ink); }
.post-card h3 { margin: 8px 0; font-size: 1.2rem; }
.post-card p { color: var(--body); font-size: .96rem; flex: 1; }
.post-card .go { margin-top: 14px; font-weight: 700; color: var(--accent-ink); }

/* Copy button (templates / scripts) */
.copyblock { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px 16px 14px; position: relative; }
.copyblock p { margin: 0; color: var(--ink-2); white-space: pre-wrap; font-size: .98rem; }
.copy-btn { position: absolute; top: 10px; right: 10px; font-size: .78rem; font-weight: 700; padding: 5px 10px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--accent-ink); cursor: pointer; }
.copy-btn:hover { border-color: var(--accent); }
.copy-btn.done { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Print helpers for templates */
.print-btn { }
@media print {
  .site-header, .site-footer, .no-print, .cta-band { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .printable { border: none !important; box-shadow: none !important; padding: 0 !important; }
  body.printing-one .printable:not(.print-target) { display: none !important; }
  body.printing-one .page-hero, body.printing-one .section > .container > .prose,
  body.printing-one .tpl-intro, body.printing-one .template + .template .no-print { }
}

/* ---- Utility ----------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.mb-2 { margin-bottom: 1rem; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.hidden { display: none; }
.tag-soon { display: inline-block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--warm-ink); background: var(--warm-bg); border: 1px solid var(--warm-line); padding: 2px 8px; border-radius: 999px; vertical-align: middle; }

/* ---- Forms / newsletter ------------------------------------------------ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.subscribe { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.subscribe input[type="email"] { flex: 1; min-width: 220px; }
.subscribe .btn { flex: none; }
.subscribe.on-teal input[type="email"] { background: rgba(255,255,255,.95); border-color: transparent; color: #0f172a; }
.subscribe.on-teal .btn-primary { background: #fff; color: var(--teal-800); }
.subscribe.on-teal .btn-primary:hover { background: #eafaf7; }
.form-card { max-width: 560px; }
.form-card .field label { }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.updates-band { background: var(--warm-bg); border: 1px solid var(--warm-line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); }
.updates-band h2 { margin-bottom: 6px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
