@font-face {
  font-family: "Inter Variable";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --outer: #687086;
  --surface: #ffffff;
  --surface-soft: #f7f8fc;
  --surface-tint: #eef1ff;
  --text: #202738;
  --muted: #626c7f;
  --line: #dde2ef;
  --green: #1428a0;
  --green-dark: #0f218c;
  --green-deep: #07175f;
  --accent: #1428a0;
  --accent-soft: #eef1ff;
  --danger: #a8483e;
  --danger-soft: #fff1ef;
  --font: "Inter Variable", Inter, Arial, sans-serif;
  --shell-width: 1120px;
  --content-width: 900px;
  --header-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(20, 40, 160, .35); outline-offset: 3px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px;
  transform: translateY(-150%); padding: 10px 14px;
  background: #fff; color: var(--green-deep); font-weight: 700;
}
.skip-link:focus { transform: none; }

.site-shell { width: min(var(--content-width), calc(100% - 48px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
}
body.admin-bar .site-header { top: 32px; }
.header-inner {
  width: min(var(--shell-width), calc(100% - 48px)); min-height: var(--header-height);
  margin-inline: auto; display: flex; align-items: center; gap: 32px;
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; color: var(--text); text-decoration: none; line-height: 1.15; }
.brand:hover { color: var(--text); }
.brand-logo { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px; }
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 18px; font-weight: 750; letter-spacing: -.03em; }
.brand-copy small { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.header-search { position: relative; flex: 0 1 260px; }
.header-search input { width: 100%; min-width: 0; height: 40px; padding: 0 44px 0 14px; border: 1px solid #d3d9e8; border-radius: 999px; color: var(--text); background: var(--surface-soft); font-size: 14px; text-overflow: ellipsis; transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease; }
.header-search input:hover { border-color: #b9c2da; }
.header-search input:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(20, 40, 160, .12); outline: 0; }
.header-search button { position: absolute; top: 4px; right: 4px; width: 32px; height: 32px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 999px; background: var(--green); color: #fff; cursor: pointer; transition: background-color .15s ease; }
.header-search button svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2.2; }
.header-search button:hover { background: var(--green-dark); }
.primary-nav { flex: 1 1 auto; align-self: stretch; }
.primary-nav .menu { height: 100%; list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; gap: 4px; }
.primary-nav li { margin: 0; display: flex; }
.primary-nav a { position: relative; min-height: var(--header-height); padding: 0 12px; display: flex; align-items: center; color: var(--text); text-decoration: none; font-size: 14px; font-weight: 650; transition: color .15s ease; }
.primary-nav a > span { position: relative; display: inline-block; }
.primary-nav a > span::after { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%) scaleX(.8); width: 100%; min-width: 28px; height: 6px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='6' viewBox='0 0 24 6'%3E%3Cpath d='M0 3c3-2.5 5-2.5 8 0s5 2.5 8 0 5-2.5 8 0' fill='none' stroke='%231428a0' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") left center / 24px 6px repeat-x; content: ""; opacity: 0; transition: opacity .16s ease, transform .16s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav .current-menu-item > a, .primary-nav .current_page_item > a { color: var(--green); }
.primary-nav a:hover > span::after, .primary-nav a:focus-visible > span::after, .primary-nav .current-menu-item > a > span::after, .primary-nav .current_page_item > a > span::after { transform: translateX(-50%) scaleX(1); opacity: 1; }
.menu-toggle { display: none; min-height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--text); font-size: 14px; font-weight: 700; cursor: pointer; }
.menu-toggle[aria-expanded="true"] i { background: transparent; }
.menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
.menu-toggle i, .menu-toggle i::before, .menu-toggle i::after { display: block; width: 21px; height: 2px; background: currentColor; content: ""; }
.menu-toggle i { position: relative; margin-left: 8px; }
.menu-toggle i::before { position: absolute; top: -6px; }
.menu-toggle i::after { position: absolute; top: 6px; }

/* Main content */
.site-main, .interior-main, .error-page { min-height: 58vh; background: var(--surface); }
.content-panel { width: min(var(--content-width), calc(100% - 48px)); margin-inline: auto; padding: 38px 0 58px; }
.home-intro, .page-heading { max-width: 800px; margin: 0 auto 28px; text-align: center; }
.kicker, .eyebrow { margin: 0 0 6px; color: var(--green); font-size: 12px; font-weight: 750; letter-spacing: .075em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--text); line-height: 1.28; }
h1 { margin-bottom: 14px; font-size: clamp(25px, 3vw, 32px); font-weight: 690; letter-spacing: -.035em; }
h2 { margin-bottom: 13px; font-size: clamp(21px, 2.4vw, 26px); font-weight: 680; letter-spacing: -.025em; }
h3 { margin-bottom: 7px; font-size: 17px; font-weight: 680; letter-spacing: -.012em; }
p { margin-top: 0; }
.lead, .page-summary { margin: 0 auto; max-width: 760px; color: #56625e; font-size: 16px; line-height: 1.75; }
.software-preview { width: min(760px, 100%); margin: 0 auto 32px; }
.software-preview img { width: 100%; border: 1px solid var(--line); background: #f7f9f8; }
.software-preview figcaption { margin-top: 7px; color: var(--muted); font-size: 12px; text-align: center; }
.software-preview--compact { width: min(650px, 100%); }

.download-card { margin: 0 auto 34px; overflow: hidden; border: 1px solid #cbd4ee; border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(7, 23, 95, .08); }
.download-card__title { min-height: 92px; padding: 20px 22px; display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; align-items: center; gap: 16px; background: linear-gradient(135deg, #f0f3ff 0%, #fafbff 100%); border-bottom: 1px solid #d5dcf1; }
.download-card__title::before { width: 40px; height: 40px; border-radius: 11px; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v11'/%3E%3Cpath d='m8 10 4 4 4-4'/%3E%3Cpath d='M5 20h14'/%3E%3C/svg%3E") center / 21px no-repeat; box-shadow: 0 5px 12px rgba(20, 40, 160, .22); content: ""; }
.download-card__title > div { min-width: 0; display: grid; align-content: center; gap: 4px; }
.download-card__title p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; }
.download-card .download-card__title h2 { margin: 0; font-size: 21px; line-height: 1.15; }
.version-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 5px; background: var(--green); color: #fff; font-size: 15px; font-weight: 800; }
.status-badge, .inline-badge { border-radius: 999px; background: var(--accent-soft); color: var(--green-dark); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.download-card__title .status-badge { flex: 0 0 auto; margin-left: auto !important; padding: 5px 11px; border: 1px solid #c8d1f4; color: var(--green-dark); white-space: nowrap; }
.inline-badge { margin-left: 5px; padding: 3px 7px; white-space: nowrap; }
.table-wrap { max-width: 100%; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th, .spec-table td { padding: 11px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 31%; background: #fbfcfc; font-size: 13px; font-weight: 680; }
.spec-table td { color: #56625e; }
.download-actions { padding: 18px 20px 12px; display: flex; flex-wrap: wrap; gap: 10px; }
.wp-block-buttons.download-actions { align-items: center; }
.wp-block-button { margin: 0; }
.wp-block-button__link { min-height: 43px; padding: 9px 17px; display: inline-flex; justify-content: center; align-items: center; border: 1px solid var(--green); border-radius: 4px; background: var(--green); color: #fff; text-decoration: none; font-size: 13px; font-weight: 720; line-height: 1.3; }
.wp-block-button__link:hover { background: var(--green-dark); color: #fff; }
.wp-block-button.is-style-outline .wp-block-button__link { border-color: #b7c0dd; background: #fff; color: var(--green-dark); }
.wp-block-button.is-style-outline .wp-block-button__link:hover { border-color: var(--green); background: var(--surface-tint); }
.button { min-height: 43px; padding: 9px 17px; display: inline-flex; justify-content: center; align-items: center; gap: 8px; border: 1px solid transparent; border-radius: 4px; text-decoration: none; font-size: 13px; font-weight: 720; line-height: 1.3; cursor: pointer; }
.button--primary { background: var(--green); color: #fff; }
.button--primary:hover { background: var(--green-dark); color: #fff; }
.button--secondary { border-color: #b9cbc4; background: #fff; color: var(--green-dark); }
.button--secondary:hover { border-color: var(--green); background: var(--surface-tint); color: var(--green-deep); }
.checksum { margin: 0 20px 14px; padding: 10px 10px 10px 12px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; border: 1px solid #d4daec; border-radius: 8px; background: var(--surface-soft); }
.checksum strong { color: var(--muted); font-size: 10px; letter-spacing: .06em; }
.checksum code { min-width: 0; overflow-wrap: anywhere; color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; line-height: 1.5; }
.checksum code { user-select: all; }
.checksum-copy { min-width: 76px; min-height: 38px; padding: 7px 11px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid #bdc7e4; border-radius: 7px; background: #fff; color: var(--green-dark); font-size: 11px; font-weight: 720; line-height: 1; cursor: pointer; }
.checksum-copy svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.checksum-copy:hover { border-color: var(--green); background: var(--surface-tint); }
.checksum-copy.is-copied { border-color: var(--green); background: var(--green); color: #fff; }
.source-note { margin: 0; padding: 12px 20px 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.65; }

.quick-facts { margin: 0 0 30px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.quick-facts > .wp-block-column, .quick-facts > div { padding: 14px; display: grid; gap: 2px; text-align: center; border-right: 1px solid var(--line); }
.quick-facts > .wp-block-column:last-child, .quick-facts > div:last-child { border-right: 0; }
.quick-facts p { margin: 0; }
.quick-facts strong { color: var(--green-dark); font-size: 14px; }
.quick-facts span { color: var(--muted); font-size: 11px; }
.page-contents { margin: 0 0 12px; padding: 12px 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 11px 18px; background: var(--surface-tint); border-left: 4px solid var(--green); }
.page-contents strong { font-size: 13px; }
.page-contents a { font-size: 13px; font-weight: 600; }
.content-section { padding: 40px 0 34px; border-top: 0; scroll-margin-top: 20px; }
.content-section::before { width: 74px; height: 8px; margin: 0 0 17px; display: block; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Cpath d='M0 4c3-3 5-3 8 0s5 3 8 0 5-3 8 0' fill='none' stroke='%231428a0' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") left center / 24px 8px repeat-x; content: ""; opacity: .7; }
.content-section--first { margin-top: 30px; }
.content-section > p { max-width: 820px; color: #4f5c58; }
.section-title { margin-bottom: 14px; display: flex; align-items: end; justify-content: space-between; gap: 22px; }
.section-title h2, .section-title .kicker { margin-bottom: 0; }
.section-title > a { flex: 0 0 auto; font-size: 13px; font-weight: 650; }
.info-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.info-grid article, .info-grid > .wp-block-column { padding: 17px; border: 1px solid var(--line); background: var(--surface-soft); }
.info-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.notice { margin: 22px 0 0; padding: 13px 15px; border-left: 4px solid; font-size: 13px; }
.notice--warning { border-color: var(--green); background: var(--surface-tint); color: var(--green-deep); }
.notice--danger { border-color: var(--danger); background: var(--danger-soft); color: #63362f; }

.wp-block-table { margin: 0; max-width: 100%; overflow-x: auto; }
.download-table, .help-table { min-width: 0; border: 0; }
.download-table table, .help-table table { min-width: 660px; border: 1px solid var(--line); }
.download-table th, .download-table td, .help-table th, .help-table td { padding: 11px 13px; border: 1px solid var(--line); vertical-align: middle; }
.download-table thead th, .help-table thead th { background: var(--green); color: #fff; font-size: 12px; font-weight: 700; }
.download-table tbody th, .help-table tbody th { font-size: 13px; }
.download-table td, .help-table td { color: var(--muted); font-size: 13px; }
.download-table tbody tr:nth-child(even), .help-table tbody tr:nth-child(even) { background: #f8faf9; }
.table-download, .download-table td a { display: inline-flex; min-height: 34px; align-items: center; padding: 5px 11px; border-radius: 3px; background: var(--green); color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; white-space: nowrap; }
.table-download:hover { background: var(--green-dark); color: #fff; }

.how-to-list { margin: 20px 0 24px; padding: 0; display: grid; gap: 14px; list-style: decimal-leading-zero inside; }
.how-to-list li { position: relative; min-height: 72px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: none; }
.how-to-list li::marker { color: var(--green); font-size: 12px; font-weight: 800; }
.how-to-list li > strong:first-child { margin-left: 8px; }
.how-to-list.steps-enhanced { list-style: none; }
.how-to-list.steps-enhanced li { padding-left: 64px; }
.how-to-list.steps-enhanced li > strong:first-of-type { margin-left: 0; }
.step-number {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #1a1612;
  border-radius: 48% 52% 44% 56% / 53% 45% 55% 47%;
  background-color: #cde1ff;
  color: #1a1612;
  box-shadow: inset 0 2px 0 0 #ffffff;
  transform: rotate(-3deg);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  transition: transform 180ms ease, background-color 180ms ease;
}
.how-to-list li:nth-child(2n) .step-number {
  border-radius: 53% 47% 56% 44% / 46% 54% 47% 53%;
  box-shadow: inset 0.3px 1.8px 0 0 #ffffff;
  transform: rotate(2deg);
}
.how-to-list li:nth-child(3n) .step-number {
  border-radius: 46% 54% 48% 52% / 54% 44% 56% 46%;
  box-shadow: inset -0.3px 1.8px 0 0 #ffffff;
  transform: rotate(-2deg);
}
.how-to-list li:nth-child(4n) .step-number {
  border-radius: 52% 48% 45% 55% / 48% 55% 45% 52%;
  box-shadow: inset 0 2px 0 0 #ffffff;
  transform: rotate(2.5deg);
}
.how-to-list li:nth-child(5n) .step-number {
  border-radius: 47% 53% 52% 48% / 52% 46% 54% 48%;
  box-shadow: inset 0.3px 1.8px 0 0 #ffffff;
  transform: rotate(-1deg);
}
.how-to-list li:hover .step-number {
  background-color: #bcd7ff;
  transform: scale(1.05) rotate(0deg);
}
.how-to-list h3 { margin: 0 0 4px; }
.how-to-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.how-to-list a { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 650; }
.faq-section details { border-top: 1px solid var(--line); }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { padding: 14px 4px; cursor: pointer; color: var(--text); font-size: 14px; font-weight: 680; }
.faq-section details p { padding: 0 4px 14px; margin: 0; color: var(--muted); font-size: 13px; }

/* Inner pages */
.breadcrumbs { margin-bottom: 24px; display: flex; gap: 8px; color: var(--muted); font-size: 12px; }
.breadcrumbs span[aria-hidden="true"], .breadcrumbs > span:not(:last-child) { color: #9aa6a2; }
.requirements-box { margin-top: 30px; padding: 21px; border: 1px solid var(--line); border-top: 4px solid var(--green); background: var(--surface-soft); }
.requirements-box h2 { font-size: 20px; }
.requirements-box .download-actions { padding: 8px 0 0; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding: 8px 0 8px 27px; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 3px; top: 8px; color: var(--green); content: "✓"; font-weight: 800; }
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.slot-grid article, .slot-grid > .wp-block-column { padding: 16px; border-right: 1px solid var(--line); }
.slot-grid article:last-child, .slot-grid > .wp-block-column:last-child { border-right: 0; }
.slot-grid article > strong, .slot-grid > .wp-block-column > p:first-child strong { color: var(--green); font-size: 20px; }
.slot-grid h3 { margin: 5px 0; font-size: 14px; }
.slot-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.next-link { margin-top: 16px; padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border: 1px solid #c6d7d1; background: var(--surface-tint); }
.next-link p { margin: 0; font-weight: 650; }

/* Existing content and forms */
.section-pad { padding: 38px 0; }
.narrow-shell { max-width: 760px; }
.page-hero { background: var(--surface-soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 10px; }
.page-updated { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.page-updated a { color: var(--text); font-weight: 650; text-decoration-color: rgba(20, 40, 160, .35); }
.page-updated a:hover { color: var(--green); text-decoration-color: currentColor; }
.home-intro .page-updated { margin-top: 12px; }

.author-card { margin-top: 44px; padding: 26px 28px; border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 12px; background: var(--surface-soft); scroll-margin-top: calc(var(--header-height) + 16px); }
.author-card .kicker { margin-bottom: 4px; }
.author-card h2 { margin: 0; font-size: 22px; }
.author-card__role { margin: 2px 0 12px; color: var(--green-dark); font-size: 14px; font-weight: 650; }
.author-card__bio { max-width: 680px; margin: 0 0 16px; color: #46524e; font-size: 14px; line-height: 1.75; }
.author-card__links { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.author-card__links a { min-height: 36px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid #c8d1ee; border-radius: 999px; background: #fff; color: var(--green-dark); font-size: 13px; font-weight: 700; text-decoration: none; transition: border-color .15s ease, background-color .15s ease; }
.author-card__links a:hover { border-color: var(--green); background: var(--surface-tint); }
.author-card__links a::after { margin-left: 6px; content: "↗"; font-size: 12px; }
.content-shell { max-width: 760px; }
.prose { color: #46524e; }
.prose h2 { margin-top: 32px; }
.prose h3 { margin-top: 25px; }
.prose li { margin-bottom: 5px; }
.prose blockquote { margin: 24px 0; padding: 14px 18px; border-left: 4px solid var(--green); background: var(--surface-tint); }
.prose blockquote p { margin: 0; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
.contact-aside h2 { font-size: 22px; }
.contact-tips { padding: 0; list-style: none; }
.contact-tips li { padding: 12px 0; display: grid; grid-template-columns: 32px 1fr; gap: 10px; border-bottom: 1px solid var(--line); }
.contact-tips li > span { color: var(--green); font-size: 11px; font-weight: 800; }
.contact-tips p, .response-note { margin: 0; color: var(--muted); font-size: 12px; }
.contact-tips strong { display: block; color: var(--text); font-size: 13px; }
.contact-form-wrap { padding: 22px; border: 1px solid var(--line); background: var(--surface-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 4px; font-size: 12px; font-weight: 680; }
.field input, .field select, .field textarea { width: 100%; padding: 9px 10px; border: 1px solid #becbc6; border-radius: 3px; background: #fff; color: var(--text); }
.field small { color: var(--muted); font-size: 10px; }
.honeypot { position: absolute; left: -9999px; }
.form-notice { margin-bottom: 16px; padding: 12px; border: 1px solid; font-size: 12px; }
.form-notice--success { border-color: #98c4b2; background: #edf8f3; }
.form-notice--error { border-color: #d6a19b; background: var(--danger-soft); }
.post-list article { padding: 20px 0; border-bottom: 1px solid var(--line); }
.post-list h2 { font-size: 21px; }
.error-page { padding: 80px 0; }
.error-code { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; }

/* Footer */
.site-footer { background: var(--green-deep); color: #dfe4f7; }
.footer-main, .footer-bottom { padding-inline: max(24px, calc((100% - var(--shell-width)) / 2)); }
.footer-main { padding-block: 44px 36px; display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 42px; }
.brand--footer { color: #fff; }
.brand--footer:hover { color: #fff; }
.brand--footer .brand-logo { border: 1px solid rgba(255,255,255,.25); }
.brand--footer .brand-copy small { color: #aab5e0; }
.footer-about p { max-width: 390px; margin: 15px 0 0; color: #c1c9ea; font-size: 13px; line-height: 1.7; }
.site-footer h2 { margin: 0 0 10px; color: #fff; font-size: 13px; letter-spacing: .02em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 4px 0; }
.site-footer a { color: #d3d9f3; font-size: 13px; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { padding-block: 16px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; border-top: 1px solid rgba(255,255,255,.14); color: #aab5e0; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-credit a { font-size: inherit; text-decoration: underline; }

@media (max-width: 960px) {
  .header-inner { gap: 20px; }
  .brand-copy small { display: none; }
  .header-search { flex-basis: 200px; }
  .primary-nav a { padding-inline: 9px; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 760px) {
  :root { --header-height: 60px; }
  .header-inner { width: calc(100% - 32px); min-height: 0; flex-wrap: wrap; gap: 0 12px; }
  .brand { min-height: var(--header-height); }
  .brand-copy strong { font-size: 17px; }
  .menu-toggle { order: 2; margin-left: auto; display: flex; align-items: center; }
  .header-search { display: none; order: 3; flex: 1 1 100%; margin: 2px 0 14px; }
  .header-search input { height: 44px; }
  .header-search button { top: 6px; right: 6px; }
  .menu-open .header-search { display: block; }
  .primary-nav { display: none; order: 4; flex: 0 0 calc(100% + 32px); margin-inline: -16px; border-top: 1px solid var(--line); }
  .menu-open .primary-nav { display: block; }
  .primary-nav .menu { display: block; }
  .primary-nav li { display: block; }
  .primary-nav a { min-height: 52px; padding-inline: 20px; border-bottom: 1px solid var(--line); }
  .primary-nav li:last-child a { border-bottom: 0; }
  .primary-nav a > span::after { bottom: -8px; }
  .site-shell, .content-panel { width: calc(100% - 32px); }
  .content-panel { padding-top: 28px; }
  .home-intro, .page-heading { text-align: left; }
  .lead { font-size: 15px; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-facts > *:nth-child(2) { border-right: 0; }
  .quick-facts > *:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-title { display: block; }
  .section-title > a { display: inline-block; margin-top: 8px; }
  .info-grid, .slot-grid, .contact-grid { grid-template-columns: 1fr; }
  .slot-grid article, .slot-grid > .wp-block-column { border-right: 0; border-bottom: 1px solid var(--line); }
  .slot-grid article:last-child, .slot-grid > .wp-block-column:last-child { border-bottom: 0; }
  .checksum { grid-template-columns: minmax(0, 1fr) auto; }
  .checksum strong { grid-column: 1 / -1; }
  .download-table, .help-table { max-width: 100%; overflow-x: visible; }
  .download-table table, .help-table table { min-width: 0; border: 0; }
  .download-table thead, .help-table thead {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .download-table tbody, .help-table tbody { display: block; }
  .download-table tr, .help-table tr {
    display: block; margin-bottom: 12px; padding: 14px 16px;
    border: 1px solid var(--line); border-radius: 10px; background: #fff;
  }
  .download-table tbody tr:nth-child(even), .help-table tbody tr:nth-child(even) { background: #fff; }
  .download-table th, .download-table td, .help-table th, .help-table td {
    display: block; width: 100%; padding: 4px 0; border: 0; text-align: left;
  }
  .download-table tbody th, .help-table tbody th { padding-top: 0; font-size: 14px; }
  .download-table td::before, .help-table td::before {
    content: attr(data-label); display: block; margin-bottom: 2px;
    color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  }
  .download-table td:last-child, .help-table td:last-child { padding-top: 8px; }
  .download-table td:last-child::before { display: none; }
  .table-download, .download-table td a { width: 100%; justify-content: center; }
  .download-actions .button { width: 100%; }
  .next-link { display: block; }
  .next-link .button { margin-top: 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { padding: 28px 20px; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { padding: 13px 20px; display: block; }
  .footer-bottom p + p { margin-top: 8px; }
}

@media (max-width: 600px) {
  body.admin-bar .site-header { top: 0; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .content-panel { width: calc(100% - 26px); }
  .download-card__title { min-height: 84px; padding: 16px 14px; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 10px; }
  .download-card__title::before { width: 38px; height: 38px; }
  .download-card .download-card__title h2 { font-size: 19px; }
  .status-badge { padding-inline: 8px; font-size: 9px; }
  .spec-table th, .spec-table td { padding: 9px 12px; }
  .download-actions { padding-inline: 14px; }
  .checksum { margin-inline: 14px; }
  .checksum-copy { grid-column: 1 / -1; width: 100%; }
  .how-to-list.steps-enhanced li { padding: 17px 16px 17px 66px; }
  .step-number { left: 13px; top: 13px; }
  .source-note { padding-inline: 14px; }
  .page-contents { display: grid; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
