/* Soft-TLS theme — tokens, reset, base. Components: see sections below (Task 6). */
:root {
  --c-red-600: #D01F2A; --c-red-700: #A5161F; --c-ink-900: #0F172A; --c-ink-700: #334155; --c-ink-500: #64748B;
  --c-line: #E2E8F0; --c-surface: #F8FAFC; --c-white: #FFFFFF; --c-teal-500: #0AB39C;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .10);
  --container: 1200px; --prose: 720px; --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
:target, [id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
body { margin: 0; font-family: var(--font-sans); color: var(--c-ink-700); background: var(--c-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
html, body { overflow-x: clip; }
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--c-ink-900); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 1.2rem + 1.8vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 1rem + .6vw, 1.375rem); }
p { margin: 0 0 1em; }
a { color: var(--c-red-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-red-600); }
:focus-visible { outline: 3px solid var(--c-red-600); outline-offset: 2px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* QA (Task 9, fix round 0): WordPress core already ships this exact rule in
   wp-includes/css/dist/block-library/common.css, enqueued on every front-end page, so the
   screen-reader-only <h2> added to the pricing pages (accessibility fix for the Lighthouse
   heading-order audit) is already hidden without this. Defined here too, verbatim, so the same
   className keeps working even in a context where block-library/common.css is not enqueued. */
.screen-reader-text { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; word-break: normal !important; }
.screen-reader-text:focus { background-color: #ddd; clip-path: none; color: #444; display: block; font-size: 1em; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; top: 5px; width: auto; z-index: 100000; }
.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--c-ink-900); color: #fff; padding: .5rem 1rem; border-radius: var(--radius-sm); z-index: 1000; }
.skip-link:focus { top: 1rem; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.prose { width: min(100% - 2 * var(--gutter), var(--prose)); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--c-line); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand__mark svg { height: 36px; width: auto; display: block; }
.brand__word { font-weight: 600; font-size: 1.2rem; letter-spacing: .02em; color: var(--c-ink-900); line-height: 1; }
.brand__soft { color: var(--c-red-700); }
.nav { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; }
.nav a, .nav button { font: inherit; font-weight: 500; color: var(--c-ink-700); text-decoration: none; padding: .5rem .75rem; border-radius: var(--radius-sm); background: none; border: 0; cursor: pointer; }
.nav a:hover, .nav button:hover, .nav .current-menu-item > a, .nav .current-menu-ancestor > a { color: var(--c-ink-900); background: var(--c-surface); }
.nav .menu-item-has-children { position: relative; }
.nav .sub-menu { position: absolute; left: 0; top: calc(100% + .25rem); min-width: 280px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: .5rem; display: none; flex-direction: column; }
.nav .menu-item-has-children:hover > .sub-menu, .nav .menu-item-has-children:focus-within > .sub-menu, .nav .menu-item-has-children.is-open > .sub-menu { display: flex; }
.nav .sub-menu a { display: block; padding: .5rem .75rem; }
.nav-toggle.btn { display: none; margin-left: auto; }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.nav .header-actions .btn--primary { background: var(--c-red-600); color: #fff; padding: .6rem 1rem; }
.nav .header-actions .btn--primary:hover { background: var(--c-red-700); color: #fff; }
@media (max-width: 960px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--c-line); padding: 1rem var(--gutter); flex-direction: column; align-items: stretch; }
  .nav.is-open { display: flex; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav ul { flex-direction: column; }
  .nav .sub-menu { position: static; display: flex; box-shadow: none; border: 0; padding-left: 1rem; }
  .nav-toggle.btn { display: inline-flex; }
  .header-actions { flex-direction: column; align-items: stretch; gap: .75rem; margin-top: .75rem; }
  .header-actions .btn { display: inline-flex; width: 100%; justify-content: center; }
}
/* ---------- Language switcher ---------- */
.lang-switcher { position: relative; }
.lang-switcher__btn { display: inline-flex; align-items: center; gap: .35rem; text-transform: uppercase; font-size: .875rem; font-weight: 600; }
.lang-switcher .lang-switcher__list { position: absolute; right: 0; top: calc(100% + .25rem); background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); list-style: none; margin: 0; padding: .5rem; min-width: 180px; display: none; z-index: 110; }
.lang-switcher.is-open .lang-switcher__list { display: block; }
.lang-switcher__list a { display: block; padding: .45rem .75rem; text-decoration: none; color: var(--c-ink-700); border-radius: var(--radius-sm); }
.lang-switcher__list a:hover, .lang-switcher__list .is-current a { background: var(--c-surface); color: var(--c-ink-900); }
.lang-switcher--footer .lang-switcher__list { position: static; display: flex; flex-wrap: wrap; box-shadow: none; border: 0; background: transparent; padding: 0; }
.lang-switcher--footer .lang-switcher__btn { display: none; }
.lang-switcher--footer .lang-switcher__list a { color: #cbd5e1; }
/* QA (Task 9): the hover/current "pill" two lines up (background: var(--c-surface), a near-white
   #F8FAFC, color: var(--c-ink-900)) is meant for the header dropdown's white menu. Equal selector
   specificity + later source order let this rule's color win for the footer's current-language
   link while that light background leaked through unopposed, measuring #cbd5e1 on #F8FAFC at
   1.41:1 (needs 4.5:1). The footer list is a flat inline row on a dark background, not a dropdown,
   so it gets its own emphasis style instead: no pill, white text (17.9:1), matching how this file
   already marks emphasis on the dark footer (.site-footer a:hover, .site-footer h3). */
.lang-switcher--footer .lang-switcher__list a:hover,
.lang-switcher--footer .lang-switcher__list .is-current a { background: transparent; color: #fff; }
.lang-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; background: var(--c-ink-900); color: #fff; padding: .6rem var(--gutter); padding-bottom: calc(.6rem + env(safe-area-inset-bottom, 0px)); display: none; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; font-size: .95rem; }
.lang-bar.is-visible { display: flex; }
.lang-bar a { color: #fff; font-weight: 600; }
.lang-bar button { background: none; border: 0; color: #cbd5e1; cursor: pointer; font: inherit; }
/* ---------- Cookie consent bar ---------- */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 130; background: var(--c-ink-900); color: #fff; padding: 1rem var(--gutter); padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }
/* Both the bar itself and its fieldset/save button toggle visibility via the `hidden` attribute, but
   `.consent__options` sets `display: grid` and `.btn` sets `display: inline-flex` — same-origin author
   rules beat the UA stylesheet's `[hidden] { display: none }` regardless of specificity, so without this
   they would stay visible while `hidden`. Higher specificity than either (two selectors) restores it. */
.consent[hidden], .consent [hidden] { display: none; }
.consent__inner { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.consent a { color: #fff; font-weight: 600; }
.consent__title { margin: 0 0 .35rem; font-weight: 700; }
.consent__text { margin: 0 0 1rem; }
.consent__options { border: 0; padding: 0; margin: 0 0 1rem; display: grid; gap: .6rem; }
.consent__options label { display: flex; align-items: flex-start; gap: .5rem; }
.consent__options input { margin-top: .3rem; flex-shrink: 0; }
.consent__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
body.consent-open .lang-bar { display: none; }
@media (max-width: 600px) {
  .consent__actions { flex-direction: column; }
  .consent__actions .btn { width: 100%; }
}
/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem 1.4rem; border-radius: var(--radius-sm); font-weight: 600; text-decoration: none; border: 1px solid transparent; line-height: 1.2; transition: background .15s, color .15s, border-color .15s; }
.btn--primary { background: var(--c-red-600); color: #fff; }
.btn--primary:hover { background: var(--c-red-700); color: #fff; }
.btn--secondary { background: #fff; color: var(--c-ink-900); border-color: var(--c-line); }
.btn--secondary:hover { border-color: var(--c-ink-500); color: var(--c-ink-900); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.4); background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.wp-block-buttons .wp-block-button__link { border-radius: var(--radius-sm); font-weight: 600; padding: .8rem 1.4rem; }
.wp-block-button .wp-block-button__link, .wp-element-button { background: var(--c-red-600); color: #fff; border: 1px solid transparent; text-decoration: none; }
.wp-block-button .wp-block-button__link:hover, .wp-element-button:hover { background: var(--c-red-700); color: #fff; }
.wp-block-button.is-style-secondary .wp-block-button__link { background: #fff; color: var(--c-ink-900); border: 1px solid var(--c-line); }
.wp-block-button.is-style-ghost-light .wp-block-button__link { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.wp-block-button.is-style-secondary .wp-block-button__link:hover { background: var(--c-surface); color: var(--c-ink-900); border-color: var(--c-ink-500); }
.wp-block-button.is-style-ghost-light .wp-block-button__link:hover { background: rgba(255,255,255,.1); color: #fff; }
/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 6vw, 6rem); padding-inline: var(--gutter); }
.section--surface { background: var(--c-surface); }
.section--dark { background: var(--c-ink-900); color: #cbd5e1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a:not(.btn) { color: #fff; }
.section-header { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-header--left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-block; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-red-600); margin-bottom: .75rem; }
/* QA (Task 9): .hero and the "Section (dark)" block style (is-style-section-dark, registered in
   inc/blocks.php) are the dark backgrounds actually used in content; .section--dark itself is not
   applied by any pattern/markup. Both fell through to the base .eyebrow color (red-600, #D01F2A)
   against the near-black background (#0F172A), measured by Lighthouse at 3.32:1 (needs 4.5:1) —
   reusing the same light-red already defined for .section--dark fixes both (9.4:1). */
.section--dark .eyebrow, .hero .eyebrow, .is-style-section-dark .eyebrow { color: #fca5a5; }
.lead { font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem); color: var(--c-ink-500); }
.section--dark .lead { color: #cbd5e1; }
.alignfull { width: 100%; max-width: none; margin-inline: 0; }
/* ---------- Hero ---------- */
.hero { background: radial-gradient(1200px 600px at 80% -10%, rgba(208,31,42,.35), transparent 60%), linear-gradient(180deg, #0F172A 0%, #111c33 100%); color: #cbd5e1; padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem); padding-inline: var(--gutter); }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .lead { color: #cbd5e1; max-width: 52ch; }
.hero__grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero__note { font-size: .9rem; color: #94a3b8; margin-top: 1rem; }
/* ---------- Grids and cards ---------- */
.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .5rem; }
.card h3 { margin-bottom: .25rem; }
.card p { color: var(--c-ink-500); margin: 0; }
.card a.card__link { margin-top: auto; font-weight: 600; text-decoration: none; }
.card__icon { width: 44px; height: 44px; border-radius: 10px; background: #fee2e2; color: var(--c-red-600); display: grid; place-items: center; margin-bottom: .5rem; }
.card__icon svg { width: 24px; height: 24px; }
.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); box-shadow: none; }
.card--dark p { color: #cbd5e1; }
/* ---------- Flow-layout sibling margin reset (grids/chips/splits shift down without this) ---------- */
.grid > *, .chips > *, .feature-split > *, .hero__grid > *, .steps > * { margin-block-start: 0; }
.chips { align-items: center; }
.chip { margin: 0; }
/* ---------- Feature split ---------- */
.feature-split { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .feature-split { grid-template-columns: 1fr 1fr; } .feature-split--reverse > :first-child { order: 2; } }
/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .2em; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--c-teal-500) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/70% no-repeat; }
.checklist--2col { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
/* ---------- Stats, chips, steps ---------- */
.stat { text-align: center; padding: 1.5rem; }
.stat strong { display: block; font-size: clamp(2rem, 1.5rem + 2vw, 3rem); color: var(--c-ink-900); line-height: 1; margin-bottom: .5rem; }
.section--dark .stat strong { color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.chip { border: 1px solid var(--c-line); border-radius: 999px; padding: .4rem .9rem; font-weight: 500; background: #fff; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: step; position: relative; padding-top: 3rem; }
.steps li::before { content: counter(step); position: absolute; top: 0; left: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--c-red-600); color: #fff; font-weight: 700; display: grid; place-items: center; }
/* ---------- Testimonials, pricing, tables ---------- */
.testimonial { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 1.75rem; }
.testimonial blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--c-ink-900); }
.testimonial cite { font-style: normal; color: var(--c-ink-500); font-size: .9rem; }
.pricing-card { border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 2rem 1.5rem; background: #fff; display: flex; flex-direction: column; gap: 1rem; }
.pricing-card--featured { border-color: var(--c-red-600); box-shadow: var(--shadow-md); }
.pricing-card .price { font-size: 1.5rem; font-weight: 700; color: var(--c-ink-900); }
.pricing-card .btn { margin-top: auto; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--c-line); border-radius: var(--radius-md); }
.table-wrap .wp-block-table table { border-collapse: collapse; width: 100%; min-width: 720px; font-size: .95rem; }
.table-wrap .wp-block-table td, .table-wrap .wp-block-table th { border: 0; border-bottom: 1px solid var(--c-line); padding: .75rem 1rem; text-align: left; vertical-align: top; }
.table-wrap .wp-block-table thead th { border-bottom: 2px solid var(--c-line); background: var(--c-surface); }
/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--c-line); }
.faq details { border-bottom: 1px solid var(--c-line); }
.faq summary { cursor: pointer; padding: 1rem 2.5rem 1rem 0; font-weight: 600; color: var(--c-ink-900); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: .9rem; font-size: 1.4rem; color: var(--c-ink-500); }
.faq details[open] summary::after { content: "–"; }
.faq details > *:not(summary) { padding-bottom: 1rem; }
/* ---------- CTA band ---------- */
.cta-band { background: var(--c-ink-900); color: #cbd5e1; padding-block: clamp(3rem, 6vw, 5rem); padding-inline: var(--gutter); text-align: center; }
.cta-band__inner { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band .btn-group { justify-content: center; margin-top: 1.5rem; }
/* ---------- Device frame for screenshots ---------- */
.device-frame { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid var(--c-line); overflow: hidden; }
.device-frame::before { content: ""; display: block; height: 28px; background: var(--c-surface); border-bottom: 1px solid var(--c-line); background-image: radial-gradient(circle, #fca5a5 5px, transparent 6px), radial-gradient(circle, #fde68a 5px, transparent 6px), radial-gradient(circle, #86efac 5px, transparent 6px); background-size: 20px 20px; background-position: 10px 4px, 28px 4px, 46px 4px; background-repeat: no-repeat; }
.device-frame img { width: 100%; }
.device-frame--placeholder img { filter: grayscale(1); }
/* ---------- Breadcrumbs, blog ---------- */
.breadcrumbs { font-size: .875rem; padding-block: 1rem; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: .5rem; color: var(--c-ink-500); }
.breadcrumbs a { color: var(--c-ink-500); text-decoration: none; }
.post-card { display: flex; flex-direction: column; gap: .75rem; }
.post-card img { border-radius: var(--radius-md); aspect-ratio: 16/10; object-fit: cover; }
.post-card h3 a { color: var(--c-ink-900); text-decoration: none; }
.post-meta { color: var(--c-ink-500); font-size: .875rem; }
.entry-content > :not(.alignfull):not(.alignwide):not(.hero):not(.cta-band) { width: min(100% - 2 * var(--gutter), var(--prose)); margin-inline: auto; }
.entry-content > .alignwide { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.entry-content > .alignfull { width: 100%; max-width: none; margin-inline: 0; }
.entry-content img { border-radius: var(--radius-md); }
/* ---------- ROI calculator ---------- */
.roi { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .roi { grid-template-columns: 1fr 1fr; } }
.roi label { display: block; font-weight: 600; color: var(--c-ink-900); margin-bottom: .25rem; }
.roi input[type=number], .roi input[type=range] { width: 100%; }
.roi input[type=number] { padding: .6rem .75rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); font: inherit; }
.roi__field { margin-bottom: 1rem; }
.roi__field--band { display: grid; grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr); gap: .5rem .75rem; align-items: center; }
.roi__field--band label { margin: 0; white-space: nowrap; }
@media (max-width: 480px) { .roi__field--band { grid-template-columns: auto minmax(0, 1fr); } }
.roi__result { background: var(--c-surface); border-radius: var(--radius-md); padding: 1.5rem; }
.roi__result output { display: block; font-size: 2rem; font-weight: 700; color: var(--c-ink-900); }
.roi__note { font-size: .85rem; color: var(--c-ink-500); }
/* ---------- Footer ---------- */
.site-footer { background: var(--c-ink-900); color: #cbd5e1; padding-block: 3rem 1.5rem; font-size: .95rem; }
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 2rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.site-footer .brand__mark svg { height: 30px; }
.site-footer .brand__word { color: #fff; }
/* QA (Task 9): brand__soft (red-700, #A5161F) is sized for the light header background; on the
   dark footer it measured 2.32:1 against #0F172A (needs 4.5:1). Same light-red fix as the eyebrow
   above (9.4:1). */
.site-footer .brand__soft { color: #fca5a5; }
/* ---------- Fluent Forms light overrides ---------- */
.fluentform .ff-el-form-control { border-radius: var(--radius-sm); border-color: var(--c-line); }
.fluentform .ff-btn-submit { background: var(--c-red-600); border-color: var(--c-red-600); border-radius: var(--radius-sm); font-weight: 600; }
/* ---------- Block styles (patterns, Task 8) ---------- */
.is-style-section { padding-block: clamp(3rem, 6vw, 6rem); padding-inline: var(--gutter); }
.is-style-section-surface { padding-block: clamp(3rem, 6vw, 6rem); padding-inline: var(--gutter); background: var(--c-surface); }
.is-style-section-dark { padding-block: clamp(3rem, 6vw, 6rem); padding-inline: var(--gutter); background: var(--c-ink-900); color: #cbd5e1; }
.is-style-section-dark h2, .is-style-section-dark h3 { color: #fff; }
.is-style-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.is-style-checklist { list-style: none; padding-left: 0; }
.is-style-checklist li { position: relative; padding-left: 2rem; margin-bottom: .6rem; }
.is-style-checklist li::before { content: ""; position: absolute; left: 0; top: .2em; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--c-teal-500) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/70% no-repeat; }
.wp-block-image.is-style-device-frame { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid var(--c-line); overflow: hidden; }
.wp-block-image.is-style-device-frame::before { content: ""; display: block; height: 28px; background: var(--c-surface); border-bottom: 1px solid var(--c-line); }
.wp-block-image.is-style-device-frame img { border-radius: 0; }
.is-style-checklist.checklist--2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); column-gap: 2rem; }
.is-style-section-dark .stat strong { color: #fff; }
.search-form { display: flex; gap: .5rem; margin: 1rem 0; }
.search-form input[type=search] { flex: 1; padding: .7rem .9rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); font: inherit; }
.pagination, .navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.nav-links a, .nav-links span { padding: .5rem .9rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); text-decoration: none; }
.post-hero { border-radius: var(--radius-md); margin-bottom: 1.5rem; }
