/* --- Reset --- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Cormorant Garamond', Georgia, serif;
      color: #1a1a2e;
      background: #FFF8F0;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #8B2942; text-decoration: none; }
    a:hover { color: #D4AF37; text-decoration: none; }

    /* --- Typography --- */
    h1, h2, h3, h4 {
      font-family: 'Cinzel', Georgia, serif;
      color: #1a1a2e;
      line-height: 1.2;
      letter-spacing: 0.02em;
    }
    h1 { font-size: 2.75rem; font-weight: 700; margin-bottom: 1rem; }
    h2 { font-size: 1.85rem; font-weight: 600; margin-bottom: 0.75rem; }
    h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
    h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
    p { margin-bottom: 1rem; font-size: 1.05rem; }

    /* --- Layout --- */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .section {
      padding: 4rem 0;
    }
    .section-alt {
      padding: 4rem 0;
      background: #FFFFFF;
    }

    /* --- Navigation --- */
    .site-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background: #1a1a2e;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .site-nav .brand {
      font-family: 'Cinzel', Georgia, serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: #D4AF37;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .site-nav .brand:hover {
      color: #FFF8F0;
    }
    .site-nav .brand .brand-logo {
      height: 36px;
      width: auto;
      display: inline-block;
      vertical-align: middle;
    }
    .site-nav .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
    }
    .site-nav .nav-links a {
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: #FFF8F0;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .site-nav .nav-links a:hover,
    .site-nav .nav-links a.active {
      color: #D4AF37;
    }

    /* Hamburger toggle — hidden on desktop */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.25rem;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #FFF8F0;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* --- Cards --- */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.75rem;
    }
    .card {
      background: #FFFFFF;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid transparent;
      box-shadow: 0 2px 8px rgba(26,26,46,0.06);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    }
    .card:hover {
      border-color: #D4AF37;
      box-shadow: 0 6px 20px rgba(212,175,55,0.12);
      transform: translateY(-3px);
    }
    .card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .card-body {
      padding: 1.25rem 1.25rem 1.5rem;
    }
    .card-body h3 {
      font-size: 1.2rem;
      line-height: 1.3;
      margin-bottom: 0.4rem;
    }
    .card-meta {
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.88rem;
      color: #64748B;
      margin-bottom: 0.5rem;
      line-height: 1.5;
    }
    .card-actions {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(212,175,55,0.12);
    }
    .card-actions .btn {
      font-size: 0.9rem;
      padding: 0.6rem 1.5rem;
    }
    .card a.card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .card a.card-link:hover {
      color: inherit;
    }
    .card-body h3 a {
      color: inherit;
      text-decoration: none;
    }
    .card-body h3 a:hover {
      color: #8B2942;
    }

    /* --- Map --- */
    .map-embed {
      margin-top: 1.5rem;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(212,175,55,0.15);
    }
    .map-embed iframe {
      width: 100%;
      height: 280px;
      border: 0;
      display: block;
    }
    .map-directions {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.75rem;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.85rem;
      color: #8B2942;
    }
    .map-directions:hover {
      color: #a03050;
    }

    /* --- Buttons --- */
    .btn {
      display: inline-block;
      padding: 0.75rem 1.75rem;
      border-radius: 6px;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      min-height: 44px;
      min-width: 44px;
      border: none;
    }
    .btn:hover {
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .btn-primary {
      background: #8B2942;
      color: #FFFFFF;
    }
    .btn-primary:hover {
      background: #a03050;
    }
    .btn-secondary {
      background: transparent;
      color: #8B2942;
      border: 2px solid #8B2942;
    }
    .btn-secondary:hover {
      background: #8B2942;
      color: #FFFFFF;
    }
    .btn-gold {
      background: #D4AF37;
      color: #1a1a2e;
    }
    .btn-gold:hover {
      background: #c9a030;
    }
    .btn-copy {
      background: #D4AF37;
      color: #1a1a2e;
      border: none;
      padding: 0.4rem 0.75rem;
      border-radius: 4px;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: pointer;
      min-height: 32px;
      transition: background 0.15s, transform 0.1s;
    }
    .btn-copy:hover {
      background: #c9a030;
      transform: translateY(-1px);
    }
    .btn-copy:active {
      transform: translateY(0);
    }
    .btn-copy.copied {
      background: #2a8a4a;
      color: #fff;
    }

    /* --- Badges / Pills --- */
    .badge {
      display: inline-block;
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border: 1px solid #D4AF37;
    }
    .badge-reg { background: transparent; color: #8FAE8B; border-color: #8FAE8B; }
    .badge-soc { background: transparent; color: #8B2942; border-color: #8B2942; }
    .badge-wrk { background: transparent; color: #6366F1; border-color: #6366F1; }
    .badge-shc { background: transparent; color: #B8860B; border-color: #B8860B; }
    .badge-frm { background: transparent; color: #1a1a2e; border-color: #1a1a2e; }
    .badge-status {
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    /* --- Hero --- */
    .hero {
      text-align: center;
      padding: 5rem 1.5rem 4rem;
      background: #1a1a2e;
      color: #FFF8F0;
    }
    .hero h1 {
      max-width: 750px;
      margin: 0 auto 1rem;
      color: #FFF8F0;
      font-size: 3rem;
    }
    .hero p {
      max-width: 620px;
      margin: 0 auto 2rem;
      font-size: 1.15rem;
      color: #D4A5A5;
    }
    .hero .btn {
      margin: 0.5rem;
    }

    /* --- Featured Hero (events) --- */
    .featured-hero {
      background: #1a1a2e;
      color: #FFF8F0;
      padding: 4rem 1.5rem;
    }
    .featured-hero .container {
      display: flex;
      align-items: center;
      gap: 3rem;
    }
    .featured-hero-img {
      flex: 0 0 45%;
      border-radius: 12px;
      overflow: hidden;
    }
    .featured-hero-img img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .featured-hero-content {
      flex: 1;
    }
    .featured-hero-content h1 {
      color: #FFF8F0;
      margin-bottom: 0.5rem;
    }
    .featured-hero-content .tagline {
      color: #D4A5A5;
      font-size: 1.15rem;
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .featured-hero-content .meta {
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.9rem;
      color: rgba(255,248,240,0.7);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    /* --- Social Proof Bar --- */
    .social-proof {
      background: #FFFFFF;
      border-bottom: 1px solid rgba(212,175,55,0.2);
      padding: 1rem 0;
      text-align: center;
    }
    .social-proof .container {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .social-proof-stat {
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.85rem;
      color: #64748B;
      letter-spacing: 0.02em;
    }
    .social-proof-stat strong {
      color: #8B2942;
    }

    /* --- Forms --- */
    .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;
    }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      padding: 0.75rem 1rem;
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 6px;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: #8B2942;
      box-shadow: 0 0 0 3px rgba(139,41,66,0.1);
    }
    .form-field select {
      background: white;
    }
    .form-field textarea {
      resize: vertical;
    }
    .form-status {
      padding: 0.75rem;
      border-radius: 6px;
      text-align: center;
      font-size: 0.9rem;
    }
    .form-status[data-state="success"] {
      background: rgba(45,90,39,0.1);
      color: #2D5A27;
    }
    .form-status[data-state="error"] {
      background: rgba(180,40,40,0.1);
      color: #8B2942;
    }
    .form-privacy {
      font-size: 0.75rem;
      color: #64748B;
      text-align: center;
      margin-top: 0.25rem;
    }
    .form-hp {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0;
      width: 0;
      overflow: hidden;
      tab-index: -1;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    /* --- Email Capture --- */
    .email-capture {
      background: #1a1a2e;
      color: #FFF8F0;
      padding: 3.5rem 1.5rem;
      text-align: center;
    }
    .email-capture h2 {
      color: #FFF8F0;
      margin-bottom: 0.5rem;
    }
    .email-capture p {
      color: #D4A5A5;
      margin-bottom: 1.5rem;
    }
    .email-capture-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
      gap: 0.5rem;
    }
    .email-capture-form input {
      flex: 1;
      padding: 0.75rem 1rem;
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 6px;
      background: rgba(255,248,240,0.08);
      color: #FFF8F0;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.9rem;
    }
    .email-capture-form input::placeholder {
      color: rgba(255,248,240,0.7);
    }
    .email-capture-form input:focus {
      outline: none;
      border-color: #D4AF37;
    }

    /* --- Cross-Sell Card --- */
    .cross-sell {
      background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
      border-radius: 12px;
      padding: 2.5rem;
      color: #FFF8F0;
      text-align: center;
      margin: 2rem 0;
    }
    .cross-sell h3 {
      color: #D4AF37;
      margin-bottom: 0.5rem;
    }
    .cross-sell p {
      color: #D4A5A5;
      margin-bottom: 1.5rem;
    }

    /* --- Sticky Mobile CTA --- */
    .sticky-cta {
      display: none;
    }

    /* --- Path Cards (about/community) --- */
    .path-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.75rem;
    }
    .path-card {
      background: #FFFFFF;
      border-radius: 12px;
      padding: 2rem 1.5rem;
      border: 1px solid transparent;
      text-align: center;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .path-card:hover {
      border-color: #D4AF37;
      box-shadow: 0 4px 16px rgba(212,175,55,0.1);
    }
    .path-card h3 {
      color: #8B2942;
      margin-bottom: 0.25rem;
    }
    .path-card .subtitle {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      color: #D4A5A5;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    /* --- Values List --- */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .value-item {
      padding: 1.5rem;
      border-left: 3px solid #D4AF37;
    }
    .value-item h4 {
      color: #8B2942;
      margin-bottom: 0.25rem;
      font-family: 'Cinzel', Georgia, serif;
    }
    .value-item p {
      color: #64748B;
      font-size: 0.95rem;
      margin: 0;
    }

    /* --- Blockquote --- */
    blockquote {
      border-left: 3px solid #D4AF37;
      padding: 1rem 1.5rem;
      margin: 1.5rem 0;
      font-style: italic;
      color: #1a1a2e;
      font-size: 1.1rem;
    }

    /* --- Detail Table (event detail) --- */
    .detail-row {
      display: flex;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(212,175,55,0.15);
    }
    .detail-label {
      min-width: 100px;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 600;
      color: #64748B;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* --- Footer --- */
    .site-footer {
      background: #1a1a2e;
      color: rgba(255,248,240,0.8);
      padding: 3rem 1.5rem 2rem;
      text-align: center;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.85rem;
    }
    .site-footer a {
      color: #D4AF37;
      transition: color 0.2s;
    }
    .site-footer a:hover {
      color: #FFF8F0;
    }
    .footer-brand {
      font-family: 'Cinzel', Georgia, serif;
      font-size: 1.5rem;
      color: #D4AF37;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .footer-brand-logo {
      height: 48px;
      width: auto;
      margin-bottom: 1.5rem;
      display: inline-block;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 1.75rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .footer-secondary {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.8rem;
      opacity: 0.7;
    }
    .footer-divider {
      width: 60px;
      height: 1px;
      background: #D4AF37;
      margin: 1.5rem auto;
      opacity: 0.4;
    }
    .footer-legal {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 0.75rem;
      font-size: 0.75rem;
      opacity: 0.5;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      h1 { font-size: 2rem; }
      h2 { font-size: 1.4rem; }
      .hero { padding: 3.5rem 1rem 3rem; }
      .hero h1 { font-size: 2.2rem; }
      .card-grid { grid-template-columns: 1fr; }
      .path-grid { grid-template-columns: 1fr; }
      .btn { width: 100%; }
      .featured-hero .container {
        flex-direction: column;
        gap: 1.5rem;
      }
      .featured-hero-img { flex: none; width: 100%; }
      .email-capture-form { flex-direction: column; }
      .nav-toggle {
        display: flex;
      }
      .site-nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 0.5rem 2rem 1.25rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      }
      .site-nav .nav-links.open {
        display: flex;
      }
      .site-nav .nav-links a {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 0.9rem;
      }
      .site-nav .nav-links a:last-child {
        border-bottom: none;
      }
      .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #8B2942;
        padding: 0.75rem 1.5rem;
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
        z-index: 99;
        text-align: center;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
      }
      .sticky-cta a {
        font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: #FFFFFF;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }
      body { padding-bottom: 70px; }
    }
    @media (max-width: 600px) {
      .footer-links { flex-direction: column; gap: 0.75rem; }
      .social-proof .container { flex-direction: column; gap: 0.75rem; }
      .card-meta { font-size: 0.95rem; }
      .social-proof-stat { font-size: 0.95rem; }
      .share-btn { min-width: 44px; min-height: 44px; }
    }

    /* ──────────────────────────────────────────────────────────── */
    /* S83-H384 — ASCII art components for MM + CC:Universe         */
    /* CSS-only animations. prefers-reduced-motion: reduce disables */
    /* all motion. ASCII content remains readable when static.      */
    /* ──────────────────────────────────────────────────────────── */
    @keyframes ascii-typewriter {
      from { width: 0; }
      to   { width: 100%; }
    }
    @keyframes ascii-blink {
      0%, 50% { opacity: 1; }
      50.01%, 100% { opacity: 0; }
    }
    @keyframes ascii-fade-in {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .ascii-banner {
      font-family: 'JetBrains Mono', monospace;
      white-space: pre;
      text-align: center;
      line-height: 1.1;
      color: #D4AF37;
      letter-spacing: 0.02em;
      margin: 1rem 0;
      overflow-x: auto;
    }
    .ascii-divider {
      font-family: 'JetBrains Mono', monospace;
      text-align: center;
      color: #D4AF37;
      opacity: 0.6;
      margin: 2rem 0;
      letter-spacing: 0.05em;
      white-space: nowrap;
      overflow: hidden;
    }
    .ascii-box {
      font-family: 'JetBrains Mono', monospace;
      white-space: pre;
      color: #D4AF37;
      background: transparent;
      padding: 0.5rem 0;
      margin: 1rem 0;
      overflow-x: auto;
    }
    .ascii-table {
      font-family: 'JetBrains Mono', monospace;
      white-space: pre;
      color: #1a1a2e;
      background: transparent;
      padding: 0.5rem 0;
      margin: 1rem 0;
      overflow-x: auto;
      font-size: 0.85rem;
      line-height: 1.4;
    }
    .ascii-terminal {
      font-family: 'JetBrains Mono', monospace;
      background: #1a1a2e;
      color: #D4AF37;
      border-left: 4px solid #D4AF37;
      border-radius: 6px;
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
      white-space: pre;
      overflow-x: auto;
      font-size: 0.875rem;
      line-height: 1.55;
    }
    .ascii-terminal .ascii-prompt {
      color: #D4AF37;
      font-weight: bold;
      opacity: 0.9;
    }
    .ascii-terminal .ascii-output {
      color: #D4A5A5;
      opacity: 0.85;
    }
    .ascii-typewriter {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      vertical-align: bottom;
      animation: ascii-typewriter 1.6s steps(40, end);
    }
    .ascii-blink-cursor {
      display: inline-block;
      animation: ascii-blink 0.9s step-end infinite;
      margin-left: 2px;
      font-family: 'JetBrains Mono', monospace;
      font-weight: bold;
    }
    .ascii-fade-in {
      animation: ascii-fade-in 0.6s ease-out backwards;
    }
    .ascii-hero {
      text-align: center;
      padding: 2rem 1rem;
    }
    .ascii-tagline-row {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1rem;
      color: #D4AF37;
      margin-top: 0.75rem;
      min-height: 1.4em;
    }
    @media (prefers-reduced-motion: reduce) {
      .ascii-typewriter,
      .ascii-blink-cursor,
      .ascii-fade-in {
        animation: none !important;
      }
      .ascii-typewriter {
        width: auto;
        white-space: normal;
      }
    }
    @media (max-width: 600px) {
      .ascii-banner,
      .ascii-terminal,
      .ascii-table,
      .ascii-box {
        font-size: 0.75rem;
      }
      .ascii-divider {
        font-size: 0.7rem;
      }
    }

    /* ──────────────────────────────────────────────────────────── */
    /* S83-H385 — CC:Universe APB site banner                       */
    /* Reads from Holdings APB_Active. Renders ABOVE the main nav.  */
    /* Urgency variants: Low / Medium / High / Critical             */
    /* prefers-reduced-motion: reduce disables slide-in animation.  */
    /* ──────────────────────────────────────────────────────────── */
    @keyframes apb-slide-in {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .apb-banner {
      width: 100%;
      padding: 0.65rem 1rem;
      font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.92rem;
      line-height: 1.4;
      text-align: center;
      animation: apb-slide-in 0.4s ease-out;
      box-shadow: 0 1px 2px rgba(0,0,0,0.08);
      z-index: 50;
    }
    .apb-banner-low {
      background: #FFF8F0;
      color: #1a1a2e;
      border-bottom: 1px solid #64748B40;
    }
    .apb-banner-medium {
      background: #D4AF37;
      color: #1a1a2e;
      border-bottom: 1px solid #8B294260;
    }
    .apb-banner-high {
      background: #8B2942;
      color: #FFF8F0;
      border-bottom: 1px solid #D4AF37;
    }
    .apb-banner-critical {
      background: #1a1a2e;
      color: #D4AF37;
      border-bottom: 2px solid #D4AF37;
    }
    .apb-banner-content {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: baseline;
      gap: 0.6rem;
    }
    .apb-banner-icon {
      font-size: 1.05rem;
      flex-shrink: 0;
    }
    .apb-banner-title {
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .apb-banner-body {
      opacity: 0.92;
    }
    @media (prefers-reduced-motion: reduce) {
      .apb-banner { animation: none !important; }
    }
    @media (max-width: 600px) {
      .apb-banner { font-size: 0.85rem; padding: 0.55rem 0.75rem; }
      .apb-banner-content { gap: 0.4rem; }
    }