/* WikiBharat theme — ported 1:1 from the design system. Tokens come from theme.json presets. */
:root {
  --bg: var(--wp--preset--color--ivory, #FAF9F6);
  --surface: #FFFFFF;
  --text: #171717;
  --muted: #60646C;
  --navy: #163A5F;
  --blue: #315F9A;
  --green: #287052;
  --red: #9A3C2E;
  --saffron: #B8651B;
  --saffron-light: #E9B97A;
  --border: #E4E4E1;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max: 1248px;
  --gutter: clamp(16px, 5vw, 96px);
  --radius: 10px;
  --shadow: 0 1px 2px rgba(23,23,23,.04), 0 8px 24px rgba(23,23,23,.04);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; }
a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { text-wrap: balance; margin: 0; }
p { margin: 0; }

/* ---- utility classes used by patterns and plugin blocks ---- */
.wb-container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.wb-section { padding-block: clamp(56px, 7vw, 96px); border-bottom: 1px solid var(--border); }
.wb-section--white { background: var(--surface); }
.wb-section--navy { background: var(--navy); color: #fff; }
.wb-section--navy h1, .wb-section--navy h2, .wb-section--navy h3 { color: #fff; }
.wb-section--navy .wb-muted, .wb-section--navy .is-style-lede, .wb-section--navy .is-style-fine { color: rgba(255,255,255,.82); }
.wb-stack { display: flex; flex-direction: column; gap: 24px; }
.wb-stack-sm { display: flex; flex-direction: column; gap: 12px; }
.wb-gap-lg { gap: 44px; }
.wb-muted { color: var(--muted); }
.is-style-eyebrow, .wb-eyebrow { font-size: 12px !important; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--saffron) !important; }
.wb-section--navy .is-style-eyebrow, .wb-section--navy .wb-eyebrow { color: var(--saffron-light) !important; }
.is-style-lede, .wb-lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--muted); max-width: 62ch; text-wrap: pretty; }
.is-style-fine, .wb-fine { font-size: 13px !important; color: var(--muted); }
.is-style-serif-italic, .wb-serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--navy); font-size: clamp(24px, 3vw, 40px); line-height: 1.15; }
.wb-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.wb-step-num { font-family: var(--serif); font-size: 14px; letter-spacing: .14em; font-weight: 600; color: var(--saffron); }
.wb-h1-lg { font-size: clamp(36px, 4.2vw, 56px) !important; }
.wb-h2-xl { font-size: clamp(32px, 4vw, 54px) !important; line-height: 1.1 !important; }
.wb-wide { max-width: 980px; font-size: clamp(28px, 3vw, 38px) !important; line-height: 1.25 !important; }
.wb-wide em { font-style: italic; color: var(--navy); }
.wb-max { max-width: 72ch; }

/* buttons */
.wb-btn, .wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 6px;
  font: 600 15px/1 var(--sans); text-decoration: none; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap; transition: background .15s, color .15s, border-color .15s;
}
.wb-btn-primary, .wp-block-button:not(.is-style-outline):not(.is-style-ghost):not(.is-style-light) .wp-block-button__link { background: var(--navy); color: #fff; border-color: var(--navy); }
.wb-btn-primary:hover, .wp-block-button:not(.is-style-outline):not(.is-style-ghost):not(.is-style-light) .wp-block-button__link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.wb-btn-outline, .wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.wb-btn-outline:hover, .wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--navy); color: #fff; }
.wp-block-button.is-style-light .wp-block-button__link { background: #fff; color: var(--navy); border-color: #fff; }
.wp-block-button.is-style-light .wp-block-button__link:hover { background: var(--bg); }
.wp-block-button.is-style-ghost .wp-block-button__link { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.wp-block-button.is-style-ghost .wp-block-button__link:hover { border-color: #fff; }
.wb-btn-sm { min-height: 44px; padding: 0 20px; font-size: 14px; }
.wb-btn-lg { min-height: 58px; padding: 0 34px; font-size: 16px; }
.wb-btn-block { width: 100%; }
.wb-textlink { font-size: 15px; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--navy); padding-bottom: 2px; }
.wb-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.wp-block-buttons { gap: 16px; }
@media (max-width: 640px) { .wb-btn:not(.wb-btn-sm), .wp-block-button__link { width: 100%; } }

/* cards */
.wb-card, .is-style-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.wb-card-flat, .is-style-card-flat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.wb-card-pad, .is-style-card, .is-style-card-flat { padding: clamp(20px, 2.4vw, 30px); }
.wb-card-link { text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 14px; transition: border-color .15s, box-shadow .15s; }
.wb-card-link:hover { border-color: var(--blue); box-shadow: var(--shadow); color: var(--text); }
.wb-card-link .wb-more { font-size: 14px; font-weight: 600; color: var(--navy); margin-top: auto; }
.wb-card-link h3 { font-size: 20px; }
.wb-card-link p { font-size: 14px; color: var(--muted); }

/* grids */
.wb-grid { display: grid; gap: 24px; }
.wb-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wb-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wb-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wb-split { display: grid; grid-template-columns: 7fr 5fr; gap: 40px; align-items: center; }
.wb-split--equal { grid-template-columns: 1fr 1fr; }
.wb-split--start { align-items: start; }
@media (max-width: 1024px) { .wb-grid-4, .wb-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .wb-split, .wb-split--equal { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .wb-grid-2, .wb-grid-3, .wb-grid-4 { grid-template-columns: 1fr; } }

/* signals */
.wb-tick { color: var(--green); font-weight: 600; flex-shrink: 0; }
.wb-cross { color: var(--red); font-weight: 600; flex-shrink: 0; }
.wb-signal-row { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.wb-signals .wb-col { display: flex; flex-direction: column; gap: 20px; }
.wb-signals .wb-strong { border-top: 3px solid var(--green); }
.wb-signals .wb-weak { border-top: 3px solid var(--red); background: var(--bg); }
.wb-tag { font-size: 12px; letter-spacing: .16em; font-weight: 600; }
.wb-tag.green { color: var(--green); } .wb-tag.red { color: var(--red); }
.wb-signals .wb-list { display: flex; flex-direction: column; gap: 14px; }
.wb-signals .wb-list.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
@media (max-width: 640px) { .wb-signals .wb-list.two { grid-template-columns: 1fr; } }

/* forms */
.wb-input { min-height: 48px; border: 1px solid var(--border); border-radius: 6px; background: var(--bg); padding: 0 14px; font: 400 16px var(--sans); color: var(--text); width: 100%; }
textarea.wb-input { padding: 12px 14px; resize: vertical; min-height: 96px; }
.wb-input:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.wb-field { display: flex; flex-direction: column; gap: 8px; }
.wb-field label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.wb-form { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 20px; }
.wb-form .wb-head { display: flex; flex-direction: column; gap: 6px; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.wb-form .wb-head p { font-size: 14px; color: var(--muted); }
.wb-form .wb-center { text-align: center; line-height: 1.5; }
.wb-hp { position: absolute; left: -9999px; }
.wb-status { font-size: 14px; color: var(--green); }
.wb-status.err { color: var(--red); }

/* chips, pills, callout, prose */
.wb-chip { display: inline-flex; align-items: center; min-height: 36px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 14px; font-weight: 500; }
.wb-pill { font-size: 13px; color: var(--muted); padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); }
.wb-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.wb-callout { padding: 20px 24px; border-left: 2px solid var(--saffron); background: var(--surface); border-radius: 0 8px 8px 0; font-size: 15px; line-height: 1.6; }
.wb-prose { max-width: 72ch; }
.wb-prose p { margin: 0 0 1.1em; font-size: 17px; line-height: 1.7; }
.wb-prose h2 { margin: 2em 0 .6em; }
.wb-prose h3 { margin: 1.6em 0 .5em; }
.wb-prose ul, .wb-prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.wb-prose li { margin-bottom: .4em; font-size: 17px; line-height: 1.6; }
.wb-prose blockquote, .wb-quote { margin: 1.5em 0; padding: 0 0 0 24px; border-left: 2px solid var(--saffron); font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3; max-width: 860px; }
.wb-quote { margin: 0; }
.wb-prose blockquote p { font-family: inherit; font-size: inherit; }

/* faq */
.wb-faq details { border-bottom: 1px solid var(--border); }
.wb-faq details:first-of-type { border-top: 1px solid var(--border); }
.wb-faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; font-family: var(--serif); font-size: clamp(19px, 1.6vw, 22px); font-weight: 500; line-height: 1.3; }
.wb-faq summary::-webkit-details-marker { display: none; }
.wb-faq summary::after { content: ''; width: 10px; height: 10px; flex-shrink: 0; border-right: 1.75px solid var(--navy); border-bottom: 1.75px solid var(--navy); transform: rotate(45deg); transition: transform .2s; margin-right: 6px; }
.wb-faq details[open] summary::after { transform: rotate(-135deg); }
.wb-faq summary:hover { color: var(--navy); }
.wb-faq .wb-answer { color: var(--muted); font-size: 16px; line-height: 1.65; padding: 0 48px 24px 0; max-width: 72ch; }
.wb-faq-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 48px; }
.wb-sticky { position: sticky; top: 120px; align-self: start; }
@media (max-width: 900px) { .wb-faq-grid { grid-template-columns: 1fr; } .wb-sticky { position: static; } }

/* breadcrumb */
.wb-crumbs { padding-top: 20px; font-size: 13px; color: var(--muted); }
.wb-crumbs ol { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.wb-crumbs li { display: flex; gap: 10px; }
.wb-crumbs a { color: var(--muted); text-decoration: none; }
.wb-crumbs a:hover { color: var(--text); }

/* ---- header ---- */
.wb-nav { position: sticky; top: 0; z-index: 50; background: rgba(250,249,246,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.wb-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: 18px; transition: padding .25s ease; }
.wb-nav.is-condensed .wb-nav-inner { padding-block: 10px; }
.wb-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.wb-mark { width: 36px; height: 36px; border-radius: 6px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.wb-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.wb-brand-name { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.wb-brand-sub { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.wb-nav .wp-block-navigation { gap: 28px; }
.wb-nav .wp-block-navigation-item__content { font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.wb-nav .wp-block-navigation-item__content:hover, .wb-nav .current-menu-item > .wp-block-navigation-item__content { color: var(--navy); border-bottom-color: var(--navy); }
.wb-nav .wp-block-navigation__responsive-container-open, .wb-nav .wp-block-navigation__responsive-container-close { color: var(--text); }
.wb-nav .wp-block-navigation__responsive-container.is-menu-open { background: var(--bg); padding: 24px var(--gutter); }
.wb-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content { font-size: 17px; padding: 12px 0; border-bottom: 1px solid var(--border); display: block; }
@media (max-width: 1024px) { .wb-brand-sub { display: none; } .wb-nav-cta .wp-block-button__link { padding: 0 14px; font-size: 13px; min-height: 40px; width: auto; } .wb-nav-inner { gap: 12px; } }

/* ---- footer ---- */
.wb-footer { padding: clamp(48px, 6vw, 72px) 0 40px; }
.wb-footer .wb-container { display: flex; flex-direction: column; gap: 40px; }
.wb-footer-cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
.wb-footer-col { display: flex; flex-direction: column; gap: 10px; }
.wb-footer-col a, .wb-footer-col .wp-block-navigation-item__content { font-size: 14px; color: var(--muted); text-decoration: none; line-height: 1.5; }
.wb-footer-col a:hover { color: var(--text); }
.wb-footer-col .wp-block-navigation { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.wb-footer-col .wb-label { color: var(--text); padding-bottom: 6px; }
.wb-footer-col p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.wb-disclaimer { padding: 20px 24px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); font-size: 14px; line-height: 1.6; }
.wb-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .wb-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .wb-footer-cols { grid-template-columns: 1fr; } }

/* ---- homepage sections ---- */
.wb-hero { padding-block: clamp(56px, 7vw, 96px) clamp(64px, 8vw, 104px); }
.wb-hero .wb-split { align-items: center; }

/* flow diagram */
.wb-flow { display: flex; flex-direction: column; align-items: center; }
.wb-flow-step { width: min(100%, 420px); padding: 22px 28px; display: flex; flex-direction: column; gap: 6px; border-top: 3px solid var(--navy); }
.wb-flow-step h3 { font-size: 24px; }
.wb-flow .wb-line { width: 1px; height: 40px; background: var(--navy); }
.wb-flow .wb-line.green { background: var(--green); } .wb-flow .wb-line.red { background: var(--red); }
.wb-flow-q { width: min(100%, 520px); padding: 20px 28px; border: 1.5px solid var(--navy); border-radius: 10px; background: var(--bg); display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.wb-flow-q .q { font-family: var(--serif); font-size: clamp(18px, 1.7vw, 24px); font-weight: 600; letter-spacing: .04em; color: var(--navy); }
.wb-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; width: 100%; }
.wb-branch { display: flex; flex-direction: column; align-items: center; }
.wb-branch-card { width: 100%; padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.wb-branch-card h3 { font-size: 20px; } .wb-branch-card p { font-size: 14px; color: var(--muted); }
.wb-branch-card.yes { border-color: var(--green); } .wb-branch-card.no { border: 1px dashed var(--red); }
.wb-chain { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 40px; row-gap: 8px; }
.wb-node { font-size: 14px; font-weight: 600; color: var(--navy); padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg); }
.wb-dash { width: 22px; height: 1px; background: var(--border); }
@media (max-width: 640px) { .wb-branches { grid-template-columns: 1fr; gap: 12px; } }

/* process steps */
.wb-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.wb-step { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.wb-step .wb-head { display: flex; flex-direction: column; gap: 6px; }
.wb-step p { font-size: 16px; max-width: 62ch; color: var(--muted); }
@media (max-width: 720px) { .wb-step { grid-template-columns: 1fr; gap: 10px; } }

/* rejected band */
.wb-situations { padding: 32px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; display: flex; flex-direction: column; gap: 18px; }
.wb-situations .wb-note { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.7); padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }

/* promise */
.wb-promise { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--surface); }
.wb-promise-col { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 22px; }
.wb-promise-col:first-child { border-right: 1px solid var(--border); }
.wb-promise-col.alt { background: var(--bg); }
.wb-promise-col h3 { font-size: 28px; }
.wb-promise ul { list-style: none; margin: 0; padding: 0; }
.wb-promise li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
.wb-promise li:last-child { border-bottom: 0; }
@media (max-width: 720px) { .wb-promise { grid-template-columns: 1fr; } .wb-promise-col:first-child { border-right: 0; border-bottom: 1px solid var(--border); } }

/* pricing */
.wb-price { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 22px; }
.wb-price h3 { font-size: 26px; }
.wb-amount { font-family: var(--serif); font-size: 34px; font-weight: 600; }
.wb-grow { flex-grow: 1; }
.wb-includes { display: flex; flex-direction: column; gap: 8px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.7; }

/* funnel */
.wb-funnel { display: flex; flex-direction: column; align-items: center; }
.wb-funnel .wb-line { width: 1px; height: 22px; background: var(--border); }
.wb-funnel .wb-line.green { background: var(--green); }
.wb-frow { padding: 18px 24px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.wb-frow.green { border: 1.5px solid var(--green); }
.wb-frow.green .wb-fnum, .wb-frow.green .wb-flabel { color: var(--green); }
.wb-fnum { font-family: var(--serif); font-size: 30px; font-weight: 600; }
.wb-flabel { font-size: 15px; color: var(--muted); }
.wb-fend { width: 52%; padding: 16px 24px; border-radius: 8px; background: var(--navy); color: #fff; text-align: center; font-size: 13px; letter-spacing: .14em; font-weight: 600; }
.wb-funnel .wb-serif-italic { font-size: 20px; color: var(--muted); padding-top: 28px; text-align: center; }
@media (max-width: 640px) { .wb-frow { width: 100% !important; } .wb-fend { width: 100%; } }

/* cases */
.wb-case h3 { font-size: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.wb-case .wb-stack-sm { gap: 6px; }
.wb-case p { font-size: 15px; }

/* cta band */
.wb-band { padding-block: clamp(72px, 9vw, 120px); }
.wb-band .wb-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.wb-band h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.1; max-width: 980px; }
.wb-band .wb-lede { max-width: 720px; }

/* ---- single audience / service ---- */
.wb-body-grid { display: grid; grid-template-columns: 3fr 9fr; gap: 48px; align-items: start; }
.wb-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.wb-toc { display: flex; flex-direction: column; }
.wb-toc a { font-size: 14px; color: var(--muted); text-decoration: none; padding: 8px 0 8px 16px; border-left: 1px solid var(--border); }
.wb-toc a:hover { color: var(--navy); border-left-color: var(--navy); }
.wb-sidelink { font-size: 14px; color: var(--muted); text-decoration: none; line-height: 1.5; display: block; }
.wb-sidelink:hover { color: var(--navy); }
.wb-clients { display: flex; flex-direction: column; gap: 4px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 14px; }
.wb-ministeps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--border); border-radius: 10px; background: var(--surface); overflow: hidden; }
.wb-ministep { padding: 24px; display: flex; flex-direction: column; gap: 10px; border-right: 1px solid var(--border); }
.wb-ministep:last-child { border-right: 0; }
.wb-ministep h3 { font-size: 19px; } .wb-ministep p { font-size: 14px; color: var(--muted); }
.wb-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 72ch; }
.wb-checklist li { display: flex; gap: 14px; font-size: 16px; line-height: 1.5; }
.wb-article-grid { display: grid; grid-template-columns: 8fr 4fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .wb-body-grid, .wb-article-grid { grid-template-columns: 1fr; } .wb-side { position: static; } .wb-ministeps { grid-template-columns: 1fr 1fr; } .wb-ministep:nth-child(2) { border-right: 0; } .wb-ministep:nth-child(-n+2) { border-bottom: 1px solid var(--border); } }
@media (max-width: 520px) { .wb-ministeps { grid-template-columns: 1fr; } .wb-ministep { border-right: 0; border-bottom: 1px solid var(--border); } .wb-ministep:last-child { border-bottom: 0; } }

/* generic page (privacy, terms) */
.wb-page-title { font-size: clamp(32px, 4vw, 52px); }
.wb-entry .wb-prose > *:first-child { margin-top: 0; }

/* accessibility */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wb-skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
.wb-skip:focus { left: 8px; }
