:root {
  --primary: #d19fff;
  --primary-light: #e8ccff;
  --primary-dark: #b06ef0;
  --ink: #180f2a;
  --blue: #834dfb;
  --pink: #ffc5de;
  --orange: #ff7100;
  --green: #00c156;
  --yellow: #f7d100;
  --lemony: #efff74;
  --vanilla: #fbf6e9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: 'Satoshi', sans-serif;
  color: var(--ink);
  background: linear-gradient(170deg, #f3e6ff 0%, #eddaff 30%, #e0c7fc 100%);
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* === Ambient Background === */
.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  filter: blur(150px);
  border-radius: 50%;
  opacity: 0.45;
  animation: floatBlobs 22s ease-in-out infinite alternate;
}

.shape-1 {
  width: 55vw;
  height: 55vw;
  background: var(--primary);
  top: -25%;
  left: -15%;
}

.shape-2 {
  width: 50vw;
  height: 50vw;
  background: var(--pink);
  bottom: -15%;
  right: -15%;
  animation-delay: -6s;
}

.shape-3 {
  width: 35vw;
  height: 35vw;
  background: var(--primary-light);
  top: 40%;
  left: 40%;
  opacity: 0.3;
  animation-delay: -12s;
}

@keyframes floatBlobs {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(30px, -30px);
  }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .35;
}

/* === Utilities === */
.container {
  width: min(1080px, 92%);
  margin: auto;
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.full-width {
  grid-column: 1 / -1;
}

/* === Glassmorphism === */
.glass {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(24, 15, 42, 0.06);
}

.card {
  padding: 40px;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(24, 15, 42, 0.08);
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(1120px, 95%);
  margin: 14px auto;
  border-radius: 18px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--blue);
}

nav a.nav-cta {
  background: var(--primary);
  color: var(--ink);
  padding: 8px 22px;
  border-radius: 99px;
  font-weight: 800;
  transition: background 0.2s, color 0.2s;
}

nav a.nav-cta:hover {
  background: var(--blue);
  color: #fff;
}

/* === Language Toggle === */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding: 7px 16px;
  border: 2px solid rgba(131, 77, 251, 0.35);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-family: 'Satoshi', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(131, 77, 251, 0.2);
}

#langFlag {
  font-size: 1.1rem;
  line-height: 1;
}

/* === Hero === */
.hero {
  padding: 90px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.chip {
  display: inline-block;
  background: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.slogan {
  font-size: 1.2rem;
  color: #4a3668;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.meta {
  color: #5c3d8f;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-illu img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 16px 30px rgba(131, 77, 251, 0.12));
}

/* === Buttons === */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(131, 77, 251, 0.25);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(131, 77, 251, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--ink);
}

.btn.full-width {
  width: 100%;
  border-radius: 99px;
  padding: 16px;
  font-size: 1.1rem;
}

.submit-btn {
  background: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(176, 110, 240, 0.3);
}

.submit-btn:hover {
  background: var(--blue);
}

/* === Countdown === */
.count-card {
  padding: 36px;
  border-radius: 24px;
  text-align: center;
  border-left: 6px solid var(--primary);
}

.count-badge {
  display: inline-block;
  background: var(--primary);
  padding: 6px 16px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.count-value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -1px;
}

/* === Typography === */
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.about-clean {
  max-width: 900px;
  margin: auto;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.6;
}

.about-clean p {
  line-height: 1.75;
  color: #3e2c5a;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* === Axes Grid === */
.axes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.axis {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border: 1px solid rgba(209, 159, 255, 0.3);
  box-shadow: 0 4px 12px rgba(24, 15, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.axis:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 15, 42, 0.08);
}

.axis-sante {
  border-bottom: 3px solid var(--pink);
}

.axis-env {
  border-bottom: 3px solid var(--green);
}

.axis-indus {
  border-bottom: 3px solid var(--orange);
}

.axis-data {
  border-bottom: 3px solid var(--blue);
}

/* === Programme Section === */
.programme-header {
  margin-bottom: 36px;
}

.programme-header h2 {
  margin-bottom: 8px;
}

/* Milestone progress bar */
.milestone-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 32px;
  border-radius: 18px;
  margin-bottom: 32px;
}

.ms-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ms-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(209, 159, 255, 0.35);
  border: 3px solid var(--primary);
  flex-shrink: 0;
  transition: all 0.3s;
}

.ms-dot.active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(131, 77, 251, 0.2);
}

.ms-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ms-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.ms-text span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}

.ms-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(209, 159, 255, 0.3));
  margin: 0 16px;
  min-width: 30px;
}

/* Day cards grid */
.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.day-card {
  padding: 32px 28px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(24, 15, 42, 0.1);
}

.day-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.day-card-1::before { background: linear-gradient(90deg, var(--yellow), #ffe066); }
.day-card-2::before { background: linear-gradient(90deg, var(--orange), #ff9a44); }
.day-card-3::before { background: linear-gradient(90deg, var(--green), #44d98c); }

.day-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--primary-dark), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.6;
}

.day-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.day-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}

.day-card p {
  font-size: 0.95rem;
  color: #4a3668;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.day-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.day-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(209, 159, 255, 0.15);
  color: var(--blue);
  border: 1px solid rgba(209, 159, 255, 0.25);
}

/* === Programme / Timeline (legacy compat) === */
.timeline {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.timeline-day {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(209, 159, 255, 0.3);
  transition: transform 0.2s;
}

.timeline-day:hover {
  transform: translateX(4px);
}

.timeline-day h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-day h3 span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(209, 159, 255, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
}

.timeline-day p {
  margin: 0;
  color: #4a3668;
  font-weight: 500;
}

.timeline-day.day-1 {
  border-left: 5px solid var(--yellow);
}

.timeline-day.day-2 {
  border-left: 5px solid var(--orange);
}

.timeline-day.day-3 {
  border-left: 5px solid var(--green);
}

/* === Form === */
.register-card {
  max-width: 820px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(209, 159, 255, 0.4);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input::placeholder,
textarea::placeholder {
  color: #9685ad;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(209, 159, 255, 0.2);
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a3668;
  cursor: pointer;
}

.check input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.disclaimer {
  text-align: center;
  color: #63508a;
  margin: 16px 0;
  line-height: 1.5;
  background: rgba(209, 159, 255, 0.1);
  padding: 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

/* === Footer === */
.footer {
  margin-top: 60px;
  padding: 0 0 40px;
}

.footer-card {
  border-radius: 24px;
  padding: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-tagline {
  font-weight: 700;
  font-size: 1.05rem;
  color: #4a3668;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-divider {
  height: 1px;
  background: rgba(209, 159, 255, 0.25);
  margin: 24px 0;
}

.footer-contacts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-pill {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(209, 159, 255, 0.1);
  border: 1px solid rgba(209, 159, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pill-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blue);
}

.contact-pill strong {
  font-size: 1rem;
  color: var(--ink);
}

.contact-pill span,
.contact-pill a {
  font-size: 0.95rem;
  color: #5c3d8f;
  text-decoration: none;
  font-weight: 600;
}

.contact-pill a:hover {
  text-decoration: underline;
  color: var(--blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 0;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: #4a3668;
  font-weight: 600;
}

.footer-copy {
  font-size: 0.82rem !important;
  color: #8a7aaa !important;
  font-weight: 500 !important;
  margin-top: 4px;
}

/* === Modal === */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 15, 42, 0.45);
  display: grid;
  place-items: center;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.hidden {
  display: none !important;
}

.modal-content {
  width: min(480px, 92%);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.close-btn {
  position: absolute;
  right: 18px;
  top: 16px;
  border: none;
  background: rgba(24, 15, 42, 0.06);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.close-btn:hover {
  background: rgba(24, 15, 42, 0.12);
}

.end-msg {
  color: #5b4477;
  font-weight: 600;
  margin-top: 16px;
}

/* === Chatbot === */
.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 8px 22px rgba(131, 77, 251, 0.3);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle:hover {
  transform: scale(1.08);
}

.chat-box {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 350px;
  border-radius: 18px;
  overflow: hidden;
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(24, 15, 42, 0.15);
}

.chat-head {
  padding: 14px 18px;
  font-weight: 800;
  background: var(--primary);
  color: var(--ink);
}

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
}

.msg {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}

.user {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bot {
  align-self: flex-start;
  background: #f0e6f6;
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.chat-input-wrap {
  display: flex;
  padding: 10px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  gap: 8px;
}

.chat-input-wrap input {
  border: 1px solid #e2daf0;
  border-radius: 99px;
  padding: 10px 14px;
  flex: 1;
}

.chat-input-wrap button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chat-input-wrap button:hover {
  background: var(--blue);
  color: #fff;
}

/* === Animations === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Countdown Enhancements === */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.count-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === About Split Layout === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
}

.about-content p {
  color: var(--ink);
  opacity: 0.85;
}

.about-axes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.axis-card {
  padding: 24px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(24, 15, 42, 0.03);
  transition: all 0.3s ease;
}

.axis-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 25px rgba(131, 77, 251, 0.1);
}

.axis-icon {
  font-size: 2rem;
  background: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.axis-card p {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

/* === Responsive === */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .days-grid {
    grid-template-columns: 1fr;
  }

  .milestone-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .ms-line {
    width: 2px;
    height: 20px;
    margin: 0 0 0 6px;
    background: linear-gradient(180deg, var(--primary), rgba(209, 159, 255, 0.3));
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-contacts {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}

/* ===== PROGRAMME SECTION — Premium Redesign ===== */

/* Header */
.prog-header {
  margin-bottom: 48px;
}

.prog-header h2 {
  margin-bottom: 8px;
}

/* --- Milestone Tracker --- */
.prog-milestones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 20px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(24, 15, 42, 0.06);
}

.prog-ms-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 0 12px;
}

.prog-ms-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(209, 159, 255, 0.3);
  border: 3px solid rgba(209, 159, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
}

.prog-ms-dot.dot-active {
  background: var(--blue);
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(131, 77, 251, 0.15), 0 0 20px rgba(131, 77, 251, 0.2);
  animation: msPulse 2.5s ease-in-out infinite;
}

@keyframes msPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(131, 77, 251, 0.15), 0 0 20px rgba(131, 77, 251, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(131, 77, 251, 0.08), 0 0 30px rgba(131, 77, 251, 0.15); }
}

.prog-ms-label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
}

.prog-ms-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

.prog-ms-line {
  flex: 1;
  height: 3px;
  min-width: 40px;
  background: linear-gradient(90deg, rgba(131, 77, 251, 0.3), rgba(209, 159, 255, 0.3));
  border-radius: 99px;
  margin: 0 8px;
  margin-bottom: 28px;
}

/* --- Day Tabs --- */
.prog-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.prog-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  border-radius: 18px;
  border: 2px solid rgba(209, 159, 255, 0.2);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.prog-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.prog-tab > * {
  position: relative;
  z-index: 1;
}

.prog-tab:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(131, 77, 251, 0.12);
}

.prog-tab.active {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(131, 77, 251, 0.25);
}

.prog-tab.active::before {
  opacity: 1;
}

.prog-tab-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1;
  transition: color 0.35s ease;
}

.prog-tab.active .prog-tab-num {
  color: rgba(255, 255, 255, 0.5);
}

.prog-tab-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.35s ease;
}

.prog-tab.active .prog-tab-name {
  color: #fff;
}

.prog-tab-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a6898;
  transition: color 0.35s ease;
}

.prog-tab.active .prog-tab-date {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Day Panels --- */
.prog-panels {
  position: relative;
}

.prog-panel {
  display: none;
  animation: panelFadeIn 0.45s ease;
}

.prog-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Day Hero Banner --- */
.prog-day-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  border-radius: 20px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.prog-day-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: radial-gradient(circle at 80% 50%, white, transparent 60%);
}

.day-hero-1 {
  background: linear-gradient(135deg, #f7d100 0%, #ffb347 100%);
}

.day-hero-2 {
  background: linear-gradient(135deg, #ff7100 0%, #ff4e50 100%);
}

.day-hero-3 {
  background: linear-gradient(135deg, #00c156 0%, #00d2a4 100%);
}

.prog-day-hero-content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.prog-day-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
}

.prog-day-hero-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  letter-spacing: -4px;
  user-select: none;
}

/* --- Event Timeline --- */
.prog-events {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 80px;
}

.prog-events::before {
  content: '';
  position: absolute;
  left: 79px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(209, 159, 255, 0.15) 100%);
  border-radius: 99px;
}

.prog-event {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px 18px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.prog-event:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(131, 77, 251, 0.08);
}

.prog-event:last-child {
  margin-bottom: 0;
}

.prog-event-time {
  position: absolute;
  left: -80px;
  top: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue);
  width: 56px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.prog-event-dot {
  position: absolute;
  left: -6px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(209, 159, 255, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.prog-event:hover .prog-event-dot {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(131, 77, 251, 0.2);
  transform: scale(1.2);
}

.prog-event-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
}

.prog-event-body p {
  font-size: 0.95rem;
  color: #4a3668;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* === Form === */
.register-card {
  max-width: 820px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(209, 159, 255, 0.4);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input::placeholder,
textarea::placeholder {
  color: #9685ad;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(209, 159, 255, 0.2);
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a3668;
  cursor: pointer;
}

.check input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.disclaimer {
  text-align: center;
  color: #63508a;
  margin: 16px 0;
  line-height: 1.5;
  background: rgba(209, 159, 255, 0.1);
  padding: 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

/* === Footer === */
.footer {
  margin-top: 60px;
  padding: 0 0 40px;
}

.footer-card {
  border-radius: 24px;
  padding: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-tagline {
  font-weight: 700;
  font-size: 1.05rem;
  color: #4a3668;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-divider {
  height: 1px;
  background: rgba(209, 159, 255, 0.25);
  margin: 24px 0;
}

.footer-contacts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-pill {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(209, 159, 255, 0.1);
  border: 1px solid rgba(209, 159, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pill-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blue);
}

.contact-pill strong {
  font-size: 1rem;
  color: var(--ink);
}

.contact-pill span,
.contact-pill a {
  font-size: 0.95rem;
  color: #5c3d8f;
  text-decoration: none;
  font-weight: 600;
}

.contact-pill a:hover {
  text-decoration: underline;
  color: var(--blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 0;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: #4a3668;
  font-weight: 600;
}

.footer-copy {
  font-size: 0.82rem !important;
  color: #8a7aaa !important;
  font-weight: 500 !important;
  margin-top: 4px;
}

/* === Modal === */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 15, 42, 0.45);
  display: grid;
  place-items: center;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.hidden {
  display: none !important;
}

.modal-content {
  width: min(480px, 92%);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.close-btn {
  position: absolute;
  right: 18px;
  top: 16px;
  border: none;
  background: rgba(24, 15, 42, 0.06);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.close-btn:hover {
  background: rgba(24, 15, 42, 0.12);
}

.end-msg {
  color: #5b4477;
  font-weight: 600;
  margin-top: 16px;
}



/* === Animations === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-contacts {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }

  nav {
    display: none;
  }
}

/* =========================================
   UI/UX IMPROVEMENTS (Add to bottom)
========================================= */

/* Countdown Enhancements */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.count-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* About Section Enhancements (Split Layout) */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
}

.about-content p {
  color: var(--ink);
  opacity: 0.85;
}

/* Bento-style Axes Grid */
.about-axes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.axis-card {
  padding: 24px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(24, 15, 42, 0.03);
  transition: all 0.3s ease;
}

.axis-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 25px rgba(131, 77, 251, 0.1);
}

.axis-icon {
  font-size: 2rem;
  background: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.axis-card p {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

/* Responsive adjustments for new split layouts */
@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  /* Programme responsive */
  .prog-milestones {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .prog-ms-line {
    width: 3px;
    height: 20px;
    min-width: unset;
    margin: 0;
    margin-left: 0;
  }

  .prog-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .prog-tab {
    flex-direction: row;
    gap: 12px;
    padding: 14px 18px;
  }

  .prog-tab-num {
    font-size: 1.3rem;
  }

  .prog-day-hero {
    padding: 24px;
  }

  .prog-day-hero-number {
    font-size: 3rem;
  }

  .prog-day-hero-content h3 {
    font-size: 1.3rem;
  }

  .prog-events {
    padding-left: 60px;
  }

  .prog-events::before {
    left: 59px;
  }

  .prog-event-time {
    left: -60px;
    width: 44px;
    font-size: 0.8rem;
  }

  .prog-event {
    padding: 14px 16px;
  }

  .prog-event-body h4 {
    font-size: 1rem;
  }

  .prog-event-body p {
    font-size: 0.88rem;
  }
}