/* ========================================================
   One-Pager (Dark Dashboard Hero) + Initiative Tracker + Gantt
   v2 · 2026-05-18 · rebuilt from white A4 → dark dashboard
   ======================================================== */

/* ---------- ONE-PAGER DARK DASHBOARD HERO ---------- */
.one-pager-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(45, 212, 255, 0.18), transparent 40%),
    radial-gradient(circle at 12% 92%, rgba(124, 92, 255, 0.16), transparent 44%),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 255, 0.06), transparent 60%),
    linear-gradient(rgba(107, 132, 190, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 132, 190, 0.04) 1px, transparent 1px),
    #070b13;
  background-size: auto, auto, auto, 48px 48px, 48px 48px, auto;
  color: #fff;
  padding: 88px clamp(20px, 4vw, 72px) 104px;
}

.op-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

/* Section header */
.op-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: end;
}

.op-head .eyebrow {
  color: #6ee7ff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.op-head h2 {
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 14px;
}

.op-head h2 b {
  background: linear-gradient(120deg, #2dd4ff, #7c5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.op-head p {
  color: #a6b9d4;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.op-head-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.op-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.op-btn.primary {
  background: linear-gradient(135deg, #2dd4ff, #2563ff);
  color: #03101f;
  border: 1px solid transparent;
}

.op-btn.primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.op-btn.ghost {
  background: rgba(45, 212, 255, 0.08);
  border: 1px solid rgba(110, 231, 255, 0.32);
  color: #6ee7ff;
}

.op-btn.ghost:hover {
  background: rgba(45, 212, 255, 0.16);
  border-color: #6ee7ff;
}

.op-head-hint {
  font-size: 11px;
  color: #6e7c95;
  text-align: right;
}

/* KPI strip — "before → after" transformation */
.op-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.op-kpi {
  position: relative;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.7), rgba(11, 16, 32, 0.4));
  border: 1px solid rgba(96, 124, 188, 0.22);
  border-radius: 12px;
  overflow: hidden;
}

.op-kpi::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2dd4ff, #2563ff);
}

.op-kpi.violet::before { background: linear-gradient(90deg, #7c5cff, #2dd4ff); }
.op-kpi.amber::before { background: linear-gradient(90deg, #f4c46e, #ef9e6e); }
.op-kpi.green::before { background: linear-gradient(90deg, #6ad29b, #2dd4ff); }

.op-kpi-label {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: #6e7c95;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.op-kpi-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.op-kpi-old {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #6e7c95;
  text-decoration: line-through;
  line-height: 1.2;
}

.op-kpi-arrow {
  color: #2dd4ff;
  font-size: 14px;
  font-weight: 800;
}

.op-kpi-new {
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.op-kpi-new em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #6ee7ff;
  margin-left: 4px;
}

.op-kpi-trend {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-top: 14px;
}

.op-kpi-trend i {
  display: block;
  width: 6px;
  background: linear-gradient(180deg, #2dd4ff, #2563ff);
  border-radius: 2px;
  opacity: 0.85;
}

.op-kpi.violet .op-kpi-trend i { background: linear-gradient(180deg, #7c5cff, #2563ff); }
.op-kpi.amber .op-kpi-trend i { background: linear-gradient(180deg, #f4c46e, #ef9e6e); }
.op-kpi.green .op-kpi-trend i { background: linear-gradient(180deg, #6ad29b, #2dd4ff); }

/* Pipeline: signal → decision → action */
.op-pipeline {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 0.9fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.7), rgba(11, 16, 32, 0.35));
  border: 1px solid rgba(96, 124, 188, 0.22);
  border-radius: 14px;
  padding: 24px;
}

.op-pipe-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.op-pipe-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.op-pipe-head .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2dd4ff;
  box-shadow: 0 0 12px rgba(45, 212, 255, 0.8);
}

.op-pipe-col.brain .op-pipe-head .dot { background: #7c5cff; box-shadow: 0 0 12px rgba(124, 92, 255, 0.8); }
.op-pipe-col.action .op-pipe-head .dot { background: #6ad29b; box-shadow: 0 0 12px rgba(106, 210, 155, 0.8); }

.op-pipe-sub {
  font-size: 11px;
  color: #6e7c95;
  margin-top: -4px;
}

.op-pipe-arrow {
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #6e7c95;
  font-weight: 300;
  padding: 0 4px;
}

/* Signal source pills */
.op-pipe-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.op-sig {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(45, 212, 255, 0.06);
  border: 1px solid rgba(45, 212, 255, 0.18);
  border-radius: 6px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: #c8d4ea;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.op-sig::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2dd4ff;
  box-shadow: 0 0 6px #2dd4ff;
  animation: op-blink 2.4s infinite;
}

@keyframes op-blink {
  0%, 60% { opacity: 0.9; }
  30% { opacity: 0.3; }
}

/* Brain block in middle */
.op-pipe-col.brain {
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(45, 212, 255, 0.06));
  border: 1px dashed rgba(124, 92, 255, 0.32);
  border-radius: 12px;
  padding: 16px;
  align-items: center;
  text-align: center;
}

.op-brain-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.4), rgba(45, 212, 255, 0.15));
  border: 1px solid rgba(124, 92, 255, 0.4);
  display: grid;
  place-items: center;
  margin: 8px auto;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  font-family: Inter, sans-serif;
  position: relative;
}

.op-brain-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 255, 0.25);
  animation: op-pulse 2.8s infinite;
}

@keyframes op-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.op-brain-models {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.op-brain-models span {
  padding: 2px 7px;
  font-size: 9px;
  background: rgba(124, 92, 255, 0.15);
  color: #c9bdff;
  border-radius: 99px;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.op-brain-tag {
  font-size: 11px;
  color: #c9bdff;
  margin-top: 8px;
  line-height: 1.4;
}

/* Output deliverable cards */
.op-pipe-outputs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.op-out {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(106, 210, 155, 0.06);
  border: 1px solid rgba(106, 210, 155, 0.2);
  border-radius: 6px;
}

.op-out-ic {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: rgba(106, 210, 155, 0.18);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #6ad29b;
  font-weight: 700;
  font-family: Inter, sans-serif;
}

.op-out-name {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.op-out-sub {
  font-size: 9px;
  color: #6e7c95;
  margin-top: 1px;
}

.op-out-when {
  font-size: 9px;
  color: #6ad29b;
  font-family: Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* Capability matrix */
.op-caps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.op-cap-col {
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.7), rgba(11, 16, 32, 0.35));
  border: 1px solid rgba(96, 124, 188, 0.22);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.op-cap-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(96, 124, 188, 0.15);
}

.op-cap-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #6ee7ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.op-cap-col.internal .op-cap-eyebrow { color: #f4c46e; }
.op-cap-col.strategy .op-cap-eyebrow { color: #c9bdff; }
.op-cap-col.platform .op-cap-eyebrow { color: #6ad29b; }

.op-cap-title {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.op-cap-count {
  font-size: 11px;
  color: #6e7c95;
}

.op-cap-modules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.op-cap-mod {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  font-family: Inter, sans-serif;
}

.op-cap-mod .num {
  font-size: 10px;
  font-weight: 800;
  color: #6e7c95;
  width: 22px;
}

.op-cap-mod .name {
  font-size: 12px;
  color: #c8d4ea;
  font-weight: 500;
  line-height: 1.3;
}

.op-cap-mod .spark {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.op-cap-mod .spark i {
  display: block;
  width: 3px;
  background: linear-gradient(180deg, #2dd4ff, #2563ff);
  border-radius: 1px;
  opacity: 0.85;
}

.op-cap-col.internal .op-cap-mod .spark i { background: linear-gradient(180deg, #f4c46e, #ef9e6e); }
.op-cap-col.strategy .op-cap-mod .spark i { background: linear-gradient(180deg, #c9bdff, #7c5cff); }
.op-cap-col.platform .op-cap-mod .spark i { background: linear-gradient(180deg, #6ad29b, #2dd4ff); }

/* Pricing row */
.op-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.op-price {
  position: relative;
  padding: 24px 24px 26px;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.7), rgba(11, 16, 32, 0.35));
  border: 1px solid rgba(96, 124, 188, 0.22);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.op-price.featured {
  background:
    radial-gradient(circle at 70% 0%, rgba(45, 212, 255, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(37, 99, 255, 0.12), rgba(11, 16, 32, 0.55));
  border: 1px solid rgba(45, 212, 255, 0.45);
  box-shadow: 0 12px 36px rgba(45, 212, 255, 0.16);
}

.op-price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.op-price-name {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #6e7c95;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.op-price.featured .op-price-name { color: #6ee7ff; }

.op-price-badge {
  padding: 3px 8px;
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 800;
  background: rgba(45, 212, 255, 0.2);
  color: #6ee7ff;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.op-price-num {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.op-price-num strong {
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.op-price-num small {
  font-size: 13px;
  color: #6e7c95;
  font-weight: 600;
}

.op-price-setup {
  font-size: 11px;
  color: #6e7c95;
}

.op-price-setup b {
  color: #c8d4ea;
  font-weight: 600;
}

.op-price-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(96, 124, 188, 0.15);
  padding-top: 12px;
}

.op-price-feats li {
  font-size: 12px;
  color: #a6b9d4;
  font-family: Inter, sans-serif;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}

.op-price-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6ad29b;
  font-weight: 700;
  font-size: 11px;
}

/* Footer CTA */
.op-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background:
    radial-gradient(circle at 80% 50%, rgba(45, 212, 255, 0.12), transparent 60%),
    linear-gradient(135deg, rgba(11, 16, 32, 0.7), rgba(37, 99, 255, 0.08));
  border: 1px solid rgba(45, 212, 255, 0.28);
  border-radius: 12px;
}

.op-footer-text {
  flex: 1;
  min-width: 0;
}

.op-footer-text h3 {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.op-footer-text p {
  font-size: 13px;
  color: #a6b9d4;
  margin: 0;
}

.op-footer-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 1080px) {
  .op-caps { grid-template-columns: repeat(2, 1fr); }
  .op-kpi-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .op-head { grid-template-columns: 1fr; }
  .op-head-cta { align-items: flex-start; }
  .op-head-hint { text-align: left; }
  .op-kpi-strip { grid-template-columns: 1fr; }
  .op-pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .op-pipe-arrow { transform: rotate(90deg); padding: 4px 0; }
  .op-pipe-signals { grid-template-columns: repeat(2, 1fr); }
  .op-caps { grid-template-columns: 1fr; }
  .op-pricing { grid-template-columns: 1fr; }
  .op-footer-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .op-footer-actions { flex-direction: column; }
  .op-btn { justify-content: center; }
}

/* ========================================================
   INITIATIVE TRACKER (§07+)
   ======================================================== */
.init-tracker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
}

.init-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(260px, 1.6fr) minmax(180px, 0.9fr);
  gap: 18px;
  padding: 14px 18px;
  background: rgba(11, 16, 32, 0.55);
  border: 1px solid rgba(96, 124, 188, 0.18);
  border-left: 3px solid #6ad29b;
  border-radius: 8px;
  align-items: center;
}

.init-card.atrisk { border-left-color: #f4c46e; }
.init-card.blocked { border-left-color: #ef6e6e; }
.init-card.done { border-left-color: #2dd4ff; opacity: 0.78; }

.init-meta-l { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.init-name {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.init-owner {
  font-size: 11px; color: #98aed6;
  display: flex; align-items: center; gap: 6px;
}
.init-avatar {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4ff, #7c5cff);
  color: #fff; font-size: 9px; font-weight: 700;
}
.init-sub { font-size: 10px; color: #6e7c95; margin-top: 2px; }
.init-progress-block { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.init-progress-top { display: flex; justify-content: space-between; font-size: 11px; color: #98aed6; }
.init-progress-top b { color: #fff; font-weight: 700; font-family: Inter, sans-serif; }
.init-bar-track {
  position: relative; height: 8px;
  background: rgba(154, 181, 225, 0.12);
  border-radius: 99px; overflow: hidden;
}
.init-bar {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #6ad29b, #2dd4ff);
  position: relative;
}
.init-card.atrisk .init-bar { background: linear-gradient(90deg, #f4c46e, #ef9e6e); }
.init-card.blocked .init-bar { background: linear-gradient(90deg, #ef6e6e, #ef9e9e); }
.init-card.done .init-bar { background: linear-gradient(90deg, #2dd4ff, #7c5cff); }
.init-budget {
  font-size: 10px; color: #6e7c95; margin-top: 2px;
  display: flex; justify-content: space-between;
}
.init-budget b { color: #98aed6; font-weight: 600; }
.init-meta-r {
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-end; text-align: right; min-width: 0;
}
.init-status {
  font-size: 10px; font-weight: 800; padding: 3px 8px;
  border-radius: 99px; letter-spacing: 0.06em; text-transform: uppercase;
}
.init-status.ontrack { background: rgba(106, 210, 155, 0.18); color: #6ad29b; }
.init-status.atrisk { background: rgba(244, 196, 110, 0.18); color: #f4c46e; }
.init-status.blocked { background: rgba(239, 110, 110, 0.18); color: #ef6e6e; }
.init-status.done { background: rgba(45, 212, 255, 0.18); color: #2dd4ff; }
.init-signal { font-size: 10px; color: #6e7c95; line-height: 1.4; }
.init-signal b { color: #6ee7ff; font-weight: 700; }
.init-week { font-size: 10px; color: #98aed6; font-style: italic; }

.init-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.init-sum-card {
  padding: 14px 16px;
  background: rgba(11, 16, 32, 0.55);
  border: 1px solid rgba(96, 124, 188, 0.18);
  border-radius: 8px;
  text-align: center;
}
.init-sum-card .num {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
}
.init-sum-card .lab {
  font-size: 11px; color: #98aed6;
  margin-top: 4px; font-family: Inter, sans-serif;
}
.init-sum-card.ontrack .num { color: #6ad29b; }
.init-sum-card.atrisk .num { color: #f4c46e; }
.init-sum-card.blocked .num { color: #ef6e6e; }
.init-sum-card.total .num { color: #fff; }

@media (max-width: 720px) {
  .init-card { grid-template-columns: 1fr; gap: 10px; }
  .init-meta-r { align-items: flex-start; text-align: left; }
  .init-summary { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   GANTT TIMELINE (in §07+)
   ======================================================== */
.gantt-wrap {
  margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.7), rgba(11, 16, 32, 0.35));
  border: 1px solid rgba(96, 124, 188, 0.22);
  border-radius: 12px;
  padding: 18px 18px 14px;
}

.gantt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.gantt-title {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.gantt-legend {
  display: flex;
  gap: 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #98aed6;
}

.gantt-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gantt-legend i {
  display: block;
  width: 12px; height: 6px;
  border-radius: 2px;
}

.gantt-legend .lg-ontrack { background: linear-gradient(90deg, #6ad29b, #2dd4ff); }
.gantt-legend .lg-atrisk { background: linear-gradient(90deg, #f4c46e, #ef9e6e); }
.gantt-legend .lg-blocked { background: linear-gradient(90deg, #ef6e6e, #ef9e9e); }
.gantt-legend .lg-done { background: linear-gradient(90deg, #2dd4ff, #7c5cff); }

.gantt {
  display: grid;
  grid-template-columns: minmax(200px, 220px) 1fr;
  gap: 0;
}

.gantt-labels-col, .gantt-tracks-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gantt-tracks-col {
  position: relative;
}

.gantt-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px 0 0;
  border-right: 1px solid rgba(96, 124, 188, 0.15);
  font-family: Inter, sans-serif;
  height: 44px;
  flex: 0 0 44px;
  justify-content: center;
}

.gantt-label-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.gantt-label-owner {
  font-size: 10px;
  color: #6e7c95;
}

.gantt-track {
  position: relative;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(96, 124, 188, 0.06);
}

.gantt-bar {
  position: absolute;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6ad29b, #2dd4ff);
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #03101f;
  letter-spacing: -0.01em;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(45, 212, 255, 0.2);
}

.gantt-bar.atrisk { background: linear-gradient(90deg, #f4c46e, #ef9e6e); box-shadow: 0 4px 12px rgba(244, 196, 110, 0.22); color: #2a1d05; }
.gantt-bar.blocked { background: linear-gradient(90deg, #ef6e6e, #ef9e9e); box-shadow: 0 4px 12px rgba(239, 110, 110, 0.22); color: #2a0505; }
.gantt-bar.done { background: linear-gradient(90deg, #2dd4ff, #7c5cff); box-shadow: 0 4px 12px rgba(124, 92, 255, 0.18); color: #02061a; opacity: 0.7; }

.gantt-bar-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* Header row showing months */
.gantt-axis {
  display: grid;
  grid-template-columns: minmax(200px, 220px) 1fr;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(96, 124, 188, 0.22);
  padding-bottom: 6px;
}

.gantt-axis-spacer { /* empty for align */ }

.gantt-axis-months {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: #98aed6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.gantt-axis-months span {
  text-align: center;
  position: relative;
}

.gantt-axis-months span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  bottom: -200px;
  width: 1px;
  background: rgba(96, 124, 188, 0.08);
  pointer-events: none;
}

/* Today marker */
.gantt-today {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #ef6e6e 8%, #ef6e6e 92%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.gantt-today::after {
  content: "TODAY";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: #ef6e6e;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  background: rgba(239, 110, 110, 0.15);
  border: 1px solid rgba(239, 110, 110, 0.5);
  border-radius: 4px;
  white-space: nowrap;
}

/* Grid lines for months in track */
.gantt-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  pointer-events: none;
}

.gantt-grid span {
  border-right: 1px solid rgba(96, 124, 188, 0.08);
}

/* Mobile: hide gantt's owner label, shrink bars */
@media (max-width: 760px) {
  .gantt-axis, .gantt { grid-template-columns: minmax(120px, 140px) 1fr; }
  .gantt-label-owner { display: none; }
  .gantt-bar { font-size: 9px; padding: 0 4px; }
}
