.top-bar {
  border-top:4px solid #b3002d;
  background:#05051a;
  color:#fff;
  width:100%;
}

.top-bar-inner {
  max-width:1200px;
  margin:0 auto;
  padding:10px 7vw;
  display:flex;                 /* flexbox makes it responsive [web:51][web:55] */
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-sizing:border-box;
}

/* left side kept for future menu/logo */
.top-bar-left {
  flex:1 1 auto;
}

/* right side with login button */
.top-bar-right {
  flex:0 0 auto;
  display:flex;
  justify-content:flex-end;
}

/* button scales and wraps on small screens */
.top-login {
  font-size:clamp(0.8rem, 2.5vw, 0.95rem);
  font-weight:600;
  padding:6px 16px;
  border-radius:999px;
  border:1px solid #fff;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;           /* keeps text on one line until very narrow [web:52][web:59] */
}

.top-login:hover {
  background:#fff;
  color:#05051a;
}

/* extra safety for very narrow devices */
@media (max-width:480px) {
  .top-bar-inner {
    padding-inline:4vw;
  }
  .top-login {
    padding:6px 10px;
  }
}
    body { margin:0; font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; color:#111; background:#f5f5f7; }
    a { color:#b3002d; text-decoration:none; }
    header, section, footer { padding:60px 7vw; box-sizing:border-box; }

    /* TOP BAR WITH LOGIN */
    .top-bar {
      border-top:4px solid #b3002d;
      background:#05051a;
      color:#fff;
    }
    .top-bar-inner {
      max-width:1200px;
      margin:0 auto;
      padding:10px 7vw;
      display:flex;
      align-items:center;
      justify-content:space-between;
      box-sizing:border-box;
    }
    .top-bar-left { /* placeholder for future menu or logo */ }
    .top-bar-right { text-align:right; }
    .top-login {
      font-size:0.9rem;
      font-weight:600;
      padding:6px 16px;
      border-radius:999px;
      border:1px solid #fff;
      color:#fff;
      text-decoration:none;
    }
    .top-login:hover {
      background:#fff;
      color:#05051a;
    }

    /* HERO */
    .hero {
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:40px;
      background:#05051a;
      color:#fff;
    }
    .hero-text { flex:1 1 320px; }
    .hero-title { font-size:2.5rem; margin:0 0 10px; }
    .hero-subtitle { font-size:1.1rem; margin:0 0 24px; max-width:560px; }
    .hero-ctas { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:18px; }
    .btn-primary,
    .btn-outline {
      display:inline-block;
      padding:10px 20px;
      border-radius:999px;
      font-weight:600;
      font-size:0.95rem;
    }
    .btn-primary { background:#b3002d; color:#fff; border:2px solid #b3002d; }
    .btn-outline { background:transparent; color:#fff; border:2px solid #fff; }
    .hero-meta { font-size:0.9rem; opacity:0.85; }

    /* RIGHT HERO IMAGE SLOT */
    .hero-image {
      flex:0 0 45%;
      min-width:360px;
      height:280px;
      border-radius:16px;
      background:#222;
      background-image:url('execed-hero.jpg'); /* place your hero banner image here */
      background-size:cover;
      background-position:center;
    }

    .section-eyebrow { text-transform:uppercase; letter-spacing:0.12em; font-size:0.8rem; color:#b3002d; margin-bottom:6px; }
    h2 { margin:0 0 10px; font-size:1.8rem; }
    .section-lead { margin:0 0 24px; max-width:640px; color:#444; }

    .pill-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
    .pill { padding:5px 14px; border-radius:999px; background:#fff; border:1px solid #ddd; font-size:0.8rem; }

    .cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }
    .card {
      background:#fff; border-radius:16px; padding:20px;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
      display:flex; flex-direction:column; gap:10px;
    }
    .card-tag { font-size:0.8rem; text-transform:uppercase; letter-spacing:0.08em; color:#b3002d; }
    .card-title { font-size:1.05rem; font-weight:600; margin:0; }
    .card-meta { font-size:0.85rem; color:#666; }
    .card-body { font-size:0.9rem; color:#444; }
    .card-link { margin-top:auto; font-size:0.9rem; font-weight:600; }

    .course-list { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:12px; margin-top:10px; }
    .course-pill {
      background:#fff; border-radius:999px; padding:10px 16px;
      font-size:0.9rem; border:1px solid #e1e1e6;
      display:flex; justify-content:space-between; align-items:center; gap:8px;
    }
    .course-pill span:first-child { font-weight:500; }

    .profile {
      display:flex; flex-wrap:wrap; gap:30px; align-items:flex-start;
      background:#fff; border-radius:18px; padding:24px 26px;
      box-shadow:0 10px 30px rgba(0,0,0,0.04);
    }
    .profile-photo {
      width:120px; height:120px; border-radius:50%;
      background:#ddd; background-size:cover; background-position:center;
      background-image:url('profile-placeholder.jpg'); /* optional */
    }
    .profile-content { flex:1 1 260px; }
    .profile-name { font-weight:700; margin-bottom:4px; }
    .profile-role { font-size:0.9rem; color:#666; margin-bottom:10px; }
    .profile-text { font-size:0.9rem; color:#444; }

    footer {
      background:#0a0a23; color:#ccc; text-align:center; padding:24px 7vw;
      font-size:0.85rem;
    }
    .footer-row { display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; align-items:center; }
    .login-link { font-weight:600; color:#ffcc33; }

    @media (max-width:900px) {
      header, section, footer { padding:32px 5vw; }
      .hero { padding-top:40px; padding-bottom:40px; }
      .hero-title { font-size:2rem; }
      .hero-image { flex:1 1 100%; min-width:100%; height:220px; }
    }