/* ==========================================================================
   NonprofitBOD marketing site — scoped under .mkt so it never touches the app.
   Palette: deep navy (trust) + teal (from the logo) + coral CTA (brand accent).
   ========================================================================== */
.mkt {
    --navy: #17233f;
    --navy-2: #223258;
    --teal: #2b7a9e;
    --teal-ink: #1f5e79;
    --coral: #ff6a45;
    --coral-ink: #e0532f;
    --ink: #17181c;
    --slate: #55606f;
    --muted: #8a94a3;
    --line: #e7eaef;
    --wash: #f5f7fa;
    --wash-2: #eef2f7;

    color: var(--ink);
    background: #fff;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.011em;
    line-height: 1.6;
}
.mkt * { box-sizing: border-box; }
.mkt img { max-width: 100%; display: block; }
.mkt a { color: var(--teal-ink); text-decoration: none; }
.mkt h1, .mkt h2, .mkt h3 { color: var(--navy); letter-spacing: -0.028em; line-height: 1.1; margin: 0; }
.mkt .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.mkt .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; font-weight: 700; color: var(--teal-ink); }

/* Buttons */
.mkt .btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; font-size: 15px;
    padding: 13px 22px; border-radius: 12px; border: 1.5px solid transparent; cursor: pointer;
    transition: transform .08s ease, background .12s ease, box-shadow .12s ease; white-space: nowrap; }
.mkt .btn:hover { text-decoration: none; transform: translateY(-1px); }
.mkt .btn-primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255,106,69,.30); }
.mkt .btn-primary:hover { background: var(--coral-ink); color: #fff; }
.mkt .btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.mkt .btn-ghost:hover { border-color: #cdd4de; color: var(--navy); }
.mkt .btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.mkt .btn-light:hover { background: rgba(255,255,255,.2); color: #fff; }
.mkt .btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 13px; }

/* ---- Nav ---- */
.mkt-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
    -webkit-backdrop-filter: saturate(150%) blur(10px); backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid var(--line); }
.mkt-nav .wrap { display: flex; align-items: center; gap: 24px; height: 66px; }
.mkt-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--navy); }
.mkt-brand img { width: 32px; height: 32px; }
.mkt-brand b { color: var(--teal); }
.mkt-nav .links { display: flex; gap: 26px; margin-left: 12px; flex: 1; }
.mkt-nav .links a { color: var(--slate); font-weight: 550; font-size: 15px; }
.mkt-nav .links a:hover { color: var(--navy); }
.mkt-nav .actions { display: flex; align-items: center; gap: 12px; }
.mkt-nav .actions .login { color: var(--navy); font-weight: 600; font-size: 15px; }

/* ---- Hero ---- */
.mkt-hero { position: relative; overflow: hidden; padding: 72px 0 40px; background:
    radial-gradient(1200px 400px at 80% -10%, #eef4f8 0%, rgba(255,255,255,0) 60%),
    linear-gradient(#fff, #fbfcfe); }
/* Faint navy dot-grid, masked to fade toward the edges — a custom, tactile backdrop. */
.mkt-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(rgba(43,122,158,.13) 1.2px, transparent 1.2px);
    background-size: 22px 22px; animation: heroDrift 40s linear infinite;
    -webkit-mask-image: radial-gradient(820px 460px at 76% 6%, #000 0%, transparent 74%);
    mask-image: radial-gradient(820px 460px at 76% 6%, #000 0%, transparent 74%); }
/* Slow-drifting teal + coral aurora behind the product mock. */
.mkt-hero::after { content: ""; position: absolute; top: -170px; right: -120px; z-index: 0; pointer-events: none;
    width: 680px; height: 680px; opacity: .5; filter: blur(10px);
    background:
      radial-gradient(closest-side, rgba(43,122,158,.30), transparent 70%) 0 0/380px 380px no-repeat,
      radial-gradient(closest-side, rgba(255,106,69,.22), transparent 70%) 230px 250px/340px 340px no-repeat;
    animation: heroFloat 18s ease-in-out infinite; }
.mkt-hero .wrap { position: relative; z-index: 1; }
.mkt-hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.mkt-hero .grid > div:first-child > * { animation: heroRise .7s cubic-bezier(.2,.75,.3,1) both; }
.mkt-hero .grid > div:first-child > *:nth-child(2) { animation-delay: .06s; }
.mkt-hero .grid > div:first-child > *:nth-child(3) { animation-delay: .12s; }
.mkt-hero .grid > div:first-child > *:nth-child(4) { animation-delay: .18s; }
.mkt-hero .mock { animation: heroRise .8s cubic-bezier(.2,.75,.3,1) both .12s; }

@keyframes heroFloat { 0%, 100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-28px, 24px) rotate(6deg); } }
@keyframes heroDrift { from { background-position: 0 0; } to { background-position: 44px 44px; } }
@keyframes heroRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.mkt-hero h1 { font-size: 54px; font-weight: 800; margin: 16px 0 18px; }
.mkt-hero .sub { font-size: 19px; color: var(--slate); max-width: 34ch; }
.mkt-hero .cta { display: flex; gap: 14px; margin: 28px 0 14px; flex-wrap: wrap; }
.mkt-hero .assure { color: var(--muted); font-size: 14px; }
.mkt-hero .assure b { color: var(--slate); font-weight: 650; }

/* Product preview mock (governance cockpit) */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 30px 60px rgba(23,35,63,.14);
    overflow: hidden; }
.mock-top { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--wash); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #d7dce3; }
.mock-title { margin-left: 8px; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.mock-body { padding: 18px; }
.mock-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mock-h .t { font-weight: 800; color: var(--navy); font-size: 15px; }
.mock-pill { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.pill-red { background: #fdeceb; color: #c0392b; }
.pill-green { background: #e9f6ee; color: #15803d; }
.pill-amber { background: #fdf1e3; color: #b45309; }
.mock-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-tile { border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.mock-tile .lab { font-size: 12px; color: var(--muted); font-weight: 600; }
.mock-tile .val { display: flex; align-items: center; gap: 7px; font-weight: 700; color: var(--navy); font-size: 14px; margin-top: 4px; }
.d { width: 8px; height: 8px; border-radius: 50%; }
.d-green { background: #22a556; } .d-amber { background: #e0952a; } .d-red { background: #dc2626; }

/* ---- Logos / reality strip ---- */
.mkt-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--wash); }
.mkt-strip .wrap { padding: 26px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mkt-strip .stat .n { font-size: 30px; font-weight: 800; color: var(--navy); }
.mkt-strip .stat .l { color: var(--slate); font-size: 14.5px; margin-top: 2px; }

/* ---- Section scaffolding ---- */
.mkt-section { padding: 84px 0; }
.mkt-section.alt { background: var(--wash); }
.sec-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.sec-head h2 { font-size: 38px; font-weight: 800; margin: 12px 0 12px; }
.sec-head p { font-size: 18px; color: var(--slate); margin: 0; }

/* Alternating feature rows */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 34px 0; }
.feat:nth-child(even) .feat-copy { order: 2; }
.feat h3 { font-size: 27px; font-weight: 800; margin-bottom: 12px; }
.feat p { font-size: 17px; color: var(--slate); margin: 0 0 16px; }
.feat .fear { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--teal-ink);
    background: #eaf3f7; border: 1px solid #d6e7ee; padding: 8px 12px; border-radius: 10px; font-weight: 600; }
.feat ul { margin: 14px 0 0; padding: 0; list-style: none; }
.feat li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: 15.5px; margin-top: 9px; }
.feat li .ck { color: var(--teal); font-weight: 800; }
.feat-visual { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow, 0 14px 34px rgba(23,35,63,.08)); }

/* Small "everything else" grid */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gc { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.gc .ic { width: 40px; height: 40px; border-radius: 11px; background: #eaf3f7; color: var(--teal-ink);
    display: grid; place-items: center; font-size: 19px; margin-bottom: 12px; }
.gc h4 { font-size: 16.5px; font-weight: 750; color: var(--navy); margin: 0 0 6px; }
.gc p { font-size: 14.5px; color: var(--slate); margin: 0; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step .num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800;
    display: grid; place-items: center; margin-bottom: 14px; }
.step h4 { font-size: 19px; font-weight: 750; color: var(--navy); margin: 0 0 8px; }
.step p { color: var(--slate); font-size: 15.5px; margin: 0; }

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; }
.price.featured { border: 2px solid var(--coral); box-shadow: 0 24px 50px rgba(255,106,69,.16); position: relative; }
.price .tag { position: absolute; top: -13px; left: 26px; background: var(--coral); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price .name { font-weight: 800; color: var(--navy); font-size: 20px; }
.price .who { color: var(--muted); font-size: 14px; margin-top: 4px; min-height: 40px; }
.price .amt { margin: 14px 0 4px; }
.price .amt .n { font-size: 42px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.price .amt .per { color: var(--muted); font-size: 15px; font-weight: 600; }
.price .bill { color: var(--muted); font-size: 13px; min-height: 18px; }
.price .btn { width: 100%; justify-content: center; margin: 20px 0 18px; }
.price ul { list-style: none; margin: 0; padding: 0; }
.price li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); margin-top: 11px; }
.price li .ck { color: var(--teal); font-weight: 800; flex: none; }
.price li.head { color: var(--muted); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.price-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }

/* ---- Trust row ---- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust .t { padding: 4px; }
.trust h4 { color: var(--navy); font-size: 18px; font-weight: 750; margin: 0 0 8px; }
.trust p { color: var(--slate); font-size: 15px; margin: 0; }

/* ---- Final CTA ---- */
.mkt-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
/* Light dot-grid texture + a slow coral/teal glow drifting across the navy band. */
.mkt-cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.07) 1.1px, transparent 1.1px); background-size: 26px 26px; }
.mkt-cta::after { content: ""; position: absolute; inset: -40% -10%; z-index: 0; pointer-events: none; opacity: .5;
    background:
      radial-gradient(closest-side, rgba(255,106,69,.28), transparent 70%) 20% 30%/460px 460px no-repeat,
      radial-gradient(closest-side, rgba(43,122,158,.32), transparent 70%) 78% 70%/520px 520px no-repeat;
    filter: blur(14px); animation: ctaGlow 22s ease-in-out infinite; }
.mkt-cta .wrap { position: relative; z-index: 1; padding: 76px 24px; text-align: center; }
@keyframes ctaGlow { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(24px,-18px) scale(1.08); } }
.mkt-cta h2 { color: #fff; font-size: 40px; font-weight: 800; margin-bottom: 14px; }
.mkt-cta p { color: #c8d2e4; font-size: 18px; max-width: 52ch; margin: 0 auto 26px; }
.mkt-cta .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.mkt-cta .assure { color: #93a2bf; font-size: 14px; margin-top: 16px; }

/* ---- Footer ---- */
.mkt-foot { background: #0f1729; color: #9fb0c9; padding: 44px 0; }
.mkt-foot .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.mkt-foot .fb { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; }
.mkt-foot .fb img { width: 26px; height: 26px; }
.mkt-foot a { color: #9fb0c9; font-size: 14.5px; }
.mkt-foot a:hover { color: #fff; }
.mkt-foot .fl { display: flex; gap: 22px; flex-wrap: wrap; }

/* ==========================================================================
   Auth pages (login / signup) — clean, no app shell.
   ========================================================================== */
.auth-shell { min-height: 100vh; display: flex; flex-direction: column; background:
    radial-gradient(1000px 380px at 82% -8%, #eef4f8 0%, rgba(255,255,255,0) 60%), var(--wash); }
.auth-top { padding: 20px 26px; }
.auth-body { flex: 1; display: grid; place-items: center; padding: 12px 22px 48px; }

/* Compact card (login) */
.auth-card { background:#fff; border:1px solid var(--line); border-radius:18px;
    box-shadow: 0 24px 60px rgba(23,35,63,.12); width:100%; max-width: 410px; padding: 36px 34px; }
.auth-card img.mark { width:58px; height:58px; object-fit:contain; display:block; margin:0 auto 14px; }
.auth-card h1 { font-size: 25px; font-weight: 800; text-align:center; }
.auth-card .sub { text-align:center; color: var(--slate); font-size:15px; margin: 8px 0 22px; }

/* Split card (signup) */
.auth-split { display:grid; grid-template-columns: 1fr 1fr; max-width: 880px; width:100%; background:#fff;
    border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow: 0 28px 64px rgba(23,35,63,.16); }
.auth-aside { background: linear-gradient(158deg, var(--navy) 10%, var(--teal-ink) 120%); color:#fff; padding: 42px 38px; display:flex; flex-direction:column; }
.auth-aside .eyebrow { color:#8fd0e6; }
.auth-aside h2 { color:#fff; font-size:27px; font-weight:800; margin:12px 0 0; line-height:1.15; }
.auth-aside p { color:#cdd9e6; margin:12px 0 20px; font-size:15px; }
.auth-aside ul { list-style:none; padding:0; margin:0; }
.auth-aside li { display:flex; gap:10px; margin-top:13px; font-size:15px; color:#eaf1f7; }
.auth-aside li .ck { color:#84e0bd; font-weight:800; flex:none; }
.auth-aside .foot { margin-top:auto; color:#9fb0c9; font-size:13.5px; padding-top:24px; }
.auth-form { padding: 42px 38px; display:flex; flex-direction:column; justify-content:center; }
.auth-form h1 { font-size: 24px; font-weight: 800; }
.auth-form .sub { color: var(--slate); font-size:15px; margin: 8px 0 22px; }

/* Shared form bits */
.auth-field { margin-bottom: 14px; }
.auth-field label { display:block; font-weight:600; font-size:13.5px; margin-bottom:6px; color: var(--navy); }
.auth-field input { width:100%; padding: 12px 14px; border:1.5px solid var(--line); border-radius:11px; font-size:15px; font-family:inherit; color:var(--ink); }
.auth-field input:focus { outline:none; border-color: var(--teal); box-shadow: 0 0 0 3px #d9ebf2; }
.auth-submit { width:100%; justify-content:center; margin-top:4px; }
.auth-alt { text-align:center; margin-top:18px; color: var(--muted); font-size:14.5px; }
.auth-alt a { font-weight:650; }
.auth-note { color: var(--muted); font-size:13px; text-align:center; margin-top:12px; }

@media (max-width: 760px){ .auth-split { grid-template-columns:1fr; } .auth-aside { display:none; } }

/* ==========================================================================
   Articles (blog) — index + detail, scoped under .mkt.
   ========================================================================== */
.mkt-articles { position: relative; overflow: hidden; padding: 56px 0 76px; background:
    radial-gradient(1000px 420px at 82% -12%, #eef4f8 0%, rgba(255,255,255,0) 62%), linear-gradient(#fff, #fbfcfe); }
.mkt-articles::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(rgba(43,122,158,.10) 1.2px, transparent 1.2px); background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(760px 320px at 80% 0%, #000 0%, transparent 72%);
    mask-image: radial-gradient(760px 320px at 80% 0%, #000 0%, transparent 72%); }
.mkt-articles .wrap { position: relative; z-index: 1; }

.art-head { max-width: 720px; margin-bottom: 30px; }
.art-head h1 { font-size: 42px; font-weight: 800; margin: 10px 0 10px; }
.art-head .sub { font-size: 18px; color: var(--slate); margin: 0 0 22px; }
.art-search { display: flex; gap: 10px; max-width: 520px; }
.art-search input { flex: 1; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 12px;
    font-size: 15px; font-family: inherit; color: var(--ink); background: #fff; }
.art-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px #d9ebf2; }

.art-cats { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.art-cat { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600;
    color: var(--slate); background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 15px; }
.art-cat:hover { border-color: #bcd6e0; color: var(--navy); }
.art-cat.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.art-cat .n { font-size: 11.5px; font-weight: 700; opacity: .7; }

.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.art-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
    border-radius: 16px; overflow: hidden; box-shadow: 0 10px 26px rgba(23,35,63,.05);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.art-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(23,35,63,.12); border-color: #dbe2ea; }
.art-card-cover { height: 168px; background-size: cover; background-position: center; background-color: var(--wash-2); }
.art-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.art-badge { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
    color: var(--teal-ink); background: #eaf3f7; border: 1px solid #d6e7ee; border-radius: 999px; padding: 4px 11px; }
.art-card h2, .art-card h3 { font-size: 19px; font-weight: 750; color: var(--navy); margin: 13px 0 8px; line-height: 1.25; }
.art-card-excerpt { font-size: 14.5px; color: var(--slate); margin: 0 0 16px; flex: 1; }
.art-card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 12.5px; color: var(--muted); }
.art-card-meta .dot { opacity: .6; }

/* Card cell wrapper so photo attribution links can live outside the card's anchor. */
.art-cell { display: flex; flex-direction: column; }
.art-cell .art-card { flex: 1; }
.art-credit { font-size: 11.5px; color: var(--muted); margin-top: 7px; padding-left: 2px; }
.art-credit a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.art-credit a:hover { color: var(--teal-ink); }

/* Cover figure + attribution caption on the article detail page. */
.art-cover-fig { margin: 8px 0 28px; }
.art-cover-fig .art-cover { margin: 0; }
.art-cover-credit { font-size: 12.5px; color: var(--muted); margin-top: 8px; text-align: center; }
.art-cover-credit a { color: var(--slate); text-decoration: underline; text-underline-offset: 2px; }
.art-cover-credit a:hover { color: var(--teal-ink); }

.art-pager { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.art-pager-info { color: var(--muted); font-size: 14px; }
.art-pager-controls { display: flex; align-items: center; gap: 7px; }
.art-page { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px;
    border: 1.5px solid var(--line); border-radius: 11px; background: #fff; color: var(--slate); font-weight: 650; font-size: 14px; }
.art-page:hover { border-color: #bcd6e0; color: var(--navy); }
.art-page.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.art-page.disabled { opacity: .45; pointer-events: none; }

.art-empty { text-align: center; padding: 60px 20px; }
.art-empty-emoji { font-size: 40px; margin-bottom: 12px; }
.art-empty h3 { font-size: 22px; font-weight: 750; margin-bottom: 8px; }
.art-empty p { color: var(--slate); margin: 0 0 18px; }

/* ---- Article detail ---- */
.mkt-article { padding: 40px 0 80px; background: #fff; }
.mkt-article .wrap { max-width: 760px; }
.art-crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.art-crumbs span { color: #c7cbd1; }
.art-hero { margin-bottom: 26px; }
.art-hero h1 { font-size: 40px; font-weight: 800; margin: 14px 0 14px; line-height: 1.12; }
.art-lede { font-size: 20px; color: var(--slate); line-height: 1.5; margin: 0 0 18px; }
.art-byline { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--muted); }
.art-byline .dot { opacity: .6; }
.art-cover { width: 100%; border-radius: 16px; margin: 8px 0 28px; border: 1px solid var(--line); }

/* Rendered Markdown body */
.art-content { font-size: 18px; line-height: 1.8; color: #24303f; }
.art-content > *:first-child { margin-top: 0; }
.art-content h2 { font-size: 27px; font-weight: 800; color: var(--navy); margin: 40px 0 14px; letter-spacing: -.02em; }
.art-content h3 { font-size: 21px; font-weight: 750; color: var(--navy); margin: 30px 0 10px; }
.art-content h4 { font-size: 17px; font-weight: 750; color: var(--navy); margin: 24px 0 8px; }
.art-content p { margin: 0 0 20px; }
.art-content ul, .art-content ol { margin: 0 0 20px; padding-left: 26px; }
.art-content li { margin: 8px 0; }
.art-content a { color: var(--teal-ink); text-decoration: underline; text-underline-offset: 2px; }
.art-content a:hover { color: var(--navy); }
.art-content strong { color: var(--navy); font-weight: 700; }
.art-content code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .88em;
    background: var(--wash-2); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; }
.art-content blockquote { margin: 24px 0; padding: 6px 20px; border-left: 4px solid var(--teal);
    background: #f3f9fb; border-radius: 0 10px 10px 0; color: var(--teal-ink); font-size: 18.5px; font-style: italic; }
.art-content blockquote br:last-child { display: none; }

.art-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.art-related { margin-top: 56px; }
.art-related h2 { font-size: 24px; font-weight: 800; margin-bottom: 22px; }

/* Honor users who prefer reduced motion — disable the ambient animations. */
@media (prefers-reduced-motion: reduce) {
    .mkt-hero::before, .mkt-hero::after, .mkt-cta::after,
    .mkt-hero .grid > div:first-child > *, .mkt-hero .mock { animation: none; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .art-grid { grid-template-columns: repeat(2, 1fr); }
    .art-head h1 { font-size: 34px; }
    .art-hero h1 { font-size: 31px; }
    .art-content { font-size: 17px; }
}
@media (max-width: 640px) {
    .art-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .mkt-hero .grid, .feat { grid-template-columns: 1fr; gap: 34px; }
    .mkt-hero h1 { font-size: 40px; }
    .feat:nth-child(even) .feat-copy { order: 0; }
    .mkt-strip .wrap, .grid-cards, .steps, .price-grid, .trust { grid-template-columns: 1fr; }
    .mkt-nav .links { display: none; }
    .sec-head h2, .mkt-cta h2 { font-size: 30px; }
    .mkt-section { padding: 60px 0; }
}
