/* GLOBAL -------------------------------------------------- */

:root {
  --bg: #070707;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --panel: rgba(255, 255, 255, 0.03);
  --max-width: 1400px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1px 40px 140px 40px;
}

/* HEADER -------------------------------------------------- */

.site-header {
  width: 100%;
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px;
  z-index: 10;
}

.logo {
  height: 64px;
  width: auto;
  animation: logoPulse 4.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
  will-change: transform, filter;
  margin-right: 15px;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.55));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.25));
  }
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
}

.brand-tag {
  font-size: 13px;
  opacity: 0.85;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.cta-join {
  background: #fff;
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* HERO INTRO -------------------------------------------------- */

.hero-intro h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.55;
  color: #dcdcdc;
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.sub {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
  color: #c8c8c8;
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.os-title {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.os-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
  color: #c8c8c8;
  max-width: 760px;
}

/* ROLE TOGGLE -------------------------------------------------- */

.role-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.role-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.role-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* TWO-COLUMN LAYOUT -------------------------------------------------- */

.vignette-and-image {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  margin-bottom: 100px;
  align-items: start;
}

.vignette-and-info-image {
  display: grid;
  grid-template-columns: 1fr 420px 440px;
  gap: 48px;
  margin-bottom: 100px;
  align-items: start;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.role-info {
  display: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 10px;
  color: var(--muted);
}

.role-info.active {
  display: block;
}

.role-info h4 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #fff;
}

.role-info p {
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.role-info ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
}

.role-info ul li {
  margin: 8px 0;
  line-height: 1.5;
}

/* VIGNETTES -------------------------------------------------- */

.vignette {
  display: none;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 12px;
}

.vignette.active {
  display: block;
}

.vignette-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vignette-list li {
  margin: 10px 0;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
}

/* RIGHT COLUMN: IMAGES -------------------------------------------------- */

.image-column {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.role-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 380px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.3s ease;
}

.role-image.active {
  opacity: 1;
}

@media (max-width: 1100px) {
  .role-image {
    height: 300px !important;
    transition: opacity 0.8s ease;
  }
}

/* MODE TAGLINES -------------------------------------------------- */

.mode-taglines {
  margin: 80px 0;
  display: grid;
  gap: 12px;
}

.mode-line {
  font-size: 16px;
  color: var(--muted);
}

/* SAMPLE PLAN -------------------------------------------------- */

.sample-plan {
  text-align: center;
  margin: 100px 0;
}

.sample-plan img {
  width: 90%;
  max-width: 900px;
  border-radius: 14px;
  filter: blur(6px);
  transition: filter 0.4s ease;
}

.sample-plan img.revealed {
  filter: none;
}

.reveal-btn {
  margin-top: 16px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.sample-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* FEATURES -------------------------------------------------- */

.modules h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 100px;
}

.feature-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 15px;
}

/* WHAT IS -------------------------------------------------- */

.what-is {
  margin: 100px 0;
}

.what-is h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.what-is p {
  color: var(--muted);
  max-width: 900px;
}

/* PILLARS -------------------------------------------------- */

.pillars {
  margin: 100px 0;
}

.pillars h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillars-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 10px;
  color: var(--muted);
}

/* AUDIENCE -------------------------------------------------- */

.audience {
  margin: 100px 0;
}

.audience h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.audience-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 10px;
  color: var(--muted);
}

/* WHY THIS EXISTS -------------------------------------------------- */

.why-exists {
  margin: 100px 0;
  text-align: center;
}

.why-exists h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.why-exists p {
  max-width: 900px;
  margin: 0 auto 24px auto;
  color: var(--muted);
}

.cta-join.large {
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 10px;
}

/* FOOTER -------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 40px;
  margin-top: 100px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav a {
  color: var(--muted);
  margin-left: 14px;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE -------------------------------------------------- */

@media (max-width: 1100px) {
  .vignette-and-image,
  .vignette-and-info-image {
    grid-template-columns: 1fr;
  }

  .image-column {
    height: 300px;
  }

  .feature-grid,
  .pillars-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .role-toggle {
    flex-wrap: wrap;
  }

  .sample-plan img {
    width: 100%;
  }
}

/* BLACK CARD -------------------------------------------------- */

.black-card-section {
  padding: 64px 24px;
  background: linear-gradient(180deg, #070707, #000);
  color: #fff;
}

.black-card-content {
  display: flex;
  gap: -5px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.black-card-text h3 {
  font-size: 1.25rem;
  margin: 0 0 1px;
  letter-spacing: 0.02em;
}

.black-card-text .lead {
  font-weight: 600;
  margin-bottom: 12px;
  color: #e9e9e9;
}

.black-card-text .body {
  max-width: 520px;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 16px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: #dcdcdc;
}

.card-features li {
  margin: 8px 0;
}

.cta {
  display: inline-block;
  padding: 10px 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.black-card-visual img {
  width: 360px;
  max-width: 40vw;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

@media (max-width: 800px) {
  .black-card-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .black-card-visual img {
    transform: rotate(-10deg);
    width: 400px;
  }
}

/* POINTS & REWARDS -------------------------------------------------- */

.points-rewards {
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 820px;
}

.points-rewards h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.framing-line {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: #dcdcdc;
  margin-bottom: 1.8rem;
  max-width: 760px;
}

.pr-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  color: #c8c8c8;
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.points-table-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 2.4rem 0 2.8rem 0;
  display: block;
}

.black-card-callout {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.black-card-callout h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.card-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: #c8c8c8;
  max-width: 720px;
  margin-bottom: 1rem;
}

.black-card-img {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO LAYOUT -------------------------------------------------- */

.hero-row {
  display: block;
  position: relative;
}

.hero-carousel {
  width: 320px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
}

.hero-text {
  margin-right: 280px;
}

.mini-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-img.active {
  opacity: 1;
}

/* --- Mobile layout fixes --- */
@media (max-width: 768px) {
  .hero-row {
    position: static;
    display: block;
    margin-bottom: 2rem;
  }

  .hero-text {
    margin-right: 0;
  }

  .hero-carousel {
    position: static;
    width: 180px;
    height: 180px;
    margin: 1.5rem auto 0 auto;
  }
}

/* Modal overlay */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0; /* full screen */
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 9999; /* above everything */
  align-items: center;
  justify-content: center;
}

/* Modal card */
.modal-card {
  background: #111;
  padding: 32px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12); /* NEW */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.25s ease;
  position: relative;
  z-index: 2;
}

/* Close button */
.modal-card-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 3;
}

/* Fade animation */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.email-form-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-label {
  font-size: 14px;
  color: #dcdcdc;
  margin-bottom: 4px;
}

.email-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-button {
  background: #3b82f6; /* blue */
  color: #fff;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease;
}

.email-button:hover {
  background: #2563eb;
}

.email-note {
  font-size: 13px;
  color: #b5b5b5;
  margin-top: 8px;
  text-align: center;
}

.cta-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* OVERLAY (dark, blurred background) */
.match-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeIn 0.25s ease-out;
}

/* MODAL BOX — glassmorphism */
.match-modal-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #ffffff;
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.25s ease-out;
}

/* CLOSE BUTTON */
.match-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.match-modal-close:hover {
  opacity: 1;
}

/* TYPOGRAPHY */
.match-modal-content h2 {
  margin-top: 0;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.match-modal-subtitle {
  margin-top: -10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.match-modal-body h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.match-modal-body ul {
  margin: 8px 0 16px 20px;
}

.match-modal-body li {
  color: rgba(255, 255, 255, 0.85);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* OVERLAY — dark, blurred, cinematic */
.match-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeIn 0.25s ease-out;
}

/* MODAL BOX — frosted glassmorphism */
.match-modal-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);

  color: #ffffff;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  animation: slideUp 0.25s ease-out;
}

/* CLOSE BUTTON */
.match-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.match-modal-close:hover {
  opacity: 1;
}

/* HEADINGS */
.match-modal-content h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.match-modal-subtitle {
  margin-top: -8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* SECTION HEADERS */
.match-modal-body h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LISTS */
.match-modal-body ul {
  margin: 10px 0 20px 22px;
  padding: 0;
}

.match-modal-body li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.realistic-plan-link {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.realistic-plan-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* BUTTON (glassmorphic) */
.boxing-plan-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.boxing-plan-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* OVERLAY */
.boxing-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeIn 0.25s ease-out;
}

/* MODAL BOX */
.boxing-modal-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);

  color: #ffffff;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  animation: slideUp 0.25s ease-out;
}

/* CLOSE BUTTON */
.boxing-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.boxing-modal-close:hover {
  opacity: 1;
}

/* HEADINGS */
.boxing-modal-content h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.boxing-modal-subtitle {
  margin-top: -8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* SECTION HEADERS */
.boxing-modal-body h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LISTS */
.boxing-modal-body ul {
  margin: 10px 0 20px 22px;
  padding: 0;
}

.boxing-modal-body li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* BUTTON */
.student-plan-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.student-plan-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* OVERLAY */
.student-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeIn 0.25s ease-out;
}

/* MODAL */
.student-modal-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  animation: slideUp 0.25s ease-out;
}

/* CLOSE BUTTON */
.student-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.student-modal-close:hover {
  opacity: 1;
}

/* HEADINGS */
.student-modal-content h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 700;
}

.student-modal-subtitle {
  margin-top: -8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* SECTION HEADERS */
.student-modal-body h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LISTS */
.student-modal-body ul {
  margin: 10px 0 20px 22px;
  padding: 0;
}

.student-modal-body li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* BUTTON */
.nutrition-plan-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.nutrition-plan-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* OVERLAY */
.nutrition-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeIn 0.25s ease-out;
}

/* MODAL */
.nutrition-modal-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  animation: slideUp 0.25s ease-out;
}

/* CLOSE BUTTON */
.nutrition-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.nutrition-modal-close:hover {
  opacity: 1;
}

/* HEADINGS */
.nutrition-modal-content h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 700;
}

.nutrition-modal-subtitle {
  margin-top: -8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* SECTION HEADERS */
.nutrition-modal-body h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* LISTS */
.nutrition-modal-body ul {
  margin: 10px 0 20px 22px;
  padding: 0;
}

.nutrition-modal-body li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
