:root {
  /* Dynamic Palette: Royal Sapphire Blue paired with Deep Maroon & Warm Amber */
  --blue-main: #0284c7;
  --blue-dark: #0369a1;
  --blue-deep: #0f172a;
  
  --maroon-primary: #9f1239;   /* Rich Maroon/Crimson Accent */
  --maroon-dark: #881337;     /* Deep Wine/Maroon */
  --maroon-light: #fff1f2;    /* Soft Rose Cream */

  --blue-night: #1e1b4b;      /* Deep Royal Indigo/Blue */
  --blue-light: #f0f9ff;
  --blue-glow: rgba(159, 18, 57, 0.15);

  --warm-cream: #fbf8f3;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;

  --text-dark: #0f172a;
  --text-muted: #475569;

  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-gold-light: #fef3c7;

  --border-warm: #e6dfd5;
  --border-gold: #fde68a;
  --border-maroon: #fecdd3;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(159, 18, 57, 0.12);
  --shadow-lg: 0 16px 40px rgba(159, 18, 57, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Sticky Announcement Banner (Maroon-Blue Contrast) */
.top-banner {
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-banner .badge-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-section {
  padding: 36px 0 24px 0;
  text-align: center;
}

.hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--maroon-light);
  color: var(--maroon-primary);
  border: 1px solid var(--border-maroon);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
}

.main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--blue-night);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.main-title span {
  color: var(--maroon-primary);
  background: linear-gradient(135deg, var(--maroon-primary) 0%, #be123c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-title-box {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 840px;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-sm);
}

/* Timeline Interactive Graphic Bar */
.timeline-bar-graphic {
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  color: #ffffff;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 20px 24px;
  margin: 0 auto 28px auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.timeline-nodes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 12px;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.node-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon-primary);
  border: 2px solid var(--accent-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.node-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.node-sub {
  font-size: 0.8rem;
  color: #e2e8f0;
}

.timeline-connector-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #f43f5e 0%, var(--accent-gold) 50%, #f43f5e 100%);
  z-index: 1;
}

/* Carrying Points Grid */
.carrying-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.carrying-point-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-top: 4px solid var(--maroon-primary);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.2s ease;
}

.carrying-point-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.carrying-img-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.carrying-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrying-point-text {
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.quote-box-callout {
  background: var(--maroon-light);
  border: 2px dashed var(--maroon-primary);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 24px;
}

.event-details-card {
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  color: #ffffff;
  border: 1px solid var(--accent-gold);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.event-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.event-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.event-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.event-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.event-divider-vertical {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
}

.cta-card {
  background: var(--bg-card);
  border: 2px solid var(--border-maroon);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
  text-align: center;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.price-original {
  text-decoration: line-through;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
}

.price-discount {
  color: var(--maroon-primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.price-badge {
  background-color: var(--accent-gold-light);
  color: #92400e;
  border: 1px solid var(--border-gold);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: #0f172a;
  text-align: center;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
}

.btn-attention {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  }
  50% {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    transform: scale(1.02);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-tag {
  display: inline-block;
  background: var(--maroon-light);
  color: var(--maroon-primary);
  border: 1px solid var(--border-maroon);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--blue-night);
  font-weight: 800;
  margin-bottom: 6px;
}

.next-chapter-section {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.next-chapter-box {
  background: var(--maroon-light);
  border: 1px solid var(--border-maroon);
  border-radius: 16px;
  padding: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 16px auto 0 auto;
  color: var(--maroon-dark);
}

.experience-section {
  margin-bottom: 28px;
}

.experience-grid, .includes-grid, .who-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.experience-card, .include-card, .who-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 14px);
  min-width: 280px;
  max-width: 310px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card:hover, .include-card:hover, .who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--maroon-primary);
}

.exp-img-wrap, .include-img-wrap, .who-img-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.exp-img-wrap img, .include-img-wrap img, .who-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experience-card:hover .exp-img-wrap img {
  transform: scale(1.06);
}

.exp-icon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-maroon);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.exp-card-body, .include-card-body, .who-card-body {
  padding: 18px;
  flex-grow: 1;
}

.exp-card-title, .include-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-night);
  margin-bottom: 6px;
}

.exp-card-desc, .include-card-desc, .who-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.includes-section {
  background: var(--warm-cream);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.include-card {
  background: var(--bg-card);
}

.trans-matrix-section {
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--accent-gold);
}

.matrix-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.matrix-col {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
}

.matrix-col-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.matrix-col-title.before {
  color: #fca5a5;
}

.matrix-col-title.after {
  color: #fde68a;
}

.matrix-list {
  list-style: none;
}

.matrix-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.matrix-list li:last-child {
  border-bottom: none;
}

.who-section {
  margin-bottom: 28px;
}

.who-tag {
  font-size: 1rem;
  font-weight: 800;
  color: var(--maroon-primary);
  margin-bottom: 4px;
  display: block;
}

.why-section {
  background: var(--maroon-light);
  border: 1px solid var(--border-maroon);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border-left: 5px solid var(--maroon-primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.why-img-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-body {
  padding: 16px;
}

.why-card-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-night);
  margin-bottom: 4px;
}

.why-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.life-shifts-section {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.shifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.shift-card {
  background: var(--warm-cream);
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  padding: 16px 18px;
}

.shift-from {
  font-size: 0.85rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.shift-to {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--maroon-primary);
}

.curriculum-section {
  margin-bottom: 28px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.curriculum-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.curriculum-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--maroon-primary);
  background: var(--maroon-light);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.curriculum-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-night);
  margin-bottom: 8px;
}

.curriculum-sublist {
  list-style: none;
}

.curriculum-sublist li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.special-focus-callout {
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  color: #ffffff;
  border: 2px solid var(--accent-gold);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 24px;
}

.takeaways-section {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.takeaway-card {
  background: var(--maroon-light);
  border: 1px solid var(--border-maroon);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.takeaway-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--maroon-dark);
  margin-bottom: 6px;
}

.takeaway-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.coaches-section {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 36px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.mentors-dual-frame-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 28px auto;
}

.mentor-frame-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentor-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  border: 3px solid var(--accent-gold);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 19, 43, 0.25);
  transition: transform 0.25s ease;
}

.mentor-frame-card:hover .mentor-photo-wrap {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(159, 18, 57, 0.35);
}

.mentor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mentor-name-label {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--blue-night);
  margin-top: 14px;
}

.coaches-bio-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--warm-cream);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 22px 24px;
}

.modality-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.modality-tag {
  background: var(--bg-card);
  color: var(--maroon-dark);
  border: 1px solid var(--border-maroon);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
}

.transformations-section {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.trans-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-maroon);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trans-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--maroon-primary);
}

.trans-img-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.trans-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trans-card-item:hover .trans-img-wrap img {
  transform: scale(1.06);
}

.trans-card-body {
  background: var(--maroon-light);
  padding: 16px;
  text-align: center;
  font-weight: 800;
  color: var(--maroon-dark);
  font-size: 1.02rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.past-chapter-section {
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--maroon-dark) 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 36px 24px;
  margin-bottom: 28px;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

.past-chapter-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.past-chapter-text p {
  margin-bottom: 12px;
}

.site-footer {
  background: var(--blue-night);
  color: #ffffff;
  padding: 40px 20px 24px 20px;
  text-align: center;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-brand span {
  color: var(--maroon-primary);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border: 2px solid var(--border-warm);
  border-radius: 20px;
  padding: 28px 24px;
  width: 90%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-night);
  margin-bottom: 6px;
}

.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-warm);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--maroon-primary);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

@media (max-width: 600px) {
  .matrix-comparison-grid {
    grid-template-columns: 1fr;
  }
  .mentors-dual-frame-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .event-divider-vertical {
    display: none;
  }
  .event-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary {
    font-size: 1.15rem;
    padding: 14px 20px;
  }
  .experience-card, .include-card, .who-card {
    width: 100%;
    max-width: 100%;
  }
}

/*continuous button animation*/
.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.8); /* Normal size */
  }
  50% {
    transform: scale(0.9); /* Grows bigger / comes out toward viewer */
  }
}