/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a12;
  --bg-2:      #0f0f1e;
  --bg-3:      #13132a;
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --text:      #e8e8f0;
  --muted:     #7a7a9a;
  --red:       #ff4757;
  --red-glow:  rgba(255,71,87,0.25);
  --purple:    #7c5cbf;
  --purple-2:  #9b6fd4;
  --purple-glow: rgba(124,92,191,0.25);
  --green:     #2ed573;
  --green-2:   #1fba5e;
  --green-glow: rgba(46,213,115,0.25);
  --radius:    16px;
  --radius-sm: 8px;
  --font:      'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p  { color: var(--muted); line-height: 1.7; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }

.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--purple-2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,18,0.9);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}
.logo-bracket { color: var(--purple-2); }
.logo-dot     { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#matrixCanvas {
  width: 100%; height: 100%;
  opacity: 0.15;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(124,92,191,0.18) 0%,
    rgba(10,10,18,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 120px 24px 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(124,92,191,0.15);
  border: 1px solid rgba(124,92,191,0.3);
  color: var(--purple-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero-themes {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.theme-pill {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid;
}
.pill-red    { background: rgba(255,71,87,0.1);  border-color: rgba(255,71,87,0.3);  color: #ff6b7a; }
.pill-purple { background: rgba(124,92,191,0.1); border-color: rgba(124,92,191,0.3); color: var(--purple-2); }
.pill-green  { background: rgba(46,213,115,0.1); border-color: rgba(46,213,115,0.3); color: var(--green); }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: white;
  box-shadow: 0 4px 24px rgba(124,92,191,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,92,191,0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: var(--surface); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--purple-2));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-2);
  margin-bottom: 12px;
}
.section-header p { margin-top: 12px; font-size: 1rem; }

/* ===== INTRO ===== */
.intro {
  padding: 100px 0;
  background: var(--bg-2);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p  { margin-bottom: 16px; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: rgba(124,92,191,0.4); }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ===== ATELIERS ===== */
.ateliers {
  padding: 100px 0;
  background: var(--bg);
}
.ateliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.atelier-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.atelier-card:hover { transform: translateY(-6px); }
.atelier-card:hover .card-glow { opacity: 1; }

.card-red:hover    { border-color: rgba(255,71,87,0.4); box-shadow: 0 20px 60px var(--red-glow); }
.card-red .card-glow { box-shadow: inset 0 0 60px var(--red-glow); }
.card-red .card-icon, .card-red .card-number, .card-red .card-btn span { color: var(--red); }
.card-red .card-tags span { background: rgba(255,71,87,0.1); color: #ff6b7a; border-color: rgba(255,71,87,0.2); }
.card-red .card-btn:hover { color: var(--red); }

.card-purple:hover { border-color: rgba(124,92,191,0.5); box-shadow: 0 20px 60px var(--purple-glow); }
.card-purple .card-glow { box-shadow: inset 0 0 60px var(--purple-glow); }
.card-purple .card-icon, .card-purple .card-number, .card-purple .card-btn span { color: var(--purple-2); }
.card-purple .card-tags span { background: rgba(124,92,191,0.1); color: var(--purple-2); border-color: rgba(124,92,191,0.2); }
.card-purple .card-btn:hover { color: var(--purple-2); }

.card-green:hover  { border-color: rgba(46,213,115,0.4); box-shadow: 0 20px 60px var(--green-glow); }
.card-green .card-glow { box-shadow: inset 0 0 60px var(--green-glow); }
.card-green .card-icon, .card-green .card-number, .card-green .card-btn span { color: var(--green); }
.card-green .card-tags span { background: rgba(46,213,115,0.1); color: var(--green); border-color: rgba(46,213,115,0.2); }
.card-green .card-btn:hover { color: var(--green); }

.card-icon {
  width: 56px; height: 56px;
}
.card-icon svg { width: 100%; height: 100%; }

.card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.15;
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
}

.atelier-card h3 {
  font-size: 1.3rem;
  color: var(--text);
}

.atelier-card p {
  font-size: 0.9rem;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid;
}

.card-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
  font-family: var(--font);
  margin-top: 4px;
}
.card-btn span { font-size: 1.1rem; transition: transform var(--transition); }
.card-btn:hover span { transform: translateX(4px); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: #12121f;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: sticky;
  top: 16px;
  left: 100%;
  float: right;
  margin: 16px 16px 0 0;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

.modal-content { padding: 32px 40px 40px; clear: both; }

.modal-header { margin-bottom: 28px; }
.modal-icon {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.modal-header h2 { font-size: 2rem; margin-bottom: 8px; }
.modal-header p { font-size: 1rem; }

.modal-section { margin-bottom: 28px; }
.modal-section h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--muted);
}

.modal-objectives li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.modal-objectives li:last-child { border-bottom: none; }
.modal-objectives li::before {
  content: '→';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.fact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.fact-label { font-size: 0.75rem; color: var(--muted); }

.modal-resources { display: flex; flex-wrap: wrap; gap: 8px; }
.resource-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--muted);
}

.modal-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.modal-cta p { margin-bottom: 16px; font-size: 0.9rem; }

/* Modal color themes */
.modal-red  .modal-icon, .modal-red  .modal-header h2 { color: var(--red); }
.modal-red  .modal-objectives li::before { color: var(--red); }
.modal-red  .fact-value { color: var(--red); }
.modal-red  .modal-cta .btn-primary { background: linear-gradient(135deg, #c0392b, var(--red)); box-shadow: 0 4px 24px rgba(255,71,87,0.3); }

.modal-purple .modal-icon, .modal-purple .modal-header h2 { color: var(--purple-2); }
.modal-purple .modal-objectives li::before { color: var(--purple-2); }
.modal-purple .fact-value { color: var(--purple-2); }

.modal-green  .modal-icon, .modal-green  .modal-header h2 { color: var(--green); }
.modal-green  .modal-objectives li::before { color: var(--green); }
.modal-green  .fact-value { color: var(--green); }
.modal-green  .modal-cta .btn-primary { background: linear-gradient(135deg, var(--green-2), var(--green)); box-shadow: 0 4px 24px rgba(46,213,115,0.3); }

/* ===== PROGRAMME ===== */
.programme {
  padding: 100px 0;
  background: var(--bg-2);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(124,92,191,0.4);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
}
.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text);
}
.timeline-content p { font-size: 0.9rem; }
.time-badge {
  font-size: 0.75rem;
  background: rgba(124,92,191,0.15);
  color: var(--purple-2);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font);
}

/* ===== INSCRIPTION ===== */
.inscription {
  padding: 100px 0;
  background: var(--bg);
}

.inscription-form {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 3px rgba(124,92,191,0.15);
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  user-select: none;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}
.checkbox-red    input:checked + .checkbox-custom { background: var(--red);     border-color: var(--red); }
.checkbox-purple input:checked + .checkbox-custom { background: var(--purple-2); border-color: var(--purple-2); }
.checkbox-green  input:checked + .checkbox-custom { background: var(--green);   border-color: var(--green); }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  position: absolute;
  inset: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius);
}
.form-success svg { color: var(--green); }
.form-success h3 { font-size: 1.8rem; color: var(--text); }
.form-success p { font-size: 1rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { margin-top: 12px; font-size: 0.88rem; line-height: 1.7; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 4px; }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: var(--muted); }
.footer-links a:hover, .footer-contact a:hover { color: var(--text); }

.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact a { color: var(--purple-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ===== ACTIVITY CARDS ===== */
.activities-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-wrapper { display: flex; flex-direction: column; gap: 6px; }

.activity-number-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-left: 4px;
}

.activity-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.activity-card-red:hover    { border-color: rgba(255,71,87,0.35); }
.activity-card-purple:hover { border-color: rgba(124,92,191,0.4); }
.activity-card-green:hover  { border-color: rgba(46,213,115,0.35); }

.activity-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.activity-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.activity-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.activity-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.activity-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.activity-link-red    { color: var(--red);      border-color: rgba(255,71,87,0.3);  background: rgba(255,71,87,0.08); }
.activity-link-purple { color: var(--purple-2); border-color: rgba(124,92,191,0.3); background: rgba(124,92,191,0.08); }
.activity-link-green  { color: var(--green);    border-color: rgba(46,213,115,0.3); background: rgba(46,213,115,0.08); }
.activity-link-red:hover    { background: rgba(255,71,87,0.18);  transform: translateY(-1px); }
.activity-link-purple:hover { background: rgba(124,92,191,0.18); transform: translateY(-1px); }
.activity-link-green:hover  { background: rgba(46,213,115,0.18); transform: translateY(-1px); }

.activity-link-none {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  align-self: center;
}

.activity-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,190,50,0.08);
  border: 1px solid rgba(255,190,50,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #f0c040;
  line-height: 1.5;
}
.activity-warning svg { flex-shrink: 0; margin-top: 1px; color: #f0c040; }

.activity-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}
.activity-steps li {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 4px;
}
.activity-steps li::marker { color: var(--muted); font-weight: 600; }
.activity-steps code {
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,0.07);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #b0b0d0;
}
.activity-steps strong { color: var(--text); font-weight: 600; }
.activity-steps em { color: var(--muted); font-style: normal; }

.activity-discussion {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.activity-discussion-red    { background: rgba(255,71,87,0.06);  border-left: 3px solid rgba(255,71,87,0.5); }
.activity-discussion-purple { background: rgba(124,92,191,0.06); border-left: 3px solid rgba(124,92,191,0.5); }
.activity-discussion-green  { background: rgba(46,213,115,0.06); border-left: 3px solid rgba(46,213,115,0.5); }

.discussion-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.activity-discussion p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ateliers-grid { grid-template-columns: 1fr; }
  .intro-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .modal-key-facts { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 70vw;
    background: var(--bg-3);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition);
    gap: 32px;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1100; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; letter-spacing: -1px; }
  .modal-content { padding: 24px; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
}
