:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5a6963;
  --line: #dbe7e2;
  --soft: #f5faf7;
  --soft-blue: #eef7fb;
  --soft-amber: #fff7e6;
  --green: #0c5f46;
  --green-dark: #063b2f;
  --cyan: #0a7890;
  --amber: #bc7412;
  --coral: #b44838;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(7, 37, 29, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 40;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(219, 231, 226, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.brand strong {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.primary-nav a {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: #263630;
  font-size: 0.93rem;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--soft);
  color: var(--green);
}

.primary-nav a[aria-current="page"] {
  background: var(--green);
  color: var(--white);
}

.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero-section {
  min-height: calc(86vh - 66px);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 80px) clamp(38px, 6vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 39, 31, 0.9), rgba(4, 39, 31, 0.74) 42%, rgba(4, 39, 31, 0.22) 72%),
    url("assets/digital-services-dashboard.png") center right / cover no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.page-hero {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 48px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: 4rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #9ee9dc;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
  max-width: 12ch;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

h2 {
  font-size: 3rem;
  max-width: 760px;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.hero-copy {
  margin-top: 18px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: 100%;
  max-width: 720px;
  min-width: 0;
  margin-top: 28px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.hero-search input,
.filter-bar input,
.filter-bar select,
.tool-form input,
.tool-form select,
.compare-controls select,
.compare-form select,
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.hero-search input {
  border: 0;
}

.primary-action,
.secondary-action,
.small-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 10px 15px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.primary-action {
  background: var(--green);
  color: var(--white);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--green-dark);
}

.secondary-action,
.small-action {
  background: var(--white);
  color: var(--green);
  border-color: var(--line);
}

.small-action {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 0.88rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 48px);
}

.band {
  background: linear-gradient(180deg, var(--soft), var(--soft-blue));
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.section-heading.left {
  justify-items: start;
  text-align: left;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
}

.dashboard-grid,
.record-grid,
.download-grid,
.service-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-tile,
.record-card,
.download-card,
.service-item,
.policy-grid article,
.plain-panel,
.article-item,
.compare-card,
.emergency-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 45, 36, 0.06);
}

.dashboard-tile {
  display: grid;
  gap: 9px;
  min-height: 172px;
  align-content: start;
  padding: 20px;
  text-decoration: none;
}

.dashboard-tile:hover,
.record-card:hover,
.download-card:hover,
.article-item:hover {
  border-color: rgba(12, 95, 70, 0.36);
  box-shadow: var(--shadow);
}

.tile-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--cyan);
  font-weight: 900;
}

.dashboard-tile small,
.record-card p,
.download-card p,
.service-item p,
.policy-grid p,
.plain-panel p,
.article-item p,
.source-note {
  color: var(--muted);
}

.tool-switcher,
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tool-tab,
.category-pill,
.emergency-option {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 8px 12px;
  font-weight: 750;
}

.tool-tab.active,
.tool-tab[aria-selected="true"],
.category-pill.active,
.emergency-option.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.tool-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  margin-bottom: 30px;
  scroll-margin-top: 84px;
}

.tool-switcher .tool-tab {
  flex: 0 1 auto;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 13px;
}

.tool-panel {
  display: none;
  min-width: 0;
  scroll-margin-top: 84px;
}

.tool-panel.active {
  display: block;
}

.filter-bar,
.tool-form,
.compare-controls,
.compare-form,
.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.compare-controls {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
}

.compare-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
}

.tool-form label,
.compare-form label {
  min-width: 0;
  color: #34433e;
  font-size: 0.88rem;
  font-weight: 800;
}

.tool-form .primary-action,
.compare-form .primary-action {
  width: auto;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: #34433e;
  font-size: 0.88rem;
  font-weight: 800;
}

.record-card,
.download-card,
.service-item,
.policy-grid article,
.article-item,
.compare-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.record-card header,
.download-card header,
.article-item header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: var(--radius);
  padding: 3px 8px;
  background: var(--soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.badge.amber {
  background: var(--soft-amber);
  color: var(--amber);
}

.badge.coral {
  background: #fff0ed;
  color: var(--coral);
}

.code-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  border: 1px dashed rgba(12, 95, 70, 0.5);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: var(--soft);
  color: var(--green);
  font-family: "Segoe UI Mono", Consolas, monospace;
  font-weight: 900;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: var(--soft-amber);
}

.split-layout,
.learning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 30px;
  align-items: start;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.guide-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 45, 36, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-card:hover {
  border-color: rgba(12, 95, 70, 0.42);
  box-shadow: 0 16px 34px rgba(9, 45, 36, 0.11);
  transform: translateY(-2px);
}

.guide-card .badge {
  justify-self: start;
}

.guide-card h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.guide-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.guide-card h2 a:hover,
.guide-card h2 a:focus-visible {
  color: var(--green);
}

.guide-card time {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.guide-card .excerpt-link {
  align-self: end;
  line-height: 1.7;
}

.article-content {
  display: grid;
  gap: 30px;
}

.article-content section {
  display: grid;
  gap: 14px;
}

.article-content h2 {
  font-size: 2rem;
}

.article-content h3 {
  margin-top: 8px;
}

.knowledge-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.knowledge-menu a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 11px;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  font-weight: 800;
}

.knowledge-menu a[aria-current="page"],
.knowledge-menu a:hover,
.knowledge-menu a:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.article-meta {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 700;
}

.article-meta a {
  color: var(--ink);
  font-weight: 700;
}

.quick-box {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 18px;
}

.task-first-card,
.extra-faqs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(18px, 3vw, 24px);
}

.task-first-card {
  border-left: 5px solid var(--green);
  background: linear-gradient(180deg, #ffffff, #f7fbf8);
  box-shadow: 0 14px 36px rgba(9, 45, 36, 0.08);
}

.task-first-card h2 {
  font-size: 2.15rem;
}

.task-intro {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
}

.task-code-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.task-code-table table {
  min-width: 720px;
}

.task-first-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.35rem;
}

.extra-faqs h3 {
  font-size: 1.08rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  color: var(--green);
}

.article-note,
.share-panel,
.author-box,
.related-guides,
.comment-section,
.comparison-insight,
.suggestion-panel,
.admin-comment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-button {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.share-button.facebook { background: #4267b2; }
.share-button.twitter { background: #13a8d8; }
.share-button.pinterest { background: #d90429; }
.share-button.whatsapp { background: #4caf50; }

.post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.post-nav a {
  display: grid;
  gap: 8px;
  min-height: 140px;
  padding: 22px;
  text-decoration: none;
  align-content: center;
}

.post-nav a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.post-nav span {
  color: var(--muted);
}

.post-nav strong {
  font-size: 1.3rem;
  line-height: 1.3;
}

.author-box {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  text-align: center;
}

.author-avatar-placeholder {
  width: 140px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: #00e51d;
  color: var(--green-dark);
  font-size: 2rem;
  font-weight: 900;
}

.author-role {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.related-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0;
}

.related-guides {
  padding: 0;
  border: 0;
  background: transparent;
}

.related-tab {
  min-height: 44px;
  border: 0;
  padding: 8px 18px;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.related-tab.active,
.related-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.related-guide-list,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.related-guide-card {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.related-guide-card h3,
.related-guide-card p {
  margin: 0;
}

.related-guide-card h3 a,
.article-item h3 a {
  color: var(--ink);
  text-decoration: none;
}

.related-guide-card h3 a:hover,
.related-guide-card h3 a:focus-visible,
.article-item h3 a:hover,
.article-item h3 a:focus-visible {
  color: var(--green);
}

.related-guide-card p,
.article-excerpt {
  color: var(--muted);
  line-height: 1.7;
}

.excerpt-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.excerpt-link:hover,
.excerpt-link:focus-visible {
  color: var(--ink);
}

.excerpt-cta {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.related-guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.guide-pagination {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr minmax(96px, auto);
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.guide-pagination span {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.guide-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.soft-band {
  border-block: 1px solid #d7e7ee;
  background: var(--soft-blue);
}

.ink-band {
  color: var(--white);
  background: var(--green-dark);
}

.ink-band .section-kicker,
.ink-band a {
  color: #8ed8e5;
}

.ink-band h2,
.ink-band h3,
.ink-band strong {
  color: var(--white);
}

.ink-band p,
.ink-band li {
  color: #dcebe6;
}

.ink-band .check-list li::before {
  background: #f0b75d;
}

.brand-intro-grid,
.brand-boundary-grid,
.service-workflow {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.brand-intro-grid h2,
.brand-process h2,
.brand-boundary-grid h2,
.mission-grid h2,
.trust-framework h2,
.service-workflow h2,
.correction-callout h2 {
  margin-top: 0;
}

.brand-statement {
  border-top: 5px solid var(--amber);
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.brand-statement strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.brand-statement p {
  color: #dce6e2;
}

.brand-statement a {
  color: #8ed8e5;
  font-weight: 800;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.principles-grid article {
  border-top: 3px solid var(--line);
  padding-top: 18px;
}

.principle-number {
  color: var(--amber);
  font-weight: 900;
}

.principles-grid h3 {
  margin: 10px 0 8px;
}

.brand-process {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 7vw, 92px);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  counter-increment: process;
}

.process-list li:first-child {
  border-top: 3px solid var(--ink);
}

.process-list strong::before {
  content: counter(process, decimal-leading-zero) " ";
  color: var(--amber);
}

.process-list span {
  color: var(--muted);
}

.author-intro {
  display: grid;
  grid-template-columns: 130px minmax(0, 760px);
  gap: 30px;
  align-items: start;
}

.author-intro .author-avatar-placeholder {
  width: 120px;
  height: 120px;
  margin: 0;
}

.correction-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 36px;
  align-items: center;
}

.company-facts {
  border-top: 4px solid var(--cyan);
}

.company-facts div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.company-facts span {
  color: var(--muted);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 72px);
}

.mission-grid article + article {
  border-left: 1px solid #c9dce4;
  padding-left: clamp(28px, 6vw, 72px);
}

.governance-list {
  margin-top: 28px;
  border-top: 3px solid var(--ink);
}

.governance-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.governance-list h3,
.governance-list p {
  margin: 0;
}

.trust-framework {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(30px, 7vw, 88px);
}

.trust-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.trust-columns section {
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  padding-top: 14px;
}

.coverage-table-wrap {
  margin-top: 26px;
  overflow-x: auto;
}

.coverage-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.coverage-table th,
.coverage-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.coverage-table th {
  color: var(--white);
  background: var(--ink);
}

.document-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.document-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 0;
  text-decoration: none;
  font-weight: 800;
}

.service-directory {
  margin-top: 28px;
  border-top: 3px solid var(--ink);
}

.service-directory article {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid #c9dce4;
  padding: 24px 0;
}

.service-directory article > div {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.service-directory article > div span {
  color: var(--amber);
  font-weight: 900;
}

.service-directory h3,
.service-directory p {
  margin: 0;
}

.light-action {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark) !important;
}

.light-action:hover,
.light-action:focus-visible {
  border-color: #e4fff7;
  background: #e4fff7;
  color: var(--green-dark) !important;
}

.support-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.support-paths article {
  border-top: 3px solid var(--line);
  padding-top: 18px;
}

.support-paths a {
  color: var(--green);
  font-weight: 800;
}

.related-grid a {
  font-weight: 800;
  text-decoration: none;
}

.comment-list {
  display: grid;
  gap: 12px;
}

.comment-item {
  display: grid;
  gap: 6px;
  border-left: 4px solid var(--green);
  padding: 12px 14px;
  background: var(--soft);
}

.comment-form {
  display: grid;
  gap: 18px;
}

.comment-form label {
  display: grid;
  gap: 8px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  font-size: 1.05rem;
  background: var(--white);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #9aa3a0;
  font-size: 1.2rem;
}

.comment-form textarea {
  min-height: 280px;
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.checkbox-label input {
  width: 26px;
  height: 26px;
  padding: 0;
}

.comment-form .comment-submit,
.comment-form input[type="submit"] {
  justify-self: start;
  min-height: 48px;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  appearance: none;
}

.comment-form .comment-submit:hover,
.comment-form .comment-submit:focus-visible,
.comment-form input[type="submit"]:hover,
.comment-form input[type="submit"]:focus-visible {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
}

.suggestion-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.suggestion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.suggestion-card {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  background: var(--soft);
}

.suggestion-card small {
  color: var(--muted);
}

.compare-results {
  display: grid;
  gap: 18px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-table {
  min-width: 980px;
}

.star-rating {
  color: var(--amber);
  font-size: 1.05rem;
  white-space: nowrap;
}

.admin-comment-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.resource-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.resource-row {
  display: grid;
  gap: 3px;
  border-left: 4px solid var(--cyan);
  padding: 11px 13px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.resource-row span {
  color: var(--muted);
}

.resource-row:hover,
.resource-row:focus-visible {
  border-left-color: var(--green);
  background: var(--soft);
}

.policy-grid h3 a {
  color: var(--ink);
  text-decoration: none;
}

.policy-grid h3 a:hover,
.policy-grid h3 a:focus-visible {
  color: var(--green);
}

.policy-meta {
  color: var(--muted);
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  justify-content: center;
  gap: 42px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 9px;
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 16px;
}

.legal-toc strong {
  margin-bottom: 5px;
}

.legal-toc a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--green);
}

.legal-content {
  min-width: 0;
}

.legal-content > section {
  padding: 0 0 26px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content > section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
}

.legal-callout {
  margin-top: 24px;
  border-left: 4px solid var(--cyan);
  padding: 16px 18px;
  background: var(--soft);
}

.legal-callout p {
  margin-bottom: 0;
}

.plain-panel {
  padding: 22px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green);
}

.download-card {
  min-height: 270px;
  min-width: 0;
}

.download-card header,
.download-card header > div {
  min-width: 0;
}

.download-card h2,
.resource-card h2,
.emergency-card h2 {
  max-width: none;
  font-size: 1.45rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.download-meta {
  display: grid;
  gap: 5px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-item {
  min-height: 132px;
}

.right-widget {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 88px;
}

.right-widget > section {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 45, 36, 0.07);
}

.right-widget > section > h3 {
  margin: 0 0 4px;
  border-left: 4px solid var(--green);
  padding: 3px 0 3px 12px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
}

.widget-link {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #fbfdfc;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.widget-link:hover,
.widget-link:focus-visible {
  border-color: rgba(12, 95, 70, 0.42);
  background: var(--soft);
}

.widget-link strong {
  line-height: 1.35;
}

.widget-link span {
  color: var(--muted);
  font-size: 0.88rem;
}

.support-form {
  margin-top: 22px;
}

.support-form .full-span,
.support-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.contact-list div {
  display: grid;
  gap: 2px;
}

.contact-list dt {
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  color: var(--muted);
}

.metric-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid div {
  display: grid;
  min-height: 136px;
  gap: 6px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.metric-grid strong {
  color: var(--green);
  font-size: 1.4rem;
}

.metric-grid span {
  color: var(--muted);
}

.emergency-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
}

.results-grid,
.resource-grid,
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.emergency-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-grid > *,
.resource-grid > *,
.emergency-grid > * {
  min-width: 0;
}

.resource-card,
.emergency-card,
.empty-state {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 45, 36, 0.06);
}

.resource-card p,
.emergency-card p,
.empty-state p {
  color: var(--muted);
}

.resource-card .small-action {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.emergency-card {
  border-top: 4px solid var(--coral);
}

.emergency-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.35rem;
}

.empty-state {
  grid-column: 1 / -1;
}

.suggestion-list > button,
.suggestion-list > span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  text-align: left;
  background: var(--soft);
}

.special-page-intro {
  padding-bottom: clamp(32px, 4vw, 54px);
}

.special-page-intro + .section {
  padding-top: 0;
}

.emergency-list {
  display: grid;
  gap: 8px;
  align-content: start;
}

.emergency-option {
  text-align: left;
}

.emergency-detail {
  padding: 22px;
}

.emergency-detail ol {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  padding: 34px clamp(18px, 4vw, 48px);
  background: #10201a;
  color: var(--white);
}

.site-footer p {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--white);
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 22px;
}

.footer-groups section {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-groups h3 {
  color: #e4fff7;
  font-size: 0.92rem;
}

.footer-groups a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-groups a:hover,
.footer-groups a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-brand .brand-mark {
  background: #e4fff7;
  color: var(--green);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer.enhanced-footer {
  display: block;
  padding: 0;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.footer-trust span {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-inline: 14px;
}

.footer-trust span:first-child {
  padding-left: 0;
}

.footer-trust span:last-child {
  border-right: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  padding: 38px clamp(18px, 4vw, 48px);
}

.footer-about p {
  max-width: 46ch;
}

.footer-report {
  display: inline-block;
  margin-top: 6px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-bottom a {
  margin-left: auto;
  color: var(--white);
  font-weight: 800;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(8, 22, 18, 0.62);
}

.profile-dialog {
  position: fixed;
  inset: 6vh clamp(14px, 7vw, 120px);
  z-index: 60;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.close-dialog {
  position: sticky;
  top: 0;
  float: right;
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 20px;
}

.profile-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.profile-lead {
  max-width: 78ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-facts,
.profile-guidance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 22px 0;
}

.profile-facts > div {
  display: grid;
  gap: 6px;
  border-left: 4px solid var(--cyan);
  padding-left: 13px;
}

.profile-facts span,
.profile-guidance p {
  color: var(--muted);
}

.profile-guidance section {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.home-hero .hero-content {
  max-width: 900px;
}

.home-hero {
  padding-block: 48px 28px;
}

.home-hero h1 {
  max-width: 17ch;
}

.home-hero .hero-search {
  margin-top: 20px;
}

.home-hero .hero-actions,
.home-hero .popular-searches {
  margin-top: 14px;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.popular-searches a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.home-trust-strip div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px clamp(12px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.home-trust-strip div:last-child {
  border-right: 0;
}

.home-trust-strip strong {
  color: var(--green-dark);
  font-size: 0.9rem;
}

.home-trust-strip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.home-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-tool {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-width: 0;
  min-height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  transition: background 160ms ease, transform 160ms ease;
}

.home-tool:hover,
.home-tool:focus-visible {
  background: var(--soft);
  transform: translateY(-2px);
}

.home-tool h3,
.home-tool p {
  margin: 0;
}

.home-tool p {
  color: var(--muted);
}

.home-tool > strong {
  color: var(--green);
}

.tool-index {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.heading-with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-action {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 4px;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.profile-card h3,
.profile-card p {
  margin: 0;
}

.profile-card p {
  margin-block: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.profile-card button,
.network-profile-grid button {
  border: 0;
  padding: 9px 11px;
  color: var(--white);
  background: var(--green);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.profile-monogram {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
}

.network-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.network-profile-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 220px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.network-profile-grid article:last-child {
  border-right: 0;
}

.network-profile-grid article > span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.network-profile-grid h3,
.network-profile-grid p {
  margin: 0;
}

.network-profile-grid p {
  color: var(--muted);
}

.network-profile-grid button {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.platform-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.platform-stat-grid div {
  display: grid;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 20px;
}

.platform-stat-grid strong {
  color: var(--white);
  font-size: 2rem;
}

.platform-stat-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.find-learn-use {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.find-learn-use div {
  display: grid;
  gap: 4px;
  padding: 22px 0;
}

.find-learn-use strong {
  color: #8ed8e5;
}

.find-learn-use span {
  color: rgba(255, 255, 255, 0.72);
}

.six-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.update-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.update-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.update-list time,
.update-list span,
.update-list p {
  color: var(--muted);
}

.update-list h3,
.update-list p {
  margin: 3px 0;
}

.update-list h3 a {
  color: var(--ink);
  text-decoration: none;
}

.update-list h3 a:hover,
.update-list h3 a:focus-visible {
  color: var(--green);
}

.home-download-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-download-list > a {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  color: var(--ink);
  text-decoration: none;
}

.home-download-list h3,
.home-download-list p {
  margin: 2px 0;
}

.home-download-list p,
.home-download-list small {
  color: var(--muted);
}

.home-download-list > a > strong {
  color: var(--green);
}

.pdf-mark {
  display: grid;
  width: 46px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--amber);
  color: #7b4d0b;
  background: #fff8ea;
  font-size: 0.72rem;
  font-weight: 900;
}

.knowledge-band {
  border-block: 1px solid #bdd7df;
  background: var(--soft-blue);
}

.knowledge-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: clamp(40px, 8vw, 100px);
}

.knowledge-home-grid nav {
  display: grid;
  border-top: 1px solid #bdd7df;
}

.knowledge-home-grid nav a {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid #bdd7df;
  padding: 15px 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.knowledge-home-grid nav span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
}

.correction-home {
  border-bottom: 1px solid var(--line);
}

.correction-facts {
  margin: 0;
}

.correction-facts div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.correction-facts dt {
  color: var(--muted);
}

.correction-facts dd {
  margin: 0;
  font-weight: 800;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 36px;
  align-items: center;
  padding: 34px max(24px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--green);
}

.newsletter-band h2,
.newsletter-band p {
  margin: 4px 0;
  color: inherit;
}

.newsletter-band form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-band input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 13px;
}

.newsletter-band .primary-action {
  background: var(--ink);
}

.newsletter-band form p {
  grid-column: 1 / -1;
  font-size: 0.85rem;
}

.platform-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  background: #edf5f1;
}

.platform-status > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-status p {
  margin: 0;
  color: var(--muted);
}

.platform-status a {
  color: var(--green);
  font-weight: 800;
}

.status-live {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-live::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #23a36d;
}

.profile-actions {
  margin-block: 20px 28px;
}

.profile-section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.profile-alert {
  margin-top: 24px;
  border-left: 5px solid #be3e38;
  padding: 18px 20px;
  background: #fff3f1;
}

.profile-alert h3,
.profile-alert p {
  margin: 0 0 8px;
}

.profile-action-table {
  min-width: 760px;
}

.profile-troubleshooting {
  display: grid;
  gap: 12px;
  margin: 0;
}

.profile-troubleshooting div {
  border-left: 3px solid var(--line);
  padding-left: 12px;
}

.profile-troubleshooting dt {
  font-weight: 800;
}

.profile-troubleshooting dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.profile-faqs details {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.profile-faqs summary {
  cursor: pointer;
  font-weight: 800;
}

.profile-faqs p {
  color: var(--muted);
}

.related-guide-card,
.related-guide-card *,
.guide-pagination,
.guide-pagination * {
  min-width: 0;
}

.related-guide-card h3,
.related-guide-card p,
.related-guide-meta {
  overflow-wrap: anywhere;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #f0b75d;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }
  .site-header {
    display: block;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .primary-nav {
    display: none;
    justify-content: start;
    margin-top: 12px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .dashboard-grid,
  .record-grid,
  .download-grid,
  .results-grid,
  .resource-grid,
  .emergency-grid,
  .service-grid,
  .policy-grid,
  .metric-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-form .primary-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .split-layout,
  .learning-layout,
  .article-layout,
  .profile-grid,
  .profile-facts,
  .profile-guidance,
  .legal-layout,
  .brand-intro-grid,
  .brand-boundary-grid,
  .brand-process,
  .trust-framework,
  .service-workflow,
  .correction-callout {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-directory article {
    grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  }

  .service-directory article > a {
    grid-column: 2;
    justify-self: start;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .right-widget {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .related-grid,
  .suggestion-list,
  .home-tool-grid,
  .profile-card-grid,
  .six-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-guide-list {
    grid-template-columns: 1fr;
  }

  .network-profile-grid,
  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-strip div:nth-child(even),
  .network-profile-grid article:nth-child(even) {
    border-right: 0;
  }

  .home-trust-strip div:last-child {
    grid-column: 1 / -1;
  }

  .home-about-grid,
  .knowledge-home-grid,
  .newsletter-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 0;
  }

  .footer-trust span:nth-child(2) {
    border-right: 0;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(4, 39, 31, 0.94), rgba(4, 39, 31, 0.7)),
      url("assets/digital-services-dashboard.png") center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }

  .article-content h2 {
    font-size: 1.7rem;
  }

  .task-first-card h2 {
    font-size: 1.8rem;
  }
  .hero-search,
  .filter-bar,
  .tool-form,
  .compare-controls,
  .compare-form,
  .support-form,
  .dashboard-grid,
  .record-grid,
  .download-grid,
  .results-grid,
  .resource-grid,
  .emergency-grid,
  .service-grid,
  .policy-grid,
  .metric-grid,
  .compare-grid,
  .emergency-layout,
  .site-footer,
  .post-nav,
  .author-box,
  .guide-grid,
  .right-widget,
  .related-guide-list,
  .related-grid,
  .suggestion-list,
  .home-tool-grid,
  .profile-card-grid,
  .network-profile-grid,
  .home-trust-strip,
  .six-up,
  .find-learn-use,
  .platform-stat-grid,
  .platform-status {
    grid-template-columns: 1fr;
  }

  .tool-form .primary-action,
  .compare-form .primary-action {
    width: 100%;
  }

  .tool-switcher .tool-tab {
    flex: 1 1 calc(50% - 4px);
  }

  .heading-with-action {
    display: grid;
    align-items: start;
  }

  .home-trust-strip div,
  .network-profile-grid article,
  .home-trust-strip div:nth-child(even),
  .network-profile-grid article:nth-child(even) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .profile-card button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .update-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-download-list > a {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .home-download-list > a > strong {
    grid-column: 2;
  }

  .newsletter-band form {
    grid-template-columns: 1fr;
  }

  .newsletter-band .primary-action {
    width: 100%;
  }

  .platform-status {
    gap: 8px;
  }

  .correction-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .related-guide-card {
    width: 100%;
    padding: 15px;
  }

  .related-guide-meta {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .related-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .related-tab + .related-tab {
    border-top: 1px solid var(--ink);
  }

  .guide-pagination button {
    width: 100%;
  }

  .principles-grid,
  .mission-grid,
  .trust-columns,
  .support-paths,
  .service-directory article,
  .governance-list article,
  .process-list li,
  .author-intro {
    grid-template-columns: 1fr;
  }

  .mission-grid article + article {
    border-top: 1px solid #c9dce4;
    border-left: 0;
    padding-top: 26px;
    padding-left: 0;
  }

  .service-directory article > a {
    grid-column: auto;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .author-intro .author-avatar-placeholder {
    width: 96px;
    height: 96px;
  }

  .footer-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-trust {
    grid-template-columns: 1fr;
  }

  .footer-trust span,
  .footer-trust span:first-child {
    border-right: 0;
    padding: 0;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .post-nav a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .related-tabs {
    width: 100%;
  }

  .related-tab {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .guide-pagination {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-pagination span {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .comment-form textarea {
    min-height: 220px;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 22px 28px;
  }

  .home-hero .hero-search {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    margin-top: 20px;
    padding: 6px;
  }

  .home-hero .hero-search input,
  .home-hero .hero-search button {
    min-width: 0;
    padding-inline: 11px;
  }

  .home-hero .hero-copy {
    margin-top: 12px;
    font-size: 1rem;
  }

  .home-hero .hero-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .home-hero .hero-actions .primary-action,
  .home-hero .hero-actions .secondary-action {
    flex: 1 1 132px;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .home-hero .popular-searches {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 14px;
    padding-bottom: 6px;
    white-space: nowrap;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: auto;
    flex: 1 1 190px;
  }

  .record-card header,
  .download-card header,
  .article-item header {
    display: grid;
  }

  .profile-dialog {
    inset: 10px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration. These rules preserve the static design around native output. */
.primary-nav .menu,
.footer-groups .menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li,
.footer-groups li {
  display: contents;
}

.brand-logo,
.brand-logo img {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 52px;
  border-radius: 8px;
  object-fit: contain;
}

.hero-section {
  background-image:
    linear-gradient(90deg, rgba(7, 31, 24, 0.97) 0%, rgba(7, 31, 24, 0.91) 42%, rgba(7, 31, 24, 0.44) 100%),
    var(--nuc-hero-image, url("../images/digital-services-dashboard.png"));
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumbs a {
  color: inherit;
  text-underline-offset: 3px;
}

.entry-content > :first-child,
.page-content > :first-child {
  margin-top: 0;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.article-featured-image {
  margin: 0 0 28px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.guide-thumbnail {
  display: block;
  margin: -20px -20px 18px;
}

.guide-thumbnail img {
  width: 100%;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.related-tabs [data-related-tab] {
  min-height: 44px;
  border: 0;
  padding: 8px 18px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.related-tabs [data-related-tab][aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.related-grid [data-related-item] {
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  overflow-wrap: anywhere;
}

.related-panel[hidden],
.related-grid [data-related-item][hidden] {
  display: none !important;
}

.related-grid [data-related-item] small {
  color: var(--muted);
  font-weight: 600;
}

.related-pagination {
  display: grid;
  grid-template-columns: minmax(100px, auto) 1fr minmax(100px, auto);
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.related-pagination span {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.related-pagination button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.related-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.author-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 4px;
  object-fit: cover;
}

.author-archive-box {
  margin-bottom: 36px;
}

.comment-list,
.comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list > li {
  border-left: 4px solid var(--green);
  padding: 16px;
  background: var(--soft);
}

.comment-list .children {
  margin: 16px 0 0 24px;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.comment-author img {
  border-radius: 50%;
}

.comment-notes {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-facts {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-facts div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.contact-facts dt {
  font-weight: 800;
}

.profile-page-content {
  max-width: 980px;
}

.footer-social-block {
  margin-top: 24px;
}

.footer-social-heading {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: #e4fff7;
  color: var(--green-dark);
  background: #e4fff7;
}

.site-footer > .footer-bottom {
  grid-column: 1 / -1;
  margin: 22px calc(-1 * clamp(18px, 4vw, 48px)) calc(-1 * clamp(18px, 4vw, 48px));
}

.site-footer > .footer-bottom p {
  margin: 0;
}

.navigation.pagination,
.pagination {
  margin-top: 32px;
}

.nav-links,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-numbers {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 7px 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.page-numbers.current {
  color: var(--white);
  background: var(--green);
}

body.dialog-open {
  overflow: hidden;
}

.nuc-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 680px;
  margin-top: 22px;
}

.search-form label,
.search-form input {
  width: 100%;
}

.search-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 10px 14px;
  font: inherit;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.sitemap-guides {
  grid-column: 1 / -1;
}

body.nuc-hide-home-tools .home-tools,
body.nuc-hide-home-banks #home-banks,
body.nuc-hide-home-networks #home-networks,
body.nuc-hide-home-about #about,
body.nuc-hide-home-services #services,
body.nuc-hide-home-latest #home-latest,
body.nuc-hide-home-downloads #home-downloads,
body.nuc-hide-home-knowledge #home-knowledge,
body.nuc-hide-home-support #support,
body.nuc-hide-home-newsletter #home-newsletter,
body.nuc-hide-home-status #home-status {
  display: none;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {

  .search-form,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-guides {
    grid-column: auto;
  }
  .related-tabs [data-related-tab] {
    width: 100%;
  }

  .related-tabs [data-related-tab] + [data-related-tab] {
    border-top: 1px solid var(--ink);
  }

  .related-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .related-pagination span {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }
}
