/* ─── Variables ──────────────────────────────── */
    :root {
      --azure:        #0078D4;
      --azure-dark:   #005a9e;
      --azure-darker: #003b6f;
      --azure-light:  #50e6ff;
      --azure-bg:     #e8f3fb;
      --text:         #1b1b1b;
      --text-mid:     #444;
      --text-muted:   #6e6e6e;
      --surface:      #ffffff;
      --border:       #dde5ed;
      --bg:           #f4f7fa;
      --shadow:       0 2px 8px rgba(0,0,0,.07);
      --shadow-hover: 0 8px 24px rgba(0,120,212,.14);
      --radius:       8px;
      --radius-lg:    14px;
    }

    /* ─── Reset ──────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    /* ─── Header ─────────────────────────────────── */
    header {
      background: var(--azure-darker);
      color: #fff;
      padding: 0 1.5rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,.25);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 58px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
      text-decoration: none;
      letter-spacing: -.01em;
    }

    .logo-icon { font-size: 1.35rem; line-height: 1; }

    .nav-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: none;
      background: rgba(255,255,255,.12);
      color: #fff;
      border-radius: 10px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 4px 14px rgba(0,0,0,.16);
      transition: background .15s, transform .15s;
    }
    .nav-toggle:hover {
      background: rgba(255,255,255,.2);
      transform: translateY(-1px);
    }
    .nav-toggle:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }
    .nav-toggle-bar {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 10px;
      background: #fff;
      transition: transform .2s, opacity .2s;
    }
    .nav-toggle-bar + .nav-toggle-bar { margin-top: 4px; }

    nav {
      display: flex;
      gap: .35rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a,
    nav button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: rgba(255,255,255,.78);
      text-decoration: none;
      font-size: .84rem;
      font-weight: 600;
      line-height: 1;
      min-height: 32px;
      border: none !important;
      border-radius: 0;
      padding: .42rem .6rem;
      background: transparent !important;
      font-family: inherit;
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      transition: color .15s;
    }
    nav a::after,
    nav button::after {
      content: '';
      position: absolute;
      left: .6rem;
      right: .6rem;
      bottom: .1rem;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .18s ease;
    }
    nav a:hover,
    nav button:hover { color: #fff; }
    nav a:hover::after,
    nav button:hover::after { transform: scaleX(1); }

    .nav-link { color: rgba(255,255,255,.78); }
    .nav-link[aria-current='page'] {
      color: #fff;
      font-weight: 700;
    }
    .nav-link[aria-current='page']::after { transform: scaleX(1); }

    .nav-yt {
      gap: .4rem;
      padding: .42rem .6rem .42rem .4rem;
      color: rgba(255,255,255,.78) !important;
    }
    .nav-yt::after { left: .4rem; right: .6rem; }
    .nav-yt:hover { color: #fff !important; }
    .nav-yt svg { flex-shrink: 0; }

    .nav-lang {
      gap: .4rem;
      padding: .42rem .6rem;
      color: rgba(255,255,255,.78) !important;
      text-decoration: none;
    }
    .nav-lang:hover { color: #fff !important; }

    .nav-flag {
      width: 20px;
      height: 14px;
      border-radius: 2px;
      flex-shrink: 0;
      overflow: hidden;
      display: inline-block;
      vertical-align: middle;
    }

    /* ─── All events page intro ─────────────────── */
    .page-intro {
      background: linear-gradient(145deg, var(--azure-darker) 0%, #005fa3 55%, #0090d4 100%);
      color: #fff;
      padding: 3rem 1.5rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-intro::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 40px;
      background: var(--bg);
      clip-path: ellipse(55% 100% at 50% 100%);
    }

    .page-intro-content {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
    }

    .page-intro h1 {
      font-size: clamp(1.8rem, 4.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: .6rem;
    }

    .page-intro p {
      opacity: .92;
      max-width: 54ch;
      margin: 0 auto;
      font-size: 1rem;
    }

    /* ─── Contact form ───────────────────────────── */
    .contact-wrap {
      max-width: 560px;
      margin: 0 auto;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .contact-form label {
      display: flex;
      flex-direction: column;
      gap: .4rem;
      font-size: .88rem;
      font-weight: 600;
      color: var(--text-mid);
    }
    .contact-form input,
    .contact-form textarea {
      padding: .7rem 1rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: .95rem;
      font-family: inherit;
      color: var(--text);
      background: var(--surface);
      transition: border-color .15s, box-shadow .15s;
      resize: vertical;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--azure);
      box-shadow: 0 0 0 3px rgba(0,120,212,.12);
    }
    .contact-form textarea { min-height: 140px; }
    .contact-form .btn-send {
      align-self: flex-start;
      background: var(--azure);
      color: #fff;
      border: none;
      border-radius: var(--radius);
      padding: .75rem 2rem;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s;
    }
    .contact-form .btn-send:hover { background: var(--azure-dark); }
    .contact-sent {
      display: none;
      text-align: center;
      padding: 2rem;
      color: var(--azure);
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* ─── Hero ───────────────────────────────────── */
    .hero {
      background: linear-gradient(145deg, var(--azure-darker) 0%, #005fa3 55%, #0090d4 100%);
      color: #fff;
      padding: 5rem 1.5rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 48px;
      background: var(--bg);
      clip-path: ellipse(55% 100% at 50% 100%);
    }

    .hero-content {
      position: relative;
      max-width: 680px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 20px;
      padding: .3rem .9rem;
      font-size: .8rem;
      letter-spacing: .02em;
      margin-bottom: 1.4rem;
    }

    .hero h1 {
      font-size: clamp(2rem, 5.5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.12;
      margin-bottom: 1rem;
      letter-spacing: -.02em;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      opacity: .88;
      max-width: 540px;
      margin: 0 auto 2rem;
    }

    .hero-cta {
      display: flex;
      justify-content: center;
      gap: .9rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .6rem 1.35rem;
      border-radius: 6px;
      font-size: .9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all .18s;
      cursor: pointer;
      border: none;
    }

    .btn-white { background: #fff; color: var(--azure-dark); }
    .btn-white:hover { background: var(--azure-light); }

    .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255,255,255,.55);
      color: #fff;
    }
    .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3.5rem;
      flex-wrap: wrap;
    }

    .hero-stat .num {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: .78rem;
      opacity: .75;
      margin-top: .25rem;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    /* ─── Sections ───────────────────────────────── */
    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3.5rem 1.5rem;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: .75rem;
    }

    .section-header h2 {
      font-size: 1.65rem;
      font-weight: 700;
    }

    .section-header h2 span { color: var(--azure); }

    .section-meta {
      font-size: .8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .live-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .4; }
    }

    .section-sep {
      border: none;
      height: 1px;
      background: var(--border);
      margin: 0;
    }

    /* ─── Groups Grid ────────────────────────────── */
    .groups-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.25rem;
    }

    .group-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: .85rem;
      transition: box-shadow .2s;
    }
    .group-card:hover { box-shadow: var(--shadow-hover); }

    .group-card-top {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .group-icon {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.35rem;
      flex-shrink: 0;
    }

    .group-name {
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.3;
    }

    .group-location {
      font-size: .82rem;
      color: var(--text-muted);
      margin-top: .15rem;
    }

    .group-desc {
      font-size: .85rem;
      color: var(--text-muted);
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .group-members {
      font-size: .82rem;
      color: var(--text-muted);
    }
    .group-members strong { color: var(--text); }

    .group-link {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      font-size: .85rem;
      font-weight: 600;
      color: var(--azure);
      text-decoration: none;
      margin-top: auto;
      padding-top: .25rem;
    }
    .group-link:hover { text-decoration: underline; }

    /* ─── Events Grid ────────────────────────────── */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 1.35rem;
    }

    /* ─── Event Card ─────────────────────────────── */
    .event-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }
    .event-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .event-card-accent {
      height: 4px;
      flex-shrink: 0;
    }

    .event-card-body {
      padding: 1.2rem 1.25rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .event-date-row {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .event-date-box {
      min-width: 54px;
      border-radius: 8px;
      text-align: center;
      padding: .45rem .5rem;
      border: 2px solid var(--border);
      background: #f8f8f8;
      flex-shrink: 0;
    }

    .event-card.upcoming .event-date-box {
      background: var(--azure-bg);
      border-color: var(--azure);
    }

    .event-date-day {
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      color: var(--text-muted);
    }

    .event-card.upcoming .event-date-day { color: var(--azure); }

    .event-date-mon {
      font-size: .68rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .event-date-year {
      font-size: .6rem;
      color: var(--text-muted);
      opacity: .65;
      margin-top: .1rem;
    }

    .event-date-info { flex: 1; min-width: 0; }
    .event-weekday { font-size: .85rem; font-weight: 600; color: var(--text); }
    .event-time { font-size: .82rem; color: var(--text-muted); }

    .event-title {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.4;
      color: var(--text);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .event-desc {
      font-size: .83rem;
      color: var(--text-muted);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .event-venue {
      display: flex;
      align-items: flex-start;
      gap: .4rem;
      font-size: .82rem;
      color: var(--text-muted);
    }

    .event-venue-icon { flex-shrink: 0; }

    .event-card-footer {
      padding: .85rem 1.25rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .event-badge {
      font-size: .71rem;
      font-weight: 600;
      padding: .2rem .6rem;
      border-radius: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 55%;
    }

    .event-going {
      font-size: .8rem;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .event-action {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .82rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: .01em;
    }
    .event-action:hover { text-decoration: underline; }

    /* ─── Show more ──────────────────────────────── */
    .show-more-wrap {
      text-align: center;
      margin-top: 2rem;
    }

    .btn-more {
      background: transparent;
      border: 2px solid var(--azure);
      color: var(--azure);
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .6rem 2rem;
      border-radius: 6px;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .18s;
    }
    .btn-more:hover { background: var(--azure); color: #fff; }

    .section-count {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-muted);
      margin-left: .3rem;
    }

    .btn-all-events {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .55rem 1.75rem;
      border-radius: 6px;
      font-size: .9rem;
      font-weight: 600;
      background: var(--azure);
      color: #fff;
      text-decoration: none;
      transition: background .18s;
    }
    .btn-all-events:hover { background: var(--azure-dark); color: #fff; }

    /* ─── Skeleton ───────────────────────────────── */
    .skeleton-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 1.35rem;
    }

    .skeleton-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      height: 230px;
      position: relative;
      overflow: hidden;
    }

    .skeleton-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,.65) 50%, transparent 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      to { background-position: -200% 0; }
    }

    /* ─── Empty / Error state ────────────────────── */
    .empty-state {
      text-align: center;
      padding: 3rem 1.5rem;
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px dashed var(--border);
      color: var(--text-muted);
      font-size: .95rem;
    }

    .empty-state p { margin-top: .5rem; font-size: .85rem; }

    /* ─── Footer ─────────────────────────────────── */
    footer {
      margin-top: 2rem;
      background: var(--azure-darker);
      color: rgba(255,255,255,.8);
      padding: 3rem 1.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      text-align: center;
    }

    .footer-logo {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: .85rem;
      transition: color .15s;
    }
    .footer-links a:hover { color: #fff; }

    .footer-meta {
      font-size: .78rem;
      color: rgba(255,255,255,.45);
    }
    /* ─── Organizers ───────────────────────────────── */
    .organizers-grid {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .organizer-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 2rem 1.75rem;
      text-align: center;
      width: 240px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
      transition: box-shadow .2s;
    }
    .organizer-card:hover { box-shadow: var(--shadow-hover); }

    .organizer-photo {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--azure-bg);
      background: var(--border);
    }

    .organizer-name {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text);
    }

    .organizer-title {
      font-size: .82rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .organizer-company {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text);
    }

    .organizer-badges {
      display: flex;
      gap: .35rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .organizer-badge {
      font-size: .7rem;
      font-weight: 600;
      padding: .15rem .55rem;
      border-radius: 20px;
      background: var(--azure-bg);
      color: var(--azure-dark);
    }

    .organizer-link {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .82rem;
      font-weight: 600;
      color: var(--azure);
      text-decoration: none;
      margin-top: .25rem;
    }
    .organizer-link:hover { text-decoration: underline; }

    /* ─── Sponsors ───────────────────────────────────── */
    .sponsors-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      padding: 8px 0 4px;
    }
    .sponsor-card {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 32px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: box-shadow .2s, transform .2s;
      text-decoration: none;
    }
    .sponsor-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }
    .sponsor-logo {
      max-height: 48px;
      max-width: 200px;
      width: auto;
      object-fit: contain;
    }
    /* ─── Responsive ─────────────────────────────── */
    @media (max-width: 768px) {
      header { padding: 0 1rem; }
      .header-inner {
        height: auto;
        min-height: 56px;
        padding: .6rem 0;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: .55rem;
      }
      .logo {
        font-size: .98rem;
      }
      .nav-toggle {
        display: inline-flex;
        flex-direction: column;
      }
      nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
        background: rgba(255,255,255,.1);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        padding: .45rem;
        box-shadow: 0 10px 24px rgba(0,0,0,.22);
      }
      header.nav-open nav { display: flex; }
      header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
      header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
      header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
      nav a,
      nav button {
        flex: none;
        white-space: nowrap;
        width: 100%;
        justify-content: flex-start;
        padding: .68rem .85rem;
        min-height: 40px;
        border-radius: 8px;
        background: rgba(255,255,255,.06) !important;
      }
      nav a::after,
      nav button::after {
        left: .85rem;
        right: .85rem;
        bottom: .38rem;
      }
      nav a:hover,
      nav button:hover {
        background: rgba(255,255,255,.12) !important;
      }
      .hero { padding: 3.5rem 1.25rem 3rem; }
      .hero-stats { gap: 2rem; }
      .section { padding: 2.5rem 1.25rem; }
      .events-grid { grid-template-columns: 1fr; }
      .groups-grid { grid-template-columns: 1fr; }
      .skeleton-grid { grid-template-columns: 1fr; }
    }

    /* ─── Newsletter popup ───────────────────────── */
    .nl-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.45);
      backdrop-filter: blur(2px);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none;
    }
    .nl-overlay.nl-visible {
      opacity: 1;
      pointer-events: auto;
    }
    .nl-modal {
      background: var(--surface);
      border-radius: calc(var(--radius) * 2);
      box-shadow: 0 24px 64px rgba(0,0,0,.22);
      max-width: 480px;
      width: calc(100% - 2rem);
      padding: 2rem 2rem 1.75rem;
      position: relative;
      transform: translateY(16px);
      transition: transform .3s;
    }
    .nl-overlay.nl-visible .nl-modal { transform: translateY(0); }
    .nl-close {
      position: absolute;
      top: .85rem;
      right: .9rem;
      background: none;
      border: none;
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      color: var(--text-muted);
      padding: .25rem .4rem;
      border-radius: var(--radius);
      transition: color .15s, background .15s;
    }
    .nl-close:hover { color: var(--text); background: var(--border); }
    .nl-modal h2 {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 2rem .4rem 0;
    }
    .nl-modal h2 span { color: var(--azure); }
    .nl-modal p {
      font-size: .875rem;
      color: var(--text-mid);
      margin: 0 0 1.25rem;
      line-height: 1.5;
    }
