/* Give the whole section its own dark background */
.discipline-section {
  position: relative;
  width: 100vw;
  margin: 0;                 /* no extra space below */
  padding: 80px 0 30px 0;    /* small bottom padding only */
  background: radial-gradient(circle at top, #303449 0%, #181a22 55%, #0f1017 100%);
  z-index: 1;
  overflow: hidden;
}



/* inner content wrapper so cards stay centered */
.discipline-section > .section-title,
.discipline-section > .discipline-buttons {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 6vw;
  padding-right: 6vw;
}


/* Full blurred overlay with “COMING SOON!!” */
.discipline-coming-soon {
  position: absolute;
  inset: 0;                            /* top/right/bottom/left = 0 */
  width: 100%;
  height: 100%;
  background: rgba(7, 8, 14, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}


/* Center pill card */
.discipline-coming-soon .coming-card {
  padding: 1.4em 2.8em;
  border-radius: 999px;
  background: rgba(15, 17, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
}

.discipline-coming-soon p {
  margin: 0;
  font-size: 1.35em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fdfdfd;
}

.discipline-buttons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 3em 0 2em 0;
}
.discipline-btn {
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 24px;
  font-size: 2.1em;
  font-weight: 900;
  color: #f5fbf1;
  text-shadow: 1px 2px 24px #1b115d77, 0 1px 0 #0008;
  padding: 2.3em 2.7em;
  cursor: pointer;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 4px 42px #0005, 0 2px 8px #67e2ae33;
  outline: none;
  overflow: hidden;
  margin-bottom: 0;
}
.discipline-btn span {
  background: rgba(32,30,45,0.61);
  padding: .16em 1.2em;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1.15em;
}
.discipline-btn:hover, .discipline-btn:focus {
  transform: scale(1.03) translateY(-6px) rotate(-1.3deg);
  color: #67e2ae;
  box-shadow: 0 8px 54px #67e2ae33, 0 2px 8px #67e2ae55;
}
.discipline-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgba(20,20,32,0.86);
}
.discipline-overlay.active {
  display: flex !important;
}
.discipline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.72);
  opacity: 0.92;
}
.discipline-content {
  background: linear-gradient(112deg,#32343ac9 60%,#1e2029c7 120%);
  border-radius: 32px;
  box-shadow: 0 8px 36px #67e2ae32;
  padding: 3em 2.8em 2.6em 2.8em;
  margin: auto;
  max-width: 540px;
  min-width: 260px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.discipline-content h1 {
  color: #e32988;
  font-size: 2.15em;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 1.5em;
  text-align: center;
  text-shadow: 0 1px 0 #1a131aa7, 0 12px 28px #0004;
}
.discipline-content p {
  font-size: 1.19em;
  color: #cdfbea;
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.5;
}
.discipline-subgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: center;
  margin-top: 2.4em;
}
.sub-btn {
  min-width: 170px;
  background: linear-gradient(110deg, #67e2ae 50%, #22232c 100%);
  color: #1a1b20;
  font-size: 1.09em;
  font-weight: 700;
  border: none;
  border-radius: 13px;
  box-shadow: 0 2px 22px #67e2ae19;
  padding: 1.2em 1.8em;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background .16s, color .16s, box-shadow .16s, transform .16s;
}
.sub-btn:hover, .sub-btn:focus {
   background:linear-gradient(108deg,#23263a 25%,#67e2ae 98%);
   color:#cffbe6;
   transform: scale(1.05) rotate(-2deg);
   box-shadow: 0 9px 32px #e3299959;
}
.close-overlay-btn {
  position: absolute;
  right: 38px; top: 41px;
  z-index: 15;
  font-size: 2.5em;
  color: #ffd0ed;
  font-weight: bold;
  background: rgba(34,34,44,0.67);
  border: none;
  border-radius: 16px;
  transition: background .17s, color .17s;
  padding: 0 0.51em;
  cursor: pointer;
}
.close-overlay-btn:hover, .close-overlay-btn:focus { background:#e32999; color:#fff;}
@media (max-width: 900px){
  .discipline-buttons {
    flex-direction: column;
    gap: 24px;
  }
  .discipline-btn { font-size:1.25em; padding:1.5em 1.8em;}
  .discipline-content { padding:1.8em 1.1em 2em 1.1em; }
}
@media (max-width: 600px){
  .discipline-content { padding: 1.15em 0.3em 1.25em 0.3em;}
  .close-overlay-btn { right:14px; top:17px; font-size:2em;}
}

.discipline-overlay {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  align-items: center;
  justify-content: center;
  background: rgba(20,20,32,0.98) !important; /* Near solid—hide hero completely! */
  z-index: 9999999 !important;
  pointer-events: all;
}
.discipline-overlay.active {
  display: flex !important;
}
.discipline-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
  filter: blur(7px) brightness(0.8);
  opacity: 0.93;
  z-index: 0;
  pointer-events: none;
}
.close-overlay-btn {
  z-index: 10;
}
.discipline-content {
  z-index: 8;
  /* existing styles */
}
body.modal-open, html.modal-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100vw !important;
  height: 100vh !important;
  inset: 0 !important;
}
