@font-face {
    font-family: "Optima";
    font-weight: 700;
    font-style: normal;
    src: url(optima-bold.woff2) format("woff2");
  }

  @font-face {
    font-family: "Roboto Condensed";
    font-weight: 100 900;
    font-style: normal;
    src: url(roboto-condensed.woff2) format("woff2");
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: "Roboto Condensed", "Roboto Narrow", Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff url(bg-stripes.gif) repeat;
    padding: 20px;
  }

  .page {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #333;
    background: #fff;
  }

  .optima {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ---------- Top links ---------- */
  .top-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding: 12px 0 5px;
  }
  .top-links a {
    color: #0099ff;
    text-decoration: none;
    font-size: 14px;
  }
  .top-links a:hover { text-decoration: underline; }
  .top-links a::before {
    content: "\276F";  /* heavy right caret */
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }

  /* ---------- Header / logo ---------- */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 5px 0 12px;
    border-bottom: 1px solid #ccc;
  }

  .main-nav {
    display: flex;
    gap: 28px;
  }
  .main-nav a {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: #243856;
    text-decoration: none;
  }
  .main-nav a:hover { color: #0099ff; }
  .main-nav a::after {
    content: "\276F";  /* heavy caret, rotated to point down */
    display: inline-block;
    transform: rotate(90deg);
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-left: 7px;
    vertical-align: 1px;
  }

  .logo { height: 45px; width: auto; display: block; }

  /* ---------- Hero video ---------- */
  .hero-video {
    position: relative;
    margin-top: 12px;
    width: 100%;
    aspect-ratio: 21 / 9;
    background: linear-gradient(135deg, #2e4568 0%, #243856 45%, #16233a 100%);
    overflow: hidden;
  }
  .hero-video .play-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border: 2px solid rgba(255,255,255,0.65);
    border-radius: 50%;
  }
  .hero-video .play-hint::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 13px 0 13px 22px;
    border-color: transparent transparent transparent rgba(255,255,255,0.65);
  }
  .hero-video h1 {
    position: absolute;
    left: 28px;
    bottom: 22px;
    margin: 0;
    text-align: left;
    color: #fff;
    font-size: 26px;
    line-height: 1.3;
  }

  /* ---------- TOC banner ---------- */
  html { scroll-behavior: smooth; }
  .toc-banner {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 10px 16px;
    margin-top: 12px;
  }
  .toc-links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 32px;
  }
  .toc-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #243856;
    cursor: pointer;
  }
  .toc-toggle::after {
    content: "\276F";
    display: inline-block;
    transform: rotate(90deg);
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-left: 7px;
    transition: transform 0.2s ease;
  }
  .toc-banner.collapsed .toc-links { display: none; }
  .toc-banner.collapsed .toc-toggle { display: block; }
  .toc-banner.collapsed.open .toc-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
  }
  .toc-banner.collapsed.open .toc-toggle::after { transform: rotate(270deg); }
  .toc-banner a {
    color: #243856;
    text-decoration: none;
    font-size: 14px;
  }
  .toc-banner a:hover { color: #0099ff; text-decoration: underline; }
  .toc-banner a::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }

  /* ---------- Content ---------- */
  main { padding: 36px 0; }

  h1 {
    font-size: 26px;
    color: #243856;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 20px;
    color: #243856;
    margin: 0 0 12px;
  }

  p { margin-bottom: 12px; }

  .main-cols {
    display: flex;
    gap: 28px;
  }
  .main-cols .copy { flex: 1; }

  .quick-links {
    width: 280px;
    flex: none;
    border-left: 1px solid #ccc;
    padding-left: 28px;
  }
  .quick-links a {
    display: block;
    color: #0099ff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
  }
  .quick-links a:hover { text-decoration: underline; }
  .quick-links a::before {
    content: "\276F";  /* heavy right caret */
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }

  .btn-access {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
  }
  .btn-access::after {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-left: 7px;
  }
  .btn-access:hover {
    box-shadow: inset 1px 2px 4px rgba(0,0,0,0.18);
    transform: translateY(1px);
  }

  .strategy {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
    min-height: 140px;
  }
  .strategy img, .strategy .thumb {
    width: 140px;
    height: auto;
    align-self: stretch;
    flex: none;
    background: linear-gradient(135deg, #2e4568, #16233a);
    border: 1px solid #ccc;
    object-fit: cover;
  }
  .strategy h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 16px;
    color: #243856;
    margin-bottom: 6px;
  }
  .strategy p { margin-bottom: 10px; }
  .strategy .btn-access { margin-top: 0; }

  .carousel {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
  }
  .carousel .card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
  }
  .section-head h2 { margin: 0; }
  .carousel-nav { display: flex; gap: 8px; }
  .carousel-btn {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #ccc;
    color: #ff9900;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    line-height: 1;
  }
  .carousel-btn:hover { box-shadow: inset 1px 2px 4px rgba(0,0,0,0.18); }
  .card {
    border: 1px solid #ccc;
    background: #fff;
  }
  .card .photo {
    height: 130px;
    background: linear-gradient(135deg, #2e4568, #16233a);
    border-bottom: 1px solid #ccc;
  }
  .card .card-body { padding: 12px 14px 14px; }
  .card h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: #243856;
    margin-bottom: 2px;
  }
  .card .location {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
  }
  .card .attrs { border-top: 1px solid #eee; }
  .card .attr {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
  }
  .card .attr .label { color: #777; }
  .card .attr .value { font-weight: 700; color: #243856; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .why-card.featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
  }
  .why-card.featured h3 { font-size: 16px; }
  .why-card.featured .chart { flex: 1; margin-top: 12px; min-height: 180px; }
  .why-card.featured .chart svg { width: 100%; height: 100%; display: block; }
  .why-card {
    border: 1px solid #ccc;
    background: #fff;
    padding: 16px 18px;
  }
  .why-card h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: #243856;
    margin-bottom: 8px;
  }
  .why-card p { margin: 0; }

  .faq-section {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin-top: 20px;
  }
  .faq-media {
    width: 360px;
    flex: none;
    display: flex;
    flex-direction: column;
  }
  .faq-image {
    width: 100%;
    flex: 1;
    min-height: 320px;
    background: linear-gradient(135deg, #2e4568, #16233a);
    border: 1px solid #ccc;
  }
  .faq-caption {
    margin-top: 6px;
    font-size: 12px;
    font-style: italic;
    color: #aaa;
  }
  .faq-body {
    flex: 1;
    border-left: 1px solid #ccc;
    padding-left: 28px;
  }
  .faq-body > p { margin-bottom: 14px; }
  .faq-item {
    border-bottom: 1px solid #eee;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 9px 0;
    font-weight: 700;
    color: #243856;
    font-size: 14px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 8px;
    transition: transform 0.2s ease;
  }
  .faq-item[open] summary::before { transform: rotate(90deg); }
  .faq-item .answer { padding: 0 0 12px 22px; color: #555; }

  .divider {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 28px 0 0;
  }
  .divider-light {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0 0;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 36px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 20px;
    height: 3px;
    background: #243856;
  }
  .hamburger:hover { box-shadow: inset 1px 2px 4px rgba(0,0,0,0.18); }

  .mobile-menu {
    display: none;
    background: #243856;
    padding: 18px 22px;
    margin-top: 10px;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 16px;
    padding: 10px 0;
  }
  .mobile-menu a:hover { color: #0099ff; }
  .mobile-menu .menu-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin: 10px 0;
  }
  .mobile-menu a.secondary {
    font-family: "Roboto Condensed", "Roboto Narrow", Roboto, Arial, sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    padding: 7px 0;
  }
  .mobile-menu a.secondary::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }



  .explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 24px;
    margin-top: 16px;
  }
  .explore-grid a {
    color: #0099ff;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    display: block;
  }
  .explore-grid a:hover { text-decoration: underline; }
  .explore-grid a::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }

  .disclosures {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 16px 18px;
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.55;
    color: #777;
  }
  .disclosures p { margin-bottom: 8px; }
  .disclosures p:last-child { margin-bottom: 0; }

  footer {
    border-top: 3px solid #ff9900;
    margin: 28px 0 0;
    padding-top: 4px;
  }
  .footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: #243856;
    color: #fff;
    padding: 18px 24px;
    font-size: 13px;
    margin-top: 24px;
  }
  .footer-bar .optima { font-size: 14px; letter-spacing: 0.14em; }
  .footer-bar .contact { text-align: right; }
  .footer-bar a { color: #fff; text-decoration: none; }
  .footer-bar a:hover { text-decoration: underline; }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .carousel .card { flex: 0 0 calc((100% - 20px) / 2); }
    .why-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .why-card.featured { grid-column: 1 / 3; grid-row: auto; }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 820px) {
    .main-cols { flex-direction: column; }
    .quick-links {
      width: 100%;
      border-left: 0;
      border-top: 1px solid #ccc;
      padding-left: 0;
      padding-top: 16px;
    }
    .faq-section { flex-direction: column; }
    .faq-media { width: 100%; }
    .faq-image { min-height: 180px; }
    .faq-body { border-left: 0; padding-left: 0; }
  }
  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav { display: none; }
    .top-links { display: none; }
  }
  @media (min-width: 769px) {
    .mobile-menu { display: none !important; }
  }
  @media (max-width: 640px) {
    body { padding: 20px 10px; }
    .faq-media { display: none; }
    .hero-video { aspect-ratio: 16 / 9; }
    .hero-video h1 { font-size: 18px; left: 16px; bottom: 14px; }
    .carousel .card { flex: 0 0 100%; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card.featured { grid-column: auto; }
    .strategy { flex-direction: column; }
    .strategy img, .strategy .thumb { width: 100%; height: 160px; align-self: auto; }
    .explore-grid { grid-template-columns: 1fr; }
    .logo-text-wrap, .top-links { gap: 12px; }
  }
  /* ---------- Offering page hero ---------- */
  .breadcrumbs {
    font-size: 12px;
    color: #777;
    margin-top: 14px;
  }
  .breadcrumbs a { color: #0099ff; text-decoration: none; }
  .breadcrumbs a:hover { text-decoration: underline; }
  .breadcrumbs .sep {
    color: #ff9900;
    font-weight: 900;
    font-size: 10px;
    margin: 0 6px;
    display: inline-block;
  }
  .offering-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #2e4568 0%, #243856 55%, #16233a 100%);
    padding: 20px 28px;
    margin-top: 12px;
  }
  .offering-hero h1 {
    color: #fff;
    font-size: 26px;
    text-align: right;
    margin: 0 0 0 auto;
    line-height: 1.3;
  }
  @media (max-width: 640px) {
    .offering-hero { padding: 14px 18px; }
    .offering-hero h1 { font-size: 19px; }
  }
  .offering-layout {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin-top: 20px;
  }
  .sidebar {
    width: 280px;
    flex: none;
    border-right: 1px solid #ccc;
    padding-right: 28px;
  }
  .sidebar a {
    display: block;
    color: #0099ff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  .sidebar a:hover { color: #0099ff; }
  .sidebar a::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 8px;
  }
  .offering-image {
    flex: 1;
    min-height: 380px;
    background: linear-gradient(135deg, #2e4568, #16233a);
    border: 1px solid #ccc;
  }
  @media (max-width: 820px) {
    .offering-layout { flex-direction: column; }
    .sidebar {
      width: 100%;
      border-right: 0;
      padding-right: 0;
    }
    .offering-image { min-height: 220px; }
  }
  .offering-main { flex: 1; min-width: 0; }
  .offering-main .offering-image { min-height: 380px; }
  .offering-main h2 { margin-top: 40px; }
  .offering-main ul {
    margin: 0 0 12px;
    padding-left: 0;
    list-style: none;
  }
  .offering-main li { margin-bottom: 6px; padding-left: 20px; position: relative; }
  .offering-main li::before {
    content: "\276F";
    position: absolute;
    left: 0;
    top: 1px;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
  }

  .sidebar h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: #243856;
    margin-bottom: 4px;
  }
  .sidebar .facts { margin-top: 40px; }
  .sidebar .fact {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
  }
  .sidebar .fact .label { color: #777; }
  .sidebar .fact .value { font-weight: 700; color: #243856; text-align: right; }
  /* ---- data-driven offering extras ---- */
  .yield-scroll { overflow-x: auto; }
  .yield-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
    margin-top: 8px;
  }
  .yield-table th, .yield-table td {
    border: 1px solid #eee;
    padding: 6px 8px;
    text-align: center;
    white-space: nowrap;
  }
  .yield-table th { background: #f5f5f5; color: #243856; font-weight: 700; }
  .yield-summary { margin-top: 10px; font-size: 13px; color: #555; }
  .yield-summary strong { color: #243856; }

  .bm-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
    margin-top: 8px;
  }
  .bm-table th, .bm-table td { border: 1px solid #eee; padding: 6px 10px; text-align: left; }
  .bm-table th { background: #f5f5f5; color: #243856; }
  .bm-good { color: #1a7f37; font-weight: 700; }
  .bm-bad { color: #b35900; font-weight: 700; }

  .sponsor-panel { display: flex; gap: 20px; align-items: flex-start; margin-top: 8px; }
  .sponsor-logo { width: 100px; height: 100px; flex: none; border: 1px solid #eee; object-fit: contain; background: #fff; }
  .sponsor-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 18px;
    margin: 12px 0;
  }
  .sponsor-stat .num { font-weight: 700; color: #243856; font-size: 16px; }
  .sponsor-stat .lbl { font-size: 12px; color: #777; }
  @media (max-width: 640px) {
    .sponsor-panel { flex-direction: column; }
    .sponsor-stats { grid-template-columns: repeat(2, 1fr); }
  }

  .subhead {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: #243856;
    margin: 18px 0 6px;
  }
  .doc-note { font-size: 13px; font-style: italic; color: #777; margin: 4px 0 8px; }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
  .status-line { font-size: 13px; color: #777; margin-top: 8px; }
  .status-line .avail { color: #1a7f37; font-weight: 700; }
  .footnotes {
    margin-top: 28px;
    font-size: 12px;
    line-height: 1.55;
    color: #777;
  }
  .footnotes p { margin-bottom: 6px; }
  .footnotes p:last-child { margin-bottom: 0; }
  .footnotes sup { color: #243856; font-weight: 700; }
  .bookmark-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    font-size: 13px;
    padding: 7px 14px;
    cursor: pointer;
  }
  .bookmark-btn .star { color: #ff9900; font-size: 15px; line-height: 1; }
  .bookmark-btn:hover { background: rgba(255,255,255,0.08); }
  .bookmark-btn.saved { border-color: #ff9900; }
  /* ---------- Directory table ---------- */
  .dir-table-wrap { overflow-x: auto; margin-top: 20px; }
  .dir-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 13px;
  }
  .dir-table th, .dir-table td {
    border: 1px solid #eee;
    padding: 10px 12px;
    text-align: center;
    white-space: nowrap;
  }
  .dir-table th {
    background: #f5f5f5;
    color: #243856;
    font-weight: 700;
  }
  .dir-table th.sortable { cursor: pointer; user-select: none; }
  .dir-table th.sortable:hover { background: #ededed; }
  .dir-table th .arrow { color: #ff9900; font-size: 10px; margin-left: 5px; }
  .dir-table td:first-child, .dir-table th:first-child { text-align: left; white-space: normal; }
  .dir-table tr:nth-child(even) td { background: #fafafa; }
  .dir-table a.inv-name { color: #0099ff; text-decoration: none; font-weight: 700; }
  .dir-table a.inv-name:hover { text-decoration: underline; }
  .dir-table .sub { display: block; font-weight: 400; color: #777; font-size: 12px; margin-top: 2px; }
  .dir-table .btn-access { margin-top: 0; padding: 4px 10px; font-size: 13px; }
  .status-available { color: #1a7f37; font-weight: 700; }

  .mobile-sort { display: none; margin-top: 16px; }
  .mobile-sort label { font-size: 13px; color: #777; margin-right: 8px; }
  .mobile-sort select {
    font: inherit;
    font-size: 13px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    background: #fff;
    color: #243856;
  }

  @media (max-width: 768px) {
    .dir-table-wrap { overflow-x: visible; }
    .mobile-sort { display: block; }
    .dir-table { border: 0; }
    .dir-table thead { display: none; }
    .dir-table, .dir-table tbody, .dir-table tr, .dir-table td { display: block; width: 100%; }
    .dir-table tr {
      border: 1px solid #ccc;
      margin-top: 14px;
      background: #fff;
    }
    .dir-table tr:nth-child(even) td { background: #fff; }
    .dir-table td {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      border: 0;
      border-bottom: 1px solid #eee;
      padding: 8px 12px;
      text-align: right;
      white-space: normal;
    }
    .dir-table td::before {
      content: attr(data-label);
      color: #777;
      font-size: 12px;
      text-align: left;
      flex: none;
    }
    .dir-table td:first-child {
      display: block;
      text-align: left;
      background: #f5f5f5 !important;
      padding: 10px 12px;
    }
    .dir-table td:first-child::before { content: none; }
    .dir-table td:last-child { border-bottom: 0; justify-content: flex-end; }
    .dir-table td:last-child::before { content: none; }
    .dir-table td:last-child .btn-access { width: 100%; text-align: center; }
  }

  /* ---------- Preview drawer ---------- */
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 40;
  }
  .drawer-overlay.open { opacity: 1; pointer-events: auto; }
  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 18px rgba(0,0,0,0.25);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
    overflow-y: auto;
  }
  .drawer.open { transform: translateX(0); }
  .drawer-photo {
    height: 200px;
    background: linear-gradient(135deg, #2e4568, #16233a);
    background-size: cover;
    background-position: center;
  }
  .drawer-body { padding: 18px 20px 24px; }
  .drawer h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 16px;
    color: #243856;
    margin-bottom: 4px;
  }
  .drawer .sponsor-line { color: #777; font-size: 13px; margin-bottom: 12px; }
  .drawer .fact {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
  }
  .drawer .fact .label { color: #777; }
  .drawer .fact .value { font-weight: 700; color: #243856; text-align: right; }
  .drawer .desc { margin-top: 12px; font-size: 13px; color: #555; }
  .drawer .btn-access { margin-top: 14px; }
  .drawer-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.92);
    border: 1px solid #ccc;
    color: #243856;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
  }
  .drawer-close:hover { box-shadow: inset 1px 2px 4px rgba(0,0,0,0.18); }
  /* ---------- About page ---------- */
  .tagline {
    font-size: 17px;
    font-weight: 700;
    color: #243856;
    margin: 4px 0 12px;
  }
  .about-section { margin-top: 40px; }
  .about-section p { max-width: none; margin-bottom: 12px; }
  .kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 4px;
  }

  .stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
  }
  .stat-tile {
    border: 1px solid #ccc;
    background: #f5f5f5;
    padding: 16px 18px;
    text-align: center;
  }
  .stat-tile .num {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 24px;
    color: #243856;
  }
  .stat-tile .lbl { font-size: 12px; color: #777; margin-top: 4px; }

  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
  }
  .pillar { border: 1px solid #ccc; background: #fff; padding: 16px 18px; }
  .pillar h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: #243856;
    margin-bottom: 8px;
  }
  .pillar p { margin: 0; }

  .steps { margin-top: 8px; }
  .step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
  }
  .step:last-child { border-bottom: 0; }
  .step .n {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #243856;
    flex: none;
    width: 44px;
  }
  .step h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
    color: #243856;
    margin-bottom: 4px;
  }
  .step p { margin: 0; }

  .principal-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #ccc;
    background: #f5f5f5;
    padding: 18px 20px;
    margin-top: 16px;
  }
  .principal-photo {
    width: 96px;
    height: 96px;
    flex: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e4568, #16233a);
    border: 1px solid #ccc;
  }
  .principal-box .p-name {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 15px;
    color: #243856;
  }
  .principal-box .p-title { font-size: 13px; color: #777; margin: 2px 0 8px; }
  .principal-box p { margin-bottom: 8px; }
  .principal-box a { color: #0099ff; text-decoration: none; }
  .principal-box a:hover { text-decoration: underline; }

  .explore-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 20px;
    margin-top: 16px;
  }
  .explore-card { padding: 10px 0; border-bottom: 1px solid #eee; }
  .explore-card a {
    color: #0099ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
  }
  .explore-card a:hover { text-decoration: underline; }
  .explore-card a::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }
  .explore-card p { margin: 4px 0 0; font-size: 13px; color: #777; }

  .contact-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
  }
  .contact-cell { border: 1px solid #ccc; background: #fff; padding: 16px 18px; }
  .contact-cell h3 {
    font-family: "Optima", Candara, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: #243856;
    margin-bottom: 6px;
  }
  .contact-cell a { color: #0099ff; text-decoration: none; }
  .contact-cell a:hover { text-decoration: underline; }
  .contact-cell .sub { font-size: 12px; color: #777; margin-top: 4px; }

  @media (max-width: 900px) {
    .stat-band, .pillars, .contact-band { grid-template-columns: repeat(2, 1fr); }
    .explore-cards { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .stat-band, .pillars, .contact-band, .explore-cards { grid-template-columns: 1fr; }
    .principal-box { flex-direction: column; }
  }
  .back-link {
    display: inline-block;
    margin-top: 16px;
    color: #999;
    text-decoration: none;
    font-size: 13px;
  }
  .back-link:hover { text-decoration: underline; }
  .back-link::before {
    content: "\276E";
    display: inline-block;
    color: #999;
    font-weight: 900;
    font-size: 12px;
    margin-right: 6px;
  }
  .byline { font-size: 13px; color: #777; margin-top: 14px; }
  .mini-table { border-collapse: collapse; width: 100%; max-width: 640px; font-size: 13px; margin: 10px 0 4px; }
  .mini-table th, .mini-table td { border: 1px solid #eee; padding: 7px 10px; text-align: left; }
  .mini-table th { background: #f5f5f5; color: #243856; }
  .mini-table td:last-child, .mini-table th:last-child { text-align: right; white-space: nowrap; }
  .scenario-note { font-size: 12px; color: #777; font-style: italic; margin-bottom: 8px; }
  .glossary-term { padding: 12px 0; border-bottom: 1px solid #eee; }
  .glossary-term dt { font-weight: 700; color: #243856; margin-bottom: 4px; }
  .glossary-term dt::before {
    content: "\276F";
    display: inline-block;
    color: #ff9900;
    font-weight: 900;
    font-size: 12px;
    margin-right: 8px;
  }
  .glossary-term dd { margin: 0; color: #555; }
  .author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #ccc;
    background: #f5f5f5;
    padding: 18px 20px;
    margin-top: 28px;
  }
  .author-photo {
    width: 88px; height: 88px; flex: none; border-radius: 50%;
    object-fit: cover; object-position: center top; display: block; border: 1px solid #ccc;
  }
  .author-box .a-name {
    font-family: "Optima", Candara, sans-serif; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; font-size: 15px; color: #243856;
  }
  .author-box .a-title { font-size: 13px; color: #777; margin: 2px 0 8px; }
  .author-box p { margin-bottom: 8px; }
  .review-note { font-size: 12px; color: #777; font-style: italic; margin-top: 12px; }
  @media (max-width: 640px) { .author-box { flex-direction: column; } }
