  /* ====== Theme tokens (tweak to match your exact WP theme) ====== */
  :root{
    --ehs-navy:#203070;
    --ehs-teal:#00B0C8;
    --ehs-ink:#1b1f2a;
    --ehs-muted:#5b6473;
    --ehs-border:#e6e9f0;
    --ehs-bg:#ffffff;
    --ehs-soft:#f6f8fb;
    --ehs-shadow:0 18px 45px rgba(16,24,40,.14);
    --ehs-radius:14px;
    --ehs-font: inherit; /* uses your WordPress theme font */
  }

  /* ====== Accessibility helper ====== */
  .ehs-sr-only{
    position:absolute!important;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }

  /* ====== Layout ====== */
  .ehs-portal{
    background: var(--ehs-bg);
    font-family: var(--ehs-font);
    color: var(--ehs-ink);
    padding: clamp(32px, 4vw, 56px) 0;
  }
  .ehs-portal__container{
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
  }
  .ehs-portal__grid{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 3vw, 36px);
    align-items: start;
  }

  /* ====== Intro ====== */
  .ehs-portal__kicker{
    color: var(--ehs-teal);
    font-weight: 700;
    letter-spacing: .02em;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 13px;
  }
  .ehs-portal__title{
    color: var(--ehs-navy);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    font-size: clamp(26px, 3.1vw, 40px);
  }
  .ehs-portal__lead{
    color: var(--ehs-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 62ch;
  }
  .ehs-portal__bullets{
    margin: 0 0 22px;
    padding-left: 18px;
    color: var(--ehs-ink);
  }
  .ehs-portal__bullets li{
    margin: 8px 0;
    color: var(--ehs-muted);
    line-height: 1.6;
  }

  /* ====== Buttons ====== */
  .ehs-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
  .ehs-btn:focus{
    outline: 3px solid rgba(0,176,200,.25);
    outline-offset: 2px;
  }
  .ehs-btn--primary{
    background: var(--ehs-teal);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,176,200,.18);
  }
  .ehs-btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,176,200,.22); }
  .ehs-btn--secondary{
    background: transparent;
    color: var(--ehs-navy);
    border-color: rgba(32,48,112,.25);
  }
  .ehs-btn--secondary:hover{ border-color: rgba(32,48,112,.45); transform: translateY(-1px); }

  .ehs-portal__cta-row{
    display:flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0 20px;
  }

  /* ====== Notify form ====== */
  .ehs-portal__notify{
    background: var(--ehs-soft);
    border: 1px solid var(--ehs-border);
    border-radius: var(--ehs-radius);
    padding: 18px;
  }
  .ehs-portal__notify-title{
    margin: 0 0 6px;
    font-weight: 800;
    color: var(--ehs-navy);
  }
  .ehs-portal__notify-text{
    margin: 0 0 12px;
    color: var(--ehs-muted);
    line-height: 1.6;
    font-size: 14px;
  }
  .ehs-form{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .ehs-form input{
    border: 1px solid var(--ehs-border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
  }
  .ehs-form input:focus{
    border-color: rgba(0,176,200,.55);
    box-shadow: 0 0 0 4px rgba(0,176,200,.12);
  }
  .ehs-portal__fineprint{
    margin: 20px 0 0;
    color: var(--ehs-muted);
    font-size: 12px;
    line-height: 1.5;
  }

  /* ====== Support panel ====== */
  .ehs-support{
    background: #fff;
    border: 1px solid var(--ehs-border);
    border-radius: var(--ehs-radius);
    box-shadow: var(--ehs-shadow);
    overflow: hidden;
  }
  .ehs-support__header{
    padding: 18px 18px 12px;
    border-bottom: 1px solid var(--ehs-border);
    background: linear-gradient(180deg, rgba(0,176,200,.10), rgba(0,176,200,0));
  }
  .ehs-support__title{
    margin: 0 0 6px;
    color: var(--ehs-navy);
    font-weight: 800;
    font-size: 18px;
  }
  .ehs-support__subtitle{
    margin: 0;
    color: var(--ehs-muted);
    line-height: 1.6;
    font-size: 14px;
  }

  .ehs-support__cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px 18px;
  }
  .ehs-card{
    border: 1px solid var(--ehs-border);
    border-radius: 14px;
    padding: 14px;
    background: #fff;
  }
  .ehs-card__title{
    margin: 0 0 6px;
    color: var(--ehs-navy);
    font-weight: 600;
    font-size: 10px;
  }
  .ehs-card__text{
    margin: 0 0 8px;
    color: var(--ehs-muted);
    line-height: 1.6;
    font-size: 14px;
  }
  .ehs-card__meta{
    margin: 0 0 10px;
    color: var(--ehs-muted);
    font-size: 13px;
  }
  .ehs-card__link{
    color: var(--ehs-teal);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
  }
  .ehs-card__link:hover{
    text-decoration: underline;
  }

  .ehs-support__note{
    border-top: 1px solid var(--ehs-border);
    background: var(--ehs-soft);
    padding: 14px 18px 16px;
  }
  .ehs-support__note-title{
    margin: 0 0 4px;
    font-weight: 800;
    color: var(--ehs-navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
  }
  .ehs-support__note-text{
    margin: 0;
    color: var(--ehs-muted);
    font-size: 13px;
    line-height: 1.55;
  }

  /* ====== Modal (CSS-only with :target) ====== */
  .ehs-modal{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
  }
  .ehs-modal:target{
    display: block;
  }
  .ehs-modal__overlay{
    position:absolute;
    inset:0;
    background: rgba(15, 23, 42, .55);
  }
  .ehs-modal__panel{
    position: relative;
    width: min(720px, calc(100% - 40px));
    margin: 7vh auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--ehs-shadow);
    border: 1px solid rgba(230,233,240,.9);
    padding: 18px;
  }
  .ehs-modal__head{
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
  }
  .ehs-modal__title{
    margin: 0;
    color: var(--ehs-navy);
    font-weight: 900;
    font-size: 18px;
  }
  .ehs-modal__close{
    display:inline-flex;
    width: 38px;
    height: 38px;
    align-items:center;
    justify-content:center;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ehs-muted);
    border: 1px solid var(--ehs-border);
  }
  .ehs-modal__close:hover{
    color: var(--ehs-ink);
    border-color: rgba(32,48,112,.25);
  }
  .ehs-modal__text{
    margin: 0 0 10px;
    color: var(--ehs-muted);
    line-height: 1.7;
    font-size: 14px;
  }

  .ehs-modal__actions{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 6px 0 14px;
  }
  .ehs-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--ehs-border);
    color: var(--ehs-navy);
    font-weight: 800;
    text-decoration: none;
    background: #fff;
    transition: transform .12s ease, border-color .12s ease;
    font-size: 13px;
  }
  .ehs-pill:hover{
    transform: translateY(-1px);
    border-color: rgba(0,176,200,.55);
  }

  .ehs-modal__footer{
    border-top: 1px solid var(--ehs-border);
    margin-top: 10px;
    padding-top: 12px;
  }
  .ehs-modal__fineprint{
    margin: 0 0 12px;
    color: var(--ehs-muted);
    font-size: 12px;
    line-height: 1.55;
  }
  .ehs-modal__footer-cta{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
  }

  /* ====== Responsive ====== */
  @media (max-width: 920px){
    .ehs-portal__grid{ grid-template-columns: 1fr; }
    .ehs-support{ box-shadow: none; }
  }
  @media (max-width: 520px){
    .ehs-form{ grid-template-columns: 1fr; }
    .ehs-modal__panel{ margin: 10vh auto; }
    .ehs-modal__footer-cta{ justify-content: stretch; }
    .ehs-modal__footer-cta .ehs-btn{ width: 100%; }
  }