@font-face {
    font-family: "Calibri Regular";
    src: url("/assets/fonts/Calibri.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Calibri Bold";
    src: url("/assets/fonts/Calibri-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Avenir Next LT Pro Medium";
    src: url("/assets/fonts/AvenirNextLTPro-Demi.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  :root {
    --steel: #012352;
    --steel-2: #1D1B1A;
    --steel-3: #0B1D45;
    --paper: #EFF4F8;
    --paper-2: #F0F5F9;
    --paper-3: #DDDBDB;
    --edge: #DF522C;
    --blue: #2A6CA7;
    --brand-green: #00964C;
    --brand-green-dark: #063D26;
    --brand-green-button: #007A3D;
    --brand-orange: #B83A1D;
    --brand-orange-bright: #F05423;
    --mute: #4D4F5C;
    --mute-2: #707070;
    --white: #FFFFFF;
    --radius: 14px;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 50px rgba(1,35,82,0.13);
    --shadow-card: 0 10px 28px rgba(1,35,82,0.09);
    --font-display: "Avenir Next LT Pro Medium", Arial, sans-serif;
    --font-sans: "Calibri Regular", Arial, sans-serif;
    --font-bold: "Calibri Bold", Arial, sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--steel-2);
    font-size: 20px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; }
  button, input, textarea { font: inherit; }
  p { line-height: 1.5; }
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
  }
  strong, b {
    font-family: var(--font-bold);
    font-weight: 700;
  }
  .skip-link {
    position: absolute;
    top: -6rem;
    left: 1rem;
    z-index: 999;
    background: var(--white);
    color: var(--steel);
    padding: 0.85rem 1rem;
    font-weight: 800;
  }
  .skip-link:focus { top: 1rem; }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }
  .display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.01em;
  }
  .h-display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-bold);
  }
  .eyebrow::before {
    content: "";
    display: block;
    width: 2rem;
    height: 1px;
    background: currentColor;
  }
  .section { padding: 96px 0; }
  .section-lg { padding: 128px 0; }
  .bg-paper {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.18)),
      var(--paper);
  }
  .bg-paper-2 {
    background:
      radial-gradient(circle at 12% 0%, rgba(42,108,167,0.10), transparent 34%),
      linear-gradient(180deg, var(--paper-2), #E7EEF4);
  }
  .bg-steel { background-color: var(--steel); color: var(--white); }
  .text-steel { color: var(--steel); }
  .text-white { color: var(--white); }
  .text-edge { color: var(--edge); }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.45rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-bold);
    font-weight: 700;
    color: inherit;
    transition: background 140ms ease, border-color 140ms ease, transform 100ms ease-out;
  }
  .btn:active {
    transform: scale(0.97);
  }
  .btn-light { background: var(--brand-green-button); color: var(--white); border-color: var(--brand-green-button); }
  .btn-dark { background: var(--steel); color: var(--white); border-color: var(--steel); }
  .btn-light:hover,
  .btn-light:focus,
  .btn-light:active { background: var(--brand-green-dark); border-color: var(--brand-green-dark); }
  .btn-dark:hover,
  .btn-dark:focus { background: var(--edge); border-color: var(--edge); }
  .btn-outline { background: var(--white); border-color: var(--steel); color: var(--steel); }
  .btn-outline:hover { border-color: var(--edge); background: var(--edge); color: var(--white); }
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 4px;
  }
  .bg-paper a:focus-visible,
  .bg-paper-2 a:focus-visible,
  .bg-paper button:focus-visible,
  .bg-paper-2 button:focus-visible {
    outline-color: var(--steel);
  }

  .utility {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 70;
    height: 52px;
    background: var(--white);
    color: var(--steel-2);
    font-size: 16px;
  }
  .utility .container {
    width: min(1120px, calc(100% - 40px));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }
  .utility-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .utility a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-bold);
    background: var(--steel);
    border-radius: 5px;
    padding: 0.4rem 0.8rem;
    line-height: 1.35;
    white-space: nowrap;
  }
  .utility a:hover,
  .utility a:focus { background: var(--edge); }
  .site-search {
    display: flex;
    align-items: stretch;
    height: 36px;
    width: 210px;
    border: 1px solid rgba(29,27,26,0.55);
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
  }
  .site-search input {
    min-height: 0;
    height: 100%;
    border: 0;
    flex: 1;
    margin: 0;
    padding: 0 0.55rem;
    font-size: 1rem;
    color: var(--steel-2);
  }
  .site-search button {
    width: 38px;
    border: 0;
    background: var(--white);
    color: var(--steel);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-family: var(--font-bold);
    font-size: 1.3rem;
  }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 70;
    height: 96px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(1,35,82,0.08);
    box-shadow: 0 10px 34px rgba(1,35,82,0.10);
  }
  .nav .container {
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.4rem, 3vw, 3rem);
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    min-width: 0;
    flex: 0 0 auto;
  }
  .brand-logo {
    display: block;
    width: min(238px, 24vw);
    min-width: 190px;
    max-height: 86px;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
  }
  .brand-text strong { color: var(--steel); font-size: 1rem; }
  .brand-text span {
    color: var(--mute-2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(1rem, 2.2vw, 2rem);
  }
  .nav-links a {
    color: var(--steel-2);
    font-size: clamp(16px, 1.12vw, 18px);
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-bold);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: color 120ms ease;
  }
  .nav-links a:hover,
  .nav-links a:focus,
  .nav-links a[aria-current="page"] {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.3rem;
  }
  .nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.45rem 1rem;
    border-radius: 5px;
    background: var(--steel);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-bold);
    font-weight: 700;
    white-space: nowrap;
    transition: background 140ms ease;
  }
  .nav-action:hover,
  .nav-action:focus {
    background: var(--brand-green-button);
  }
  .nav a:focus-visible,
  .menu-btn:focus-visible {
    outline-color: var(--steel);
  }
  .menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--paper-3);
    background: var(--white);
    color: var(--steel);
    place-items: center;
    cursor: pointer;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--steel);
    color: var(--white);
    transform: translateY(-100%);
    transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
    padding: 1rem;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  .mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    padding: 0.45rem 0;
  }
  .mobile-menu section { margin-bottom: 1.25rem; }
  .mobile-menu h2 {
    margin: 0 0 0.35rem;
    color: rgba(255,255,255,0.72);
    font-family: var(--font-bold);
    font-size: 1rem;
  }

  .hero {
    position: relative;
    min-height: 90svh;
    padding-top: 96px;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(1,18,44,0.82) 0%, rgba(1,28,64,0.64) 36%, rgba(1,35,82,0.34) 58%, rgba(1,35,82,0.12) 78%, rgba(1,35,82,0.03) 100%),
      linear-gradient(180deg, rgba(1,18,44,0.24) 0%, rgba(1,18,44,0.06) 50%, rgba(1,18,44,0.28) 100%),
      url("/assets/img/NFBHero.png") center / cover no-repeat;
    color: var(--white);
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 28%, rgba(0,150,76,0.12), transparent 26%),
      linear-gradient(180deg, rgba(1,35,82,0.06) 0%, rgba(1,35,82,0) 42%);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(180deg, rgba(1,14,34,0) 0%, rgba(1,14,34,0.32) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 3.5rem;
    align-items: center;
    min-height: calc(90svh - 96px);
    padding: 72px 0 88px;
  }
  .hero .eyebrow { color: rgba(255,255,255,0.92); }
  .hero h1 {
    margin: 1.5rem 0 1.4rem;
    max-width: 13ch;
    color: var(--white);
    text-shadow: 0 3px 22px rgba(0,0,0,0.46);
    font-size: clamp(2.9rem, 6vw, 5.4rem);
  }
  .hero-lede {
    max-width: 44rem;
    color: rgba(255,255,255,0.94);
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.42);
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .page-hero {
    position: relative;
    min-height: 72svh;
    padding-top: 112px;
    overflow: hidden;
    background: var(--steel);
    color: var(--white);
  }
  .page-hero-media {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, rgba(1,35,82,0.93) 0%, rgba(1,35,82,0.78) 48%, rgba(1,35,82,0.48) 100%),
      url("/assets/img/nfbv-convention.png") center / cover no-repeat;
  }
  .page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(0deg, rgba(1,35,82,0.2), rgba(1,35,82,0));
  }
  .page-hero-inner {
    position: relative;
    z-index: 2;
    min-height: calc(72svh - 112px);
    display: flex;
    align-items: flex-end;
    padding: 72px 0 82px;
  }
  .page-hero-copy {
    max-width: 760px;
  }
  .page-hero h1 {
    margin: 1.4rem 0 1.35rem;
    max-width: 11ch;
    font-size: clamp(2.7rem, 6vw, 5rem);
  }
  .page-hero p {
    max-width: 48rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
  }
  .page-hero .hero-actions {
    margin-top: 2rem;
  }
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.35rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
  }
  .breadcrumb a {
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
  }
  .breadcrumb span::before {
    content: "/";
    margin-right: 0.45rem;
    color: rgba(255,255,255,0.45);
  }
  .quick-panel {
    border: 1px solid var(--paper);
    background: var(--white);
    box-shadow: 0 5px 10px rgba(1,35,82,0.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    align-self: start;
    margin-top: 2.5rem;
  }
  .hero .quick-panel {
    grid-column: 1;
    width: min(100%, 720px);
    margin-top: 0;
    border-color: rgba(255,255,255,0.78);
    box-shadow: 0 24px 70px rgba(0,0,0,0.26);
  }
  .quick-panel h2 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
  }
  .quick-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
  }
  .quick-panel li {
    display: grid;
    grid-template-columns: 1.5rem 1fr;
    gap: 0.8rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--paper-3);
    align-items: start;
  }
  .quick-panel li:first-child { border-top: 0; padding-top: 0; }
  .quick-panel iconify-icon { color: var(--edge); font-size: 1.25rem; margin-top: 0.15rem; }
  .quick-panel strong { display: block; color: var(--steel); font-family: var(--font-bold); }
  .quick-panel span { display: block; color: var(--steel-2); line-height: 1.45; font-size: 0.98rem; margin-top: 0.15rem; }

  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.7fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
  }
  .stack-head {
    max-width: 760px;
    margin-bottom: 2.5rem;
  }
  .stack-head p {
    margin: 1rem 0 0;
    color: var(--steel-2);
  }
  .section-title {
    margin: 1rem 0 0;
    color: var(--blue);
    font-size: clamp(2rem, 4vw, 3.4rem);
  }
  .section-title.text-white,
  .bg-steel .section-title {
    color: var(--white);
  }
  .section-head p {
    margin: 0;
    color: var(--steel-2);
  }
  .nfbtx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    background: transparent;
    border: 0;
  }
  .resource-card {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.44)),
      var(--paper);
    padding: 1.65rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(1,35,82,0.10);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .resource-card:hover {
    box-shadow: 0 16px 40px rgba(1,35,82,0.15);
  }
  @media (hover: hover) and (pointer: fine) {
    .resource-card:hover {
      transform: translateY(-4px) scale(1.005);
    }
  }
  .resource-card.white {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,253,0.96));
  }
  .resource-card iconify-icon {
    color: var(--edge);
    font-size: 2rem;
  }
  .resource-card h3 {
    margin: 1rem 0 0.65rem;
    color: var(--steel-2);
    font-size: 1.45rem;
  }
  .resource-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--steel-2);
  }
  .resource-card a {
    margin-top: 1.25rem;
    color: var(--steel);
    font-family: var(--font-bold);
    font-weight: 700;
    text-decoration: none;
  }
  .resource-card a:hover,
  .resource-card a:focus { color: var(--edge); text-decoration: underline; }
  .page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.36fr);
    gap: 4rem;
    align-items: start;
  }
  .mock-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .mock-section {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,252,254,0.96));
    border: 1px solid rgba(1,35,82,0.10);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
  }
  .mock-section.full {
    grid-column: 1 / -1;
  }
  .mock-section h2 {
    margin: 0 0 0.75rem;
    color: var(--blue);
    font-size: 1.55rem;
  }
  .mock-section p,
  .mock-section li {
    margin: 0;
    color: var(--steel-2);
    font-size: 1rem;
  }
  .mock-section p + p,
  .mock-section .info-stack {
    margin-top: 1rem;
  }
  .page-list {
    columns: 2;
    column-gap: 2rem;
    padding-left: 1.2rem;
  }
  .page-list li {
    break-inside: avoid;
    margin-bottom: 0.45rem;
  }
  .directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .directory-card {
    background: linear-gradient(180deg, var(--white), #F8FBFD);
    border: 1px solid rgba(1,35,82,0.10);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
  }
  .directory-card h3 {
    margin: 0 0 0.85rem;
    color: var(--steel);
    font-size: 1.2rem;
  }
  .directory-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
  }
  .directory-card a {
    color: var(--steel-2);
    text-decoration: none;
    font-family: var(--font-bold);
    font-size: 0.98rem;
  }
  .directory-card a:hover,
  .directory-card a:focus,
  .directory-card a[aria-current="page"] {
    color: var(--edge);
    text-decoration: underline;
  }
  .prose-block {
    display: grid;
    gap: 1.4rem;
  }
  .prose-block h2,
  .prose-block h3 {
    margin: 0;
    color: var(--blue);
  }
  .prose-block h2 {
    font-size: clamp(2.25rem, 4vw, 3.7rem);
  }
  .prose-block h3 {
    font-size: 1.55rem;
  }
  .prose-block p,
  .prose-block li {
    margin: 0;
    color: var(--steel-2);
  }
  .feature-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    background: transparent;
    border: 0;
  }
  .feature-list li {
    background: var(--white);
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(1,35,82,0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }
  .side-panel {
    position: sticky;
    top: 160px;
    border-top: 4px solid var(--steel);
    padding: 1.35rem;
    background: rgba(255,255,255,0.86);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }
  .side-panel h2,
  .side-panel h3 {
    margin: 0 0 1rem;
    color: var(--blue);
  }
  .side-panel a {
    display: block;
    color: var(--steel);
    font-family: var(--font-bold);
    font-weight: 700;
    text-decoration: none;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(1,35,82,0.12);
  }
  .side-panel a:first-of-type {
    border-top: 0;
  }
  .info-stack {
    display: grid;
    gap: 0.75rem;
    background: transparent;
    border: 0;
  }
  .info-row {
    display: grid;
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 1rem;
    background: linear-gradient(180deg, var(--white), #F8FBFD);
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(1,35,82,0.10);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(1,35,82,0.06);
  }
  .info-row strong {
    color: var(--steel);
  }
  .cta-band {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 92% 8%, rgba(223,82,44,0.34), transparent 28%),
      radial-gradient(circle at 8% 100%, rgba(0,150,76,0.22), transparent 34%),
      linear-gradient(135deg, #061B3F 0%, var(--steel) 58%, #0B1D45 100%);
    color: var(--white);
    padding: clamp(2rem, 4vw, 3.25rem);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
    gap: clamp(1.5rem, 4vw, 3.2rem);
    align-items: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.16);
  }
  .cta-band .eyebrow {
    color: var(--white);
  }
  .cta-band h2 {
    margin: 0 0 0.6rem;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
  }
  .cta-band p {
    margin: 0;
    color: rgba(255,255,255,0.84);
    max-width: 58ch;
  }
  .assistant-panel {
    width: 100%;
    min-width: 0;
    color: var(--steel-2);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,253,0.96));
    border: 1px solid rgba(255,255,255,0.56);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  }
  .assistant-panel #assistantOutput {
    min-height: 7.25rem;
    margin: 0;
    padding: 1rem 1.1rem;
    background: #FFF7F3;
    border: 1px solid rgba(184,58,29,0.18);
    border-radius: 10px;
    color: var(--steel-2);
    line-height: 1.55;
    font-size: 1.05rem;
  }
  .assistant-panel .assistant-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
  }
  .assistant-panel .assistant-controls button {
    min-height: 3.25rem;
    justify-content: flex-start;
    text-align: left;
    border-radius: 8px;
    padding: 0.68rem 0.8rem;
    white-space: normal;
  }
  .assistant-panel .assistant-controls .btn-light {
    background: var(--brand-green-button);
    color: var(--white);
    border-color: var(--brand-green-button);
  }
  .assistant-panel .assistant-controls .btn-outline {
    background: var(--white);
    color: var(--steel);
    border-color: rgba(1,35,82,0.20);
  }
  .assistant-panel .assistant-controls button:hover,
  .assistant-panel .assistant-controls button:focus {
    background: var(--edge);
    color: var(--white);
    border-color: var(--edge);
  }
  .assistant-panel .assistant-email {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(1,35,82,0.12);
  }
  .assistant-panel label {
    color: var(--steel);
  }
  .assistant-panel input {
    border-radius: 8px;
    border-color: rgba(1,35,82,0.24);
  }
  .dark-split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
  }
  .dark-split p { color: var(--steel-2); }
  .bg-steel .dark-split p { color: rgba(255,255,255,0.82); }
  .story-box {
    border-left: 1px solid rgba(255,255,255,0.18);
    padding-left: 2rem;
  }
  .story-box blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    color: var(--white);
  }
  .contact-band {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    background:
      radial-gradient(circle at 8% 0%, rgba(0,150,76,0.12), transparent 32%),
      linear-gradient(135deg, var(--white), #F3F8FB);
    border: 1px solid rgba(1,35,82,0.10);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3.2rem);
    box-shadow: var(--shadow-soft);
  }
  .contact-band h2 {
    margin-top: 0;
    color: var(--steel);
  }
  .contact-band p {
    max-width: 62ch;
    margin: 1rem 0 0;
    color: var(--steel-2);
  }
  .contact-band a:not(.btn) {
    color: var(--steel);
    font-family: var(--font-bold);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18rem;
  }
  .contact-band > .btn {
    min-width: 170px;
    min-height: 54px;
    box-shadow: 0 12px 28px rgba(0,122,61,0.22);
  }
  .contact-block {
    background: var(--paper);
    padding: 2rem;
    border-radius: 10px 0 0 10px;
  }
  .contact-form {
    background: var(--steel);
    color: var(--white);
    padding: 2rem;
    border-radius: 0 10px 10px 0;
  }
  .contact-form p,
  .contact-form label {
    color: var(--white);
  }
  label {
    display: block;
    font-family: var(--font-bold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  input, textarea {
    width: 100%;
    min-height: 3.2rem;
    border: 1px solid #707070;
    background: var(--white);
    color: #000;
    padding: 0.95rem;
    margin-bottom: 1rem;
    border-radius: 0;
  }
  textarea { min-height: 8rem; resize: vertical; }
  .assistant-box {
    border: 1px solid rgba(255,255,255,0.14);
    background: var(--steel);
    padding: 1.25rem;
    border-radius: 10px;
  }
  .assistant-output {
    min-height: 5.25rem;
    padding: 1rem;
    background: var(--steel-3);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
    border-radius: 5px;
  }
  .assistant-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 0.8rem;
  }
  .assistant-controls button {
    min-height: 3.2rem;
    border: 1px solid rgba(255,255,255,0.16);
    background: var(--white);
    color: var(--steel);
    border-radius: 5px;
    font-family: var(--font-bold);
    font-weight: 700;
    padding: 0.55rem 0.75rem;
    text-align: left;
    cursor: pointer;
  }
  .assistant-controls button:hover,
  .assistant-controls button:focus {
    background: var(--edge);
    color: var(--white);
    border-color: var(--edge);
  }
  .assistant-email {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .assistant-email.visible { display: block; }
  .chatbot-bubble {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 95;
    width: min(430px, calc(100vw - 2rem));
    background: linear-gradient(135deg, var(--brand-orange) 0%, #8F2E19 100%);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 24px 70px rgba(84,26,10,0.34);
    border-radius: 10px;
    overflow: hidden;
    isolation: isolate;
  }
  .chatbot-bubble.expanded {
    width: min(760px, calc(100vw - 2rem));
  }
  .chatbot-bubble:not(.expanded) .chatbot-controls button:nth-child(n+3) {
    display: none;
  }
  .chatbot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }
  .chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
  }
  .chatbot-mark {
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    color: #001B44;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    flex: 0 0 auto;
  }
  .chatbot-title strong { display: block; color: var(--white); }
  .chatbot-title span {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
  }
  .chatbot-title .chatbot-mark {
    color: var(--steel);
    font-size: 0.72rem;
  }
  .chatbot-actions {
    display: flex;
    gap: 0.35rem;
  }
  .chatbot-actions button {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 1.25rem;
  }
  .chatbot-body { padding: 1rem; }
  .chatbot-bubble.minimized .chatbot-body { display: none; }
  .chatbot-output {
    padding: 0.9rem;
    min-height: 4.6rem;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #0B1728;
    line-height: 1.6;
    border-radius: 5px;
  }
  .chatbot-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    margin-top: 0.7rem;
  }
  .chatbot-controls button {
    min-height: 2.9rem;
    border: 2px solid #FFFFFF;
    background: #FFFFFF;
    color: #08224A;
    padding: 0.7rem;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    font-family: var(--font-bold);
    font-weight: 700;
  }
  .chatbot-controls button:hover,
  .chatbot-controls button:focus {
    background: #001B44;
    color: var(--white);
    border-color: #001B44;
  }
  .chatbot-email {
    display: none;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .chatbot-email.visible { display: block; }
  footer {
    background: var(--steel-2);
    color: rgba(255,255,255,0.68);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  footer h2, footer h3 { color: var(--white); margin-top: 0; }
  .footer-logo {
    width: min(260px, 100%);
    background: var(--white);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  footer a {
    display: block;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    margin-bottom: 0.65rem;
    font-family: var(--font-bold);
  }
  footer a:hover,
  footer a:focus { color: var(--white); text-decoration: underline; }
  .footer-bottom {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
  }

  @media (max-width: 980px) {
    .nav {
      height: 80px;
      inset: 0 0 auto 0;
    }
    .nav-links,
    .nav-action { display: none; }
    .menu-btn { display: grid; }
    .hero {
      padding-top: 80px;
      background:
        linear-gradient(90deg, rgba(1,18,44,0.82) 0%, rgba(1,28,64,0.66) 58%, rgba(1,35,82,0.34) 100%),
        linear-gradient(180deg, rgba(1,18,44,0.22) 0%, rgba(1,18,44,0.34) 100%),
        url("/assets/img/NFBHero.png") center / cover no-repeat;
    }
    .page-hero { padding-top: 80px; min-height: 64svh; }
    .page-hero-inner {
      min-height: calc(64svh - 80px);
      padding: 64px 0;
    }
    .hero-content {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 72px 0;
    }
    .hero h1 { font-size: clamp(2.7rem, 11vw, 4.5rem); }
    .section-head,
    .dark-split,
    .contact-band,
    .page-grid,
    .cta-band,
    .mock-grid { grid-template-columns: 1fr; }
    .nfbtx-grid { grid-template-columns: 1fr 1fr; }
    .national-grid { grid-template-columns: 1fr; }
    .directory-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .info-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .brand-logo { width: min(220px, 62vw); }
    .hero h1 { font-size: 2.75rem; }
    .page-hero h1 { font-size: 2.55rem; }
    .hero-actions .btn { width: 100%; }
    .cta-band { padding: 2rem; }
    .section, .section-lg { padding: 76px 0; }
    .nfbtx-grid, .national-grid, .footer-grid { grid-template-columns: 1fr; }
    .directory-grid { grid-template-columns: 1fr; }
    .page-list { columns: 1; }
    .resource-card { min-height: 220px; }
    .assistant-controls,
    .assistant-panel .assistant-controls { grid-template-columns: 1fr; }
    .chatbot-bubble {
      right: 0.75rem;
      bottom: 0.75rem;
      width: calc(100vw - 1.5rem);
      max-height: 42svh;
      overflow: auto;
    }
    .chatbot-bubble.expanded {
      max-height: 78svh;
    }
    .chatbot-controls { grid-template-columns: 1fr; }
  }
  /* National community section: featured item + stacked links */
  .national-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: start;
  }
  .featured-resource {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,253,0.96));
    padding: 2rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(1,35,82,0.10);
  }
  .featured-resource iconify-icon {
    color: var(--edge);
    font-size: 2.4rem;
  }
  .featured-resource h3 {
    margin: 1rem 0 0.65rem;
    color: var(--steel-2);
    font-size: 1.75rem;
  }
  .featured-resource p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--steel-2);
  }
  .featured-resource a {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.55rem 1.1rem;
    background: var(--brand-green-button);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 140ms ease, transform 100ms ease-out;
  }
  .featured-resource a:hover { background: var(--brand-green-dark); }
  .featured-resource a:active { transform: scale(0.97); }
  .resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
  }
  .resource-link {
    display: grid;
    grid-template-columns: 2rem 1fr 1.5rem;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,253,0.96));
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(1,35,82,0.10);
    text-decoration: none;
    color: var(--steel-2);
    transition: box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1), transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
    flex: 1;
  }
  .resource-link iconify-icon:first-child {
    color: var(--edge);
    font-size: 1.5rem;
  }
  .resource-link iconify-icon:last-child {
    color: var(--mute-2);
    font-size: 1.1rem;
    justify-self: end;
  }
  .resource-link strong {
    display: block;
    color: var(--steel);
    font-family: var(--font-bold);
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .resource-link span {
    display: block;
    font-size: 0.88rem;
    color: var(--mute);
    line-height: 1.4;
  }
  @media (hover: hover) and (pointer: fine) {
    .resource-link:hover {
      box-shadow: 0 12px 30px rgba(1,35,82,0.13);
      transform: translateY(-2px);
    }
  }
  /* Mission statement block in steel section */
  .mission-block {
    max-width: 800px;
  }
  .mission-block h2 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    margin: 0 0 1.25rem;
  }
  .mission-block p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    max-width: 62ch;
    margin: 0;
  }

  /* Hero eyebrow: use rust/orange dash to anchor brand accent above the fold */
  .hero .eyebrow::before {
    background: var(--edge);
  }

  /* Eyebrow on dark steel sections */
  .bg-steel .eyebrow {
    color: rgba(255,255,255,0.72);
  }

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