    :root {
      --ink: #102433;
      --muted: #597080;
      --navy-950: #06283d;
      --navy-900: #073550;
      --navy-800: #0b496b;
      --blue-600: #0878a8;
      --cyan-500: #12a7c7;
      --cyan-100: #dff6fb;
      --cyan-50: #effbfe;
      --amber-700: #9a5900;
      --amber-100: #fff0ce;
      --green-700: #167052;
      --green-100: #dff5ec;
      --line: #d6e2e9;
      --surface: #ffffff;
      --surface-soft: #f4f8fa;
      --shadow: 0 22px 60px rgba(5, 40, 61, .14);
      --shadow-soft: 0 10px 30px rgba(5, 40, 61, .08);
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 11px;
      --max: 1120px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(18, 167, 199, .14), transparent 24rem),
        linear-gradient(180deg, #edf7fa 0, #f7fafb 32rem, #f4f8fa 100%);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; }

    button, summary { font: inherit; }

    .skip-link {
      position: fixed;
      z-index: 100;
      top: 12px;
      left: 12px;
      transform: translateY(-150%);
      padding: .7rem 1rem;
      border-radius: 8px;
      color: #fff;
      background: var(--navy-950);
    }

    .skip-link:focus { transform: translateY(0); }

    .page-shell {
      width: min(calc(100% - 32px), var(--max));
      margin-inline: auto;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 34px 0 86px;
      color: #fff;
      background:
        radial-gradient(circle at 88% 22%, rgba(23, 191, 218, .38), transparent 25rem),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -150px;
      height: 240px;
      border-radius: 50%;
      background: #f7fafb;
      transform: rotate(-2deg);
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 64px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .brand-mark {
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 1px solid rgba(255,255,255,.38);
      border-radius: 13px;
      background: rgba(255,255,255,.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
    }

    .brand-mark svg { width: 25px; height: 25px; }

    .document-state {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .52rem .78rem;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 999px;
      color: #dff8ff;
      background: rgba(0,0,0,.13);
      font-size: .84rem;
      font-weight: 750;
    }

    .document-state::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4ce1ba;
      box-shadow: 0 0 0 5px rgba(76,225,186,.12);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
      gap: clamp(34px, 7vw, 86px);
      align-items: end;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: #93e8f5;
      font-size: .78rem;
      font-weight: 850;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    h1, h2, h3 { line-height: 1.16; text-wrap: balance; }

    h1 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(2.35rem, 5.6vw, 5.1rem);
      letter-spacing: -.05em;
    }

    .hero-lead {
      max-width: 710px;
      margin: 22px 0 0;
      color: #d7ebf3;
      font-size: clamp(1.03rem, 1.6vw, 1.23rem);
    }

    .hero-note {
      padding: 22px;
      border: 1px solid rgba(255,255,255,.23);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.09);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
      backdrop-filter: blur(12px);
    }

    .hero-note strong {
      display: block;
      margin-bottom: 5px;
      color: #fff;
      font-size: 1.08rem;
    }

    .hero-note p { margin: 0; color: #d9edf4; font-size: .94rem; }

    main {
      position: relative;
      z-index: 2;
      margin-top: -34px;
      padding-bottom: 70px;
    }

    .meeting-card {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr;
      margin-bottom: 30px;
      overflow: hidden;
      border: 1px solid rgba(207, 222, 230, .9);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .meeting-meta {
      min-height: 154px;
      padding: 25px 27px;
      border-right: 1px solid var(--line);
    }

    .meeting-meta:last-child { border-right: 0; }

    .meta-label {
      display: block;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: .72rem;
      font-weight: 850;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .meta-value {
      display: block;
      color: var(--navy-950);
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      font-weight: 850;
      line-height: 1.25;
    }

    .meta-detail {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.5;
    }

    .notice-banner {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
      margin-bottom: 48px;
      padding: 20px 22px;
      border: 1px solid #b9e3ec;
      border-radius: var(--radius-md);
      background: var(--cyan-50);
      box-shadow: var(--shadow-soft);
    }

    .notice-icon {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 12px;
      color: var(--navy-900);
      background: var(--cyan-100);
      font-weight: 900;
    }

    .notice-banner strong { display: block; color: var(--navy-950); }
    .notice-banner p { margin: 3px 0 0; color: #31596b; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 22px;
    }

    .section-head h2 {
      margin: 0;
      color: var(--navy-950);
      font-size: clamp(1.75rem, 4vw, 2.8rem);
      letter-spacing: -.035em;
    }

    .section-head p {
      max-width: 560px;
      margin: 0;
      color: var(--muted);
    }

    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .tool-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: .65rem .9rem;
      border: 1px solid var(--line);
      border-radius: 10px;
      color: var(--navy-900);
      background: #fff;
      cursor: pointer;
      font-weight: 760;
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .tool-button:hover {
      border-color: #8cbccc;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(5,40,61,.08);
    }

    .tool-button:focus-visible,
    summary:focus-visible {
      outline: 3px solid rgba(18,167,199,.35);
      outline-offset: 3px;
    }

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

    .agenda > li { counter-increment: agenda; }

    .agenda-item,
    details.agenda-item {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
    }

    .agenda-simple,
    details.agenda-item > summary {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      min-height: 96px;
      padding: 18px 22px;
    }

    details.agenda-item > summary {
      cursor: pointer;
      list-style: none;
    }

    details.agenda-item > summary::-webkit-details-marker { display: none; }

    .agenda-number {
      display: grid;
      width: 50px;
      height: 50px;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: linear-gradient(145deg, var(--navy-800), var(--blue-600));
      box-shadow: 0 8px 18px rgba(8,120,168,.2);
      font-weight: 900;
    }

    .agenda-number::before { content: counter(agenda, decimal-leading-zero); }

    .agenda-title { min-width: 0; }

    .agenda-title h3 {
      margin: 0;
      color: var(--navy-950);
      font-size: clamp(1.04rem, 2.1vw, 1.35rem);
      letter-spacing: -.015em;
    }

    .agenda-title p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: .9rem;
    }

    .agenda-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: .5rem .7rem;
      border-radius: 999px;
      font-size: .77rem;
      font-weight: 850;
      line-height: 1.15;
      white-space: nowrap;
    }

    .badge-info { color: var(--navy-900); background: var(--cyan-100); }
    .badge-vote { color: var(--green-700); background: var(--green-100); }
    .badge-time { color: var(--amber-700); background: var(--amber-100); }

    .chevron {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--navy-800);
      transition: transform .2s ease, background .2s ease;
    }

    .chevron svg { width: 17px; height: 17px; }

    details[open] .chevron {
      transform: rotate(180deg);
      background: var(--cyan-50);
    }

    .agenda-content {
      padding: 4px 28px 32px 94px;
      border-top: 1px solid var(--line);
    }

    .agenda-content h4 {
      margin: 28px 0 10px;
      color: var(--navy-900);
      font-size: 1.05rem;
    }

    .agenda-content p { margin: 0 0 12px; }

    .legal-text {
      padding: 20px;
      border-left: 4px solid var(--cyan-500);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      background: var(--surface-soft);
    }

    .legal-text p:last-child { margin-bottom: 0; }

    .resolution-list {
      margin: 14px 0 0;
      padding-left: 1.35rem;
    }

    .resolution-list > li {
      margin: 0 0 16px;
      padding-left: .35rem;
    }

    .resolution-list > li::marker {
      color: var(--blue-600);
      font-weight: 900;
    }

    .resolution-list strong { color: var(--navy-950); }

    .sub-list {
      margin: 9px 0 0;
      padding-left: 1.2rem;
    }

    .sub-list li { margin-bottom: 5px; }

    .vote-panel {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      margin-top: 24px;
      padding: 18px;
      border: 1px solid #f1d08b;
      border-radius: var(--radius-sm);
      background: #fff9ec;
    }

    .vote-panel .vote-symbol {
      display: grid;
      min-width: 38px;
      height: 38px;
      padding: 0 8px;
      place-items: center;
      border-radius: 10px;
      color: var(--amber-700);
      background: var(--amber-100);
      font-weight: 950;
    }

    .vote-panel strong { display: block; color: #714000; }
    .vote-panel p { margin: 3px 0 0; color: #765b2e; font-size: .92rem; }

    .legal-footer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 46px;
    }

    .footer-card {
      padding: 23px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .footer-card h2 {
      margin: 0 0 10px;
      color: var(--navy-950);
      font-size: 1.18rem;
    }

    .footer-card p { margin: 0; color: var(--muted); font-size: .93rem; }

    .page-footer {
      padding: 30px 0 42px;
      color: #506a79;
      text-align: center;
      font-size: .86rem;
    }

    .noscript-message {
      margin: 0 0 18px;
      padding: 12px 14px;
      border-radius: 10px;
      color: #694300;
      background: #fff0ce;
    }

    @media (max-width: 880px) {
      .hero { padding-bottom: 72px; }
      .brand-row { margin-bottom: 48px; }
      .hero-grid { grid-template-columns: 1fr; align-items: start; }
      .hero-note { max-width: 620px; }
      .meeting-card { grid-template-columns: 1fr 1fr; }
      .meeting-meta:first-child { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
      .meeting-meta:nth-child(2) { border-right: 1px solid var(--line); }
      .meeting-meta:nth-child(3) { border-right: 0; }
      .section-head { display: block; }
      .section-head p { margin-top: 10px; }
      .agenda-simple,
      details.agenda-item > summary { grid-template-columns: 50px minmax(0, 1fr); }
      .agenda-actions { grid-column: 2; justify-content: flex-start; }
      .chevron { position: absolute; top: 20px; right: 18px; }
      .agenda-content { padding-left: 28px; }
    }

    @media (max-width: 610px) {
      .page-shell { width: min(calc(100% - 22px), var(--max)); }
      .hero { padding-top: 22px; }
      .brand-row { align-items: flex-start; margin-bottom: 40px; }
      .brand-text span { display: block; }
      .document-state { display: none; }
      h1 { font-size: clamp(2.25rem, 13vw, 3.7rem); }
      .hero-lead { font-size: 1rem; }
      main { margin-top: -28px; }
      .meeting-card { grid-template-columns: 1fr; }
      .meeting-meta,
      .meeting-meta:first-child,
      .meeting-meta:nth-child(2) {
        grid-column: auto;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .meeting-meta:last-child { border-bottom: 0; }
      .notice-banner { grid-template-columns: 1fr; }
      .notice-icon { width: 36px; height: 36px; }
      .agenda-simple,
      details.agenda-item > summary {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        min-height: 88px;
        padding: 16px 15px;
      }
      .agenda-number { width: 42px; height: 42px; border-radius: 12px; }
      .agenda-title h3 { padding-right: 28px; }
      .agenda-actions { grid-column: 1 / -1; justify-content: flex-start; padding-left: 55px; }
      .badge { white-space: normal; }
      .chevron { top: 17px; right: 13px; width: 31px; height: 31px; }
      .agenda-content { padding: 2px 17px 26px; }
      .legal-text { padding: 16px; }
      .vote-panel { grid-template-columns: 1fr; }
      .legal-footer { grid-template-columns: 1fr; }
      .toolbar .tool-button { flex: 1 1 150px; }
    }

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

    @media print {
      @page { size: letter; margin: 15mm; }

      body {
        color: #111;
        background: #fff;
        font-size: 10.5pt;
      }

      .hero {
        padding: 0 0 20px;
        color: #111;
        background: #fff;
      }

      .hero::after,
      .document-state,
      .toolbar,
      .chevron,
      .page-footer { display: none !important; }

      .brand-row { margin-bottom: 22px; }
      .brand-mark { color: #111; border-color: #111; background: #fff; }
      .hero-grid { display: block; }
      .eyebrow, .hero-lead, .hero-note p { color: #333; }
      h1 { color: #111; font-size: 27pt; }
      .hero-note { margin-top: 14px; color: #111; border-color: #bbb; background: #fff; }
      main { margin-top: 0; padding-bottom: 0; }
      .meeting-card, .agenda-item, details.agenda-item, .footer-card {
        break-inside: avoid;
        box-shadow: none;
      }
      .meeting-card { border-color: #aaa; }
      .agenda-content { display: block !important; }
      details:not([open]) > .agenda-content { display: block !important; }
      .agenda-number { color: #111; border: 1px solid #555; background: #fff; box-shadow: none; }
      .badge { border: 1px solid #aaa; color: #111; background: #fff; }
      .notice-banner, .vote-panel, .legal-text { color: #111; background: #fff; box-shadow: none; }
    }

    .closure-card {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 22px;
      align-items: start;
      margin-bottom: 30px;
      padding: clamp(24px, 4vw, 36px);
      overflow: hidden;
      border: 1px solid #b9e4d6;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 100% 0, rgba(76, 225, 186, .18), transparent 18rem),
        linear-gradient(135deg, #f3fcf8, #ffffff);
      box-shadow: var(--shadow);
    }

    .closure-icon {
      display: grid;
      width: 64px;
      height: 64px;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(145deg, #167052, #23a77c);
      box-shadow: 0 12px 28px rgba(22, 112, 82, .22);
      font-size: 1.7rem;
      font-weight: 950;
    }

    .closure-kicker {
      margin: 0 0 6px;
      color: var(--green-700);
      font-size: .76rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .closure-card h2 {
      margin: 0;
      color: var(--navy-950);
      font-size: clamp(1.55rem, 3vw, 2.25rem);
      letter-spacing: -.025em;
    }

    .closure-card p:not(.closure-kicker) {
      max-width: 790px;
      margin: 10px 0 0;
      color: #31596b;
    }

    .closure-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
      align-items: center;
      margin-top: 20px;
    }

    .closed-pill,
    .pdf-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 43px;
      padding: .68rem .92rem;
      border-radius: 999px;
      font-size: .86rem;
      font-weight: 850;
      line-height: 1.2;
      text-decoration: none;
    }

    .closed-pill {
      color: var(--green-700);
      background: var(--green-100);
    }

    .pdf-link {
      border: 1px solid var(--navy-800);
      color: #fff;
      background: var(--navy-800);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .pdf-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 9px 20px rgba(7, 53, 80, .18);
    }

    .pdf-link:focus-visible {
      outline: 3px solid rgba(18, 167, 199, .35);
      outline-offset: 3px;
    }

    .agenda-eyebrow { color: var(--blue-600); }

    @media (max-width: 610px) {
      .closure-card { grid-template-columns: 1fr; gap: 16px; }
      .closure-icon { width: 54px; height: 54px; border-radius: 15px; }
      .closed-pill, .pdf-link { width: 100%; }
    }

    @media print {
      .closure-card {
        display: block;
        padding: 16px;
        border-color: #999;
        background: #fff;
        box-shadow: none;
      }
      .closure-icon { display: none; }
      .closure-card h2, .closure-card p, .closure-kicker { color: #111; }
      .pdf-link { display: none; }
      .closed-pill { color: #111; border: 1px solid #999; background: #fff; }
    }

