/* SHARED ONE-PAGER STYLES (mc, formations, team-building) */

.op-hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.op-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, color-mix(in srgb, var(--cyan) 14%, transparent), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}
.op-hero.lime::before {
  background: radial-gradient(circle, color-mix(in srgb, var(--lime) 14%, transparent), transparent 60%);
}

.op-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.op-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.op-hero-h1 { text-wrap: balance; margin-bottom: 32px; }
.op-hero-promesse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 560px;
  margin-bottom: 36px;
}
.op-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.op-hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.op-hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
}
.op-hero-photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 7px 14px;
  background: rgba(7,7,9,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 1024px) {
  .op-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .op-hero-photo { max-width: 420px; aspect-ratio: 3/4; }
}

/* MC — Yes/No split */
.yesno {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.yesno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 48px;
}
.yesno-col {
  padding: 48px 40px;
}
.yesno-col.yes {
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--lime) 8%, transparent), transparent 60%),
    var(--bg);
  border-right: 1px solid var(--line);
}
.yesno-col.no {
  background: var(--bg-3, var(--bg));
  color: var(--ink-2);
}
.yesno-h {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.yesno-h .badge {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 700;
}
.yes .yesno-h { color: var(--lime); }
.yes .yesno-h .badge { background: var(--lime); color: #0a0a0a; }
.no .yesno-h { color: var(--ink-3); }
.no .yesno-h .badge { background: var(--bg-2); color: var(--ink-3); border: 1px solid var(--line); }
.yesno-col ul { list-style: none; padding: 0; }
.yesno-col li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.no li { color: var(--ink-3); text-decoration: line-through; text-decoration-color: var(--ink-3); text-decoration-thickness: 1px; }
.yesno-col li:last-child { border-bottom: 0; }
.yesno-col li::before {
  content: "►";
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
}
.no li::before { content: "✕"; color: var(--ink-3); }

@media (max-width: 768px) {
  .yesno-grid { grid-template-columns: 1fr; }
  .yesno-col.yes { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* Format types (event types) — chips */
.evt-types {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.evt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.evt-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-2);
  transition: all 0.3s;
}
.evt-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.evt-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.evt-card h3 { margin-bottom: 8px; }
.evt-card p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }

@media (max-width: 1024px) { .evt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .evt-grid { grid-template-columns: 1fr; } }

/* Programs — formations */
.programs {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.program-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: all 0.3s;
}
.program-card:first-child { border-top: 1px solid var(--line); }
.program-card:hover { background: color-mix(in srgb, var(--cyan) 3%, transparent); padding-left: 24px; padding-right: 24px; border-radius: 16px; border-bottom-color: transparent; }
.program-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
}
.program-content h3 { margin-bottom: 8px; }
.program-sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-2);
  font-size: 18px;
  margin-bottom: 16px;
}
.program-desc { color: var(--ink); line-height: 1.55; max-width: 620px; margin-bottom: 16px; }
.program-bullets { display: flex; flex-wrap: wrap; gap: 6px; }
.program-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  min-width: 140px;
}
.program-meta strong { color: var(--lime); font-weight: 500; font-size: 14px; }

@media (max-width: 1024px) {
  .program-card { grid-template-columns: 1fr; gap: 16px; }
  .program-meta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

/* Methodology block */
.methodo {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.methodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.methodo-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.methodo-step:last-child { border-right: 0; }
.methodo-step .step-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 18px;
}
.methodo-step h4 { margin-bottom: 8px; font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.methodo-step p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }

@media (max-width: 1024px) {
  .methodo-grid { grid-template-columns: repeat(2, 1fr); }
  .methodo-step:nth-child(2) { border-right: 0; }
  .methodo-step:nth-child(1), .methodo-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .methodo-grid { grid-template-columns: 1fr; }
  .methodo-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .methodo-step:last-child { border-bottom: 0; }
}

/* Team-building catalogue */
.tb-cata {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.tb-cata-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.tb-cata-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.tb-cata-cell:hover { background: var(--bg); }
.tb-cata-cell:nth-child(3n) { border-right: 0; }
.tb-cata-cell:nth-last-child(-n+3) { border-bottom: 0; }
.tb-cata-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 18px;
}
.tb-cata-cell h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 10px; line-height: 1.15; }
.tb-cata-cell.feat h3 { font-size: 26px; color: var(--lime); }
.tb-cata-cell p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.tb-cata-cell.feat::after {
  content: "EXPÉRIENCE HORS NORMES";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--lime);
  border: 1px solid var(--lime);
  padding: 3px 8px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .tb-cata-grid { grid-template-columns: repeat(2, 1fr); }
  .tb-cata-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line) !important; }
  .tb-cata-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .tb-cata-cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 640px) {
  .tb-cata-grid { grid-template-columns: 1fr; }
  .tb-cata-cell { border-right: 0 !important; }
}

/* Manifesto strip — used on team-building */
.manifesto-strip {
  padding: 140px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifesto-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, color-mix(in srgb, var(--cyan) 8%, transparent), transparent 50%),
    radial-gradient(ellipse at 70% 50%, color-mix(in srgb, var(--lime) 8%, transparent), transparent 50%);
  pointer-events: none;
}
.manifesto-strip > .shell { position: relative; z-index: 1; }
.manifesto-strip h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.manifesto-strip h2 em { color: var(--lime); font-style: italic; }
.manifesto-strip .src {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
