
    :root {
      --unsa: #009fe3;
      --unsa-dark: #0078b7;
      --navy: #29235c;
      --ink: #172033;
      --muted: #5f6d80;
      --line: #dce5ec;
      --soft: #f3f8fb;
      --white: #ffffff;
      --danger: #e74124;
      --success: #08785d;
      --shadow: 0 12px 32px rgba(25, 53, 78, .08);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
    }

    button, input, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    a { color: inherit; }
    :focus-visible { outline: 3px solid rgba(0, 159, 227, .28); outline-offset: 3px; }

    .mock-note {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 34px;
      padding: 6px 16px;
      background: var(--navy);
      color: var(--white);
      font-size: .78rem;
      font-weight: 700;
      text-align: center;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(220, 229, 236, .9);
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
    }

    .header-inner,
    .hero,
    .main,
    .footer-inner {
      width: min(1140px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      text-decoration: none;
    }

    .brand img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }

    .brand-copy { min-width: 0; }
    .brand-name {
      display: block;
      color: var(--navy);
      font-family: Sora, Inter, sans-serif;
      font-size: .98rem;
      font-weight: 800;
      letter-spacing: -.02em;
    }
    .brand-sub {
      display: block;
      color: var(--muted);
      font-size: .72rem;
      white-space: nowrap;
    }

    .nav {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      padding: 0 12px;
      color: #425166;
      border-radius: 8px;
      font-size: .9rem;
      font-weight: 650;
      text-decoration: none;
    }
    .nav-link:hover { background: var(--soft); color: var(--navy); }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 8px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      transition: background .16s ease, transform .16s ease, border-color .16s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--unsa); color: var(--white); }
    .btn-primary:hover { background: var(--unsa-dark); }
    .btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
    .btn-secondary:hover { border-color: #b7c8d4; background: #f9fbfc; }
    .btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

    .hero-wrap {
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(0, 159, 227, .065) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(rgba(0, 159, 227, .065) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(180deg, #f6fbfe 0%, #ffffff 100%);
    }

    .hero {
      min-height: 470px;
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
      align-items: center;
      gap: 64px;
      padding: 68px 0 72px;
    }

    .hero-copy { max-width: 660px; }
    .hero h1 {
      max-width: 660px;
      margin: 0;
      color: var(--navy);
      font-family: Sora, Inter, sans-serif;
      font-size: clamp(2.35rem, 5.4vw, 4.7rem);
      font-weight: 850;
      line-height: 1.01;
      letter-spacing: -.055em;
    }
    .hero h1 span { color: var(--unsa-dark); }
    .hero-lead {
      max-width: 590px;
      margin: 24px 0 0;
      color: #45556a;
      font-size: clamp(1rem, 1.8vw, 1.18rem);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .next-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 112px 1fr;
      min-height: 280px;
      border: 1px solid #cfe0ea;
      border-radius: 10px;
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .next-date {
      padding: 30px 18px;
      background: var(--unsa);
      color: var(--white);
      text-align: center;
    }
    .next-day {
      display: block;
      font-family: Sora, Inter, sans-serif;
      font-size: 4rem;
      font-weight: 850;
      line-height: .95;
      letter-spacing: -.07em;
    }
    .next-month { display: block; margin-top: 8px; font-size: .85rem; font-weight: 850; }
    .next-content { display: flex; flex-direction: column; padding: 30px 28px; }
    .next-label { color: var(--unsa-dark); font-size: .78rem; font-weight: 850; }
    .next-content h2 {
      margin: 8px 0 10px;
      color: var(--navy);
      font-family: Sora, Inter, sans-serif;
      font-size: 1.55rem;
      line-height: 1.15;
      letter-spacing: -.025em;
    }
    .next-meta { display: grid; gap: 7px; color: var(--muted); font-size: .9rem; }
    .meta-line { display: flex; align-items: center; gap: 8px; }
    .meta-line svg { width: 17px; height: 17px; color: var(--unsa-dark); }
    .next-content .btn { margin-top: auto; align-self: flex-start; }

    .main { padding: 64px 0 86px; }
    .member-notice {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr) auto;
      align-items: center;
      gap: 18px;
      margin-bottom: 64px;
      padding: 22px 24px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fbfdfe;
    }
    .notice-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #e8f6fc;
      color: var(--unsa-dark);
    }
    .notice-icon svg { width: 24px; height: 24px; }
    .member-notice h2 { margin: 0; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 1.08rem; }
    .member-notice p { margin: 4px 0 0; color: var(--muted); font-size: .91rem; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }
    .section-head h2 {
      margin: 0;
      color: var(--navy);
      font-family: Sora, Inter, sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.75rem);
      line-height: 1.08;
      letter-spacing: -.04em;
    }
    .section-head p { max-width: 520px; margin: 8px 0 0; color: var(--muted); }
    .filters { display: flex; flex-wrap: wrap; gap: 8px; }
    .filter {
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--white);
      color: #526176;
      font-size: .85rem;
      font-weight: 750;
      cursor: pointer;
    }
    .filter[aria-pressed="true"] { border-color: var(--navy); background: var(--navy); color: var(--white); }

    .events { display: grid; gap: 14px; }
    .event-card {
      min-width: 0;
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr) auto;
      align-items: stretch;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--white);
      overflow: hidden;
      transition: border-color .16s ease, box-shadow .16s ease;
    }
    .event-card:hover { border-color: #b9ccd8; box-shadow: 0 7px 24px rgba(28, 60, 82, .07); }
    .event-date {
      display: grid;
      place-content: center;
      min-height: 176px;
      padding: 18px;
      border-right: 1px solid var(--line);
      background: var(--soft);
      text-align: center;
    }
    .event-date strong { color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 2.65rem; line-height: 1; letter-spacing: -.05em; }
    .event-date span { color: var(--muted); font-size: .78rem; font-weight: 850; }
    .event-body { min-width: 0; padding: 22px 26px; }
    .event-type { display: inline-flex; align-items: center; gap: 7px; color: var(--unsa-dark); font-size: .76rem; font-weight: 850; }
    .event-type svg { width: 16px; height: 16px; }
    .event-body h3 { margin: 7px 0 8px; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 1.22rem; line-height: 1.25; }
    .event-body p { max-width: 700px; margin: 0; color: var(--muted); font-size: .9rem; }
    .event-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 14px; color: #425166; font-size: .84rem; font-weight: 650; }
    .event-meta span { display: inline-flex; align-items: center; gap: 7px; }
    .event-meta svg { width: 16px; height: 16px; color: var(--unsa-dark); }
    .event-action { display: flex; align-items: center; padding: 20px 22px 20px 8px; }
    .event-action .btn { white-space: nowrap; }

    .request-panel {
      min-width: 0;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr) auto;
      align-items: center;
      gap: 22px;
      margin-top: 54px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--navy);
      color: var(--white);
    }
    .request-icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .13);
      color: var(--white);
    }
    .request-icon svg { width: 29px; height: 29px; }
    .request-panel h2 {
      margin: 0;
      color: var(--white);
      font-family: Sora, Inter, sans-serif;
      font-size: 1.35rem;
      letter-spacing: -.025em;
    }
    .request-panel p { max-width: 680px; margin: 7px 0 0; color: rgba(255, 255, 255, .86); font-size: .92rem; }
    .request-panel .btn-secondary { white-space: nowrap; }

    .how {
      margin-top: 70px;
      padding-top: 54px;
      border-top: 1px solid var(--line);
    }
    .how h2 { margin: 0; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 2rem; letter-spacing: -.035em; }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 30px; }
    .step { min-width: 0; }
    .step-number { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 850; }
    .step h3 { margin: 15px 0 5px; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 1.05rem; }
    .step p { margin: 0; color: var(--muted); font-size: .9rem; }

    footer { border-top: 1px solid var(--line); background: #f8fbfd; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 130px; color: var(--muted); font-size: .84rem; }
    .footer-inner strong { color: var(--navy); }
    .footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
    .footer-links a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(20, 28, 47, .58);
      backdrop-filter: blur(5px);
    }
    .modal.open { display: flex; }
    .modal-card {
      min-width: 0;
      width: min(620px, 100%);
      max-height: min(760px, calc(100dvh - 28px));
      overflow-y: auto;
      overflow-x: hidden;
      border-radius: 12px;
      background: var(--white);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
    }
    .modal-head { display: flex; justify-content: space-between; gap: 20px; padding: 26px 28px 18px; border-bottom: 1px solid var(--line); }
    .modal-head > div, .modal-body, .form-grid > *, .field { min-width: 0; }
    .modal-head h2 { margin: 0; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 1.55rem; line-height: 1.2; }
    .modal-head p { margin: 7px 0 0; color: var(--muted); font-size: .88rem; }
    .icon-btn { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--navy); cursor: pointer; }
    .icon-btn svg { width: 20px; height: 20px; }
    .modal-body { padding: 24px 28px 28px; }
    .prototype-alert { margin-bottom: 22px; padding: 12px 14px; border-radius: 8px; background: #eef8fc; color: #155e7d; font-size: .84rem; font-weight: 700; overflow-wrap: anywhere; }
    .modal-stage[hidden], .urgent-stage[hidden] { display: none; }
    .modal-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
    .progress-dot { width: 10px; height: 10px; border-radius: 50%; background: #d9e3ea; }
    .progress-dot.current { width: 28px; border-radius: 999px; background: var(--unsa); }
    .stage-title { margin: 0 0 6px; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: 1.2rem; letter-spacing: -.02em; }
    .stage-copy { margin: 0 0 20px; color: var(--muted); font-size: .9rem; }
    .code-input { text-align: center; font-family: Sora, Inter, sans-serif; font-size: 1.6rem !important; font-weight: 850; letter-spacing: .42em; padding-left: calc(13px + .42em) !important; }
    .verified-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; background: #e8f8f2; color: var(--success); }
    .verified-mark svg { width: 29px; height: 29px; }
    .pending-box { margin-top: 18px; padding: 15px 16px; border-radius: 8px; background: #f5f3ff; color: var(--navy); font-size: .88rem; font-weight: 700; }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: #344258; font-size: .83rem; font-weight: 750; }
    .field-label-row { display: flex; align-items: center; gap: 7px; color: #344258; font-size: .83rem; font-weight: 750; }
    .field input, .field select, .field textarea {
      min-width: 0;
      max-width: 100%;
      width: 100%;
      min-height: 48px;
      padding: 0 13px;
      border: 1px solid #cbd8e1;
      border-radius: 8px;
      background: var(--white);
      color: var(--ink);
      font-size: 16px;
    }
    .field textarea { min-height: 92px; padding-top: 12px; resize: vertical; }
    .field-hint { margin: 0; color: var(--muted); font-size: .76rem; }
    .picker-button {
      min-width: 0;
      width: 100%;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 13px;
      border: 1px solid #cbd8e1;
      border-radius: 8px;
      background: var(--white);
      color: var(--ink);
      font-size: 16px;
      text-align: left;
      cursor: pointer;
    }
    .picker-button span { min-width: 0; overflow-wrap: anywhere; }
    .picker-button svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--unsa-dark); }
    .picker-button.invalid { background: #fef2f2; }
    .schedule-note { grid-column: 1 / -1; margin: 0; padding: 11px 13px; border-radius: 8px; background: #eef8fc; color: #155e7d; font-size: .8rem; font-weight: 700; }
    .form-error { grid-column: 1 / -1; margin: 0; padding: 10px 12px; border-radius: 8px; background: #fef2f2; color: #a2261d; font-size: .8rem; font-weight: 750; }
    .tooltip-trigger {
      position: relative;
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 22px;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: #f3f8fb;
      color: var(--unsa-dark);
      font-size: .72rem;
      font-weight: 850;
      cursor: help;
    }
    .tooltip-trigger::after {
      content: attr(data-tooltip);
      position: absolute;
      z-index: 20;
      left: 50%;
      bottom: calc(100% + 10px);
      width: min(250px, 75vw);
      padding: 9px 11px;
      border-radius: 8px;
      background: var(--navy);
      color: var(--white);
      font-size: .75rem;
      font-weight: 650;
      line-height: 1.4;
      text-align: left;
      box-shadow: 0 8px 24px rgba(20, 28, 47, .18);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 5px);
      transition: opacity .15s ease, transform .15s ease;
    }
    .tooltip-trigger:hover::after, .tooltip-trigger:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
    .request-recap { display: grid; gap: 8px; margin-top: 18px; padding: 15px 16px; border-radius: 8px; background: #f3f8fb; color: #344258; font-size: .86rem; }
    .request-recap strong { color: var(--navy); }
    .consent { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 10px; margin-top: 18px; color: var(--muted); font-size: .82rem; }
    .consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--unsa); }
    .modal-actions { display: flex; flex-wrap: nowrap; gap: 10px; margin-top: 24px; }
    .modal-actions .btn-primary { flex: 1 1 0; min-width: 0; }
    .modal-actions .btn-secondary { flex: 0 0 auto; }

    .picker-modal { z-index: 2147483647; }
    .picker-modal .modal-card { width: min(520px, 100%); }
    .calendar-toolbar { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; align-items: center; gap: 8px; margin-bottom: 18px; }
    .calendar-toolbar strong { color: var(--navy); font-family: Sora, Inter, sans-serif; text-align: center; text-transform: capitalize; }
    .calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
    .calendar-weekdays { margin-bottom: 5px; color: var(--muted); font-size: .7rem; font-weight: 800; text-align: center; }
    .calendar-weekdays span { padding: 5px 0; }
    .calendar-day {
      min-width: 0;
      min-height: 44px;
      border: 0;
      border-radius: 8px;
      background: var(--white);
      color: var(--ink);
      font-size: .88rem;
      font-weight: 750;
      cursor: pointer;
    }
    .calendar-day:hover { background: var(--soft); }
    .calendar-day.outside { color: #94a3b8; }
    .calendar-day:disabled { color: #c5ced8; background: #f8fafc; cursor: not-allowed; }
    .calendar-day[aria-pressed="true"] { background: var(--unsa); color: var(--white); }
    .time-columns { display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 18px; }
    .time-group h3 { margin: 0 0 10px; color: var(--navy); font-family: Sora, Inter, sans-serif; font-size: .92rem; }
    .time-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
    .minute-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .time-option { min-height: 44px; border: 0; border-radius: 8px; background: var(--soft); color: var(--navy); font-weight: 800; cursor: pointer; }
    .time-option[aria-pressed="true"] { background: var(--navy); color: var(--white); }
    .time-preview { margin-top: 18px; padding: 14px 16px; border-radius: 8px; background: #eef8fc; color: #155e7d; text-align: center; font-family: Sora, Inter, sans-serif; font-weight: 800; }

    .toast {
      position: fixed;
      z-index: 130;
      left: 50%;
      bottom: 24px;
      transform: translate(-50%, 120px);
      max-width: calc(100% - 32px);
      padding: 13px 17px;
      border-radius: 8px;
      background: var(--navy);
      color: var(--white);
      font-size: .88rem;
      font-weight: 750;
      box-shadow: var(--shadow);
      opacity: 0;
      transition: transform .2s ease, opacity .2s ease;
    }
    .toast.show { transform: translate(-50%, 0); opacity: 1; }

    @media (max-width: 900px) {
      .nav-link { display: none; }
      .hero { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
      .next-panel { max-width: 620px; }
      .section-head { align-items: start; flex-direction: column; }
      .steps { gap: 24px; }
    }

    @media (max-width: 700px) {
      .header-inner, .hero, .main, .footer-inner { width: min(100% - 20px, 1140px); }
      .header-inner { min-height: 70px; gap: 10px; }
      .brand img { width: 44px; height: 44px; }
      .brand-name { font-size: .86rem; }
      .brand-sub { display: none; }
      .nav { gap: 0; }
      .nav .btn { min-width: 44px; padding: 0 12px; }
      .nav .btn span { display: none; }
      .nav .btn::before { content: 'Accès'; font-size: .74rem; font-weight: 800; }
      .hero { padding: 48px 0 54px; }
      .hero h1 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
      .next-panel { grid-template-columns: 88px 1fr; min-height: 270px; }
      .next-date { padding: 27px 10px; }
      .next-day { font-size: 3.2rem; }
      .next-content { padding: 25px 20px; }
      .member-notice { grid-template-columns: 44px 1fr; padding: 18px; }
      .notice-icon { width: 44px; height: 44px; }
      .member-notice .btn { grid-column: 1 / -1; width: 100%; }
      .event-card { grid-template-columns: 82px minmax(0, 1fr); }
      .event-date { min-height: 152px; padding: 12px; }
      .event-date strong { font-size: 2.15rem; }
      .event-body { padding: 18px 16px; }
      .event-action { grid-column: 1 / -1; padding: 0 16px 16px; }
      .event-action .btn { width: 100%; }
      .request-panel { grid-template-columns: 52px minmax(0, 1fr); padding: 20px 18px; }
      .request-icon { width: 52px; height: 52px; }
      .request-panel .btn { grid-column: 1 / -1; width: 100%; }
      .steps { grid-template-columns: 1fr; }
      .footer-inner { align-items: start; flex-direction: column; justify-content: center; padding: 30px 0; }
      .form-grid { grid-template-columns: minmax(0, 1fr); }
      .field.full { grid-column: auto; }
      .modal { align-items: end; padding: 0; }
      .modal-card { width: 100%; max-height: 91dvh; border-radius: 16px 16px 0 0; }
      .modal-head, .modal-body { padding-left: 18px; padding-right: 18px; }
      .picker-modal .modal-card { max-height: 88dvh; }
      .calendar-day { min-height: 46px; }
      .time-columns { grid-template-columns: 1fr; }
      .time-options { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .minute-options { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .tooltip-trigger::after { left: auto; right: -8px; transform: translateY(5px); }
      .tooltip-trigger:hover::after, .tooltip-trigger:focus-visible::after { transform: translateY(0); }
    }

    @media (max-width: 480px) {
      .modal-actions { flex-direction: column; }
      .modal-actions .btn-primary, .modal-actions .btn-secondary { width: 100%; flex: 0 0 auto; }
      .modal-head { gap: 12px; }
      .modal-head h2 { font-size: 1.35rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
    }



    :root {
      --cinema-navy: #17133f;
      --cinema-navy-2: #29235c;
      --cinema-blue: #004289;
      --cinema-cyan: #009fe3;
      --cinema-sky: #73d5f3;
      --cinema-ice: #eef9fd;
    }

    body {
      background: #f5f7fb;
      font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    }

    .mock-note {
      min-height: 30px;
      background: #0f0c31;
      font-size: .7rem;
      letter-spacing: .01em;
    }

    .site-header {
      top: 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
      background: rgba(23, 19, 63, .88);
      box-shadow: 0 10px 36px rgba(10, 9, 35, .18);
      backdrop-filter: blur(22px) saturate(145%);
    }

    .header-inner { min-height: 88px; }
    .brand img {
      width: 54px;
      height: 54px;
      padding: 4px;
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
    }
    .brand-name { color: var(--white); font-size: 1rem; }
    .brand-sub { color: rgba(255,255,255,.66); }
    .nav-link { color: rgba(255,255,255,.78); }
    .nav-link:hover { background: rgba(255,255,255,.09); color: var(--white); }
    .site-header .btn-secondary { border-color: rgba(255,255,255,.32); background: var(--white); color: var(--navy); }

    .hero-wrap {
      position: relative;
      isolation: isolate;
      min-height: 710px;
      overflow: hidden;
      border-bottom: 0;
      background:
        radial-gradient(circle at 76% 42%, rgba(0,159,227,.25), transparent 24%),
        radial-gradient(circle at 8% 18%, rgba(115,213,243,.13), transparent 25%),
        linear-gradient(122deg, var(--cinema-navy) 0%, var(--cinema-navy-2) 48%, var(--cinema-blue) 100%);
    }

    .hero-wrap::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: -40% auto -45% 48%;
      width: 18%;
      background: linear-gradient(90deg, transparent, rgba(111,214,248,.24), transparent);
      filter: blur(12px);
      transform: rotate(17deg) translateX(-260%);
      animation: hero-sweep 1.75s cubic-bezier(.22,.75,.2,1) .12s both;
    }

    .hero-wrap::after {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 92%);
    }

    .hero-atmosphere { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
    .hero-wordmark {
      position: absolute;
      right: -2vw;
      bottom: -12%;
      color: transparent;
      font-family: "Avenir Next", Avenir, sans-serif;
      font-size: clamp(12rem, 28vw, 31rem);
      font-weight: 900;
      line-height: .8;
      letter-spacing: -.09em;
      -webkit-text-stroke: 1px rgba(255,255,255,.065);
      user-select: none;
    }
    .hero-halo {
      position: absolute;
      right: 8%;
      top: 15%;
      width: min(46vw, 620px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,159,227,.22), rgba(0,159,227,.05) 43%, transparent 68%);
      filter: blur(2px);
    }

    .hero {
      min-height: 710px;
      grid-template-columns: minmax(0, 1.02fr) minmax(410px, .98fr);
      gap: clamp(52px, 8vw, 110px);
      padding: 88px 0 116px;
    }

    .hero-copy { position: relative; z-index: 2; max-width: 690px; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 24px;
      color: var(--cinema-sky);
      font-size: .82rem;
      font-weight: 750;
    }
    .hero-kicker::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: var(--cinema-cyan);
      box-shadow: 0 0 16px rgba(0,159,227,.75);
    }
    .hero h1 {
      max-width: 720px;
      color: var(--white);
      font-family: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
      font-size: clamp(3.1rem, 6vw, 6.35rem);
      font-weight: 900;
      line-height: .92;
      letter-spacing: -.065em;
    }
    .hero h1 .title-line { display: block; color: var(--white); }
    .hero h1 .title-line-cyan {
      margin-top: .08em;
      color: #9be4f8;
      text-shadow: 0 0 40px rgba(0,159,227,.22);
    }
    .hero-lead {
      max-width: 610px;
      margin-top: 28px;
      color: rgba(255,255,255,.78);
      font-size: clamp(1.04rem, 1.45vw, 1.26rem);
      line-height: 1.65;
    }
    .hero-actions { margin-top: 34px; }
    .hero-actions .btn { min-height: 52px; padding: 0 22px; }
    .hero-actions .btn-primary {
      position: relative;
      overflow: hidden;
      background: var(--cinema-cyan);
      box-shadow: 0 12px 34px rgba(0,159,227,.28);
    }
    .hero-actions .btn-primary::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.32) 48%, transparent 76%);
      transform: translateX(-130%);
      transition: transform .55s cubic-bezier(.22,.75,.2,1);
    }
    .hero-actions .btn-primary:hover::after { transform: translateX(130%); }
    .hero-actions .btn-secondary { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: var(--white); backdrop-filter: blur(12px); }
    .hero-actions .btn-secondary:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.14); }

    .hero-copy > * { animation: hero-copy-in .8s cubic-bezier(.22,.75,.2,1) both; }
    .hero-copy .hero-kicker { animation-delay: .08s; }
    .hero-copy h1 { animation-delay: .16s; }
    .hero-copy .hero-lead { animation-delay: .27s; }
    .hero-copy .hero-actions { animation-delay: .38s; }

    .signal-stage {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 480px;
      perspective: 1200px;
      animation: signal-in 1s cubic-bezier(.16,.84,.24,1) .3s both;
    }
    .signal-ring {
      position: absolute;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      pointer-events: none;
    }
    .signal-ring.one { width: 430px; height: 430px; }
    .signal-ring.two { width: 530px; height: 530px; border-color: rgba(0,159,227,.13); }
    .signal-ring.three { width: 630px; height: 630px; border-color: rgba(255,255,255,.055); }
    .signal-dot {
      position: absolute;
      top: 12%;
      right: 12%;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--cinema-cyan);
      box-shadow: 0 0 0 9px rgba(0,159,227,.12), 0 0 32px rgba(0,159,227,.9);
    }

    .next-panel {
      width: min(100%, 470px);
      min-height: 360px;
      grid-template-columns: 128px minmax(0, 1fr);
      border: 1px solid rgba(255,255,255,.32);
      border-radius: 14px;
      background: rgba(255,255,255,.96);
      box-shadow: 0 42px 90px rgba(7, 5, 38, .45), 0 0 0 9px rgba(255,255,255,.035);
      transform: rotateY(-5deg) rotateX(1deg);
      transition: transform .45s cubic-bezier(.22,.75,.2,1), box-shadow .45s ease;
    }
    .signal-stage:hover .next-panel { transform: rotateY(0) rotateX(0) translateY(-7px); box-shadow: 0 52px 100px rgba(7,5,38,.5), 0 0 0 9px rgba(255,255,255,.05); }
    .next-panel.no-event { grid-template-columns: minmax(0, 1fr); align-content: center; }
    .next-panel.no-event .next-content { max-width: 460px; }
    .next-date {
      position: relative;
      overflow: hidden;
      padding: 38px 18px;
      background: linear-gradient(155deg, #04a9eb, #007ab9);
    }
    .next-date::after { content: ""; position: absolute; inset: auto -35% -18% -35%; height: 60%; border-radius: 50%; background: rgba(255,255,255,.12); filter: blur(10px); }
    .next-day { font-size: 4.6rem; }
    .next-content { padding: 38px 30px 32px; }
    .next-content h2 { font-size: 1.7rem; }
    .next-content .btn { min-height: 49px; box-shadow: 0 10px 26px rgba(0,159,227,.2); }

    .main {
      position: relative;
      z-index: 3;
      margin-top: -46px;
      padding: 0 0 104px;
    }
    .member-notice {
      margin-bottom: 86px;
      padding: 25px 28px;
      border-color: #e1e6ee;
      border-radius: 12px;
      background: rgba(255,255,255,.97);
      box-shadow: 0 24px 60px rgba(24,22,65,.12);
    }
    .notice-icon { background: var(--cinema-ice); box-shadow: inset 0 0 0 1px rgba(0,0,0,.035); }

    .section-head { margin-bottom: 34px; }
    .section-head h2 { font-family: "Avenir Next", Avenir, sans-serif; font-size: clamp(2.35rem, 4.2vw, 4rem); font-weight: 900; line-height: .98; }
    .section-head p { margin-top: 14px; font-size: 1rem; line-height: 1.65; }

    .filters { padding: 5px; border-radius: 999px; background: #e9edf4; }
    .filter { border: 0; background: transparent; }
    .filter[aria-pressed="true"] { border: 0; background: var(--navy); box-shadow: 0 7px 20px rgba(41,35,92,.2); }

    .events { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .event-card {
      display: flex;
      flex-direction: column;
      min-height: 430px;
      border-color: #e1e6ee;
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(35,39,72,.055);
      transition: transform .3s cubic-bezier(.22,.75,.2,1), box-shadow .3s ease;
    }
    .event-card:hover { border-color: #e1e6ee; transform: translateY(-7px); box-shadow: 0 24px 52px rgba(35,39,72,.12); }
    .event-date {
      min-height: 112px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding: 24px 26px;
      border-right: 0;
      border-bottom: 1px solid #e1e6ee;
      background: var(--navy);
      text-align: left;
    }
    .event-date strong { color: var(--white); font-size: 3.45rem; }
    .event-date span { color: rgba(255,255,255,.7); }
    .event-body { flex: 1 1 auto; padding: 25px 26px 18px; }
    .event-body h3 { margin-top: 12px; font-size: 1.38rem; }
    .event-body p { line-height: 1.65; }
    .event-action { margin-top: auto; padding: 0 24px 24px; }
    .event-action .btn { width: 100%; }

    .request-panel {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      margin-top: 76px;
      padding: 42px;
      border-color: rgba(255,255,255,.14);
      border-radius: 14px;
      background: linear-gradient(120deg, #17133f, #29235c 56%, #004289);
      box-shadow: 0 28px 70px rgba(27,24,72,.18);
    }
    .request-panel::before {
      content: "01 h";
      position: absolute;
      z-index: -1;
      right: 2%;
      bottom: -27%;
      color: rgba(255,255,255,.055);
      font-family: "Avenir Next", Avenir, sans-serif;
      font-size: clamp(8rem, 17vw, 15rem);
      font-weight: 900;
      letter-spacing: -.08em;
    }
    .request-icon { background: rgba(0,159,227,.2); box-shadow: 0 0 34px rgba(0,159,227,.22); }
    .request-panel .btn-secondary { min-height: 50px; border-color: rgba(255,255,255,.25); box-shadow: 0 12px 30px rgba(0,0,0,.16); }

    .how { margin-top: 90px; padding-top: 72px; }
    .how h2 { font-family: "Avenir Next", Avenir, sans-serif; font-size: clamp(2rem, 3.8vw, 3.35rem); font-weight: 900; }
    .steps { position: relative; gap: 34px; }
    .steps::before { content: ""; position: absolute; top: 20px; left: 20px; right: 20px; height: 1px; background: #dce3ed; }
    .step { position: relative; padding-right: 8px; }
    .step-number { position: relative; box-shadow: 0 0 0 8px #f5f7fb; }

    footer { border-top: 0; background: #17133f; }
    .footer-inner { color: rgba(255,255,255,.62); }
    .footer-inner strong, .footer-links a { color: var(--white); }

    .modal { background: rgba(11,9,37,.72); backdrop-filter: blur(12px); }
    .modal-card { border: 1px solid rgba(255,255,255,.3); box-shadow: 0 35px 90px rgba(6,5,28,.42); animation: modal-in .28s cubic-bezier(.2,.8,.2,1) both; }
    .modal-head { background: linear-gradient(135deg, #f9fcfe, #eef8fc); }

    @keyframes hero-sweep {
      0% { opacity: 0; transform: rotate(17deg) translateX(-260%); }
      45% { opacity: 1; }
      100% { opacity: .55; transform: rotate(17deg) translateX(270%); }
    }
    @keyframes hero-copy-in {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes signal-in {
      from { opacity: 0; transform: translateX(38px) scale(.96); }
      to { opacity: 1; transform: translateX(0) scale(1); }
    }
    @keyframes modal-in {
      from { opacity: 0; transform: translateY(16px) scale(.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @media (max-width: 980px) {
      .hero-wrap, .hero { min-height: auto; }
      .hero { grid-template-columns: 1fr; gap: 54px; padding: 76px 0 120px; }
      .hero-copy { max-width: 780px; }
      .signal-stage { min-height: 420px; }
      .signal-ring.one { width: 390px; height: 390px; }
      .signal-ring.two { width: 480px; height: 480px; }
      .signal-ring.three { display: none; }
      .events { grid-template-columns: 1fr; }
      .event-card { min-height: 0; display: grid; grid-template-columns: 122px minmax(0,1fr) auto; }
      .event-date { min-height: 100%; display: grid; place-content: center; border-bottom: 0; border-right: 1px solid #e1e6ee; }
      .event-action { display: flex; align-items: center; padding: 22px 22px 22px 8px; }
      .event-action .btn { width: auto; }
    }

    @media (max-width: 700px) {
      .mock-note { min-height: 32px; padding-inline: 10px; }
      .header-inner { min-height: 72px; }
      .brand img { width: 46px; height: 46px; }
      .hero-wrap { min-height: 0; }
      .hero { gap: 40px; padding: 62px 0 102px; }
      .hero h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); line-height: .94; }
      .hero-lead { font-size: 1.02rem; line-height: 1.6; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-actions .btn { width: 100%; }
      .hero-wordmark { right: -8vw; bottom: 8%; font-size: 14rem; }
      .signal-stage { min-height: 355px; }
      .signal-ring.one { width: 320px; height: 320px; }
      .signal-ring.two { width: 390px; height: 390px; }
      .signal-dot { top: 3%; right: 7%; }
      .next-panel { width: 100%; min-height: 300px; grid-template-columns: 92px minmax(0,1fr); transform: none; }
      .signal-stage:hover .next-panel { transform: translateY(-3px); }
      .next-date { padding: 30px 10px; }
      .next-day { font-size: 3.35rem; }
      .next-content { padding: 28px 20px 24px; }
      .next-content h2 { font-size: 1.45rem; }
      .main { margin-top: -35px; }
      .member-notice { margin-bottom: 70px; }
      .section-head h2 { font-size: 2.55rem; }
      .filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
      .filter { flex: 0 0 auto; }
      .event-card { display: grid; grid-template-columns: 86px minmax(0,1fr); min-height: 0; }
      .event-date { min-height: 154px; padding: 14px 10px; }
      .event-date strong { font-size: 2.45rem; }
      .event-date span { text-align: center; }
      .event-action { grid-column: 1 / -1; padding: 0 16px 17px; }
      .event-action .btn { width: 100%; }
      .request-panel { padding: 24px 20px; }
      .steps::before { display: none; }
      .step-number { box-shadow: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-wrap::before, .hero-copy > *, .signal-stage, .modal-card { animation: none !important; }
      .next-panel, .event-card, .hero-actions .btn-primary::after { transition: none !important; }
    }

    /* Accueil compact aligné sur la charte unsa-crbfc.eu */
    html, body { width: 100%; max-width: 100%; overflow-x: clip; }
    body { min-height: 100svh; background: #eef5fa; }

    .site-header {
      position: relative;
      border-bottom: 0;
      background: #fff;
      box-shadow: 0 5px 24px rgba(8, 35, 69, .08);
      backdrop-filter: none;
    }
    .header-inner { width: min(1190px, calc(100% - 38px)); min-height: 76px; }
    .header-inner { max-width: 100%; flex-wrap: nowrap; justify-content: space-between; overflow: hidden; }
    .brand { flex: 1 1 auto; overflow: hidden; }
    .brand-copy { overflow: hidden; }
    .nav { flex: 0 0 auto; margin-left: 0; }
    .brand img { width: 48px; height: 48px; padding: 0; border-radius: 0; background: transparent; box-shadow: none; }
    .brand-name { color: #081d42; font-size: 1.05rem; line-height: 1; letter-spacing: .02em; }
    .brand-sub { margin-top: 3px; color: #5d6878; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
    .nav-link { color: #16243b; }
    .site-header .btn-secondary { min-height: 46px; border-color: #d9e0e8; border-radius: 999px; background: #fff; color: #111c31; box-shadow: none; }

    .portal-home {
      position: relative;
      isolation: isolate;
      min-height: calc(100svh - 76px);
      overflow: hidden;
      padding: clamp(24px, 3.2vh, 42px) 0 18px;
      background:
        radial-gradient(circle at 12% 4%, rgba(109, 206, 246, .52), transparent 29%),
        radial-gradient(circle at 88% 94%, rgba(54, 49, 144, .34), transparent 35%),
        linear-gradient(125deg, #3ea6dd 0%, #1577b8 46%, #122d68 100%);
    }
    .portal-home::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      opacity: .14;
      background-image: radial-gradient(circle at center, #fff 0 1px, transparent 1.5px);
      background-size: 34px 34px;
      mask-image: linear-gradient(to bottom, #000, transparent 68%);
    }
    .home-inner { width: min(1190px, calc(100% - 38px)); margin: 0 auto; }
    .home-intro { color: #fff; text-align: center; }
    .home-kicker {
      display: block;
      margin-bottom: 8px;
      font-size: clamp(.68rem, .85vw, .78rem);
      font-weight: 850;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .home-intro h1 {
      margin: 0;
      color: #fff;
      font-family: Sora, Inter, sans-serif;
      font-size: clamp(2.15rem, 4.3vw, 4.05rem);
      font-weight: 850;
      line-height: .98;
      letter-spacing: -.055em;
    }
    .home-intro h1 span { color: #fff; }
    .home-intro p { margin: 10px auto 0; color: rgba(255,255,255,.9); font-size: clamp(.88rem, 1.2vw, 1rem); }

    .access-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(220px, .78fr) minmax(220px, .78fr);
      gap: 14px;
      margin-top: clamp(22px, 3vh, 34px);
    }
    .access-card {
      position: relative;
      min-width: 0;
      min-height: 262px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 21px;
      background: rgba(255,255,255,.96);
      box-shadow: 0 18px 44px rgba(7, 31, 71, .19);
    }
    .access-card::before { content: ""; position: absolute; top: 0; left: 22px; width: 88px; height: 4px; border-radius: 0 0 5px 5px; background: #53bce9; }
    .urgent-card::before { background: #efb446; }
    .member-card::before { background: #8580df; }
    .access-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding-right: 66px; }
    .card-eyebrow { color: #1078ad; font-size: .66rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
    .urgent-card .card-eyebrow { color: #936008; }
    .member-card .card-eyebrow { color: #4e479f; }
    .access-card h2 { position: relative; margin: 6px 0 0; color: #111f3b; font-family: Sora, Inter, sans-serif; font-size: clamp(1.16rem, 1.55vw, 1.45rem); line-height: 1.13; letter-spacing: -.035em; }
    .card-lead, .access-card > p { position: relative; margin: 9px 0 0; color: #5a6779; font-size: .84rem; line-height: 1.48; }
    .card-count { min-width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; background: #e9f6fc; color: #0879ad; font-size: .78rem; font-weight: 900; }
    .card-orb { position: absolute; top: 18px; right: 18px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; }
    .calendar-orb { background: #e1f5fc; }
    .calendar-orb span { width: 21px; height: 21px; border: 2px solid #2189b9; border-radius: 4px; }
    .calendar-orb span::before { content: ""; display: block; height: 4px; margin-top: 3px; border-top: 2px solid #2189b9; border-bottom: 2px solid #2189b9; }
    .urgent-orb { background: #fff0cf; color: #95630b; font-weight: 900; }
    .member-orb { background: #ebe9fb; color: #5049a6; font-size: .62rem; font-weight: 900; }

    .compact-events { position: relative; min-height: 0; overflow: auto; margin-top: 13px; padding-right: 3px; scrollbar-width: thin; scrollbar-color: #9bcfe5 transparent; }
    .empty-event { min-height: 103px; display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid #e0e8ef; border-radius: 13px; background: #f8fbfd; }
    .empty-icon { width: 35px; height: 35px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #e1f4fb; color: #087eaf; font-weight: 900; }
    .empty-event strong { display: block; color: #16223a; font-size: .87rem; }
    .empty-event p { margin: 3px 0 0; color: #657183; font-size: .76rem; line-height: 1.4; }
    .compact-event { display: grid; grid-template-columns: 56px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 10px; border: 1px solid #e1e8ee; border-radius: 13px; background: #fbfdfe; }
    .compact-event + .compact-event { margin-top: 8px; }
    .compact-date { display: grid; place-items: center; align-content: center; min-height: 58px; border-radius: 10px; background: #e3f4fb; text-align: center; }
    .compact-date strong { color: #0877a9; font-family: Sora, sans-serif; font-size: 1.45rem; line-height: 1; }
    .compact-date span { margin-top: 3px; color: #547083; font-size: .5rem; font-weight: 900; }
    .compact-body { min-width: 0; }
    .compact-body > span { color: #0877a9; font-size: .57rem; font-weight: 900; text-transform: uppercase; }
    .compact-body h3 { overflow: hidden; margin: 2px 0; color: #17233b; font-size: .86rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
    .compact-body p { overflow: hidden; margin: 0; color: #647184; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
    .compact-action, .card-link { border: 0; color: #0879ad; background: transparent; font: inherit; font-size: .78rem; font-weight: 900; text-decoration: none; cursor: pointer; }
    .compact-action span, .card-link span { margin-left: 4px; transition: transform .18s ease; }
    .compact-action:hover span, .card-link:hover span { display: inline-block; transform: translateX(3px); }
    .card-link { position: relative; align-self: flex-start; margin-top: auto; padding: 11px 0 0; color: #0879ad; }
    .urgent-card .card-link { color: #8f5d05; }
    .member-card .card-link { color: #4c459c; }

    .compact-flow {
      display: grid;
      grid-template-columns: auto repeat(3, minmax(0,1fr));
      align-items: center;
      gap: 18px;
      margin-top: 14px;
      padding: 13px 18px;
      border: 1px solid rgba(255,255,255,.42);
      border-radius: 15px;
      background: rgba(9, 37, 81, .28);
      color: #fff;
      backdrop-filter: blur(8px);
    }
    .compact-flow strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
    .compact-flow span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: .75rem; }
    .compact-flow b { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #126fa9; }
    .home-foot { display: flex; justify-content: space-between; gap: 20px; padding: 12px 3px 0; color: rgba(255,255,255,.75); font-size: .7rem; }
    .home-foot > span:last-child { display: flex; gap: 16px; }
    .home-foot a { text-decoration: none; }
    .home-foot a:hover { color: #fff; text-decoration: underline; }

    @media (min-width: 981px) and (min-height: 720px) {
      .portal-home { display: grid; align-items: center; }
      .compact-events { max-height: 130px; }
    }

    @media (max-width: 840px) {
      .portal-home { min-height: calc(100svh - 76px); }
      .access-grid { grid-template-columns: minmax(0,1.3fr) minmax(220px,.7fr); }
      .meetings-card { grid-row: span 2; min-height: 438px; }
      .compact-events { max-height: 280px; }
      .compact-flow { grid-template-columns: repeat(3, minmax(0,1fr)); }
      .compact-flow strong { grid-column: 1 / -1; }
    }

    @media (max-width: 700px) {
      .header-inner, .home-inner { width: min(100% - 24px, 1190px); }
      .header-inner { min-height: 68px; height: 68px; gap: 8px; }
      .brand img { width: 42px; height: 42px; }
      .brand-name { font-size: .9rem; }
      .brand-sub { display: block; max-width: 165px; overflow: hidden; font-size: .57rem; text-overflow: ellipsis; white-space: nowrap; }
      .nav-link { display: none; }
      .nav .btn { min-width: 0; min-height: 42px; padding: 0 13px; }
      .nav .btn::before { content: none; }
      .nav .btn span { display: inline; font-size: .7rem; }
      .portal-home { min-height: calc(100svh - 68px); padding: 22px 0 14px; }
      .home-kicker { margin-inline: auto; max-width: 330px; font-size: .59rem; line-height: 1.35; }
      .home-intro h1 { font-size: clamp(2rem, 10.8vw, 3rem); line-height: 1; }
      .home-intro p { max-width: 370px; font-size: .8rem; line-height: 1.42; }
      .access-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 18px; }
      .access-card, .meetings-card { min-height: 0; padding: 18px; border-radius: 17px; }
      .meetings-card { grid-row: auto; }
      .access-card-head { padding-right: 52px; }
      .card-orb { top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 12px; }
      .access-card h2 { font-size: 1.15rem; }
      .card-lead, .access-card > p { max-width: calc(100% - 8px); margin-top: 6px; font-size: .76rem; line-height: 1.42; }
      .compact-events { max-height: 215px; }
      .empty-event { min-height: 76px; padding: 11px; }
      .compact-event { grid-template-columns: 49px minmax(0,1fr); gap: 9px; }
      .compact-action { grid-column: 1 / -1; min-height: 36px; border-radius: 9px; background: #e5f4fa; }
      .urgent-card, .member-card { min-height: 174px; }
      .compact-flow { grid-template-columns: 1fr; gap: 8px; padding: 13px; }
      .compact-flow strong { grid-column: auto; }
      .compact-flow span { font-size: .7rem; }
      .home-foot { padding-top: 11px; }
      .home-foot > span:first-child { display: none; }
      .home-foot > span:last-child { width: 100%; justify-content: center; }
    }

    @media (max-width: 380px) {
      .nav .btn span { font-size: 0; }
      .nav .btn span::after { content: "Adhérents"; font-size: .68rem; }
      .home-intro h1 { font-size: 1.9rem; }
    }

    @media (max-width: 280px) {
      .header-inner, .home-inner { width: calc(100% - 16px); }
      .brand-copy { display: none; }
      .brand img { width: 40px; height: 40px; }
      .nav .btn { min-height: 40px; padding-inline: 10px; }
      .nav .btn span::after { content: "Accès"; }
    }

    @media (min-width: 620px) and (max-width: 700px) {
      .access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .meetings-card { grid-column: 1 / -1; }
      .urgent-card, .member-card { min-height: 170px; }
      .compact-flow { grid-template-columns: auto repeat(3, minmax(0, 1fr)); }
      .compact-flow strong { grid-column: auto; }
    }

/* Réunions publiques : mêmes repères que les cartes du calendrier. */
.access-grid { grid-template-columns: minmax(0, 1.65fr) minmax(260px, 1fr); gap: 20px; align-items: stretch; }
.access-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,.06); min-height: 0; }
.access-card::before { display: none; }
.meetings-card { grid-row: span 2; }
.access-card h2 { font-family: Inter, sans-serif; font-size: 20px; letter-spacing: -.02em; line-height: 1.35; }
.card-eyebrow, .urgent-card .card-eyebrow, .member-card .card-eyebrow { color: #4b5563; }
.card-lead, .access-card > p { font-size: 14px; line-height: 1.6; }
.card-orb { width: 44px; height: 44px; border-radius: 12px; background: #009ee0; color: #fff; }
.calendar-orb span, .calendar-orb span::before { border-color: #fff; }
.card-link, .urgent-card .card-link, .member-card .card-link { color: #036b98; min-height: 44px; }
.compact-events { display: grid; grid-template-columns: minmax(0,1fr); gap: 16px; overflow: visible; max-height: none; padding: 0; margin-top: 20px; }
.compact-event { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; border: 1px solid #e5e7eb; border-radius: 20px; background: #f8fafc; min-width: 0; }
.compact-event + .compact-event { margin-top: 0; }
.meeting-date { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid #e5e7eb; }
.meeting-icon { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: #009ee0; color: #fff; }
.meeting-icon svg { width: 22px; height: 22px; }
.meeting-day { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.4; color: #374151; }
.meeting-time { margin: 4px 0 0; font-size: 14px; color: #4b5563; }
.meeting-audience { align-self: flex-start; padding: 5px 10px; margin-bottom: 10px; border-radius: 6px; background: #e5e7eb; color: #374151; font-size: 12px; font-weight: 600; }
.compact-event h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; line-height: 1.4; color: #1f2937; overflow-wrap: anywhere; }
.meeting-location { display: flex; align-items: flex-start; gap: 7px; margin: 0 0 12px; color: #4b5563; font-size: 14px; line-height: 1.5; }
.meeting-location svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.meeting-description { margin: 0 0 18px; color: #4b5563; font-size: 14px; line-height: 1.65; overflow-wrap: anywhere; }
.meeting-actions { margin-top: auto; }
.meeting-actions > p { margin: 0 0 10px; font-size: 12px; line-height: 1.5; color: #4b5563; }
.compact-event .compact-action { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 44px; padding: 12px; border: 0; border-radius: 10px; background: #007bb0; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; }
.compact-event .compact-action:hover { background: #00638e; }
.compact-action:focus-visible, .card-link:focus-visible { outline: 3px solid #111827; outline-offset: 3px; }
@media (max-width: 700px) {
  .access-grid { grid-template-columns: minmax(0,1fr); gap: 16px; }
  .meetings-card { grid-row: auto; }
  .access-card { padding: 18px; }
  .compact-event { padding: 16px; }
  .urgent-card, .member-card { min-height: 0; }
  .meeting-description, .meeting-location, .meeting-time, .card-lead, .access-card > p { font-size: 16px; }
}

/* Visuel éditorial muet et accroche de la réunion. */
.meeting-photo { margin: 0 0 16px; }
.meeting-photo img { display: block; width: 100%; height: auto; border-radius: 12px; }
.meeting-photo figcaption { margin-top: 4px; color: #64748b; font-size: 11px; }
.meeting-hook { margin: 0 0 12px; color: #29235c; font-size: 18px; font-weight: 700; line-height: 1.4; }

.access-grid { align-items: start; }
.meetings-card { grid-row: auto; }
.access-secondary { display: grid; gap: 20px; min-width: 0; }
.access-secondary .access-card { min-height: 240px; }
@media (max-width: 700px) { .access-secondary { gap: 16px; } .access-secondary .access-card { min-height: 0; } }

/* Lisibilité des informations utiles à l’inscription, 20/09/2026. */
.meeting-description, .meeting-location, .meeting-time { font-size: 16px; }
.meeting-actions > p { font-size: 15px; line-height: 1.6; }
.meeting-audience { font-size: 14px; }
.compact-event .compact-action { font-size: 16px; min-height: 48px; }
